All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/6] Add pinctrl driver for Allwinner A1X SoCs
@ 2012-12-10 22:08 Maxime Ripard
  2012-12-10 22:08 ` [PATCH 1/6] ARM: sunxi: Add pinctrl driver for Allwinner SoCs Maxime Ripard
                   ` (6 more replies)
  0 siblings, 7 replies; 25+ messages in thread
From: Maxime Ripard @ 2012-12-10 22:08 UTC (permalink / raw)
  To: linux-arm-kernel

Hi everyone,

This patch set adds a pinctrl driver for the IP found in the Allwinner A10
and A13, and the SoC-specific bits for the A13. It also adds the documentation
for the device tree bindings.

This patch set has been tested on a Olimex A13-Olinuxino.

Thanks,
Maxime

Maxime Ripard (6):
  ARM: sunxi: Add pinctrl driver for Allwinner SoCs
  ARM: pinctrl: sunxi: Add the pinctrl pin set for sun5i
  ARM: sunxi: Add pinctrl node to the device tree
  ARM: sunxi: Add uart1 pinctrl groups
  tty: of_serial: Add pinctrl support
  ARM: sunxi: olinuxino: Add muxing for the uart

 .../bindings/pinctrl/allwinner,sunxi-pinctrl.txt   |   77 +++
 arch/arm/boot/dts/sun5i-olinuxino.dts              |    2 +
 arch/arm/boot/dts/sun5i.dtsi                       |   21 +
 arch/arm/mach-sunxi/Kconfig                        |    1 +
 drivers/pinctrl/Kconfig                            |    5 +
 drivers/pinctrl/Makefile                           |    1 +
 drivers/pinctrl/pinctrl-sunxi.c                    |  555 ++++++++++++++++++++
 drivers/pinctrl/pinctrl-sunxi.h                    |  315 +++++++++++
 drivers/tty/serial/of_serial.c                     |    7 +
 9 files changed, 984 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/pinctrl/allwinner,sunxi-pinctrl.txt
 create mode 100644 drivers/pinctrl/pinctrl-sunxi.c
 create mode 100644 drivers/pinctrl/pinctrl-sunxi.h

-- 
1.7.9.5

^ permalink raw reply	[flat|nested] 25+ messages in thread
* [PATCHv2 0/6] Add pinctrl driver for Allwinner A1X SoCs
@ 2012-12-19 20:18 Maxime Ripard
  2012-12-19 20:18   ` Maxime Ripard
  0 siblings, 1 reply; 25+ messages in thread
From: Maxime Ripard @ 2012-12-19 20:18 UTC (permalink / raw)
  To: linux-arm-kernel

Hi everyone,

This patch set adds a pinctrl driver for the IP found in the Allwinner A10
and A13, and the SoC-specific bits for the A13. It also adds the documentation
for the device tree bindings.

This patch set has been tested on a Olimex A13-Olinuxino.

Thanks,
Maxime

Changes from v1:
  - Uses the pinconf-generic mechanism
  - Changed the dt interface to remove the direct bitstuffing to a more
    readable format
  - Replaced the register accessor macros by inline functions and documented
    them

Maxime Ripard (6):
  ARM: sunxi: Add pinctrl driver for Allwinner SoCs
  ARM: pinctrl: sunxi: Add the pinctrl pin set for sun5i
  ARM: sunxi: Add pinctrl node to the device tree
  ARM: sunxi: Add uart1 pinctrl groups
  tty: of_serial: Add pinctrl support
  ARM: sunxi: olinuxino: Add muxing for the uart

 .../bindings/pinctrl/allwinner,sunxi-pinctrl.txt   |   60 ++
 arch/arm/boot/dts/sun5i-a13-olinuxino.dts          |    2 +
 arch/arm/boot/dts/sun5i-a13.dtsi                   |   21 +
 arch/arm/mach-sunxi/Kconfig                        |    1 +
 drivers/pinctrl/Kconfig                            |    5 +
 drivers/pinctrl/Makefile                           |    1 +
 drivers/pinctrl/pinctrl-sunxi.c                    |  792 ++++++++++++++++++++
 drivers/pinctrl/pinctrl-sunxi.h                    |  384 ++++++++++
 drivers/tty/serial/of_serial.c                     |    7 +
 include/linux/pinctrl/pinconf-generic.h            |    1 +
 10 files changed, 1274 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/pinctrl/allwinner,sunxi-pinctrl.txt
 create mode 100644 drivers/pinctrl/pinctrl-sunxi.c
 create mode 100644 drivers/pinctrl/pinctrl-sunxi.h

-- 
1.7.9.5

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

end of thread, other threads:[~2013-01-17  9:55 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-10 22:08 [PATCH 0/6] Add pinctrl driver for Allwinner A1X SoCs Maxime Ripard
2012-12-10 22:08 ` [PATCH 1/6] ARM: sunxi: Add pinctrl driver for Allwinner SoCs Maxime Ripard
2012-12-11  0:28   ` Linus Walleij
2012-12-11  0:28     ` Linus Walleij
2012-12-11 18:30     ` Maxime Ripard
2012-12-11 18:30       ` Maxime Ripard
2012-12-10 22:08 ` [PATCH 2/6] ARM: pinctrl: sunxi: Add the pinctrl pin set for sun5i Maxime Ripard
2012-12-10 22:08 ` [PATCH 3/6] ARM: sunxi: Add pinctrl node to the device tree Maxime Ripard
2012-12-10 22:08 ` [PATCH 4/6] ARM: sunxi: Add uart1 pinctrl groups Maxime Ripard
2012-12-10 22:08 ` [PATCH 5/6] tty: of_serial: Add pinctrl support Maxime Ripard
2012-12-10 22:08   ` Maxime Ripard
2012-12-10 22:08 ` [PATCH 6/6] ARM: sunxi: olinuxino: Add muxing for the uart Maxime Ripard
2012-12-11 21:58 ` [PATCH 0/6] Add pinctrl driver for Allwinner A1X SoCs Alejandro Mery
2012-12-12  9:11   ` Maxime Ripard
2012-12-12 12:49     ` Alejandro Mery
2012-12-12 13:33       ` Maxime Ripard
2012-12-12 13:43         ` Alejandro Mery
  -- strict thread matches above, loose matches on Subject: below --
2012-12-19 20:18 [PATCHv2 " Maxime Ripard
2012-12-19 20:18 ` [PATCH 1/6] ARM: sunxi: Add pinctrl driver for Allwinner SoCs Maxime Ripard
2012-12-19 20:18   ` Maxime Ripard
2013-01-06 23:46   ` Linus Walleij
2013-01-06 23:46     ` Linus Walleij
2013-01-07 15:50     ` Maxime Ripard
2013-01-07 15:50       ` Maxime Ripard
2013-01-17  9:55       ` Linus Walleij
2013-01-17  9:55         ` Linus Walleij

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.