xref: /linux/drivers/gpio/Kconfig (revision 36fb7218e87833b17e3042e77f3b102c75129e8f)
1ec8f24b7SThomas Gleixner# SPDX-License-Identifier: GPL-2.0-only
2a9c5fff5SDavid Brownell#
3e849dc04SLinus Walleij# GPIO infrastructure and drivers
4a9c5fff5SDavid Brownell#
5a9c5fff5SDavid Brownell
67563bbf8SMark Brownconfig ARCH_HAVE_CUSTOM_GPIO_H
77563bbf8SMark Brown	bool
87563bbf8SMark Brown	help
97563bbf8SMark Brown	  Selecting this config option from the architecture Kconfig allows
107563bbf8SMark Brown	  the architecture to provide a custom asm/gpio.h implementation
117563bbf8SMark Brown	  overriding the default implementations.  New uses of this are
127563bbf8SMark Brown	  strongly discouraged.
137563bbf8SMark Brown
147444a72eSMichael Bueschmenuconfig GPIOLIB
157444a72eSMichael Buesch	bool "GPIO Support"
167444a72eSMichael Buesch	help
177444a72eSMichael Buesch	  This enables GPIO support through the generic GPIO library.
187444a72eSMichael Buesch	  You only need to enable this, if you also want to enable
19e849dc04SLinus Walleij	  one or more of the GPIO drivers below.
207444a72eSMichael Buesch
217444a72eSMichael Buesch	  If unsure, say N.
227444a72eSMichael Buesch
237444a72eSMichael Bueschif GPIOLIB
24a9c5fff5SDavid Brownell
253027743fSLaura Abbottconfig GPIOLIB_FASTPATH_LIMIT
263027743fSLaura Abbott	int "Maximum number of GPIOs for fast path"
273027743fSLaura Abbott	range 32 512
283027743fSLaura Abbott	default 512
293027743fSLaura Abbott	help
303027743fSLaura Abbott	  This adjusts the point at which certain APIs will switch from
313027743fSLaura Abbott	  using a stack allocated buffer to a dynamically allocated buffer.
323027743fSLaura Abbott
333027743fSLaura Abbott	  You shouldn't need to change this unless you really need to
343027743fSLaura Abbott	  optimize either stack space or performance. Change this carefully
353027743fSLaura Abbott	  since setting an incorrect value could cause stack corruption.
363027743fSLaura Abbott
37f141ed65SGrant Likelyconfig OF_GPIO
38f141ed65SGrant Likely	def_bool y
3992c74bceSLinus Walleij	depends on OF
402527ecc9SLinus Walleij	depends on HAS_IOMEM
41f141ed65SGrant Likely
42e29482e8SMathias Nymanconfig GPIO_ACPI
43e29482e8SMathias Nyman	def_bool y
44e29482e8SMathias Nyman	depends on ACPI
45e29482e8SMathias Nyman
4614250520SLinus Walleijconfig GPIOLIB_IRQCHIP
47fc346270SLinus Walleij	select IRQ_DOMAIN
4814250520SLinus Walleij	bool
4914250520SLinus Walleij
50a9c5fff5SDavid Brownellconfig DEBUG_GPIO
51a9c5fff5SDavid Brownell	bool "Debug GPIO calls"
52a9c5fff5SDavid Brownell	depends on DEBUG_KERNEL
53a9c5fff5SDavid Brownell	help
54a9c5fff5SDavid Brownell	  Say Y here to add some extra checks and diagnostics to GPIO calls.
55692105b8SMatt LaPlante	  These checks help ensure that GPIOs have been properly initialized
56692105b8SMatt LaPlante	  before they are used, and that sleeping calls are not made from
57692105b8SMatt LaPlante	  non-sleeping contexts.  They can make bitbanged serial protocols
58a9c5fff5SDavid Brownell	  slower.  The diagnostics help catch the type of setup errors
59a9c5fff5SDavid Brownell	  that are most common when setting up new platforms or boards.
60a9c5fff5SDavid Brownell
61d8f388d8SDavid Brownellconfig GPIO_SYSFS
62d8f388d8SDavid Brownell	bool "/sys/class/gpio/... (sysfs interface)"
634c0ea233SKees Cook	depends on SYSFS
64d8f388d8SDavid Brownell	help
65db9477f8SLinus Walleij	  Say Y here to add the legacy sysfs interface for GPIOs.
66d8f388d8SDavid Brownell
67db9477f8SLinus Walleij	  This ABI is deprecated. If you want to use GPIO from userspace,
68db9477f8SLinus Walleij	  use the character device /dev/gpiochipN with the appropriate
69d143493cSKent Gibson	  ioctl() operations instead.
70d143493cSKent Gibson
71d143493cSKent Gibsonconfig GPIO_CDEV
72d143493cSKent Gibson	bool
73d143493cSKent Gibson	prompt "Character device (/dev/gpiochipN) support" if EXPERT
74d143493cSKent Gibson	default y
75d143493cSKent Gibson	help
76d143493cSKent Gibson	  Say Y here to add the character device /dev/gpiochipN interface
77d143493cSKent Gibson	  for GPIOs. The character device allows userspace to control GPIOs
78d143493cSKent Gibson	  using ioctl() operations.
79d143493cSKent Gibson
80d143493cSKent Gibson	  Only say N if you are sure that the GPIO character device is not
81d143493cSKent Gibson	  required.
82d143493cSKent Gibson
83d143493cSKent Gibson	  If unsure, say Y.
84d8f388d8SDavid Brownell
85957ebb61SKent Gibsonconfig GPIO_CDEV_V1
86957ebb61SKent Gibson	bool "Support GPIO ABI Version 1"
87957ebb61SKent Gibson	default y
88957ebb61SKent Gibson	depends on GPIO_CDEV
89957ebb61SKent Gibson	help
90957ebb61SKent Gibson	  Say Y here to support version 1 of the GPIO CDEV ABI.
91957ebb61SKent Gibson
92957ebb61SKent Gibson	  This ABI version is deprecated.
93957ebb61SKent Gibson	  Please use the latest ABI for new developments.
94957ebb61SKent Gibson
95957ebb61SKent Gibson	  If unsure, say Y.
96957ebb61SKent Gibson
97c103de24SGrant Likelyconfig GPIO_GENERIC
983085a4a4SLinus Walleij	depends on HAS_IOMEM # Only for IOMEM drivers
99c103de24SGrant Likely	tristate
100c103de24SGrant Likely
101ebe36319SMichael Walleconfig GPIO_REGMAP
102ebe36319SMichael Walle	depends on REGMAP
103ebe36319SMichael Walle	tristate
104ebe36319SMichael Walle
105e849dc04SLinus Walleij# put drivers in the right section, in alphabetical order
106a9c5fff5SDavid Brownell
107177b0381SLinus Walleij# This symbol is selected by both I2C and SPI expanders
108e952805dSWolfram Sangconfig GPIO_MAX730X
109e952805dSWolfram Sang	tristate
110e952805dSWolfram Sang
111177b0381SLinus Walleijmenu "Memory mapped GPIO drivers"
1123085a4a4SLinus Walleij	depends on HAS_IOMEM
1130bcb6069SJohn Linn
114af0a33e2SAlexander Shiyanconfig GPIO_74XX_MMIO
115af0a33e2SAlexander Shiyan	tristate "GPIO driver for 74xx-ICs with MMIO access"
116af0a33e2SAlexander Shiyan	depends on OF_GPIO
117af0a33e2SAlexander Shiyan	select GPIO_GENERIC
118af0a33e2SAlexander Shiyan	help
119af0a33e2SAlexander Shiyan	  Say yes here to support GPIO functionality for 74xx-compatible ICs
120af0a33e2SAlexander Shiyan	  with MMIO access. Compatible models include:
121af0a33e2SAlexander Shiyan	    1 bit:	741G125 (Input), 741G74 (Output)
122af0a33e2SAlexander Shiyan	    2 bits:	742G125 (Input), 7474 (Output)
123af0a33e2SAlexander Shiyan	    4 bits:	74125 (Input), 74175 (Output)
124af0a33e2SAlexander Shiyan	    6 bits:	74365 (Input), 74174 (Output)
125af0a33e2SAlexander Shiyan	    8 bits:	74244 (Input), 74273 (Output)
126af0a33e2SAlexander Shiyan	    16 bits:	741624 (Input), 7416374 (Output)
127af0a33e2SAlexander Shiyan
128223fa272SLinus Walleijconfig GPIO_ALTERA
129223fa272SLinus Walleij	tristate "Altera GPIO"
130223fa272SLinus Walleij	depends on OF_GPIO
131223fa272SLinus Walleij	select GPIOLIB_IRQCHIP
132223fa272SLinus Walleij	help
133223fa272SLinus Walleij	  Say Y or M here to build support for the Altera PIO device.
134223fa272SLinus Walleij
135223fa272SLinus Walleij	  If driver is built as a module it will be called gpio-altera.
136223fa272SLinus Walleij
1376057d40fSYD Tsengconfig GPIO_AMDPT
1386057d40fSYD Tseng	tristate "AMD Promontory GPIO support"
1396057d40fSYD Tseng	depends on ACPI
140574b782eSAxel Lin	select GPIO_GENERIC
1416057d40fSYD Tseng	help
1426057d40fSYD Tseng	  driver for GPIO functionality on Promontory IOHub
1436057d40fSYD Tseng	  Require ACPI ASL code to enumerate as a platform device.
1446057d40fSYD Tseng
145361b7911SJoel Stanleyconfig GPIO_ASPEED
146361b7911SJoel Stanley	tristate "Aspeed GPIO support"
147361b7911SJoel Stanley	depends on (ARCH_ASPEED || COMPILE_TEST) && OF_GPIO
148361b7911SJoel Stanley	select GPIOLIB_IRQCHIP
149361b7911SJoel Stanley	help
150361b7911SJoel Stanley	  Say Y here to support Aspeed AST2400 and AST2500 GPIO controllers.
151361b7911SJoel Stanley
152f8b410e3SLinus Walleijconfig GPIO_ASPEED_SGPIO
153f8b410e3SLinus Walleij	bool "Aspeed SGPIO support"
154f8b410e3SLinus Walleij	depends on (ARCH_ASPEED || COMPILE_TEST) && OF_GPIO
155f8b410e3SLinus Walleij	select GPIO_GENERIC
156f8b410e3SLinus Walleij	select GPIOLIB_IRQCHIP
157f8b410e3SLinus Walleij	help
158f8b410e3SLinus Walleij	  Say Y here to support Aspeed AST2500 SGPIO functionality.
159f8b410e3SLinus Walleij
160ab32770eSAlban Bedelconfig GPIO_ATH79
161ab32770eSAlban Bedel	tristate "Atheros AR71XX/AR724X/AR913X GPIO support"
162ab32770eSAlban Bedel	default y if ATH79
163409d8783SAlban Bedel	depends on ATH79 || COMPILE_TEST
164ab32770eSAlban Bedel	select GPIO_GENERIC
1652b8f89e1SAlban Bedel	select GPIOLIB_IRQCHIP
166ab32770eSAlban Bedel	help
167ab32770eSAlban Bedel	  Select this option to enable GPIO driver for
168ab32770eSAlban Bedel	  Atheros AR71XX/AR724X/AR913X SoC devices.
169ab32770eSAlban Bedel
170a98d90e7SDave Stevensonconfig GPIO_RASPBERRYPI_EXP
171a98d90e7SDave Stevenson	tristate "Raspberry Pi 3 GPIO Expander"
172a98d90e7SDave Stevenson	default RASPBERRYPI_FIRMWARE
173a98d90e7SDave Stevenson	depends on OF_GPIO
17494337b72SBaruch Siach	# Make sure not 'y' when RASPBERRYPI_FIRMWARE is 'm'. This can only
17594337b72SBaruch Siach	# happen when COMPILE_TEST=y, hence the added !RASPBERRYPI_FIRMWARE.
1767ed91505SArnd Bergmann	depends on (ARCH_BCM2835 && RASPBERRYPI_FIRMWARE) || (COMPILE_TEST && !RASPBERRYPI_FIRMWARE)
177a98d90e7SDave Stevenson	help
178a98d90e7SDave Stevenson	  Turn on GPIO support for the expander on Raspberry Pi 3 boards, using
179a98d90e7SDave Stevenson	  the firmware mailbox to communicate with VideoCore on BCM283x chips.
180a98d90e7SDave Stevenson
181ea948cffSLinus Walleijconfig GPIO_BCM_KONA
182ea948cffSLinus Walleij	bool "Broadcom Kona GPIO"
183ea948cffSLinus Walleij	depends on OF_GPIO && (ARCH_BCM_MOBILE || COMPILE_TEST)
184ea948cffSLinus Walleij	help
185ea948cffSLinus Walleij	  Turn on GPIO support for Broadcom "Kona" chips.
186ea948cffSLinus Walleij
1876a41b6c5SChris Packhamconfig GPIO_BCM_XGS_IPROC
1886a41b6c5SChris Packham	tristate "BRCM XGS iProc GPIO support"
1896a41b6c5SChris Packham	depends on OF_GPIO && (ARCH_BCM_IPROC || COMPILE_TEST)
1906a41b6c5SChris Packham	select GPIO_GENERIC
1916a41b6c5SChris Packham	select GPIOLIB_IRQCHIP
1926a41b6c5SChris Packham	default ARCH_BCM_IPROC
1936a41b6c5SChris Packham	help
1946a41b6c5SChris Packham	  Say yes here to enable GPIO support for Broadcom XGS iProc SoCs.
1956a41b6c5SChris Packham
1963b0213d5SGregory Fongconfig GPIO_BRCMSTB
1973b0213d5SGregory Fong	tristate "BRCMSTB GPIO support"
198a02588a0SFlorian Fainelli	default y if (ARCH_BRCMSTB || BMIPS_GENERIC)
199a02588a0SFlorian Fainelli	depends on OF_GPIO && (ARCH_BRCMSTB || BMIPS_GENERIC || COMPILE_TEST)
2003b0213d5SGregory Fong	select GPIO_GENERIC
2010ba31dc2SDoug Berger	select IRQ_DOMAIN
2023b0213d5SGregory Fong	help
2033b0213d5SGregory Fong	  Say yes here to enable GPIO support for Broadcom STB (BCM7XXX) SoCs.
2043b0213d5SGregory Fong
20572ab2f76SJan Kotasconfig GPIO_CADENCE
20672ab2f76SJan Kotas	tristate "Cadence GPIO support"
20772ab2f76SJan Kotas	depends on OF_GPIO
20872ab2f76SJan Kotas	select GPIO_GENERIC
20972ab2f76SJan Kotas	select GPIOLIB_IRQCHIP
21072ab2f76SJan Kotas	help
21172ab2f76SJan Kotas	  Say yes here to enable support for Cadence GPIO controller.
21272ab2f76SJan Kotas
213a3b8d4a5SAlexander Shiyanconfig GPIO_CLPS711X
21455fe14abSAlexander Shiyan	tristate "CLPS711X GPIO support"
215ffd4bf1aSAlexander Shiyan	depends on ARCH_CLPS711X || COMPILE_TEST
21655fe14abSAlexander Shiyan	select GPIO_GENERIC
21755fe14abSAlexander Shiyan	help
21855fe14abSAlexander Shiyan	  Say yes here to support GPIO on CLPS711X SoCs.
219a3b8d4a5SAlexander Shiyan
220ee89cf63SGrygorii Strashkoconfig GPIO_DAVINCI
221ee89cf63SGrygorii Strashko	bool "TI Davinci/Keystone GPIO support"
222ee89cf63SGrygorii Strashko	default y if ARCH_DAVINCI
2236eeea326SKeerthy	depends on (ARM || ARM64) && (ARCH_DAVINCI || ARCH_KEYSTONE || ARCH_K3)
224ee89cf63SGrygorii Strashko	help
225ee89cf63SGrygorii Strashko	  Say yes here to enable GPIO support for TI Davinci/Keystone SoCs.
226ee89cf63SGrygorii Strashko
2277779b345SJamie Ilesconfig GPIO_DWAPB
2287779b345SJamie Iles	tristate "Synopsys DesignWare APB GPIO driver"
2297779b345SJamie Iles	select GPIO_GENERIC
2300ea68393SSerge Semin	select GPIOLIB_IRQCHIP
2317779b345SJamie Iles	help
2327779b345SJamie Iles	  Say Y or M here to build support for the Synopsys DesignWare APB
2337779b345SJamie Iles	  GPIO block.
2347779b345SJamie Iles
23525518e02SBaolin Wangconfig GPIO_EIC_SPRD
23625518e02SBaolin Wang	tristate "Spreadtrum EIC support"
23725518e02SBaolin Wang	depends on ARCH_SPRD || COMPILE_TEST
23825518e02SBaolin Wang	depends on OF_GPIO
23925518e02SBaolin Wang	select GPIOLIB_IRQCHIP
24025518e02SBaolin Wang	help
24125518e02SBaolin Wang	  Say yes here to support Spreadtrum EIC device.
24225518e02SBaolin Wang
243a07e103eSMagnus Dammconfig GPIO_EM
244a07e103eSMagnus Damm	tristate "Emma Mobile GPIO"
24522eaf13cSPeter Robinson	depends on (ARCH_EMEV2 || COMPILE_TEST) && OF_GPIO
246a07e103eSMagnus Damm	help
247a07e103eSMagnus Damm	  Say yes here to support GPIO on Renesas Emma Mobile SoCs.
248a07e103eSMagnus Damm
249c6b52c13SH Hartley Sweetenconfig GPIO_EP93XX
250c6b52c13SH Hartley Sweeten	def_bool y
251c6b52c13SH Hartley Sweeten	depends on ARCH_EP93XX
2521e4c8842SH Hartley Sweeten	select GPIO_GENERIC
253a419a3d9SLinus Walleij	select GPIOLIB_IRQCHIP
254c6b52c13SH Hartley Sweeten
2556596e59eSSudip Mukherjeeconfig GPIO_EXAR
2566596e59eSSudip Mukherjee	tristate "Support for GPIO pins on XR17V352/354/358"
2576596e59eSSudip Mukherjee	depends on SERIAL_8250_EXAR
258*36fb7218SBartosz Golaszewski	select REGMAP_MMIO
2596596e59eSSudip Mukherjee	help
2606596e59eSSudip Mukherjee	  Selecting this option will enable handling of GPIO pins present
2616596e59eSSudip Mukherjee	  on Exar XR17V352/354/358 chips.
2626596e59eSSudip Mukherjee
263223fa272SLinus Walleijconfig GPIO_GE_FPGA
264223fa272SLinus Walleij	bool "GE FPGA based GPIO"
265223fa272SLinus Walleij	depends on GE_FPGA
266223fa272SLinus Walleij	select GPIO_GENERIC
267223fa272SLinus Walleij	help
268223fa272SLinus Walleij	  Support for common GPIO functionality provided on some GE Single Board
269223fa272SLinus Walleij	  Computers.
270223fa272SLinus Walleij
271223fa272SLinus Walleij	  This driver provides basic support (configure as input or output, read
272223fa272SLinus Walleij	  and write pin state) for GPIO implemented in a number of GE single
273223fa272SLinus Walleij	  board computers.
274223fa272SLinus Walleij
2759d3a15aaSLinus Walleijconfig GPIO_FTGPIO010
2769d3a15aaSLinus Walleij	bool "Faraday FTGPIO010 GPIO"
27749cec4d8SLinus Walleij	depends on OF_GPIO
27849cec4d8SLinus Walleij	select GPIO_GENERIC
27949cec4d8SLinus Walleij	select GPIOLIB_IRQCHIP
280d8307c09SLinus Walleij	default (ARCH_GEMINI || ARCH_MOXART)
28149cec4d8SLinus Walleij	help
2829d3a15aaSLinus Walleij	  Support for common GPIOs from the Faraday FTGPIO010 IP core, found in
2839d3a15aaSLinus Walleij	  Cortina systems Gemini platforms, Moxa ART and others.
28449cec4d8SLinus Walleij
285223fa272SLinus Walleijconfig GPIO_GENERIC_PLATFORM
286223fa272SLinus Walleij	tristate "Generic memory-mapped GPIO controller support (MMIO platform device)"
287223fa272SLinus Walleij	select GPIO_GENERIC
288223fa272SLinus Walleij	help
289223fa272SLinus Walleij	  Say yes here to support basic platform_device memory-mapped GPIO controllers.
290223fa272SLinus Walleij
291223fa272SLinus Walleijconfig GPIO_GRGPIO
292223fa272SLinus Walleij	tristate "Aeroflex Gaisler GRGPIO support"
293048c28c9SLinus Walleij	depends on OF_GPIO
294223fa272SLinus Walleij	select GPIO_GENERIC
295223fa272SLinus Walleij	select IRQ_DOMAIN
296223fa272SLinus Walleij	help
297223fa272SLinus Walleij	  Select this to support Aeroflex Gaisler GRGPIO cores from the GRLIB
298223fa272SLinus Walleij	  VHDL IP core library.
299223fa272SLinus Walleij
3008f55fed3SJonathan Neuschäferconfig GPIO_HLWD
3018f55fed3SJonathan Neuschäfer	tristate "Nintendo Wii (Hollywood) GPIO"
3028f55fed3SJonathan Neuschäfer	depends on OF_GPIO
3038f55fed3SJonathan Neuschäfer	select GPIO_GENERIC
304588de43cSJonathan Neuschäfer	select GPIOLIB_IRQCHIP
3058f55fed3SJonathan Neuschäfer	help
3068f55fed3SJonathan Neuschäfer	  Select this to support the GPIO controller of the Nintendo Wii.
3078f55fed3SJonathan Neuschäfer
3088f55fed3SJonathan Neuschäfer	  If unsure, say N.
3098f55fed3SJonathan Neuschäfer
310223fa272SLinus Walleijconfig GPIO_ICH
311223fa272SLinus Walleij	tristate "Intel ICH GPIO"
312223fa272SLinus Walleij	depends on PCI && X86
313223fa272SLinus Walleij	select MFD_CORE
314223fa272SLinus Walleij	select LPC_ICH
315223fa272SLinus Walleij	help
316223fa272SLinus Walleij	  Say yes here to support the GPIO functionality of a number of Intel
317223fa272SLinus Walleij	  ICH-based chipsets.  Currently supported devices: ICH6, ICH7, ICH8
318223fa272SLinus Walleij	  ICH9, ICH10, Series 5/3400 (eg Ibex Peak), Series 6/C200 (eg
319223fa272SLinus Walleij	  Cougar Point), NM10 (Tiger Point), and 3100 (Whitmore Lake).
320223fa272SLinus Walleij
321223fa272SLinus Walleij	  If unsure, say N.
322223fa272SLinus Walleij
323223fa272SLinus Walleijconfig GPIO_IOP
324223fa272SLinus Walleij	tristate "Intel IOP GPIO"
32559d3ae9aSArnd Bergmann	depends on ARCH_IOP32X || COMPILE_TEST
3266d125412SAlexander Shiyan	select GPIO_GENERIC
327223fa272SLinus Walleij	help
328223fa272SLinus Walleij	  Say yes here to support the GPIO functionality of a number of Intel
329223fa272SLinus Walleij	  IOP32X or IOP33X.
330223fa272SLinus Walleij
331223fa272SLinus Walleij	  If unsure, say N.
332223fa272SLinus Walleij
333813e7d36SLinus Walleijconfig GPIO_IXP4XX
334813e7d36SLinus Walleij	bool "Intel IXP4xx GPIO"
335813e7d36SLinus Walleij	depends on ARM # For <asm/mach-types.h>
336813e7d36SLinus Walleij	depends on ARCH_IXP4XX
337813e7d36SLinus Walleij	select GPIO_GENERIC
338aa7d618aSLinus Walleij	select GPIOLIB_IRQCHIP
339813e7d36SLinus Walleij	select IRQ_DOMAIN_HIERARCHY
340813e7d36SLinus Walleij	help
341813e7d36SLinus Walleij	  Say yes here to support the GPIO functionality of a number of Intel
342813e7d36SLinus Walleij	  IXP4xx series of chips.
343813e7d36SLinus Walleij
344813e7d36SLinus Walleij	  If unsure, say N.
345c16485adSPaul Kocialkowskiconfig GPIO_LOGICVC
346c16485adSPaul Kocialkowski	tristate "Xylon LogiCVC GPIO support"
347c16485adSPaul Kocialkowski	depends on MFD_SYSCON && OF
348c16485adSPaul Kocialkowski	help
349c16485adSPaul Kocialkowski	  Say yes here to support GPIO functionality of the Xylon LogiCVC
350c16485adSPaul Kocialkowski	  programmable logic block.
351813e7d36SLinus Walleij
352223fa272SLinus Walleijconfig GPIO_LOONGSON
353223fa272SLinus Walleij	bool "Loongson-2/3 GPIO support"
354268a2d60SJiaxun Yang	depends on CPU_LOONGSON2EF || CPU_LOONGSON64
355223fa272SLinus Walleij	help
356223fa272SLinus Walleij	  driver for GPIO functionality on Loongson-2F/3A/3B processors.
357223fa272SLinus Walleij
35813a43fd9SJoachim Eastwoodconfig GPIO_LPC18XX
35954b72998SPaul Gortmaker	tristate "NXP LPC18XX/43XX GPIO support"
36013a43fd9SJoachim Eastwood	default y if ARCH_LPC18XX
36113a43fd9SJoachim Eastwood	depends on OF_GPIO && (ARCH_LPC18XX || COMPILE_TEST)
3625ddabfe8SVladimir Zapolskiy	select IRQ_DOMAIN_HIERARCHY
36313a43fd9SJoachim Eastwood	help
36413a43fd9SJoachim Eastwood	  Select this option to enable GPIO driver for
36513a43fd9SJoachim Eastwood	  NXP LPC18XX/43XX devices.
36613a43fd9SJoachim Eastwood
367f2ee7314SArnd Bergmannconfig GPIO_LPC32XX
368f2ee7314SArnd Bergmann	tristate "NXP LPC32XX GPIO support"
369f2ee7314SArnd Bergmann	depends on OF_GPIO && (ARCH_LPC32XX || COMPILE_TEST)
370f2ee7314SArnd Bergmann	help
371f2ee7314SArnd Bergmann	  Select this option to enable GPIO driver for
372f2ee7314SArnd Bergmann	  NXP LPC32XX devices.
373f2ee7314SArnd Bergmann
3740da094d8SJassi Brarconfig GPIO_MB86S7X
375e1289dbaSArd Biesheuvel	tristate "GPIO support for Fujitsu MB86S7x Platforms"
3760da094d8SJassi Brar	help
3770da094d8SJassi Brar	  Say yes here to support the GPIO controller in Fujitsu MB86S70 SoCs.
3789af4d80bSFabian Vogt
379f436bc27SAndreas Wernerconfig GPIO_MENZ127
380f436bc27SAndreas Werner	tristate "MEN 16Z127 GPIO support"
381f436bc27SAndreas Werner	depends on MCB
382f436bc27SAndreas Werner	select GPIO_GENERIC
383f436bc27SAndreas Werner	help
384f436bc27SAndreas Werner	  Say yes here to support the MEN 16Z127 GPIO Controller
385f436bc27SAndreas Werner
3865238f7bcSJohn Crispinconfig GPIO_MM_LANTIQ
3875238f7bcSJohn Crispin	bool "Lantiq Memory mapped GPIOs"
3885238f7bcSJohn Crispin	depends on LANTIQ && SOC_XWAY
3895238f7bcSJohn Crispin	help
3905238f7bcSJohn Crispin	  This enables support for memory mapped GPIOs on the External Bus Unit
3915238f7bcSJohn Crispin	  (EBU) found on Lantiq SoCs. The gpios are output only as they are
3925238f7bcSJohn Crispin	  created by attaching a 16bit latch to the bus.
3935238f7bcSJohn Crispin
3946eae1aceSGrant Likelyconfig GPIO_MPC5200
3956eae1aceSGrant Likely	def_bool y
3966eae1aceSGrant Likely	depends on PPC_MPC52xx
3976eae1aceSGrant Likely
398c68308ddSWolfram Sangconfig GPIO_MPC8XXX
3995df7fd46SLiu Gang	bool "MPC512x/MPC8xxx/QorIQ GPIO support"
400c68308ddSWolfram Sang	depends on PPC_MPC512x || PPC_MPC831x || PPC_MPC834x || PPC_MPC837x || \
4015df7fd46SLiu Gang		   FSL_SOC_BOOKE || PPC_86xx || ARCH_LAYERSCAPE || ARM || \
4025df7fd46SLiu Gang		   COMPILE_TEST
4035df7fd46SLiu Gang	select GPIO_GENERIC
404a8fa91a7SArnd Bergmann	select IRQ_DOMAIN
405c68308ddSWolfram Sang	help
406c68308ddSWolfram Sang	  Say Y here if you're going to use hardware that connects to the
4075df7fd46SLiu Gang	  MPC512x/831x/834x/837x/8572/8610/QorIQ GPIOs.
408c68308ddSWolfram Sang
4094ba9c3afSSergio Paracuellosconfig GPIO_MT7621
4104ba9c3afSSergio Paracuellos	bool "Mediatek MT7621 GPIO Support"
4114ba9c3afSSergio Paracuellos	depends on SOC_MT7620 || SOC_MT7621 || COMPILE_TEST
4127a9a5df0SArnd Bergmann	depends on OF_GPIO
4134ba9c3afSSergio Paracuellos	select GPIO_GENERIC
4144ba9c3afSSergio Paracuellos	select GPIOLIB_IRQCHIP
4154ba9c3afSSergio Paracuellos	help
4164ba9c3afSSergio Paracuellos	  Say yes here to support the Mediatek MT7621 SoC GPIO device
4174ba9c3afSSergio Paracuellos
418fefe7b09SThomas Petazzoniconfig GPIO_MVEBU
419fefe7b09SThomas Petazzoni	def_bool y
4203b4c94bbSGregory CLEMENT	depends on PLAT_ORION || ARCH_MVEBU
421048c28c9SLinus Walleij	depends on OF_GPIO
422fefe7b09SThomas Petazzoni	select GENERIC_IRQ_CHIP
423f37e335fSGregory CLEMENT	select REGMAP_MMIO
424fefe7b09SThomas Petazzoni
425d37a65bbSShawn Guoconfig GPIO_MXC
42612d16b39SAnson Huang	tristate "i.MX GPIO support"
427d4e93614SAnson Huang	depends on ARCH_MXC || COMPILE_TEST
428c103de24SGrant Likely	select GPIO_GENERIC
429e4ea9333SShawn Guo	select GENERIC_IRQ_CHIP
430c103de24SGrant Likely
431c103de24SGrant Likelyconfig GPIO_MXS
432c103de24SGrant Likely	def_bool y
4336876ca31SAnson Huang	depends on ARCH_MXS || COMPILE_TEST
43406f88a8aSShawn Guo	select GPIO_GENERIC
435498c17cfSShawn Guo	select GENERIC_IRQ_CHIP
436d37a65bbSShawn Guo
437aca58a66SDavid Daneyconfig GPIO_OCTEON
438aca58a66SDavid Daney	tristate "Cavium OCTEON GPIO"
439e4c6a52cSGeert Uytterhoeven	depends on CAVIUM_OCTEON_SOC
440aca58a66SDavid Daney	default y
441aca58a66SDavid Daney	help
442aca58a66SDavid Daney	  Say yes here to support the on-chip GPIO lines on the OCTEON
443aca58a66SDavid Daney	  family of SOCs.
444aca58a66SDavid Daney
445cd0a3748SJavier Martinez Canillasconfig GPIO_OMAP
446cac089f9STony Lindgren	tristate "TI OMAP GPIO support" if ARCH_OMAP2PLUS || COMPILE_TEST
447cd0a3748SJavier Martinez Canillas	default y if ARCH_OMAP
4489d5d96efSArnd Bergmann	depends on ARM
4499d5d96efSArnd Bergmann	select GENERIC_IRQ_CHIP
450fb655f57SJavier Martinez Canillas	select GPIOLIB_IRQCHIP
451cd0a3748SJavier Martinez Canillas	help
452cd0a3748SJavier Martinez Canillas	  Say yes here to enable GPIO support for TI OMAP SoCs.
453cd0a3748SJavier Martinez Canillas
4541e9c2859SBaruch Siachconfig GPIO_PL061
45561684440SRob Herring	tristate "PrimeCell PL061 GPIO support"
4568a242842SRob Herring	depends on ARM_AMBA
457a5d6d271SAxel Lin	select IRQ_DOMAIN
4588d5b24bdSLinus Walleij	select GPIOLIB_IRQCHIP
4591e9c2859SBaruch Siach	help
4601e9c2859SBaruch Siach	  Say yes here to support the PrimeCell PL061 GPIO device
4611e9c2859SBaruch Siach
462348f3cdeSBaolin Wangconfig GPIO_PMIC_EIC_SPRD
463348f3cdeSBaolin Wang	tristate "Spreadtrum PMIC EIC support"
464348f3cdeSBaolin Wang	depends on MFD_SC27XX_PMIC || COMPILE_TEST
465348f3cdeSBaolin Wang	depends on OF_GPIO
466348f3cdeSBaolin Wang	select GPIOLIB_IRQCHIP
467348f3cdeSBaolin Wang	help
468348f3cdeSBaolin Wang	  Say yes here to support Spreadtrum PMIC EIC device.
469348f3cdeSBaolin Wang
470157d2644SHaojian Zhuangconfig GPIO_PXA
471157d2644SHaojian Zhuang	bool "PXA GPIO support"
47222e4ebd0STiezhu Yang	depends on ARCH_PXA || ARCH_MMP || COMPILE_TEST
473157d2644SHaojian Zhuang	help
474157d2644SHaojian Zhuang	  Say yes here to support the PXA GPIO device
475157d2644SHaojian Zhuang
476119f5e44SMagnus Dammconfig GPIO_RCAR
477119f5e44SMagnus Damm	tristate "Renesas R-Car GPIO"
4782af66e1dSSimon Horman	depends on ARCH_RENESAS || COMPILE_TEST
479c7f3c5d3SGeert Uytterhoeven	select GPIOLIB_IRQCHIP
480119f5e44SMagnus Damm	help
481119f5e44SMagnus Damm	  Say yes here to support GPIO on Renesas R-Car SoCs.
482119f5e44SMagnus Damm
483d57eb825SManivannan Sadhasivamconfig GPIO_RDA
484d57eb825SManivannan Sadhasivam	bool "RDA Micro GPIO controller support"
485d57eb825SManivannan Sadhasivam	depends on ARCH_RDA || COMPILE_TEST
486d57eb825SManivannan Sadhasivam	depends on OF_GPIO
487d57eb825SManivannan Sadhasivam	select GPIO_GENERIC
488d57eb825SManivannan Sadhasivam	select GPIOLIB_IRQCHIP
489d57eb825SManivannan Sadhasivam	help
490d57eb825SManivannan Sadhasivam	  Say Y here to support RDA Micro GPIO controller.
491d57eb825SManivannan Sadhasivam
492380639c7SRussell Kingconfig GPIO_REG
493380639c7SRussell King	bool
494380639c7SRussell King	help
495380639c7SRussell King	  A 32-bit single register GPIO fixed in/out implementation.  This
496380639c7SRussell King	  can be used to represent any register as a set of GPIO signals.
497380639c7SRussell King
498fb0b35d3SAndrei.Stefanescu@microchip.comconfig GPIO_SAMA5D2_PIOBU
499fb0b35d3SAndrei.Stefanescu@microchip.com	tristate "SAMA5D2 PIOBU GPIO support"
500fb0b35d3SAndrei.Stefanescu@microchip.com	depends on MFD_SYSCON
501a7c23f8dSLinus Walleij	depends on OF_GPIO
502fb0b35d3SAndrei.Stefanescu@microchip.com	select GPIO_SYSCON
503fb0b35d3SAndrei.Stefanescu@microchip.com	help
504fb0b35d3SAndrei.Stefanescu@microchip.com	  Say yes here to use the PIOBU pins as GPIOs.
505fb0b35d3SAndrei.Stefanescu@microchip.com
506fb0b35d3SAndrei.Stefanescu@microchip.com	  PIOBU pins on the SAMA5D2 can be used as GPIOs.
507fb0b35d3SAndrei.Stefanescu@microchip.com	  The difference from regular GPIOs is that they
508fb0b35d3SAndrei.Stefanescu@microchip.com	  maintain their value during backup/self-refresh.
509fb0b35d3SAndrei.Stefanescu@microchip.com
51096868dceSYash Shahconfig GPIO_SIFIVE
51196868dceSYash Shah	bool "SiFive GPIO support"
51296868dceSYash Shah	depends on OF_GPIO && IRQ_DOMAIN_HIERARCHY
51396868dceSYash Shah	select GPIO_GENERIC
51496868dceSYash Shah	select GPIOLIB_IRQCHIP
51596868dceSYash Shah	select REGMAP_MMIO
51696868dceSYash Shah	help
51796868dceSYash Shah	  Say yes here to support the GPIO device on SiFive SoCs.
51896868dceSYash Shah
519be8c8facSUwe Kleine-Königconfig GPIO_SIOX
520be8c8facSUwe Kleine-König	tristate "SIOX GPIO support"
521be8c8facSUwe Kleine-König	depends on SIOX
522be8c8facSUwe Kleine-König	select GPIOLIB_IRQCHIP
523be8c8facSUwe Kleine-König	help
524be8c8facSUwe Kleine-König	  Say yes here to support SIOX I/O devices. These are units connected
525be8c8facSUwe Kleine-König	  via a SIOX bus and have a number of fixed-direction I/O lines.
526be8c8facSUwe Kleine-König
5272505c7b0SEugeniy Paltsevconfig GPIO_SNPS_CREG
5282505c7b0SEugeniy Paltsev	bool "Synopsys GPIO via CREG (Control REGisters) driver"
5292505c7b0SEugeniy Paltsev	depends on ARC || COMPILE_TEST
530a7c0b4b8SRandy Dunlap	depends on OF_GPIO
5312505c7b0SEugeniy Paltsev	help
5322505c7b0SEugeniy Paltsev	  This driver supports GPIOs via CREG on various Synopsys SoCs.
5332505c7b0SEugeniy Paltsev	  This is a single-register MMIO GPIO driver for complex cases
5342505c7b0SEugeniy Paltsev	  where only several fields in register belong to GPIO lines and
5352505c7b0SEugeniy Paltsev	  each GPIO line owns a field with different length and on/off value.
5362505c7b0SEugeniy Paltsev
537b53bc281SShiraz Hashimconfig GPIO_SPEAR_SPICS
538b53bc281SShiraz Hashim	bool "ST SPEAr13xx SPI Chip Select as GPIO support"
539b53bc281SShiraz Hashim	depends on PLAT_SPEAR
540b53bc281SShiraz Hashim	select GENERIC_IRQ_CHIP
541b53bc281SShiraz Hashim	help
542b53bc281SShiraz Hashim	  Say yes here to support ST SPEAr SPI Chip Select as GPIO device
543b53bc281SShiraz Hashim
5449a3821c2SBaolin Wangconfig GPIO_SPRD
5459a3821c2SBaolin Wang	tristate "Spreadtrum GPIO support"
5469a3821c2SBaolin Wang	depends on ARCH_SPRD || COMPILE_TEST
5479a3821c2SBaolin Wang	depends on OF_GPIO
5489a3821c2SBaolin Wang	select GPIOLIB_IRQCHIP
5499a3821c2SBaolin Wang	help
5509a3821c2SBaolin Wang	  Say yes here to support Spreadtrum GPIO device.
5519a3821c2SBaolin Wang
5527b0d44f3SAlessandro Rubiniconfig GPIO_STA2X11
5537b0d44f3SAlessandro Rubini	bool "STA2x11/ConneXt GPIO support"
5547b0d44f3SAlessandro Rubini	depends on MFD_STA2X11
5557b0d44f3SAlessandro Rubini	select GENERIC_IRQ_CHIP
5567b0d44f3SAlessandro Rubini	help
5577b0d44f3SAlessandro Rubini	  Say yes here to support the STA2x11/ConneXt GPIO device.
5587b0d44f3SAlessandro Rubini	  The GPIO module has 128 GPIO pins with alternate functions.
5597b0d44f3SAlessandro Rubini
560be9cab5bSLinus Walleijconfig GPIO_STP_XWAY
561be9cab5bSLinus Walleij	bool "XWAY STP GPIOs"
5625099837dSMartin Blumenstingl	depends on SOC_XWAY || COMPILE_TEST
5635099837dSMartin Blumenstingl	depends on OF_GPIO
564be9cab5bSLinus Walleij	help
565be9cab5bSLinus Walleij	  This enables support for the Serial To Parallel (STP) unit found on
566be9cab5bSLinus Walleij	  XWAY SoC. The STP allows the SoC to drive a shift registers cascade,
567be9cab5bSLinus Walleij	  that can be up to 24 bit. This peripheral is aimed at driving leds.
568be9cab5bSLinus Walleij	  Some of the gpios/leds can be auto updated by the soc with dsl and
569be9cab5bSLinus Walleij	  phy status.
570be9cab5bSLinus Walleij
5716a8a0c1dSAlexander Shiyanconfig GPIO_SYSCON
5726a8a0c1dSAlexander Shiyan	tristate "GPIO based on SYSCON"
5736a8a0c1dSAlexander Shiyan	depends on MFD_SYSCON && OF
5746a8a0c1dSAlexander Shiyan	help
5756a8a0c1dSAlexander Shiyan	  Say yes here to support GPIO functionality though SYSCON driver.
5766a8a0c1dSAlexander Shiyan
577223fa272SLinus Walleijconfig GPIO_TB10X
578223fa272SLinus Walleij	bool
5790d1e31abSLinus Walleij	select GPIO_GENERIC
580223fa272SLinus Walleij	select GENERIC_IRQ_CHIP
581223fa272SLinus Walleij	select OF_GPIO
582223fa272SLinus Walleij
5834dd4dd1dSAlexander Steinconfig GPIO_TEGRA
5840bfb85c6SArnd Bergmann	bool "NVIDIA Tegra GPIO support"
5850bfb85c6SArnd Bergmann	default ARCH_TEGRA
5864dd4dd1dSAlexander Stein	depends on ARCH_TEGRA || COMPILE_TEST
587048c28c9SLinus Walleij	depends on OF_GPIO
5880bfb85c6SArnd Bergmann	help
5890bfb85c6SArnd Bergmann	  Say yes here to support GPIO pins on NVIDIA Tegra SoCs.
5904dd4dd1dSAlexander Stein
5915b2b135aSThierry Redingconfig GPIO_TEGRA186
5925b2b135aSThierry Reding	tristate "NVIDIA Tegra186 GPIO support"
593286e7beaSThierry Reding	default ARCH_TEGRA_186_SOC || ARCH_TEGRA_194_SOC
594286e7beaSThierry Reding	depends on ARCH_TEGRA_186_SOC || ARCH_TEGRA_194_SOC || COMPILE_TEST
5955b2b135aSThierry Reding	depends on OF_GPIO
5965b2b135aSThierry Reding	select GPIOLIB_IRQCHIP
5972a365505SThierry Reding	select IRQ_DOMAIN_HIERARCHY
5985b2b135aSThierry Reding	help
5995b2b135aSThierry Reding	  Say yes here to support GPIO pins on NVIDIA Tegra186 SoCs.
6005b2b135aSThierry Reding
6015041e791SJulien Grossholtzconfig GPIO_TS4800
6025041e791SJulien Grossholtz	tristate "TS-4800 DIO blocks and compatibles"
6035041e791SJulien Grossholtz	depends on OF_GPIO
6046dcfd729SJulien Grossholtz	depends on SOC_IMX51 || COMPILE_TEST
6055041e791SJulien Grossholtz	select GPIO_GENERIC
6065041e791SJulien Grossholtz	help
6075041e791SJulien Grossholtz	  This driver support TS-4800 FPGA GPIO controllers.
6085041e791SJulien Grossholtz
6095a2a3002SDavid Daneyconfig GPIO_THUNDERX
6105a2a3002SDavid Daney	tristate "Cavium ThunderX/OCTEON-TX GPIO"
6115a2a3002SDavid Daney	depends on ARCH_THUNDER || (64BIT && COMPILE_TEST)
612311de3ceSMasahiro Yamada	depends on PCI_MSI
613a7fc89f9SLinus Walleij	select GPIOLIB_IRQCHIP
614311de3ceSMasahiro Yamada	select IRQ_DOMAIN_HIERARCHY
6155a2a3002SDavid Daney	select IRQ_FASTEOI_HIERARCHY_HANDLERS
6165a2a3002SDavid Daney	help
6175a2a3002SDavid Daney	  Say yes here to support the on-chip GPIO lines on the ThunderX
6185a2a3002SDavid Daney	  and OCTEON-TX families of SoCs.
6195a2a3002SDavid Daney
620dbe776c2SMasahiro Yamadaconfig GPIO_UNIPHIER
621dbe776c2SMasahiro Yamada	tristate "UniPhier GPIO support"
622dbe776c2SMasahiro Yamada	depends on ARCH_UNIPHIER || COMPILE_TEST
623dbe776c2SMasahiro Yamada	depends on OF_GPIO
624dbe776c2SMasahiro Yamada	select IRQ_DOMAIN_HIERARCHY
625dbe776c2SMasahiro Yamada	help
626dbe776c2SMasahiro Yamada	  Say yes here to support UniPhier GPIOs.
627dbe776c2SMasahiro Yamada
6287f2691a1SStefan Agnerconfig GPIO_VF610
6297f2691a1SStefan Agner	def_bool y
6307f2691a1SStefan Agner	depends on ARCH_MXC && SOC_VF610
6317f2691a1SStefan Agner	select GPIOLIB_IRQCHIP
6327f2691a1SStefan Agner	help
6337f2691a1SStefan Agner	  Say yes here to support Vybrid vf610 GPIOs.
6347f2691a1SStefan Agner
635223fa272SLinus Walleijconfig GPIO_VR41XX
636223fa272SLinus Walleij	tristate "NEC VR4100 series General-purpose I/O Uint support"
637223fa272SLinus Walleij	depends on CPU_VR41XX
638223fa272SLinus Walleij	help
639223fa272SLinus Walleij	  Say yes here to support the NEC VR4100 series General-purpose I/O Uint
640223fa272SLinus Walleij
641223fa272SLinus Walleijconfig GPIO_VX855
642223fa272SLinus Walleij	tristate "VIA VX855/VX875 GPIO"
64372aba2e2SPeter Robinson	depends on (X86 || COMPILE_TEST) && PCI
644223fa272SLinus Walleij	select MFD_CORE
645223fa272SLinus Walleij	select MFD_VX855
646223fa272SLinus Walleij	help
647223fa272SLinus Walleij	  Support access to the VX855/VX875 GPIO lines through the gpio library.
648223fa272SLinus Walleij
649223fa272SLinus Walleij	  This driver provides common support for accessing the device,
650223fa272SLinus Walleij	  additional drivers must be enabled in order to use the
651223fa272SLinus Walleij	  functionality of the device.
652223fa272SLinus Walleij
65359c32468SSrinivas Kandagatlaconfig GPIO_WCD934X
65459c32468SSrinivas Kandagatla	tristate "Qualcomm Technologies Inc WCD9340/WCD9341 gpio controller driver"
65559c32468SSrinivas Kandagatla	depends on MFD_WCD934X && OF_GPIO
65659c32468SSrinivas Kandagatla	help
65759c32468SSrinivas Kandagatla         This driver is to supprot GPIO block found on the Qualcomm Technologies
65859c32468SSrinivas Kandagatla	 Inc WCD9340/WCD9341 Audio Codec.
65959c32468SSrinivas Kandagatla
66029cbf458SFeng Kanconfig GPIO_XGENE
66129cbf458SFeng Kan	bool "APM X-Gene GPIO controller support"
66229cbf458SFeng Kan	depends on ARM64 && OF_GPIO
66329cbf458SFeng Kan	help
66429cbf458SFeng Kan	  This driver is to support the GPIO block within the APM X-Gene SoC
66529cbf458SFeng Kan	  platform's generic flash controller. The GPIO pins are muxed with
66629cbf458SFeng Kan	  the generic flash controller's address and data pins. Say yes
66729cbf458SFeng Kan	  here to enable the GFC GPIO functionality.
66829cbf458SFeng Kan
669b2b35e10SY Voconfig GPIO_XGENE_SB
670b2b35e10SY Vo	tristate "APM X-Gene GPIO standby controller support"
671b24bc583SAndy Shevchenko	depends on (ARCH_XGENE || COMPILE_TEST)
672b2b35e10SY Vo	select GPIO_GENERIC
673e5f7e312SMatthias Brugger	select GPIOLIB_IRQCHIP
674c23d200fSMasahiro Yamada	select IRQ_DOMAIN_HIERARCHY
675b2b35e10SY Vo	help
676b2b35e10SY Vo	  This driver supports the GPIO block within the APM X-Gene
677b2b35e10SY Vo	  Standby Domain. Say yes here to enable the GPIO functionality.
678b2b35e10SY Vo
6790bcb6069SJohn Linnconfig GPIO_XILINX
680c54c58baSRicardo Ribalda Delgado	tristate "Xilinx GPIO support"
6810bcb6069SJohn Linn	help
6820bcb6069SJohn Linn	  Say yes here to support the Xilinx FPGA GPIO device
6830bcb6069SJohn Linn
684ff718800SKamlakant Patelconfig GPIO_XLP
685ff718800SKamlakant Patel	tristate "Netlogic XLP GPIO support"
686240d3d5bSJayachandran C	depends on OF_GPIO && (CPU_XLP || ARCH_THUNDER2 || COMPILE_TEST)
687ff718800SKamlakant Patel	select GPIOLIB_IRQCHIP
688ff718800SKamlakant Patel	help
689ff718800SKamlakant Patel	  This driver provides support for GPIO interface on Netlogic XLP MIPS64
690ff718800SKamlakant Patel	  SoCs. Currently supported XLP variants are XLP8XX, XLP3XX, XLP2XX,
691240d3d5bSJayachandran C	  XLP9XX and XLP5XX. The same GPIO controller block is also present in
692240d3d5bSJayachandran C	  Cavium's ThunderX2 CN99XX SoCs.
693ff718800SKamlakant Patel
694ff718800SKamlakant Patel	  If unsure, say N.
695ff718800SKamlakant Patel
6963b31d0ecSBaruch Siachconfig GPIO_XTENSA
6973b31d0ecSBaruch Siach	bool "Xtensa GPIO32 support"
6983b31d0ecSBaruch Siach	depends on XTENSA
699a1a2bdecSBaruch Siach	depends on HAVE_XTENSA_GPIO32
7003b31d0ecSBaruch Siach	depends on !SMP
7013b31d0ecSBaruch Siach	help
7023b31d0ecSBaruch Siach	  Say yes here to support the Xtensa internal GPIO32 IMPWIRE (input)
7033b31d0ecSBaruch Siach	  and EXPSTATE (output) ports
7043b31d0ecSBaruch Siach
705223fa272SLinus Walleijconfig GPIO_ZEVIO
706223fa272SLinus Walleij	bool "LSI ZEVIO SoC memory mapped GPIOs"
707223fa272SLinus Walleij	depends on ARM && OF_GPIO
70827fdd325SYoichi Yuasa	help
709223fa272SLinus Walleij	  Say yes here to support the GPIO controller in LSI ZEVIO SoCs.
71027fdd325SYoichi Yuasa
711223fa272SLinus Walleijconfig GPIO_ZYNQ
712223fa272SLinus Walleij	tristate "Xilinx Zynq GPIO support"
713bdf7a4aeSAnurag Kumar Vulisha	depends on ARCH_ZYNQ || ARCH_ZYNQMP
7147f87210eSMika Westerberg	select GPIOLIB_IRQCHIP
7151d09aaa6SMathias Nyman	help
716223fa272SLinus Walleij	  Say yes here to support Xilinx Zynq GPIO controller.
7171d09aaa6SMathias Nyman
7180963670aSLinus Walleijconfig GPIO_ZX
7190963670aSLinus Walleij	bool "ZTE ZX GPIO support"
720752fda89SPeter Robinson	depends on ARCH_ZX || COMPILE_TEST
7210963670aSLinus Walleij	select GPIOLIB_IRQCHIP
7220963670aSLinus Walleij	help
7230963670aSLinus Walleij	  Say yes here to support the GPIO device on ZTE ZX SoCs.
7240963670aSLinus Walleij
725bd37c999SKelvin Cheungconfig GPIO_LOONGSON1
726bd37c999SKelvin Cheung	tristate "Loongson1 GPIO support"
727bd37c999SKelvin Cheung	depends on MACH_LOONGSON32
728bd37c999SKelvin Cheung	select GPIO_GENERIC
729bd37c999SKelvin Cheung	help
730bd37c999SKelvin Cheung	  Say Y or M here to support GPIO on Loongson1 SoCs.
731bd37c999SKelvin Cheung
732e09d168fSEnrico Weigelt, metux IT consultconfig GPIO_AMD_FCH
733e09d168fSEnrico Weigelt, metux IT consult	tristate "GPIO support for AMD Fusion Controller Hub (G-series SOCs)"
734e09d168fSEnrico Weigelt, metux IT consult	help
735e09d168fSEnrico Weigelt, metux IT consult	  This option enables driver for GPIO on AMDs Fusion Controller Hub,
736e09d168fSEnrico Weigelt, metux IT consult	  as found on G-series SOCs (eg. GX-412TC)
737e09d168fSEnrico Weigelt, metux IT consult
738e09d168fSEnrico Weigelt, metux IT consult	  Note: This driver doesn't registers itself automatically, as it
739e09d168fSEnrico Weigelt, metux IT consult	  needs to be provided with platform specific configuration.
740e09d168fSEnrico Weigelt, metux IT consult	  (See eg. CONFIG_PCENGINES_APU2.)
741177b0381SLinus Walleijendmenu
742177b0381SLinus Walleij
743bc6a73bbSLinus Walleijmenu "Port-mapped I/O GPIO drivers"
7447768feb0SLinus Walleij	depends on X86 # Unconditional I/O space access
745bc6a73bbSLinus Walleij
7461b06d64fSWilliam Breathitt Grayconfig GPIO_104_DIO_48E
7471b06d64fSWilliam Breathitt Gray	tristate "ACCES 104-DIO-48E GPIO support"
74835decc80SWilliam Breathitt Gray	depends on PC104
74935decc80SWilliam Breathitt Gray	select ISA_BUS_API
7501b06d64fSWilliam Breathitt Gray	select GPIOLIB_IRQCHIP
7511b06d64fSWilliam Breathitt Gray	help
7524c23db0fSWilliam Breathitt Gray	  Enables GPIO support for the ACCES 104-DIO-48E series (104-DIO-48E,
7534c23db0fSWilliam Breathitt Gray	  104-DIO-24E). The base port addresses for the devices may be
7544c23db0fSWilliam Breathitt Gray	  configured via the base module parameter. The interrupt line numbers
7554c23db0fSWilliam Breathitt Gray	  for the devices may be configured via the irq module parameter.
7561b06d64fSWilliam Breathitt Gray
757bc6a73bbSLinus Walleijconfig GPIO_104_IDIO_16
758bc6a73bbSLinus Walleij	tristate "ACCES 104-IDIO-16 GPIO support"
75935decc80SWilliam Breathitt Gray	depends on PC104
76035decc80SWilliam Breathitt Gray	select ISA_BUS_API
761a1184147SWilliam Breathitt Gray	select GPIOLIB_IRQCHIP
762bc6a73bbSLinus Walleij	help
76386ea8a95SWilliam Breathitt Gray	  Enables GPIO support for the ACCES 104-IDIO-16 family (104-IDIO-16,
76486ea8a95SWilliam Breathitt Gray	  104-IDIO-16E, 104-IDO-16, 104-IDIO-8, 104-IDIO-8E, 104-IDO-8). The
76586ea8a95SWilliam Breathitt Gray	  base port addresses for the devices may be configured via the base
76686ea8a95SWilliam Breathitt Gray	  module parameter. The interrupt line numbers for the devices may be
76786ea8a95SWilliam Breathitt Gray	  configured via the irq module parameter.
768bc6a73bbSLinus Walleij
7696ddcf9b4SWilliam Breathitt Grayconfig GPIO_104_IDI_48
7706ddcf9b4SWilliam Breathitt Gray	tristate "ACCES 104-IDI-48 GPIO support"
77135decc80SWilliam Breathitt Gray	depends on PC104
77235decc80SWilliam Breathitt Gray	select ISA_BUS_API
7736ddcf9b4SWilliam Breathitt Gray	select GPIOLIB_IRQCHIP
7746ddcf9b4SWilliam Breathitt Gray	help
77572bf7443SWilliam Breathitt Gray	  Enables GPIO support for the ACCES 104-IDI-48 family (104-IDI-48A,
77672bf7443SWilliam Breathitt Gray	  104-IDI-48AC, 104-IDI-48B, 104-IDI-48BC). The base port addresses for
77772bf7443SWilliam Breathitt Gray	  the devices may be configured via the base module parameter. The
77872bf7443SWilliam Breathitt Gray	  interrupt line numbers for the devices may be configured via the irq
77972bf7443SWilliam Breathitt Gray	  module parameter.
7806ddcf9b4SWilliam Breathitt Gray
781bc6a73bbSLinus Walleijconfig GPIO_F7188X
7821920906fSPeter Hung	tristate "F71869, F71869A, F71882FG, F71889F and F81866 GPIO support"
783bc6a73bbSLinus Walleij	help
784bc6a73bbSLinus Walleij	  This option enables support for GPIOs found on Fintek Super-I/O
7851920906fSPeter Hung	  chips F71869, F71869A, F71882FG, F71889F and F81866.
786bc6a73bbSLinus Walleij
787bc6a73bbSLinus Walleij	  To compile this driver as a module, choose M here: the module will
788bc6a73bbSLinus Walleij	  be called f7188x-gpio.
789bc6a73bbSLinus Walleij
7906ea5dcdfSWilliam Breathitt Grayconfig GPIO_GPIO_MM
7916ea5dcdfSWilliam Breathitt Gray	tristate "Diamond Systems GPIO-MM GPIO support"
79235decc80SWilliam Breathitt Gray	depends on PC104
79335decc80SWilliam Breathitt Gray	select ISA_BUS_API
7946ea5dcdfSWilliam Breathitt Gray	help
7956ea5dcdfSWilliam Breathitt Gray	  Enables GPIO support for the Diamond Systems GPIO-MM and GPIO-MM-12.
7966ea5dcdfSWilliam Breathitt Gray
7976ea5dcdfSWilliam Breathitt Gray	  The Diamond Systems GPIO-MM device features 48 lines of digital I/O
7986ea5dcdfSWilliam Breathitt Gray	  via the emulation of dual 82C55A PPI chips. This driver provides GPIO
7996ea5dcdfSWilliam Breathitt Gray	  support for these 48 channels of digital I/O.
8006ea5dcdfSWilliam Breathitt Gray
8016ea5dcdfSWilliam Breathitt Gray	  The base port addresses for the devices may be configured via the base
8026ea5dcdfSWilliam Breathitt Gray	  array module parameter.
8036ea5dcdfSWilliam Breathitt Gray
804bc6a73bbSLinus Walleijconfig GPIO_IT87
805bc6a73bbSLinus Walleij	tristate "IT87xx GPIO support"
806bc6a73bbSLinus Walleij	help
807bc6a73bbSLinus Walleij	  Say yes here to support GPIO functionality of IT87xx Super I/O chips.
808bc6a73bbSLinus Walleij
809bc6a73bbSLinus Walleij	  This driver is tested with ITE IT8728 and IT8732 Super I/O chips, and
810a5ec96ddSLeonid Bloch	  supports the IT8761E, IT8613, IT8620E, and IT8628E Super I/O chips as
811a5ec96ddSLeonid Bloch	  well.
812bc6a73bbSLinus Walleij
813bc6a73bbSLinus Walleij	  To compile this driver as a module, choose M here: the module will
814bc6a73bbSLinus Walleij	  be called gpio_it87
815bc6a73bbSLinus Walleij
816bc6a73bbSLinus Walleijconfig GPIO_SCH
817bc6a73bbSLinus Walleij	tristate "Intel SCH/TunnelCreek/Centerton/Quark X1000 GPIO"
81872aba2e2SPeter Robinson	depends on (X86 || COMPILE_TEST) && PCI
819bc6a73bbSLinus Walleij	select MFD_CORE
820bc6a73bbSLinus Walleij	select LPC_SCH
821bc6a73bbSLinus Walleij	help
822bc6a73bbSLinus Walleij	  Say yes here to support GPIO interface on Intel Poulsbo SCH,
823bc6a73bbSLinus Walleij	  Intel Tunnel Creek processor, Intel Centerton processor or
824bc6a73bbSLinus Walleij	  Intel Quark X1000 SoC.
825bc6a73bbSLinus Walleij
826bc6a73bbSLinus Walleij	  The Intel SCH contains a total of 14 GPIO pins. Ten GPIOs are
827bc6a73bbSLinus Walleij	  powered by the core power rail and are turned off during sleep
828bc6a73bbSLinus Walleij	  modes (S3 and higher). The remaining four GPIOs are powered by
829bc6a73bbSLinus Walleij	  the Intel SCH suspend power supply. These GPIOs remain
830bc6a73bbSLinus Walleij	  active during S3. The suspend powered GPIOs can be used to wake the
831bc6a73bbSLinus Walleij	  system from the Suspend-to-RAM state.
832bc6a73bbSLinus Walleij
833bc6a73bbSLinus Walleij	  The Intel Tunnel Creek processor has 5 GPIOs powered by the
834bc6a73bbSLinus Walleij	  core power rail and 9 from suspend power supply.
835bc6a73bbSLinus Walleij
836bc6a73bbSLinus Walleij	  The Intel Centerton processor has a total of 30 GPIO pins.
837bc6a73bbSLinus Walleij	  Twenty-one are powered by the core power rail and 9 from the
838bc6a73bbSLinus Walleij	  suspend power supply.
839bc6a73bbSLinus Walleij
840bc6a73bbSLinus Walleij	  The Intel Quark X1000 SoC has 2 GPIOs powered by the core
841bc6a73bbSLinus Walleij	  power well and 6 from the suspend power well.
842bc6a73bbSLinus Walleij
843bc6a73bbSLinus Walleijconfig GPIO_SCH311X
844bc6a73bbSLinus Walleij	tristate "SMSC SCH311x SuperI/O GPIO"
845bc6a73bbSLinus Walleij	help
846bc6a73bbSLinus Walleij	  Driver to enable the GPIOs found on SMSC SMSC SCH3112, SCH3114 and
847bc6a73bbSLinus Walleij	  SCH3116 "Super I/O" chipsets.
848bc6a73bbSLinus Walleij
849bc6a73bbSLinus Walleij	  To compile this driver as a module, choose M here: the module will
850bc6a73bbSLinus Walleij	  be called gpio-sch311x.
851bc6a73bbSLinus Walleij
852bc6a73bbSLinus Walleijconfig GPIO_TS5500
853bc6a73bbSLinus Walleij	tristate "TS-5500 DIO blocks and compatibles"
854bc6a73bbSLinus Walleij	depends on TS5500 || COMPILE_TEST
855bc6a73bbSLinus Walleij	help
856bc6a73bbSLinus Walleij	  This driver supports Digital I/O exposed by pin blocks found on some
857bc6a73bbSLinus Walleij	  Technologic Systems platforms. It includes, but is not limited to, 3
858bc6a73bbSLinus Walleij	  blocks of the TS-5500: DIO1, DIO2 and the LCD port, and the TS-5600
859bc6a73bbSLinus Walleij	  LCD port.
860bc6a73bbSLinus Walleij
861a0d65009SMaciej S. Szmigieroconfig GPIO_WINBOND
862a0d65009SMaciej S. Szmigiero	tristate "Winbond Super I/O GPIO support"
863b995ff3bSMaciej S. Szmigiero	select ISA_BUS_API
864a0d65009SMaciej S. Szmigiero	help
865a0d65009SMaciej S. Szmigiero	  This option enables support for GPIOs found on Winbond Super I/O
866a0d65009SMaciej S. Szmigiero	  chips.
867a0d65009SMaciej S. Szmigiero	  Currently, only W83627UHG (also known as Nuvoton NCT6627UD) is
868a0d65009SMaciej S. Szmigiero	  supported.
869a0d65009SMaciej S. Szmigiero
870a0d65009SMaciej S. Szmigiero	  You will need to provide a module parameter "gpios", or a
871a0d65009SMaciej S. Szmigiero	  boot-time parameter "gpio_winbond.gpios" with a bitmask of GPIO
872a0d65009SMaciej S. Szmigiero	  ports to enable (bit 0 is GPIO1, bit 1 is GPIO2, etc.).
873a0d65009SMaciej S. Szmigiero
874a0d65009SMaciej S. Szmigiero	  To compile this driver as a module, choose M here: the module will
875a0d65009SMaciej S. Szmigiero	  be called gpio-winbond.
876a0d65009SMaciej S. Szmigiero
8779c26df9bSWilliam Breathitt Grayconfig GPIO_WS16C48
8789c26df9bSWilliam Breathitt Gray	tristate "WinSystems WS16C48 GPIO support"
87935decc80SWilliam Breathitt Gray	select ISA_BUS_API
8809c26df9bSWilliam Breathitt Gray	select GPIOLIB_IRQCHIP
8819c26df9bSWilliam Breathitt Gray	help
882cc736607SWilliam Breathitt Gray	  Enables GPIO support for the WinSystems WS16C48. The base port
883cc736607SWilliam Breathitt Gray	  addresses for the devices may be configured via the base module
884cc736607SWilliam Breathitt Gray	  parameter. The interrupt line numbers for the devices may be
885cc736607SWilliam Breathitt Gray	  configured via the irq module parameter.
8869c26df9bSWilliam Breathitt Gray
887bc6a73bbSLinus Walleijendmenu
888bc6a73bbSLinus Walleij
889177b0381SLinus Walleijmenu "I2C GPIO expanders"
890177b0381SLinus Walleij	depends on I2C
891a9c5fff5SDavid Brownell
892bf5a16baSLinus Walleijconfig GPIO_ADP5588
893bf5a16baSLinus Walleij	tristate "ADP5588 I2C GPIO expander"
89431ba56f2SMark Brown	help
895bf5a16baSLinus Walleij	  This option enables support for 18 GPIOs found
896bf5a16baSLinus Walleij	  on Analog Devices ADP5588 GPIO Expanders.
897e952805dSWolfram Sang
898bf5a16baSLinus Walleijconfig GPIO_ADP5588_IRQ
899bf5a16baSLinus Walleij	bool "Interrupt controller support for ADP5588"
900bf5a16baSLinus Walleij	depends on GPIO_ADP5588=y
901e9646f0fSRandy Dunlap	select GPIOLIB_IRQCHIP
902bbcd6d54SEric Miao	help
903bf5a16baSLinus Walleij	  Say yes here to enable the adp5588 to be used as an interrupt
904bf5a16baSLinus Walleij	  controller. It requires the driver to be built in the kernel.
905a9c5fff5SDavid Brownell
906bf5a16baSLinus Walleijconfig GPIO_ADNP
907bf5a16baSLinus Walleij	tristate "Avionic Design N-bit GPIO expander"
908269a46f8SLinus Walleij	depends on OF_GPIO
909104fb1d5SZhu, Lejun	select GPIOLIB_IRQCHIP
910104fb1d5SZhu, Lejun	help
911bf5a16baSLinus Walleij	  This option enables support for N GPIOs found on Avionic Design
912bf5a16baSLinus Walleij	  I2C GPIO expanders. The register space will be extended by powers
913bf5a16baSLinus Walleij	  of two, so the controller will need to accommodate for that. For
914bf5a16baSLinus Walleij	  example: if a controller provides 48 pins, 6 registers will be
915bf5a16baSLinus Walleij	  enough to represent all pins, but the driver will assume a
916bf5a16baSLinus Walleij	  register layout for 64 pins (8 registers).
9170cc59b9dSMilo Kim
9182a0b0a57SLinus Walleijconfig GPIO_GW_PLD
9192a0b0a57SLinus Walleij	tristate "Gateworks PLD GPIO Expander"
9202a0b0a57SLinus Walleij	depends on OF_GPIO
9212a0b0a57SLinus Walleij	help
9222a0b0a57SLinus Walleij	  Say yes here to provide access to the Gateworks I2C PLD GPIO
9232a0b0a57SLinus Walleij	  Expander. This is used at least on the Cambria GW2358-4.
9242a0b0a57SLinus Walleij
925a9c5fff5SDavid Brownellconfig GPIO_MAX7300
926bbcd6d54SEric Miao	tristate "Maxim MAX7300 GPIO expander"
927bbcd6d54SEric Miao	select GPIO_MAX730X
928bbcd6d54SEric Miao	help
9292b861f4bSAxel Lin	  GPIO driver for Maxim MAX7300 I2C-based GPIO expander.
930a9c5fff5SDavid Brownell
931bbcd6d54SEric Miaoconfig GPIO_MAX732X
932bbcd6d54SEric Miao	tristate "MAX7319, MAX7320-7327 I2C Port Expanders"
933bbcd6d54SEric Miao	help
934bbcd6d54SEric Miao	  Say yes here to support the MAX7319, MAX7320-7327 series of I2C
935bbcd6d54SEric Miao	  Port Expanders. Each IO port on these chips has a fixed role of
936bbcd6d54SEric Miao	  Input (designated by 'I'), Push-Pull Output ('O'), or Open-Drain
937bbcd6d54SEric Miao	  Input and Output (designed by 'P'). The combinations are listed
938bbcd6d54SEric Miao	  below:
939bbcd6d54SEric Miao
940bbcd6d54SEric Miao	  8 bits:       max7319 (8I), max7320 (8O), max7321 (8P),
941bbcd6d54SEric Miao	                max7322 (4I4O), max7323 (4P4O)
942bbcd6d54SEric Miao
943bbcd6d54SEric Miao	  16 bits:      max7324 (8I8O), max7325 (8P8O),
944bbcd6d54SEric Miao	                max7326 (4I12O), max7327 (4P12O)
945bbcd6d54SEric Miao
946bbcd6d54SEric Miao	  Board setup code must specify the model to use, and the start
947bbcd6d54SEric Miao	  number for these GPIOs.
948bbcd6d54SEric Miao
949a80a0bbeSMarc Zyngierconfig GPIO_MAX732X_IRQ
950a80a0bbeSMarc Zyngier	bool "Interrupt controller support for MAX732x"
9510244ad00SMartin Schwidefsky	depends on GPIO_MAX732X=y
952984f6643SLinus Walleij	select GPIOLIB_IRQCHIP
953a80a0bbeSMarc Zyngier	help
954a80a0bbeSMarc Zyngier	  Say yes here to enable the max732x to be used as an interrupt
955a80a0bbeSMarc Zyngier	  controller. It requires the driver to be built in the kernel.
956a80a0bbeSMarc Zyngier
957608589b1Swu guoxingconfig GPIO_MC9S08DZ60
958608589b1Swu guoxing	bool "MX35 3DS BOARD MC9S08DZ60 GPIO functions"
9594c30aa33SAxel Lin	depends on I2C=y && MACH_MX35_3DS
960608589b1Swu guoxing	help
961608589b1Swu guoxing	  Select this to enable the MC9S08DZ60 GPIO driver
962608589b1Swu guoxing
963f3dc3630SGuennadi Liakhovetskiconfig GPIO_PCA953X
964eb32b5aaSAaron Sierra	tristate "PCA95[357]x, PCA9698, TCA64xx, and MAX7310 I/O ports"
9654bc16f9dSMarek Vasut	select REGMAP_I2C
9669e60fdcfSeric miao	help
9677059d4b0SDavid Brownell	  Say yes here to provide access to several register-oriented
9687059d4b0SDavid Brownell	  SMBus I/O expanders, made mostly by NXP or TI.  Compatible
9697059d4b0SDavid Brownell	  models include:
9707059d4b0SDavid Brownell
9717059d4b0SDavid Brownell	  4 bits:       pca9536, pca9537
9727059d4b0SDavid Brownell
973c29985ddSAxel Lin	  8 bits:       max7310, max7315, pca6107, pca9534, pca9538, pca9554,
9741b9a0c25SAnders Darander	                pca9556, pca9557, pca9574, tca6408, tca9554, xra1202
9757059d4b0SDavid Brownell
976c29985ddSAxel Lin	  16 bits:      max7312, max7313, pca9535, pca9539, pca9555, pca9575,
977c29985ddSAxel Lin	                tca6416
9789e60fdcfSeric miao
9791e191695SAaron Sierra	  24 bits:      tca6424
9801e191695SAaron Sierra
981eb32b5aaSAaron Sierra	  40 bits:      pca9505, pca9698
9821e191695SAaron Sierra
98389ea8bbeSMarc Zyngierconfig GPIO_PCA953X_IRQ
98489ea8bbeSMarc Zyngier	bool "Interrupt controller support for PCA953x"
985e33a58a2SAndy Shevchenko	depends on GPIO_PCA953X
9867bcbce55SLinus Walleij	select GPIOLIB_IRQCHIP
98789ea8bbeSMarc Zyngier	help
98889ea8bbeSMarc Zyngier	  Say yes here to enable the pca953x to be used as an interrupt
98989ea8bbeSMarc Zyngier	  controller. It requires the driver to be built in the kernel.
99089ea8bbeSMarc Zyngier
99116d44b60SSungbo Eoconfig GPIO_PCA9570
99216d44b60SSungbo Eo	tristate "PCA9570 4-Bit I2C GPO expander"
99316d44b60SSungbo Eo	help
99416d44b60SSungbo Eo	  Say yes here to enable the GPO driver for the NXP PCA9570 chip.
99516d44b60SSungbo Eo
99616d44b60SSungbo Eo	  To compile this driver as a module, choose M here: the module will
99716d44b60SSungbo Eo	  be called gpio-pca9570.
99816d44b60SSungbo Eo
99915fae37dSDavid Brownellconfig GPIO_PCF857X
10001673ad52SDavid Brownell	tristate "PCF857x, PCA{85,96}7x, and MAX732[89] I2C GPIO expanders"
1001a39294bdSGeert Uytterhoeven	select GPIOLIB_IRQCHIP
1002901acf5bSArnd Bergmann	select IRQ_DOMAIN
100315fae37dSDavid Brownell	help
100415fae37dSDavid Brownell	  Say yes here to provide access to most "quasi-bidirectional" I2C
100515fae37dSDavid Brownell	  GPIO expanders used for additional digital outputs or inputs.
100615fae37dSDavid Brownell	  Most of these parts are from NXP, though TI is a second source for
100715fae37dSDavid Brownell	  some of them.  Compatible models include:
100815fae37dSDavid Brownell
100915fae37dSDavid Brownell	  8 bits:   pcf8574, pcf8574a, pca8574, pca8574a,
10101673ad52SDavid Brownell	            pca9670, pca9672, pca9674, pca9674a,
10111673ad52SDavid Brownell	            max7328, max7329
101215fae37dSDavid Brownell
101315fae37dSDavid Brownell	  16 bits:  pcf8575, pcf8575c, pca8575,
101415fae37dSDavid Brownell	            pca9671, pca9673, pca9675
101515fae37dSDavid Brownell
101615fae37dSDavid Brownell	  Your board setup code will need to declare the expanders in
101715fae37dSDavid Brownell	  use, and assign numbers to the GPIOs they expose.  Those GPIOs
101815fae37dSDavid Brownell	  can then be used from drivers and other kernel code, just like
101915fae37dSDavid Brownell	  other GPIOs, but only accessible from task contexts.
102015fae37dSDavid Brownell
102115fae37dSDavid Brownell	  This driver provides an in-kernel interface to those GPIOs using
102215fae37dSDavid Brownell	  platform-neutral GPIO calls.
102315fae37dSDavid Brownell
1024b866526dSAndrew F. Davisconfig GPIO_TPIC2810
1025b866526dSAndrew F. Davis	tristate "TPIC2810 8-Bit I2C GPO expander"
1026b866526dSAndrew F. Davis	help
1027b866526dSAndrew F. Davis	  Say yes here to enable the GPO driver for the TI TPIC2810 chip.
1028b866526dSAndrew F. Davis
1029b866526dSAndrew F. Davis	  To compile this driver as a module, choose M here: the module will
1030b866526dSAndrew F. Davis	  be called gpio-tpic2810.
1031b866526dSAndrew F. Davis
10329c668632SLucile Quirionconfig GPIO_TS4900
10339c668632SLucile Quirion	tristate "Technologic Systems FPGA I2C GPIO"
10344c5f15b7SJean Delvare	depends on SOC_IMX6 || COMPILE_TEST
10359c668632SLucile Quirion	select REGMAP_I2C
10369c668632SLucile Quirion	help
10379c668632SLucile Quirion	  Say yes here to enabled the GPIO driver for Technologic's FPGA core.
10389c668632SLucile Quirion	  Series supported include TS-4100, TS-4900, TS-7970 and TS-7990.
10399c668632SLucile Quirion
1040177b0381SLinus Walleijendmenu
1041177b0381SLinus Walleij
1042177b0381SLinus Walleijmenu "MFD GPIO expanders"
1043be9cab5bSLinus Walleij
1044be9cab5bSLinus Walleijconfig GPIO_ADP5520
1045be9cab5bSLinus Walleij	tristate "GPIO Support for ADP5520 PMIC"
1046be9cab5bSLinus Walleij	depends on PMIC_ADP5520
1047be9cab5bSLinus Walleij	help
1048be9cab5bSLinus Walleij	  This option enables support for on-chip GPIO found
1049be9cab5bSLinus Walleij	  on Analog Devices ADP5520 PMICs.
1050be9cab5bSLinus Walleij
105126a48c4cSThor Thayerconfig GPIO_ALTERA_A10SR
105226a48c4cSThor Thayer	tristate "Altera Arria10 System Resource GPIO"
105326a48c4cSThor Thayer	depends on MFD_ALTERA_A10SR
105426a48c4cSThor Thayer	help
105526a48c4cSThor Thayer	  Driver for Arria10 Development Kit GPIO expansion which
105626a48c4cSThor Thayer	  includes reads of pushbuttons and DIP switches as well
105726a48c4cSThor Thayer	  as writes to LEDs.
105826a48c4cSThor Thayer
1059be9cab5bSLinus Walleijconfig GPIO_ARIZONA
1060be9cab5bSLinus Walleij	tristate "Wolfson Microelectronics Arizona class devices"
1061be9cab5bSLinus Walleij	depends on MFD_ARIZONA
1062be9cab5bSLinus Walleij	help
1063be9cab5bSLinus Walleij	  Support for GPIOs on Wolfson Arizona class devices.
1064be9cab5bSLinus Walleij
106518bc64b3SMatti Vaittinenconfig GPIO_BD70528
106618bc64b3SMatti Vaittinen	tristate "ROHM BD70528 GPIO support"
106718bc64b3SMatti Vaittinen	depends on MFD_ROHM_BD70528
106818bc64b3SMatti Vaittinen	help
106918bc64b3SMatti Vaittinen	  Support for GPIOs on ROHM BD70528 PMIC. There are four GPIOs
107018bc64b3SMatti Vaittinen	  available on the ROHM PMIC in total. The GPIOs can also
107118bc64b3SMatti Vaittinen	  generate interrupts.
107218bc64b3SMatti Vaittinen
107318bc64b3SMatti Vaittinen	  This driver can also be built as a module. If so, the module
107418bc64b3SMatti Vaittinen	  will be called gpio-bd70528.
107518bc64b3SMatti Vaittinen
1076c31f625dSMatti Vaittinenconfig GPIO_BD71828
1077c31f625dSMatti Vaittinen	tristate "ROHM BD71828 GPIO support"
1078c31f625dSMatti Vaittinen	depends on MFD_ROHM_BD71828
1079c31f625dSMatti Vaittinen	help
1080c31f625dSMatti Vaittinen	  Support for GPIOs on ROHM BD71828 PMIC. There are three GPIOs
1081c31f625dSMatti Vaittinen	  available on the ROHM PMIC in total. The GPIOs are limited to
1082c31f625dSMatti Vaittinen	  outputs only and pins must be configured to GPIO outputs by
1083c31f625dSMatti Vaittinen	  OTP. Enable this only if you want to use these pins as outputs.
1084c31f625dSMatti Vaittinen
1085c31f625dSMatti Vaittinen	  This driver can also be built as a module. If so, the module
1086c31f625dSMatti Vaittinen	  will be called gpio-bd71828.
1087c31f625dSMatti Vaittinen
108893847930SMarek Vasutconfig GPIO_BD9571MWV
108993847930SMarek Vasut	tristate "ROHM BD9571 GPIO support"
109093847930SMarek Vasut	depends on MFD_BD9571MWV
109193847930SMarek Vasut	help
109293847930SMarek Vasut	  Support for GPIOs on ROHM BD9571 PMIC. There are two GPIOs
109393847930SMarek Vasut	  available on the ROHM PMIC in total, both of which can also
109493847930SMarek Vasut	  generate interrupts.
109593847930SMarek Vasut
109693847930SMarek Vasut	  This driver can also be built as a module. If so, the module
109793847930SMarek Vasut	  will be called gpio-bd9571mwv.
109893847930SMarek Vasut
1099be9cab5bSLinus Walleijconfig GPIO_CRYSTAL_COVE
1100be9cab5bSLinus Walleij	tristate "GPIO support for Crystal Cove PMIC"
110172aba2e2SPeter Robinson	depends on (X86 || COMPILE_TEST) && INTEL_SOC_PMIC
1102be9cab5bSLinus Walleij	select GPIOLIB_IRQCHIP
1103be9cab5bSLinus Walleij	help
1104be9cab5bSLinus Walleij	  Support for GPIO pins on Crystal Cove PMIC.
1105be9cab5bSLinus Walleij
1106be9cab5bSLinus Walleij	  Say Yes if you have a Intel SoC based tablet with Crystal Cove PMIC
1107be9cab5bSLinus Walleij	  inside.
1108be9cab5bSLinus Walleij
1109be9cab5bSLinus Walleij	  This driver can also be built as a module. If so, the module will be
1110be9cab5bSLinus Walleij	  called gpio-crystalcove.
1111be9cab5bSLinus Walleij
1112be9cab5bSLinus Walleijconfig GPIO_CS5535
1113be9cab5bSLinus Walleij	tristate "AMD CS5535/CS5536 GPIO support"
111472aba2e2SPeter Robinson	depends on X86 || MIPS || COMPILE_TEST
1115be9cab5bSLinus Walleij	depends on MFD_CS5535
1116be9cab5bSLinus Walleij	help
1117be9cab5bSLinus Walleij	  The AMD CS5535 and CS5536 southbridges support 28 GPIO pins that
1118be9cab5bSLinus Walleij	  can be used for quite a number of things.  The CS5535/6 is found on
1119be9cab5bSLinus Walleij	  AMD Geode and Lemote Yeeloong devices.
1120be9cab5bSLinus Walleij
1121be9cab5bSLinus Walleij	  If unsure, say N.
1122be9cab5bSLinus Walleij
1123be9cab5bSLinus Walleijconfig GPIO_DA9052
1124be9cab5bSLinus Walleij	tristate "Dialog DA9052 GPIO"
1125be9cab5bSLinus Walleij	depends on PMIC_DA9052
1126be9cab5bSLinus Walleij	help
1127be9cab5bSLinus Walleij	  Say yes here to enable the GPIO driver for the DA9052 chip.
1128be9cab5bSLinus Walleij
1129be9cab5bSLinus Walleijconfig GPIO_DA9055
1130be9cab5bSLinus Walleij	tristate "Dialog Semiconductor DA9055 GPIO"
1131be9cab5bSLinus Walleij	depends on MFD_DA9055
1132be9cab5bSLinus Walleij	help
1133be9cab5bSLinus Walleij	  Say yes here to enable the GPIO driver for the DA9055 chip.
1134be9cab5bSLinus Walleij
1135be9cab5bSLinus Walleij	  The Dialog DA9055 PMIC chip has 3 GPIO pins that can be
1136be9cab5bSLinus Walleij	  be controller by this driver.
1137be9cab5bSLinus Walleij
1138be9cab5bSLinus Walleij	  If driver is built as a module it will be called gpio-da9055.
1139be9cab5bSLinus Walleij
1140be9cab5bSLinus Walleijconfig GPIO_DLN2
1141be9cab5bSLinus Walleij	tristate "Diolan DLN2 GPIO support"
1142be9cab5bSLinus Walleij	depends on MFD_DLN2
1143be9cab5bSLinus Walleij	select GPIOLIB_IRQCHIP
1144be9cab5bSLinus Walleij
1145be9cab5bSLinus Walleij	help
1146be9cab5bSLinus Walleij	  Select this option to enable GPIO driver for the Diolan DLN2
1147be9cab5bSLinus Walleij	  board.
1148be9cab5bSLinus Walleij
1149be9cab5bSLinus Walleij	  This driver can also be built as a module. If so, the module
1150be9cab5bSLinus Walleij	  will be called gpio-dln2.
1151be9cab5bSLinus Walleij
11523c6e8d05SLinus Walleijconfig HTC_EGPIO
11533c6e8d05SLinus Walleij	bool "HTC EGPIO support"
1154e4c6a52cSGeert Uytterhoeven	depends on ARM
11553c6e8d05SLinus Walleij	help
11563c6e8d05SLinus Walleij	  This driver supports the CPLD egpio chip present on
11573c6e8d05SLinus Walleij	  several HTC phones.  It provides basic support for input
11583c6e8d05SLinus Walleij	  pins, output pins, and irqs.
11593c6e8d05SLinus Walleij
1160be9cab5bSLinus Walleijconfig GPIO_JANZ_TTL
1161be9cab5bSLinus Walleij	tristate "Janz VMOD-TTL Digital IO Module"
1162be9cab5bSLinus Walleij	depends on MFD_JANZ_CMODIO
1163be9cab5bSLinus Walleij	help
1164be9cab5bSLinus Walleij	  This enables support for the Janz VMOD-TTL Digital IO module.
1165be9cab5bSLinus Walleij	  This driver provides support for driving the pins in output
1166be9cab5bSLinus Walleij	  mode only. Input mode is not supported.
1167be9cab5bSLinus Walleij
1168be9cab5bSLinus Walleijconfig GPIO_KEMPLD
1169be9cab5bSLinus Walleij	tristate "Kontron ETX / COMexpress GPIO"
1170be9cab5bSLinus Walleij	depends on MFD_KEMPLD
1171be9cab5bSLinus Walleij	help
1172be9cab5bSLinus Walleij	  This enables support for the PLD GPIO interface on some Kontron ETX
1173be9cab5bSLinus Walleij	  and COMexpress (ETXexpress) modules.
1174be9cab5bSLinus Walleij
1175be9cab5bSLinus Walleij	  This driver can also be built as a module. If so, the module will be
1176be9cab5bSLinus Walleij	  called gpio-kempld.
1177be9cab5bSLinus Walleij
1178be9cab5bSLinus Walleijconfig GPIO_LP3943
1179be9cab5bSLinus Walleij	tristate "TI/National Semiconductor LP3943 GPIO expander"
1180be9cab5bSLinus Walleij	depends on MFD_LP3943
1181be9cab5bSLinus Walleij	help
1182be9cab5bSLinus Walleij	  GPIO driver for LP3943 MFD.
1183be9cab5bSLinus Walleij	  LP3943 can be used as a GPIO expander which provides up to 16 GPIOs.
1184be9cab5bSLinus Walleij	  Open drain outputs are required for this usage.
1185be9cab5bSLinus Walleij
118683f14103SKeerthyconfig GPIO_LP873X
118783f14103SKeerthy	tristate "TI LP873X GPO"
118883f14103SKeerthy	depends on MFD_TI_LP873X
118983f14103SKeerthy	help
119083f14103SKeerthy	  This driver supports the GPO on TI Lp873x PMICs. 2 GPOs are present
119183f14103SKeerthy	  on LP873X PMICs.
119283f14103SKeerthy
119383f14103SKeerthy	  This driver can also be built as a module. If so, the module will be
119483f14103SKeerthy	  called gpio-lp873x.
119583f14103SKeerthy
11965c7f2c76SKeerthyconfig GPIO_LP87565
11975c7f2c76SKeerthy	tristate "TI LP87565 GPIO"
11985c7f2c76SKeerthy	depends on MFD_TI_LP87565
11995c7f2c76SKeerthy	help
12005c7f2c76SKeerthy	  This driver supports the GPIO on TI Lp873565 PMICs. 3 GPIOs are present
12015c7f2c76SKeerthy	  on LP87565 PMICs.
12025c7f2c76SKeerthy
12035c7f2c76SKeerthy	  This driver can also be built as a module. If so, the module will be
12045c7f2c76SKeerthy	  called gpio-lp87565.
12055c7f2c76SKeerthy
1206aca429ffSRichard Fitzgeraldconfig GPIO_MADERA
1207aca429ffSRichard Fitzgerald	tristate "Cirrus Logic Madera class codecs"
1208aca429ffSRichard Fitzgerald	depends on PINCTRL_MADERA
1209aca429ffSRichard Fitzgerald	help
1210aca429ffSRichard Fitzgerald	  Support for GPIOs on Cirrus Logic Madera class codecs.
1211aca429ffSRichard Fitzgerald
121202c5ba1eSLaxman Dewanganconfig GPIO_MAX77620
121302c5ba1eSLaxman Dewangan	tristate "GPIO support for PMIC MAX77620 and MAX20024"
121402c5ba1eSLaxman Dewangan	depends on MFD_MAX77620
1215c5706c7dSDmitry Osipenko	select GPIOLIB_IRQCHIP
121602c5ba1eSLaxman Dewangan	help
121702c5ba1eSLaxman Dewangan	  GPIO driver for MAX77620 and MAX20024 PMIC from Maxim Semiconductor.
121802c5ba1eSLaxman Dewangan	  MAX77620 PMIC has 8 pins that can be configured as GPIOs. The
121902c5ba1eSLaxman Dewangan	  driver also provides interrupt support for each of the gpios.
122002c5ba1eSLaxman Dewangan	  Say yes here to enable the max77620 to be used as gpio controller.
122102c5ba1eSLaxman Dewangan
122272b5135bSBartosz Golaszewskiconfig GPIO_MAX77650
122372b5135bSBartosz Golaszewski	tristate "Maxim MAX77650/77651 GPIO support"
122472b5135bSBartosz Golaszewski	depends on MFD_MAX77650
122572b5135bSBartosz Golaszewski	help
122672b5135bSBartosz Golaszewski	  GPIO driver for MAX77650/77651 PMIC from Maxim Semiconductor.
122772b5135bSBartosz Golaszewski	  These chips have a single pin that can be configured as GPIO.
122872b5135bSBartosz Golaszewski
1229be9cab5bSLinus Walleijconfig GPIO_MSIC
1230be9cab5bSLinus Walleij	bool "Intel MSIC mixed signal gpio support"
123172aba2e2SPeter Robinson	depends on (X86 || COMPILE_TEST) && MFD_INTEL_MSIC
1232be9cab5bSLinus Walleij	help
1233be9cab5bSLinus Walleij	  Enable support for GPIO on intel MSIC controllers found in
1234be9cab5bSLinus Walleij	  intel MID devices
1235be9cab5bSLinus Walleij
1236be9cab5bSLinus Walleijconfig GPIO_PALMAS
1237be9cab5bSLinus Walleij	bool "TI PALMAS series PMICs GPIO"
1238be9cab5bSLinus Walleij	depends on MFD_PALMAS
1239be9cab5bSLinus Walleij	help
1240be9cab5bSLinus Walleij	  Select this option to enable GPIO driver for the TI PALMAS
1241be9cab5bSLinus Walleij	  series chip family.
1242be9cab5bSLinus Walleij
1243e9fe32bcSLaxman Dewanganconfig GPIO_RC5T583
1244e9fe32bcSLaxman Dewangan	bool "RICOH RC5T583 GPIO"
1245e9fe32bcSLaxman Dewangan	depends on MFD_RC5T583
1246e9fe32bcSLaxman Dewangan	help
1247e9fe32bcSLaxman Dewangan	  Select this option to enable GPIO driver for the Ricoh RC5T583
1248e9fe32bcSLaxman Dewangan	  chip family.
1249e9fe32bcSLaxman Dewangan	  This driver provides the support for driving/reading the gpio pins
1250e9fe32bcSLaxman Dewangan	  of RC5T583 device through standard gpio library.
1251e9fe32bcSLaxman Dewangan
1252b7536d87SMichael Walleconfig GPIO_SL28CPLD
1253b7536d87SMichael Walle	tristate "Kontron sl28cpld GPIO support"
1254b7536d87SMichael Walle	depends on MFD_SL28CPLD || COMPILE_TEST
1255b7536d87SMichael Walle	select GPIO_REGMAP
1256b7536d87SMichael Walle	select GPIOLIB_IRQCHIP
1257b7536d87SMichael Walle	select REGMAP_IRQ
1258b7536d87SMichael Walle	help
1259b7536d87SMichael Walle	  This enables support for the GPIOs found on the Kontron sl28 CPLD.
1260b7536d87SMichael Walle
1261b7536d87SMichael Walle	  This driver can also be built as a module. If so, the module will be
1262b7536d87SMichael Walle	  called gpio-sl28cpld.
1263b7536d87SMichael Walle
126403f822f5SRabin Vincentconfig GPIO_STMPE
126503f822f5SRabin Vincent	bool "STMPE GPIOs"
126603f822f5SRabin Vincent	depends on MFD_STMPE
12671dfb4a0dSLinus Walleij	depends on OF_GPIO
1268fe44e70dSLinus Walleij	select GPIOLIB_IRQCHIP
126903f822f5SRabin Vincent	help
127003f822f5SRabin Vincent	  This enables support for the GPIOs found on the STMPE I/O
127103f822f5SRabin Vincent	  Expanders.
127203f822f5SRabin Vincent
1273f4e8afdcSSundar Iyerconfig GPIO_TC3589X
1274f4e8afdcSSundar Iyer	bool "TC3589X GPIOs"
1275f4e8afdcSSundar Iyer	depends on MFD_TC3589X
12761422731dSLinus Walleij	depends on OF_GPIO
1277cf42f1cfSLinus Walleij	select GPIOLIB_IRQCHIP
1278d88b25beSRabin Vincent	help
1279f4e8afdcSSundar Iyer	  This enables support for the GPIOs found on the TC3589X
1280d88b25beSRabin Vincent	  I/O Expander.
1281d88b25beSRabin Vincent
1282be9cab5bSLinus Walleijconfig GPIO_TIMBERDALE
1283be9cab5bSLinus Walleij	bool "Support for timberdale GPIO IP"
1284be9cab5bSLinus Walleij	depends on MFD_TIMBERDALE
1285a7f7f624SMasahiro Yamada	help
1286be9cab5bSLinus Walleij	Add support for the GPIO IP in the timberdale FPGA.
1287be9cab5bSLinus Walleij
128899f0fd54SAndrew F. Davisconfig GPIO_TPS65086
128999f0fd54SAndrew F. Davis	tristate "TI TPS65086 GPO"
129099f0fd54SAndrew F. Davis	depends on MFD_TPS65086
129199f0fd54SAndrew F. Davis	help
129299f0fd54SAndrew F. Davis	  This driver supports the GPO on TI TPS65086x PMICs.
129399f0fd54SAndrew F. Davis
1294c366c76aSNicolas Saenz Julienneconfig GPIO_TPS65218
1295c366c76aSNicolas Saenz Julienne	tristate "TPS65218 GPIO"
1296c366c76aSNicolas Saenz Julienne	depends on MFD_TPS65218
1297c366c76aSNicolas Saenz Julienne	help
1298c366c76aSNicolas Saenz Julienne	  Select this option to enable GPIO driver for the TPS65218
1299c366c76aSNicolas Saenz Julienne	  chip family.
1300c366c76aSNicolas Saenz Julienne
1301be9cab5bSLinus Walleijconfig GPIO_TPS6586X
1302be9cab5bSLinus Walleij	bool "TPS6586X GPIO"
1303be9cab5bSLinus Walleij	depends on MFD_TPS6586X
1304be9cab5bSLinus Walleij	help
1305be9cab5bSLinus Walleij	  Select this option to enable GPIO driver for the TPS6586X
1306be9cab5bSLinus Walleij	  chip family.
1307be9cab5bSLinus Walleij
1308be9cab5bSLinus Walleijconfig GPIO_TPS65910
1309be9cab5bSLinus Walleij	bool "TPS65910 GPIO"
1310be9cab5bSLinus Walleij	depends on MFD_TPS65910
1311be9cab5bSLinus Walleij	help
1312be9cab5bSLinus Walleij	  Select this option to enable GPIO driver for the TPS65910
1313be9cab5bSLinus Walleij	  chip family.
1314be9cab5bSLinus Walleij
1315668a6cc7SMargarita Olayaconfig GPIO_TPS65912
1316668a6cc7SMargarita Olaya	tristate "TI TPS65912 GPIO"
1317ca801a22SAndrew F. Davis	depends on MFD_TPS65912
1318668a6cc7SMargarita Olaya	help
1319668a6cc7SMargarita Olaya	  This driver supports TPS65912 gpio chip
1320668a6cc7SMargarita Olaya
1321275b13a6SRajmohan Maniconfig GPIO_TPS68470
1322275b13a6SRajmohan Mani	bool "TPS68470 GPIO"
1323275b13a6SRajmohan Mani	depends on MFD_TPS68470
1324275b13a6SRajmohan Mani	help
1325275b13a6SRajmohan Mani	  Select this option to enable GPIO driver for the TPS68470
1326275b13a6SRajmohan Mani	  chip family.
1327275b13a6SRajmohan Mani	  There are 7 GPIOs and few sensor related GPIOs supported
1328275b13a6SRajmohan Mani	  by the TPS68470. While the 7 GPIOs can be configured as
1329275b13a6SRajmohan Mani	  input or output as appropriate, the sensor related GPIOs
1330275b13a6SRajmohan Mani	  are "output only" GPIOs.
1331275b13a6SRajmohan Mani
1332275b13a6SRajmohan Mani	  This driver config is bool, as the GPIO functionality
1333275b13a6SRajmohan Mani	  of the TPS68470 must be available before dependent
1334275b13a6SRajmohan Mani	  drivers are loaded.
1335275b13a6SRajmohan Mani
1336b868db94SAndrew Lunnconfig GPIO_TQMX86
1337b868db94SAndrew Lunn	tristate "TQ-Systems QTMX86 GPIO"
1338b868db94SAndrew Lunn	depends on MFD_TQMX86 || COMPILE_TEST
1339b868db94SAndrew Lunn	select GPIOLIB_IRQCHIP
1340b868db94SAndrew Lunn	help
1341b868db94SAndrew Lunn	  This driver supports GPIO on the TQMX86 IO controller.
1342b868db94SAndrew Lunn
1343e9d35947SDavid Brownellconfig GPIO_TWL4030
1344e9d35947SDavid Brownell	tristate "TWL4030, TWL5030, and TPS659x0 GPIOs"
1345e9d35947SDavid Brownell	depends on TWL4030_CORE
1346e9d35947SDavid Brownell	help
1347e9d35947SDavid Brownell	  Say yes here to access the GPIO signals of various multi-function
1348e9d35947SDavid Brownell	  power management chips from Texas Instruments.
1349e9d35947SDavid Brownell
135070ffd691SPeter Ujfalusiconfig GPIO_TWL6040
135170ffd691SPeter Ujfalusi	tristate "TWL6040 GPO"
135270ffd691SPeter Ujfalusi	depends on TWL6040_CORE
135370ffd691SPeter Ujfalusi	help
135470ffd691SPeter Ujfalusi	  Say yes here to access the GPO signals of twl6040
135570ffd691SPeter Ujfalusi	  audio chip from Texas Instruments.
135670ffd691SPeter Ujfalusi
1357be9cab5bSLinus Walleijconfig GPIO_UCB1400
1358be9cab5bSLinus Walleij	tristate "Philips UCB1400 GPIO"
1359be9cab5bSLinus Walleij	depends on UCB1400_CORE
1360be9cab5bSLinus Walleij	help
1361be9cab5bSLinus Walleij	  This enables support for the Philips UCB1400 GPIO pins.
1362be9cab5bSLinus Walleij	  The UCB1400 is an AC97 audio codec.
1363be9cab5bSLinus Walleij
13640ba19cfcSBin Gaoconfig GPIO_WHISKEY_COVE
13650ba19cfcSBin Gao	tristate "GPIO support for Whiskey Cove PMIC"
1366b5238b41SAndy Shevchenko	depends on (X86 || COMPILE_TEST) && INTEL_SOC_PMIC_BXTWC
13670ba19cfcSBin Gao	select GPIOLIB_IRQCHIP
13680ba19cfcSBin Gao	help
13690ba19cfcSBin Gao	  Support for GPIO pins on Whiskey Cove PMIC.
13700ba19cfcSBin Gao
13710ba19cfcSBin Gao	  Say Yes if you have a Intel SoC based tablet with Whiskey Cove PMIC
13720ba19cfcSBin Gao	  inside.
13730ba19cfcSBin Gao
13740ba19cfcSBin Gao	  This driver can also be built as a module. If so, the module will be
13750ba19cfcSBin Gao	  called gpio-wcove.
13760ba19cfcSBin Gao
1377e4b736f1SMark Brownconfig GPIO_WM831X
1378e4b736f1SMark Brown	tristate "WM831x GPIOs"
1379e4b736f1SMark Brown	depends on MFD_WM831X
1380e4b736f1SMark Brown	help
1381e4b736f1SMark Brown	  Say yes here to access the GPIO signals of WM831x power management
1382e4b736f1SMark Brown	  chips from Wolfson Microelectronics.
1383e4b736f1SMark Brown
138438f6ce45SMark Brownconfig GPIO_WM8350
138538f6ce45SMark Brown	tristate "WM8350 GPIOs"
138638f6ce45SMark Brown	depends on MFD_WM8350
138738f6ce45SMark Brown	help
138838f6ce45SMark Brown	  Say yes here to access the GPIO signals of WM8350 power management
138938f6ce45SMark Brown	  chips from Wolfson Microelectronics.
139038f6ce45SMark Brown
13912955c309SMark Brownconfig GPIO_WM8994
13922955c309SMark Brown	tristate "WM8994 GPIOs"
13932955c309SMark Brown	depends on MFD_WM8994
13942955c309SMark Brown	help
13952955c309SMark Brown	  Say yes here to access the GPIO signals of WM8994 audio hub
13962955c309SMark Brown	  CODECs from Wolfson Microelectronics.
13972955c309SMark Brown
1398177b0381SLinus Walleijendmenu
1399177b0381SLinus Walleij
1400177b0381SLinus Walleijmenu "PCI GPIO expanders"
1401177b0381SLinus Walleij	depends on PCI
1402ff1d5c2fSMichael Buesch
140392c33ef7SLinus Walleijconfig GPIO_AMD8111
140492c33ef7SLinus Walleij	tristate "AMD 8111 GPIO driver"
140572aba2e2SPeter Robinson	depends on X86 || COMPILE_TEST
1406ff1d5c2fSMichael Buesch	help
140792c33ef7SLinus Walleij	  The AMD 8111 south bridge contains 32 GPIO pins which can be used.
14085f0a96b0SAndres Salomon
140992c33ef7SLinus Walleij	  Note, that usually system firmware/ACPI handles GPIO pins on their
141092c33ef7SLinus Walleij	  own and users might easily break their systems with uncarefull usage
141192c33ef7SLinus Walleij	  of this driver!
1412ff1d5c2fSMichael Buesch
141392c33ef7SLinus Walleij	  If unsure, say N
14145f0a96b0SAndres Salomon
1415ff1d5c2fSMichael Bueschconfig GPIO_BT8XX
1416ff1d5c2fSMichael Buesch	tristate "BT8XX GPIO abuser"
141703744529SAndrew F. Davis	depends on VIDEO_BT848=n
1418ff1d5c2fSMichael Buesch	help
141922520edcSGeert Uytterhoeven	  The BT8xx frame grabber chip has 24 GPIO pins that can be abused
1420ff1d5c2fSMichael Buesch	  as a cheap PCI GPIO card.
1421ff1d5c2fSMichael Buesch
1422ff1d5c2fSMichael Buesch	  This chip can be found on Miro, Hauppauge and STB TV-cards.
1423ff1d5c2fSMichael Buesch
1424ff1d5c2fSMichael Buesch	  The card needs to be physically altered for using it as a
1425ff1d5c2fSMichael Buesch	  GPIO card. For more information on how to build a GPIO card
1426ff1d5c2fSMichael Buesch	  from a BT8xx TV card, see the documentation file at
14275f07224eSJonathan Neuschäfer	  Documentation/driver-api/gpio/bt8xxgpio.rst
1428ff1d5c2fSMichael Buesch
1429ff1d5c2fSMichael Buesch	  If unsure, say N.
1430ff1d5c2fSMichael Buesch
143184743ea3SDavid Cohenconfig GPIO_INTEL_MID
1432c78e3cf1SAndy Shevchenko	bool "Intel MID GPIO support"
1433c78e3cf1SAndy Shevchenko	depends on X86_INTEL_MID
1434fc346270SLinus Walleij	select GPIOLIB_IRQCHIP
14358bf02617SAlek Du	help
1436c78e3cf1SAndy Shevchenko	  Say Y here to support Intel MID GPIO.
14378bf02617SAlek Du
1438ccf6fd6dSAndy Shevchenkoconfig GPIO_MERRIFIELD
1439ccf6fd6dSAndy Shevchenko	tristate "Intel Merrifield GPIO support"
1440ccf6fd6dSAndy Shevchenko	depends on X86_INTEL_MID
1441ccf6fd6dSAndy Shevchenko	select GPIOLIB_IRQCHIP
1442ccf6fd6dSAndy Shevchenko	help
1443ccf6fd6dSAndy Shevchenko	  Say Y here to support Intel Merrifield GPIO.
14440c36ec31SJuergen Beisert
1445c78c42d7SShravan Kumar Ramaniconfig GPIO_MLXBF
1446c78c42d7SShravan Kumar Ramani	tristate "Mellanox BlueField SoC GPIO"
1447cbe706b0SShravan Kumar Ramani	depends on (MELLANOX_PLATFORM && ARM64 && ACPI) || (64BIT && COMPILE_TEST)
1448c78c42d7SShravan Kumar Ramani	select GPIO_GENERIC
1449c78c42d7SShravan Kumar Ramani	help
1450c78c42d7SShravan Kumar Ramani	  Say Y here if you want GPIO support on Mellanox BlueField SoC.
1451c78c42d7SShravan Kumar Ramani
1452bc0ae0e7SAsmaa Mnebhiconfig GPIO_MLXBF2
1453bc0ae0e7SAsmaa Mnebhi	tristate "Mellanox BlueField 2 SoC GPIO"
1454bc0ae0e7SAsmaa Mnebhi	depends on (MELLANOX_PLATFORM && ARM64 && ACPI) || (64BIT && COMPILE_TEST)
1455bc0ae0e7SAsmaa Mnebhi	select GPIO_GENERIC
1456bc0ae0e7SAsmaa Mnebhi	help
1457bc0ae0e7SAsmaa Mnebhi	  Say Y here if you want GPIO support on Mellanox BlueField 2 SoC.
1458bc0ae0e7SAsmaa Mnebhi
145992c33ef7SLinus Walleijconfig GPIO_ML_IOH
146092c33ef7SLinus Walleij	tristate "OKI SEMICONDUCTOR ML7213 IOH GPIO support"
146172aba2e2SPeter Robinson	depends on X86 || COMPILE_TEST
146292c33ef7SLinus Walleij	select GENERIC_IRQ_CHIP
146392c33ef7SLinus Walleij	help
146492c33ef7SLinus Walleij	  ML7213 is companion chip for Intel Atom E6xx series.
146592c33ef7SLinus Walleij	  This driver can be used for OKI SEMICONDUCTOR ML7213 IOH(Input/Output
146692c33ef7SLinus Walleij	  Hub) which is for IVI(In-Vehicle Infotainment) use.
146792c33ef7SLinus Walleij	  This driver can access the IOH's GPIO device.
146892c33ef7SLinus Walleij
146904c17aa8STomoya MORINAGAconfig GPIO_PCH
1470868fea05STomoya MORINAGA	tristate "Intel EG20T PCH/LAPIS Semiconductor IOH(ML7223/ML7831) GPIO"
147103744529SAndrew F. Davis	depends on X86_32 || MIPS || COMPILE_TEST
147238eb18a6STomoya MORINAGA	select GENERIC_IRQ_CHIP
147304c17aa8STomoya MORINAGA	help
147404c17aa8STomoya MORINAGA	  This driver is for PCH(Platform controller Hub) GPIO of Intel Topcliff
147504c17aa8STomoya MORINAGA	  which is an IOH(Input/Output Hub) for x86 embedded processor.
147604c17aa8STomoya MORINAGA	  This driver can access PCH GPIO device.
147704c17aa8STomoya MORINAGA
1478868fea05STomoya MORINAGA	  This driver also can be used for LAPIS Semiconductor IOH(Input/
1479868fea05STomoya MORINAGA	  Output Hub), ML7223 and ML7831.
1480bc786cceSTomoya MORINAGA	  ML7223 IOH is for MP(Media Phone) use.
1481868fea05STomoya MORINAGA	  ML7831 IOH is for general purpose use.
1482868fea05STomoya MORINAGA	  ML7223/ML7831 is companion chip for Intel Atom E6xx series.
1483868fea05STomoya MORINAGA	  ML7223/ML7831 is completely compatible for Intel EG20T PCH.
1484bc786cceSTomoya MORINAGA
148502e74fc0SWilliam Breathitt Grayconfig GPIO_PCI_IDIO_16
148602e74fc0SWilliam Breathitt Gray	tristate "ACCES PCI-IDIO-16 GPIO support"
148702e74fc0SWilliam Breathitt Gray	select GPIOLIB_IRQCHIP
148802e74fc0SWilliam Breathitt Gray	help
148902e74fc0SWilliam Breathitt Gray	  Enables GPIO support for the ACCES PCI-IDIO-16. An interrupt is
149002e74fc0SWilliam Breathitt Gray	  generated when any of the inputs change state (low to high or high to
149102e74fc0SWilliam Breathitt Gray	  low). Input filter control is not supported by this driver, and the
149202e74fc0SWilliam Breathitt Gray	  input filters are deactivated by this driver.
149302e74fc0SWilliam Breathitt Gray
149458556204SWilliam Breathitt Grayconfig GPIO_PCIE_IDIO_24
149558556204SWilliam Breathitt Gray	tristate "ACCES PCIe-IDIO-24 GPIO support"
149658556204SWilliam Breathitt Gray	select GPIOLIB_IRQCHIP
149758556204SWilliam Breathitt Gray	help
149858556204SWilliam Breathitt Gray	  Enables GPIO support for the ACCES PCIe-IDIO-24 family (PCIe-IDIO-24,
149958556204SWilliam Breathitt Gray	  PCIe-IDI-24, PCIe-IDO-24, PCIe-IDIO-12). An interrupt is generated
150058556204SWilliam Breathitt Gray	  when any of the inputs change state (low to high or high to low).
150158556204SWilliam Breathitt Gray	  Input filter control is not supported by this driver, and the input
150258556204SWilliam Breathitt Gray	  filters are deactivated by this driver.
150358556204SWilliam Breathitt Gray
15049956d02dSFlorian Fainelliconfig GPIO_RDC321X
15059956d02dSFlorian Fainelli	tristate "RDC R-321x GPIO support"
1506e4be3cb7SRandy Dunlap	select MFD_CORE
15079956d02dSFlorian Fainelli	select MFD_RDC321X
15089956d02dSFlorian Fainelli	help
15099956d02dSFlorian Fainelli	  Support for the RDC R321x SoC GPIOs over southbridge
15109956d02dSFlorian Fainelli	  PCI configuration space.
15119956d02dSFlorian Fainelli
151235570ac6SRichard Röjforsconfig GPIO_SODAVILLE
1513a9c5fff5SDavid Brownell	bool "Intel Sodaville GPIO support"
151403744529SAndrew F. Davis	depends on X86 && OF
15150c36ec31SJuergen Beisert	select GPIO_GENERIC
15160c36ec31SJuergen Beisert	select GENERIC_IRQ_CHIP
1517e952805dSWolfram Sang	help
15180c36ec31SJuergen Beisert	  Say Y here to support Intel Sodaville GPIO.
1519e952805dSWolfram Sang
1520177b0381SLinus Walleijendmenu
1521e58b9e27SDavid Brownell
1522177b0381SLinus Walleijmenu "SPI GPIO expanders"
1523177b0381SLinus Walleij	depends on SPI_MASTER
1524e58b9e27SDavid Brownell
1525a7ec2e7fSLinus Walleijconfig GPIO_74X164
1526a7ec2e7fSLinus Walleij	tristate "74x164 serial-in/parallel-out 8-bits shift register"
1527048c28c9SLinus Walleij	depends on OF_GPIO
1528a7ec2e7fSLinus Walleij	help
1529a7ec2e7fSLinus Walleij	  Driver for 74x164 compatible serial-in/parallel-out 8-outputs
1530a7ec2e7fSLinus Walleij	  shift registers. This driver can be used to provide access
1531a7ec2e7fSLinus Walleij	  to more gpio outputs.
1532e58b9e27SDavid Brownell
1533b2f68edfSLukas Wunnerconfig GPIO_MAX3191X
1534b2f68edfSLukas Wunner	tristate "Maxim MAX3191x industrial serializer"
1535b2f68edfSLukas Wunner	select CRC8
1536b2f68edfSLukas Wunner	help
1537b2f68edfSLukas Wunner	  GPIO driver for Maxim MAX31910, MAX31911, MAX31912, MAX31913,
1538b2f68edfSLukas Wunner	  MAX31953 and MAX31963 industrial serializer, a daisy-chainable
1539b2f68edfSLukas Wunner	  chip to make 8 digital 24V inputs available via SPI.  Supports
1540b2f68edfSLukas Wunner	  CRC checksums to guard against electromagnetic interference,
1541b2f68edfSLukas Wunner	  as well as undervoltage and overtemperature detection.
1542b2f68edfSLukas Wunner
1543e58b9e27SDavid Brownellconfig GPIO_MAX7301
1544e58b9e27SDavid Brownell	tristate "Maxim MAX7301 GPIO expander"
15451e5db006SRichard Röjfors	select GPIO_MAX730X
15461e5db006SRichard Röjfors	help
15471e5db006SRichard Röjfors	  GPIO driver for Maxim MAX7301 SPI-based GPIO expander.
15481e5db006SRichard Röjfors
15490963670aSLinus Walleijconfig GPIO_MC33880
15500963670aSLinus Walleij	tristate "Freescale MC33880 high-side/low-side switch"
15510963670aSLinus Walleij	help
15520963670aSLinus Walleij	  SPI driver for Freescale MC33880 high-side/low-side switch.
15530963670aSLinus Walleij	  This provides GPIO interface supporting inputs and outputs.
15540963670aSLinus Walleij
1555df6df93cSAndrew F. Davisconfig GPIO_PISOSR
1556df6df93cSAndrew F. Davis	tristate "Generic parallel-in/serial-out shift register"
1557df6df93cSAndrew F. Davis	help
1558df6df93cSAndrew F. Davis	  GPIO driver for SPI compatible parallel-in/serial-out shift
1559df6df93cSAndrew F. Davis	  registers. These are input only devices.
1560df6df93cSAndrew F. Davis
15615704520dSNandor Hanconfig GPIO_XRA1403
15625704520dSNandor Han	tristate "EXAR XRA1403 16-bit GPIO expander"
1563665dff99SArnd Bergmann	select REGMAP_SPI
15645704520dSNandor Han	help
15655704520dSNandor Han	  GPIO driver for EXAR XRA1403 16-bit SPI-based GPIO expander.
15665704520dSNandor Han
1567856ed97aSMarek Behúnconfig GPIO_MOXTET
1568856ed97aSMarek Behún	tristate "Turris Mox Moxtet bus GPIO expander"
1569856ed97aSMarek Behún	depends on MOXTET
1570856ed97aSMarek Behún	help
1571856ed97aSMarek Behún	  Say yes here if you are building for the Turris Mox router.
1572856ed97aSMarek Behún	  This is the driver needed for configuring the GPIOs via the Moxtet
1573856ed97aSMarek Behún	  bus. For example the Mox module with SFP cage needs this driver
1574856ed97aSMarek Behún	  so that phylink can use corresponding GPIOs.
1575856ed97aSMarek Behún
15760963670aSLinus Walleijendmenu
15770963670aSLinus Walleij
1578177b0381SLinus Walleijmenu "USB GPIO expanders"
1579177b0381SLinus Walleij	depends on USB
15809d5b72deSLars Poeschel
15819d5b72deSLars Poeschelconfig GPIO_VIPERBOARD
15829d5b72deSLars Poeschel	tristate "Viperboard GPIO a & b support"
158303744529SAndrew F. Davis	depends on MFD_VIPERBOARD
15849d5b72deSLars Poeschel	help
15859d5b72deSLars Poeschel	  Say yes here to access the GPIO signals of Nano River
15869d5b72deSLars Poeschel	  Technologies Viperboard. There are two GPIO chips on the
15879d5b72deSLars Poeschel	  board: gpioa and gpiob.
15889d5b72deSLars Poeschel	  See viperboard API specification and Nano
15899d5b72deSLars Poeschel	  River Tech's viperboard.h for detailed meaning
15909d5b72deSLars Poeschel	  of the module parameters.
15919d5b72deSLars Poeschel
1592177b0381SLinus Walleijendmenu
15936732127fSDaniel Baluta
1594828546e2SGeert Uytterhoevenconfig GPIO_AGGREGATOR
1595828546e2SGeert Uytterhoeven	tristate "GPIO Aggregator"
1596828546e2SGeert Uytterhoeven	help
1597828546e2SGeert Uytterhoeven	  Say yes here to enable the GPIO Aggregator, which provides a way to
1598828546e2SGeert Uytterhoeven	  aggregate existing GPIO lines into a new virtual GPIO chip.
1599828546e2SGeert Uytterhoeven	  This can serve the following purposes:
1600828546e2SGeert Uytterhoeven	    - Assign permissions for a collection of GPIO lines to a user,
1601828546e2SGeert Uytterhoeven	    - Export a collection of GPIO lines to a virtual machine,
1602828546e2SGeert Uytterhoeven	    - Provide a generic driver for a GPIO-operated device in an
1603828546e2SGeert Uytterhoeven	      industrial control context, to be operated from userspace using
1604828546e2SGeert Uytterhoeven	      the GPIO chardev interface.
1605828546e2SGeert Uytterhoeven
16066e4484eeSBartosz Golaszewskiconfig GPIO_MOCKUP
16076e4484eeSBartosz Golaszewski	tristate "GPIO Testing Driver"
16086e4484eeSBartosz Golaszewski	select IRQ_SIM
16096e4484eeSBartosz Golaszewski	help
16106e4484eeSBartosz Golaszewski	  This enables GPIO Testing driver, which provides a way to test GPIO
16116e4484eeSBartosz Golaszewski	  subsystem through sysfs(or char device) and debugfs. GPIO_SYSFS
16126e4484eeSBartosz Golaszewski	  must be selected for this test.
16136e4484eeSBartosz Golaszewski	  User could use it through the script in
16146e4484eeSBartosz Golaszewski	  tools/testing/selftests/gpio/gpio-mockup.sh. Reference the usage in
16156e4484eeSBartosz Golaszewski	  it.
16166e4484eeSBartosz Golaszewski
16177444a72eSMichael Bueschendif
1618