blob: a54a93112cba47dce84ae57d72d70871e66fa1a3 [file] [log] [blame]
Linus Walleij2744e8a2011-05-02 20:50:54 +02001#
2# PINCTRL infrastructure and drivers
3#
4
Linus Walleij45f034e2011-11-05 21:28:46 +01005config PINCTRL
6 bool
Linus Walleij2744e8a2011-05-02 20:50:54 +02007
8if PINCTRL
9
Linus Walleij45f034e2011-11-05 21:28:46 +010010menu "Pin controllers"
11 depends on PINCTRL
12
Linus Walleij2744e8a2011-05-02 20:50:54 +020013config PINMUX
Linus Walleijae6b4d82011-10-19 18:14:33 +020014 bool "Support pin multiplexing controllers"
15
16config PINCONF
17 bool "Support pin configuration controllers"
Linus Walleij2744e8a2011-05-02 20:50:54 +020018
Linus Walleij394349f2011-11-24 18:27:15 +010019config GENERIC_PINCONF
20 bool
21 select PINCONF
22
Linus Walleij2744e8a2011-05-02 20:50:54 +020023config DEBUG_PINCTRL
24 bool "Debug PINCTRL calls"
25 depends on DEBUG_KERNEL
26 help
27 Say Y here to add some extra checks and diagnostics to PINCTRL calls.
28
Dong Aishengae75ff82012-04-27 20:26:16 +080029config PINCTRL_IMX
30 bool
31 select PINMUX
32 select PINCONF
33
Dong Aishengd8fe3572012-04-27 20:26:17 +080034config PINCTRL_IMX6Q
35 bool "IMX6Q pinctrl driver"
36 depends on OF
37 depends on SOC_IMX6Q
38 select PINCTRL_IMX
39 help
40 Say Y here to enable the imx6q pinctrl driver
41
Haojian Zhuangf4e66982012-01-04 10:26:33 +080042config PINCTRL_PXA3xx
43 bool
44 select PINMUX
45
46config PINCTRL_MMP2
47 bool "MMP2 pin controller driver"
48 depends on ARCH_MMP
49 select PINCTRL_PXA3xx
50 select PINCONF
51
Shawn Guo17723112012-04-28 13:00:50 +080052config PINCTRL_MXS
53 bool
54
55config PINCTRL_IMX23
56 bool
57 select PINMUX
58 select PINCONF
59 select PINCTRL_MXS
60
61config PINCTRL_IMX28
62 bool
63 select PINMUX
64 select PINCONF
65 select PINCTRL_MXS
66
Haojian Zhuangf4e66982012-01-04 10:26:33 +080067config PINCTRL_PXA168
68 bool "PXA168 pin controller driver"
69 depends on ARCH_MMP
70 select PINCTRL_PXA3xx
71 select PINCONF
72
73config PINCTRL_PXA910
74 bool "PXA910 pin controller driver"
75 depends on ARCH_MMP
76 select PINCTRL_PXA3xx
77 select PINCONF
78
Linus Walleij3bece552011-12-18 23:44:26 +010079config PINCTRL_SIRF
80 bool "CSR SiRFprimaII pin controller driver"
Rongjun Ying393daa82011-10-09 03:11:13 -070081 depends on ARCH_PRIMA2
82 select PINMUX
Rongjun Ying393daa82011-10-09 03:11:13 -070083
Stephen Warren971dac72012-02-01 14:04:47 -070084config PINCTRL_TEGRA
85 bool
86
87config PINCTRL_TEGRA20
88 bool
89 select PINMUX
90 select PINCONF
91 select PINCTRL_TEGRA
92
93config PINCTRL_TEGRA30
94 bool
95 select PINMUX
96 select PINCONF
97 select PINCTRL_TEGRA
98
Linus Walleij3bece552011-12-18 23:44:26 +010099config PINCTRL_U300
100 bool "U300 pin controller driver"
Linus Walleij98da3522011-05-02 20:54:38 +0200101 depends on ARCH_U300
102 select PINMUX
Linus Walleijdc0b1aa2011-11-16 21:58:10 +0100103 select GENERIC_PINCONF
Linus Walleij45f034e2011-11-05 21:28:46 +0100104
Linus Walleijca402d32011-11-16 09:22:59 +0100105config PINCTRL_COH901
106 bool "ST-Ericsson U300 COH 901 335/571 GPIO"
Linus Walleijb4e3ac72011-11-16 10:24:39 +0100107 depends on GPIOLIB && ARCH_U300 && PINMUX_U300
Linus Walleijca402d32011-11-16 09:22:59 +0100108 help
109 Say yes here to support GPIO interface on ST-Ericsson U300.
110 The names of the two IP block variants supported are
111 COH 901 335 and COH 901 571/3. They contain 3, 5 or 7
112 ports of 8 GPIO pins each.
113
Viresh Kumardeda8282012-03-28 22:27:07 +0530114source "drivers/pinctrl/spear/Kconfig"
115
Linus Walleij45f034e2011-11-05 21:28:46 +0100116endmenu
Linus Walleij98da3522011-05-02 20:54:38 +0200117
Linus Walleij2744e8a2011-05-02 20:50:54 +0200118endif