mbox series

[v2,0/3] Add Actions Semi S500 pinctrl support

Message ID cover.1596461275.git.cristian.ciocaltea@gmail.com
Headers show
Series Add Actions Semi S500 pinctrl support | expand

Message

Cristian Ciocaltea Aug. 3, 2020, 2:20 p.m. UTC
This patchset adds pinctrl support for Actions Semi S500 SoC.

Pinmux functions are only accessible for pin groups while pinconf
parameters are available for both pin groups and individual pins.

The pinctrl driver has been verified using RoseapplePi, the SBC for
which an initial support has been provided via:
https://lore.kernel.org/lkml/cover.1592123160.git.cristian.ciocaltea@gmail.com/

The DTS related changes, including the required clock support, will be
available in the upcoming patch series.

Thanks,
Cristi

Changes in v2:
 - Updated the pinctrl bindings according to Rob's feedback
 - Set the pinctrl entry in MAINTAINERS according to Mani's suggestion
 - Rebased patches on v5.8

Cristian Ciocaltea (3):
  dt-bindings: pinctrl: Add bindings for Actions S500 SoC
  pinctrl: actions: Add Actions S500 pinctrl driver
  MAINTAINERS: Set pinctrl binding entry for all Actions Semi Owl SoCs

 .../pinctrl/actions,s500-pinctrl.yaml         |  240 +++
 MAINTAINERS                                   |    2 +-
 drivers/pinctrl/actions/Kconfig               |    6 +
 drivers/pinctrl/actions/Makefile              |    1 +
 drivers/pinctrl/actions/pinctrl-s500.c        | 1727 +++++++++++++++++
 5 files changed, 1975 insertions(+), 1 deletion(-)
 create mode 100644 Documentation/devicetree/bindings/pinctrl/actions,s500-pinctrl.yaml
 create mode 100644 drivers/pinctrl/actions/pinctrl-s500.c

Comments

Linus Walleij Aug. 27, 2020, 8:41 a.m. UTC | #1
On Mon, Aug 3, 2020 at 4:21 PM Cristian Ciocaltea
<cristian.ciocaltea@gmail.com> wrote:

> This patchset adds pinctrl support for Actions Semi S500 SoC.
>
> Pinmux functions are only accessible for pin groups while pinconf
> parameters are available for both pin groups and individual pins.
>
> The pinctrl driver has been verified using RoseapplePi, the SBC for
> which an initial support has been provided via:
> https://lore.kernel.org/lkml/cover.1592123160.git.cristian.ciocaltea@gmail.com/

No comments on the v2 patch set for more than 2 weeks so patches
applied. If people find issues we can make incremental
patches.

Thanks!
Linus Walleij
Cristian Ciocaltea Aug. 27, 2020, 10:36 a.m. UTC | #2
On Thu, Aug 27, 2020 at 10:41:23AM +0200, Linus Walleij wrote:
> On Mon, Aug 3, 2020 at 4:21 PM Cristian Ciocaltea
> <cristian.ciocaltea@gmail.com> wrote:
> 
> > This patchset adds pinctrl support for Actions Semi S500 SoC.
> >
> > Pinmux functions are only accessible for pin groups while pinconf
> > parameters are available for both pin groups and individual pins.
> >
> > The pinctrl driver has been verified using RoseapplePi, the SBC for
> > which an initial support has been provided via:
> > https://lore.kernel.org/lkml/cover.1592123160.git.cristian.ciocaltea@gmail.com/
> 
> No comments on the v2 patch set for more than 2 weeks so patches
> applied. If people find issues we can make incremental
> patches.
> 
> Thanks!
> Linus Walleij

Thanks,
Cristi