xref: /linux/drivers/gpio/Kconfig (revision 50c19e20ed2ef359cf155a39c8462b0a6351b9fa)
1# SPDX-License-Identifier: GPL-2.0-only
2#
3# GPIO infrastructure and drivers
4#
5
6config GPIOLIB_LEGACY
7	def_bool y
8
9menuconfig GPIOLIB
10	bool "GPIO Support"
11	help
12	  This enables GPIO support through the generic GPIO library.
13	  You only need to enable this if you also want to enable
14	  one or more of the GPIO drivers below.
15
16	  If unsure, say N.
17
18if GPIOLIB
19
20config GPIOLIB_FASTPATH_LIMIT
21	int "Maximum number of GPIOs for fast path"
22	range 32 512
23	default 512
24	help
25	  This adjusts the point at which certain APIs will switch from
26	  using a stack allocated buffer to a dynamically allocated buffer.
27
28	  You shouldn't need to change this unless you really need to
29	  optimize either stack space or performance. Change this carefully
30	  since setting an incorrect value could cause stack corruption.
31
32config OF_GPIO
33	def_bool y
34	depends on OF
35	depends on HAS_IOMEM
36
37config GPIO_ACPI
38	def_bool y
39	depends on ACPI
40
41config GPIOLIB_IRQCHIP
42	select IRQ_DOMAIN
43	bool
44
45config OF_GPIO_MM_GPIOCHIP
46	bool
47	help
48	  This adds support for the legacy 'struct of_mm_gpio_chip' interface
49	  from PowerPC. Existing drivers using this interface need to select
50	  this symbol, but new drivers should use the generic gpio-regmap
51	  infrastructure instead.
52
53config DEBUG_GPIO
54	bool "Debug GPIO calls"
55	depends on DEBUG_KERNEL
56	help
57	  Say Y here to add some extra checks and diagnostics to GPIO calls.
58	  These checks help ensure that GPIOs have been properly initialized
59	  before they are used, and that sleeping calls are not made from
60	  non-sleeping contexts.  They can make bitbanged serial protocols
61	  slower.  The diagnostics help catch the type of setup errors
62	  that are most common when setting up new platforms or boards.
63
64config GPIO_SYSFS
65	bool "/sys/class/gpio/... (sysfs interface)" if EXPERT
66	depends on SYSFS
67	select GPIO_CDEV # We need to encourage the new ABI
68	help
69	  Say Y here to add the legacy sysfs interface for GPIOs.
70
71	  This ABI is deprecated. If you want to use GPIO from userspace,
72	  use the character device /dev/gpiochipN with the appropriate
73	  ioctl() operations instead.
74
75config GPIO_SYSFS_LEGACY
76	bool "Enable legacy functionalities of the sysfs interface"
77	depends on GPIO_SYSFS
78	default y if GPIO_SYSFS
79	help
80	  Say Y here if you want to enable the legacy, global GPIO
81	  numberspace-based functionalities of the sysfs interface.
82
83config GPIO_CDEV
84	bool "Character device (/dev/gpiochipN) support" if EXPERT
85	default y
86	help
87	  Say Y here to add the character device /dev/gpiochipN interface
88	  for GPIOs. The character device allows userspace to control GPIOs
89	  using ioctl() operations.
90
91	  Only say N if you are sure that the GPIO character device is not
92	  required.
93
94	  If unsure, say Y.
95
96config GPIO_CDEV_V1
97	bool "Support GPIO ABI Version 1"
98	default y
99	depends on GPIO_CDEV
100	help
101	  Say Y here to support version 1 of the GPIO CDEV ABI.
102
103	  This ABI version is deprecated.
104	  Please use the latest ABI for new developments.
105
106	  If unsure, say Y.
107
108config GPIO_GENERIC
109	depends on HAS_IOMEM # Only for IOMEM drivers
110	tristate
111
112config GPIO_REGMAP
113	select REGMAP
114	tristate
115
116config GPIO_SWNODE_UNDEFINED
117	bool
118	help
119	  This adds a special place holder for software nodes to contain an
120	  undefined GPIO reference, this is primarily used by SPI to allow a
121	  list of GPIO chip selects to mark a certain chip select as being
122	  controlled the SPI device's internal chip select mechanism and not
123	  a GPIO.
124
125# put drivers in the right section, in alphabetical order
126
127# This symbol is selected by both I2C and SPI expanders
128config GPIO_MAX730X
129	tristate
130
131config GPIO_IDIO_16
132	tristate
133	select REGMAP_IRQ
134	select GPIOLIB_IRQCHIP
135	select GPIO_REGMAP
136	help
137	  Enables support for the idio-16 library functions. The idio-16 library
138	  provides functions to facilitate communication with devices within the
139	  ACCES IDIO-16 family such as the 104-IDIO-16 and the PCI-IDIO-16.
140
141	  If built as a module its name will be gpio-idio-16.
142
143menu "Memory mapped GPIO drivers"
144	depends on HAS_IOMEM
145
146config GPIO_74XX_MMIO
147	tristate "GPIO driver for 74xx-ICs with MMIO access"
148	depends on OF_GPIO
149	select GPIO_GENERIC
150	help
151	  Say yes here to support GPIO functionality for 74xx-compatible ICs
152	  with MMIO access. Compatible models include:
153	    1 bit:	741G125 (Input), 741G74 (Output)
154	    2 bits:	742G125 (Input), 7474 (Output)
155	    4 bits:	74125 (Input), 74175 (Output)
156	    6 bits:	74365 (Input), 74174 (Output)
157	    8 bits:	74244 (Input), 74273 (Output)
158	    16 bits:	741624 (Input), 7416374 (Output)
159
160config GPIO_ALTERA
161	tristate "Altera GPIO"
162	select GPIOLIB_IRQCHIP
163	help
164	  Say Y or M here to build support for the Altera PIO device.
165
166	  If driver is built as a module it will be called gpio-altera.
167
168config GPIO_AMDPT
169	tristate "AMD Promontory GPIO support"
170	depends on ACPI
171	select GPIO_GENERIC
172	help
173	  Driver for GPIO functionality on Promontory IOHub.
174	  Requires ACPI ASL code to enumerate as a platform device.
175
176config GPIO_ASPEED
177	tristate "Aspeed GPIO support"
178	depends on (ARCH_ASPEED || COMPILE_TEST) && OF_GPIO
179	select GPIOLIB_IRQCHIP
180	help
181	  Say Y here to support Aspeed AST2400 and AST2500 GPIO controllers.
182
183config GPIO_ASPEED_SGPIO
184	bool "Aspeed SGPIO support"
185	depends on (ARCH_ASPEED || COMPILE_TEST) && OF_GPIO
186	select GPIO_GENERIC
187	select GPIOLIB_IRQCHIP
188	help
189	  Say Y here to support Aspeed AST2500 SGPIO functionality.
190
191config GPIO_ATH79
192	tristate "Atheros AR71XX/AR724X/AR913X GPIO support"
193	default y if ATH79
194	depends on ATH79 || COMPILE_TEST
195	select GPIO_GENERIC
196	select GPIOLIB_IRQCHIP
197	help
198	  Select this option to enable GPIO driver for
199	  Atheros AR71XX/AR724X/AR913X SoC devices.
200
201config GPIO_RASPBERRYPI_EXP
202	tristate "Raspberry Pi 3 GPIO Expander"
203	default RASPBERRYPI_FIRMWARE
204	depends on OF_GPIO
205	# Make sure not 'y' when RASPBERRYPI_FIRMWARE is 'm'. This can only
206	# happen when COMPILE_TEST=y, hence the added !RASPBERRYPI_FIRMWARE.
207	depends on (ARCH_BCM2835 && RASPBERRYPI_FIRMWARE) || (COMPILE_TEST && !RASPBERRYPI_FIRMWARE)
208	help
209	  Turn on GPIO support for the expander on Raspberry Pi 3 boards, using
210	  the firmware mailbox to communicate with VideoCore on BCM283x chips.
211
212config GPIO_BCM_KONA
213	bool "Broadcom Kona GPIO"
214	depends on ARCH_BCM_MOBILE || COMPILE_TEST
215	select GPIOLIB_IRQCHIP
216	help
217	  Turn on GPIO support for Broadcom "Kona" chips.
218
219config GPIO_BCM_XGS_IPROC
220	tristate "BRCM XGS iProc GPIO support"
221	depends on OF_GPIO && (ARCH_BCM_IPROC || COMPILE_TEST)
222	select GPIO_GENERIC
223	select GPIOLIB_IRQCHIP
224	default ARCH_BCM_IPROC
225	help
226	  Say yes here to enable GPIO support for Broadcom XGS iProc SoCs.
227
228config GPIO_BLZP1600
229	tristate "Blaize BLZP1600 GPIO support"
230	default y if ARCH_BLAIZE
231	depends on ARCH_BLAIZE || COMPILE_TEST
232	depends on OF_GPIO
233	select GPIO_GENERIC
234	select GPIOLIB_IRQCHIP
235	help
236	  Say Y or M here to add support for the Blaize BLZP1600 GPIO device.
237	  The controller is based on the Verisilicon Microelectronics GPIO APB v0.2
238	  IP block.
239
240config GPIO_BRCMSTB
241	tristate "BRCMSTB GPIO support"
242	default y if (ARCH_BRCMSTB || BMIPS_GENERIC)
243	depends on OF_GPIO && (ARCH_BRCMSTB || ARCH_BCM2835 || BMIPS_GENERIC || COMPILE_TEST)
244	select GPIO_GENERIC
245	select IRQ_DOMAIN
246	help
247	  Say yes here to enable GPIO support for Broadcom STB (BCM7XXX) SoCs.
248
249config GPIO_CADENCE
250	tristate "Cadence GPIO support"
251	depends on OF_GPIO
252	select GPIO_GENERIC
253	select GPIOLIB_IRQCHIP
254	help
255	  Say yes here to enable support for Cadence GPIO controller.
256
257config GPIO_CLPS711X
258	tristate "CLPS711X GPIO support"
259	depends on ARCH_CLPS711X || COMPILE_TEST
260	select GPIO_GENERIC
261	help
262	  Say yes here to support GPIO on CLPS711X SoCs.
263
264config GPIO_DAVINCI
265	tristate "TI Davinci/Keystone GPIO support"
266	default y if ARCH_DAVINCI
267	depends on ((ARM || ARM64) && (ARCH_DAVINCI || ARCH_KEYSTONE || ARCH_K3)) || COMPILE_TEST
268	select GPIOLIB_IRQCHIP
269	help
270	  Say yes here to enable GPIO support for TI Davinci/Keystone SoCs.
271
272config GPIO_DWAPB
273	tristate "Synopsys DesignWare APB GPIO driver"
274	select GPIO_GENERIC
275	select GPIOLIB_IRQCHIP
276	help
277	  Say Y or M here to build support for the Synopsys DesignWare APB
278	  GPIO block.
279
280config GPIO_EIC_SPRD
281	tristate "Spreadtrum EIC support"
282	depends on ARCH_SPRD || COMPILE_TEST
283	depends on OF_GPIO
284	select GPIOLIB_IRQCHIP
285	help
286	  Say yes here to support Spreadtrum EIC device.
287
288config GPIO_EM
289	tristate "Emma Mobile GPIO"
290	depends on (ARCH_EMEV2 || COMPILE_TEST) && OF_GPIO
291	help
292	  Say yes here to support GPIO on Renesas Emma Mobile SoCs.
293
294config GPIO_EN7523
295	tristate "Airoha GPIO support"
296	depends on ARCH_AIROHA
297	default ARCH_AIROHA
298	select GPIO_GENERIC
299	select GPIOLIB_IRQCHIP
300	help
301	  Say Y or M here to support the GPIO controller block on the
302	  Airoha EN7523 SoC. It supports two banks of 32 GPIOs.
303
304config GPIO_EP93XX
305	def_bool y
306	depends on ARCH_EP93XX
307	select GPIO_GENERIC
308	select GPIOLIB_IRQCHIP
309
310config GPIO_EXAR
311	tristate "Support for GPIO pins on XR17V352/354/358"
312	depends on SERIAL_8250_EXAR
313	select REGMAP_MMIO
314	help
315	  Selecting this option will enable handling of GPIO pins present
316	  on Exar XR17V352/354/358 chips.
317
318config GPIO_GE_FPGA
319	bool "GE FPGA based GPIO"
320	depends on GE_FPGA || COMPILE_TEST
321	select GPIO_GENERIC
322	help
323	  Support for common GPIO functionality provided on some GE Single Board
324	  Computers.
325
326	  This driver provides basic support (configure as input or output, read
327	  and write pin state) for GPIO implemented in a number of GE single
328	  board computers.
329
330config GPIO_FTGPIO010
331	bool "Faraday FTGPIO010 GPIO"
332	depends on OF_GPIO
333	select GPIO_GENERIC
334	select GPIOLIB_IRQCHIP
335	default (ARCH_GEMINI || ARCH_MOXART)
336	help
337	  Support for common GPIOs from the Faraday FTGPIO010 IP core, found in
338	  Cortina systems Gemini platforms, Moxa ART and others.
339
340config GPIO_GENERIC_PLATFORM
341	tristate "Generic memory-mapped GPIO controller support (MMIO platform device)"
342	select GPIO_GENERIC
343	help
344	  Say yes here to support basic platform_device memory-mapped GPIO controllers.
345
346config GPIO_GRANITERAPIDS
347	tristate "Intel Granite Rapids-D vGPIO support"
348	depends on X86 || COMPILE_TEST
349	select GPIOLIB_IRQCHIP
350	help
351	  Select this to enable virtual GPIO support on platforms with the
352	  following SoCs:
353
354	  - Intel Granite Rapids-D
355
356	  The driver enables basic GPIO functionality and implements interrupt
357	  support. The virtual GPIO driver controls GPIO lines via a firmware
358	  interface. The physical GPIO pins reside on device that is external
359	  from the main SoC package, such as a BMC or a CPLD.
360
361	  To compile this driver as a module, choose M here: the module will
362	  be called gpio-graniterapids.
363
364config GPIO_GRGPIO
365	tristate "Aeroflex Gaisler GRGPIO support"
366	depends on OF || COMPILE_TEST
367	select GPIO_GENERIC
368	select GPIOLIB_IRQCHIP
369	help
370	  Select this to support Aeroflex Gaisler GRGPIO cores from the GRLIB
371	  VHDL IP core library.
372
373config GPIO_HISI
374	tristate "HiSilicon GPIO controller driver"
375	depends on ARM64 || COMPILE_TEST
376	select GPIO_GENERIC
377	select GPIOLIB_IRQCHIP
378	help
379	  Say Y or M here to build support for the HiSilicon GPIO controller
380	  driver GPIO block.
381	  This GPIO controller supports double-edge interrupt and multi-core
382	  concurrent access.
383
384config GPIO_HLWD
385	tristate "Nintendo Wii (Hollywood) GPIO"
386	depends on OF_GPIO
387	select GPIO_GENERIC
388	select GPIOLIB_IRQCHIP
389	help
390	  Select this to support the GPIO controller of the Nintendo Wii.
391
392	  If unsure, say N.
393
394config GPIO_ICH
395	tristate "Intel ICH GPIO"
396	depends on (X86 && LPC_ICH) || (COMPILE_TEST && HAS_IOPORT)
397	help
398	  Say yes here to support the GPIO functionality of a number of Intel
399	  ICH-based chipsets.  Currently supported devices: ICH6, ICH7, ICH8
400	  ICH9, ICH10, Series 5/3400 (e.g. Ibex Peak), Series 6/C200 (e.g.
401	  Cougar Point), NM10 (Tiger Point), and 3100 (Whitmore Lake).
402
403	  If unsure, say N.
404
405config GPIO_IMX_SCU
406       def_bool y
407       depends on IMX_SCU
408
409config GPIO_IXP4XX
410	bool "Intel IXP4xx GPIO"
411	depends on ARCH_IXP4XX
412	depends on OF
413	select GPIO_GENERIC
414	select GPIOLIB_IRQCHIP
415	select IRQ_DOMAIN_HIERARCHY
416	help
417	  Say yes here to support the GPIO functionality of a number of Intel
418	  IXP4xx series of chips.
419
420	  If unsure, say N.
421
422config GPIO_LOGICVC
423	tristate "Xylon LogiCVC GPIO support"
424	depends on MFD_SYSCON && OF
425	help
426	  Say yes here to support GPIO functionality of the Xylon LogiCVC
427	  programmable logic block.
428
429config GPIO_LOONGSON
430	bool "Loongson-2/3 GPIO support"
431	depends on CPU_LOONGSON2EF || CPU_LOONGSON64
432	help
433	  Driver for GPIO functionality on Loongson-2F/3A/3B processors.
434
435config GPIO_LOONGSON_64BIT
436	tristate "Loongson 64 bit GPIO support"
437	depends on LOONGARCH || COMPILE_TEST
438	depends on OF_GPIO
439	select GPIO_GENERIC
440	help
441	  Say yes here to support the GPIO functionality of a number of
442	  Loongson series of chips. The Loongson GPIO controller supports
443	  up to 60 GPIOS in total, 4 of which are dedicated GPIO pins, and
444	  the remaining 56 are reused with other functions, with edge or
445	  level triggered interrupts.
446
447config GPIO_LPC18XX
448	tristate "NXP LPC18XX/43XX GPIO support"
449	default y if ARCH_LPC18XX
450	depends on OF_GPIO && (ARCH_LPC18XX || COMPILE_TEST)
451	select IRQ_DOMAIN_HIERARCHY
452	select GPIOLIB_IRQCHIP
453	help
454	  Select this option to enable GPIO driver for
455	  NXP LPC18XX/43XX devices.
456
457config GPIO_LPC32XX
458	tristate "NXP LPC32XX GPIO support"
459	depends on OF_GPIO && (ARCH_LPC32XX || COMPILE_TEST)
460	help
461	  Select this option to enable GPIO driver for
462	  NXP LPC32XX devices.
463
464config GPIO_MB86S7X
465	tristate "GPIO support for Fujitsu MB86S7x Platforms"
466	help
467	  Say yes here to support the GPIO controller in Fujitsu MB86S70 SoCs.
468
469config GPIO_MENZ127
470	tristate "MEN 16Z127 GPIO support"
471	depends on MCB
472	select GPIO_GENERIC
473	help
474	  Say yes here to support the MEN 16Z127 GPIO Controller.
475
476config GPIO_MM_LANTIQ
477	bool "Lantiq Memory mapped GPIOs"
478	depends on LANTIQ && SOC_XWAY
479	select OF_GPIO_MM_GPIOCHIP
480	help
481	  This enables support for memory mapped GPIOs on the External Bus Unit
482	  (EBU) found on Lantiq SoCs. The GPIOs are output only as they are
483	  created by attaching a 16-bit latch to the bus.
484
485config GPIO_MPC5200
486	def_bool y
487	depends on PPC_MPC52xx
488
489config GPIO_MPC8XXX
490	bool "MPC512x/MPC8xxx/QorIQ GPIO support"
491	depends on PPC_MPC512x || PPC_MPC831x || PPC_MPC834x || PPC_MPC837x || \
492		   FSL_SOC_BOOKE || PPC_86xx || ARCH_LAYERSCAPE || ARM || \
493		   COMPILE_TEST
494	select GPIO_GENERIC
495	select GPIOLIB_IRQCHIP
496	help
497	  Say Y here if you're going to use hardware that connects to the
498	  MPC512x/831x/834x/837x/8572/8610/QorIQ GPIOs.
499
500config GPIO_MT7621
501	bool "Mediatek MT7621 GPIO Support"
502	depends on SOC_MT7620 || SOC_MT7621 || COMPILE_TEST
503	depends on OF_GPIO
504	select GPIO_GENERIC
505	select GPIOLIB_IRQCHIP
506	help
507	  Say yes here to support the Mediatek MT7621 SoC GPIO device.
508
509config GPIO_MVEBU
510	bool "Marvell Orion and EBU GPIO support" if COMPILE_TEST
511	depends on PLAT_ORION || ARCH_MVEBU || COMPILE_TEST
512	default PLAT_ORION || ARCH_MVEBU
513	select GENERIC_IRQ_CHIP
514	select REGMAP_MMIO
515
516config GPIO_MXC
517	tristate "i.MX GPIO support"
518	depends on ARCH_MXC || COMPILE_TEST
519	select GPIO_GENERIC
520	select GENERIC_IRQ_CHIP
521
522config GPIO_MXS
523	bool "Freescale MXS GPIO support" if COMPILE_TEST
524	depends on ARCH_MXS || COMPILE_TEST
525	default y if ARCH_MXS
526	select GPIO_GENERIC
527	select GENERIC_IRQ_CHIP
528
529config GPIO_NOMADIK
530	bool "Nomadik GPIO driver"
531	depends on ARCH_U8500 || ARCH_NOMADIK || MACH_EYEQ5 || COMPILE_TEST
532	select GPIOLIB_IRQCHIP
533	help
534	  Say yes here to support the Nomadik SoC GPIO block. This block is also
535	  used by the Mobileye EyeQ5 SoC.
536
537	  It handles up to 32 GPIOs per bank, that can all be interrupt sources.
538	  It is deeply interconnected with the associated pinctrl driver as GPIO
539	  registers handle muxing ("alternate functions") as well.
540
541config GPIO_NPCM_SGPIO
542	bool "Nuvoton SGPIO support"
543	depends on ARCH_NPCM || COMPILE_TEST
544	select GPIOLIB_IRQCHIP
545	help
546	  Say Y here to support Nuvoton NPCM7XX/NPCM8XX SGPIO functionality.
547
548config GPIO_OCTEON
549	tristate "Cavium OCTEON GPIO"
550	depends on CAVIUM_OCTEON_SOC
551	default y
552	help
553	  Say yes here to support the on-chip GPIO lines on the OCTEON
554	  family of SOCs.
555
556config GPIO_OMAP
557	tristate "TI OMAP GPIO support"
558	depends on ARCH_OMAP || COMPILE_TEST
559	default y if ARCH_OMAP
560	select GENERIC_IRQ_CHIP
561	select GPIOLIB_IRQCHIP
562	help
563	  Say yes here to enable GPIO support for TI OMAP SoCs.
564
565config GPIO_PL061
566	tristate "PrimeCell PL061 GPIO support"
567	depends on ARM_AMBA || COMPILE_TEST
568	select IRQ_DOMAIN
569	select GPIOLIB_IRQCHIP
570	help
571	  Say yes here to support the PrimeCell PL061 GPIO device.
572
573config GPIO_POLARFIRE_SOC
574	bool "Microchip FPGA GPIO support"
575	select REGMAP_MMIO
576	help
577	  Say yes here to support the GPIO controllers on Microchip FPGAs.
578
579config GPIO_PXA
580	bool "PXA GPIO support"
581	depends on ARCH_PXA || ARCH_MMP || COMPILE_TEST
582	select GPIOLIB_IRQCHIP
583	help
584	  Say yes here to support the PXA GPIO device.
585
586config GPIO_RCAR
587	tristate "Renesas R-Car and RZ/G GPIO support"
588	depends on ARCH_RENESAS || COMPILE_TEST
589	select GPIOLIB_IRQCHIP
590	help
591	  Say yes here to support GPIO on Renesas R-Car or RZ/G SoCs.
592
593config GPIO_RDA
594	bool "RDA Micro GPIO controller support"
595	depends on ARCH_RDA || COMPILE_TEST
596	depends on OF_GPIO
597	select GPIO_GENERIC
598	select GPIOLIB_IRQCHIP
599	help
600	  Say Y here to support RDA Micro GPIO controller.
601
602config GPIO_REALTEK_OTTO
603	tristate "Realtek Otto GPIO support"
604	depends on MACH_REALTEK_RTL
605	default MACH_REALTEK_RTL
606	select GPIO_GENERIC
607	select GPIOLIB_IRQCHIP
608	help
609	  The GPIO controller on the Otto MIPS platform supports up to two
610	  banks of 32 GPIOs, with edge triggered interrupts. The 32 GPIOs
611	  are grouped in four 8-bit wide ports.
612
613	  When built as a module, the module will be called realtek_otto_gpio.
614
615config GPIO_REG
616	bool
617	help
618	  A 32-bit single register GPIO fixed in/out implementation.  This
619	  can be used to represent any register as a set of GPIO signals.
620
621config GPIO_ROCKCHIP
622	tristate "Rockchip GPIO support"
623	depends on ARCH_ROCKCHIP || COMPILE_TEST
624	select GENERIC_IRQ_CHIP
625	select GPIOLIB_IRQCHIP
626	default ARCH_ROCKCHIP
627	help
628	  Say yes here to support GPIO on Rockchip SoCs.
629
630config GPIO_RTD
631	tristate "Realtek DHC GPIO support"
632	depends on ARCH_REALTEK || COMPILE_TEST
633	default y
634	select GPIOLIB_IRQCHIP
635	help
636	  This option enables support for GPIOs found on Realtek DHC(Digital
637	  Home Center) SoCs family, including RTD1295, RTD1315E, RTD1319,
638	  RTD1319D, RTD1395, RTD1619 and RTD1619B.
639
640	  Say yes here to support GPIO functionality and GPIO interrupt on
641	  Realtek DHC SoCs.
642
643config GPIO_SAMA5D2_PIOBU
644	tristate "SAMA5D2 PIOBU GPIO support"
645	depends on MFD_SYSCON
646	depends on OF_GPIO
647	depends on ARCH_AT91 || COMPILE_TEST
648	select GPIO_SYSCON
649	help
650	  Say yes here to use the PIOBU pins as GPIOs.
651
652	  PIOBU pins on the SAMA5D2 can be used as GPIOs.
653	  The difference from regular GPIOs is that they
654	  maintain their value during backup/self-refresh.
655
656config GPIO_SIFIVE
657	tristate "SiFive GPIO support"
658	depends on OF_GPIO
659	select IRQ_DOMAIN_HIERARCHY
660	select GPIO_GENERIC
661	select GPIOLIB_IRQCHIP
662	select REGMAP_MMIO
663	help
664	  Say yes here to support the GPIO device on SiFive SoCs.
665
666config GPIO_SIOX
667	tristate "SIOX GPIO support"
668	depends on SIOX
669	select GPIOLIB_IRQCHIP
670	help
671	  Say yes here to support SIOX I/O devices. These are units connected
672	  via a SIOX bus and have a number of fixed-direction I/O lines.
673
674config GPIO_SNPS_CREG
675	bool "Synopsys GPIO via CREG (Control REGisters) driver"
676	depends on ARC || COMPILE_TEST
677	depends on OF_GPIO
678	help
679	  This driver supports GPIOs via CREG on various Synopsys SoCs.
680	  This is a single-register MMIO GPIO driver for complex cases
681	  where only several fields in register belong to GPIO lines and
682	  each GPIO line owns a field with different length and on/off value.
683
684config GPIO_SPACEMIT_K1
685	tristate "SPACEMIT K1 GPIO support"
686	depends on ARCH_SPACEMIT || COMPILE_TEST
687	depends on OF_GPIO
688	select GPIO_GENERIC
689	select GPIOLIB_IRQCHIP
690	help
691	  Say yes here to support the SpacemiT's K1 GPIO device.
692
693config GPIO_SPEAR_SPICS
694	bool "ST SPEAr13xx SPI Chip Select as GPIO support"
695	depends on PLAT_SPEAR
696	select GENERIC_IRQ_CHIP
697	help
698	  Say yes here to support ST SPEAr SPI Chip Select as GPIO device.
699
700config GPIO_SPRD
701	tristate "Spreadtrum GPIO support"
702	depends on ARCH_SPRD || COMPILE_TEST
703	depends on OF_GPIO
704	select GPIOLIB_IRQCHIP
705	help
706	  Say yes here to support Spreadtrum GPIO device.
707
708config GPIO_STP_XWAY
709	bool "XWAY STP GPIOs"
710	depends on SOC_XWAY || COMPILE_TEST
711	depends on OF_GPIO
712	help
713	  This enables support for the Serial To Parallel (STP) unit found on
714	  XWAY SoC. The STP allows the SoC to drive a shift registers cascade,
715	  that can be up to 24 bits. This peripheral is aimed at driving LEDs.
716	  Some of the GPIOs/LEDs can be auto updated by the SoC with DSL and
717	  phy status.
718
719config GPIO_SYSCON
720	tristate "GPIO based on SYSCON"
721	depends on MFD_SYSCON && OF
722	help
723	  Say yes here to support GPIO functionality though SYSCON driver.
724
725config GPIO_TANGIER
726	tristate
727	select GPIOLIB_IRQCHIP
728	help
729	  GPIO support for Intel Tangier and compatible platforms.
730	  Currently supported:
731	   - Elkhart Lake
732	   - Merrifield
733
734	  If built as a module its name will be gpio-tangier.
735
736config GPIO_TB10X
737	bool
738	select GPIO_GENERIC
739	select GENERIC_IRQ_CHIP
740	select OF_GPIO
741
742config GPIO_TEGRA
743	tristate "NVIDIA Tegra GPIO support"
744	default ARCH_TEGRA
745	depends on ARCH_TEGRA || COMPILE_TEST
746	depends on OF_GPIO
747	select GPIOLIB_IRQCHIP
748	select IRQ_DOMAIN_HIERARCHY
749	help
750	  Say yes here to support GPIO pins on NVIDIA Tegra SoCs.
751
752config GPIO_TEGRA186
753	tristate "NVIDIA Tegra186 GPIO support"
754	default ARCH_TEGRA_186_SOC || ARCH_TEGRA_194_SOC || ARCH_TEGRA_234_SOC
755	depends on ARCH_TEGRA_186_SOC || ARCH_TEGRA_194_SOC || ARCH_TEGRA_234_SOC || COMPILE_TEST
756	depends on OF_GPIO
757	select GPIOLIB_IRQCHIP
758	select IRQ_DOMAIN_HIERARCHY
759	help
760	  Say yes here to support GPIO pins on NVIDIA Tegra186, 194 and 234 SoCs.
761
762config GPIO_TS4800
763	tristate "TS-4800 DIO blocks and compatibles"
764	depends on OF_GPIO
765	depends on SOC_IMX51 || COMPILE_TEST
766	select GPIO_GENERIC
767	help
768	  This driver support TS-4800 FPGA GPIO controllers.
769
770config GPIO_THUNDERX
771	tristate "Cavium ThunderX/OCTEON-TX GPIO"
772	depends on ARCH_THUNDER || (64BIT && COMPILE_TEST)
773	depends on PCI_MSI
774	select GPIOLIB_IRQCHIP
775	select IRQ_DOMAIN_HIERARCHY
776	select IRQ_FASTEOI_HIERARCHY_HANDLERS
777	help
778	  Say yes here to support the on-chip GPIO lines on the ThunderX
779	  and OCTEON-TX families of SoCs.
780
781config GPIO_UNIPHIER
782	tristate "UniPhier GPIO support"
783	depends on ARCH_UNIPHIER || COMPILE_TEST
784	depends on OF_GPIO
785	select IRQ_DOMAIN_HIERARCHY
786	help
787	  Say yes here to support UniPhier GPIOs.
788
789config GPIO_VF610
790	tristate "VF610 GPIO support"
791	default y if SOC_VF610
792	depends on ARCH_MXC || COMPILE_TEST
793	select GPIOLIB_IRQCHIP
794	select GPIO_GENERIC
795	help
796	  Say yes here to support i.MX or Vybrid vf610 GPIOs.
797
798config GPIO_VISCONTI
799	tristate "Toshiba Visconti GPIO support"
800	depends on ARCH_VISCONTI || COMPILE_TEST
801	depends on OF_GPIO
802	select GPIOLIB_IRQCHIP
803	select GPIO_GENERIC
804	select IRQ_DOMAIN_HIERARCHY
805	help
806	  Say yes here to support GPIO on Tohisba Visconti.
807
808config GPIO_WCD934X
809	tristate "Qualcomm Technologies Inc WCD9340/WCD9341 GPIO controller driver"
810	depends on MFD_WCD934X && OF_GPIO
811	help
812         This driver is to support GPIO block found on the Qualcomm Technologies
813	 Inc WCD9340/WCD9341 Audio Codec.
814
815config GPIO_XGENE
816	bool "APM X-Gene GPIO controller support"
817	depends on ARM64 && OF_GPIO
818	help
819	  This driver is to support the GPIO block within the APM X-Gene SoC
820	  platform's generic flash controller. The GPIO pins are muxed with
821	  the generic flash controller's address and data pins. Say yes
822	  here to enable the GFC GPIO functionality.
823
824config GPIO_XGENE_SB
825	tristate "APM X-Gene GPIO standby controller support"
826	depends on (ARCH_XGENE || COMPILE_TEST)
827	select GPIO_GENERIC
828	select GPIOLIB_IRQCHIP
829	select IRQ_DOMAIN_HIERARCHY
830	help
831	  This driver supports the GPIO block within the APM X-Gene
832	  Standby Domain. Say yes here to enable the GPIO functionality.
833
834config GPIO_XILINX
835	tristate "Xilinx GPIO support"
836	select GPIOLIB_IRQCHIP
837	help
838	  Say yes here to support the Xilinx FPGA GPIO device.
839
840config GPIO_XLP
841	tristate "Cavium ThunderX2 GPIO support"
842	depends on ARCH_THUNDER2 || COMPILE_TEST
843	select GPIOLIB_IRQCHIP
844	help
845	  This driver provides support for GPIO interface on Cavium's ThunderX2
846	  CN99XX SoCs (Originally from Netlogic XLP).
847
848	  If unsure, say N.
849
850config GPIO_XTENSA
851	bool "Xtensa GPIO32 support"
852	depends on XTENSA
853	depends on HAVE_XTENSA_GPIO32
854	depends on !SMP
855	help
856	  Say yes here to support the Xtensa internal GPIO32 IMPWIRE (input)
857	  and EXPSTATE (output) ports.
858
859config GPIO_ZEVIO
860	bool "LSI ZEVIO SoC memory mapped GPIOs"
861	depends on ARM
862	help
863	  Say yes here to support the GPIO controller in LSI ZEVIO SoCs.
864
865config GPIO_ZYNQ
866	tristate "Xilinx Zynq GPIO support"
867	depends on ARCH_ZYNQ || ARCH_ZYNQMP || COMPILE_TEST
868	select GPIOLIB_IRQCHIP
869	help
870	  Say yes here to support Xilinx Zynq GPIO controller.
871
872config GPIO_ZYNQMP_MODEPIN
873	tristate "ZynqMP ps-mode pin GPIO configuration driver"
874	depends on ZYNQMP_FIRMWARE || COMPILE_TEST
875	default ZYNQMP_FIRMWARE
876	help
877	  Say yes here to support the ZynqMP ps-mode pin GPIO configuration
878	  driver.
879
880	  This ps-mode pin GPIO driver is based on GPIO framework. PS_MODE
881	  is 4-bits boot mode pins. It sets and gets the status of
882	  the ps-mode pin. Every pin can be configured as input/output.
883
884config GPIO_LOONGSON1
885	tristate "Loongson1 GPIO support"
886	depends on MACH_LOONGSON32
887	select GPIO_GENERIC
888	help
889	  Say Y or M here to support GPIO on Loongson1 SoCs.
890
891config GPIO_AMD_FCH
892	tristate "GPIO support for AMD Fusion Controller Hub (G-series SOCs)"
893	help
894	  This option enables driver for GPIO on AMD's Fusion Controller Hub,
895	  as found on G-series SOCs (e.g. GX-412TC).
896
897	  Note: This driver doesn't register itself automatically, as it
898	  needs to be provided with platform-specific configuration.
899	  (See e.g. CONFIG_PCENGINES_APU2.)
900
901config GPIO_MSC313
902	bool "MStar MSC313 GPIO support"
903	depends on ARCH_MSTARV7 || COMPILE_TEST
904	default ARCH_MSTARV7
905	select GPIOLIB_IRQCHIP
906	select IRQ_DOMAIN_HIERARCHY
907	help
908	  Say Y here to support the main GPIO block on MStar/SigmaStar
909	  ARMv7-based SoCs.
910
911config GPIO_IDT3243X
912	tristate "IDT 79RC3243X GPIO support"
913	depends on MIKROTIK_RB532 || COMPILE_TEST
914	select GPIO_GENERIC
915	select GPIOLIB_IRQCHIP
916	help
917	  Select this option to enable GPIO driver for
918	  IDT 79RC3243X-based devices like Mikrotik RB532.
919
920	  To compile this driver as a module, choose M here: the module will
921	  be called gpio-idt3243x.
922
923endmenu
924
925menu "Port-mapped I/O GPIO drivers"
926	depends on X86 && HAS_IOPORT # I/O space access
927
928config GPIO_VX855
929	tristate "VIA VX855/VX875 GPIO"
930	depends on PCI
931	select MFD_CORE
932	select MFD_VX855
933	help
934	  Support access to the VX855/VX875 GPIO lines through the GPIO library.
935
936	  This driver provides common support for accessing the device.
937	  Additional drivers must be enabled in order to use the
938	  functionality of the device.
939
940config GPIO_I8255
941	tristate
942	select GPIO_REGMAP
943	help
944	  Enables support for the i8255 interface library functions. The i8255
945	  interface library provides functions to facilitate communication with
946	  interfaces compatible with the venerable Intel 8255 Programmable
947	  Peripheral Interface (PPI). The Intel 8255 PPI chip was first released
948	  in the early 1970s but compatible interfaces are nowadays typically
949	  found embedded in larger VLSI processing chips and FPGA components.
950
951	  If built as a module its name will be gpio-i8255.
952
953config GPIO_104_DIO_48E
954	tristate "ACCES 104-DIO-48E GPIO support"
955	depends on PC104
956	select ISA_BUS_API
957	select REGMAP_MMIO
958	select REGMAP_IRQ
959	select GPIOLIB_IRQCHIP
960	select GPIO_I8255
961	select I8254
962	help
963	  Enables GPIO support for the ACCES 104-DIO-48E series (104-DIO-48E,
964	  104-DIO-24E). The base port addresses for the devices may be
965	  configured via the base module parameter. The interrupt line numbers
966	  for the devices may be configured via the irq module parameter.
967
968config GPIO_104_IDIO_16
969	tristate "ACCES 104-IDIO-16 GPIO support"
970	depends on PC104
971	select ISA_BUS_API
972	select REGMAP_MMIO
973	select GPIO_IDIO_16
974	help
975	  Enables GPIO support for the ACCES 104-IDIO-16 family (104-IDIO-16,
976	  104-IDIO-16E, 104-IDO-16, 104-IDIO-8, 104-IDIO-8E, 104-IDO-8). The
977	  base port addresses for the devices may be configured via the base
978	  module parameter. The interrupt line numbers for the devices may be
979	  configured via the irq module parameter.
980
981config GPIO_104_IDI_48
982	tristate "ACCES 104-IDI-48 GPIO support"
983	depends on PC104
984	select ISA_BUS_API
985	select REGMAP_MMIO
986	select REGMAP_IRQ
987	select GPIOLIB_IRQCHIP
988	select GPIO_REGMAP
989	help
990	  Enables GPIO support for the ACCES 104-IDI-48 family (104-IDI-48A,
991	  104-IDI-48AC, 104-IDI-48B, 104-IDI-48BC). The base port addresses for
992	  the devices may be configured via the base module parameter. The
993	  interrupt line numbers for the devices may be configured via the irq
994	  module parameter.
995
996config GPIO_F7188X
997	tristate "Fintek and Nuvoton Super-I/O GPIO support"
998	help
999	  This option enables support for GPIOs found on Fintek Super-I/O
1000	  chips F71869, F71869A, F71882FG, F71889F and F81866.
1001	  As well as Nuvoton Super-I/O chip NCT6126D.
1002
1003	  To compile this driver as a module, choose M here: the module will
1004	  be called f7188x-gpio.
1005
1006config GPIO_GPIO_MM
1007	tristate "Diamond Systems GPIO-MM GPIO support"
1008	depends on PC104
1009	select ISA_BUS_API
1010	select REGMAP_MMIO
1011	select GPIO_I8255
1012	help
1013	  Enables GPIO support for the Diamond Systems GPIO-MM and GPIO-MM-12.
1014
1015	  The Diamond Systems GPIO-MM device features 48 lines of digital I/O
1016	  via the emulation of dual 82C55A PPI chips. This driver provides GPIO
1017	  support for these 48 channels of digital I/O.
1018
1019	  The base port addresses for the devices may be configured via the base
1020	  array module parameter.
1021
1022config GPIO_IT87
1023	tristate "IT87xx GPIO support"
1024	help
1025	  Say yes here to support GPIO functionality of IT87xx Super I/O chips.
1026
1027	  This driver is tested with ITE IT8728 and IT8732 Super I/O chips, and
1028	  supports the IT8761E, IT8613, IT8620E, and IT8628E Super I/O chips as
1029	  well.
1030
1031	  To compile this driver as a module, choose M here: the module will
1032	  be called gpio_it87.
1033
1034config GPIO_SCH
1035	tristate "Intel SCH/TunnelCreek/Centerton/Quark X1000 GPIO"
1036	depends on (X86 || COMPILE_TEST) && ACPI
1037	depends on LPC_SCH
1038	select GPIOLIB_IRQCHIP
1039	help
1040	  Say yes here to support GPIO interface on Intel Poulsbo SCH,
1041	  Intel Tunnel Creek processor, Intel Centerton processor or
1042	  Intel Quark X1000 SoC.
1043
1044	  The Intel SCH contains a total of 14 GPIO pins. Ten GPIOs are
1045	  powered by the core power rail and are turned off during sleep
1046	  modes (S3 and higher). The remaining four GPIOs are powered by
1047	  the Intel SCH suspend power supply. These GPIOs remain
1048	  active during S3. The suspend-powered GPIOs can be used to wake the
1049	  system from the Suspend-to-RAM state.
1050
1051	  The Intel Tunnel Creek processor has 5 GPIOs powered by the
1052	  core power rail and 9 from suspend power supply.
1053
1054	  The Intel Centerton processor has a total of 30 GPIO pins.
1055	  Twenty-one are powered by the core power rail and 9 from the
1056	  suspend power supply.
1057
1058	  The Intel Quark X1000 SoC has 2 GPIOs powered by the core
1059	  power well and 6 from the suspend power well.
1060
1061config GPIO_SCH311X
1062	tristate "SMSC SCH311x SuperI/O GPIO"
1063	help
1064	  Driver to enable the GPIOs found on SMSC SMSC SCH3112, SCH3114 and
1065	  SCH3116 "Super I/O" chipsets.
1066
1067	  To compile this driver as a module, choose M here: the module will
1068	  be called gpio-sch311x.
1069
1070config GPIO_TS5500
1071	tristate "TS-5500 DIO blocks and compatibles"
1072	depends on TS5500 || COMPILE_TEST
1073	help
1074	  This driver supports Digital I/O exposed by pin blocks found on some
1075	  Technologic Systems platforms. It includes, but is not limited to, 3
1076	  blocks of the TS-5500: DIO1, DIO2 and the LCD port, and the TS-5600
1077	  LCD port.
1078
1079config GPIO_WINBOND
1080	tristate "Winbond Super I/O GPIO support"
1081	select ISA_BUS_API
1082	help
1083	  This option enables support for GPIOs found on Winbond Super I/O
1084	  chips.
1085	  Currently, only W83627UHG (also known as Nuvoton NCT6627UD) is
1086	  supported.
1087
1088	  You will need to provide a module parameter "gpios", or a
1089	  boot-time parameter "gpio_winbond.gpios" with a bitmask of GPIO
1090	  ports to enable (bit 0 is GPIO1, bit 1 is GPIO2, etc.).
1091
1092	  To compile this driver as a module, choose M here: the module will
1093	  be called gpio-winbond.
1094
1095config GPIO_WS16C48
1096	tristate "WinSystems WS16C48 GPIO support"
1097	select ISA_BUS_API
1098	select REGMAP_IRQ
1099	select REGMAP_MMIO
1100	select GPIOLIB_IRQCHIP
1101	select GPIO_REGMAP
1102	help
1103	  Enables GPIO support for the WinSystems WS16C48. The base port
1104	  addresses for the devices may be configured via the base module
1105	  parameter. The interrupt line numbers for the devices may be
1106	  configured via the irq module parameter.
1107
1108endmenu
1109
1110menu "I2C GPIO expanders"
1111	depends on I2C
1112
1113config GPIO_ADNP
1114	tristate "Avionic Design N-bit GPIO expander"
1115	depends on OF_GPIO
1116	select GPIOLIB_IRQCHIP
1117	help
1118	  This option enables support for N GPIOs found on Avionic Design
1119	  I2C GPIO expanders. The register space will be extended by powers
1120	  of two, so the controller will need to accommodate for that. For
1121	  example: if a controller provides 48 pins, 6 registers will be
1122	  enough to represent all pins, but the driver will assume a
1123	  register layout for 64 pins (8 registers).
1124
1125config GPIO_FXL6408
1126	tristate "FXL6408 I2C GPIO expander"
1127	select GPIO_REGMAP
1128	select REGMAP_I2C
1129	help
1130	  GPIO driver for Fairchild Semiconductor FXL6408 GPIO expander.
1131
1132	  To compile this driver as a module, choose M here: the module will
1133	  be called gpio-fxl6408.
1134
1135config GPIO_DS4520
1136	tristate "DS4520 I2C GPIO expander"
1137	select REGMAP_I2C
1138	select GPIO_REGMAP
1139	help
1140	  GPIO driver for ADI DS4520 I2C-based GPIO expander.
1141	  Say yes here to enable the GPIO driver for the ADI DS4520 chip.
1142
1143	  To compile this driver as a module, choose M here: the module will
1144	  be called gpio-ds4520.
1145
1146config GPIO_GW_PLD
1147	tristate "Gateworks PLD GPIO Expander"
1148	depends on OF_GPIO
1149	help
1150	  Say yes here to provide access to the Gateworks I2C PLD GPIO
1151	  Expander. This is used at least on the Cambria GW2358-4.
1152
1153config GPIO_MAX7300
1154	tristate "Maxim MAX7300 GPIO expander"
1155	select GPIO_MAX730X
1156	help
1157	  GPIO driver for Maxim MAX7300 I2C-based GPIO expander.
1158
1159config GPIO_MAX732X
1160	tristate "MAX7319, MAX7320-7327 I2C Port Expanders"
1161	help
1162	  Say yes here to support the MAX7319, MAX7320-7327 series of I2C
1163	  Port Expanders. Each IO port on these chips has a fixed role of
1164	  Input (designated by 'I'), Push-Pull Output ('O'), or Open-Drain
1165	  Input and Output (designed by 'P'). The combinations are listed
1166	  below:
1167
1168	  8 bits:       max7319 (8I), max7320 (8O), max7321 (8P),
1169	                max7322 (4I4O), max7323 (4P4O)
1170
1171	  16 bits:      max7324 (8I8O), max7325 (8P8O),
1172	                max7326 (4I12O), max7327 (4P12O)
1173
1174	  Board setup code must specify the model to use, and the start
1175	  number for these GPIOs.
1176
1177config GPIO_MAX732X_IRQ
1178	bool "Interrupt controller support for MAX732x"
1179	depends on GPIO_MAX732X=y
1180	select GPIOLIB_IRQCHIP
1181	help
1182	  Say yes here to enable the max732x to be used as an interrupt
1183	  controller. It requires the driver to be built in the kernel.
1184
1185config GPIO_PCA953X
1186	tristate "PCA95[357]x, PCA9698, TCA64xx, and MAX7310 I/O ports"
1187	select REGMAP_I2C
1188	help
1189	  Say yes here to provide access to several register-oriented
1190	  SMBus I/O expanders, made mostly by NXP or TI.  Compatible
1191	  models include:
1192
1193	  4 bits:       pca9536, pca9537
1194
1195	  8 bits:       max7310, max7315, pca6107, pca9534, pca9538, pca9554,
1196	                pca9556, pca9557, pca9574, tca6408, tca9554, xra1202
1197
1198	  16 bits:      max7312, max7313, pca9535, pca9539, pca9555, pca9575,
1199	                tca6416
1200
1201	  24 bits:      tca6424
1202
1203	  40 bits:      pca9505, pca9698
1204
1205config GPIO_PCA953X_IRQ
1206	bool "Interrupt controller support for PCA953x"
1207	depends on GPIO_PCA953X
1208	select GPIOLIB_IRQCHIP
1209	help
1210	  Say yes here to enable the pca953x to be used as an interrupt
1211	  controller.
1212
1213config GPIO_PCA9570
1214	tristate "PCA9570 4-Bit I2C GPO expander"
1215	help
1216	  Say yes here to enable the GPO driver for the NXP PCA9570 chip.
1217
1218	  To compile this driver as a module, choose M here: the module will
1219	  be called gpio-pca9570.
1220
1221config GPIO_PCF857X
1222	tristate "PCF857x, PCA{85,96}7x, and MAX732[89] I2C GPIO expanders"
1223	select GPIOLIB_IRQCHIP
1224	select IRQ_DOMAIN
1225	help
1226	  Say yes here to provide access to most "quasi-bidirectional" I2C
1227	  GPIO expanders used for additional digital outputs or inputs.
1228	  Most of these parts are from NXP, though TI is a second source for
1229	  some of them.  Compatible models include:
1230
1231	  8 bits:   pcf8574, pcf8574a, pca8574, pca8574a,
1232	            pca9670, pca9672, pca9674, pca9674a,
1233	            max7328, max7329
1234
1235	  16 bits:  pcf8575, pcf8575c, pca8575,
1236	            pca9671, pca9673, pca9675
1237
1238	  Your board setup code will need to declare the expanders in
1239	  use, and assign numbers to the GPIOs they expose.  Those GPIOs
1240	  can then be used from drivers and other kernel code, just like
1241	  other GPIOs, but only accessible from task contexts.
1242
1243	  This driver provides an in-kernel interface to those GPIOs using
1244	  platform-neutral GPIO calls.
1245
1246config GPIO_TPIC2810
1247	tristate "TPIC2810 8-Bit I2C GPO expander"
1248	help
1249	  Say yes here to enable the GPO driver for the TI TPIC2810 chip.
1250
1251	  To compile this driver as a module, choose M here: the module will
1252	  be called gpio-tpic2810.
1253
1254config GPIO_TS4900
1255	tristate "Technologic Systems FPGA I2C GPIO"
1256	depends on SOC_IMX6 || COMPILE_TEST
1257	select REGMAP_I2C
1258	help
1259	  Say yes here to enabled the GPIO driver for Technologic's FPGA core.
1260	  Series supported include TS-4100, TS-4900, TS-7970 and TS-7990.
1261
1262endmenu
1263
1264menu "MFD GPIO expanders"
1265
1266config GPIO_ADP5520
1267	tristate "GPIO Support for ADP5520 PMIC"
1268	depends on PMIC_ADP5520
1269	help
1270	  This option enables support for on-chip GPIO found
1271	  on Analog Devices ADP5520 PMICs.
1272
1273config GPIO_ADP5585
1274	tristate "GPIO Support for ADP5585"
1275	depends on MFD_ADP5585
1276	select GPIOLIB_IRQCHIP
1277	help
1278	  This option enables support for the GPIO function found in the Analog
1279	  Devices ADP5585.
1280
1281config GPIO_ALTERA_A10SR
1282	tristate "Altera Arria10 System Resource GPIO"
1283	depends on MFD_ALTERA_A10SR
1284	help
1285	  Driver for Arria10 Development Kit GPIO expansion which
1286	  includes reads of pushbuttons and DIP switches as well
1287	  as writes to LEDs.
1288
1289config GPIO_ARIZONA
1290	tristate "Wolfson Microelectronics Arizona class devices"
1291	depends on MFD_ARIZONA
1292	help
1293	  Support for GPIOs on Wolfson Arizona class devices.
1294
1295config GPIO_BD71815
1296	tristate "ROHM BD71815 PMIC GPIO support"
1297	depends on MFD_ROHM_BD71828
1298	help
1299	  Support for GPO(s) on ROHM BD71815 PMIC. There are two GPOs
1300	  available on the ROHM PMIC.
1301
1302	  This driver can also be built as a module. If so, the module
1303	  will be called gpio-bd71815.
1304
1305config GPIO_BD71828
1306	tristate "ROHM BD71828 GPIO support"
1307	depends on MFD_ROHM_BD71828
1308	help
1309	  Support for GPIOs on ROHM BD71828 PMIC. There are three GPIOs
1310	  available on the ROHM PMIC in total. The GPIOs are limited to
1311	  outputs only and pins must be configured to GPIO outputs by
1312	  OTP. Enable this only if you want to use these pins as outputs.
1313
1314	  This driver can also be built as a module. If so, the module
1315	  will be called gpio-bd71828.
1316
1317config GPIO_BD9571MWV
1318	tristate "ROHM BD9571 GPIO support"
1319	depends on MFD_BD9571MWV
1320	help
1321	  Support for GPIOs on ROHM BD9571 PMIC. There are two GPIOs
1322	  available on the ROHM PMIC in total, both of which can also
1323	  generate interrupts.
1324
1325	  This driver can also be built as a module. If so, the module
1326	  will be called gpio-bd9571mwv.
1327
1328config GPIO_CGBC
1329	tristate "Congatec Board Controller GPIO support"
1330	depends on MFD_CGBC
1331	help
1332	  Select this option to enable GPIO support for the Congatec Board
1333	  Controller.
1334
1335	  This driver can also be built as a module. If so, the module will be
1336	  called gpio-cgbc.
1337
1338config GPIO_CROS_EC
1339	tristate "ChromeOS EC GPIO support"
1340	depends on CROS_EC
1341	help
1342	  GPIO driver for the ChromeOS Embedded Controller (EC). GPIOs
1343	  cannot be set unless the system is unlocked.
1344
1345	  This driver can also be built as a module. If so, the module
1346	  will be called gpio-cros-ec.
1347
1348config GPIO_CRYSTAL_COVE
1349	tristate "GPIO support for Crystal Cove PMIC"
1350	depends on (X86 || COMPILE_TEST) && INTEL_SOC_PMIC
1351	select GPIOLIB_IRQCHIP
1352	help
1353	  Support for GPIO pins on Crystal Cove PMIC.
1354
1355	  Say Yes if you have a Intel SoC-based tablet with Crystal Cove PMIC
1356	  inside.
1357
1358	  This driver can also be built as a module. If so, the module will be
1359	  called gpio-crystalcove.
1360
1361config GPIO_CS5535
1362	tristate "AMD CS5535/CS5536 GPIO support"
1363	depends on X86 || MIPS || COMPILE_TEST
1364	depends on MFD_CS5535
1365	help
1366	  The AMD CS5535 and CS5536 southbridges support 28 GPIO pins that
1367	  can be used for quite a number of things.  The CS5535/6 is found on
1368	  AMD Geode and Lemote Yeeloong devices.
1369
1370	  If unsure, say N.
1371
1372config GPIO_DA9052
1373	tristate "Dialog DA9052 GPIO"
1374	depends on PMIC_DA9052
1375	help
1376	  Say yes here to enable the GPIO driver for the DA9052 chip.
1377
1378config GPIO_DA9055
1379	tristate "Dialog Semiconductor DA9055 GPIO"
1380	depends on MFD_DA9055
1381	help
1382	  Say yes here to enable the GPIO driver for the DA9055 chip.
1383
1384	  The Dialog DA9055 PMIC chip has 3 GPIO pins that can be
1385	  be controlled by this driver.
1386
1387	  If driver is built as a module it will be called gpio-da9055.
1388
1389config GPIO_DLN2
1390	tristate "Diolan DLN2 GPIO support"
1391	depends on MFD_DLN2
1392	select GPIOLIB_IRQCHIP
1393
1394	help
1395	  Select this option to enable GPIO driver for the Diolan DLN2
1396	  board.
1397
1398	  This driver can also be built as a module. If so, the module
1399	  will be called gpio-dln2.
1400
1401config HTC_EGPIO
1402	bool "HTC EGPIO support"
1403	depends on ARM || COMPILE_TEST
1404	help
1405	  This driver supports the CPLD egpio chip present on
1406	  several HTC phones.  It provides basic support for input
1407	  pins, output pins, and IRQs.
1408
1409config GPIO_ELKHARTLAKE
1410	tristate "Intel Elkhart Lake PSE GPIO support"
1411	depends on X86 || COMPILE_TEST
1412	select GPIO_TANGIER
1413	help
1414	  Select this option to enable GPIO support for Intel Elkhart Lake
1415	  PSE GPIO IP.
1416
1417	  To compile this driver as a module, choose M here: the module will
1418	  be called gpio-elkhartlake.
1419
1420config GPIO_JANZ_TTL
1421	tristate "Janz VMOD-TTL Digital IO Module"
1422	depends on MFD_JANZ_CMODIO
1423	help
1424	  This enables support for the Janz VMOD-TTL Digital IO module.
1425	  This driver provides support for driving the pins in output
1426	  mode only. Input mode is not supported.
1427
1428config GPIO_KEMPLD
1429	tristate "Kontron ETX / COMexpress GPIO"
1430	depends on MFD_KEMPLD
1431	help
1432	  This enables support for the PLD GPIO interface on some Kontron ETX
1433	  and COMexpress (ETXexpress) modules.
1434
1435	  This driver can also be built as a module. If so, the module will be
1436	  called gpio-kempld.
1437
1438config GPIO_LJCA
1439	tristate "INTEL La Jolla Cove Adapter GPIO support"
1440	depends on USB_LJCA
1441	select GPIOLIB_IRQCHIP
1442	default USB_LJCA
1443	help
1444	  Select this option to enable GPIO driver for the INTEL
1445	  La Jolla Cove Adapter (LJCA) board.
1446
1447	  This driver can also be built as a module. If so, the module
1448	  will be called gpio-ljca.
1449
1450config GPIO_LP3943
1451	tristate "TI/National Semiconductor LP3943 GPIO expander"
1452	depends on MFD_LP3943
1453	help
1454	  GPIO driver for LP3943 MFD.
1455	  LP3943 can be used as a GPIO expander which provides up to 16 GPIOs.
1456	  Open drain outputs are required for this usage.
1457
1458config GPIO_LP873X
1459	tristate "TI LP873X GPO"
1460	depends on MFD_TI_LP873X
1461	help
1462	  This driver supports the GPO on TI Lp873x PMICs. 2 GPOs are present
1463	  on LP873X PMICs.
1464
1465	  This driver can also be built as a module. If so, the module will be
1466	  called gpio-lp873x.
1467
1468config GPIO_LP87565
1469	tristate "TI LP87565 GPIO"
1470	depends on MFD_TI_LP87565
1471	help
1472	  This driver supports the GPIO on TI Lp873565 PMICs. 3 GPIOs are present
1473	  on LP87565 PMICs.
1474
1475	  This driver can also be built as a module. If so, the module will be
1476	  called gpio-lp87565.
1477
1478config GPIO_MACSMC
1479	tristate "Apple Mac SMC GPIO"
1480	depends on MFD_MACSMC
1481	help
1482	  Support for GPIOs controlled by the SMC microcontroller on Apple Mac
1483	  systems.
1484
1485	  This driver can also be built as a module. If so, the module will be
1486	  called gpio-macsmc.
1487
1488config GPIO_MADERA
1489	tristate "Cirrus Logic Madera class codecs"
1490	depends on PINCTRL_MADERA
1491	help
1492	  Support for GPIOs on Cirrus Logic Madera class codecs.
1493
1494config GPIO_MAX77620
1495	tristate "GPIO support for PMIC MAX77620 and MAX20024"
1496	depends on MFD_MAX77620
1497	select GPIOLIB_IRQCHIP
1498	help
1499	  GPIO driver for MAX77620 and MAX20024 PMIC from Maxim Semiconductor.
1500	  MAX77620 PMIC has 8 pins that can be configured as GPIOs. The
1501	  driver also provides interrupt support for each of the GPIOs.
1502	  Say yes here to enable the max77620 to be used as GPIO controller.
1503
1504config GPIO_MAX77650
1505	tristate "Maxim MAX77650/77651 GPIO support"
1506	depends on MFD_MAX77650
1507	help
1508	  GPIO driver for MAX77650/77651 PMIC from Maxim Semiconductor.
1509	  These chips have a single pin that can be configured as GPIO.
1510
1511config GPIO_MAX77759
1512	tristate "Maxim Integrated MAX77759 GPIO support"
1513	depends on MFD_MAX77759
1514	default MFD_MAX77759
1515	select GPIOLIB_IRQCHIP
1516	help
1517	  GPIO driver for MAX77759 PMIC from Maxim Integrated.
1518	  There are two GPIOs available on these chips in total, both of
1519	  which can also generate interrupts.
1520
1521	  This driver can also be built as a module. If so, the module will be
1522	  called gpio-max77759.
1523
1524config GPIO_PALMAS
1525	tristate "TI PALMAS series PMICs GPIO"
1526	depends on MFD_PALMAS
1527	help
1528	  Select this option to enable GPIO driver for the TI PALMAS
1529	  series chip family.
1530
1531config GPIO_PMIC_EIC_SPRD
1532	tristate "Spreadtrum PMIC EIC support"
1533	depends on MFD_SC27XX_PMIC || COMPILE_TEST
1534	depends on OF_GPIO
1535	select GPIOLIB_IRQCHIP
1536	help
1537	  Say yes here to support Spreadtrum PMIC EIC device.
1538
1539config GPIO_RC5T583
1540	bool "RICOH RC5T583 GPIO"
1541	depends on MFD_RC5T583
1542	help
1543	  Select this option to enable GPIO driver for the Ricoh RC5T583
1544	  chip family.
1545	  This driver provides the support for driving/reading the GPIO pins
1546	  of RC5T583 device through standard GPIO library.
1547
1548config GPIO_SL28CPLD
1549	tristate "Kontron sl28cpld GPIO support"
1550	depends on MFD_SL28CPLD || COMPILE_TEST
1551	select GPIO_REGMAP
1552	select GPIOLIB_IRQCHIP
1553	select REGMAP_IRQ
1554	help
1555	  This enables support for the GPIOs found on the Kontron sl28 CPLD.
1556
1557	  This driver can also be built as a module. If so, the module will be
1558	  called gpio-sl28cpld.
1559
1560config GPIO_STMPE
1561	bool "STMPE GPIOs"
1562	depends on MFD_STMPE
1563	depends on OF_GPIO
1564	select GPIOLIB_IRQCHIP
1565	help
1566	  This enables support for the GPIOs found on the STMPE I/O
1567	  Expanders.
1568
1569config GPIO_TC3589X
1570	bool "TC3589X GPIOs"
1571	depends on MFD_TC3589X
1572	depends on OF_GPIO
1573	select GPIOLIB_IRQCHIP
1574	help
1575	  This enables support for the GPIOs found on the TC3589X
1576	  I/O Expander.
1577
1578config GPIO_TIMBERDALE
1579	bool "Support for timberdale GPIO IP"
1580	depends on MFD_TIMBERDALE
1581	select GPIOLIB_IRQCHIP
1582	help
1583	Add support for the GPIO IP in the timberdale FPGA.
1584
1585config GPIO_TN48M_CPLD
1586	tristate "Delta Networks TN48M switch CPLD GPIO driver"
1587	depends on MFD_TN48M_CPLD || COMPILE_TEST
1588	select GPIO_REGMAP
1589	help
1590	  This enables support for the GPIOs found on the Delta
1591	  Networks TN48M switch Lattice CPLD. It provides 12 pins in total,
1592	  they are input-only or output-only type.
1593
1594	  This driver can also be built as a module. If so, the
1595	  module will be called gpio-tn48m.
1596
1597config GPIO_TPS65086
1598	tristate "TI TPS65086 GPO"
1599	depends on MFD_TPS65086
1600	help
1601	  This driver supports the GPO on TI TPS65086x PMICs.
1602
1603config GPIO_TPS65218
1604	tristate "TPS65218 GPIO"
1605	depends on MFD_TPS65218
1606	help
1607	  Select this option to enable GPIO driver for the TPS65218
1608	  chip family.
1609
1610config GPIO_TPS65219
1611	tristate "TPS65219 GPIO"
1612	depends on MFD_TPS65219
1613	default MFD_TPS65219
1614	help
1615	  Select this option to enable GPIO driver for the TPS65219 chip
1616	  family.
1617	  GPIO0 is statically configured as either input or output prior to
1618	  Linux boot. It is used for MULTI_DEVICE_ENABLE function. This setting
1619	  is statically configured by NVM. GPIO0 can't be used as a generic
1620	  GPIO. It's either a GPO when MULTI_DEVICE_EN=0 or a GPI when
1621	  MULTI_DEVICE_EN=1.
1622
1623	  This driver can also be built as a module. If so, the module will be
1624	  called gpio_tps65219.
1625
1626config GPIO_TPS6586X
1627	bool "TPS6586X GPIO"
1628	depends on MFD_TPS6586X
1629	help
1630	  Select this option to enable GPIO driver for the TPS6586X
1631	  chip family.
1632
1633config GPIO_TPS65910
1634	bool "TPS65910 GPIO"
1635	depends on MFD_TPS65910
1636	help
1637	  Select this option to enable GPIO driver for the TPS65910
1638	  chip family.
1639
1640config GPIO_TPS65912
1641	tristate "TI TPS65912 GPIO"
1642	depends on MFD_TPS65912
1643	help
1644	  This driver supports TPS65912 GPIO chip.
1645
1646config GPIO_TPS68470
1647	tristate "TPS68470 GPIO"
1648	depends on INTEL_SKL_INT3472
1649	help
1650	  Select this option to enable GPIO driver for the TPS68470
1651	  chip family.
1652	  There are 7 GPIOs and few sensor-related GPIOs supported
1653	  by the TPS68470. While the 7 GPIOs can be configured as
1654	  input or output as appropriate, the sensor related GPIOs
1655	  are "output only" GPIOs.
1656
1657config GPIO_TQMX86
1658	tristate "TQ-Systems TQMx86 GPIO"
1659	depends on MFD_TQMX86 || COMPILE_TEST
1660	depends on HAS_IOPORT_MAP
1661	select GPIOLIB_IRQCHIP
1662	help
1663	  This driver supports GPIO on the TQMX86 IO controller.
1664
1665config GPIO_TWL4030
1666	tristate "TWL4030, TWL5030, and TPS659x0 GPIOs"
1667	depends on TWL4030_CORE
1668	help
1669	  Say yes here to access the GPIO signals of various multi-function
1670	  power management chips from Texas Instruments.
1671
1672config GPIO_TWL6040
1673	tristate "TWL6040 GPO"
1674	depends on TWL6040_CORE
1675	help
1676	  Say yes here to access the GPO signals of twl6040
1677	  audio chip from Texas Instruments.
1678
1679config GPIO_WHISKEY_COVE
1680	tristate "GPIO support for Whiskey Cove PMIC"
1681	depends on (X86 || COMPILE_TEST) && INTEL_SOC_PMIC_BXTWC
1682	select GPIOLIB_IRQCHIP
1683	help
1684	  Support for GPIO pins on Whiskey Cove PMIC.
1685
1686	  Say Yes if you have an Intel SoC-based tablet with Whiskey Cove PMIC
1687	  inside.
1688
1689	  This driver can also be built as a module. If so, the module will be
1690	  called gpio-wcove.
1691
1692config GPIO_WM831X
1693	tristate "WM831x GPIOs"
1694	depends on MFD_WM831X
1695	help
1696	  Say yes here to access the GPIO signals of WM831x power management
1697	  chips from Wolfson Microelectronics.
1698
1699config GPIO_WM8350
1700	tristate "WM8350 GPIOs"
1701	depends on MFD_WM8350
1702	help
1703	  Say yes here to access the GPIO signals of WM8350 power management
1704	  chips from Wolfson Microelectronics.
1705
1706config GPIO_WM8994
1707	tristate "WM8994 GPIOs"
1708	depends on MFD_WM8994
1709	help
1710	  Say yes here to access the GPIO signals of WM8994 audio hub
1711	  CODECs from Wolfson Microelectronics.
1712
1713endmenu
1714
1715menu "PCI GPIO expanders"
1716	depends on PCI
1717
1718config GPIO_AMD8111
1719	tristate "AMD 8111 GPIO driver"
1720	depends on X86 || COMPILE_TEST
1721	depends on HAS_IOPORT_MAP
1722	help
1723	  The AMD 8111 southbridge contains 32 GPIO pins which can be used.
1724
1725	  Note that usually system firmware/ACPI handles GPIO pins on their
1726	  own and users might easily break their systems with uncareful usage
1727	  of this driver!
1728
1729	  If unsure, say N
1730
1731config GPIO_BT8XX
1732	tristate "BT8XX GPIO abuser"
1733	depends on VIDEO_BT848=n || COMPILE_TEST
1734	help
1735	  The BT8xx frame grabber chip has 24 GPIO pins that can be abused
1736	  as a cheap PCI GPIO card.
1737
1738	  This chip can be found on Miro, Hauppauge and STB TV-cards.
1739
1740	  The card needs to be physically altered for using it as a
1741	  GPIO card. For more information on how to build a GPIO card
1742	  from a BT8xx TV card, see the documentation file at
1743	  Documentation/driver-api/gpio/bt8xxgpio.rst
1744
1745	  If unsure, say N.
1746
1747config GPIO_MERRIFIELD
1748	tristate "Intel Merrifield GPIO support"
1749	depends on X86_INTEL_MID
1750	select GPIO_TANGIER
1751	help
1752	  Say Y here to support Intel Merrifield GPIO.
1753
1754config GPIO_MLXBF
1755	tristate "Mellanox BlueField SoC GPIO"
1756	depends on (MELLANOX_PLATFORM && ARM64 && ACPI) || (64BIT && COMPILE_TEST)
1757	select GPIO_GENERIC
1758	help
1759	  Say Y here if you want GPIO support on Mellanox BlueField SoC.
1760
1761config GPIO_MLXBF2
1762	tristate "Mellanox BlueField 2 SoC GPIO"
1763	depends on (MELLANOX_PLATFORM && ARM64 && ACPI) || (64BIT && COMPILE_TEST)
1764	select GPIO_GENERIC
1765	select GPIOLIB_IRQCHIP
1766	help
1767	  Say Y here if you want GPIO support on Mellanox BlueField 2 SoC.
1768
1769config GPIO_MLXBF3
1770	tristate "Mellanox BlueField 3 SoC GPIO"
1771	depends on (MELLANOX_PLATFORM && ARM64) || COMPILE_TEST
1772	select GPIO_GENERIC
1773	select GPIOLIB_IRQCHIP
1774	help
1775	  Say Y if you want GPIO support on Mellanox BlueField 3 SoC.
1776	  This GPIO controller supports interrupt handling and enables the
1777	  manipulation of certain GPIO pins.
1778	  This controller should be used in parallel with pinctrl-mlxbf3 to
1779	  control the desired GPIOs.
1780	  This driver can also be built as a module called mlxbf3-gpio.
1781
1782config GPIO_ML_IOH
1783	tristate "OKI SEMICONDUCTOR ML7213 IOH GPIO support"
1784	depends on X86 || COMPILE_TEST
1785	select GENERIC_IRQ_CHIP
1786	help
1787	  ML7213 is companion chip for Intel Atom E6xx series.
1788	  This driver can be used for OKI SEMICONDUCTOR ML7213 IOH (Input/Output
1789	  Hub) which is for IVI (In-Vehicle Infotainment) use.
1790	  This driver can access the IOH's GPIO device.
1791
1792config GPIO_PCH
1793	tristate "Intel EG20T PCH/LAPIS Semiconductor IOH (ML7223/ML7831) GPIO"
1794	depends on X86_32 || MIPS || COMPILE_TEST
1795	select GENERIC_IRQ_CHIP
1796	help
1797	  This driver is for PCH (Platform Controller Hub) GPIO of Intel Topcliff,
1798	  which is an IOH (Input/Output Hub) for x86 embedded processor.
1799	  This driver can access PCH GPIO device.
1800
1801	  This driver also can be used for LAPIS Semiconductor IOH (Input/
1802	  Output Hub), ML7223 and ML7831.
1803	  ML7223 IOH is for MP (Media Phone) use.
1804	  ML7831 IOH is for general purpose use.
1805	  ML7223/ML7831 is companion chip for Intel Atom E6xx series.
1806	  ML7223/ML7831 is completely compatible for Intel EG20T PCH.
1807
1808config GPIO_PCI_IDIO_16
1809	tristate "ACCES PCI-IDIO-16 GPIO support"
1810	select REGMAP_MMIO
1811	select GPIO_IDIO_16
1812	help
1813	  Enables GPIO support for the ACCES PCI-IDIO-16. An interrupt is
1814	  generated when any of the inputs change state (low to high or high to
1815	  low). Input filter control is not supported by this driver, and the
1816	  input filters are deactivated by this driver.
1817
1818config GPIO_PCIE_IDIO_24
1819	tristate "ACCES PCIe-IDIO-24 GPIO support"
1820	select REGMAP_IRQ
1821	select REGMAP_MMIO
1822	select GPIOLIB_IRQCHIP
1823	select GPIO_REGMAP
1824	help
1825	  Enables GPIO support for the ACCES PCIe-IDIO-24 family (PCIe-IDIO-24,
1826	  PCIe-IDI-24, PCIe-IDO-24, PCIe-IDIO-12). An interrupt is generated
1827	  when any of the inputs change state (low to high or high to low).
1828	  Input filter control is not supported by this driver, and the input
1829	  filters are deactivated by this driver.
1830
1831config GPIO_RDC321X
1832	tristate "RDC R-321x GPIO support"
1833	select MFD_CORE
1834	select MFD_RDC321X
1835	help
1836	  Support for the RDC R321x SoC GPIOs over southbridge
1837	  PCI configuration space.
1838
1839config GPIO_SODAVILLE
1840	bool "Intel Sodaville GPIO support"
1841	depends on X86 && OF
1842	select GPIO_GENERIC
1843	select GENERIC_IRQ_CHIP
1844	help
1845	  Say Y here to support Intel Sodaville GPIO.
1846
1847endmenu
1848
1849menu "SPI GPIO expanders"
1850	depends on SPI_MASTER
1851
1852config GPIO_74X164
1853	tristate "74x164 serial-in/parallel-out 8-bits shift register"
1854	help
1855	  Driver for 74x164 compatible serial-in/parallel-out 8-outputs
1856	  shift registers. This driver can be used to provide access
1857	  to more GPIO outputs.
1858
1859config GPIO_MAX3191X
1860	tristate "Maxim MAX3191x industrial serializer"
1861	select CRC8
1862	help
1863	  GPIO driver for Maxim MAX31910, MAX31911, MAX31912, MAX31913,
1864	  MAX31953 and MAX31963 industrial serializer, a daisy-chainable
1865	  chip to make 8 digital 24V inputs available via SPI.  Supports
1866	  CRC checksums to guard against electromagnetic interference,
1867	  as well as undervoltage and overtemperature detection.
1868
1869config GPIO_MAX7301
1870	tristate "Maxim MAX7301 GPIO expander"
1871	select GPIO_MAX730X
1872	help
1873	  GPIO driver for Maxim MAX7301 SPI-based GPIO expander.
1874
1875config GPIO_MC33880
1876	tristate "Freescale MC33880 high-side/low-side switch"
1877	help
1878	  SPI driver for Freescale MC33880 high-side/low-side switch.
1879	  This provides GPIO interface supporting inputs and outputs.
1880
1881config GPIO_PISOSR
1882	tristate "Generic parallel-in/serial-out shift register"
1883	help
1884	  GPIO driver for SPI compatible parallel-in/serial-out shift
1885	  registers. These are input only devices.
1886
1887config GPIO_XRA1403
1888	tristate "EXAR XRA1403 16-bit GPIO expander"
1889	select REGMAP_SPI
1890	help
1891	  GPIO driver for EXAR XRA1403 16-bit SPI-based GPIO expander.
1892
1893config GPIO_MOXTET
1894	tristate "Turris Mox Moxtet bus GPIO expander"
1895	depends on MOXTET
1896	help
1897	  Say yes here if you are building for the Turris Mox router.
1898	  This is the driver needed for configuring the GPIOs via the Moxtet
1899	  bus. For example the Mox module with SFP cage needs this driver
1900	  so that phylink can use corresponding GPIOs.
1901
1902endmenu
1903
1904menu "USB GPIO expanders"
1905	depends on USB
1906
1907config GPIO_VIPERBOARD
1908	tristate "Viperboard GPIO a & b support"
1909	depends on MFD_VIPERBOARD
1910	help
1911	  Say yes here to access the GPIO signals of Nano River
1912	  Technologies Viperboard. There are two GPIO chips on the
1913	  board: gpioa and gpiob.
1914	  See viperboard API specification and Nano
1915	  River Tech's viperboard.h for detailed meaning
1916	  of the module parameters.
1917
1918config GPIO_MPSSE
1919	tristate "FTDI MPSSE GPIO support"
1920	select GPIOLIB_IRQCHIP
1921	help
1922	  GPIO driver for FTDI's MPSSE interface. These can do input and
1923	  output. Each MPSSE provides 16 IO pins.
1924
1925endmenu
1926
1927menu "Virtual GPIO drivers"
1928
1929config GPIO_AGGREGATOR
1930	tristate "GPIO Aggregator"
1931	select CONFIGFS_FS
1932	select DEV_SYNC_PROBE
1933	help
1934	  Say yes here to enable the GPIO Aggregator, which provides a way to
1935	  aggregate existing GPIO lines into a new virtual GPIO chip.
1936	  This can serve the following purposes:
1937	    - Assign permissions for a collection of GPIO lines to a user,
1938	    - Export a collection of GPIO lines to a virtual machine,
1939	    - Provide a generic driver for a GPIO-operated device in an
1940	      industrial control context, to be operated from userspace using
1941	      the GPIO chardev interface.
1942
1943config GPIO_LATCH
1944	tristate "GPIO latch driver"
1945	help
1946	  Say yes here to enable a driver for GPIO multiplexers based on latches
1947	  connected to other GPIOs.
1948
1949config GPIO_MOCKUP
1950	tristate "GPIO Testing Driver (DEPRECATED)"
1951	select IRQ_SIM
1952	help
1953	  This module is DEPRECATED. Please consider using gpio-sim instead.
1954
1955	  This enables GPIO Testing driver, which provides a way to test GPIO
1956	  subsystem through sysfs (or char device) and debugfs.
1957	  User could use it through the script in
1958	  tools/testing/selftests/gpio/gpio-mockup.sh. Reference the usage in
1959	  it.
1960
1961config GPIO_VIRTIO
1962	tristate "VirtIO GPIO support"
1963	depends on VIRTIO
1964	select GPIOLIB_IRQCHIP
1965	help
1966	  Say Y here to enable guest support for virtio-based GPIO controllers.
1967
1968	  These virtual GPIOs can be routed to real GPIOs or attached to
1969	  simulators on the host (like QEMU).
1970
1971config GPIO_SIM
1972	tristate "GPIO Simulator Module"
1973	select IRQ_SIM
1974	select CONFIGFS_FS
1975	select DEV_SYNC_PROBE
1976	help
1977	  This enables the GPIO simulator - a configfs-based GPIO testing
1978	  driver.
1979
1980endmenu
1981
1982menu "GPIO Debugging utilities"
1983
1984config GPIO_SLOPPY_LOGIC_ANALYZER
1985	tristate "Sloppy GPIO logic analyzer"
1986	depends on (GPIOLIB || COMPILE_TEST) && CPUSETS && DEBUG_FS && EXPERT
1987	help
1988	  This option enables support for a sloppy logic analyzer using polled
1989	  GPIOs. Use the 'tools/gpio/gpio-sloppy-logic-analyzer' script with
1990	  this driver. The script will make it easier to use and will also
1991	  isolate a CPU for the polling task. Note that this is a last resort
1992	  analyzer which can be affected by latencies, non-deterministic code
1993	  paths, or NMIs. However, for e.g. remote development, it may be useful
1994	  to get a first view and aid further debugging.
1995
1996	  If this driver is built as a module it will be called
1997	  'gpio-sloppy-logic-analyzer'.
1998
1999config GPIO_VIRTUSER
2000	tristate "GPIO Virtual User Testing Module"
2001	select DEBUG_FS
2002	select CONFIGFS_FS
2003	select IRQ_WORK
2004	select DEV_SYNC_PROBE
2005	help
2006	  Say Y here to enable the configurable, configfs-based virtual GPIO
2007	  consumer testing driver.
2008
2009	  This driver is aimed as a helper in spotting any regressions in
2010	  hot-unplug handling in GPIOLIB.
2011
2012endmenu
2013
2014endif
2015
2016config DEV_SYNC_PROBE
2017	tristate
2018