blob: a0ac167d145a548bd738d2440e215889a3955bc5 [file] [log] [blame]
Masahiro Yamadad90a5a32015-08-27 12:44:29 +09001#
2# PINCTRL infrastructure and drivers
3#
4
5menu "Pin controllers"
6
7config PINCTRL
8 bool "Support pin controllers"
9 depends on DM
10 help
11 This enables the basic support for pinctrl framework. You may want
12 to enable some more options depending on what you want to do.
13
14config PINCTRL_FULL
15 bool "Support full pin controllers"
16 depends on PINCTRL && OF_CONTROL
17 default y
18 help
19 This provides Linux-compatible device tree interface for the pinctrl
20 subsystem. This feature depends on device tree configuration because
21 it parses a device tree to look for the pinctrl device which the
22 peripheral device is associated with.
23
24 If this option is disabled (it is the only possible choice for non-DT
25 boards), the pinctrl core provides no systematic mechanism for
26 identifying peripheral devices, applying needed pinctrl settings.
27 It is totally up to the implementation of each low-level driver.
28 You can save memory footprint in return for some limitations.
29
30config PINCTRL_GENERIC
31 bool "Support generic pin controllers"
32 depends on PINCTRL_FULL
33 default y
34 help
35 Say Y here if you want to use the pinctrl subsystem through the
36 generic DT interface. If enabled, some functions become available
37 to parse common properties such as "pins", "groups", "functions" and
38 some pin configuration parameters. It would be easier if you only
39 need the generic DT interface for pin muxing and pin configuration.
40 If you need to handle vendor-specific DT properties, you can disable
41 this option and implement your own set_state callback in the pinctrl
42 operations.
43
44config PINMUX
45 bool "Support pin multiplexing controllers"
46 depends on PINCTRL_GENERIC
47 default y
48 help
49 This option enables pin multiplexing through the generic pinctrl
Marek BehĂșnde2069c2018-03-02 09:56:00 +010050 framework. Most SoCs have their own multiplexing arrangement where
51 a single pin can be used for several functions. An SoC pinctrl driver
52 allows the required function to be selected for each pin.
Simon Glass458a0702015-08-30 16:55:12 -060053 The driver is typically controlled by the device tree.
Masahiro Yamadad90a5a32015-08-27 12:44:29 +090054
55config PINCONF
56 bool "Support pin configuration controllers"
57 depends on PINCTRL_GENERIC
58 help
59 This option enables pin configuration through the generic pinctrl
60 framework.
61
62config SPL_PINCTRL
Philipp Tomsich0fa0abe2017-07-26 12:27:42 +020063 bool "Support pin controllers in SPL"
Masahiro Yamadad90a5a32015-08-27 12:44:29 +090064 depends on SPL && SPL_DM
65 help
66 This option is an SPL-variant of the PINCTRL option.
67 See the help of PINCTRL for details.
68
69config SPL_PINCTRL_FULL
70 bool "Support full pin controllers in SPL"
71 depends on SPL_PINCTRL && SPL_OF_CONTROL
Vikas Manochab9747692017-05-28 12:55:10 -070072 default n if TARGET_STM32F746_DISCO
Masahiro Yamadad90a5a32015-08-27 12:44:29 +090073 default y
74 help
75 This option is an SPL-variant of the PINCTRL_FULL option.
76 See the help of PINCTRL_FULL for details.
77
78config SPL_PINCTRL_GENERIC
79 bool "Support generic pin controllers in SPL"
80 depends on SPL_PINCTRL_FULL
81 default y
82 help
83 This option is an SPL-variant of the PINCTRL_GENERIC option.
84 See the help of PINCTRL_GENERIC for details.
85
86config SPL_PINMUX
87 bool "Support pin multiplexing controllers in SPL"
88 depends on SPL_PINCTRL_GENERIC
89 default y
90 help
91 This option is an SPL-variant of the PINMUX option.
92 See the help of PINMUX for details.
Simon Glass458a0702015-08-30 16:55:12 -060093 The pinctrl subsystem can add a substantial overhead to the SPL
94 image since it typically requires quite a few tables either in the
95 driver or in the device tree. If this is acceptable and you need
96 to adjust pin multiplexing in SPL in order to boot into U-Boot,
97 enable this option. You will need to enable device tree in SPL
98 for this to work.
Masahiro Yamadad90a5a32015-08-27 12:44:29 +090099
100config SPL_PINCONF
101 bool "Support pin configuration controllers in SPL"
102 depends on SPL_PINCTRL_GENERIC
103 help
104 This option is an SPL-variant of the PINCONF option.
105 See the help of PINCONF for details.
106
107if PINCTRL || SPL_PINCTRL
108
Philipp Tomsich51c7f342017-04-19 16:46:37 +0200109config PINCTRL_AR933X
Wills Wanga79d0642016-03-16 16:59:55 +0800110 bool "QCA/Athores ar933x pin control driver"
111 depends on DM && SOC_AR933X
112 help
113 Support pin multiplexing control on QCA/Athores ar933x SoCs.
114 The driver is controlled by a device tree node which contains
115 both the GPIO definitions and pin control functions for each
116 available multiplex function.
117
Wenyou Yang9319a752017-03-23 12:44:37 +0800118config PINCTRL_AT91
119 bool "AT91 pinctrl driver"
120 depends on DM
121 help
122 This option is to enable the AT91 pinctrl driver for AT91 PIO
Philipp Tomsich51c7f342017-04-19 16:46:37 +0200123 controller.
124
125 AT91 PIO controller is a combined gpio-controller, pin-mux and
126 pin-config module. Each I/O pin may be dedicated as a general-purpose
127 I/O or be assigned to a function of an embedded peripheral. Each I/O
128 pin has a glitch filter providing rejection of glitches lower than
129 one-half of peripheral clock cycle and a debouncing filter providing
130 rejection of unwanted pulses from key or push button operations. You
131 can also control the multi-driver capability, pull-up and pull-down
132 feature on each I/O pin.
Wenyou Yang9319a752017-03-23 12:44:37 +0800133
Wenyou Yangac72e172016-07-20 17:16:27 +0800134config PINCTRL_AT91PIO4
135 bool "AT91 PIO4 pinctrl driver"
136 depends on DM
137 help
138 This option is to enable the AT91 pinctrl driver for AT91 PIO4
139 controller which is available on SAMA5D2 SoC.
140
Philipp Tomsich51c7f342017-04-19 16:46:37 +0200141config PINCTRL_PIC32
142 bool "Microchip PIC32 pin-control and pin-mux driver"
143 depends on DM && MACH_PIC32
144 default y
145 help
146 Supports individual pin selection and configuration for each
147 remappable peripheral available on Microchip PIC32
148 SoCs. This driver is controlled by a device tree node which
Chris Packhamcb4d1bb2019-01-13 22:13:26 +1300149 contains both GPIO definition and pin control functions.
Philipp Tomsich51c7f342017-04-19 16:46:37 +0200150
151config PINCTRL_QCA953X
152 bool "QCA/Athores qca953x pin control driver"
153 depends on DM && SOC_QCA953X
154 help
155 Support pin multiplexing control on QCA/Athores qca953x SoCs.
156
157 The driver is controlled by a device tree node which contains both
158 the GPIO definitions and pin control functions for each available
159 multiplex function.
160
Andy Yan09aa7c42017-06-01 18:00:10 +0800161config PINCTRL_ROCKCHIP_RV1108
162 bool "Rockchip rv1108 pin control driver"
163 depends on DM
164 help
165 Support pin multiplexing control on Rockchip rv1108 SoC.
166
167 The driver is controlled by a device tree node which contains
168 both the GPIO definitions and pin control functions for each
169 available multiplex function.
170
Masahiro Yamada9c6a3c62015-08-27 12:44:30 +0900171config PINCTRL_SANDBOX
172 bool "Sandbox pinctrl driver"
173 depends on SANDBOX
174 help
Philipp Tomsich51c7f342017-04-19 16:46:37 +0200175 This enables pinctrl driver for sandbox.
Masahiro Yamada9c6a3c62015-08-27 12:44:30 +0900176
Philipp Tomsich51c7f342017-04-19 16:46:37 +0200177 Currently, this driver actually does nothing but print debug
178 messages when pinctrl operations are invoked.
Vikas Manocha94d53082017-02-12 10:25:49 -0800179
Felix Brack44d5c372017-03-22 11:26:44 +0100180config PINCTRL_SINGLE
181 bool "Single register pin-control and pin-multiplex driver"
182 depends on DM
183 help
184 This enables pinctrl driver for systems using a single register for
185 pin configuration and multiplexing. TI's AM335X SoCs are examples of
186 such systems.
Philipp Tomsich51c7f342017-04-19 16:46:37 +0200187
Felix Brack44d5c372017-03-22 11:26:44 +0100188 Depending on the platform make sure to also enable OF_TRANSLATE and
189 eventually SPL_OF_TRANSLATE to get correct address translations.
190
Philipp Tomsich51c7f342017-04-19 16:46:37 +0200191config PINCTRL_STI
192 bool "STMicroelectronics STi pin-control and pin-mux driver"
193 depends on DM && ARCH_STI
194 default y
195 help
196 Support pin multiplexing control on STMicrolectronics STi SoCs.
197
198 The driver is controlled by a device tree node which contains both
199 the GPIO definitions and pin control functions for each available
200 multiplex function.
201
202config PINCTRL_STM32
203 bool "ST STM32 pin control driver"
204 depends on DM
205 help
206 Supports pin multiplexing control on stm32 SoCs.
207
208 The driver is controlled by a device tree node which contains both
209 the GPIO definitions and pin control functions for each available
210 multiplex function.
211
Patrick Delaunay82624352019-03-11 11:13:15 +0100212config PINCTRL_STMFX
213 bool "STMicroelectronics STMFX I2C GPIO expander pinctrl driver"
214 depends on DM && PINCTRL_FULL
215 help
216 I2C driver for STMicroelectronics Multi-Function eXpander (STMFX)
217 GPIO expander.
218 Supports pin multiplexing control on stm32 SoCs.
219
220 The driver is controlled by a device tree node which contains both
221 the GPIO definitions and pin control functions for each available
222 multiplex function.
223
224config SPL_PINCTRL_STMFX
225 bool "STMicroelectronics STMFX I2C GPIO expander pinctrl driver in SPL"
226 depends on SPL_PINCTRL_FULL
227 help
228 This option is an SPL-variant of the SPL_PINCTRL_STMFX option.
229 See the help of PINCTRL_STMFX for details.
230
maxims@google.com4f0e44e2017-04-17 12:00:27 -0700231config ASPEED_AST2500_PINCTRL
232 bool "Aspeed AST2500 pin control driver"
233 depends on DM && PINCTRL_GENERIC && ASPEED_AST2500
234 default y
235 help
236 Support pin multiplexing control on Aspeed ast2500 SoC. The driver uses
237 Generic Pinctrl framework and is compatible with the Linux driver,
238 i.e. it uses the same device tree configuration.
239
Masahiro Yamadad90a5a32015-08-27 12:44:29 +0900240endif
241
Philipp Tomsichefc46772019-02-01 15:11:48 +0100242source "drivers/pinctrl/broadcom/Kconfig"
243source "drivers/pinctrl/exynos/Kconfig"
Ryder Lee01aa9d12018-11-15 10:07:58 +0800244source "drivers/pinctrl/mediatek/Kconfig"
Philipp Tomsichefc46772019-02-01 15:11:48 +0100245source "drivers/pinctrl/meson/Kconfig"
246source "drivers/pinctrl/mscc/Kconfig"
247source "drivers/pinctrl/mvebu/Kconfig"
Peng Fan745df682016-02-03 10:06:07 +0800248source "drivers/pinctrl/nxp/Kconfig"
Marek Vasut910df4d2017-09-15 21:13:55 +0200249source "drivers/pinctrl/renesas/Kconfig"
Philipp Tomsich5a127322019-02-01 15:15:38 +0100250source "drivers/pinctrl/rockchip/Kconfig"
Masahiro Yamada5dc626f2015-09-11 20:17:32 +0900251source "drivers/pinctrl/uniphier/Kconfig"
252
Masahiro Yamadad90a5a32015-08-27 12:44:29 +0900253endmenu