blob: 1c963c2c536f9ba28da5b29ac0883facdcaaa7b2 [file] [log] [blame]
Masahiro Yamadacc85b7b2015-07-26 02:46:26 +09001#
2# GPIO infrastructure and drivers
3#
4
Simon Glass12cf6022021-08-08 12:20:24 -06005menuconfig GPIO
6 bool "GPIO support"
7 default y
8 help
9 Enable support for GPIOs (General-purpose Input/Output) in U-Boot.
10 GPIOs allow U-Boot to read the state of an input line (high or
11 low) and set the state of an output line. This can be used to
12 drive LEDs, control power to various system parts and read user
13 input. GPIOs can be useful to enable a 'sign-of-life' LED,
14 for example. Enable this option to build the drivers in
15 drivers/gpio as part of an U-Boot build.
16
17if GPIO
Masahiro Yamadacc85b7b2015-07-26 02:46:26 +090018
Masahiro Yamada57ad8ee2014-10-23 22:26:09 +090019config DM_GPIO
20 bool "Enable Driver Model for GPIO drivers"
21 depends on DM
22 help
Simon Glassd8b771d2015-02-05 21:41:35 -070023 Enable driver model for GPIO access. The standard GPIO
24 interface (gpio_get_value(), etc.) is then implemented by
25 the GPIO uclass. Drivers provide methods to query the
26 particular GPIOs that they provide. The uclass interface
27 is defined in include/asm-generic/gpio.h.
Albert ARIBAUD \(3ADEV\)eb135ad2015-03-31 11:40:46 +020028
Simon Glassfa4689a2019-12-06 21:41:35 -070029config SPL_DM_GPIO
30 bool "Enable Driver Model for GPIO drivers in SPL"
Simon Glass035939e2021-07-10 21:14:30 -060031 depends on DM_GPIO && SPL_DM && SPL_GPIO
Simon Glassfa4689a2019-12-06 21:41:35 -070032 default y
33 help
34 Enable driver model for GPIO access in SPL. The standard GPIO
35 interface (gpio_get_value(), etc.) is then implemented by
36 the GPIO uclass. Drivers provide methods to query the
37 particular GPIOs that they provide. The uclass interface
38 is defined in include/asm-generic/gpio.h.
39
40config TPL_DM_GPIO
41 bool "Enable Driver Model for GPIO drivers in TPL"
Simon Glass035939e2021-07-10 21:14:30 -060042 depends on DM_GPIO && TPL_DM && TPL_GPIO
Simon Glassfa4689a2019-12-06 21:41:35 -070043 default y
44 help
45 Enable driver model for GPIO access in TPL. The standard GPIO
46 interface (gpio_get_value(), etc.) is then implemented by
47 the GPIO uclass. Drivers provide methods to query the
48 particular GPIOs that they provide. The uclass interface
49 is defined in include/asm-generic/gpio.h.
50
Heiko Schocher58e4c382019-07-17 06:59:51 +020051config GPIO_HOG
Heiko Schocher39cb3402019-06-12 06:11:46 +020052 bool "Enable GPIO hog support"
53 depends on DM_GPIO
Heiko Schocher39cb3402019-06-12 06:11:46 +020054 help
55 Enable gpio hog support
56 The GPIO chip may contain GPIO hog definitions. GPIO hogging
57 is a mechanism providing automatic GPIO request and config-
58 uration as part of the gpio-controller's driver probe function.
59
Heiko Schochera3e793c2020-05-22 11:08:59 +020060config DM_GPIO_LOOKUP_LABEL
61 bool "Enable searching for gpio labelnames"
62 depends on DM_GPIO
63 help
64 This option enables searching for gpio names in
65 the defined gpio labels, if the search for the
66 gpio bank name failed. This makes sense if you use
67 different gpios on different hardware versions
68 for the same functionality in board code.
69
70config SPL_DM_GPIO_LOOKUP_LABEL
71 bool "Enable searching for gpio labelnames"
Simon Glass035939e2021-07-10 21:14:30 -060072 depends on DM_GPIO && SPL_DM && SPL_GPIO
Heiko Schochera3e793c2020-05-22 11:08:59 +020073 help
74 This option enables searching for gpio names in
75 the defined gpio labels, if the search for the
76 gpio bank name failed. This makes sense if you use
77 different gpios on different hardware versions
78 for the same functionality in board code.
79
Thomas Choufb1a4bf2015-10-21 21:33:45 +080080config ALTERA_PIO
81 bool "Altera PIO driver"
82 depends on DM_GPIO
83 help
84 Select this to enable PIO for Altera devices. Please find
85 details on the "Embedded Peripherals IP User Guide" of Altera.
86
Álvaro Fernández Rojase9301112017-05-07 20:09:30 +020087config BCM6345_GPIO
88 bool "BCM6345 GPIO driver"
Philippe Reynesbcef7632020-01-07 20:14:15 +010089 depends on DM_GPIO && (ARCH_BMIPS || ARCH_BCM68360 || \
Philippe Reynesceb46c22022-02-11 19:18:35 +010090 ARCH_BCM6858 || ARCH_BCM63158 || \
91 ARCH_BCM6753)
Álvaro Fernández Rojase9301112017-05-07 20:09:30 +020092 help
93 This driver supports the GPIO banks on BCM6345 SoCs.
94
Jason Li5ec230c2020-01-30 12:34:56 -080095config CORTINA_GPIO
96 bool "Cortina-Access GPIO driver"
97 depends on DM_GPIO && CORTINA_PLATFORM
98 help
99 Enable support for the GPIO controller in Cortina CAxxxx SoCs.
100 This driver supports all CPU ISA variants supported by Cortina
101 Access CAxxxx SoCs.
102
Marek Vasut12a8d792015-06-23 15:54:19 +0200103config DWAPB_GPIO
104 bool "DWAPB GPIO driver"
105 depends on DM && DM_GPIO
Marek Vasut12a8d792015-06-23 15:54:19 +0200106 help
107 Support for the Designware APB GPIO driver.
108
Wenyou Yangad054482017-03-23 12:46:19 +0800109config AT91_GPIO
110 bool "AT91 PIO GPIO driver"
Wenyou Yangad054482017-03-23 12:46:19 +0800111 help
112 Say yes here to select AT91 PIO GPIO driver. AT91 PIO
113 controller manages up to 32 fully programmable input/output
114 lines. Each I/O line may be dedicated as a general-purpose
115 I/O or be assigned to a function of an embedded peripheral.
116 The assignment to a function of an embedded peripheral is
117 the responsibility of AT91 Pinctrl driver. This driver is
118 responsible for the general-purpose I/O.
119
Wenyou Yang5a09d132015-11-04 14:25:13 +0800120config ATMEL_PIO4
121 bool "ATMEL PIO4 driver"
Wenyou Yang0b971522016-07-20 17:16:26 +0800122 depends on DM_GPIO
Wenyou Yang5a09d132015-11-04 14:25:13 +0800123 help
124 Say yes here to support the Atmel PIO4 driver.
125 The PIO4 is new version of Atmel PIO controller, which manages
126 up to 128 fully programmable input/output lines. Each I/O line
127 may be dedicated as a general purpose I/O or be assigned to
128 a function of an embedded peripheral.
129
Adam Fordbaad83a2018-07-10 07:01:20 -0500130config DA8XX_GPIO
131 bool "DA8xx GPIO Driver"
132 help
133 This driver supports the DA8xx GPIO controller
134
Oleksandr Suvorov3151e422021-11-21 18:05:16 +0200135config FXL6408_GPIO
136 bool "FXL6408 I2C GPIO expander driver"
137 depends on DM_GPIO && DM_I2C
138 help
139 This driver supports the Fairchild FXL6408 device. FXL6408 is a
140 fully configurable 8-bit I2C-controlled GPIO expander.
141
Simon Glass52c365f2016-03-11 22:07:27 -0700142config INTEL_BROADWELL_GPIO
143 bool "Intel Broadwell GPIO driver"
144 depends on DM
145 help
146 This driver supports Broadwell U devices which have an expanded
147 GPIO feature set. The difference is large enough to merit a separate
148 driver from the common Intel ICH6 driver. It supports a total of
149 95 GPIOs which can be configured from the device tree.
150
Simon Glass83490512019-12-06 21:42:54 -0700151config INTEL_GPIO
152 bool "Intel generic GPIO driver"
153 depends on DM_GPIO
154 help
155 Say yes here to select Intel generic GPIO driver. This controller
156 supports recent chips (e.g. Apollo Lake). It permits basic GPIO
157 control including setting pins to input/output. It makes use of its
158 parent pinctrl driver to actually effect changes.
159
Bin Mengce9d1b02017-07-30 06:23:28 -0700160config INTEL_ICH6_GPIO
161 bool "Intel ICH6 compatible legacy GPIO driver"
162 depends on DM_GPIO
163 help
164 Say yes here to select Intel ICH6 compatible legacy GPIO driver.
165
Peng Fanc5f49862017-02-22 16:21:45 +0800166config IMX_RGPIO2P
167 bool "i.MX7ULP RGPIO2P driver"
168 depends on DM
Peng Fanc5f49862017-02-22 16:21:45 +0800169 help
170 This driver supports i.MX7ULP Rapid GPIO2P controller.
171
Rayagonda Kokatanurf600db42020-05-05 23:26:46 +0530172config IPROC_GPIO
173 bool "Broadcom iProc GPIO driver(without pinconf)"
Rayagonda Kokatanurf600db42020-05-05 23:26:46 +0530174 help
175 The Broadcom iProc based SoCs- Cygnus, NS2, NS3, NSP and Stingray,
176 use the same GPIO Controller IP hence this driver could be used
177 for all.
178
179 The Broadcom iProc based SoCs have multiple GPIO controllers and only
180 the always-ON GPIO controller (CRMU/AON) is supported by this driver.
181
Eugeniy Paltsev92d32fc2017-10-16 16:21:32 +0300182config HSDK_CREG_GPIO
183 bool "HSDK CREG GPIO griver"
Alexey Brodkin72593382017-12-10 20:55:44 +0300184 depends on DM_GPIO
Eugeniy Paltsev92d32fc2017-10-16 16:21:32 +0300185 help
186 This driver supports CREG GPIOs on Synopsys HSDK SOC.
187
Tom Rinif7c69852021-12-17 18:08:46 -0500188config KIRKWOOD_GPIO
189 bool "Kirkwood GPIO driver"
190 help
191 This drdiver supports GPIOs on Kirkwood platforms
192
Albert ARIBAUD \(3ADEV\)eb135ad2015-03-31 11:40:46 +0200193config LPC32XX_GPIO
194 bool "LPC32XX GPIO driver"
195 depends on DM
Albert ARIBAUD \(3ADEV\)eb135ad2015-03-31 11:40:46 +0200196 help
197 Support for the LPC32XX GPIO driver.
Simon Glass084a3fe2015-03-06 13:19:01 -0700198
Hannes Schmelzerd3254ce2021-10-01 13:37:57 +0200199config MAX7320_GPIO
200 bool "MAX7320 I2C GPIO Expander driver"
201 depends on DM_GPIO && DM_I2C
202 help
203 Support for MAX7320 I2C 8/16-bit GPIO expander.
204 original maxim device has 8 push/pull outputs,
205 some clones offers 16bit.
206
Sebastian Reicheld761e822021-07-15 17:40:00 +0200207config MCP230XX_GPIO
208 bool "MCP230XX GPIO driver"
209 depends on DM
210 help
211 Support for Microchip's MCP230XX I2C connected GPIO devices.
212 The following chips are supported:
213 - MCP23008
214 - MCP23017
215 - MCP23018
216
Lars Povlsen37a209c2019-01-02 09:52:21 +0100217config MSCC_SGPIO
218 bool "Microsemi Serial GPIO driver"
219 depends on DM_GPIO && SOC_VCOREIII
220 help
221 Support for the VCoreIII SoC serial GPIO device. By using a
222 serial interface, the SIO controller significantly extends
223 the number of available GPIOs with a minimum number of
224 additional pins on the device. The primary purpose of the
225 SIO controller is to connect control signals from SFP
226 modules and to act as an LED controller.
227
Mateusz Kulikowskia1b3ae92016-03-31 23:12:15 +0200228config MSM_GPIO
229 bool "Qualcomm GPIO driver"
230 depends on DM_GPIO
Mateusz Kulikowskia1b3ae92016-03-31 23:12:15 +0200231 help
232 Support GPIO controllers on Qualcomm Snapdragon family of SoCs.
233 This controller have single bank (default name "soc"), every
234 gpio has it's own set of registers.
235 Only simple GPIO operations are supported (get/set, change of
236 direction and checking pin function).
237 Supported devices:
238 - APQ8016
239 - MSM8916
240
Adam Fordb413c452018-02-04 09:32:43 -0600241config MXC_GPIO
Hannes Schmelzerfd94af52018-06-07 12:10:09 +0200242 bool "Freescale/NXP MXC GPIO driver"
Adam Fordb413c452018-02-04 09:32:43 -0600243 help
244 Support GPIO controllers on various i.MX platforms
245
Lukasz Majewskie076d7c2019-08-13 18:10:39 +0200246config MXS_GPIO
247 bool "Freescale/NXP MXS GPIO driver"
248 help
249 Support GPIO controllers on i.MX23 and i.MX28 platforms
250
Tom Rinifd36c192017-05-12 22:33:21 -0400251config OMAP_GPIO
252 bool "TI OMAP GPIO driver"
253 depends on ARCH_OMAP2PLUS
254 default y
255 help
256 Support GPIO controllers on the TI OMAP3/4/5 and related (such as
257 AM335x/AM43xx/AM57xx/DRA7xx/etc) families of SoCs.
258
Simon Glassa9e7f2c2017-08-04 16:34:32 -0600259config CMD_PCA953X
260 bool "Enable the pca953x command"
261 help
262 Deprecated: This should be converted to driver model.
263
264 This command provides access to a pca953x GPIO device using the
265 legacy GPIO interface. Several subcommands are provided which mirror
266 the standard 'gpio' command. It should use that instead.
267
Mateusz Kulikowski15a58532016-03-31 23:12:31 +0200268config PM8916_GPIO
269 bool "Qualcomm PM8916 PMIC GPIO/keypad driver"
270 depends on DM_GPIO && PMIC_PM8916
271 help
272 Support for GPIO pins and power/reset buttons found on
273 Qualcomm PM8916 PMIC.
274 Default name for GPIO bank is "pm8916".
275 Power and reset buttons are placed in "pm8916_key" bank and
276 have gpio numbers 0 and 1 respectively.
277
Vignesh R0caf07c2016-08-02 10:14:24 +0530278config PCF8575_GPIO
279 bool "PCF8575 I2C GPIO Expander driver"
280 depends on DM_GPIO && DM_I2C
281 help
282 Support for PCF8575 I2C 16-bit GPIO expander. Most of these
283 chips are from NXP and TI.
284
Marek Vasutfefed7a2017-09-15 21:13:56 +0200285config RCAR_GPIO
286 bool "Renesas RCar GPIO driver"
287 depends on DM_GPIO && ARCH_RMOBILE
288 help
289 This driver supports the GPIO banks on Renesas RCar SoCs.
290
Marek Vasut6d99d962019-05-04 16:00:17 +0200291config RZA1_GPIO
292 bool "Renesas RZ/A1 GPIO driver"
293 depends on DM_GPIO && RZA1
294 help
295 This driver supports the GPIO banks on Renesas RZ/A1 R7S72100 SoCs.
296
Simon Glass8fa4d5a2015-08-30 16:55:27 -0600297config ROCKCHIP_GPIO
298 bool "Rockchip GPIO driver"
299 depends on DM_GPIO
300 help
301 Support GPIO access on Rockchip SoCs. The GPIOs are arranged into
302 a number of banks (different for each SoC type) each with 32 GPIOs.
303 The GPIOs for a device are defined in the device tree with one node
304 for each bank.
305
Simon Glass084a3fe2015-03-06 13:19:01 -0700306config SANDBOX_GPIO
307 bool "Enable sandbox GPIO driver"
308 depends on SANDBOX && DM && DM_GPIO
309 help
310 This driver supports some simulated GPIOs which can be adjusted
311 using 'back door' functions like sandbox_gpio_set_value(). Then the
312 GPIOs can be inspected through the normal get_get_value()
313 interface. The purpose of this is to allow GPIOs to be used as
314 normal in sandbox, perhaps with test code actually driving the
315 behaviour of those GPIOs.
316
317config SANDBOX_GPIO_COUNT
318 int "Number of sandbox GPIOs"
319 depends on SANDBOX_GPIO
320 default 128
321 help
322 The sandbox driver can support any number of GPIOs. Generally these
323 are specified using the device tree. But you can also have a number
324 of 'anonymous' GPIOs that do not belong to any device or bank.
325 Select a suitable value depending on your needs.
Bhuvanchandra DV6d236aa2015-06-01 18:37:16 +0530326
Andre Przywara9d3bab92019-06-23 15:09:46 +0100327config SUNXI_GPIO
328 bool "Allwinner GPIO driver"
329 depends on ARCH_SUNXI
330 help
331 Support the GPIO device in Allwinner SoCs.
332
Vipul Kumar06905872018-02-28 11:32:22 +0530333config XILINX_GPIO
334 bool "Xilinx GPIO driver"
Michal Simek4e39ea82018-07-13 08:26:28 +0200335 depends on DM_GPIO
Vipul Kumar06905872018-02-28 11:32:22 +0530336 help
337 This config enable the Xilinx GPIO driver for Microblaze.
338
Simon Glass35432062017-08-04 16:34:54 -0600339config CMD_TCA642X
340 bool "tca642x - Command to access tca642x state"
341 help
342 DEPRECATED - This needs conversion to driver model
343
344 This provides a way to looking at the pin state of this device.
345 This mirrors the 'gpio' command and that should be used in preference
346 to custom code.
347
Stephen Warrenaf974be2016-05-12 12:07:41 -0600348config TEGRA_GPIO
349 bool "Tegra20..210 GPIO driver"
350 depends on DM_GPIO
351 help
352 Support for the GPIO controller contained in NVIDIA Tegra20 through
353 Tegra210.
354
Stephen Warren0c5403f2016-05-25 14:38:51 -0600355config TEGRA186_GPIO
356 bool "Tegra186 GPIO driver"
357 depends on DM_GPIO
358 help
359 Support for the GPIO controller contained in NVIDIA Tegra186. This
360 covers both the "main" and "AON" controller instances, even though
361 they have slightly different register layout.
362
Masahiro Yamada2dbca982016-02-16 17:03:48 +0900363config GPIO_UNIPHIER
364 bool "UniPhier GPIO"
365 depends on ARCH_UNIPHIER
366 help
367 Say yes here to support UniPhier GPIOs.
368
Bhuvanchandra DV6d236aa2015-06-01 18:37:16 +0530369config VYBRID_GPIO
370 bool "Vybrid GPIO driver"
371 depends on DM
Bhuvanchandra DV6d236aa2015-06-01 18:37:16 +0530372 help
373 Say yes here to support Vybrid vf610 GPIOs.
Masahiro Yamadacc85b7b2015-07-26 02:46:26 +0900374
Purna Chandra Mandal0ee99ca2016-01-28 15:30:13 +0530375config PIC32_GPIO
376 bool "Microchip PIC32 GPIO driver"
377 depends on DM_GPIO && MACH_PIC32
378 default y
379 help
380 Say yes here to support Microchip PIC32 GPIOs.
381
Suneel Garapatia432c252020-07-30 13:56:13 +0200382config OCTEON_GPIO
383 bool "Octeon II/III/TX/TX2 GPIO driver"
Simon Glass3933d292021-08-01 18:54:44 -0600384 depends on DM_GPIO && PCI && (ARCH_OCTEON || ARCH_OCTEONTX || ARCH_OCTEONTX2)
Suneel Garapatia432c252020-07-30 13:56:13 +0200385 default y
386 help
387 Add support for the Marvell Octeon GPIO driver. This is used with
388 various Octeon parts such as Octeon II/III and OcteonTX/TX2.
389 Octeon II/III has 32 GPIOs (count defined via DT) and OcteonTX/TX2
390 has 64 GPIOs (count defined via internal register).
391
Patrice Chotarddaf1a592019-06-21 15:39:22 +0200392config STM32_GPIO
Vikas Manochaec8630a2017-04-10 15:02:57 -0700393 bool "ST STM32 GPIO driver"
Trevor Woerner2bcc1ed2020-05-06 08:02:42 -0400394 depends on DM_GPIO && (ARCH_STM32 || ARCH_STM32MP)
Vikas Manochaec8630a2017-04-10 15:02:57 -0700395 default y
396 help
397 Device model driver support for STM32 GPIO controller. It should be
Patrice Chotarddaf1a592019-06-21 15:39:22 +0200398 usable on many stm32 families like stm32f4/f7/h7 and stm32mp1.
Vikas Manochaec8630a2017-04-10 15:02:57 -0700399 Tested on STM32F7.
400
Sagar Shrikant Kadam211be3b2019-10-01 10:00:46 -0700401config SIFIVE_GPIO
402 bool "SiFive GPIO driver"
403 depends on DM_GPIO
404 help
405 Device model driver for GPIO controller present in SiFive FU540 SoC. This
406 driver enables GPIO interface on HiFive Unleashed A00 board.
407
Stefan Roesee0e70422016-02-12 13:46:50 +0100408config MVEBU_GPIO
409 bool "Marvell MVEBU GPIO driver"
Harm Berntsen1e220b22020-11-29 10:08:02 +0000410 depends on DM_GPIO && (ARCH_MVEBU || ARCH_KIRKWOOD)
Stefan Roesee0e70422016-02-12 13:46:50 +0100411 default y
412 help
413 Say yes here to support Marvell MVEBU (Armada XP/38x) GPIOs.
414
Siva Durga Prasad Paladugud6d00822016-03-10 16:27:39 +0530415config ZYNQ_GPIO
416 bool "Zynq GPIO driver"
Michal Simekc28665d2020-08-06 15:18:36 +0200417 depends on DM_GPIO
418 default y if ARCH_ZYNQ || ARCH_ZYNQMP || ARCH_VERSAL
Siva Durga Prasad Paladugud6d00822016-03-10 16:27:39 +0530419 help
420 Supports GPIO access on Zynq SoC.
421
Peng Fan28b4a1c2016-05-03 10:02:23 +0800422config DM_74X164
423 bool "74x164 serial-in/parallel-out 8-bits shift register"
424 depends on DM_GPIO
425 help
426 Driver for 74x164 compatible serial-in/parallel-out 8-outputs
427 shift registers, such as 74lv165, 74hc595.
428 This driver can be used to provide access to more gpio outputs.
429
Peng Fanca675072016-04-14 21:45:06 +0800430config DM_PCA953X
431 bool "PCA95[357]x, PCA9698, TCA64xx, and MAX7310 I/O ports"
Michal Simeka917de72021-06-02 12:40:45 +0200432 depends on DM_GPIO && DM_I2C
Peng Fanca675072016-04-14 21:45:06 +0800433 help
434 Say yes here to provide access to several register-oriented
435 SMBus I/O expanders, made mostly by NXP or TI. Compatible
436 models include:
437
438 4 bits: pca9536, pca9537
439
440 8 bits: max7310, max7315, pca6107, pca9534, pca9538, pca9554,
441 pca9556, pca9557, pca9574, tca6408, xra1202
442
443 16 bits: max7312, max7313, pca9535, pca9539, pca9555, pca9575,
444 tca6416
445
446 24 bits: tca6424
447
448 40 bits: pca9505, pca9698
449
450 Now, max 24 bits chips and PCA953X compatible chips are
451 supported
mario.six@gdsys.cc5b59a352016-05-25 15:15:20 +0200452
Peng Fane67502c2018-12-21 06:21:21 +0000453config SPL_DM_PCA953X
454 bool "PCA95[357]x, PCA9698, TCA64xx, and MAX7310 I/O ports in SPL"
455 depends on DM_GPIO
456 help
457 Say yes here to provide access to several register-oriented
458 SMBus I/O expanders, made mostly by NXP or TI. Compatible
459 models include:
460
461 4 bits: pca9536, pca9537
462
463 8 bits: max7310, max7315, pca6107, pca9534, pca9538, pca9554,
464 pca9556, pca9557, pca9574, tca6408, xra1202
465
466 16 bits: max7312, max7313, pca9535, pca9539, pca9555, pca9575,
467 tca6416
468
469 24 bits: tca6424
470
471 40 bits: pca9505, pca9698
472
473 Now, max 24 bits chips and PCA953X compatible chips are
474 supported
475
Mario Sixd006f682018-01-15 11:07:48 +0100476config MPC8XXX_GPIO
477 bool "Freescale MPC8XXX GPIO driver"
mario.six@gdsys.cc5b59a352016-05-25 15:15:20 +0200478 depends on DM_GPIO
479 help
Mario Sixd006f682018-01-15 11:07:48 +0100480 This driver supports the built-in GPIO controller of MPC8XXX CPUs.
mario.six@gdsys.cc5b59a352016-05-25 15:15:20 +0200481 Each GPIO bank is identified by its own entry in the device tree,
482 i.e.
483
484 gpio-controller@fc00 {
485 #gpio-cells = <2>;
486 compatible = "fsl,pq3-gpio";
487 reg = <0xfc00 0x100>
488 }
489
490 By default, each bank is assumed to have 32 GPIOs, but the ngpios
491 setting is honored, so the number of GPIOs for each bank is
492 configurable to match the actual GPIO count of the SoC (e.g. the
493 32/32/23 banks of the P1022 SoC).
494
mario.six@gdsys.cc7b4cf8b2016-05-25 15:15:22 +0200495 Aside from the standard functions of input/output mode, and output
496 value setting, the open-drain feature, which can configure individual
497 GPIOs to work as open-drain outputs, is supported.
Stefan Roesebbd6fe42018-10-08 12:38:01 +0200498
Klaus H. Sorensene308da02020-02-11 15:20:22 +0000499config MPC83XX_SPISEL_BOOT
500 bool "Freescale MPC83XX SPISEL_BOOT driver"
501 depends on DM_GPIO && ARCH_MPC830X
502 help
503 GPIO driver to set/clear dedicated SPISEL_BOOT output on MPC83XX.
504
505 This pin is typically used as spi chip select to a spi nor flash.
506
developer58690932020-11-12 16:36:33 +0800507config MT7620_GPIO
508 bool "MediaTek MT7620 GPIO driver"
509 depends on DM_GPIO && SOC_MT7620
510 default y
511 help
512 Device model driver for GPIO controller present in MediaTek MT7620
513 and earlier SoCs.
514
Stefan Roesebbd6fe42018-10-08 12:38:01 +0200515config MT7621_GPIO
516 bool "MediaTek MT7621 GPIO driver"
developer89f051b2019-04-30 11:13:58 +0800517 depends on DM_GPIO && SOC_MT7628
Stefan Roesebbd6fe42018-10-08 12:38:01 +0200518 default y
519 help
520 Say yes here to support MediaTek MT7621 compatible GPIOs.
521
Stefan Bosch9c21d402020-07-10 19:07:27 +0200522config NX_GPIO
523 bool "Nexell GPIO driver"
524 depends on DM_GPIO
525 help
526 Support GPIO access on Nexell SoCs. The GPIOs are arranged into
527 a number of banks (different for each SoC type) each with 32 GPIOs.
528 The GPIOs for a device are defined in the device tree with one node
529 for each bank.
530
Stephan Gerholddf839d52021-07-02 17:06:18 +0200531config NOMADIK_GPIO
532 bool "Nomadik GPIO driver"
533 depends on DM_GPIO
534 help
535 Support GPIO access on ST-Ericsson Ux500 SoCs. The GPIOs are arranged
536 into a number of banks each with 32 GPIOs. The GPIOs for a device are
537 defined in the device tree with one node for each bank.
538
T Karthik Reddy01719722021-10-29 13:11:43 +0200539config ZYNQMP_GPIO_MODEPIN
540 bool "ZynqMP gpio modepin"
541 depends on DM_GPIO
542 help
543 This config enables the ZynqMP gpio modepin driver. ZynqMP modepin
544 driver will set and get the status of PS_MODE pins. These modepins
545 are accessed using xilinx firmware. In modepin register, [3:0] bits
546 set direction, [7:4] bits read IO, [11:8] bits set/clear IO.
547
Simon Glass12cf6022021-08-08 12:20:24 -0600548endif