Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit deda8287 authored by Viresh Kumar's avatar Viresh Kumar Committed by Arnd Bergmann
Browse files

pinctrl: Add SPEAr pinctrl drivers



This adds pinctrl driver for SPEAr platform. It also updates MAINTAINERS file
for SPEAr pinctrl drivers.

Signed-off-by: default avatarViresh Kumar <viresh.kumar@st.com>
Acked-by: default avatarLinus Walleij <linus.walleij@linaro.org>
Reviewed-by: default avatarStephen Warren <swarren@wwwdotorg.org>
parent f3215b42
Loading
Loading
Loading
Loading
+8 −15
Original line number Diff line number Diff line
@@ -5234,6 +5234,14 @@ M: Linus Walleij <linus.walleij@linaro.org>
S:	Maintained
F:	drivers/pinctrl/

PIN CONTROLLER - ST SPEAR
M:	Viresh Kumar <viresh.kumar@st.com>
L:	spear-devel@list.st.com
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
W:	http://www.st.com/spear
S:	Maintained
F:	driver/pinctrl/spear/

PKTCDVD DRIVER
M:	Peter Osterlund <petero2@telia.com>
S:	Maintained
@@ -6330,21 +6338,6 @@ F: arch/arm/mach-spear*/clock.c
F:	arch/arm/plat-spear/clock.c
F:	arch/arm/plat-spear/include/plat/clock.h

SPEAR PAD MULTIPLEXING SUPPORT
M:	Viresh Kumar <viresh.kumar@st.com>
L:	spear-devel@list.st.com
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
W:	http://www.st.com/spear
S:	Maintained
F:	arch/arm/plat-spear/include/plat/padmux.h
F:	arch/arm/plat-spear/padmux.c
F:	arch/arm/mach-spear*/spear*xx.c
F:	arch/arm/mach-spear*/include/mach/generic.h
F:	arch/arm/mach-spear3xx/spear3*0.c
F:	arch/arm/mach-spear3xx/spear3*0_evb.c
F:	arch/arm/mach-spear6xx/spear600.c
F:	arch/arm/mach-spear6xx/spear600_evb.c

SPI SUBSYSTEM
M:	Grant Likely <grant.likely@secretlab.ca>
L:	spi-devel-general@lists.sourceforge.net
+2 −0
Original line number Diff line number Diff line
@@ -84,6 +84,8 @@ config PINCTRL_COH901
	  COH 901 335 and COH 901 571/3. They contain 3, 5 or 7
	  ports of 8 GPIO pins each.

source "drivers/pinctrl/spear/Kconfig"

endmenu

endif
+2 −0
Original line number Diff line number Diff line
@@ -16,3 +16,5 @@ obj-$(CONFIG_PINCTRL_TEGRA20) += pinctrl-tegra20.o
obj-$(CONFIG_PINCTRL_TEGRA30)	+= pinctrl-tegra30.o
obj-$(CONFIG_PINCTRL_U300)	+= pinctrl-u300.o
obj-$(CONFIG_PINCTRL_COH901)	+= pinctrl-coh901.o

obj-$(CONFIG_PLAT_SPEAR)	+= spear/
+14 −0
Original line number Diff line number Diff line
#
# ST Microelectronics SPEAr PINCTRL drivers
#

if PLAT_SPEAR

config PINCTRL_SPEAR
	bool
	depends on OF
	select PINMUX
	help
	  This enables pin control drivers for SPEAr Platform

endif
+3 −0
Original line number Diff line number Diff line
# SPEAr pinmux support

obj-$(CONFIG_PINCTRL_SPEAR)	+= pinctrl-spear.o
Loading