blob: 89068c7800d126ecf87a01e5f2352c670f380140 [file] [log] [blame]
Masahiro Yamada0b11dbf2015-07-26 02:46:26 +09001#
2# GPIO infrastructure and drivers
3#
4
Simon Glassb2f9bac2021-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 Yamada0b11dbf2015-07-26 02:46:26 +090018
Masahiro Yamadada333ae2014-10-23 22:26:09 +090019config DM_GPIO
20 bool "Enable Driver Model for GPIO drivers"
21 depends on DM
22 help
Simon Glassf94a1be2015-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\)606f7042015-03-31 11:40:46 +020028
Simon Glassbcee8d62019-12-06 21:41:35 -070029config SPL_DM_GPIO
30 bool "Enable Driver Model for GPIO drivers in SPL"
Simon Glass83061db2021-07-10 21:14:30 -060031 depends on DM_GPIO && SPL_DM && SPL_GPIO
Simon Glassbcee8d62019-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 Glass83061db2021-07-10 21:14:30 -060042 depends on DM_GPIO && TPL_DM && TPL_GPIO
Simon Glassbcee8d62019-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 Schocher49b10cb2019-07-17 06:59:51 +020051config GPIO_HOG
Heiko Schocher5fc7cf82019-06-12 06:11:46 +020052 bool "Enable GPIO hog support"
53 depends on DM_GPIO
Heiko Schocher5fc7cf82019-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
Eddie James1d99e672022-02-07 17:09:01 -060060config SPL_GPIO_HOG
61 bool "Enable GPIO hog support in SPL"
62 depends on SPL_GPIO_SUPPORT
63 help
64 Enable gpio hog support in SPL
65 The GPIO chip may contain GPIO hog definitions. GPIO hogging
66 is a mechanism providing automatic GPIO request and config-
67 uration as part of the gpio-controller's driver probe function.
68
Heiko Schocher2bd261d2020-05-22 11:08:59 +020069config DM_GPIO_LOOKUP_LABEL
70 bool "Enable searching for gpio labelnames"
71 depends on DM_GPIO
72 help
73 This option enables searching for gpio names in
74 the defined gpio labels, if the search for the
75 gpio bank name failed. This makes sense if you use
76 different gpios on different hardware versions
77 for the same functionality in board code.
78
79config SPL_DM_GPIO_LOOKUP_LABEL
80 bool "Enable searching for gpio labelnames"
Simon Glass83061db2021-07-10 21:14:30 -060081 depends on DM_GPIO && SPL_DM && SPL_GPIO
Heiko Schocher2bd261d2020-05-22 11:08:59 +020082 help
83 This option enables searching for gpio names in
84 the defined gpio labels, if the search for the
85 gpio bank name failed. This makes sense if you use
86 different gpios on different hardware versions
87 for the same functionality in board code.
88
Thomas Chou88d5ecf2015-10-21 21:33:45 +080089config ALTERA_PIO
90 bool "Altera PIO driver"
91 depends on DM_GPIO
92 help
93 Select this to enable PIO for Altera devices. Please find
94 details on the "Embedded Peripherals IP User Guide" of Altera.
95
Tom Rini797c2b42022-03-21 21:33:30 -040096config BCM2835_GPIO
97 bool "BCM2835 GPIO driver"
98 depends on DM_GPIO
99
Álvaro Fernández Rojase64bdb22017-05-07 20:09:30 +0200100config BCM6345_GPIO
101 bool "BCM6345 GPIO driver"
Philippe Reynes17f34ca2020-01-07 20:14:15 +0100102 depends on DM_GPIO && (ARCH_BMIPS || ARCH_BCM68360 || \
Philippe Reynesc19eaef2022-02-11 19:18:35 +0100103 ARCH_BCM6858 || ARCH_BCM63158 || \
104 ARCH_BCM6753)
Álvaro Fernández Rojase64bdb22017-05-07 20:09:30 +0200105 help
106 This driver supports the GPIO banks on BCM6345 SoCs.
107
Jason Li2ccacf32020-01-30 12:34:56 -0800108config CORTINA_GPIO
109 bool "Cortina-Access GPIO driver"
110 depends on DM_GPIO && CORTINA_PLATFORM
111 help
112 Enable support for the GPIO controller in Cortina CAxxxx SoCs.
113 This driver supports all CPU ISA variants supported by Cortina
114 Access CAxxxx SoCs.
115
Marek Vasute30a70c2015-06-23 15:54:19 +0200116config DWAPB_GPIO
117 bool "DWAPB GPIO driver"
118 depends on DM && DM_GPIO
Marek Vasute30a70c2015-06-23 15:54:19 +0200119 help
120 Support for the Designware APB GPIO driver.
121
Wenyou Yang5a07a5f2017-03-23 12:46:19 +0800122config AT91_GPIO
123 bool "AT91 PIO GPIO driver"
Wenyou Yang5a07a5f2017-03-23 12:46:19 +0800124 help
125 Say yes here to select AT91 PIO GPIO driver. AT91 PIO
126 controller manages up to 32 fully programmable input/output
127 lines. Each I/O line may be dedicated as a general-purpose
128 I/O or be assigned to a function of an embedded peripheral.
129 The assignment to a function of an embedded peripheral is
130 the responsibility of AT91 Pinctrl driver. This driver is
131 responsible for the general-purpose I/O.
132
Wenyou Yang2c62c562015-11-04 14:25:13 +0800133config ATMEL_PIO4
134 bool "ATMEL PIO4 driver"
Wenyou Yangee3311d2016-07-20 17:16:26 +0800135 depends on DM_GPIO
Wenyou Yang2c62c562015-11-04 14:25:13 +0800136 help
137 Say yes here to support the Atmel PIO4 driver.
138 The PIO4 is new version of Atmel PIO controller, which manages
139 up to 128 fully programmable input/output lines. Each I/O line
140 may be dedicated as a general purpose I/O or be assigned to
141 a function of an embedded peripheral.
142
Andrew Jeffery7ad889b2022-02-16 10:26:56 +1030143config ASPEED_GPIO
144 bool "Aspeed GPIO Driver"
145 help
146 Say yes here to support the Aspeed GPIO driver. The controller
147 is found in the AST2400, AST2500 and AST2600 BMC SoCs and
148 provides access to over 200 GPIOs on each chip.
149
Adam Ford5d653af2018-07-10 07:01:20 -0500150config DA8XX_GPIO
151 bool "DA8xx GPIO Driver"
152 help
153 This driver supports the DA8xx GPIO controller
154
Oleksandr Suvorov99dd2542021-11-21 18:05:16 +0200155config FXL6408_GPIO
156 bool "FXL6408 I2C GPIO expander driver"
157 depends on DM_GPIO && DM_I2C
158 help
159 This driver supports the Fairchild FXL6408 device. FXL6408 is a
160 fully configurable 8-bit I2C-controlled GPIO expander.
161
Simon Glass64b17972016-03-11 22:07:27 -0700162config INTEL_BROADWELL_GPIO
163 bool "Intel Broadwell GPIO driver"
164 depends on DM
165 help
166 This driver supports Broadwell U devices which have an expanded
167 GPIO feature set. The difference is large enough to merit a separate
168 driver from the common Intel ICH6 driver. It supports a total of
169 95 GPIOs which can be configured from the device tree.
170
Simon Glass7e589bc2019-12-06 21:42:54 -0700171config INTEL_GPIO
172 bool "Intel generic GPIO driver"
173 depends on DM_GPIO
174 help
175 Say yes here to select Intel generic GPIO driver. This controller
176 supports recent chips (e.g. Apollo Lake). It permits basic GPIO
177 control including setting pins to input/output. It makes use of its
178 parent pinctrl driver to actually effect changes.
179
Bin Meng72436892017-07-30 06:23:28 -0700180config INTEL_ICH6_GPIO
181 bool "Intel ICH6 compatible legacy GPIO driver"
182 depends on DM_GPIO
183 help
184 Say yes here to select Intel ICH6 compatible legacy GPIO driver.
185
Peng Fand665eb62017-02-22 16:21:45 +0800186config IMX_RGPIO2P
187 bool "i.MX7ULP RGPIO2P driver"
188 depends on DM
Peng Fand665eb62017-02-22 16:21:45 +0800189 help
190 This driver supports i.MX7ULP Rapid GPIO2P controller.
191
Rayagonda Kokatanura7090b42020-05-05 23:26:46 +0530192config IPROC_GPIO
193 bool "Broadcom iProc GPIO driver(without pinconf)"
Rayagonda Kokatanura7090b42020-05-05 23:26:46 +0530194 help
195 The Broadcom iProc based SoCs- Cygnus, NS2, NS3, NSP and Stingray,
196 use the same GPIO Controller IP hence this driver could be used
197 for all.
198
199 The Broadcom iProc based SoCs have multiple GPIO controllers and only
200 the always-ON GPIO controller (CRMU/AON) is supported by this driver.
201
Eugeniy Paltsev3194c3c2017-10-16 16:21:32 +0300202config HSDK_CREG_GPIO
203 bool "HSDK CREG GPIO griver"
Alexey Brodkind5fbcd52017-12-10 20:55:44 +0300204 depends on DM_GPIO
Eugeniy Paltsev3194c3c2017-10-16 16:21:32 +0300205 help
206 This driver supports CREG GPIOs on Synopsys HSDK SOC.
207
Tom Rinib2d1c822021-12-17 18:08:46 -0500208config KIRKWOOD_GPIO
209 bool "Kirkwood GPIO driver"
210 help
211 This drdiver supports GPIOs on Kirkwood platforms
212
Albert ARIBAUD \(3ADEV\)606f7042015-03-31 11:40:46 +0200213config LPC32XX_GPIO
214 bool "LPC32XX GPIO driver"
215 depends on DM
Albert ARIBAUD \(3ADEV\)606f7042015-03-31 11:40:46 +0200216 help
217 Support for the LPC32XX GPIO driver.
Simon Glassd79c50a2015-03-06 13:19:01 -0700218
Hannes Schmelzerbba76a12021-10-01 13:37:57 +0200219config MAX7320_GPIO
220 bool "MAX7320 I2C GPIO Expander driver"
221 depends on DM_GPIO && DM_I2C
222 help
223 Support for MAX7320 I2C 8/16-bit GPIO expander.
224 original maxim device has 8 push/pull outputs,
225 some clones offers 16bit.
226
Sebastian Reichel0b3da992021-07-15 17:40:00 +0200227config MCP230XX_GPIO
228 bool "MCP230XX GPIO driver"
229 depends on DM
230 help
231 Support for Microchip's MCP230XX I2C connected GPIO devices.
232 The following chips are supported:
233 - MCP23008
234 - MCP23017
235 - MCP23018
236
Lars Povlsenbe8313f2019-01-02 09:52:21 +0100237config MSCC_SGPIO
238 bool "Microsemi Serial GPIO driver"
239 depends on DM_GPIO && SOC_VCOREIII
240 help
241 Support for the VCoreIII SoC serial GPIO device. By using a
242 serial interface, the SIO controller significantly extends
243 the number of available GPIOs with a minimum number of
244 additional pins on the device. The primary purpose of the
245 SIO controller is to connect control signals from SFP
246 modules and to act as an LED controller.
247
Mateusz Kulikowski81a87e12016-03-31 23:12:15 +0200248config MSM_GPIO
249 bool "Qualcomm GPIO driver"
250 depends on DM_GPIO
Mateusz Kulikowski81a87e12016-03-31 23:12:15 +0200251 help
252 Support GPIO controllers on Qualcomm Snapdragon family of SoCs.
253 This controller have single bank (default name "soc"), every
254 gpio has it's own set of registers.
255 Only simple GPIO operations are supported (get/set, change of
256 direction and checking pin function).
257 Supported devices:
258 - APQ8016
259 - MSM8916
260
Adam Ford8bbff6a2018-02-04 09:32:43 -0600261config MXC_GPIO
Hannes Schmelzer8fd05fc2018-06-07 12:10:09 +0200262 bool "Freescale/NXP MXC GPIO driver"
Adam Ford8bbff6a2018-02-04 09:32:43 -0600263 help
264 Support GPIO controllers on various i.MX platforms
265
Lukasz Majewski54847932019-08-13 18:10:39 +0200266config MXS_GPIO
267 bool "Freescale/NXP MXS GPIO driver"
268 help
269 Support GPIO controllers on i.MX23 and i.MX28 platforms
270
Tom Rini29cb2b32017-05-12 22:33:21 -0400271config OMAP_GPIO
272 bool "TI OMAP GPIO driver"
273 depends on ARCH_OMAP2PLUS
274 default y
275 help
276 Support GPIO controllers on the TI OMAP3/4/5 and related (such as
277 AM335x/AM43xx/AM57xx/DRA7xx/etc) families of SoCs.
278
Simon Glass00913622017-08-04 16:34:32 -0600279config CMD_PCA953X
280 bool "Enable the pca953x command"
281 help
282 Deprecated: This should be converted to driver model.
283
284 This command provides access to a pca953x GPIO device using the
285 legacy GPIO interface. Several subcommands are provided which mirror
286 the standard 'gpio' command. It should use that instead.
287
Mateusz Kulikowski120800d2016-03-31 23:12:31 +0200288config PM8916_GPIO
289 bool "Qualcomm PM8916 PMIC GPIO/keypad driver"
290 depends on DM_GPIO && PMIC_PM8916
291 help
292 Support for GPIO pins and power/reset buttons found on
293 Qualcomm PM8916 PMIC.
294 Default name for GPIO bank is "pm8916".
295 Power and reset buttons are placed in "pm8916_key" bank and
296 have gpio numbers 0 and 1 respectively.
297
Vignesh R5746b0d2016-08-02 10:14:24 +0530298config PCF8575_GPIO
299 bool "PCF8575 I2C GPIO Expander driver"
300 depends on DM_GPIO && DM_I2C
301 help
302 Support for PCF8575 I2C 16-bit GPIO expander. Most of these
303 chips are from NXP and TI.
304
Marek Vasutf5f69592017-09-15 21:13:56 +0200305config RCAR_GPIO
306 bool "Renesas RCar GPIO driver"
307 depends on DM_GPIO && ARCH_RMOBILE
308 help
309 This driver supports the GPIO banks on Renesas RCar SoCs.
310
Marek Vasut86b8e7d2019-05-04 16:00:17 +0200311config RZA1_GPIO
312 bool "Renesas RZ/A1 GPIO driver"
313 depends on DM_GPIO && RZA1
314 help
315 This driver supports the GPIO banks on Renesas RZ/A1 R7S72100 SoCs.
316
Simon Glass1f8f7732015-08-30 16:55:27 -0600317config ROCKCHIP_GPIO
318 bool "Rockchip GPIO driver"
319 depends on DM_GPIO
320 help
321 Support GPIO access on Rockchip SoCs. The GPIOs are arranged into
322 a number of banks (different for each SoC type) each with 32 GPIOs.
323 The GPIOs for a device are defined in the device tree with one node
324 for each bank.
325
Simon Glassd79c50a2015-03-06 13:19:01 -0700326config SANDBOX_GPIO
327 bool "Enable sandbox GPIO driver"
328 depends on SANDBOX && DM && DM_GPIO
329 help
330 This driver supports some simulated GPIOs which can be adjusted
331 using 'back door' functions like sandbox_gpio_set_value(). Then the
332 GPIOs can be inspected through the normal get_get_value()
333 interface. The purpose of this is to allow GPIOs to be used as
334 normal in sandbox, perhaps with test code actually driving the
335 behaviour of those GPIOs.
336
337config SANDBOX_GPIO_COUNT
338 int "Number of sandbox GPIOs"
339 depends on SANDBOX_GPIO
340 default 128
341 help
342 The sandbox driver can support any number of GPIOs. Generally these
343 are specified using the device tree. But you can also have a number
344 of 'anonymous' GPIOs that do not belong to any device or bank.
345 Select a suitable value depending on your needs.
Bhuvanchandra DVd348a942015-06-01 18:37:16 +0530346
Andre Przywara10cfbaa2019-06-23 15:09:46 +0100347config SUNXI_GPIO
348 bool "Allwinner GPIO driver"
349 depends on ARCH_SUNXI
350 help
351 Support the GPIO device in Allwinner SoCs.
352
Vipul Kumar71d5a142018-02-28 11:32:22 +0530353config XILINX_GPIO
354 bool "Xilinx GPIO driver"
Michal Simek4a693662018-07-13 08:26:28 +0200355 depends on DM_GPIO
Vipul Kumar71d5a142018-02-28 11:32:22 +0530356 help
357 This config enable the Xilinx GPIO driver for Microblaze.
358
Simon Glass90d99e52017-08-04 16:34:54 -0600359config CMD_TCA642X
360 bool "tca642x - Command to access tca642x state"
361 help
362 DEPRECATED - This needs conversion to driver model
363
364 This provides a way to looking at the pin state of this device.
365 This mirrors the 'gpio' command and that should be used in preference
366 to custom code.
367
Stephen Warren601800b2016-05-12 12:07:41 -0600368config TEGRA_GPIO
369 bool "Tegra20..210 GPIO driver"
370 depends on DM_GPIO
371 help
372 Support for the GPIO controller contained in NVIDIA Tegra20 through
373 Tegra210.
374
Stephen Warren074a1fd2016-05-25 14:38:51 -0600375config TEGRA186_GPIO
376 bool "Tegra186 GPIO driver"
377 depends on DM_GPIO
378 help
379 Support for the GPIO controller contained in NVIDIA Tegra186. This
380 covers both the "main" and "AON" controller instances, even though
381 they have slightly different register layout.
382
Masahiro Yamadab9a66b62016-02-16 17:03:48 +0900383config GPIO_UNIPHIER
384 bool "UniPhier GPIO"
385 depends on ARCH_UNIPHIER
386 help
387 Say yes here to support UniPhier GPIOs.
388
Bhuvanchandra DVd348a942015-06-01 18:37:16 +0530389config VYBRID_GPIO
390 bool "Vybrid GPIO driver"
391 depends on DM
Bhuvanchandra DVd348a942015-06-01 18:37:16 +0530392 help
393 Say yes here to support Vybrid vf610 GPIOs.
Masahiro Yamada0b11dbf2015-07-26 02:46:26 +0900394
Purna Chandra Mandal386d9342016-01-28 15:30:13 +0530395config PIC32_GPIO
396 bool "Microchip PIC32 GPIO driver"
397 depends on DM_GPIO && MACH_PIC32
398 default y
399 help
400 Say yes here to support Microchip PIC32 GPIOs.
401
Suneel Garapatif7331c62020-07-30 13:56:13 +0200402config OCTEON_GPIO
403 bool "Octeon II/III/TX/TX2 GPIO driver"
Simon Glass3232bdf2021-08-01 18:54:44 -0600404 depends on DM_GPIO && PCI && (ARCH_OCTEON || ARCH_OCTEONTX || ARCH_OCTEONTX2)
Suneel Garapatif7331c62020-07-30 13:56:13 +0200405 default y
406 help
407 Add support for the Marvell Octeon GPIO driver. This is used with
408 various Octeon parts such as Octeon II/III and OcteonTX/TX2.
409 Octeon II/III has 32 GPIOs (count defined via DT) and OcteonTX/TX2
410 has 64 GPIOs (count defined via internal register).
411
Patrice Chotard95fbdd12019-06-21 15:39:22 +0200412config STM32_GPIO
Vikas Manocha77417102017-04-10 15:02:57 -0700413 bool "ST STM32 GPIO driver"
Trevor Woerner71f63542020-05-06 08:02:42 -0400414 depends on DM_GPIO && (ARCH_STM32 || ARCH_STM32MP)
Vikas Manocha77417102017-04-10 15:02:57 -0700415 default y
416 help
417 Device model driver support for STM32 GPIO controller. It should be
Patrice Chotard95fbdd12019-06-21 15:39:22 +0200418 usable on many stm32 families like stm32f4/f7/h7 and stm32mp1.
Vikas Manocha77417102017-04-10 15:02:57 -0700419 Tested on STM32F7.
420
Sagar Shrikant Kadamd26b4042019-10-01 10:00:46 -0700421config SIFIVE_GPIO
422 bool "SiFive GPIO driver"
423 depends on DM_GPIO
424 help
425 Device model driver for GPIO controller present in SiFive FU540 SoC. This
426 driver enables GPIO interface on HiFive Unleashed A00 board.
427
Stefan Roese704d9a62016-02-12 13:46:50 +0100428config MVEBU_GPIO
429 bool "Marvell MVEBU GPIO driver"
Harm Berntsen98b64fe2020-11-29 10:08:02 +0000430 depends on DM_GPIO && (ARCH_MVEBU || ARCH_KIRKWOOD)
Stefan Roese704d9a62016-02-12 13:46:50 +0100431 default y
432 help
433 Say yes here to support Marvell MVEBU (Armada XP/38x) GPIOs.
434
Siva Durga Prasad Paladugu2978ae22016-03-10 16:27:39 +0530435config ZYNQ_GPIO
436 bool "Zynq GPIO driver"
Michal Simek664e16c2020-08-06 15:18:36 +0200437 depends on DM_GPIO
438 default y if ARCH_ZYNQ || ARCH_ZYNQMP || ARCH_VERSAL
Siva Durga Prasad Paladugu2978ae22016-03-10 16:27:39 +0530439 help
440 Supports GPIO access on Zynq SoC.
441
Peng Fan9300f712016-05-03 10:02:23 +0800442config DM_74X164
443 bool "74x164 serial-in/parallel-out 8-bits shift register"
444 depends on DM_GPIO
445 help
446 Driver for 74x164 compatible serial-in/parallel-out 8-outputs
447 shift registers, such as 74lv165, 74hc595.
448 This driver can be used to provide access to more gpio outputs.
449
Peng Fan03773432016-04-14 21:45:06 +0800450config DM_PCA953X
451 bool "PCA95[357]x, PCA9698, TCA64xx, and MAX7310 I/O ports"
Michal Simekca8bb0c2021-06-02 12:40:45 +0200452 depends on DM_GPIO && DM_I2C
Peng Fan03773432016-04-14 21:45:06 +0800453 help
454 Say yes here to provide access to several register-oriented
455 SMBus I/O expanders, made mostly by NXP or TI. Compatible
456 models include:
457
458 4 bits: pca9536, pca9537
459
460 8 bits: max7310, max7315, pca6107, pca9534, pca9538, pca9554,
461 pca9556, pca9557, pca9574, tca6408, xra1202
462
463 16 bits: max7312, max7313, pca9535, pca9539, pca9555, pca9575,
464 tca6416
465
466 24 bits: tca6424
467
468 40 bits: pca9505, pca9698
469
470 Now, max 24 bits chips and PCA953X compatible chips are
471 supported
mario.six@gdsys.cc07d31f82016-05-25 15:15:20 +0200472
Peng Fan16103682018-12-21 06:21:21 +0000473config SPL_DM_PCA953X
474 bool "PCA95[357]x, PCA9698, TCA64xx, and MAX7310 I/O ports in SPL"
475 depends on DM_GPIO
476 help
477 Say yes here to provide access to several register-oriented
478 SMBus I/O expanders, made mostly by NXP or TI. Compatible
479 models include:
480
481 4 bits: pca9536, pca9537
482
483 8 bits: max7310, max7315, pca6107, pca9534, pca9538, pca9554,
484 pca9556, pca9557, pca9574, tca6408, xra1202
485
486 16 bits: max7312, max7313, pca9535, pca9539, pca9555, pca9575,
487 tca6416
488
489 24 bits: tca6424
490
491 40 bits: pca9505, pca9698
492
493 Now, max 24 bits chips and PCA953X compatible chips are
494 supported
495
Mario Six3c216832018-01-15 11:07:48 +0100496config MPC8XXX_GPIO
497 bool "Freescale MPC8XXX GPIO driver"
mario.six@gdsys.cc07d31f82016-05-25 15:15:20 +0200498 depends on DM_GPIO
499 help
Mario Six3c216832018-01-15 11:07:48 +0100500 This driver supports the built-in GPIO controller of MPC8XXX CPUs.
mario.six@gdsys.cc07d31f82016-05-25 15:15:20 +0200501 Each GPIO bank is identified by its own entry in the device tree,
502 i.e.
503
504 gpio-controller@fc00 {
505 #gpio-cells = <2>;
506 compatible = "fsl,pq3-gpio";
507 reg = <0xfc00 0x100>
508 }
509
510 By default, each bank is assumed to have 32 GPIOs, but the ngpios
511 setting is honored, so the number of GPIOs for each bank is
512 configurable to match the actual GPIO count of the SoC (e.g. the
513 32/32/23 banks of the P1022 SoC).
514
mario.six@gdsys.cc51781782016-05-25 15:15:22 +0200515 Aside from the standard functions of input/output mode, and output
516 value setting, the open-drain feature, which can configure individual
517 GPIOs to work as open-drain outputs, is supported.
Stefan Roese4751e552018-10-08 12:38:01 +0200518
Klaus H. Sorensen3fb22bc2020-02-11 15:20:22 +0000519config MPC83XX_SPISEL_BOOT
520 bool "Freescale MPC83XX SPISEL_BOOT driver"
521 depends on DM_GPIO && ARCH_MPC830X
522 help
523 GPIO driver to set/clear dedicated SPISEL_BOOT output on MPC83XX.
524
525 This pin is typically used as spi chip select to a spi nor flash.
526
Weijie Gaoca610dd2020-11-12 16:36:33 +0800527config MT7620_GPIO
528 bool "MediaTek MT7620 GPIO driver"
529 depends on DM_GPIO && SOC_MT7620
530 default y
531 help
532 Device model driver for GPIO controller present in MediaTek MT7620
533 and earlier SoCs.
534
Stefan Roese4751e552018-10-08 12:38:01 +0200535config MT7621_GPIO
536 bool "MediaTek MT7621 GPIO driver"
Weijie Gao16b94902019-04-30 11:13:58 +0800537 depends on DM_GPIO && SOC_MT7628
Stefan Roese4751e552018-10-08 12:38:01 +0200538 default y
539 help
540 Say yes here to support MediaTek MT7621 compatible GPIOs.
541
Stefan Boschb8f748d2020-07-10 19:07:27 +0200542config NX_GPIO
543 bool "Nexell GPIO driver"
544 depends on DM_GPIO
545 help
546 Support GPIO access on Nexell SoCs. The GPIOs are arranged into
547 a number of banks (different for each SoC type) each with 32 GPIOs.
548 The GPIOs for a device are defined in the device tree with one node
549 for each bank.
550
Stephan Gerhold1e0b4c02021-07-02 17:06:18 +0200551config NOMADIK_GPIO
552 bool "Nomadik GPIO driver"
553 depends on DM_GPIO
554 help
555 Support GPIO access on ST-Ericsson Ux500 SoCs. The GPIOs are arranged
556 into a number of banks each with 32 GPIOs. The GPIOs for a device are
557 defined in the device tree with one node for each bank.
558
T Karthik Reddy3b441cf2021-10-29 13:11:43 +0200559config ZYNQMP_GPIO_MODEPIN
560 bool "ZynqMP gpio modepin"
561 depends on DM_GPIO
562 help
563 This config enables the ZynqMP gpio modepin driver. ZynqMP modepin
564 driver will set and get the status of PS_MODE pins. These modepins
565 are accessed using xilinx firmware. In modepin register, [3:0] bits
566 set direction, [7:4] bits read IO, [11:8] bits set/clear IO.
567
Michael Walle07d6cb92022-02-25 18:10:24 +0530568config SL28CPLD_GPIO
569 bool "Kontron sl28cpld GPIO driver"
570 depends on DM_GPIO && SL28CPLD
571 help
572 Support GPIO access on Kontron sl28cpld board management controllers.
573
T Karthik Reddy15efe0f2022-02-23 16:21:30 +0100574config SLG7XL45106_I2C_GPO
575 bool "slg7xl45106 i2c gpo expander"
576 depends on DM_GPIO
577 help
578 Support for slg7xl45106 i2c gpo expander. It is an i2c based
579 8-bit gpo expander, all gpo lines are controlled by writing
580 value into data register.
581
Simon Glassb2f9bac2021-08-08 12:20:24 -0600582endif