All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCHv4 0/7] Add pinctrl driver for Allwinner A1X SoCs
@ 2013-01-18 21:30 Maxime Ripard
  2013-01-18 21:30   ` Maxime Ripard
                   ` (6 more replies)
  0 siblings, 7 replies; 33+ messages in thread
From: Maxime Ripard @ 2013-01-18 21:30 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 v3:
  - Replaced the bitmasks computation by a define
  - Removed the __devinit
  - Added boundary check on drive levels

Changes from v2:
  - Rebased on top of 3.8-rc2
  - Changed the name of the pinconf argument, split the change to
    pinconf-generic.h to a separate patch, and documented the argument

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 (7):
  pinctrl: pinconf-generic: add drive strength parameter
  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                   |   23 +
 arch/arm/mach-sunxi/Kconfig                        |    1 +
 drivers/pinctrl/Kconfig                            |    5 +
 drivers/pinctrl/Makefile                           |    1 +
 drivers/pinctrl/pinctrl-sunxi.c                    |  801 ++++++++++++++++++++
 drivers/pinctrl/pinctrl-sunxi.h                    |  387 ++++++++++
 drivers/tty/serial/of_serial.c                     |    7 +
 include/linux/pinctrl/pinconf-generic.h            |    3 +
 10 files changed, 1290 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.10.4

^ permalink raw reply	[flat|nested] 33+ messages in thread
* [PATCHv3 0/7] Add pinctrl driver for Allwinner A1X SoCs
@ 2013-01-08 21:43 Maxime Ripard
  2013-01-08 21:43   ` Maxime Ripard
  0 siblings, 1 reply; 33+ messages in thread
From: Maxime Ripard @ 2013-01-08 21:43 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 v2:
  - Rebased on top of 3.8-rc2
  - Changed the name of the pinconf argument, split the change to
    pinconf-generic.h to a separate patch, and documented the argument

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 (7):
  pinctrl: pinconf-generic: add drive strength parameter
  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                   |   23 +
 arch/arm/mach-sunxi/Kconfig                        |    1 +
 drivers/pinctrl/Kconfig                            |    5 +
 drivers/pinctrl/Makefile                           |    1 +
 drivers/pinctrl/pinctrl-sunxi.c                    |  802 ++++++++++++++++++++
 drivers/pinctrl/pinctrl-sunxi.h                    |  384 ++++++++++
 drivers/tty/serial/of_serial.c                     |    7 +
 include/linux/pinctrl/pinconf-generic.h            |    3 +
 10 files changed, 1288 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.10.4

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

end of thread, other threads:[~2013-01-22  8:09 UTC | newest]

Thread overview: 33+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-01-18 21:30 [PATCHv4 0/7] Add pinctrl driver for Allwinner A1X SoCs Maxime Ripard
2013-01-18 21:30 ` [PATCH 1/7] pinctrl: pinconf-generic: add drive strength parameter Maxime Ripard
2013-01-18 21:30   ` Maxime Ripard
2013-01-21 22:05   ` Linus Walleij
2013-01-21 22:05     ` Linus Walleij
2013-01-18 21:30 ` [PATCH 2/7] ARM: sunxi: Add pinctrl driver for Allwinner SoCs Maxime Ripard
2013-01-18 21:30   ` Maxime Ripard
2013-01-21 22:09   ` Linus Walleij
2013-01-21 22:09     ` Linus Walleij
2013-01-22  8:09     ` Olof Johansson
2013-01-22  8:09       ` Olof Johansson
2013-01-21 22:28   ` Arnd Bergmann
2013-01-21 22:28     ` Arnd Bergmann
2013-01-18 21:30 ` [PATCH 3/7] ARM: pinctrl: sunxi: Add the pinctrl pin set for sun5i Maxime Ripard
2013-01-18 21:30   ` Maxime Ripard
2013-01-18 21:30 ` [PATCH 4/7] ARM: sunxi: Add pinctrl node to the device tree Maxime Ripard
2013-01-18 21:30   ` Maxime Ripard
2013-01-18 21:30 ` [PATCH 5/7] ARM: sunxi: Add uart1 pinctrl groups Maxime Ripard
2013-01-18 21:30   ` Maxime Ripard
2013-01-18 21:30 ` [PATCH 6/7] tty: of_serial: Add pinctrl support Maxime Ripard
2013-01-18 21:30   ` Maxime Ripard
2013-01-21 22:13   ` Linus Walleij
2013-01-21 22:13     ` Linus Walleij
2013-01-21 23:42     ` Greg Kroah-Hartman
2013-01-21 23:42       ` Greg Kroah-Hartman
2013-01-18 21:30 ` [PATCH 7/7] ARM: sunxi: olinuxino: Add muxing for the uart Maxime Ripard
2013-01-18 21:30   ` Maxime Ripard
2013-01-21 22:15   ` Linus Walleij
2013-01-21 22:15     ` Linus Walleij
2013-01-22  7:17     ` Olof Johansson
2013-01-22  7:17       ` Olof Johansson
  -- strict thread matches above, loose matches on Subject: below --
2013-01-08 21:43 [PATCHv3 0/7] Add pinctrl driver for Allwinner A1X SoCs Maxime Ripard
2013-01-08 21:43 ` [PATCH 5/7] ARM: sunxi: Add uart1 pinctrl groups Maxime Ripard
2013-01-08 21:43   ` Maxime Ripard

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.