public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/9] Add support for the pin controllers on the Marvell Armada 7K/8K
@ 2017-05-19 16:04 Gregory CLEMENT
  2017-05-19 16:04 ` [PATCH 1/9] MAINTAINERS: extend mvebu SoC entry with pinctrl drivers Gregory CLEMENT
                   ` (9 more replies)
  0 siblings, 10 replies; 18+ messages in thread
From: Gregory CLEMENT @ 2017-05-19 16:04 UTC (permalink / raw)
  To: Linus Walleij, linux-gpio, linux-kernel
  Cc: Jason Cooper, Andrew Lunn, Sebastian Hesselbarth, Gregory CLEMENT,
	Thomas Petazzoni, linux-arm-kernel, Rob Herring, devicetree,
	Russell King, Nadav Haklai, Kostya Porotchkin,
	Neta Zur Hershkovits, Marcin Wojtas, Omri Itach, Shadi Ammouri

Hi,

This series is adding the support for the pin controllers found on the
Marvell Armada 7K/8K.

These controllers are compatible with the ones found on the ARM32
mvebu SoCs. However, the pinctrl node in the device tree of theses SoCs
are child of a syscon. So for them we will reuse the regmap support
introduced by Russell King.

Each component of the Armada 7K and 8K comes with their own pin
controller, that's why we have 2 new drivers: one for the CP110 and
one for the AP806.

This series is based on the work of several peoples, I do my best to
cited all of them and pointed the work they have done.

The patch 1 and 6 could go to the mvebu tree once they have been
acked, but the last patch _must_ go to mvebu tree to avoid
conflicts. More over the dts changes in this patch depend on the clock
series I've just sent before.

Thanks,

Gregory

Gregory CLEMENT (6):
  MAINTAINERS: extend mvebu SoC entry with pinctrl drivers
  pinctrl: dt-bindings: add documentation for AP806 pin controllers
  pinctrl: dt-bindings: add documentation for CP110 pin controllers
  pinctrl: mvebu: remove the offset property for regmap
  arm64: marvell: enable the Armada 7K/8K pinctrl driver
  arm64: dts: marvell: add pinctrl support for Armada 7K/8K

Hanna Hawa (2):
  pinctrl: mvebu: add driver for Armada AP806 pinctrl
  pinctrl: mvebu: add driver for Armada CP110 pinctrl

Russell King (1):
  pinctrl: avoid PLAT_ORION dependency

 Documentation/devicetree/bindings/arm/marvell/ap806-system-controller.txt  |  53 +++++-
 Documentation/devicetree/bindings/arm/marvell/cp110-system-controller0.txt | 101 ++++++++++-
 MAINTAINERS                                                                |   1 +-
 arch/arm64/Kconfig.platforms                                               |   2 +-
 arch/arm64/boot/dts/marvell/armada-7020.dtsi                               |   2 +-
 arch/arm64/boot/dts/marvell/armada-7040.dtsi                               |   2 +-
 arch/arm64/boot/dts/marvell/armada-70x0.dtsi                               |  53 ++++++-
 arch/arm64/boot/dts/marvell/armada-8020.dtsi                               |   3 +-
 arch/arm64/boot/dts/marvell/armada-8040.dtsi                               |   3 +-
 arch/arm64/boot/dts/marvell/armada-80x0.dtsi                               |  60 ++++++-
 arch/arm64/boot/dts/marvell/armada-ap806.dtsi                              |   4 +-
 drivers/pinctrl/mvebu/Kconfig                                              |  12 +-
 drivers/pinctrl/mvebu/Makefile                                             |   2 +-
 drivers/pinctrl/mvebu/pinctrl-armada-ap806.c                               | 145 +++++++++++++++-
 drivers/pinctrl/mvebu/pinctrl-armada-cp110.c                               | 692 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-
 drivers/pinctrl/mvebu/pinctrl-mvebu.c                                      |   6 +-
 drivers/pinctrl/mvebu/pinctrl-mvebu.h                                      |   2 +-
 17 files changed, 1113 insertions(+), 30 deletions(-)
 create mode 100644 arch/arm64/boot/dts/marvell/armada-70x0.dtsi
 create mode 100644 arch/arm64/boot/dts/marvell/armada-80x0.dtsi
 create mode 100644 drivers/pinctrl/mvebu/pinctrl-armada-ap806.c
 create mode 100644 drivers/pinctrl/mvebu/pinctrl-armada-cp110.c

base-commit: dd50dc10764735d46c8e493b8c6907aa5a3d1783
-- 
git-series 0.9.1

^ permalink raw reply	[flat|nested] 18+ messages in thread

end of thread, other threads:[~2017-05-31  9:15 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-05-19 16:04 [PATCH 0/9] Add support for the pin controllers on the Marvell Armada 7K/8K Gregory CLEMENT
2017-05-19 16:04 ` [PATCH 1/9] MAINTAINERS: extend mvebu SoC entry with pinctrl drivers Gregory CLEMENT
2017-05-23  9:23   ` Linus Walleij
2017-05-19 16:04 ` [PATCH 2/9] pinctrl: dt-bindings: add documentation for AP806 pin controllers Gregory CLEMENT
2017-05-29  8:02   ` Linus Walleij
2017-05-30 21:46   ` Rob Herring
2017-05-19 16:04 ` [PATCH 3/9] pinctrl: dt-bindings: add documentation for CP110 " Gregory CLEMENT
2017-05-30 21:48   ` Rob Herring
2017-05-19 16:04 ` [PATCH 4/9] pinctrl: mvebu: remove the offset property for regmap Gregory CLEMENT
2017-05-19 16:04 ` [PATCH 5/9] pinctrl: avoid PLAT_ORION dependency Gregory CLEMENT
2017-05-19 16:04 ` [PATCH 6/9] arm64: marvell: enable the Armada 7K/8K pinctrl driver Gregory CLEMENT
2017-05-19 16:04 ` [PATCH 7/9] pinctrl: mvebu: add driver for Armada AP806 pinctrl Gregory CLEMENT
2017-05-20 19:04   ` Paul Gortmaker
2017-05-22 14:37     ` Gregory CLEMENT
2017-05-19 16:04 ` [PATCH 8/9] pinctrl: mvebu: add driver for Armada CP110 pinctrl Gregory CLEMENT
2017-05-20 19:09   ` Paul Gortmaker
2017-05-19 16:04 ` [PATCH 9/9] arm64: dts: marvell: add pinctrl support for Armada 7K/8K Gregory CLEMENT
2017-05-31  9:15 ` [PATCH 0/9] Add support for the pin controllers on the Marvell " Thomas Petazzoni

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox