All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 0/3] Amlogic Meson pinctrl driver
@ 2014-11-16 20:14 ` Beniamino Galvani
  0 siblings, 0 replies; 29+ messages in thread
From: Beniamino Galvani @ 2014-11-16 20:14 UTC (permalink / raw)
  To: Linus Walleij
  Cc: linux-gpio-u79uwXL29TY76Z2rM5mHXA,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA,
	devicetree-u79uwXL29TY76Z2rM5mHXA, Arnd Bergmann, Russell King,
	Carlo Caione, Soren Brinkmann, Rob Herring, Pawel Moll,
	Mark Rutland, Ian Campbell, Kumar Gala, Jerry Cao, Victor Wan,
	Beniamino Galvani

Hi,

this is the third version of the pinctrl driver for Amlogic Meson. It
provides a common infrastructure than can be used by all the SoCs of
the family and configuration data specific for Meson8. Adding support
for other SoCs should be only matter of defining new pins and banks.

The driver uses generic DT properties for the definition of mux and
configuration nodes; since there is an ongoing effort to centralize
the parsing to generic code, I've reused the patch "pinctrl:
pinconf-generic: Infer map type from DT property" [1] posted a few
days ago by Soren Brinkmann. I will update the series if that patch is
going to change after the mailing list discussion.

[1] https://lkml.org/lkml/2014/11/3/704

Changes since v2 [ https://lkml.org/lkml/2014/10/14/423 ]
 - move modifications to mach-meson Kconfig to a separate patch
 - use regmap_mmio
 - use generic gpio xlate function
 - don't hardcode gpio base number
 - use gpiochip_add_pin_range()
 - add kerneldoc documentation
 - use plain module_platform_driver() instead of postcore_initcall
 - avoid unneeded copies of platform data

Changes since v1 [ https://lkml.org/lkml/2014/10/7/712 ]
 - added missing checks of return values
 - indentation fixes
 - added missing definitions of groups and functions for Meson8

Beniamino Galvani (3):
  pinctrl: meson: add device tree bindings documentation
  pinctrl: add driver for Amlogic Meson SoCs
  ARM: meson: select PINCTRL_MESON and ARCH_REQUIRE_GPIOLIB

 .../devicetree/bindings/pinctrl/meson,pinctrl.txt  |   97 ++
 arch/arm/mach-meson/Kconfig                        |    3 +
 drivers/pinctrl/Kconfig                            |    8 +
 drivers/pinctrl/Makefile                           |    1 +
 drivers/pinctrl/meson/Makefile                     |    2 +
 drivers/pinctrl/meson/pinctrl-meson.c              |  761 ++++++++++++++
 drivers/pinctrl/meson/pinctrl-meson.h              |  209 ++++
 drivers/pinctrl/meson/pinctrl-meson8.c             | 1087 ++++++++++++++++++++
 include/dt-bindings/gpio/meson8-gpio.h             |  157 +++
 9 files changed, 2325 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/pinctrl/meson,pinctrl.txt
 create mode 100644 drivers/pinctrl/meson/Makefile
 create mode 100644 drivers/pinctrl/meson/pinctrl-meson.c
 create mode 100644 drivers/pinctrl/meson/pinctrl-meson.h
 create mode 100644 drivers/pinctrl/meson/pinctrl-meson8.c
 create mode 100644 include/dt-bindings/gpio/meson8-gpio.h

-- 
1.9.1

--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

end of thread, other threads:[~2015-01-12 23:08 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-16 20:14 [PATCH v3 0/3] Amlogic Meson pinctrl driver Beniamino Galvani
2014-11-16 20:14 ` Beniamino Galvani
2014-11-16 20:14 ` Beniamino Galvani
2014-11-16 20:14 ` [PATCH v3 1/3] pinctrl: meson: add device tree bindings documentation Beniamino Galvani
2014-11-16 20:14   ` Beniamino Galvani
2014-11-27 13:44   ` Linus Walleij
2014-11-27 13:44     ` Linus Walleij
2014-11-16 20:14 ` [PATCH v3 2/3] pinctrl: add driver for Amlogic Meson SoCs Beniamino Galvani
2014-11-16 20:14   ` Beniamino Galvani
2014-11-27 13:48   ` Linus Walleij
2014-11-27 13:48     ` Linus Walleij
2014-11-27 13:48     ` Linus Walleij
2014-11-27 22:34     ` Beniamino Galvani
2014-11-27 22:34       ` Beniamino Galvani
2014-11-27 22:34       ` Beniamino Galvani
2015-01-12  0:00       ` Linus Walleij
2015-01-12  0:00         ` Linus Walleij
2015-01-12  0:00         ` Linus Walleij
2015-01-12 23:07         ` Beniamino Galvani
2015-01-12 23:07           ` Beniamino Galvani
2015-01-12 23:07           ` Beniamino Galvani
     [not found] ` <1416168856-12747-1-git-send-email-b.galvani-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2014-11-16 20:14   ` [PATCH v3 3/3] ARM: meson: select PINCTRL_MESON and ARCH_REQUIRE_GPIOLIB Beniamino Galvani
2014-11-16 20:14     ` Beniamino Galvani
2014-11-16 20:14     ` Beniamino Galvani
2014-11-27 13:49     ` Linus Walleij
2014-11-27 13:49       ` Linus Walleij
2014-11-17 18:57 ` [PATCH v3 0/3] Amlogic Meson pinctrl driver Sören Brinkmann
2014-11-17 18:57   ` Sören Brinkmann
2014-11-17 18:57   ` Sören Brinkmann

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.