linux-gpio.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
To: linus.walleij@linaro.org, robh+dt@kernel.org, afaerber@suse.de
Cc: liuwei@actions-semi.com, mp-cs@actions-semi.com,
	96boards@ucrobotics.com, devicetree@vger.kernel.org,
	daniel.thompson@linaro.org, amit.kucheria@linaro.org,
	linux-arm-kernel@lists.infradead.org, linux-gpio@vger.kernel.org,
	linux-kernel@vger.kernel.org, hzhang@ucrobotics.com,
	bdong@ucrobotics.com, manivannanece23@gmail.com
Subject: Re: [PATCH 00/10] Add Actions Semi S900 pinctrl and gpio support
Date: Wed, 28 Feb 2018 23:53:31 +0530	[thread overview]
Message-ID: <20180228182331.65bnk2cp2fpgry5p@linaro.org> (raw)
In-Reply-To: <20180228174906.22721-1-manivannan.sadhasivam@linaro.org>

On Wed, Feb 28, 2018 at 11:18:56PM +0530, Manivannan Sadhasivam wrote:
> This patchset adds pinctrl and gpio support for Actions Semi S900 SoC.
> Pinctrl and gpio subsystems share the common set of register range but
> implemented as individual drivers for making it less complex.
> 
> Pinmux functions are only accessible for pin groups while pinconf
> parameters are available for both pin groups and individual pins.
> 
> gpio-line-names has been added for the Bubblegum-96 board matching the
> 96Boards CE specification v1.0.
> 
> Both pinctrl and gpio drivers are verified using the Bubblegum-96 board.
> 
> This patchset depends on the clock driver which is still under review:
> https://lkml.org/lkml/2018/2/9/831
> 
> There is also S500 pinctrl and gpio driver developed by Andreas Farber
> independently to this patchset.
> https://github.com/afaerber/linux/commits/bg96-next
> 
> If this patchseries seems to be good enough to add base OWL pinctrl and
> gpio support. Then, we may decide on adding S500 support on top of this later
> by reusing the pinctrl definitions from Andreas.
> 
> Thanks,
> Mani
>

Please ignore this patchset. This one came out without version tag. Sent a new
patch series with correct version.

Sorry for the inconvenience!

Regards,
Mani 
> Changes in v3:
> 
> * Simplified owl_gpio_set_reg() with _relaxed functions
> * Added interrupt controller properties to gpio node bindings as suggested
>   by Rob
> * Minor code cleanups
> 
> Changes in v2:
> 
> * Implemented each GPIO bank as its own gpio-controller
> * Added gpio-ranges property
> * Modified pin group to follow pad names instead of register names
> * Incorporated review comments from Andy
> * Incorporated review comments from Andreas
> * Fixed the MODULE_LICENSE with respect to SPDX tag
> * Added Reviewed by tag from Rob for pinctrl binding
> 
> Manivannan Sadhasivam (10):
>   dt-bindings: pinctrl: Add bindings for Actions S900 SoC
>   arm64: dts: actions: Add pinctrl node for S900
>   arm64: actions: Enable PINCTRL in platforms Kconfig
>   pinctrl: actions: Add Actions S900 pinctrl driver
>   dt-bindings: gpio: Add gpio nodes for Actions S900 SoC
>   arm64: dts: actions: Add S900 gpio nodes
>   arm64: dts: actions: Add gpio line names to Bubblegum-96 board
>   gpio: Add gpio driver for Actions OWL S900 SoC
>   MAINTAINERS: Add reviewer for ACTIONS platforms
>   MAINTAINERS: Add Actions Semi S900 pinctrl and gpio entries
> 
>  .../devicetree/bindings/gpio/actions,owl-gpio.txt  |   95 +
>  .../bindings/pinctrl/actions,s900-pinctrl.txt      |  178 ++
>  MAINTAINERS                                        |    5 +
>  arch/arm64/Kconfig.platforms                       |    1 +
>  arch/arm64/boot/dts/actions/s900-bubblegum-96.dts  |  201 ++
>  arch/arm64/boot/dts/actions/s900.dtsi              |   54 +
>  drivers/gpio/Kconfig                               |    8 +
>  drivers/gpio/Makefile                              |    1 +
>  drivers/gpio/gpio-owl.c                            |  218 ++
>  drivers/pinctrl/Kconfig                            |    1 +
>  drivers/pinctrl/Makefile                           |    1 +
>  drivers/pinctrl/actions/Kconfig                    |   12 +
>  drivers/pinctrl/actions/Makefile                   |    2 +
>  drivers/pinctrl/actions/pinctrl-owl.c              |  571 +++++
>  drivers/pinctrl/actions/pinctrl-owl.h              |  142 ++
>  drivers/pinctrl/actions/pinctrl-s900.c             | 2505 ++++++++++++++++++++
>  16 files changed, 3995 insertions(+)
>  create mode 100644 Documentation/devicetree/bindings/gpio/actions,owl-gpio.txt
>  create mode 100644 Documentation/devicetree/bindings/pinctrl/actions,s900-pinctrl.txt
>  create mode 100644 drivers/gpio/gpio-owl.c
>  create mode 100644 drivers/pinctrl/actions/Kconfig
>  create mode 100644 drivers/pinctrl/actions/Makefile
>  create mode 100644 drivers/pinctrl/actions/pinctrl-owl.c
>  create mode 100644 drivers/pinctrl/actions/pinctrl-owl.h
>  create mode 100644 drivers/pinctrl/actions/pinctrl-s900.c
> 
> -- 
> 2.14.1
> 

  parent reply	other threads:[~2018-02-28 18:23 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-02-28 17:48 [PATCH 00/10] Add Actions Semi S900 pinctrl and gpio support Manivannan Sadhasivam
2018-02-28 17:48 ` [PATCH 01/10] dt-bindings: pinctrl: Add bindings for Actions S900 SoC Manivannan Sadhasivam
2018-02-28 17:48 ` [PATCH 02/10] arm64: dts: actions: Add pinctrl node for S900 Manivannan Sadhasivam
2018-02-28 17:48 ` [PATCH 03/10] arm64: actions: Enable PINCTRL in platforms Kconfig Manivannan Sadhasivam
2018-02-28 17:49 ` [PATCH 04/10] pinctrl: actions: Add Actions S900 pinctrl driver Manivannan Sadhasivam
2018-02-28 17:49 ` [PATCH 05/10] dt-bindings: gpio: Add gpio nodes for Actions S900 SoC Manivannan Sadhasivam
2018-02-28 17:49 ` [PATCH 06/10] arm64: dts: actions: Add S900 gpio nodes Manivannan Sadhasivam
2018-02-28 17:49 ` [PATCH 07/10] arm64: dts: actions: Add gpio line names to Bubblegum-96 board Manivannan Sadhasivam
2018-02-28 17:49 ` [PATCH 08/10] gpio: Add gpio driver for Actions OWL S900 SoC Manivannan Sadhasivam
2018-02-28 17:49 ` [PATCH 09/10] MAINTAINERS: Add reviewer for ACTIONS platforms Manivannan Sadhasivam
2018-02-28 17:49 ` [PATCH 10/10] MAINTAINERS: Add Actions Semi S900 pinctrl and gpio entries Manivannan Sadhasivam
2018-02-28 18:23 ` Manivannan Sadhasivam [this message]
  -- strict thread matches above, loose matches on Subject: below --
2018-02-17 20:44 [PATCH 00/10] Add Actions Semi S900 pinctrl and gpio support Manivannan Sadhasivam
2018-02-17 21:19 ` Andreas Färber
2018-02-19 17:40   ` Manivannan Sadhasivam

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20180228182331.65bnk2cp2fpgry5p@linaro.org \
    --to=manivannan.sadhasivam@linaro.org \
    --cc=96boards@ucrobotics.com \
    --cc=afaerber@suse.de \
    --cc=amit.kucheria@linaro.org \
    --cc=bdong@ucrobotics.com \
    --cc=daniel.thompson@linaro.org \
    --cc=devicetree@vger.kernel.org \
    --cc=hzhang@ucrobotics.com \
    --cc=linus.walleij@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-gpio@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=liuwei@actions-semi.com \
    --cc=manivannanece23@gmail.com \
    --cc=mp-cs@actions-semi.com \
    --cc=robh+dt@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).