blob: 60d9374c72c025515afab18fe33180d5acda9e02 [file] [log] [blame]
Thomas Gleixnerec8f24b2019-05-19 13:07:45 +01001# SPDX-License-Identifier: GPL-2.0-only
David Brownella9c5fff2008-02-04 22:28:17 -08002#
Linus Walleije849dc02011-05-20 00:40:19 -06003# GPIO infrastructure and drivers
David Brownella9c5fff2008-02-04 22:28:17 -08004#
5
Mark Brown7563bbf2012-04-15 10:52:54 +01006config ARCH_HAVE_CUSTOM_GPIO_H
7 bool
8 help
9 Selecting this config option from the architecture Kconfig allows
10 the architecture to provide a custom asm/gpio.h implementation
11 overriding the default implementations. New uses of this are
12 strongly discouraged.
13
Michael Buesch7444a722008-07-25 01:46:11 -070014menuconfig GPIOLIB
15 bool "GPIO Support"
Michael Buesch7444a722008-07-25 01:46:11 -070016 help
17 This enables GPIO support through the generic GPIO library.
Randy Dunlapdd1695a2021-10-23 23:00:58 -070018 You only need to enable this if you also want to enable
Linus Walleije849dc02011-05-20 00:40:19 -060019 one or more of the GPIO drivers below.
Michael Buesch7444a722008-07-25 01:46:11 -070020
21 If unsure, say N.
22
23if GPIOLIB
David Brownella9c5fff2008-02-04 22:28:17 -080024
Laura Abbott30277432018-05-21 10:57:07 -070025config GPIOLIB_FASTPATH_LIMIT
26 int "Maximum number of GPIOs for fast path"
27 range 32 512
28 default 512
29 help
Enrico Weigelt, metux IT consultc42e34c2019-03-05 01:35:31 +010030 This adjusts the point at which certain APIs will switch from
31 using a stack allocated buffer to a dynamically allocated buffer.
Laura Abbott30277432018-05-21 10:57:07 -070032
Enrico Weigelt, metux IT consultc42e34c2019-03-05 01:35:31 +010033 You shouldn't need to change this unless you really need to
34 optimize either stack space or performance. Change this carefully
35 since setting an incorrect value could cause stack corruption.
Laura Abbott30277432018-05-21 10:57:07 -070036
Grant Likelyf141ed652012-04-07 14:31:33 -060037config OF_GPIO
38 def_bool y
Linus Walleij92c74bc2016-07-05 08:46:43 +020039 depends on OF
Linus Walleij2527ecc2016-08-16 09:58:25 +020040 depends on HAS_IOMEM
Grant Likelyf141ed652012-04-07 14:31:33 -060041
Mathias Nymane29482e2012-11-30 12:37:36 +010042config GPIO_ACPI
43 def_bool y
44 depends on ACPI
45
Linus Walleij14250522014-03-25 10:40:18 +010046config GPIOLIB_IRQCHIP
Linus Walleijfc346272014-05-29 16:52:46 +020047 select IRQ_DOMAIN
Linus Walleij14250522014-03-25 10:40:18 +010048 bool
49
David Brownella9c5fff2008-02-04 22:28:17 -080050config DEBUG_GPIO
51 bool "Debug GPIO calls"
52 depends on DEBUG_KERNEL
53 help
54 Say Y here to add some extra checks and diagnostics to GPIO calls.
Matt LaPlante692105b2009-01-26 11:12:25 +010055 These checks help ensure that GPIOs have been properly initialized
56 before they are used, and that sleeping calls are not made from
57 non-sleeping contexts. They can make bitbanged serial protocols
David Brownella9c5fff2008-02-04 22:28:17 -080058 slower. The diagnostics help catch the type of setup errors
59 that are most common when setting up new platforms or boards.
60
David Brownelld8f388d82008-07-25 01:46:07 -070061config GPIO_SYSFS
Linus Walleij3b4feb22020-11-10 15:27:24 +010062 bool "/sys/class/gpio/... (sysfs interface)" if EXPERT
Kees Cook4c0ea232013-01-16 18:53:32 -080063 depends on SYSFS
Linus Walleij3b4feb22020-11-10 15:27:24 +010064 select GPIO_CDEV # We need to encourage the new ABI
David Brownelld8f388d82008-07-25 01:46:07 -070065 help
Linus Walleijdb9477f2019-05-23 08:54:19 +020066 Say Y here to add the legacy sysfs interface for GPIOs.
David Brownelld8f388d82008-07-25 01:46:07 -070067
Linus Walleijdb9477f2019-05-23 08:54:19 +020068 This ABI is deprecated. If you want to use GPIO from userspace,
69 use the character device /dev/gpiochipN with the appropriate
Kent Gibsond1434932020-09-28 08:27:52 +080070 ioctl() operations instead.
71
72config GPIO_CDEV
73 bool
74 prompt "Character device (/dev/gpiochipN) support" if EXPERT
75 default y
76 help
77 Say Y here to add the character device /dev/gpiochipN interface
78 for GPIOs. The character device allows userspace to control GPIOs
79 using ioctl() operations.
80
81 Only say N if you are sure that the GPIO character device is not
82 required.
83
84 If unsure, say Y.
David Brownelld8f388d82008-07-25 01:46:07 -070085
Kent Gibson957ebb62020-09-28 08:27:53 +080086config GPIO_CDEV_V1
87 bool "Support GPIO ABI Version 1"
88 default y
89 depends on GPIO_CDEV
90 help
91 Say Y here to support version 1 of the GPIO CDEV ABI.
92
93 This ABI version is deprecated.
94 Please use the latest ABI for new developments.
95
96 If unsure, say Y.
97
Grant Likelyc103de22011-06-04 18:38:28 -060098config GPIO_GENERIC
Linus Walleij3085a4a2016-10-03 09:46:58 +020099 depends on HAS_IOMEM # Only for IOMEM drivers
Grant Likelyc103de22011-06-04 18:38:28 -0600100 tristate
101
Michael Walleebe36312020-05-28 16:58:44 +0200102config GPIO_REGMAP
103 depends on REGMAP
104 tristate
105
Linus Walleije849dc02011-05-20 00:40:19 -0600106# put drivers in the right section, in alphabetical order
David Brownella9c5fff2008-02-04 22:28:17 -0800107
Linus Walleij177b0382015-04-08 15:11:16 +0200108# This symbol is selected by both I2C and SPI expanders
Wolfram Sange9528052010-03-05 13:44:33 -0800109config GPIO_MAX730X
110 tristate
111
Linus Walleij177b0382015-04-08 15:11:16 +0200112menu "Memory mapped GPIO drivers"
Linus Walleij3085a4a2016-10-03 09:46:58 +0200113 depends on HAS_IOMEM
John Linn0bcb6062008-11-12 13:25:38 -0800114
Alexander Shiyanaf0a33e2014-10-03 11:31:57 +0400115config GPIO_74XX_MMIO
116 tristate "GPIO driver for 74xx-ICs with MMIO access"
117 depends on OF_GPIO
118 select GPIO_GENERIC
119 help
120 Say yes here to support GPIO functionality for 74xx-compatible ICs
121 with MMIO access. Compatible models include:
122 1 bit: 741G125 (Input), 741G74 (Output)
123 2 bits: 742G125 (Input), 7474 (Output)
124 4 bits: 74125 (Input), 74175 (Output)
125 6 bits: 74365 (Input), 74174 (Output)
126 8 bits: 74244 (Input), 74273 (Output)
127 16 bits: 741624 (Input), 7416374 (Output)
128
Linus Walleij223fa272015-04-08 10:08:56 +0200129config GPIO_ALTERA
130 tristate "Altera GPIO"
131 depends on OF_GPIO
Linus Walleij223fa272015-04-08 10:08:56 +0200132 select GPIOLIB_IRQCHIP
133 help
134 Say Y or M here to build support for the Altera PIO device.
135
136 If driver is built as a module it will be called gpio-altera.
137
YD Tseng6057d40f2015-10-19 11:07:37 +0800138config GPIO_AMDPT
139 tristate "AMD Promontory GPIO support"
140 depends on ACPI
Axel Lin574b7822016-02-29 22:00:01 +0800141 select GPIO_GENERIC
YD Tseng6057d40f2015-10-19 11:07:37 +0800142 help
Randy Dunlapdd1695a2021-10-23 23:00:58 -0700143 Driver for GPIO functionality on Promontory IOHub.
144 Requires ACPI ASL code to enumerate as a platform device.
YD Tseng6057d40f2015-10-19 11:07:37 +0800145
Joel Stanley361b7912016-08-30 17:24:27 +0930146config GPIO_ASPEED
147 tristate "Aspeed GPIO support"
148 depends on (ARCH_ASPEED || COMPILE_TEST) && OF_GPIO
149 select GPIOLIB_IRQCHIP
150 help
151 Say Y here to support Aspeed AST2400 and AST2500 GPIO controllers.
152
Linus Walleijf8b410e2019-09-27 13:48:33 +0200153config GPIO_ASPEED_SGPIO
154 bool "Aspeed SGPIO support"
155 depends on (ARCH_ASPEED || COMPILE_TEST) && OF_GPIO
156 select GPIO_GENERIC
157 select GPIOLIB_IRQCHIP
158 help
159 Say Y here to support Aspeed AST2500 SGPIO functionality.
160
Alban Bedelab327702016-01-28 20:44:29 +0100161config GPIO_ATH79
162 tristate "Atheros AR71XX/AR724X/AR913X GPIO support"
163 default y if ATH79
Alban Bedel409d8782016-01-28 20:44:30 +0100164 depends on ATH79 || COMPILE_TEST
Alban Bedelab327702016-01-28 20:44:29 +0100165 select GPIO_GENERIC
Alban Bedel2b8f89e2016-01-28 20:44:32 +0100166 select GPIOLIB_IRQCHIP
Alban Bedelab327702016-01-28 20:44:29 +0100167 help
168 Select this option to enable GPIO driver for
169 Atheros AR71XX/AR724X/AR913X SoC devices.
170
Dave Stevensona98d90e2018-02-20 14:19:33 +0200171config GPIO_RASPBERRYPI_EXP
172 tristate "Raspberry Pi 3 GPIO Expander"
173 default RASPBERRYPI_FIRMWARE
174 depends on OF_GPIO
Baruch Siach94337b72018-03-02 11:47:01 +0200175 # Make sure not 'y' when RASPBERRYPI_FIRMWARE is 'm'. This can only
176 # happen when COMPILE_TEST=y, hence the added !RASPBERRYPI_FIRMWARE.
Arnd Bergmann7ed91502018-02-28 14:48:08 +0100177 depends on (ARCH_BCM2835 && RASPBERRYPI_FIRMWARE) || (COMPILE_TEST && !RASPBERRYPI_FIRMWARE)
Dave Stevensona98d90e2018-02-20 14:19:33 +0200178 help
179 Turn on GPIO support for the expander on Raspberry Pi 3 boards, using
180 the firmware mailbox to communicate with VideoCore on BCM283x chips.
181
Linus Walleijea948cf2015-04-08 14:36:17 +0200182config GPIO_BCM_KONA
183 bool "Broadcom Kona GPIO"
184 depends on OF_GPIO && (ARCH_BCM_MOBILE || COMPILE_TEST)
185 help
186 Turn on GPIO support for Broadcom "Kona" chips.
187
Chris Packham6a41b6c2019-10-25 09:27:03 +1300188config GPIO_BCM_XGS_IPROC
189 tristate "BRCM XGS iProc GPIO support"
190 depends on OF_GPIO && (ARCH_BCM_IPROC || COMPILE_TEST)
191 select GPIO_GENERIC
192 select GPIOLIB_IRQCHIP
193 default ARCH_BCM_IPROC
194 help
195 Say yes here to enable GPIO support for Broadcom XGS iProc SoCs.
196
Gregory Fong3b0213d2015-05-28 19:14:05 -0700197config GPIO_BRCMSTB
198 tristate "BRCMSTB GPIO support"
Florian Fainellia02588a2016-01-06 10:55:23 -0800199 default y if (ARCH_BRCMSTB || BMIPS_GENERIC)
200 depends on OF_GPIO && (ARCH_BRCMSTB || BMIPS_GENERIC || COMPILE_TEST)
Gregory Fong3b0213d2015-05-28 19:14:05 -0700201 select GPIO_GENERIC
Doug Berger0ba31dc2017-10-24 12:54:50 -0700202 select IRQ_DOMAIN
Gregory Fong3b0213d2015-05-28 19:14:05 -0700203 help
204 Say yes here to enable GPIO support for Broadcom STB (BCM7XXX) SoCs.
205
Jan Kotas72ab2f72018-12-18 16:10:42 +0000206config GPIO_CADENCE
207 tristate "Cadence GPIO support"
208 depends on OF_GPIO
209 select GPIO_GENERIC
210 select GPIOLIB_IRQCHIP
211 help
212 Say yes here to enable support for Cadence GPIO controller.
213
Alexander Shiyana3b8d4a2012-10-09 20:05:56 +0400214config GPIO_CLPS711X
Alexander Shiyan55fe14a2013-04-26 19:47:28 +0400215 tristate "CLPS711X GPIO support"
Alexander Shiyanffd4bf12013-12-24 18:08:54 +0400216 depends on ARCH_CLPS711X || COMPILE_TEST
Alexander Shiyan55fe14a2013-04-26 19:47:28 +0400217 select GPIO_GENERIC
218 help
219 Say yes here to support GPIO on CLPS711X SoCs.
Alexander Shiyana3b8d4a2012-10-09 20:05:56 +0400220
Grygorii Strashkoee89cf62013-11-21 17:34:36 +0200221config GPIO_DAVINCI
222 bool "TI Davinci/Keystone GPIO support"
223 default y if ARCH_DAVINCI
Keerthy6eeea322019-06-05 11:25:19 +0530224 depends on (ARM || ARM64) && (ARCH_DAVINCI || ARCH_KEYSTONE || ARCH_K3)
Grygorii Strashkoee89cf62013-11-21 17:34:36 +0200225 help
226 Say yes here to enable GPIO support for TI Davinci/Keystone SoCs.
227
Jamie Iles7779b3452014-02-25 17:01:01 -0600228config GPIO_DWAPB
229 tristate "Synopsys DesignWare APB GPIO driver"
230 select GPIO_GENERIC
Serge Semin0ea68392020-07-30 18:28:02 +0300231 select GPIOLIB_IRQCHIP
Jamie Iles7779b3452014-02-25 17:01:01 -0600232 help
233 Say Y or M here to build support for the Synopsys DesignWare APB
234 GPIO block.
235
Baolin Wang25518e02018-03-05 10:56:51 +0800236config GPIO_EIC_SPRD
237 tristate "Spreadtrum EIC support"
238 depends on ARCH_SPRD || COMPILE_TEST
239 depends on OF_GPIO
240 select GPIOLIB_IRQCHIP
241 help
242 Say yes here to support Spreadtrum EIC device.
243
Magnus Damma07e1032012-05-17 15:22:23 +0900244config GPIO_EM
245 tristate "Emma Mobile GPIO"
Peter Robinson22eaf132016-11-20 17:48:36 +0000246 depends on (ARCH_EMEV2 || COMPILE_TEST) && OF_GPIO
Magnus Damma07e1032012-05-17 15:22:23 +0900247 help
248 Say yes here to support GPIO on Renesas Emma Mobile SoCs.
249
H Hartley Sweetenc6b52c12011-06-01 10:09:19 -0700250config GPIO_EP93XX
251 def_bool y
252 depends on ARCH_EP93XX
H Hartley Sweeten1e4c8842011-06-08 14:35:33 -0700253 select GPIO_GENERIC
Linus Walleija419a3d2018-08-22 22:41:11 +0200254 select GPIOLIB_IRQCHIP
H Hartley Sweetenc6b52c12011-06-01 10:09:19 -0700255
Sudip Mukherjee6596e592017-01-19 22:23:20 +0000256config GPIO_EXAR
257 tristate "Support for GPIO pins on XR17V352/354/358"
258 depends on SERIAL_8250_EXAR
Bartosz Golaszewski36fb7212020-09-28 17:00:26 +0200259 select REGMAP_MMIO
Sudip Mukherjee6596e592017-01-19 22:23:20 +0000260 help
261 Selecting this option will enable handling of GPIO pins present
262 on Exar XR17V352/354/358 chips.
263
Linus Walleij223fa272015-04-08 10:08:56 +0200264config GPIO_GE_FPGA
265 bool "GE FPGA based GPIO"
266 depends on GE_FPGA
267 select GPIO_GENERIC
268 help
269 Support for common GPIO functionality provided on some GE Single Board
270 Computers.
271
272 This driver provides basic support (configure as input or output, read
273 and write pin state) for GPIO implemented in a number of GE single
274 board computers.
275
Linus Walleij9d3a15a2017-03-13 00:28:16 +0100276config GPIO_FTGPIO010
277 bool "Faraday FTGPIO010 GPIO"
Linus Walleij49cec4d2017-01-22 13:18:44 +0100278 depends on OF_GPIO
279 select GPIO_GENERIC
280 select GPIOLIB_IRQCHIP
Linus Walleijd8307c02017-03-13 00:28:17 +0100281 default (ARCH_GEMINI || ARCH_MOXART)
Linus Walleij49cec4d2017-01-22 13:18:44 +0100282 help
Linus Walleij9d3a15a2017-03-13 00:28:16 +0100283 Support for common GPIOs from the Faraday FTGPIO010 IP core, found in
284 Cortina systems Gemini platforms, Moxa ART and others.
Linus Walleij49cec4d2017-01-22 13:18:44 +0100285
Linus Walleij223fa272015-04-08 10:08:56 +0200286config GPIO_GENERIC_PLATFORM
287 tristate "Generic memory-mapped GPIO controller support (MMIO platform device)"
288 select GPIO_GENERIC
289 help
290 Say yes here to support basic platform_device memory-mapped GPIO controllers.
291
292config GPIO_GRGPIO
293 tristate "Aeroflex Gaisler GRGPIO support"
Linus Walleij048c28c2016-08-16 12:07:31 +0200294 depends on OF_GPIO
Linus Walleij223fa272015-04-08 10:08:56 +0200295 select GPIO_GENERIC
296 select IRQ_DOMAIN
297 help
298 Select this to support Aeroflex Gaisler GRGPIO cores from the GRLIB
299 VHDL IP core library.
300
Luo Jiaxing356b01a2020-12-14 16:24:13 +0800301config GPIO_HISI
302 tristate "HiSilicon GPIO controller driver"
Andy Shevchenko72db5d52020-12-14 18:55:23 +0200303 depends on (ARM64 && ACPI) || COMPILE_TEST
Luo Jiaxing356b01a2020-12-14 16:24:13 +0800304 select GPIO_GENERIC
305 select GPIOLIB_IRQCHIP
306 help
307 Say Y or M here to build support for the HiSilicon GPIO controller
308 driver GPIO block.
Randy Dunlapdd1695a2021-10-23 23:00:58 -0700309 This GPIO controller supports double-edge interrupt and multi-core
Luo Jiaxing356b01a2020-12-14 16:24:13 +0800310 concurrent access.
311
Jonathan Neuschäfer8f55fed2018-02-09 13:07:29 +0100312config GPIO_HLWD
313 tristate "Nintendo Wii (Hollywood) GPIO"
314 depends on OF_GPIO
315 select GPIO_GENERIC
Jonathan Neuschäfer588de43c2019-01-14 20:14:49 +0100316 select GPIOLIB_IRQCHIP
Jonathan Neuschäfer8f55fed2018-02-09 13:07:29 +0100317 help
318 Select this to support the GPIO controller of the Nintendo Wii.
319
320 If unsure, say N.
321
Linus Walleij223fa272015-04-08 10:08:56 +0200322config GPIO_ICH
323 tristate "Intel ICH GPIO"
Andy Shevchenkoba134d22021-04-02 21:42:25 +0300324 depends on X86
325 depends on LPC_ICH
Linus Walleij223fa272015-04-08 10:08:56 +0200326 help
327 Say yes here to support the GPIO functionality of a number of Intel
328 ICH-based chipsets. Currently supported devices: ICH6, ICH7, ICH8
Randy Dunlapdd1695a2021-10-23 23:00:58 -0700329 ICH9, ICH10, Series 5/3400 (e.g. Ibex Peak), Series 6/C200 (e.g.
Linus Walleij223fa272015-04-08 10:08:56 +0200330 Cougar Point), NM10 (Tiger Point), and 3100 (Whitmore Lake).
331
332 If unsure, say N.
333
334config GPIO_IOP
335 tristate "Intel IOP GPIO"
Arnd Bergmann59d3ae92019-08-09 18:33:15 +0200336 depends on ARCH_IOP32X || COMPILE_TEST
Alexander Shiyan6d125412016-09-09 09:20:03 +0300337 select GPIO_GENERIC
Linus Walleij223fa272015-04-08 10:08:56 +0200338 help
339 Say yes here to support the GPIO functionality of a number of Intel
Randy Dunlapdd1695a2021-10-23 23:00:58 -0700340 IOP32X or IOP33X series of chips.
Linus Walleij223fa272015-04-08 10:08:56 +0200341
342 If unsure, say N.
343
Linus Walleij813e7d32019-01-25 21:59:11 +0100344config GPIO_IXP4XX
345 bool "Intel IXP4xx GPIO"
346 depends on ARM # For <asm/mach-types.h>
347 depends on ARCH_IXP4XX
348 select GPIO_GENERIC
Linus Walleijaa7d6182019-08-08 14:32:38 +0200349 select GPIOLIB_IRQCHIP
Linus Walleij813e7d32019-01-25 21:59:11 +0100350 select IRQ_DOMAIN_HIERARCHY
351 help
352 Say yes here to support the GPIO functionality of a number of Intel
353 IXP4xx series of chips.
354
355 If unsure, say N.
Paul Kocialkowskic16485a2019-12-03 15:12:43 +0100356config GPIO_LOGICVC
357 tristate "Xylon LogiCVC GPIO support"
358 depends on MFD_SYSCON && OF
359 help
360 Say yes here to support GPIO functionality of the Xylon LogiCVC
361 programmable logic block.
Linus Walleij813e7d32019-01-25 21:59:11 +0100362
Linus Walleij223fa272015-04-08 10:08:56 +0200363config GPIO_LOONGSON
364 bool "Loongson-2/3 GPIO support"
Jiaxun Yang268a2d62019-10-20 22:43:13 +0800365 depends on CPU_LOONGSON2EF || CPU_LOONGSON64
Linus Walleij223fa272015-04-08 10:08:56 +0200366 help
Randy Dunlapdd1695a2021-10-23 23:00:58 -0700367 Driver for GPIO functionality on Loongson-2F/3A/3B processors.
Linus Walleij223fa272015-04-08 10:08:56 +0200368
Joachim Eastwood13a43fd2015-05-02 23:11:34 +0200369config GPIO_LPC18XX
Paul Gortmaker54b72992016-06-05 14:23:43 -0400370 tristate "NXP LPC18XX/43XX GPIO support"
Joachim Eastwood13a43fd2015-05-02 23:11:34 +0200371 default y if ARCH_LPC18XX
372 depends on OF_GPIO && (ARCH_LPC18XX || COMPILE_TEST)
Vladimir Zapolskiy5ddabfe2018-11-29 00:48:41 +0200373 select IRQ_DOMAIN_HIERARCHY
Joachim Eastwood13a43fd2015-05-02 23:11:34 +0200374 help
375 Select this option to enable GPIO driver for
376 NXP LPC18XX/43XX devices.
377
Arnd Bergmannf2ee7312019-08-09 16:40:31 +0200378config GPIO_LPC32XX
379 tristate "NXP LPC32XX GPIO support"
380 depends on OF_GPIO && (ARCH_LPC32XX || COMPILE_TEST)
381 help
382 Select this option to enable GPIO driver for
383 NXP LPC32XX devices.
384
Jassi Brar0da094d2015-01-19 18:35:53 +0800385config GPIO_MB86S7X
Ard Biesheuvele1289db2017-10-27 21:21:47 +0100386 tristate "GPIO support for Fujitsu MB86S7x Platforms"
Jassi Brar0da094d2015-01-19 18:35:53 +0800387 help
388 Say yes here to support the GPIO controller in Fujitsu MB86S70 SoCs.
Fabian Vogt9af4d802014-02-24 20:54:58 +0100389
Andreas Wernerf436bc22016-02-29 19:44:43 +0100390config GPIO_MENZ127
391 tristate "MEN 16Z127 GPIO support"
392 depends on MCB
393 select GPIO_GENERIC
394 help
Randy Dunlapdd1695a2021-10-23 23:00:58 -0700395 Say yes here to support the MEN 16Z127 GPIO Controller.
Andreas Wernerf436bc22016-02-29 19:44:43 +0100396
John Crispin5238f7b2012-05-11 18:48:39 +0200397config GPIO_MM_LANTIQ
398 bool "Lantiq Memory mapped GPIOs"
399 depends on LANTIQ && SOC_XWAY
400 help
401 This enables support for memory mapped GPIOs on the External Bus Unit
Randy Dunlapdd1695a2021-10-23 23:00:58 -0700402 (EBU) found on Lantiq SoCs. The GPIOs are output only as they are
403 created by attaching a 16-bit latch to the bus.
John Crispin5238f7b2012-05-11 18:48:39 +0200404
Grant Likely6eae1ac2011-07-06 11:54:19 -0600405config GPIO_MPC5200
406 def_bool y
407 depends on PPC_MPC52xx
408
Wolfram Sangc68308d2011-09-21 12:49:20 +0200409config GPIO_MPC8XXX
Liu Gang5df7fd42016-01-12 20:10:09 +0800410 bool "MPC512x/MPC8xxx/QorIQ GPIO support"
Wolfram Sangc68308d2011-09-21 12:49:20 +0200411 depends on PPC_MPC512x || PPC_MPC831x || PPC_MPC834x || PPC_MPC837x || \
Liu Gang5df7fd42016-01-12 20:10:09 +0800412 FSL_SOC_BOOKE || PPC_86xx || ARCH_LAYERSCAPE || ARM || \
413 COMPILE_TEST
414 select GPIO_GENERIC
Arnd Bergmanna8fa91a2016-04-19 14:10:08 +0200415 select IRQ_DOMAIN
Wolfram Sangc68308d2011-09-21 12:49:20 +0200416 help
417 Say Y here if you're going to use hardware that connects to the
Liu Gang5df7fd42016-01-12 20:10:09 +0800418 MPC512x/831x/834x/837x/8572/8610/QorIQ GPIOs.
Wolfram Sangc68308d2011-09-21 12:49:20 +0200419
Sergio Paracuellos4ba9c3a2018-07-05 15:43:10 +0200420config GPIO_MT7621
421 bool "Mediatek MT7621 GPIO Support"
422 depends on SOC_MT7620 || SOC_MT7621 || COMPILE_TEST
Arnd Bergmann7a9a5df2018-07-10 17:18:47 +0200423 depends on OF_GPIO
Sergio Paracuellos4ba9c3a2018-07-05 15:43:10 +0200424 select GPIO_GENERIC
425 select GPIOLIB_IRQCHIP
426 help
Randy Dunlapdd1695a2021-10-23 23:00:58 -0700427 Say yes here to support the Mediatek MT7621 SoC GPIO device.
Sergio Paracuellos4ba9c3a2018-07-05 15:43:10 +0200428
Thomas Petazzonifefe7b02012-09-19 22:52:58 +0200429config GPIO_MVEBU
430 def_bool y
Gregory CLEMENT3b4c94b2017-05-19 18:09:23 +0200431 depends on PLAT_ORION || ARCH_MVEBU
Linus Walleij048c28c2016-08-16 12:07:31 +0200432 depends on OF_GPIO
Thomas Petazzonifefe7b02012-09-19 22:52:58 +0200433 select GENERIC_IRQ_CHIP
Gregory CLEMENTf37e3352017-05-24 16:32:06 +0200434 select REGMAP_MMIO
Thomas Petazzonifefe7b02012-09-19 22:52:58 +0200435
Shawn Guod37a65b2011-06-06 00:07:54 +0800436config GPIO_MXC
Anson Huang12d16b32020-09-17 13:33:46 +0800437 tristate "i.MX GPIO support"
Anson Huangd4e93612020-03-07 21:31:57 +0800438 depends on ARCH_MXC || COMPILE_TEST
Grant Likelyc103de22011-06-04 18:38:28 -0600439 select GPIO_GENERIC
Shawn Guoe4ea9332011-06-07 16:25:37 +0800440 select GENERIC_IRQ_CHIP
Grant Likelyc103de22011-06-04 18:38:28 -0600441
442config GPIO_MXS
Geert Uytterhoeven97c6e282021-02-08 15:51:53 +0100443 bool "Freescale MXS GPIO support" if COMPILE_TEST
Anson Huang6876ca32020-03-09 09:57:38 +0800444 depends on ARCH_MXS || COMPILE_TEST
Geert Uytterhoeven97c6e282021-02-08 15:51:53 +0100445 default y if ARCH_MXS
Shawn Guo06f88a82011-06-06 22:31:29 +0800446 select GPIO_GENERIC
Shawn Guo498c17c2011-06-07 22:00:54 +0800447 select GENERIC_IRQ_CHIP
Shawn Guod37a65b2011-06-06 00:07:54 +0800448
David Daneyaca58a62013-07-29 14:29:10 -0700449config GPIO_OCTEON
450 tristate "Cavium OCTEON GPIO"
Geert Uytterhoevene4c6a522020-06-23 16:40:01 +0200451 depends on CAVIUM_OCTEON_SOC
David Daneyaca58a62013-07-29 14:29:10 -0700452 default y
453 help
454 Say yes here to support the on-chip GPIO lines on the OCTEON
455 family of SOCs.
456
Javier Martinez Canillascd0a3742014-04-06 16:58:15 +0200457config GPIO_OMAP
Tony Lindgrencac089f2015-04-23 16:56:22 -0700458 tristate "TI OMAP GPIO support" if ARCH_OMAP2PLUS || COMPILE_TEST
Javier Martinez Canillascd0a3742014-04-06 16:58:15 +0200459 default y if ARCH_OMAP
Arnd Bergmann9d5d96e2014-04-28 11:07:03 +0200460 depends on ARM
461 select GENERIC_IRQ_CHIP
Javier Martinez Canillasfb655f52014-04-06 16:58:16 +0200462 select GPIOLIB_IRQCHIP
Javier Martinez Canillascd0a3742014-04-06 16:58:15 +0200463 help
464 Say yes here to enable GPIO support for TI OMAP SoCs.
465
Baruch Siach1e9c2852009-06-18 16:48:58 -0700466config GPIO_PL061
Rob Herring61684442020-04-08 19:41:10 -0600467 tristate "PrimeCell PL061 GPIO support"
Rob Herring8a242842013-11-05 21:27:02 -0600468 depends on ARM_AMBA
Axel Lina5d6d272014-02-04 20:39:01 +0800469 select IRQ_DOMAIN
Linus Walleij8d5b24b2014-03-25 10:42:35 +0100470 select GPIOLIB_IRQCHIP
Baruch Siach1e9c2852009-06-18 16:48:58 -0700471 help
Randy Dunlapdd1695a2021-10-23 23:00:58 -0700472 Say yes here to support the PrimeCell PL061 GPIO device.
Baruch Siach1e9c2852009-06-18 16:48:58 -0700473
Baolin Wang348f3cd2018-03-05 10:56:52 +0800474config GPIO_PMIC_EIC_SPRD
475 tristate "Spreadtrum PMIC EIC support"
476 depends on MFD_SC27XX_PMIC || COMPILE_TEST
477 depends on OF_GPIO
478 select GPIOLIB_IRQCHIP
479 help
480 Say yes here to support Spreadtrum PMIC EIC device.
481
Haojian Zhuang157d2642011-10-17 20:37:52 +0800482config GPIO_PXA
483 bool "PXA GPIO support"
Tiezhu Yang22e4ebd2020-05-22 12:12:20 +0800484 depends on ARCH_PXA || ARCH_MMP || COMPILE_TEST
Haojian Zhuang157d2642011-10-17 20:37:52 +0800485 help
Randy Dunlapdd1695a2021-10-23 23:00:58 -0700486 Say yes here to support the PXA GPIO device.
Haojian Zhuang157d2642011-10-17 20:37:52 +0800487
Magnus Damm119f5e42013-03-13 20:32:13 +0900488config GPIO_RCAR
Lad Prabhakar032653e2021-01-04 11:37:44 +0000489 tristate "Renesas R-Car and RZ/G GPIO support"
Simon Horman2af66e12016-02-23 10:36:51 +0900490 depends on ARCH_RENESAS || COMPILE_TEST
Geert Uytterhoevenc7f3c5d2015-01-12 11:07:59 +0100491 select GPIOLIB_IRQCHIP
Magnus Damm119f5e42013-03-13 20:32:13 +0900492 help
Lad Prabhakar032653e2021-01-04 11:37:44 +0000493 Say yes here to support GPIO on Renesas R-Car or RZ/G SoCs.
Magnus Damm119f5e42013-03-13 20:32:13 +0900494
Manivannan Sadhasivamd57eb822019-10-21 12:14:12 +0530495config GPIO_RDA
496 bool "RDA Micro GPIO controller support"
497 depends on ARCH_RDA || COMPILE_TEST
498 depends on OF_GPIO
499 select GPIO_GENERIC
500 select GPIOLIB_IRQCHIP
501 help
502 Say Y here to support RDA Micro GPIO controller.
503
Sander Vanheule0d82fb12021-03-30 19:48:43 +0200504config GPIO_REALTEK_OTTO
505 tristate "Realtek Otto GPIO support"
506 depends on MACH_REALTEK_RTL
507 default MACH_REALTEK_RTL
508 select GPIO_GENERIC
509 select GPIOLIB_IRQCHIP
510 help
511 The GPIO controller on the Otto MIPS platform supports up to two
512 banks of 32 GPIOs, with edge triggered interrupts. The 32 GPIOs
513 are grouped in four 8-bit wide ports.
514
515 When built as a module, the module will be called realtek_otto_gpio.
516
Russell King380639c2016-08-31 08:49:44 +0100517config GPIO_REG
518 bool
519 help
520 A 32-bit single register GPIO fixed in/out implementation. This
521 can be used to represent any register as a set of GPIO signals.
522
Jianqun Xu936ee262021-08-16 09:20:53 +0800523config GPIO_ROCKCHIP
524 tristate "Rockchip GPIO support"
525 depends on ARCH_ROCKCHIP || COMPILE_TEST
Randy Dunlapd6912b12021-11-15 22:46:27 -0800526 select GENERIC_IRQ_CHIP
Jianqun Xu936ee262021-08-16 09:20:53 +0800527 select GPIOLIB_IRQCHIP
528 default ARCH_ROCKCHIP
529 help
530 Say yes here to support GPIO on Rockchip SoCs.
531
Andrei.Stefanescu@microchip.comfb0b35d2018-12-12 11:57:15 +0000532config GPIO_SAMA5D2_PIOBU
533 tristate "SAMA5D2 PIOBU GPIO support"
534 depends on MFD_SYSCON
Linus Walleija7c23f82018-12-22 11:04:55 +0100535 depends on OF_GPIO
Andrei.Stefanescu@microchip.comfb0b35d2018-12-12 11:57:15 +0000536 select GPIO_SYSCON
537 help
538 Say yes here to use the PIOBU pins as GPIOs.
539
540 PIOBU pins on the SAMA5D2 can be used as GPIOs.
541 The difference from regular GPIOs is that they
542 maintain their value during backup/self-refresh.
543
Yash Shah96868dc2019-12-10 16:41:13 +0530544config GPIO_SIFIVE
545 bool "SiFive GPIO support"
Randy Dunlap18eedf22021-01-18 19:18:13 -0800546 depends on OF_GPIO
547 select IRQ_DOMAIN_HIERARCHY
Yash Shah96868dc2019-12-10 16:41:13 +0530548 select GPIO_GENERIC
549 select GPIOLIB_IRQCHIP
550 select REGMAP_MMIO
551 help
552 Say yes here to support the GPIO device on SiFive SoCs.
553
Uwe Kleine-Königbe8c8fa2018-09-27 09:48:08 +0200554config GPIO_SIOX
555 tristate "SIOX GPIO support"
556 depends on SIOX
557 select GPIOLIB_IRQCHIP
558 help
559 Say yes here to support SIOX I/O devices. These are units connected
560 via a SIOX bus and have a number of fixed-direction I/O lines.
561
Eugeniy Paltsev2505c7b2018-09-28 16:15:30 +0300562config GPIO_SNPS_CREG
563 bool "Synopsys GPIO via CREG (Control REGisters) driver"
564 depends on ARC || COMPILE_TEST
Randy Dunlapa7c0b4b2018-10-12 20:46:29 -0700565 depends on OF_GPIO
Eugeniy Paltsev2505c7b2018-09-28 16:15:30 +0300566 help
567 This driver supports GPIOs via CREG on various Synopsys SoCs.
568 This is a single-register MMIO GPIO driver for complex cases
569 where only several fields in register belong to GPIO lines and
570 each GPIO line owns a field with different length and on/off value.
571
Shiraz Hashimb53bc282012-11-16 10:45:25 +0530572config GPIO_SPEAR_SPICS
573 bool "ST SPEAr13xx SPI Chip Select as GPIO support"
574 depends on PLAT_SPEAR
575 select GENERIC_IRQ_CHIP
576 help
Randy Dunlapdd1695a2021-10-23 23:00:58 -0700577 Say yes here to support ST SPEAr SPI Chip Select as GPIO device.
Shiraz Hashimb53bc282012-11-16 10:45:25 +0530578
Baolin Wang9a3821c2018-02-24 10:07:18 +0800579config GPIO_SPRD
580 tristate "Spreadtrum GPIO support"
581 depends on ARCH_SPRD || COMPILE_TEST
582 depends on OF_GPIO
583 select GPIOLIB_IRQCHIP
584 help
585 Say yes here to support Spreadtrum GPIO device.
586
Alessandro Rubini7b0d44f32012-04-12 10:48:55 +0200587config GPIO_STA2X11
588 bool "STA2x11/ConneXt GPIO support"
589 depends on MFD_STA2X11
590 select GENERIC_IRQ_CHIP
591 help
592 Say yes here to support the STA2x11/ConneXt GPIO device.
593 The GPIO module has 128 GPIO pins with alternate functions.
594
Linus Walleijbe9cab52015-04-08 14:51:23 +0200595config GPIO_STP_XWAY
596 bool "XWAY STP GPIOs"
Martin Blumenstingl50998372019-07-03 00:32:48 +0200597 depends on SOC_XWAY || COMPILE_TEST
598 depends on OF_GPIO
Linus Walleijbe9cab52015-04-08 14:51:23 +0200599 help
600 This enables support for the Serial To Parallel (STP) unit found on
601 XWAY SoC. The STP allows the SoC to drive a shift registers cascade,
Randy Dunlapdd1695a2021-10-23 23:00:58 -0700602 that can be up to 24 bits. This peripheral is aimed at driving LEDs.
603 Some of the GPIOs/LEDs can be auto updated by the SoC with DSL and
Linus Walleijbe9cab52015-04-08 14:51:23 +0200604 phy status.
605
Alexander Shiyan6a8a0c12014-03-11 21:55:14 +0400606config GPIO_SYSCON
607 tristate "GPIO based on SYSCON"
608 depends on MFD_SYSCON && OF
609 help
610 Say yes here to support GPIO functionality though SYSCON driver.
611
Linus Walleij223fa272015-04-08 10:08:56 +0200612config GPIO_TB10X
613 bool
Linus Walleij0d1e31a2018-08-06 16:59:42 +0200614 select GPIO_GENERIC
Linus Walleij223fa272015-04-08 10:08:56 +0200615 select GENERIC_IRQ_CHIP
616 select OF_GPIO
617
Alexander Stein4dd4dd12016-02-24 20:54:32 +0100618config GPIO_TEGRA
Dmitry Osipenko4a6eac22021-01-22 21:55:43 +0300619 tristate "NVIDIA Tegra GPIO support"
Arnd Bergmann0bfb85c2016-07-06 14:54:03 +0200620 default ARCH_TEGRA
Alexander Stein4dd4dd12016-02-24 20:54:32 +0100621 depends on ARCH_TEGRA || COMPILE_TEST
Linus Walleij048c28c2016-08-16 12:07:31 +0200622 depends on OF_GPIO
Thierry Reding298d75c2021-01-18 20:49:25 +0100623 select GPIOLIB_IRQCHIP
624 select IRQ_DOMAIN_HIERARCHY
Arnd Bergmann0bfb85c2016-07-06 14:54:03 +0200625 help
626 Say yes here to support GPIO pins on NVIDIA Tegra SoCs.
Alexander Stein4dd4dd12016-02-24 20:54:32 +0100627
Thierry Reding5b2b1352017-11-07 19:15:56 +0100628config GPIO_TEGRA186
629 tristate "NVIDIA Tegra186 GPIO support"
Thierry Reding286e7be2019-12-13 14:00:34 +0100630 default ARCH_TEGRA_186_SOC || ARCH_TEGRA_194_SOC
631 depends on ARCH_TEGRA_186_SOC || ARCH_TEGRA_194_SOC || COMPILE_TEST
Thierry Reding5b2b1352017-11-07 19:15:56 +0100632 depends on OF_GPIO
633 select GPIOLIB_IRQCHIP
Thierry Reding2a365502019-10-02 16:45:02 +0200634 select IRQ_DOMAIN_HIERARCHY
Thierry Reding5b2b1352017-11-07 19:15:56 +0100635 help
636 Say yes here to support GPIO pins on NVIDIA Tegra186 SoCs.
637
Julien Grossholtz5041e792016-01-13 11:57:43 -0500638config GPIO_TS4800
639 tristate "TS-4800 DIO blocks and compatibles"
640 depends on OF_GPIO
Julien Grossholtz6dcfd722016-02-26 18:06:59 -0500641 depends on SOC_IMX51 || COMPILE_TEST
Julien Grossholtz5041e792016-01-13 11:57:43 -0500642 select GPIO_GENERIC
643 help
644 This driver support TS-4800 FPGA GPIO controllers.
645
David Daney5a2a3002017-08-17 17:53:35 -0700646config GPIO_THUNDERX
647 tristate "Cavium ThunderX/OCTEON-TX GPIO"
648 depends on ARCH_THUNDER || (64BIT && COMPILE_TEST)
Masahiro Yamada311de3c2017-09-06 10:40:52 +0900649 depends on PCI_MSI
Linus Walleija7fc89f2019-08-08 14:32:40 +0200650 select GPIOLIB_IRQCHIP
Masahiro Yamada311de3c2017-09-06 10:40:52 +0900651 select IRQ_DOMAIN_HIERARCHY
David Daney5a2a3002017-08-17 17:53:35 -0700652 select IRQ_FASTEOI_HIERARCHY_HANDLERS
653 help
654 Say yes here to support the on-chip GPIO lines on the ThunderX
655 and OCTEON-TX families of SoCs.
656
Masahiro Yamadadbe776c2017-10-12 20:36:16 +0900657config GPIO_UNIPHIER
658 tristate "UniPhier GPIO support"
659 depends on ARCH_UNIPHIER || COMPILE_TEST
660 depends on OF_GPIO
661 select IRQ_DOMAIN_HIERARCHY
662 help
663 Say yes here to support UniPhier GPIOs.
664
Stefan Agner7f2691a2014-10-16 21:47:58 +0200665config GPIO_VF610
666 def_bool y
667 depends on ARCH_MXC && SOC_VF610
668 select GPIOLIB_IRQCHIP
669 help
670 Say yes here to support Vybrid vf610 GPIOs.
671
Nobuhiro Iwamatsu2ad74f42020-12-17 23:43:36 +0900672config GPIO_VISCONTI
673 tristate "Toshiba Visconti GPIO support"
674 depends on ARCH_VISCONTI || COMPILE_TEST
675 depends on OF_GPIO
676 select GPIOLIB_IRQCHIP
677 select GPIO_GENERIC
678 select IRQ_DOMAIN_HIERARCHY
679 help
680 Say yes here to support GPIO on Tohisba Visconti.
681
Linus Walleij223fa272015-04-08 10:08:56 +0200682config GPIO_VR41XX
Randy Dunlapdd1695a2021-10-23 23:00:58 -0700683 tristate "NEC VR4100 series General-purpose I/O Unit support"
Linus Walleij223fa272015-04-08 10:08:56 +0200684 depends on CPU_VR41XX
685 help
Randy Dunlapdd1695a2021-10-23 23:00:58 -0700686 Say yes here to support the NEC VR4100 series General-purpose I/O Unit.
Linus Walleij223fa272015-04-08 10:08:56 +0200687
688config GPIO_VX855
689 tristate "VIA VX855/VX875 GPIO"
Peter Robinson72aba2e2016-11-20 17:37:25 +0000690 depends on (X86 || COMPILE_TEST) && PCI
Linus Walleij223fa272015-04-08 10:08:56 +0200691 select MFD_CORE
692 select MFD_VX855
693 help
Randy Dunlapdd1695a2021-10-23 23:00:58 -0700694 Support access to the VX855/VX875 GPIO lines through the GPIO library.
Linus Walleij223fa272015-04-08 10:08:56 +0200695
Randy Dunlapdd1695a2021-10-23 23:00:58 -0700696 This driver provides common support for accessing the device.
697 Additional drivers must be enabled in order to use the
Linus Walleij223fa272015-04-08 10:08:56 +0200698 functionality of the device.
699
Srinivas Kandagatla59c324682020-01-07 13:08:44 +0000700config GPIO_WCD934X
Randy Dunlapdd1695a2021-10-23 23:00:58 -0700701 tristate "Qualcomm Technologies Inc WCD9340/WCD9341 GPIO controller driver"
Srinivas Kandagatla59c324682020-01-07 13:08:44 +0000702 depends on MFD_WCD934X && OF_GPIO
703 help
Colin Ian King0bb8e802020-12-15 10:53:29 +0000704 This driver is to support GPIO block found on the Qualcomm Technologies
Srinivas Kandagatla59c324682020-01-07 13:08:44 +0000705 Inc WCD9340/WCD9341 Audio Codec.
706
Feng Kan29cbf452014-07-31 12:03:25 -0700707config GPIO_XGENE
708 bool "APM X-Gene GPIO controller support"
709 depends on ARM64 && OF_GPIO
710 help
711 This driver is to support the GPIO block within the APM X-Gene SoC
712 platform's generic flash controller. The GPIO pins are muxed with
713 the generic flash controller's address and data pins. Say yes
714 here to enable the GFC GPIO functionality.
715
Y Vob2b35e12015-01-16 14:34:19 +0700716config GPIO_XGENE_SB
717 tristate "APM X-Gene GPIO standby controller support"
Andy Shevchenkob24bc582020-05-12 21:27:20 +0300718 depends on (ARCH_XGENE || COMPILE_TEST)
Y Vob2b35e12015-01-16 14:34:19 +0700719 select GPIO_GENERIC
Matthias Bruggere5f7e312016-03-04 11:59:58 +0100720 select GPIOLIB_IRQCHIP
Masahiro Yamadac23d2002017-07-12 08:11:50 +0900721 select IRQ_DOMAIN_HIERARCHY
Y Vob2b35e12015-01-16 14:34:19 +0700722 help
723 This driver supports the GPIO block within the APM X-Gene
724 Standby Domain. Say yes here to enable the GPIO functionality.
725
John Linn0bcb6062008-11-12 13:25:38 -0800726config GPIO_XILINX
Ricardo Ribalda Delgadoc54c58b2014-12-17 16:51:10 +0100727 tristate "Xilinx GPIO support"
Srinivas Neelia32c7ca2021-01-29 19:56:48 +0530728 select GPIOLIB_IRQCHIP
729 depends on OF_GPIO
John Linn0bcb6062008-11-12 13:25:38 -0800730 help
Randy Dunlapdd1695a2021-10-23 23:00:58 -0700731 Say yes here to support the Xilinx FPGA GPIO device.
John Linn0bcb6062008-11-12 13:25:38 -0800732
Kamlakant Patelff718802015-04-28 20:10:45 +0530733config GPIO_XLP
734 tristate "Netlogic XLP GPIO support"
Jayachandran C240d3d52017-05-22 08:58:31 +0000735 depends on OF_GPIO && (CPU_XLP || ARCH_THUNDER2 || COMPILE_TEST)
Kamlakant Patelff718802015-04-28 20:10:45 +0530736 select GPIOLIB_IRQCHIP
737 help
738 This driver provides support for GPIO interface on Netlogic XLP MIPS64
739 SoCs. Currently supported XLP variants are XLP8XX, XLP3XX, XLP2XX,
Jayachandran C240d3d52017-05-22 08:58:31 +0000740 XLP9XX and XLP5XX. The same GPIO controller block is also present in
741 Cavium's ThunderX2 CN99XX SoCs.
Kamlakant Patelff718802015-04-28 20:10:45 +0530742
743 If unsure, say N.
744
Baruch Siach3b31d0e2013-12-12 11:18:41 +0200745config GPIO_XTENSA
746 bool "Xtensa GPIO32 support"
747 depends on XTENSA
Baruch Siacha1a2bde2013-12-18 09:10:29 +0200748 depends on HAVE_XTENSA_GPIO32
Baruch Siach3b31d0e2013-12-12 11:18:41 +0200749 depends on !SMP
750 help
751 Say yes here to support the Xtensa internal GPIO32 IMPWIRE (input)
Randy Dunlapdd1695a2021-10-23 23:00:58 -0700752 and EXPSTATE (output) ports.
Baruch Siach3b31d0e2013-12-12 11:18:41 +0200753
Linus Walleij223fa272015-04-08 10:08:56 +0200754config GPIO_ZEVIO
755 bool "LSI ZEVIO SoC memory mapped GPIOs"
756 depends on ARM && OF_GPIO
Yoichi Yuasa27fdd322009-06-29 11:11:05 +0900757 help
Linus Walleij223fa272015-04-08 10:08:56 +0200758 Say yes here to support the GPIO controller in LSI ZEVIO SoCs.
Yoichi Yuasa27fdd322009-06-29 11:11:05 +0900759
Linus Walleij223fa272015-04-08 10:08:56 +0200760config GPIO_ZYNQ
761 tristate "Xilinx Zynq GPIO support"
Anurag Kumar Vulishabdf7a4a2015-06-04 17:40:32 +0530762 depends on ARCH_ZYNQ || ARCH_ZYNQMP
Mika Westerberg7f872102014-07-25 09:54:46 +0300763 select GPIOLIB_IRQCHIP
Mathias Nyman1d09aaa2012-12-12 17:42:38 +0200764 help
Linus Walleij223fa272015-04-08 10:08:56 +0200765 Say yes here to support Xilinx Zynq GPIO controller.
Mathias Nyman1d09aaa2012-12-12 17:42:38 +0200766
Piyush Mehta7687a5b2021-09-22 19:23:19 +0530767config GPIO_ZYNQMP_MODEPIN
Randy Dunlapdd1695a2021-10-23 23:00:58 -0700768 tristate "ZynqMP ps-mode pin GPIO configuration driver"
Piyush Mehta7687a5b2021-09-22 19:23:19 +0530769 depends on ZYNQMP_FIRMWARE
770 default ZYNQMP_FIRMWARE
771 help
Randy Dunlapdd1695a2021-10-23 23:00:58 -0700772 Say yes here to support the ZynqMP ps-mode pin GPIO configuration
Piyush Mehta7687a5b2021-09-22 19:23:19 +0530773 driver.
774
Randy Dunlapdd1695a2021-10-23 23:00:58 -0700775 This ps-mode pin GPIO driver is based on GPIO framework. PS_MODE
Piyush Mehta7687a5b2021-09-22 19:23:19 +0530776 is 4-bits boot mode pins. It sets and gets the status of
777 the ps-mode pin. Every pin can be configured as input/output.
778
Kelvin Cheungbd37c992016-04-06 20:34:53 +0800779config GPIO_LOONGSON1
780 tristate "Loongson1 GPIO support"
781 depends on MACH_LOONGSON32
782 select GPIO_GENERIC
783 help
784 Say Y or M here to support GPIO on Loongson1 SoCs.
785
Enrico Weigelt, metux IT consulte09d1682019-02-22 10:54:15 +0100786config GPIO_AMD_FCH
787 tristate "GPIO support for AMD Fusion Controller Hub (G-series SOCs)"
788 help
Randy Dunlapdd1695a2021-10-23 23:00:58 -0700789 This option enables driver for GPIO on AMD's Fusion Controller Hub,
790 as found on G-series SOCs (e.g. GX-412TC).
Enrico Weigelt, metux IT consulte09d1682019-02-22 10:54:15 +0100791
Randy Dunlapdd1695a2021-10-23 23:00:58 -0700792 Note: This driver doesn't register itself automatically, as it
793 needs to be provided with platform-specific configuration.
794 (See e.g. CONFIG_PCENGINES_APU2.)
Daniel Palmer93224ed2020-11-29 20:08:00 +0900795
796config GPIO_MSC313
797 bool "MStar MSC313 GPIO support"
798 depends on ARCH_MSTARV7
799 default ARCH_MSTARV7
800 select GPIOLIB_IRQCHIP
801 select IRQ_DOMAIN_HIERARCHY
802 help
803 Say Y here to support the main GPIO block on MStar/SigmaStar
Randy Dunlapdd1695a2021-10-23 23:00:58 -0700804 ARMv7-based SoCs.
Daniel Palmer93224ed2020-11-29 20:08:00 +0900805
Thomas Bogendoerfer41959262021-05-14 14:33:07 +0200806config GPIO_IDT3243X
807 tristate "IDT 79RC3243X GPIO support"
808 depends on MIKROTIK_RB532 || COMPILE_TEST
809 select GPIO_GENERIC
810 select GPIOLIB_IRQCHIP
811 help
812 Select this option to enable GPIO driver for
Randy Dunlapdd1695a2021-10-23 23:00:58 -0700813 IDT 79RC3243X-based devices like Mikrotik RB532.
Thomas Bogendoerfer41959262021-05-14 14:33:07 +0200814
815 To compile this driver as a module, choose M here: the module will
816 be called gpio-idt3243x.
817
Linus Walleij177b0382015-04-08 15:11:16 +0200818endmenu
819
Linus Walleijbc6a73b2015-10-30 10:32:19 +0100820menu "Port-mapped I/O GPIO drivers"
Linus Walleij7768feb2015-11-01 10:39:07 +0100821 depends on X86 # Unconditional I/O space access
Linus Walleijbc6a73b2015-10-30 10:32:19 +0100822
William Breathitt Gray1b06d642016-01-20 13:50:11 -0500823config GPIO_104_DIO_48E
824 tristate "ACCES 104-DIO-48E GPIO support"
William Breathitt Gray35decc82017-12-29 15:13:46 -0500825 depends on PC104
826 select ISA_BUS_API
William Breathitt Gray1b06d642016-01-20 13:50:11 -0500827 select GPIOLIB_IRQCHIP
828 help
William Breathitt Gray4c23db02016-05-01 18:44:39 -0400829 Enables GPIO support for the ACCES 104-DIO-48E series (104-DIO-48E,
830 104-DIO-24E). The base port addresses for the devices may be
831 configured via the base module parameter. The interrupt line numbers
832 for the devices may be configured via the irq module parameter.
William Breathitt Gray1b06d642016-01-20 13:50:11 -0500833
Linus Walleijbc6a73b2015-10-30 10:32:19 +0100834config GPIO_104_IDIO_16
835 tristate "ACCES 104-IDIO-16 GPIO support"
William Breathitt Gray35decc82017-12-29 15:13:46 -0500836 depends on PC104
837 select ISA_BUS_API
William Breathitt Graya1184142015-11-03 07:54:23 -0500838 select GPIOLIB_IRQCHIP
Linus Walleijbc6a73b2015-10-30 10:32:19 +0100839 help
William Breathitt Gray86ea8a92016-05-01 18:45:11 -0400840 Enables GPIO support for the ACCES 104-IDIO-16 family (104-IDIO-16,
841 104-IDIO-16E, 104-IDO-16, 104-IDIO-8, 104-IDIO-8E, 104-IDO-8). The
842 base port addresses for the devices may be configured via the base
843 module parameter. The interrupt line numbers for the devices may be
844 configured via the irq module parameter.
Linus Walleijbc6a73b2015-10-30 10:32:19 +0100845
William Breathitt Gray6ddcf9b2015-11-23 12:54:50 -0500846config GPIO_104_IDI_48
847 tristate "ACCES 104-IDI-48 GPIO support"
William Breathitt Gray35decc82017-12-29 15:13:46 -0500848 depends on PC104
849 select ISA_BUS_API
William Breathitt Gray6ddcf9b2015-11-23 12:54:50 -0500850 select GPIOLIB_IRQCHIP
851 help
William Breathitt Gray72bf7442016-05-01 18:44:55 -0400852 Enables GPIO support for the ACCES 104-IDI-48 family (104-IDI-48A,
853 104-IDI-48AC, 104-IDI-48B, 104-IDI-48BC). The base port addresses for
854 the devices may be configured via the base module parameter. The
855 interrupt line numbers for the devices may be configured via the irq
856 module parameter.
William Breathitt Gray6ddcf9b2015-11-23 12:54:50 -0500857
Linus Walleijbc6a73b2015-10-30 10:32:19 +0100858config GPIO_F7188X
Peter Hung1920906f2016-01-22 15:23:33 +0800859 tristate "F71869, F71869A, F71882FG, F71889F and F81866 GPIO support"
Linus Walleijbc6a73b2015-10-30 10:32:19 +0100860 help
861 This option enables support for GPIOs found on Fintek Super-I/O
Peter Hung1920906f2016-01-22 15:23:33 +0800862 chips F71869, F71869A, F71882FG, F71889F and F81866.
Linus Walleijbc6a73b2015-10-30 10:32:19 +0100863
864 To compile this driver as a module, choose M here: the module will
865 be called f7188x-gpio.
866
William Breathitt Gray6ea5dcd2016-08-02 09:57:47 -0400867config GPIO_GPIO_MM
868 tristate "Diamond Systems GPIO-MM GPIO support"
William Breathitt Gray35decc82017-12-29 15:13:46 -0500869 depends on PC104
870 select ISA_BUS_API
William Breathitt Gray6ea5dcd2016-08-02 09:57:47 -0400871 help
872 Enables GPIO support for the Diamond Systems GPIO-MM and GPIO-MM-12.
873
874 The Diamond Systems GPIO-MM device features 48 lines of digital I/O
875 via the emulation of dual 82C55A PPI chips. This driver provides GPIO
876 support for these 48 channels of digital I/O.
877
878 The base port addresses for the devices may be configured via the base
879 array module parameter.
880
Linus Walleijbc6a73b2015-10-30 10:32:19 +0100881config GPIO_IT87
882 tristate "IT87xx GPIO support"
Linus Walleijbc6a73b2015-10-30 10:32:19 +0100883 help
884 Say yes here to support GPIO functionality of IT87xx Super I/O chips.
885
886 This driver is tested with ITE IT8728 and IT8732 Super I/O chips, and
Leonid Blocha5ec96d2018-08-09 01:26:36 +0300887 supports the IT8761E, IT8613, IT8620E, and IT8628E Super I/O chips as
888 well.
Linus Walleijbc6a73b2015-10-30 10:32:19 +0100889
890 To compile this driver as a module, choose M here: the module will
Randy Dunlapdd1695a2021-10-23 23:00:58 -0700891 be called gpio_it87.
Linus Walleijbc6a73b2015-10-30 10:32:19 +0100892
893config GPIO_SCH
894 tristate "Intel SCH/TunnelCreek/Centerton/Quark X1000 GPIO"
Andy Shevchenkofdc1f5df2021-03-17 17:19:28 +0200895 depends on (X86 || COMPILE_TEST) && ACPI
Randy Dunlap71cf76d2021-04-02 09:17:51 -0700896 depends on LPC_SCH
Jan Kiszka7a816382021-03-17 17:19:27 +0200897 select GPIOLIB_IRQCHIP
Linus Walleijbc6a73b2015-10-30 10:32:19 +0100898 help
899 Say yes here to support GPIO interface on Intel Poulsbo SCH,
900 Intel Tunnel Creek processor, Intel Centerton processor or
901 Intel Quark X1000 SoC.
902
903 The Intel SCH contains a total of 14 GPIO pins. Ten GPIOs are
904 powered by the core power rail and are turned off during sleep
905 modes (S3 and higher). The remaining four GPIOs are powered by
906 the Intel SCH suspend power supply. These GPIOs remain
Randy Dunlapdd1695a2021-10-23 23:00:58 -0700907 active during S3. The suspend-powered GPIOs can be used to wake the
Linus Walleijbc6a73b2015-10-30 10:32:19 +0100908 system from the Suspend-to-RAM state.
909
910 The Intel Tunnel Creek processor has 5 GPIOs powered by the
911 core power rail and 9 from suspend power supply.
912
913 The Intel Centerton processor has a total of 30 GPIO pins.
914 Twenty-one are powered by the core power rail and 9 from the
915 suspend power supply.
916
917 The Intel Quark X1000 SoC has 2 GPIOs powered by the core
918 power well and 6 from the suspend power well.
919
920config GPIO_SCH311X
921 tristate "SMSC SCH311x SuperI/O GPIO"
922 help
923 Driver to enable the GPIOs found on SMSC SMSC SCH3112, SCH3114 and
924 SCH3116 "Super I/O" chipsets.
925
926 To compile this driver as a module, choose M here: the module will
927 be called gpio-sch311x.
928
929config GPIO_TS5500
930 tristate "TS-5500 DIO blocks and compatibles"
931 depends on TS5500 || COMPILE_TEST
932 help
933 This driver supports Digital I/O exposed by pin blocks found on some
934 Technologic Systems platforms. It includes, but is not limited to, 3
935 blocks of the TS-5500: DIO1, DIO2 and the LCD port, and the TS-5600
936 LCD port.
937
Maciej S. Szmigieroa0d65002018-01-06 00:46:08 +0100938config GPIO_WINBOND
939 tristate "Winbond Super I/O GPIO support"
Maciej S. Szmigierob995ff32018-02-23 15:55:17 +0100940 select ISA_BUS_API
Maciej S. Szmigieroa0d65002018-01-06 00:46:08 +0100941 help
942 This option enables support for GPIOs found on Winbond Super I/O
943 chips.
944 Currently, only W83627UHG (also known as Nuvoton NCT6627UD) is
945 supported.
946
947 You will need to provide a module parameter "gpios", or a
948 boot-time parameter "gpio_winbond.gpios" with a bitmask of GPIO
949 ports to enable (bit 0 is GPIO1, bit 1 is GPIO2, etc.).
950
951 To compile this driver as a module, choose M here: the module will
952 be called gpio-winbond.
953
William Breathitt Gray9c26df92016-01-20 13:45:33 -0500954config GPIO_WS16C48
955 tristate "WinSystems WS16C48 GPIO support"
William Breathitt Gray35decc82017-12-29 15:13:46 -0500956 select ISA_BUS_API
William Breathitt Gray9c26df92016-01-20 13:45:33 -0500957 select GPIOLIB_IRQCHIP
958 help
William Breathitt Graycc736602016-05-01 18:45:24 -0400959 Enables GPIO support for the WinSystems WS16C48. The base port
960 addresses for the devices may be configured via the base module
961 parameter. The interrupt line numbers for the devices may be
962 configured via the irq module parameter.
William Breathitt Gray9c26df92016-01-20 13:45:33 -0500963
Linus Walleijbc6a73b2015-10-30 10:32:19 +0100964endmenu
965
Linus Walleij177b0382015-04-08 15:11:16 +0200966menu "I2C GPIO expanders"
967 depends on I2C
David Brownella9c5fff2008-02-04 22:28:17 -0800968
Linus Walleijbf5a16b2015-04-08 14:14:40 +0200969config GPIO_ADP5588
970 tristate "ADP5588 I2C GPIO expander"
Mark Brown31ba56f2012-06-23 13:29:25 +0100971 help
Linus Walleijbf5a16b2015-04-08 14:14:40 +0200972 This option enables support for 18 GPIOs found
973 on Analog Devices ADP5588 GPIO Expanders.
Wolfram Sange9528052010-03-05 13:44:33 -0800974
Linus Walleijbf5a16b2015-04-08 14:14:40 +0200975config GPIO_ADP5588_IRQ
976 bool "Interrupt controller support for ADP5588"
977 depends on GPIO_ADP5588=y
Randy Dunlape9646f02019-05-23 15:00:41 -0700978 select GPIOLIB_IRQCHIP
Eric Miaobbcd6d52008-07-25 01:46:14 -0700979 help
Linus Walleijbf5a16b2015-04-08 14:14:40 +0200980 Say yes here to enable the adp5588 to be used as an interrupt
981 controller. It requires the driver to be built in the kernel.
David Brownella9c5fff2008-02-04 22:28:17 -0800982
Linus Walleijbf5a16b2015-04-08 14:14:40 +0200983config GPIO_ADNP
984 tristate "Avionic Design N-bit GPIO expander"
Linus Walleij269a46f2015-11-01 10:43:16 +0100985 depends on OF_GPIO
Zhu, Lejun104fb1d2014-06-03 13:26:04 +0800986 select GPIOLIB_IRQCHIP
987 help
Linus Walleijbf5a16b2015-04-08 14:14:40 +0200988 This option enables support for N GPIOs found on Avionic Design
989 I2C GPIO expanders. The register space will be extended by powers
990 of two, so the controller will need to accommodate for that. For
991 example: if a controller provides 48 pins, 6 registers will be
992 enough to represent all pins, but the driver will assume a
993 register layout for 64 pins (8 registers).
Milo Kim0cc59b92013-12-06 11:18:42 +0900994
Linus Walleij2a0b0a52019-02-01 21:41:31 +0100995config GPIO_GW_PLD
996 tristate "Gateworks PLD GPIO Expander"
997 depends on OF_GPIO
998 help
999 Say yes here to provide access to the Gateworks I2C PLD GPIO
1000 Expander. This is used at least on the Cambria GW2358-4.
1001
David Brownella9c5fff2008-02-04 22:28:17 -08001002config GPIO_MAX7300
Eric Miaobbcd6d52008-07-25 01:46:14 -07001003 tristate "Maxim MAX7300 GPIO expander"
Eric Miaobbcd6d52008-07-25 01:46:14 -07001004 select GPIO_MAX730X
1005 help
Axel Lin2b861f42013-05-19 14:25:48 +08001006 GPIO driver for Maxim MAX7300 I2C-based GPIO expander.
David Brownella9c5fff2008-02-04 22:28:17 -08001007
Eric Miaobbcd6d52008-07-25 01:46:14 -07001008config GPIO_MAX732X
1009 tristate "MAX7319, MAX7320-7327 I2C Port Expanders"
Eric Miaobbcd6d52008-07-25 01:46:14 -07001010 help
1011 Say yes here to support the MAX7319, MAX7320-7327 series of I2C
1012 Port Expanders. Each IO port on these chips has a fixed role of
1013 Input (designated by 'I'), Push-Pull Output ('O'), or Open-Drain
1014 Input and Output (designed by 'P'). The combinations are listed
1015 below:
1016
Enrico Weigelt, metux IT consultc42e34c2019-03-05 01:35:31 +01001017 8 bits: max7319 (8I), max7320 (8O), max7321 (8P),
1018 max7322 (4I4O), max7323 (4P4O)
Eric Miaobbcd6d52008-07-25 01:46:14 -07001019
Enrico Weigelt, metux IT consultc42e34c2019-03-05 01:35:31 +01001020 16 bits: max7324 (8I8O), max7325 (8P8O),
1021 max7326 (4I12O), max7327 (4P12O)
Eric Miaobbcd6d52008-07-25 01:46:14 -07001022
1023 Board setup code must specify the model to use, and the start
1024 number for these GPIOs.
1025
Marc Zyngiera80a0bb2010-05-26 14:42:16 -07001026config GPIO_MAX732X_IRQ
1027 bool "Interrupt controller support for MAX732x"
Martin Schwidefsky0244ad02013-08-30 09:39:53 +02001028 depends on GPIO_MAX732X=y
Linus Walleij984f6642015-01-30 11:32:01 +01001029 select GPIOLIB_IRQCHIP
Marc Zyngiera80a0bb2010-05-26 14:42:16 -07001030 help
1031 Say yes here to enable the max732x to be used as an interrupt
1032 controller. It requires the driver to be built in the kernel.
1033
Guennadi Liakhovetskif3dc3632008-02-06 01:39:03 -08001034config GPIO_PCA953X
Aaron Sierraeb32b5a2014-02-13 13:59:23 +01001035 tristate "PCA95[357]x, PCA9698, TCA64xx, and MAX7310 I/O ports"
Marek Vasut4bc16f92018-12-16 18:38:58 +01001036 select REGMAP_I2C
eric miao9e60fdc2008-02-04 22:28:26 -08001037 help
David Brownell7059d4b2008-07-04 09:59:37 -07001038 Say yes here to provide access to several register-oriented
1039 SMBus I/O expanders, made mostly by NXP or TI. Compatible
1040 models include:
1041
Enrico Weigelt, metux IT consultc42e34c2019-03-05 01:35:31 +01001042 4 bits: pca9536, pca9537
David Brownell7059d4b2008-07-04 09:59:37 -07001043
Enrico Weigelt, metux IT consultc42e34c2019-03-05 01:35:31 +01001044 8 bits: max7310, max7315, pca6107, pca9534, pca9538, pca9554,
1045 pca9556, pca9557, pca9574, tca6408, tca9554, xra1202
David Brownell7059d4b2008-07-04 09:59:37 -07001046
Enrico Weigelt, metux IT consultc42e34c2019-03-05 01:35:31 +01001047 16 bits: max7312, max7313, pca9535, pca9539, pca9555, pca9575,
1048 tca6416
eric miao9e60fdc2008-02-04 22:28:26 -08001049
Enrico Weigelt, metux IT consultc42e34c2019-03-05 01:35:31 +01001050 24 bits: tca6424
Aaron Sierra1e191692014-02-07 16:35:48 -06001051
Enrico Weigelt, metux IT consultc42e34c2019-03-05 01:35:31 +01001052 40 bits: pca9505, pca9698
Aaron Sierra1e191692014-02-07 16:35:48 -06001053
Marc Zyngier89ea8bb2010-03-05 13:44:36 -08001054config GPIO_PCA953X_IRQ
1055 bool "Interrupt controller support for PCA953x"
Andy Shevchenkoe33a58a2020-05-21 00:19:15 +03001056 depends on GPIO_PCA953X
Linus Walleij7bcbce52014-05-09 13:27:57 +02001057 select GPIOLIB_IRQCHIP
Marc Zyngier89ea8bb2010-03-05 13:44:36 -08001058 help
1059 Say yes here to enable the pca953x to be used as an interrupt
Randy Dunlapdd1695a2021-10-23 23:00:58 -07001060 controller.
Marc Zyngier89ea8bb2010-03-05 13:44:36 -08001061
Sungbo Eo16d44b62020-07-09 22:48:29 +09001062config GPIO_PCA9570
1063 tristate "PCA9570 4-Bit I2C GPO expander"
1064 help
1065 Say yes here to enable the GPO driver for the NXP PCA9570 chip.
1066
1067 To compile this driver as a module, choose M here: the module will
1068 be called gpio-pca9570.
1069
David Brownell15fae372008-02-04 22:28:24 -08001070config GPIO_PCF857X
David Brownell1673ad52008-07-21 14:21:34 -07001071 tristate "PCF857x, PCA{85,96}7x, and MAX732[89] I2C GPIO expanders"
Geert Uytterhoevena39294b2015-02-05 16:49:08 +01001072 select GPIOLIB_IRQCHIP
Arnd Bergmann901acf52012-09-28 23:36:15 +02001073 select IRQ_DOMAIN
David Brownell15fae372008-02-04 22:28:24 -08001074 help
1075 Say yes here to provide access to most "quasi-bidirectional" I2C
1076 GPIO expanders used for additional digital outputs or inputs.
1077 Most of these parts are from NXP, though TI is a second source for
1078 some of them. Compatible models include:
1079
1080 8 bits: pcf8574, pcf8574a, pca8574, pca8574a,
David Brownell1673ad52008-07-21 14:21:34 -07001081 pca9670, pca9672, pca9674, pca9674a,
Enrico Weigelt, metux IT consultc42e34c2019-03-05 01:35:31 +01001082 max7328, max7329
David Brownell15fae372008-02-04 22:28:24 -08001083
1084 16 bits: pcf8575, pcf8575c, pca8575,
1085 pca9671, pca9673, pca9675
1086
1087 Your board setup code will need to declare the expanders in
1088 use, and assign numbers to the GPIOs they expose. Those GPIOs
1089 can then be used from drivers and other kernel code, just like
1090 other GPIOs, but only accessible from task contexts.
1091
1092 This driver provides an in-kernel interface to those GPIOs using
1093 platform-neutral GPIO calls.
1094
Andrew F. Davisb8665262016-01-25 10:14:12 -06001095config GPIO_TPIC2810
1096 tristate "TPIC2810 8-Bit I2C GPO expander"
1097 help
1098 Say yes here to enable the GPO driver for the TI TPIC2810 chip.
1099
1100 To compile this driver as a module, choose M here: the module will
1101 be called gpio-tpic2810.
1102
Lucile Quirion9c668632016-08-12 11:16:49 -04001103config GPIO_TS4900
1104 tristate "Technologic Systems FPGA I2C GPIO"
Jean Delvare4c5f15b2016-10-14 14:24:09 +02001105 depends on SOC_IMX6 || COMPILE_TEST
Lucile Quirion9c668632016-08-12 11:16:49 -04001106 select REGMAP_I2C
1107 help
1108 Say yes here to enabled the GPIO driver for Technologic's FPGA core.
1109 Series supported include TS-4100, TS-4900, TS-7970 and TS-7990.
1110
Linus Walleij177b0382015-04-08 15:11:16 +02001111endmenu
1112
1113menu "MFD GPIO expanders"
Linus Walleijbe9cab52015-04-08 14:51:23 +02001114
1115config GPIO_ADP5520
1116 tristate "GPIO Support for ADP5520 PMIC"
1117 depends on PMIC_ADP5520
1118 help
1119 This option enables support for on-chip GPIO found
1120 on Analog Devices ADP5520 PMICs.
1121
Thor Thayer26a48c42016-06-02 12:52:24 -05001122config GPIO_ALTERA_A10SR
1123 tristate "Altera Arria10 System Resource GPIO"
1124 depends on MFD_ALTERA_A10SR
1125 help
1126 Driver for Arria10 Development Kit GPIO expansion which
1127 includes reads of pushbuttons and DIP switches as well
1128 as writes to LEDs.
1129
Linus Walleijbe9cab52015-04-08 14:51:23 +02001130config GPIO_ARIZONA
1131 tristate "Wolfson Microelectronics Arizona class devices"
1132 depends on MFD_ARIZONA
1133 help
1134 Support for GPIOs on Wolfson Arizona class devices.
1135
Matti Vaittinen18bc64b2019-06-03 10:26:45 +03001136config GPIO_BD70528
1137 tristate "ROHM BD70528 GPIO support"
1138 depends on MFD_ROHM_BD70528
1139 help
1140 Support for GPIOs on ROHM BD70528 PMIC. There are four GPIOs
1141 available on the ROHM PMIC in total. The GPIOs can also
1142 generate interrupts.
1143
1144 This driver can also be built as a module. If so, the module
1145 will be called gpio-bd70528.
1146
Matti Vaittinen703b2882021-04-05 14:43:08 +03001147config GPIO_BD71815
1148 tristate "ROHM BD71815 PMIC GPIO support"
1149 depends on MFD_ROHM_BD71828
1150 help
1151 Support for GPO(s) on ROHM BD71815 PMIC. There are two GPOs
1152 available on the ROHM PMIC.
1153
1154 This driver can also be built as a module. If so, the module
1155 will be called gpio-bd71815.
1156
Matti Vaittinenc31f6252020-01-20 15:47:37 +02001157config GPIO_BD71828
1158 tristate "ROHM BD71828 GPIO support"
1159 depends on MFD_ROHM_BD71828
1160 help
1161 Support for GPIOs on ROHM BD71828 PMIC. There are three GPIOs
1162 available on the ROHM PMIC in total. The GPIOs are limited to
1163 outputs only and pins must be configured to GPIO outputs by
1164 OTP. Enable this only if you want to use these pins as outputs.
1165
1166 This driver can also be built as a module. If so, the module
1167 will be called gpio-bd71828.
1168
Marek Vasut93847932017-04-25 20:32:09 +02001169config GPIO_BD9571MWV
1170 tristate "ROHM BD9571 GPIO support"
1171 depends on MFD_BD9571MWV
1172 help
1173 Support for GPIOs on ROHM BD9571 PMIC. There are two GPIOs
1174 available on the ROHM PMIC in total, both of which can also
1175 generate interrupts.
1176
1177 This driver can also be built as a module. If so, the module
1178 will be called gpio-bd9571mwv.
1179
Linus Walleijbe9cab52015-04-08 14:51:23 +02001180config GPIO_CRYSTAL_COVE
1181 tristate "GPIO support for Crystal Cove PMIC"
Peter Robinson72aba2e2016-11-20 17:37:25 +00001182 depends on (X86 || COMPILE_TEST) && INTEL_SOC_PMIC
Linus Walleijbe9cab52015-04-08 14:51:23 +02001183 select GPIOLIB_IRQCHIP
1184 help
1185 Support for GPIO pins on Crystal Cove PMIC.
1186
Randy Dunlapdd1695a2021-10-23 23:00:58 -07001187 Say Yes if you have a Intel SoC-based tablet with Crystal Cove PMIC
Linus Walleijbe9cab52015-04-08 14:51:23 +02001188 inside.
1189
1190 This driver can also be built as a module. If so, the module will be
1191 called gpio-crystalcove.
1192
1193config GPIO_CS5535
1194 tristate "AMD CS5535/CS5536 GPIO support"
Peter Robinson72aba2e2016-11-20 17:37:25 +00001195 depends on X86 || MIPS || COMPILE_TEST
Linus Walleijbe9cab52015-04-08 14:51:23 +02001196 depends on MFD_CS5535
1197 help
1198 The AMD CS5535 and CS5536 southbridges support 28 GPIO pins that
1199 can be used for quite a number of things. The CS5535/6 is found on
1200 AMD Geode and Lemote Yeeloong devices.
1201
1202 If unsure, say N.
1203
1204config GPIO_DA9052
1205 tristate "Dialog DA9052 GPIO"
1206 depends on PMIC_DA9052
1207 help
1208 Say yes here to enable the GPIO driver for the DA9052 chip.
1209
1210config GPIO_DA9055
1211 tristate "Dialog Semiconductor DA9055 GPIO"
1212 depends on MFD_DA9055
1213 help
1214 Say yes here to enable the GPIO driver for the DA9055 chip.
1215
1216 The Dialog DA9055 PMIC chip has 3 GPIO pins that can be
Randy Dunlapdd1695a2021-10-23 23:00:58 -07001217 be controlled by this driver.
Linus Walleijbe9cab52015-04-08 14:51:23 +02001218
1219 If driver is built as a module it will be called gpio-da9055.
1220
1221config GPIO_DLN2
1222 tristate "Diolan DLN2 GPIO support"
1223 depends on MFD_DLN2
1224 select GPIOLIB_IRQCHIP
1225
1226 help
1227 Select this option to enable GPIO driver for the Diolan DLN2
1228 board.
1229
1230 This driver can also be built as a module. If so, the module
1231 will be called gpio-dln2.
1232
Linus Walleij3c6e8d02016-09-16 13:48:12 +02001233config HTC_EGPIO
1234 bool "HTC EGPIO support"
Geert Uytterhoevene4c6a522020-06-23 16:40:01 +02001235 depends on ARM
Linus Walleij3c6e8d02016-09-16 13:48:12 +02001236 help
Enrico Weigelt, metux IT consultc42e34c2019-03-05 01:35:31 +01001237 This driver supports the CPLD egpio chip present on
1238 several HTC phones. It provides basic support for input
Randy Dunlapdd1695a2021-10-23 23:00:58 -07001239 pins, output pins, and IRQs.
Linus Walleij3c6e8d02016-09-16 13:48:12 +02001240
Linus Walleijbe9cab52015-04-08 14:51:23 +02001241config GPIO_JANZ_TTL
1242 tristate "Janz VMOD-TTL Digital IO Module"
1243 depends on MFD_JANZ_CMODIO
1244 help
1245 This enables support for the Janz VMOD-TTL Digital IO module.
1246 This driver provides support for driving the pins in output
1247 mode only. Input mode is not supported.
1248
1249config GPIO_KEMPLD
1250 tristate "Kontron ETX / COMexpress GPIO"
1251 depends on MFD_KEMPLD
1252 help
1253 This enables support for the PLD GPIO interface on some Kontron ETX
1254 and COMexpress (ETXexpress) modules.
1255
1256 This driver can also be built as a module. If so, the module will be
1257 called gpio-kempld.
1258
1259config GPIO_LP3943
1260 tristate "TI/National Semiconductor LP3943 GPIO expander"
1261 depends on MFD_LP3943
1262 help
1263 GPIO driver for LP3943 MFD.
1264 LP3943 can be used as a GPIO expander which provides up to 16 GPIOs.
1265 Open drain outputs are required for this usage.
1266
Keerthy83f14102016-08-31 14:28:11 +05301267config GPIO_LP873X
1268 tristate "TI LP873X GPO"
1269 depends on MFD_TI_LP873X
1270 help
1271 This driver supports the GPO on TI Lp873x PMICs. 2 GPOs are present
1272 on LP873X PMICs.
1273
1274 This driver can also be built as a module. If so, the module will be
Enrico Weigelt, metux IT consultc42e34c2019-03-05 01:35:31 +01001275 called gpio-lp873x.
Keerthy83f14102016-08-31 14:28:11 +05301276
Keerthy5c7f2c72017-06-15 12:03:11 +05301277config GPIO_LP87565
1278 tristate "TI LP87565 GPIO"
1279 depends on MFD_TI_LP87565
1280 help
1281 This driver supports the GPIO on TI Lp873565 PMICs. 3 GPIOs are present
1282 on LP87565 PMICs.
1283
1284 This driver can also be built as a module. If so, the module will be
1285 called gpio-lp87565.
1286
Richard Fitzgeraldaca429f2018-05-21 11:00:02 +01001287config GPIO_MADERA
1288 tristate "Cirrus Logic Madera class codecs"
1289 depends on PINCTRL_MADERA
1290 help
1291 Support for GPIOs on Cirrus Logic Madera class codecs.
1292
Laxman Dewangan02c5ba12016-05-13 10:49:14 +05301293config GPIO_MAX77620
1294 tristate "GPIO support for PMIC MAX77620 and MAX20024"
1295 depends on MFD_MAX77620
Dmitry Osipenkoc5706c72020-01-06 04:51:54 +03001296 select GPIOLIB_IRQCHIP
Laxman Dewangan02c5ba12016-05-13 10:49:14 +05301297 help
1298 GPIO driver for MAX77620 and MAX20024 PMIC from Maxim Semiconductor.
1299 MAX77620 PMIC has 8 pins that can be configured as GPIOs. The
Randy Dunlapdd1695a2021-10-23 23:00:58 -07001300 driver also provides interrupt support for each of the GPIOs.
1301 Say yes here to enable the max77620 to be used as GPIO controller.
Laxman Dewangan02c5ba12016-05-13 10:49:14 +05301302
Bartosz Golaszewski72b51352019-04-23 11:04:48 +02001303config GPIO_MAX77650
1304 tristate "Maxim MAX77650/77651 GPIO support"
1305 depends on MFD_MAX77650
1306 help
1307 GPIO driver for MAX77650/77651 PMIC from Maxim Semiconductor.
1308 These chips have a single pin that can be configured as GPIO.
1309
Linus Walleijbe9cab52015-04-08 14:51:23 +02001310config GPIO_PALMAS
1311 bool "TI PALMAS series PMICs GPIO"
1312 depends on MFD_PALMAS
1313 help
1314 Select this option to enable GPIO driver for the TI PALMAS
1315 series chip family.
1316
Laxman Dewangane9fe32b2012-05-14 12:46:12 +05301317config GPIO_RC5T583
1318 bool "RICOH RC5T583 GPIO"
1319 depends on MFD_RC5T583
1320 help
1321 Select this option to enable GPIO driver for the Ricoh RC5T583
1322 chip family.
Randy Dunlapdd1695a2021-10-23 23:00:58 -07001323 This driver provides the support for driving/reading the GPIO pins
1324 of RC5T583 device through standard GPIO library.
Laxman Dewangane9fe32b2012-05-14 12:46:12 +05301325
Michael Walleb7536d82020-09-14 23:43:35 +02001326config GPIO_SL28CPLD
1327 tristate "Kontron sl28cpld GPIO support"
1328 depends on MFD_SL28CPLD || COMPILE_TEST
1329 select GPIO_REGMAP
1330 select GPIOLIB_IRQCHIP
1331 select REGMAP_IRQ
1332 help
1333 This enables support for the GPIOs found on the Kontron sl28 CPLD.
1334
1335 This driver can also be built as a module. If so, the module will be
1336 called gpio-sl28cpld.
1337
Rabin Vincent03f822f2010-07-02 16:52:09 +05301338config GPIO_STMPE
1339 bool "STMPE GPIOs"
1340 depends on MFD_STMPE
Linus Walleij1dfb4a02015-01-13 08:00:29 +01001341 depends on OF_GPIO
Linus Walleijfe44e702014-04-15 23:38:56 +02001342 select GPIOLIB_IRQCHIP
Rabin Vincent03f822f2010-07-02 16:52:09 +05301343 help
1344 This enables support for the GPIOs found on the STMPE I/O
1345 Expanders.
1346
Sundar Iyerf4e8afd2010-12-13 09:33:13 +05301347config GPIO_TC3589X
1348 bool "TC3589X GPIOs"
1349 depends on MFD_TC3589X
Linus Walleij14227312015-03-19 15:52:45 +01001350 depends on OF_GPIO
Linus Walleijcf42f1c2014-04-09 13:38:33 +02001351 select GPIOLIB_IRQCHIP
Rabin Vincentd88b25b2010-05-10 23:43:47 +02001352 help
Sundar Iyerf4e8afd2010-12-13 09:33:13 +05301353 This enables support for the GPIOs found on the TC3589X
Rabin Vincentd88b25b2010-05-10 23:43:47 +02001354 I/O Expander.
1355
Linus Walleijbe9cab52015-04-08 14:51:23 +02001356config GPIO_TIMBERDALE
1357 bool "Support for timberdale GPIO IP"
1358 depends on MFD_TIMBERDALE
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +09001359 help
Linus Walleijbe9cab52015-04-08 14:51:23 +02001360 Add support for the GPIO IP in the timberdale FPGA.
1361
Andrew F. Davis99f0fd52016-02-06 10:12:10 -06001362config GPIO_TPS65086
1363 tristate "TI TPS65086 GPO"
1364 depends on MFD_TPS65086
1365 help
1366 This driver supports the GPO on TI TPS65086x PMICs.
1367
Nicolas Saenz Juliennec366c762016-01-30 17:06:44 +00001368config GPIO_TPS65218
1369 tristate "TPS65218 GPIO"
1370 depends on MFD_TPS65218
1371 help
1372 Select this option to enable GPIO driver for the TPS65218
1373 chip family.
1374
Linus Walleijbe9cab52015-04-08 14:51:23 +02001375config GPIO_TPS6586X
1376 bool "TPS6586X GPIO"
1377 depends on MFD_TPS6586X
1378 help
1379 Select this option to enable GPIO driver for the TPS6586X
1380 chip family.
1381
1382config GPIO_TPS65910
1383 bool "TPS65910 GPIO"
1384 depends on MFD_TPS65910
1385 help
1386 Select this option to enable GPIO driver for the TPS65910
1387 chip family.
1388
Margarita Olaya668a6cc2011-06-09 14:50:19 -05001389config GPIO_TPS65912
1390 tristate "TI TPS65912 GPIO"
Andrew F. Davisca801a22016-01-25 09:43:47 -06001391 depends on MFD_TPS65912
Margarita Olaya668a6cc2011-06-09 14:50:19 -05001392 help
Randy Dunlapdd1695a2021-10-23 23:00:58 -07001393 This driver supports TPS65912 GPIO chip.
Margarita Olaya668a6cc2011-06-09 14:50:19 -05001394
Rajmohan Mani275b13a2017-07-28 17:30:25 -07001395config GPIO_TPS68470
1396 bool "TPS68470 GPIO"
Daniel Scally24700e12021-06-03 23:40:07 +01001397 depends on INTEL_SKL_INT3472
Rajmohan Mani275b13a2017-07-28 17:30:25 -07001398 help
1399 Select this option to enable GPIO driver for the TPS68470
1400 chip family.
Randy Dunlapdd1695a2021-10-23 23:00:58 -07001401 There are 7 GPIOs and few sensor-related GPIOs supported
Rajmohan Mani275b13a2017-07-28 17:30:25 -07001402 by the TPS68470. While the 7 GPIOs can be configured as
1403 input or output as appropriate, the sensor related GPIOs
1404 are "output only" GPIOs.
1405
1406 This driver config is bool, as the GPIO functionality
1407 of the TPS68470 must be available before dependent
1408 drivers are loaded.
1409
Andrew Lunnb868db92019-01-25 02:09:07 +01001410config GPIO_TQMX86
1411 tristate "TQ-Systems QTMX86 GPIO"
1412 depends on MFD_TQMX86 || COMPILE_TEST
Johannes Bergc6414e12021-06-25 10:37:34 +02001413 depends on HAS_IOPORT_MAP
Andrew Lunnb868db92019-01-25 02:09:07 +01001414 select GPIOLIB_IRQCHIP
1415 help
1416 This driver supports GPIO on the TQMX86 IO controller.
1417
David Brownelle9d359472008-10-20 23:51:46 +02001418config GPIO_TWL4030
1419 tristate "TWL4030, TWL5030, and TPS659x0 GPIOs"
1420 depends on TWL4030_CORE
1421 help
1422 Say yes here to access the GPIO signals of various multi-function
1423 power management chips from Texas Instruments.
1424
Peter Ujfalusi70ffd692012-08-16 15:13:15 +03001425config GPIO_TWL6040
1426 tristate "TWL6040 GPO"
1427 depends on TWL6040_CORE
1428 help
1429 Say yes here to access the GPO signals of twl6040
1430 audio chip from Texas Instruments.
1431
Linus Walleijbe9cab52015-04-08 14:51:23 +02001432config GPIO_UCB1400
1433 tristate "Philips UCB1400 GPIO"
1434 depends on UCB1400_CORE
1435 help
1436 This enables support for the Philips UCB1400 GPIO pins.
1437 The UCB1400 is an AC97 audio codec.
1438
Bin Gao0ba19cf2016-07-25 14:59:38 -07001439config GPIO_WHISKEY_COVE
1440 tristate "GPIO support for Whiskey Cove PMIC"
Andy Shevchenkob5238b42017-04-04 15:38:56 +03001441 depends on (X86 || COMPILE_TEST) && INTEL_SOC_PMIC_BXTWC
Bin Gao0ba19cf2016-07-25 14:59:38 -07001442 select GPIOLIB_IRQCHIP
1443 help
1444 Support for GPIO pins on Whiskey Cove PMIC.
1445
Randy Dunlapdd1695a2021-10-23 23:00:58 -07001446 Say Yes if you have an Intel SoC-based tablet with Whiskey Cove PMIC
Bin Gao0ba19cf2016-07-25 14:59:38 -07001447 inside.
1448
1449 This driver can also be built as a module. If so, the module will be
1450 called gpio-wcove.
1451
Mark Browne4b736f2009-07-27 14:46:00 +01001452config GPIO_WM831X
1453 tristate "WM831x GPIOs"
1454 depends on MFD_WM831X
1455 help
1456 Say yes here to access the GPIO signals of WM831x power management
1457 chips from Wolfson Microelectronics.
1458
Mark Brown38f6ce42010-01-07 16:10:08 +00001459config GPIO_WM8350
1460 tristate "WM8350 GPIOs"
1461 depends on MFD_WM8350
1462 help
1463 Say yes here to access the GPIO signals of WM8350 power management
1464 chips from Wolfson Microelectronics.
1465
Mark Brown2955c302010-01-29 18:20:30 +00001466config GPIO_WM8994
1467 tristate "WM8994 GPIOs"
1468 depends on MFD_WM8994
1469 help
1470 Say yes here to access the GPIO signals of WM8994 audio hub
1471 CODECs from Wolfson Microelectronics.
1472
Linus Walleij177b0382015-04-08 15:11:16 +02001473endmenu
1474
1475menu "PCI GPIO expanders"
1476 depends on PCI
Michael Bueschff1d5c22008-07-25 01:46:10 -07001477
Linus Walleij92c33ef2015-04-08 14:30:37 +02001478config GPIO_AMD8111
1479 tristate "AMD 8111 GPIO driver"
Peter Robinson72aba2e2016-11-20 17:37:25 +00001480 depends on X86 || COMPILE_TEST
Johannes Bergc6414e12021-06-25 10:37:34 +02001481 depends on HAS_IOPORT_MAP
Michael Bueschff1d5c22008-07-25 01:46:10 -07001482 help
Randy Dunlapdd1695a2021-10-23 23:00:58 -07001483 The AMD 8111 southbridge contains 32 GPIO pins which can be used.
Andres Salomon5f0a96b02009-12-14 18:00:32 -08001484
Randy Dunlapdd1695a2021-10-23 23:00:58 -07001485 Note that usually system firmware/ACPI handles GPIO pins on their
1486 own and users might easily break their systems with uncareful usage
Linus Walleij92c33ef2015-04-08 14:30:37 +02001487 of this driver!
Michael Bueschff1d5c22008-07-25 01:46:10 -07001488
Linus Walleij92c33ef2015-04-08 14:30:37 +02001489 If unsure, say N
Andres Salomon5f0a96b02009-12-14 18:00:32 -08001490
Michael Bueschff1d5c22008-07-25 01:46:10 -07001491config GPIO_BT8XX
1492 tristate "BT8XX GPIO abuser"
Andrew F. Davis03744522015-12-06 14:52:45 -06001493 depends on VIDEO_BT848=n
Michael Bueschff1d5c22008-07-25 01:46:10 -07001494 help
Geert Uytterhoeven22520ed2014-03-11 11:23:44 +01001495 The BT8xx frame grabber chip has 24 GPIO pins that can be abused
Michael Bueschff1d5c22008-07-25 01:46:10 -07001496 as a cheap PCI GPIO card.
1497
1498 This chip can be found on Miro, Hauppauge and STB TV-cards.
1499
1500 The card needs to be physically altered for using it as a
1501 GPIO card. For more information on how to build a GPIO card
1502 from a BT8xx TV card, see the documentation file at
Jonathan Neuschäfer5f072242019-10-04 18:40:55 +02001503 Documentation/driver-api/gpio/bt8xxgpio.rst
Michael Bueschff1d5c22008-07-25 01:46:10 -07001504
1505 If unsure, say N.
1506
Andy Shevchenkoccf6fd62016-07-08 14:08:23 +03001507config GPIO_MERRIFIELD
1508 tristate "Intel Merrifield GPIO support"
1509 depends on X86_INTEL_MID
1510 select GPIOLIB_IRQCHIP
1511 help
1512 Say Y here to support Intel Merrifield GPIO.
Alek Du8bf02612009-09-22 16:46:36 -07001513
Shravan Kumar Ramanic78c42d2019-03-26 10:42:48 -04001514config GPIO_MLXBF
1515 tristate "Mellanox BlueField SoC GPIO"
Shravan Kumar Ramanicbe706b2019-03-27 10:15:15 -04001516 depends on (MELLANOX_PLATFORM && ARM64 && ACPI) || (64BIT && COMPILE_TEST)
Shravan Kumar Ramanic78c42d2019-03-26 10:42:48 -04001517 select GPIO_GENERIC
1518 help
1519 Say Y here if you want GPIO support on Mellanox BlueField SoC.
1520
Asmaa Mnebhibc0ae0e2020-03-02 16:04:46 -05001521config GPIO_MLXBF2
1522 tristate "Mellanox BlueField 2 SoC GPIO"
1523 depends on (MELLANOX_PLATFORM && ARM64 && ACPI) || (64BIT && COMPILE_TEST)
1524 select GPIO_GENERIC
1525 help
1526 Say Y here if you want GPIO support on Mellanox BlueField 2 SoC.
1527
Linus Walleij92c33ef2015-04-08 14:30:37 +02001528config GPIO_ML_IOH
1529 tristate "OKI SEMICONDUCTOR ML7213 IOH GPIO support"
Peter Robinson72aba2e2016-11-20 17:37:25 +00001530 depends on X86 || COMPILE_TEST
Linus Walleij92c33ef2015-04-08 14:30:37 +02001531 select GENERIC_IRQ_CHIP
1532 help
1533 ML7213 is companion chip for Intel Atom E6xx series.
Randy Dunlapdd1695a2021-10-23 23:00:58 -07001534 This driver can be used for OKI SEMICONDUCTOR ML7213 IOH (Input/Output
1535 Hub) which is for IVI (In-Vehicle Infotainment) use.
Linus Walleij92c33ef2015-04-08 14:30:37 +02001536 This driver can access the IOH's GPIO device.
1537
Tomoya MORINAGA04c17aa82010-10-27 15:33:21 -07001538config GPIO_PCH
Randy Dunlapdd1695a2021-10-23 23:00:58 -07001539 tristate "Intel EG20T PCH/LAPIS Semiconductor IOH (ML7223/ML7831) GPIO"
Andrew F. Davis03744522015-12-06 14:52:45 -06001540 depends on X86_32 || MIPS || COMPILE_TEST
Tomoya MORINAGA38eb18a2011-07-21 09:19:59 +09001541 select GENERIC_IRQ_CHIP
Tomoya MORINAGA04c17aa82010-10-27 15:33:21 -07001542 help
Randy Dunlapdd1695a2021-10-23 23:00:58 -07001543 This driver is for PCH (Platform Controller Hub) GPIO of Intel Topcliff,
1544 which is an IOH (Input/Output Hub) for x86 embedded processor.
Tomoya MORINAGA04c17aa82010-10-27 15:33:21 -07001545 This driver can access PCH GPIO device.
1546
Randy Dunlapdd1695a2021-10-23 23:00:58 -07001547 This driver also can be used for LAPIS Semiconductor IOH (Input/
Tomoya MORINAGA868fea02011-10-28 09:23:32 +09001548 Output Hub), ML7223 and ML7831.
Randy Dunlapdd1695a2021-10-23 23:00:58 -07001549 ML7223 IOH is for MP (Media Phone) use.
Tomoya MORINAGA868fea02011-10-28 09:23:32 +09001550 ML7831 IOH is for general purpose use.
1551 ML7223/ML7831 is companion chip for Intel Atom E6xx series.
1552 ML7223/ML7831 is completely compatible for Intel EG20T PCH.
Tomoya MORINAGAbc786cc2011-05-09 19:58:49 +09001553
William Breathitt Gray02e74fc2017-02-01 15:37:55 -05001554config GPIO_PCI_IDIO_16
1555 tristate "ACCES PCI-IDIO-16 GPIO support"
1556 select GPIOLIB_IRQCHIP
1557 help
1558 Enables GPIO support for the ACCES PCI-IDIO-16. An interrupt is
1559 generated when any of the inputs change state (low to high or high to
1560 low). Input filter control is not supported by this driver, and the
1561 input filters are deactivated by this driver.
1562
William Breathitt Gray58556202018-01-09 17:21:45 -05001563config GPIO_PCIE_IDIO_24
1564 tristate "ACCES PCIe-IDIO-24 GPIO support"
1565 select GPIOLIB_IRQCHIP
1566 help
1567 Enables GPIO support for the ACCES PCIe-IDIO-24 family (PCIe-IDIO-24,
1568 PCIe-IDI-24, PCIe-IDO-24, PCIe-IDIO-12). An interrupt is generated
1569 when any of the inputs change state (low to high or high to low).
1570 Input filter control is not supported by this driver, and the input
1571 filters are deactivated by this driver.
1572
Florian Fainelli9956d022010-03-21 01:06:09 +01001573config GPIO_RDC321X
1574 tristate "RDC R-321x GPIO support"
Randy Dunlape4be3cb2010-05-11 13:24:20 -07001575 select MFD_CORE
Florian Fainelli9956d022010-03-21 01:06:09 +01001576 select MFD_RDC321X
1577 help
1578 Support for the RDC R321x SoC GPIOs over southbridge
1579 PCI configuration space.
1580
Richard Röjfors35570ac2009-12-15 16:46:18 -08001581config GPIO_SODAVILLE
David Brownella9c5fff2008-02-04 22:28:17 -08001582 bool "Intel Sodaville GPIO support"
Andrew F. Davis03744522015-12-06 14:52:45 -06001583 depends on X86 && OF
Juergen Beisert0c36ec32008-07-21 14:21:34 -07001584 select GPIO_GENERIC
1585 select GENERIC_IRQ_CHIP
Wolfram Sange9528052010-03-05 13:44:33 -08001586 help
Juergen Beisert0c36ec32008-07-21 14:21:34 -07001587 Say Y here to support Intel Sodaville GPIO.
Wolfram Sange9528052010-03-05 13:44:33 -08001588
Linus Walleij177b0382015-04-08 15:11:16 +02001589endmenu
David Brownelle58b9e22008-02-04 22:28:25 -08001590
Linus Walleij177b0382015-04-08 15:11:16 +02001591menu "SPI GPIO expanders"
1592 depends on SPI_MASTER
David Brownelle58b9e22008-02-04 22:28:25 -08001593
Linus Walleija7ec2e72015-04-08 14:34:51 +02001594config GPIO_74X164
1595 tristate "74x164 serial-in/parallel-out 8-bits shift register"
Linus Walleij048c28c2016-08-16 12:07:31 +02001596 depends on OF_GPIO
Linus Walleija7ec2e72015-04-08 14:34:51 +02001597 help
1598 Driver for 74x164 compatible serial-in/parallel-out 8-outputs
1599 shift registers. This driver can be used to provide access
Randy Dunlapdd1695a2021-10-23 23:00:58 -07001600 to more GPIO outputs.
David Brownelle58b9e22008-02-04 22:28:25 -08001601
Lukas Wunnerb2f68ed2017-10-12 12:40:10 +02001602config GPIO_MAX3191X
1603 tristate "Maxim MAX3191x industrial serializer"
1604 select CRC8
1605 help
1606 GPIO driver for Maxim MAX31910, MAX31911, MAX31912, MAX31913,
1607 MAX31953 and MAX31963 industrial serializer, a daisy-chainable
1608 chip to make 8 digital 24V inputs available via SPI. Supports
1609 CRC checksums to guard against electromagnetic interference,
1610 as well as undervoltage and overtemperature detection.
1611
David Brownelle58b9e22008-02-04 22:28:25 -08001612config GPIO_MAX7301
1613 tristate "Maxim MAX7301 GPIO expander"
Richard Röjfors1e5db002009-09-22 16:46:34 -07001614 select GPIO_MAX730X
1615 help
1616 GPIO driver for Maxim MAX7301 SPI-based GPIO expander.
1617
Linus Walleij09636702015-11-01 10:50:19 +01001618config GPIO_MC33880
1619 tristate "Freescale MC33880 high-side/low-side switch"
1620 help
1621 SPI driver for Freescale MC33880 high-side/low-side switch.
1622 This provides GPIO interface supporting inputs and outputs.
1623
Andrew F. Davisdf6df932016-01-25 10:37:31 -06001624config GPIO_PISOSR
1625 tristate "Generic parallel-in/serial-out shift register"
1626 help
1627 GPIO driver for SPI compatible parallel-in/serial-out shift
1628 registers. These are input only devices.
1629
Nandor Han57045202017-05-15 08:58:25 +03001630config GPIO_XRA1403
1631 tristate "EXAR XRA1403 16-bit GPIO expander"
Arnd Bergmann665dff92017-05-30 13:13:17 +02001632 select REGMAP_SPI
Nandor Han57045202017-05-15 08:58:25 +03001633 help
1634 GPIO driver for EXAR XRA1403 16-bit SPI-based GPIO expander.
1635
Marek Behún856ed972019-08-12 18:11:17 +02001636config GPIO_MOXTET
1637 tristate "Turris Mox Moxtet bus GPIO expander"
1638 depends on MOXTET
1639 help
1640 Say yes here if you are building for the Turris Mox router.
1641 This is the driver needed for configuring the GPIOs via the Moxtet
1642 bus. For example the Mox module with SFP cage needs this driver
1643 so that phylink can use corresponding GPIOs.
1644
Linus Walleij09636702015-11-01 10:50:19 +01001645endmenu
1646
Linus Walleij177b0382015-04-08 15:11:16 +02001647menu "USB GPIO expanders"
1648 depends on USB
Lars Poeschel9d5b72d2012-11-05 15:48:24 +01001649
1650config GPIO_VIPERBOARD
1651 tristate "Viperboard GPIO a & b support"
Andrew F. Davis03744522015-12-06 14:52:45 -06001652 depends on MFD_VIPERBOARD
Lars Poeschel9d5b72d2012-11-05 15:48:24 +01001653 help
1654 Say yes here to access the GPIO signals of Nano River
1655 Technologies Viperboard. There are two GPIO chips on the
1656 board: gpioa and gpiob.
Enrico Weigelt, metux IT consultc42e34c2019-03-05 01:35:31 +01001657 See viperboard API specification and Nano
1658 River Tech's viperboard.h for detailed meaning
1659 of the module parameters.
Lars Poeschel9d5b72d2012-11-05 15:48:24 +01001660
Linus Walleij177b0382015-04-08 15:11:16 +02001661endmenu
Daniel Baluta67321272014-11-06 15:48:05 +02001662
Enrico Weigelt, metux IT consultb5252192020-12-07 21:38:16 +01001663menu "Virtual GPIO drivers"
1664
Geert Uytterhoeven828546e2020-05-11 16:52:55 +02001665config GPIO_AGGREGATOR
1666 tristate "GPIO Aggregator"
1667 help
1668 Say yes here to enable the GPIO Aggregator, which provides a way to
1669 aggregate existing GPIO lines into a new virtual GPIO chip.
1670 This can serve the following purposes:
1671 - Assign permissions for a collection of GPIO lines to a user,
1672 - Export a collection of GPIO lines to a virtual machine,
1673 - Provide a generic driver for a GPIO-operated device in an
1674 industrial control context, to be operated from userspace using
1675 the GPIO chardev interface.
1676
Bartosz Golaszewski6e4484e2019-03-13 11:37:17 +01001677config GPIO_MOCKUP
1678 tristate "GPIO Testing Driver"
Bartosz Golaszewski6e4484e2019-03-13 11:37:17 +01001679 select IRQ_SIM
1680 help
1681 This enables GPIO Testing driver, which provides a way to test GPIO
Bartosz Golaszewski4bf24262021-01-21 13:13:55 +01001682 subsystem through sysfs (or char device) and debugfs.
Bartosz Golaszewski6e4484e2019-03-13 11:37:17 +01001683 User could use it through the script in
1684 tools/testing/selftests/gpio/gpio-mockup.sh. Reference the usage in
1685 it.
1686
Viresh Kumar3a293552021-08-19 10:00:22 +05301687config GPIO_VIRTIO
1688 tristate "VirtIO GPIO support"
1689 depends on VIRTIO
Viresh Kumareff5cdd2021-10-21 16:34:19 +05301690 select GPIOLIB_IRQCHIP
Viresh Kumar3a293552021-08-19 10:00:22 +05301691 help
1692 Say Y here to enable guest support for virtio-based GPIO controllers.
1693
1694 These virtual GPIOs can be routed to real GPIOs or attached to
1695 simulators on the host (like QEMU).
1696
Enrico Weigelt, metux IT consultb5252192020-12-07 21:38:16 +01001697endmenu
1698
Michael Buesch7444a722008-07-25 01:46:11 -07001699endif