xref: /linux/drivers/gpio/Kconfig (revision 2a36550567307b881ce570a81189682ae1c9d08d)
1# SPDX-License-Identifier: GPL-2.0-only
2#
3# GPIO infrastructure and drivers
4#
5
6config 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
14menuconfig GPIOLIB
15	bool "GPIO Support"
16	help
17	  This enables GPIO support through the generic GPIO library.
18	  You only need to enable this, if you also want to enable
19	  one or more of the GPIO drivers below.
20
21	  If unsure, say N.
22
23if GPIOLIB
24
25config GPIOLIB_FASTPATH_LIMIT
26	int "Maximum number of GPIOs for fast path"
27	range 32 512
28	default 512
29	help
30	  This adjusts the point at which certain APIs will switch from
31	  using a stack allocated buffer to a dynamically allocated buffer.
32
33	  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.
36
37config OF_GPIO
38	def_bool y
39	depends on OF
40	depends on HAS_IOMEM
41
42config GPIO_ACPI
43	def_bool y
44	depends on ACPI
45
46config GPIOLIB_IRQCHIP
47	select IRQ_DOMAIN
48	bool
49
50config 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.
55	  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
58	  slower.  The diagnostics help catch the type of setup errors
59	  that are most common when setting up new platforms or boards.
60
61config GPIO_SYSFS
62	bool "/sys/class/gpio/... (sysfs interface)"
63	depends on SYSFS
64	help
65	  Say Y here to add the legacy sysfs interface for GPIOs.
66
67	  This ABI is deprecated. If you want to use GPIO from userspace,
68	  use the character device /dev/gpiochipN with the appropriate
69	  ioctl() operations instead. The character device is always
70	  available.
71
72config GPIO_GENERIC
73	depends on HAS_IOMEM # Only for IOMEM drivers
74	tristate
75
76# put drivers in the right section, in alphabetical order
77
78# This symbol is selected by both I2C and SPI expanders
79config GPIO_MAX730X
80	tristate
81
82menu "Memory mapped GPIO drivers"
83	depends on HAS_IOMEM
84
85config GPIO_74XX_MMIO
86	tristate "GPIO driver for 74xx-ICs with MMIO access"
87	depends on OF_GPIO
88	select GPIO_GENERIC
89	help
90	  Say yes here to support GPIO functionality for 74xx-compatible ICs
91	  with MMIO access. Compatible models include:
92	    1 bit:	741G125 (Input), 741G74 (Output)
93	    2 bits:	742G125 (Input), 7474 (Output)
94	    4 bits:	74125 (Input), 74175 (Output)
95	    6 bits:	74365 (Input), 74174 (Output)
96	    8 bits:	74244 (Input), 74273 (Output)
97	    16 bits:	741624 (Input), 7416374 (Output)
98
99config GPIO_ALTERA
100	tristate "Altera GPIO"
101	depends on OF_GPIO
102	select GPIOLIB_IRQCHIP
103	help
104	  Say Y or M here to build support for the Altera PIO device.
105
106	  If driver is built as a module it will be called gpio-altera.
107
108config GPIO_AMDPT
109	tristate "AMD Promontory GPIO support"
110	depends on ACPI
111	select GPIO_GENERIC
112	help
113	  driver for GPIO functionality on Promontory IOHub
114	  Require ACPI ASL code to enumerate as a platform device.
115
116config GPIO_ASPEED
117	tristate "Aspeed GPIO support"
118	depends on (ARCH_ASPEED || COMPILE_TEST) && OF_GPIO
119	select GPIOLIB_IRQCHIP
120	help
121	  Say Y here to support Aspeed AST2400 and AST2500 GPIO controllers.
122
123config GPIO_ASPEED_SGPIO
124	bool "Aspeed SGPIO support"
125	depends on (ARCH_ASPEED || COMPILE_TEST) && OF_GPIO
126	select GPIO_GENERIC
127	select GPIOLIB_IRQCHIP
128	help
129	  Say Y here to support Aspeed AST2500 SGPIO functionality.
130
131config GPIO_ATH79
132	tristate "Atheros AR71XX/AR724X/AR913X GPIO support"
133	default y if ATH79
134	depends on ATH79 || COMPILE_TEST
135	select GPIO_GENERIC
136	select GPIOLIB_IRQCHIP
137	help
138	  Select this option to enable GPIO driver for
139	  Atheros AR71XX/AR724X/AR913X SoC devices.
140
141config GPIO_RASPBERRYPI_EXP
142	tristate "Raspberry Pi 3 GPIO Expander"
143	default RASPBERRYPI_FIRMWARE
144	depends on OF_GPIO
145	# Make sure not 'y' when RASPBERRYPI_FIRMWARE is 'm'. This can only
146	# happen when COMPILE_TEST=y, hence the added !RASPBERRYPI_FIRMWARE.
147	depends on (ARCH_BCM2835 && RASPBERRYPI_FIRMWARE) || (COMPILE_TEST && !RASPBERRYPI_FIRMWARE)
148	help
149	  Turn on GPIO support for the expander on Raspberry Pi 3 boards, using
150	  the firmware mailbox to communicate with VideoCore on BCM283x chips.
151
152config GPIO_BCM_KONA
153	bool "Broadcom Kona GPIO"
154	depends on OF_GPIO && (ARCH_BCM_MOBILE || COMPILE_TEST)
155	help
156	  Turn on GPIO support for Broadcom "Kona" chips.
157
158config GPIO_BRCMSTB
159	tristate "BRCMSTB GPIO support"
160	default y if (ARCH_BRCMSTB || BMIPS_GENERIC)
161	depends on OF_GPIO && (ARCH_BRCMSTB || BMIPS_GENERIC || COMPILE_TEST)
162	select GPIO_GENERIC
163	select IRQ_DOMAIN
164	help
165	  Say yes here to enable GPIO support for Broadcom STB (BCM7XXX) SoCs.
166
167config GPIO_CADENCE
168	tristate "Cadence GPIO support"
169	depends on OF_GPIO
170	select GPIO_GENERIC
171	select GPIOLIB_IRQCHIP
172	help
173	  Say yes here to enable support for Cadence GPIO controller.
174
175config GPIO_CLPS711X
176	tristate "CLPS711X GPIO support"
177	depends on ARCH_CLPS711X || COMPILE_TEST
178	select GPIO_GENERIC
179	help
180	  Say yes here to support GPIO on CLPS711X SoCs.
181
182config GPIO_DAVINCI
183	bool "TI Davinci/Keystone GPIO support"
184	default y if ARCH_DAVINCI
185	depends on (ARM || ARM64) && (ARCH_DAVINCI || ARCH_KEYSTONE || ARCH_K3)
186	help
187	  Say yes here to enable GPIO support for TI Davinci/Keystone SoCs.
188
189config GPIO_DWAPB
190	tristate "Synopsys DesignWare APB GPIO driver"
191	select GPIO_GENERIC
192	select GENERIC_IRQ_CHIP
193	help
194	  Say Y or M here to build support for the Synopsys DesignWare APB
195	  GPIO block.
196
197config GPIO_EIC_SPRD
198	tristate "Spreadtrum EIC support"
199	depends on ARCH_SPRD || COMPILE_TEST
200	depends on OF_GPIO
201	select GPIOLIB_IRQCHIP
202	help
203	  Say yes here to support Spreadtrum EIC device.
204
205config GPIO_EM
206	tristate "Emma Mobile GPIO"
207	depends on (ARCH_EMEV2 || COMPILE_TEST) && OF_GPIO
208	help
209	  Say yes here to support GPIO on Renesas Emma Mobile SoCs.
210
211config GPIO_EP93XX
212	def_bool y
213	depends on ARCH_EP93XX
214	select GPIO_GENERIC
215	select GPIOLIB_IRQCHIP
216
217config GPIO_EXAR
218	tristate "Support for GPIO pins on XR17V352/354/358"
219	depends on SERIAL_8250_EXAR
220	help
221	  Selecting this option will enable handling of GPIO pins present
222	  on Exar XR17V352/354/358 chips.
223
224config GPIO_GE_FPGA
225	bool "GE FPGA based GPIO"
226	depends on GE_FPGA
227	select GPIO_GENERIC
228	help
229	  Support for common GPIO functionality provided on some GE Single Board
230	  Computers.
231
232	  This driver provides basic support (configure as input or output, read
233	  and write pin state) for GPIO implemented in a number of GE single
234	  board computers.
235
236config GPIO_FTGPIO010
237	bool "Faraday FTGPIO010 GPIO"
238	depends on OF_GPIO
239	select GPIO_GENERIC
240	select GPIOLIB_IRQCHIP
241	default (ARCH_GEMINI || ARCH_MOXART)
242	help
243	  Support for common GPIOs from the Faraday FTGPIO010 IP core, found in
244	  Cortina systems Gemini platforms, Moxa ART and others.
245
246config GPIO_GENERIC_PLATFORM
247	tristate "Generic memory-mapped GPIO controller support (MMIO platform device)"
248	select GPIO_GENERIC
249	help
250	  Say yes here to support basic platform_device memory-mapped GPIO controllers.
251
252config GPIO_GRGPIO
253	tristate "Aeroflex Gaisler GRGPIO support"
254	depends on OF_GPIO
255	select GPIO_GENERIC
256	select IRQ_DOMAIN
257	help
258	  Select this to support Aeroflex Gaisler GRGPIO cores from the GRLIB
259	  VHDL IP core library.
260
261config GPIO_HLWD
262	tristate "Nintendo Wii (Hollywood) GPIO"
263	depends on OF_GPIO
264	select GPIO_GENERIC
265	select GPIOLIB_IRQCHIP
266	help
267	  Select this to support the GPIO controller of the Nintendo Wii.
268
269	  If unsure, say N.
270
271config GPIO_ICH
272	tristate "Intel ICH GPIO"
273	depends on PCI && X86
274	select MFD_CORE
275	select LPC_ICH
276	help
277	  Say yes here to support the GPIO functionality of a number of Intel
278	  ICH-based chipsets.  Currently supported devices: ICH6, ICH7, ICH8
279	  ICH9, ICH10, Series 5/3400 (eg Ibex Peak), Series 6/C200 (eg
280	  Cougar Point), NM10 (Tiger Point), and 3100 (Whitmore Lake).
281
282	  If unsure, say N.
283
284config GPIO_IOP
285	tristate "Intel IOP GPIO"
286	depends on ARCH_IOP32X || COMPILE_TEST
287	select GPIO_GENERIC
288	help
289	  Say yes here to support the GPIO functionality of a number of Intel
290	  IOP32X or IOP33X.
291
292	  If unsure, say N.
293
294config GPIO_IXP4XX
295	bool "Intel IXP4xx GPIO"
296	depends on ARM # For <asm/mach-types.h>
297	depends on ARCH_IXP4XX
298	select GPIO_GENERIC
299	select GPIOLIB_IRQCHIP
300	select IRQ_DOMAIN_HIERARCHY
301	help
302	  Say yes here to support the GPIO functionality of a number of Intel
303	  IXP4xx series of chips.
304
305	  If unsure, say N.
306
307config GPIO_LOONGSON
308	bool "Loongson-2/3 GPIO support"
309	depends on CPU_LOONGSON2 || CPU_LOONGSON3
310	help
311	  driver for GPIO functionality on Loongson-2F/3A/3B processors.
312
313config GPIO_LPC18XX
314	tristate "NXP LPC18XX/43XX GPIO support"
315	default y if ARCH_LPC18XX
316	depends on OF_GPIO && (ARCH_LPC18XX || COMPILE_TEST)
317	select IRQ_DOMAIN_HIERARCHY
318	help
319	  Select this option to enable GPIO driver for
320	  NXP LPC18XX/43XX devices.
321
322config GPIO_LPC32XX
323	tristate "NXP LPC32XX GPIO support"
324	depends on OF_GPIO && (ARCH_LPC32XX || COMPILE_TEST)
325	help
326	  Select this option to enable GPIO driver for
327	  NXP LPC32XX devices.
328
329config GPIO_LYNXPOINT
330	tristate "Intel Lynxpoint GPIO support"
331	depends on ACPI && X86
332	select GPIOLIB_IRQCHIP
333	help
334	  driver for GPIO functionality on Intel Lynxpoint PCH chipset
335	  Requires ACPI device enumeration code to set up a platform device.
336
337config GPIO_MB86S7X
338	tristate "GPIO support for Fujitsu MB86S7x Platforms"
339	help
340	  Say yes here to support the GPIO controller in Fujitsu MB86S70 SoCs.
341
342config GPIO_MENZ127
343	tristate "MEN 16Z127 GPIO support"
344	depends on MCB
345	select GPIO_GENERIC
346	help
347	  Say yes here to support the MEN 16Z127 GPIO Controller
348
349config GPIO_MM_LANTIQ
350	bool "Lantiq Memory mapped GPIOs"
351	depends on LANTIQ && SOC_XWAY
352	help
353	  This enables support for memory mapped GPIOs on the External Bus Unit
354	  (EBU) found on Lantiq SoCs. The gpios are output only as they are
355	  created by attaching a 16bit latch to the bus.
356
357config GPIO_MPC5200
358	def_bool y
359	depends on PPC_MPC52xx
360
361config GPIO_MPC8XXX
362	bool "MPC512x/MPC8xxx/QorIQ GPIO support"
363	depends on PPC_MPC512x || PPC_MPC831x || PPC_MPC834x || PPC_MPC837x || \
364		   FSL_SOC_BOOKE || PPC_86xx || ARCH_LAYERSCAPE || ARM || \
365		   COMPILE_TEST
366	select GPIO_GENERIC
367	select IRQ_DOMAIN
368	help
369	  Say Y here if you're going to use hardware that connects to the
370	  MPC512x/831x/834x/837x/8572/8610/QorIQ GPIOs.
371
372config GPIO_MT7621
373	bool "Mediatek MT7621 GPIO Support"
374	depends on SOC_MT7620 || SOC_MT7621 || COMPILE_TEST
375	depends on OF_GPIO
376	select GPIO_GENERIC
377	select GPIOLIB_IRQCHIP
378	help
379	  Say yes here to support the Mediatek MT7621 SoC GPIO device
380
381config GPIO_MVEBU
382	def_bool y
383	depends on PLAT_ORION || ARCH_MVEBU
384	depends on OF_GPIO
385	select GENERIC_IRQ_CHIP
386	select REGMAP_MMIO
387
388config GPIO_MXC
389	def_bool y
390	depends on ARCH_MXC
391	select GPIO_GENERIC
392	select GENERIC_IRQ_CHIP
393
394config GPIO_MXS
395	def_bool y
396	depends on ARCH_MXS
397	select GPIO_GENERIC
398	select GENERIC_IRQ_CHIP
399
400config GPIO_OCTEON
401	tristate "Cavium OCTEON GPIO"
402	depends on GPIOLIB && CAVIUM_OCTEON_SOC
403	default y
404	help
405	  Say yes here to support the on-chip GPIO lines on the OCTEON
406	  family of SOCs.
407
408config GPIO_OMAP
409	tristate "TI OMAP GPIO support" if ARCH_OMAP2PLUS || COMPILE_TEST
410	default y if ARCH_OMAP
411	depends on ARM
412	select GENERIC_IRQ_CHIP
413	select GPIOLIB_IRQCHIP
414	help
415	  Say yes here to enable GPIO support for TI OMAP SoCs.
416
417config GPIO_PL061
418	bool "PrimeCell PL061 GPIO support"
419	depends on ARM_AMBA
420	select IRQ_DOMAIN
421	select GPIOLIB_IRQCHIP
422	help
423	  Say yes here to support the PrimeCell PL061 GPIO device
424
425config GPIO_PMIC_EIC_SPRD
426	tristate "Spreadtrum PMIC EIC support"
427	depends on MFD_SC27XX_PMIC || COMPILE_TEST
428	depends on OF_GPIO
429	select GPIOLIB_IRQCHIP
430	help
431	  Say yes here to support Spreadtrum PMIC EIC device.
432
433config GPIO_PXA
434	bool "PXA GPIO support"
435	depends on ARCH_PXA || ARCH_MMP
436	help
437	  Say yes here to support the PXA GPIO device
438
439config GPIO_RCAR
440	tristate "Renesas R-Car GPIO"
441	depends on ARCH_RENESAS || COMPILE_TEST
442	select GPIOLIB_IRQCHIP
443	help
444	  Say yes here to support GPIO on Renesas R-Car SoCs.
445
446config GPIO_REG
447	bool
448	help
449	  A 32-bit single register GPIO fixed in/out implementation.  This
450	  can be used to represent any register as a set of GPIO signals.
451
452config GPIO_SAMA5D2_PIOBU
453	tristate "SAMA5D2 PIOBU GPIO support"
454	depends on MFD_SYSCON
455	depends on OF_GPIO
456	select GPIO_SYSCON
457	help
458	  Say yes here to use the PIOBU pins as GPIOs.
459
460	  PIOBU pins on the SAMA5D2 can be used as GPIOs.
461	  The difference from regular GPIOs is that they
462	  maintain their value during backup/self-refresh.
463
464config GPIO_SIOX
465	tristate "SIOX GPIO support"
466	depends on SIOX
467	select GPIOLIB_IRQCHIP
468	help
469	  Say yes here to support SIOX I/O devices. These are units connected
470	  via a SIOX bus and have a number of fixed-direction I/O lines.
471
472config GPIO_SNPS_CREG
473	bool "Synopsys GPIO via CREG (Control REGisters) driver"
474	depends on ARC || COMPILE_TEST
475	depends on OF_GPIO
476	help
477	  This driver supports GPIOs via CREG on various Synopsys SoCs.
478	  This is a single-register MMIO GPIO driver for complex cases
479	  where only several fields in register belong to GPIO lines and
480	  each GPIO line owns a field with different length and on/off value.
481
482config GPIO_SPEAR_SPICS
483	bool "ST SPEAr13xx SPI Chip Select as GPIO support"
484	depends on PLAT_SPEAR
485	select GENERIC_IRQ_CHIP
486	help
487	  Say yes here to support ST SPEAr SPI Chip Select as GPIO device
488
489config GPIO_SPRD
490	tristate "Spreadtrum GPIO support"
491	depends on ARCH_SPRD || COMPILE_TEST
492	depends on OF_GPIO
493	select GPIOLIB_IRQCHIP
494	help
495	  Say yes here to support Spreadtrum GPIO device.
496
497config GPIO_STA2X11
498	bool "STA2x11/ConneXt GPIO support"
499	depends on MFD_STA2X11
500	select GENERIC_IRQ_CHIP
501	help
502	  Say yes here to support the STA2x11/ConneXt GPIO device.
503	  The GPIO module has 128 GPIO pins with alternate functions.
504
505config GPIO_STP_XWAY
506	bool "XWAY STP GPIOs"
507	depends on SOC_XWAY || COMPILE_TEST
508	depends on OF_GPIO
509	help
510	  This enables support for the Serial To Parallel (STP) unit found on
511	  XWAY SoC. The STP allows the SoC to drive a shift registers cascade,
512	  that can be up to 24 bit. This peripheral is aimed at driving leds.
513	  Some of the gpios/leds can be auto updated by the soc with dsl and
514	  phy status.
515
516config GPIO_SYSCON
517	tristate "GPIO based on SYSCON"
518	depends on MFD_SYSCON && OF
519	help
520	  Say yes here to support GPIO functionality though SYSCON driver.
521
522config GPIO_TB10X
523	bool
524	select GPIO_GENERIC
525	select GENERIC_IRQ_CHIP
526	select OF_GPIO
527
528config GPIO_TEGRA
529	bool "NVIDIA Tegra GPIO support"
530	default ARCH_TEGRA
531	depends on ARCH_TEGRA || COMPILE_TEST
532	depends on OF_GPIO
533	help
534	  Say yes here to support GPIO pins on NVIDIA Tegra SoCs.
535
536config GPIO_TEGRA186
537	tristate "NVIDIA Tegra186 GPIO support"
538	default ARCH_TEGRA_186_SOC
539	depends on ARCH_TEGRA_186_SOC || COMPILE_TEST
540	depends on OF_GPIO
541	select GPIOLIB_IRQCHIP
542	select IRQ_DOMAIN_HIERARCHY
543	help
544	  Say yes here to support GPIO pins on NVIDIA Tegra186 SoCs.
545
546config GPIO_TS4800
547	tristate "TS-4800 DIO blocks and compatibles"
548	depends on OF_GPIO
549	depends on SOC_IMX51 || COMPILE_TEST
550	select GPIO_GENERIC
551	help
552	  This driver support TS-4800 FPGA GPIO controllers.
553
554config GPIO_THUNDERX
555	tristate "Cavium ThunderX/OCTEON-TX GPIO"
556	depends on ARCH_THUNDER || (64BIT && COMPILE_TEST)
557	depends on PCI_MSI
558	select GPIOLIB_IRQCHIP
559	select IRQ_DOMAIN_HIERARCHY
560	select IRQ_FASTEOI_HIERARCHY_HANDLERS
561	help
562	  Say yes here to support the on-chip GPIO lines on the ThunderX
563	  and OCTEON-TX families of SoCs.
564
565config GPIO_UNIPHIER
566	tristate "UniPhier GPIO support"
567	depends on ARCH_UNIPHIER || COMPILE_TEST
568	depends on OF_GPIO
569	select IRQ_DOMAIN_HIERARCHY
570	help
571	  Say yes here to support UniPhier GPIOs.
572
573config GPIO_VF610
574	def_bool y
575	depends on ARCH_MXC && SOC_VF610
576	select GPIOLIB_IRQCHIP
577	help
578	  Say yes here to support Vybrid vf610 GPIOs.
579
580config GPIO_VR41XX
581	tristate "NEC VR4100 series General-purpose I/O Uint support"
582	depends on CPU_VR41XX
583	help
584	  Say yes here to support the NEC VR4100 series General-purpose I/O Uint
585
586config GPIO_VX855
587	tristate "VIA VX855/VX875 GPIO"
588	depends on (X86 || COMPILE_TEST) && PCI
589	select MFD_CORE
590	select MFD_VX855
591	help
592	  Support access to the VX855/VX875 GPIO lines through the gpio library.
593
594	  This driver provides common support for accessing the device,
595	  additional drivers must be enabled in order to use the
596	  functionality of the device.
597
598config GPIO_XGENE
599	bool "APM X-Gene GPIO controller support"
600	depends on ARM64 && OF_GPIO
601	help
602	  This driver is to support the GPIO block within the APM X-Gene SoC
603	  platform's generic flash controller. The GPIO pins are muxed with
604	  the generic flash controller's address and data pins. Say yes
605	  here to enable the GFC GPIO functionality.
606
607config GPIO_XGENE_SB
608	tristate "APM X-Gene GPIO standby controller support"
609	depends on ARCH_XGENE && OF_GPIO
610	select GPIO_GENERIC
611	select GPIOLIB_IRQCHIP
612	select IRQ_DOMAIN_HIERARCHY
613	help
614	  This driver supports the GPIO block within the APM X-Gene
615	  Standby Domain. Say yes here to enable the GPIO functionality.
616
617config GPIO_XILINX
618	tristate "Xilinx GPIO support"
619	help
620	  Say yes here to support the Xilinx FPGA GPIO device
621
622config GPIO_XLP
623	tristate "Netlogic XLP GPIO support"
624	depends on OF_GPIO && (CPU_XLP || ARCH_THUNDER2 || COMPILE_TEST)
625	select GPIOLIB_IRQCHIP
626	help
627	  This driver provides support for GPIO interface on Netlogic XLP MIPS64
628	  SoCs. Currently supported XLP variants are XLP8XX, XLP3XX, XLP2XX,
629	  XLP9XX and XLP5XX. The same GPIO controller block is also present in
630	  Cavium's ThunderX2 CN99XX SoCs.
631
632	  If unsure, say N.
633
634config GPIO_XTENSA
635	bool "Xtensa GPIO32 support"
636	depends on XTENSA
637	depends on HAVE_XTENSA_GPIO32
638	depends on !SMP
639	help
640	  Say yes here to support the Xtensa internal GPIO32 IMPWIRE (input)
641	  and EXPSTATE (output) ports
642
643config GPIO_ZEVIO
644	bool "LSI ZEVIO SoC memory mapped GPIOs"
645	depends on ARM && OF_GPIO
646	help
647	  Say yes here to support the GPIO controller in LSI ZEVIO SoCs.
648
649config GPIO_ZYNQ
650	tristate "Xilinx Zynq GPIO support"
651	depends on ARCH_ZYNQ || ARCH_ZYNQMP
652	select GPIOLIB_IRQCHIP
653	help
654	  Say yes here to support Xilinx Zynq GPIO controller.
655
656config GPIO_ZX
657	bool "ZTE ZX GPIO support"
658	depends on ARCH_ZX || COMPILE_TEST
659	select GPIOLIB_IRQCHIP
660	help
661	  Say yes here to support the GPIO device on ZTE ZX SoCs.
662
663config GPIO_LOONGSON1
664	tristate "Loongson1 GPIO support"
665	depends on MACH_LOONGSON32
666	select GPIO_GENERIC
667	help
668	  Say Y or M here to support GPIO on Loongson1 SoCs.
669
670config GPIO_AMD_FCH
671	tristate "GPIO support for AMD Fusion Controller Hub (G-series SOCs)"
672	help
673	  This option enables driver for GPIO on AMDs Fusion Controller Hub,
674	  as found on G-series SOCs (eg. GX-412TC)
675
676	  Note: This driver doesn't registers itself automatically, as it
677	  needs to be provided with platform specific configuration.
678	  (See eg. CONFIG_PCENGINES_APU2.)
679endmenu
680
681menu "Port-mapped I/O GPIO drivers"
682	depends on X86 # Unconditional I/O space access
683
684config GPIO_104_DIO_48E
685	tristate "ACCES 104-DIO-48E GPIO support"
686	depends on PC104
687	select ISA_BUS_API
688	select GPIOLIB_IRQCHIP
689	help
690	  Enables GPIO support for the ACCES 104-DIO-48E series (104-DIO-48E,
691	  104-DIO-24E). The base port addresses for the devices may be
692	  configured via the base module parameter. The interrupt line numbers
693	  for the devices may be configured via the irq module parameter.
694
695config GPIO_104_IDIO_16
696	tristate "ACCES 104-IDIO-16 GPIO support"
697	depends on PC104
698	select ISA_BUS_API
699	select GPIOLIB_IRQCHIP
700	help
701	  Enables GPIO support for the ACCES 104-IDIO-16 family (104-IDIO-16,
702	  104-IDIO-16E, 104-IDO-16, 104-IDIO-8, 104-IDIO-8E, 104-IDO-8). The
703	  base port addresses for the devices may be configured via the base
704	  module parameter. The interrupt line numbers for the devices may be
705	  configured via the irq module parameter.
706
707config GPIO_104_IDI_48
708	tristate "ACCES 104-IDI-48 GPIO support"
709	depends on PC104
710	select ISA_BUS_API
711	select GPIOLIB_IRQCHIP
712	help
713	  Enables GPIO support for the ACCES 104-IDI-48 family (104-IDI-48A,
714	  104-IDI-48AC, 104-IDI-48B, 104-IDI-48BC). The base port addresses for
715	  the devices may be configured via the base module parameter. The
716	  interrupt line numbers for the devices may be configured via the irq
717	  module parameter.
718
719config GPIO_F7188X
720	tristate "F71869, F71869A, F71882FG, F71889F and F81866 GPIO support"
721	help
722	  This option enables support for GPIOs found on Fintek Super-I/O
723	  chips F71869, F71869A, F71882FG, F71889F and F81866.
724
725	  To compile this driver as a module, choose M here: the module will
726	  be called f7188x-gpio.
727
728config GPIO_GPIO_MM
729	tristate "Diamond Systems GPIO-MM GPIO support"
730	depends on PC104
731	select ISA_BUS_API
732	help
733	  Enables GPIO support for the Diamond Systems GPIO-MM and GPIO-MM-12.
734
735	  The Diamond Systems GPIO-MM device features 48 lines of digital I/O
736	  via the emulation of dual 82C55A PPI chips. This driver provides GPIO
737	  support for these 48 channels of digital I/O.
738
739	  The base port addresses for the devices may be configured via the base
740	  array module parameter.
741
742config GPIO_IT87
743	tristate "IT87xx GPIO support"
744	help
745	  Say yes here to support GPIO functionality of IT87xx Super I/O chips.
746
747	  This driver is tested with ITE IT8728 and IT8732 Super I/O chips, and
748	  supports the IT8761E, IT8613, IT8620E, and IT8628E Super I/O chips as
749	  well.
750
751	  To compile this driver as a module, choose M here: the module will
752	  be called gpio_it87
753
754config GPIO_SCH
755	tristate "Intel SCH/TunnelCreek/Centerton/Quark X1000 GPIO"
756	depends on (X86 || COMPILE_TEST) && PCI
757	select MFD_CORE
758	select LPC_SCH
759	help
760	  Say yes here to support GPIO interface on Intel Poulsbo SCH,
761	  Intel Tunnel Creek processor, Intel Centerton processor or
762	  Intel Quark X1000 SoC.
763
764	  The Intel SCH contains a total of 14 GPIO pins. Ten GPIOs are
765	  powered by the core power rail and are turned off during sleep
766	  modes (S3 and higher). The remaining four GPIOs are powered by
767	  the Intel SCH suspend power supply. These GPIOs remain
768	  active during S3. The suspend powered GPIOs can be used to wake the
769	  system from the Suspend-to-RAM state.
770
771	  The Intel Tunnel Creek processor has 5 GPIOs powered by the
772	  core power rail and 9 from suspend power supply.
773
774	  The Intel Centerton processor has a total of 30 GPIO pins.
775	  Twenty-one are powered by the core power rail and 9 from the
776	  suspend power supply.
777
778	  The Intel Quark X1000 SoC has 2 GPIOs powered by the core
779	  power well and 6 from the suspend power well.
780
781config GPIO_SCH311X
782	tristate "SMSC SCH311x SuperI/O GPIO"
783	help
784	  Driver to enable the GPIOs found on SMSC SMSC SCH3112, SCH3114 and
785	  SCH3116 "Super I/O" chipsets.
786
787	  To compile this driver as a module, choose M here: the module will
788	  be called gpio-sch311x.
789
790config GPIO_TS5500
791	tristate "TS-5500 DIO blocks and compatibles"
792	depends on TS5500 || COMPILE_TEST
793	help
794	  This driver supports Digital I/O exposed by pin blocks found on some
795	  Technologic Systems platforms. It includes, but is not limited to, 3
796	  blocks of the TS-5500: DIO1, DIO2 and the LCD port, and the TS-5600
797	  LCD port.
798
799config GPIO_WINBOND
800	tristate "Winbond Super I/O GPIO support"
801	select ISA_BUS_API
802	help
803	  This option enables support for GPIOs found on Winbond Super I/O
804	  chips.
805	  Currently, only W83627UHG (also known as Nuvoton NCT6627UD) is
806	  supported.
807
808	  You will need to provide a module parameter "gpios", or a
809	  boot-time parameter "gpio_winbond.gpios" with a bitmask of GPIO
810	  ports to enable (bit 0 is GPIO1, bit 1 is GPIO2, etc.).
811
812	  To compile this driver as a module, choose M here: the module will
813	  be called gpio-winbond.
814
815config GPIO_WS16C48
816	tristate "WinSystems WS16C48 GPIO support"
817	select ISA_BUS_API
818	select GPIOLIB_IRQCHIP
819	help
820	  Enables GPIO support for the WinSystems WS16C48. The base port
821	  addresses for the devices may be configured via the base module
822	  parameter. The interrupt line numbers for the devices may be
823	  configured via the irq module parameter.
824
825endmenu
826
827menu "I2C GPIO expanders"
828	depends on I2C
829
830config GPIO_ADP5588
831	tristate "ADP5588 I2C GPIO expander"
832	help
833	  This option enables support for 18 GPIOs found
834	  on Analog Devices ADP5588 GPIO Expanders.
835
836config GPIO_ADP5588_IRQ
837	bool "Interrupt controller support for ADP5588"
838	depends on GPIO_ADP5588=y
839	select GPIOLIB_IRQCHIP
840	help
841	  Say yes here to enable the adp5588 to be used as an interrupt
842	  controller. It requires the driver to be built in the kernel.
843
844config GPIO_ADNP
845	tristate "Avionic Design N-bit GPIO expander"
846	depends on OF_GPIO
847	select GPIOLIB_IRQCHIP
848	help
849	  This option enables support for N GPIOs found on Avionic Design
850	  I2C GPIO expanders. The register space will be extended by powers
851	  of two, so the controller will need to accommodate for that. For
852	  example: if a controller provides 48 pins, 6 registers will be
853	  enough to represent all pins, but the driver will assume a
854	  register layout for 64 pins (8 registers).
855
856config GPIO_GW_PLD
857	tristate "Gateworks PLD GPIO Expander"
858	depends on OF_GPIO
859	help
860	  Say yes here to provide access to the Gateworks I2C PLD GPIO
861	  Expander. This is used at least on the Cambria GW2358-4.
862
863config GPIO_MAX7300
864	tristate "Maxim MAX7300 GPIO expander"
865	select GPIO_MAX730X
866	help
867	  GPIO driver for Maxim MAX7300 I2C-based GPIO expander.
868
869config GPIO_MAX732X
870	tristate "MAX7319, MAX7320-7327 I2C Port Expanders"
871	help
872	  Say yes here to support the MAX7319, MAX7320-7327 series of I2C
873	  Port Expanders. Each IO port on these chips has a fixed role of
874	  Input (designated by 'I'), Push-Pull Output ('O'), or Open-Drain
875	  Input and Output (designed by 'P'). The combinations are listed
876	  below:
877
878	  8 bits:       max7319 (8I), max7320 (8O), max7321 (8P),
879	                max7322 (4I4O), max7323 (4P4O)
880
881	  16 bits:      max7324 (8I8O), max7325 (8P8O),
882	                max7326 (4I12O), max7327 (4P12O)
883
884	  Board setup code must specify the model to use, and the start
885	  number for these GPIOs.
886
887config GPIO_MAX732X_IRQ
888	bool "Interrupt controller support for MAX732x"
889	depends on GPIO_MAX732X=y
890	select GPIOLIB_IRQCHIP
891	help
892	  Say yes here to enable the max732x to be used as an interrupt
893	  controller. It requires the driver to be built in the kernel.
894
895config GPIO_MC9S08DZ60
896	bool "MX35 3DS BOARD MC9S08DZ60 GPIO functions"
897	depends on I2C=y && MACH_MX35_3DS
898	help
899	  Select this to enable the MC9S08DZ60 GPIO driver
900
901config GPIO_PCA953X
902	tristate "PCA95[357]x, PCA9698, TCA64xx, and MAX7310 I/O ports"
903	select REGMAP_I2C
904	help
905	  Say yes here to provide access to several register-oriented
906	  SMBus I/O expanders, made mostly by NXP or TI.  Compatible
907	  models include:
908
909	  4 bits:       pca9536, pca9537
910
911	  8 bits:       max7310, max7315, pca6107, pca9534, pca9538, pca9554,
912	                pca9556, pca9557, pca9574, tca6408, tca9554, xra1202
913
914	  16 bits:      max7312, max7313, pca9535, pca9539, pca9555, pca9575,
915	                tca6416
916
917	  24 bits:      tca6424
918
919	  40 bits:      pca9505, pca9698
920
921config GPIO_PCA953X_IRQ
922	bool "Interrupt controller support for PCA953x"
923	depends on GPIO_PCA953X=y
924	select GPIOLIB_IRQCHIP
925	help
926	  Say yes here to enable the pca953x to be used as an interrupt
927	  controller. It requires the driver to be built in the kernel.
928
929config GPIO_PCF857X
930	tristate "PCF857x, PCA{85,96}7x, and MAX732[89] I2C GPIO expanders"
931	select GPIOLIB_IRQCHIP
932	select IRQ_DOMAIN
933	help
934	  Say yes here to provide access to most "quasi-bidirectional" I2C
935	  GPIO expanders used for additional digital outputs or inputs.
936	  Most of these parts are from NXP, though TI is a second source for
937	  some of them.  Compatible models include:
938
939	  8 bits:   pcf8574, pcf8574a, pca8574, pca8574a,
940	            pca9670, pca9672, pca9674, pca9674a,
941	            max7328, max7329
942
943	  16 bits:  pcf8575, pcf8575c, pca8575,
944	            pca9671, pca9673, pca9675
945
946	  Your board setup code will need to declare the expanders in
947	  use, and assign numbers to the GPIOs they expose.  Those GPIOs
948	  can then be used from drivers and other kernel code, just like
949	  other GPIOs, but only accessible from task contexts.
950
951	  This driver provides an in-kernel interface to those GPIOs using
952	  platform-neutral GPIO calls.
953
954config GPIO_TPIC2810
955	tristate "TPIC2810 8-Bit I2C GPO expander"
956	help
957	  Say yes here to enable the GPO driver for the TI TPIC2810 chip.
958
959	  To compile this driver as a module, choose M here: the module will
960	  be called gpio-tpic2810.
961
962config GPIO_TS4900
963	tristate "Technologic Systems FPGA I2C GPIO"
964	depends on SOC_IMX6 || COMPILE_TEST
965	select REGMAP_I2C
966	help
967	  Say yes here to enabled the GPIO driver for Technologic's FPGA core.
968	  Series supported include TS-4100, TS-4900, TS-7970 and TS-7990.
969
970endmenu
971
972menu "MFD GPIO expanders"
973
974config GPIO_ADP5520
975	tristate "GPIO Support for ADP5520 PMIC"
976	depends on PMIC_ADP5520
977	help
978	  This option enables support for on-chip GPIO found
979	  on Analog Devices ADP5520 PMICs.
980
981config GPIO_ALTERA_A10SR
982	tristate "Altera Arria10 System Resource GPIO"
983	depends on MFD_ALTERA_A10SR
984	help
985	  Driver for Arria10 Development Kit GPIO expansion which
986	  includes reads of pushbuttons and DIP switches as well
987	  as writes to LEDs.
988
989config GPIO_ARIZONA
990	tristate "Wolfson Microelectronics Arizona class devices"
991	depends on MFD_ARIZONA
992	help
993	  Support for GPIOs on Wolfson Arizona class devices.
994
995config GPIO_BD70528
996	tristate "ROHM BD70528 GPIO support"
997	depends on MFD_ROHM_BD70528
998	help
999	  Support for GPIOs on ROHM BD70528 PMIC. There are four GPIOs
1000	  available on the ROHM PMIC in total. The GPIOs can also
1001	  generate interrupts.
1002
1003	  This driver can also be built as a module. If so, the module
1004	  will be called gpio-bd70528.
1005
1006config GPIO_BD9571MWV
1007	tristate "ROHM BD9571 GPIO support"
1008	depends on MFD_BD9571MWV
1009	help
1010	  Support for GPIOs on ROHM BD9571 PMIC. There are two GPIOs
1011	  available on the ROHM PMIC in total, both of which can also
1012	  generate interrupts.
1013
1014	  This driver can also be built as a module. If so, the module
1015	  will be called gpio-bd9571mwv.
1016
1017config GPIO_CRYSTAL_COVE
1018	tristate "GPIO support for Crystal Cove PMIC"
1019	depends on (X86 || COMPILE_TEST) && INTEL_SOC_PMIC
1020	select GPIOLIB_IRQCHIP
1021	help
1022	  Support for GPIO pins on Crystal Cove PMIC.
1023
1024	  Say Yes if you have a Intel SoC based tablet with Crystal Cove PMIC
1025	  inside.
1026
1027	  This driver can also be built as a module. If so, the module will be
1028	  called gpio-crystalcove.
1029
1030config GPIO_CS5535
1031	tristate "AMD CS5535/CS5536 GPIO support"
1032	depends on X86 || MIPS || COMPILE_TEST
1033	depends on MFD_CS5535
1034	help
1035	  The AMD CS5535 and CS5536 southbridges support 28 GPIO pins that
1036	  can be used for quite a number of things.  The CS5535/6 is found on
1037	  AMD Geode and Lemote Yeeloong devices.
1038
1039	  If unsure, say N.
1040
1041config GPIO_DA9052
1042	tristate "Dialog DA9052 GPIO"
1043	depends on PMIC_DA9052
1044	help
1045	  Say yes here to enable the GPIO driver for the DA9052 chip.
1046
1047config GPIO_DA9055
1048	tristate "Dialog Semiconductor DA9055 GPIO"
1049	depends on MFD_DA9055
1050	help
1051	  Say yes here to enable the GPIO driver for the DA9055 chip.
1052
1053	  The Dialog DA9055 PMIC chip has 3 GPIO pins that can be
1054	  be controller by this driver.
1055
1056	  If driver is built as a module it will be called gpio-da9055.
1057
1058config GPIO_DLN2
1059	tristate "Diolan DLN2 GPIO support"
1060	depends on MFD_DLN2
1061	select GPIOLIB_IRQCHIP
1062
1063	help
1064	  Select this option to enable GPIO driver for the Diolan DLN2
1065	  board.
1066
1067	  This driver can also be built as a module. If so, the module
1068	  will be called gpio-dln2.
1069
1070config HTC_EGPIO
1071	bool "HTC EGPIO support"
1072	depends on GPIOLIB && ARM
1073	help
1074	  This driver supports the CPLD egpio chip present on
1075	  several HTC phones.  It provides basic support for input
1076	  pins, output pins, and irqs.
1077
1078config GPIO_JANZ_TTL
1079	tristate "Janz VMOD-TTL Digital IO Module"
1080	depends on MFD_JANZ_CMODIO
1081	help
1082	  This enables support for the Janz VMOD-TTL Digital IO module.
1083	  This driver provides support for driving the pins in output
1084	  mode only. Input mode is not supported.
1085
1086config GPIO_KEMPLD
1087	tristate "Kontron ETX / COMexpress GPIO"
1088	depends on MFD_KEMPLD
1089	help
1090	  This enables support for the PLD GPIO interface on some Kontron ETX
1091	  and COMexpress (ETXexpress) modules.
1092
1093	  This driver can also be built as a module. If so, the module will be
1094	  called gpio-kempld.
1095
1096config GPIO_LP3943
1097	tristate "TI/National Semiconductor LP3943 GPIO expander"
1098	depends on MFD_LP3943
1099	help
1100	  GPIO driver for LP3943 MFD.
1101	  LP3943 can be used as a GPIO expander which provides up to 16 GPIOs.
1102	  Open drain outputs are required for this usage.
1103
1104config GPIO_LP873X
1105	tristate "TI LP873X GPO"
1106	depends on MFD_TI_LP873X
1107	help
1108	  This driver supports the GPO on TI Lp873x PMICs. 2 GPOs are present
1109	  on LP873X PMICs.
1110
1111	  This driver can also be built as a module. If so, the module will be
1112	  called gpio-lp873x.
1113
1114config GPIO_LP87565
1115	tristate "TI LP87565 GPIO"
1116	depends on MFD_TI_LP87565
1117	help
1118	  This driver supports the GPIO on TI Lp873565 PMICs. 3 GPIOs are present
1119	  on LP87565 PMICs.
1120
1121	  This driver can also be built as a module. If so, the module will be
1122	  called gpio-lp87565.
1123
1124config GPIO_MADERA
1125	tristate "Cirrus Logic Madera class codecs"
1126	depends on PINCTRL_MADERA
1127	help
1128	  Support for GPIOs on Cirrus Logic Madera class codecs.
1129
1130config GPIO_MAX77620
1131	tristate "GPIO support for PMIC MAX77620 and MAX20024"
1132	depends on MFD_MAX77620
1133	help
1134	  GPIO driver for MAX77620 and MAX20024 PMIC from Maxim Semiconductor.
1135	  MAX77620 PMIC has 8 pins that can be configured as GPIOs. The
1136	  driver also provides interrupt support for each of the gpios.
1137	  Say yes here to enable the max77620 to be used as gpio controller.
1138
1139config GPIO_MAX77650
1140	tristate "Maxim MAX77650/77651 GPIO support"
1141	depends on MFD_MAX77650
1142	help
1143	  GPIO driver for MAX77650/77651 PMIC from Maxim Semiconductor.
1144	  These chips have a single pin that can be configured as GPIO.
1145
1146config GPIO_MSIC
1147	bool "Intel MSIC mixed signal gpio support"
1148	depends on (X86 || COMPILE_TEST) && MFD_INTEL_MSIC
1149	help
1150	  Enable support for GPIO on intel MSIC controllers found in
1151	  intel MID devices
1152
1153config GPIO_PALMAS
1154	bool "TI PALMAS series PMICs GPIO"
1155	depends on MFD_PALMAS
1156	help
1157	  Select this option to enable GPIO driver for the TI PALMAS
1158	  series chip family.
1159
1160config GPIO_RC5T583
1161	bool "RICOH RC5T583 GPIO"
1162	depends on MFD_RC5T583
1163	help
1164	  Select this option to enable GPIO driver for the Ricoh RC5T583
1165	  chip family.
1166	  This driver provides the support for driving/reading the gpio pins
1167	  of RC5T583 device through standard gpio library.
1168
1169config GPIO_STMPE
1170	bool "STMPE GPIOs"
1171	depends on MFD_STMPE
1172	depends on OF_GPIO
1173	select GPIOLIB_IRQCHIP
1174	help
1175	  This enables support for the GPIOs found on the STMPE I/O
1176	  Expanders.
1177
1178config GPIO_TC3589X
1179	bool "TC3589X GPIOs"
1180	depends on MFD_TC3589X
1181	depends on OF_GPIO
1182	select GPIOLIB_IRQCHIP
1183	help
1184	  This enables support for the GPIOs found on the TC3589X
1185	  I/O Expander.
1186
1187config GPIO_TIMBERDALE
1188	bool "Support for timberdale GPIO IP"
1189	depends on MFD_TIMBERDALE
1190	---help---
1191	Add support for the GPIO IP in the timberdale FPGA.
1192
1193config GPIO_TPS65086
1194	tristate "TI TPS65086 GPO"
1195	depends on MFD_TPS65086
1196	help
1197	  This driver supports the GPO on TI TPS65086x PMICs.
1198
1199config GPIO_TPS65218
1200	tristate "TPS65218 GPIO"
1201	depends on MFD_TPS65218
1202	help
1203	  Select this option to enable GPIO driver for the TPS65218
1204	  chip family.
1205
1206config GPIO_TPS6586X
1207	bool "TPS6586X GPIO"
1208	depends on MFD_TPS6586X
1209	help
1210	  Select this option to enable GPIO driver for the TPS6586X
1211	  chip family.
1212
1213config GPIO_TPS65910
1214	bool "TPS65910 GPIO"
1215	depends on MFD_TPS65910
1216	help
1217	  Select this option to enable GPIO driver for the TPS65910
1218	  chip family.
1219
1220config GPIO_TPS65912
1221	tristate "TI TPS65912 GPIO"
1222	depends on MFD_TPS65912
1223	help
1224	  This driver supports TPS65912 gpio chip
1225
1226config GPIO_TPS68470
1227	bool "TPS68470 GPIO"
1228	depends on MFD_TPS68470
1229	help
1230	  Select this option to enable GPIO driver for the TPS68470
1231	  chip family.
1232	  There are 7 GPIOs and few sensor related GPIOs supported
1233	  by the TPS68470. While the 7 GPIOs can be configured as
1234	  input or output as appropriate, the sensor related GPIOs
1235	  are "output only" GPIOs.
1236
1237	  This driver config is bool, as the GPIO functionality
1238	  of the TPS68470 must be available before dependent
1239	  drivers are loaded.
1240
1241config GPIO_TQMX86
1242	tristate "TQ-Systems QTMX86 GPIO"
1243	depends on MFD_TQMX86 || COMPILE_TEST
1244	select GPIOLIB_IRQCHIP
1245	help
1246	  This driver supports GPIO on the TQMX86 IO controller.
1247
1248config GPIO_TWL4030
1249	tristate "TWL4030, TWL5030, and TPS659x0 GPIOs"
1250	depends on TWL4030_CORE
1251	help
1252	  Say yes here to access the GPIO signals of various multi-function
1253	  power management chips from Texas Instruments.
1254
1255config GPIO_TWL6040
1256	tristate "TWL6040 GPO"
1257	depends on TWL6040_CORE
1258	help
1259	  Say yes here to access the GPO signals of twl6040
1260	  audio chip from Texas Instruments.
1261
1262config GPIO_UCB1400
1263	tristate "Philips UCB1400 GPIO"
1264	depends on UCB1400_CORE
1265	help
1266	  This enables support for the Philips UCB1400 GPIO pins.
1267	  The UCB1400 is an AC97 audio codec.
1268
1269config GPIO_WHISKEY_COVE
1270	tristate "GPIO support for Whiskey Cove PMIC"
1271	depends on (X86 || COMPILE_TEST) && INTEL_SOC_PMIC_BXTWC
1272	select GPIOLIB_IRQCHIP
1273	help
1274	  Support for GPIO pins on Whiskey Cove PMIC.
1275
1276	  Say Yes if you have a Intel SoC based tablet with Whiskey Cove PMIC
1277	  inside.
1278
1279	  This driver can also be built as a module. If so, the module will be
1280	  called gpio-wcove.
1281
1282config GPIO_WM831X
1283	tristate "WM831x GPIOs"
1284	depends on MFD_WM831X
1285	help
1286	  Say yes here to access the GPIO signals of WM831x power management
1287	  chips from Wolfson Microelectronics.
1288
1289config GPIO_WM8350
1290	tristate "WM8350 GPIOs"
1291	depends on MFD_WM8350
1292	help
1293	  Say yes here to access the GPIO signals of WM8350 power management
1294	  chips from Wolfson Microelectronics.
1295
1296config GPIO_WM8994
1297	tristate "WM8994 GPIOs"
1298	depends on MFD_WM8994
1299	help
1300	  Say yes here to access the GPIO signals of WM8994 audio hub
1301	  CODECs from Wolfson Microelectronics.
1302
1303endmenu
1304
1305menu "PCI GPIO expanders"
1306	depends on PCI
1307
1308config GPIO_AMD8111
1309	tristate "AMD 8111 GPIO driver"
1310	depends on X86 || COMPILE_TEST
1311	help
1312	  The AMD 8111 south bridge contains 32 GPIO pins which can be used.
1313
1314	  Note, that usually system firmware/ACPI handles GPIO pins on their
1315	  own and users might easily break their systems with uncarefull usage
1316	  of this driver!
1317
1318	  If unsure, say N
1319
1320config GPIO_BT8XX
1321	tristate "BT8XX GPIO abuser"
1322	depends on VIDEO_BT848=n
1323	help
1324	  The BT8xx frame grabber chip has 24 GPIO pins that can be abused
1325	  as a cheap PCI GPIO card.
1326
1327	  This chip can be found on Miro, Hauppauge and STB TV-cards.
1328
1329	  The card needs to be physically altered for using it as a
1330	  GPIO card. For more information on how to build a GPIO card
1331	  from a BT8xx TV card, see the documentation file at
1332	  Documentation/driver-api/bt8xxgpio.rst
1333
1334	  If unsure, say N.
1335
1336config GPIO_INTEL_MID
1337	bool "Intel MID GPIO support"
1338	depends on X86_INTEL_MID
1339	select GPIOLIB_IRQCHIP
1340	help
1341	  Say Y here to support Intel MID GPIO.
1342
1343config GPIO_MERRIFIELD
1344	tristate "Intel Merrifield GPIO support"
1345	depends on X86_INTEL_MID
1346	select GPIOLIB_IRQCHIP
1347	help
1348	  Say Y here to support Intel Merrifield GPIO.
1349
1350config GPIO_MLXBF
1351	tristate "Mellanox BlueField SoC GPIO"
1352	depends on (MELLANOX_PLATFORM && ARM64 && ACPI) || (64BIT && COMPILE_TEST)
1353	select GPIO_GENERIC
1354	help
1355	  Say Y here if you want GPIO support on Mellanox BlueField SoC.
1356
1357config GPIO_ML_IOH
1358	tristate "OKI SEMICONDUCTOR ML7213 IOH GPIO support"
1359	depends on X86 || COMPILE_TEST
1360	select GENERIC_IRQ_CHIP
1361	help
1362	  ML7213 is companion chip for Intel Atom E6xx series.
1363	  This driver can be used for OKI SEMICONDUCTOR ML7213 IOH(Input/Output
1364	  Hub) which is for IVI(In-Vehicle Infotainment) use.
1365	  This driver can access the IOH's GPIO device.
1366
1367config GPIO_PCH
1368	tristate "Intel EG20T PCH/LAPIS Semiconductor IOH(ML7223/ML7831) GPIO"
1369	depends on X86_32 || MIPS || COMPILE_TEST
1370	select GENERIC_IRQ_CHIP
1371	help
1372	  This driver is for PCH(Platform controller Hub) GPIO of Intel Topcliff
1373	  which is an IOH(Input/Output Hub) for x86 embedded processor.
1374	  This driver can access PCH GPIO device.
1375
1376	  This driver also can be used for LAPIS Semiconductor IOH(Input/
1377	  Output Hub), ML7223 and ML7831.
1378	  ML7223 IOH is for MP(Media Phone) use.
1379	  ML7831 IOH is for general purpose use.
1380	  ML7223/ML7831 is companion chip for Intel Atom E6xx series.
1381	  ML7223/ML7831 is completely compatible for Intel EG20T PCH.
1382
1383config GPIO_PCI_IDIO_16
1384	tristate "ACCES PCI-IDIO-16 GPIO support"
1385	select GPIOLIB_IRQCHIP
1386	help
1387	  Enables GPIO support for the ACCES PCI-IDIO-16. An interrupt is
1388	  generated when any of the inputs change state (low to high or high to
1389	  low). Input filter control is not supported by this driver, and the
1390	  input filters are deactivated by this driver.
1391
1392config GPIO_PCIE_IDIO_24
1393	tristate "ACCES PCIe-IDIO-24 GPIO support"
1394	select GPIOLIB_IRQCHIP
1395	help
1396	  Enables GPIO support for the ACCES PCIe-IDIO-24 family (PCIe-IDIO-24,
1397	  PCIe-IDI-24, PCIe-IDO-24, PCIe-IDIO-12). An interrupt is generated
1398	  when any of the inputs change state (low to high or high to low).
1399	  Input filter control is not supported by this driver, and the input
1400	  filters are deactivated by this driver.
1401
1402config GPIO_RDC321X
1403	tristate "RDC R-321x GPIO support"
1404	select MFD_CORE
1405	select MFD_RDC321X
1406	help
1407	  Support for the RDC R321x SoC GPIOs over southbridge
1408	  PCI configuration space.
1409
1410config GPIO_SODAVILLE
1411	bool "Intel Sodaville GPIO support"
1412	depends on X86 && OF
1413	select GPIO_GENERIC
1414	select GENERIC_IRQ_CHIP
1415	help
1416	  Say Y here to support Intel Sodaville GPIO.
1417
1418endmenu
1419
1420menu "SPI GPIO expanders"
1421	depends on SPI_MASTER
1422
1423config GPIO_74X164
1424	tristate "74x164 serial-in/parallel-out 8-bits shift register"
1425	depends on OF_GPIO
1426	help
1427	  Driver for 74x164 compatible serial-in/parallel-out 8-outputs
1428	  shift registers. This driver can be used to provide access
1429	  to more gpio outputs.
1430
1431config GPIO_MAX3191X
1432	tristate "Maxim MAX3191x industrial serializer"
1433	select CRC8
1434	help
1435	  GPIO driver for Maxim MAX31910, MAX31911, MAX31912, MAX31913,
1436	  MAX31953 and MAX31963 industrial serializer, a daisy-chainable
1437	  chip to make 8 digital 24V inputs available via SPI.  Supports
1438	  CRC checksums to guard against electromagnetic interference,
1439	  as well as undervoltage and overtemperature detection.
1440
1441config GPIO_MAX7301
1442	tristate "Maxim MAX7301 GPIO expander"
1443	select GPIO_MAX730X
1444	help
1445	  GPIO driver for Maxim MAX7301 SPI-based GPIO expander.
1446
1447config GPIO_MC33880
1448	tristate "Freescale MC33880 high-side/low-side switch"
1449	help
1450	  SPI driver for Freescale MC33880 high-side/low-side switch.
1451	  This provides GPIO interface supporting inputs and outputs.
1452
1453config GPIO_PISOSR
1454	tristate "Generic parallel-in/serial-out shift register"
1455	help
1456	  GPIO driver for SPI compatible parallel-in/serial-out shift
1457	  registers. These are input only devices.
1458
1459config GPIO_XRA1403
1460	tristate "EXAR XRA1403 16-bit GPIO expander"
1461	select REGMAP_SPI
1462	help
1463	  GPIO driver for EXAR XRA1403 16-bit SPI-based GPIO expander.
1464
1465config GPIO_MOXTET
1466	tristate "Turris Mox Moxtet bus GPIO expander"
1467	depends on MOXTET
1468	help
1469	  Say yes here if you are building for the Turris Mox router.
1470	  This is the driver needed for configuring the GPIOs via the Moxtet
1471	  bus. For example the Mox module with SFP cage needs this driver
1472	  so that phylink can use corresponding GPIOs.
1473
1474endmenu
1475
1476menu "USB GPIO expanders"
1477	depends on USB
1478
1479config GPIO_VIPERBOARD
1480	tristate "Viperboard GPIO a & b support"
1481	depends on MFD_VIPERBOARD
1482	help
1483	  Say yes here to access the GPIO signals of Nano River
1484	  Technologies Viperboard. There are two GPIO chips on the
1485	  board: gpioa and gpiob.
1486	  See viperboard API specification and Nano
1487	  River Tech's viperboard.h for detailed meaning
1488	  of the module parameters.
1489
1490endmenu
1491
1492config GPIO_MOCKUP
1493	tristate "GPIO Testing Driver"
1494	select IRQ_SIM
1495	help
1496	  This enables GPIO Testing driver, which provides a way to test GPIO
1497	  subsystem through sysfs(or char device) and debugfs. GPIO_SYSFS
1498	  must be selected for this test.
1499	  User could use it through the script in
1500	  tools/testing/selftests/gpio/gpio-mockup.sh. Reference the usage in
1501	  it.
1502
1503endif
1504