mbox series

[V3,0/2] Add pinctrl driver support for Amlogic C3 SoCs

Message ID 20230714122441.3098337-1-huqiang.qin@amlogic.com
Headers show
Series Add pinctrl driver support for Amlogic C3 SoCs | expand

Message

Huqiang Qin July 14, 2023, 12:24 p.m. UTC
This patch adds pinctrl driver support for Amloigc C3 SoC (C308L and C302X)

[PATCH 1/2]: 
  V1 -> V2:
    Unchanged.
  V2 -> V3:
    Updated commit message, and compatible are sorted alphabetically.

[PATCH 2/2]:
  V1 -> V2:
    Added a comma to the last item of the array and a period to
    the commit message.
  V2 -> V3:
    Ditto, and corrected license.

Huqiang Qin (2):
  dt-bindings: pinctrl: Add compatibles for Amlogic C3 SoCs
  pinctrl: Add driver support for Amlogic C3 SoCs

 .../pinctrl/amlogic,meson-pinctrl-a1.yaml     |    1 +
 drivers/pinctrl/meson/Kconfig                 |    6 +
 drivers/pinctrl/meson/Makefile                |    1 +
 drivers/pinctrl/meson/pinctrl-amlogic-c3.c    | 1108 +++++++++++++++++
 include/dt-bindings/gpio/amlogic-c3-gpio.h    |   72 ++
 5 files changed, 1188 insertions(+)
 create mode 100644 drivers/pinctrl/meson/pinctrl-amlogic-c3.c
 create mode 100644 include/dt-bindings/gpio/amlogic-c3-gpio.h


base-commit: fe57d0d86f03a8b2afe2869a95477d0ed1824c96

Comments

Rob Herring July 15, 2023, 2:47 a.m. UTC | #1
On Fri, 14 Jul 2023 20:24:40 +0800, Huqiang Qin wrote:
> Add a new compatible name for Amlogic C3 pin controller, and add
> a new dt-binding header file which document the detail pin names.
> 
> Signed-off-by: Huqiang Qin <huqiang.qin@amlogic.com>
> ---
> 
> V1 -> V2:
>   Unchanged.
> V2 -> V3:
>   Updated commit message, and compatible are sorted alphabetically.
> 
>  .../pinctrl/amlogic,meson-pinctrl-a1.yaml     |  1 +
>  include/dt-bindings/gpio/amlogic-c3-gpio.h    | 72 +++++++++++++++++++
>  2 files changed, 73 insertions(+)
>  create mode 100644 include/dt-bindings/gpio/amlogic-c3-gpio.h
> 

Reviewed-by: Rob Herring <robh@kernel.org>