Kconfig 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263
  1. #
  2. # GPIO infrastructure and drivers
  3. #
  4. config ARCH_HAVE_CUSTOM_GPIO_H
  5. bool
  6. help
  7. Selecting this config option from the architecture Kconfig allows
  8. the architecture to provide a custom asm/gpio.h implementation
  9. overriding the default implementations. New uses of this are
  10. strongly discouraged.
  11. menuconfig GPIOLIB
  12. bool "GPIO Support"
  13. select ANON_INODES
  14. help
  15. This enables GPIO support through the generic GPIO library.
  16. You only need to enable this, if you also want to enable
  17. one or more of the GPIO drivers below.
  18. If unsure, say N.
  19. if GPIOLIB
  20. config OF_GPIO
  21. def_bool y
  22. depends on OF
  23. depends on HAS_IOMEM
  24. config GPIO_ACPI
  25. def_bool y
  26. depends on ACPI
  27. config GPIOLIB_IRQCHIP
  28. select IRQ_DOMAIN
  29. bool
  30. config DEBUG_GPIO
  31. bool "Debug GPIO calls"
  32. depends on DEBUG_KERNEL
  33. help
  34. Say Y here to add some extra checks and diagnostics to GPIO calls.
  35. These checks help ensure that GPIOs have been properly initialized
  36. before they are used, and that sleeping calls are not made from
  37. non-sleeping contexts. They can make bitbanged serial protocols
  38. slower. The diagnostics help catch the type of setup errors
  39. that are most common when setting up new platforms or boards.
  40. config GPIO_SYSFS
  41. bool "/sys/class/gpio/... (sysfs interface)"
  42. depends on SYSFS
  43. help
  44. Say Y here to add a sysfs interface for GPIOs.
  45. This is mostly useful to work around omissions in a system's
  46. kernel support. Those are common in custom and semicustom
  47. hardware assembled using standard kernels with a minimum of
  48. custom patches. In those cases, userspace code may import
  49. a given GPIO from the kernel, if no kernel driver requested it.
  50. Kernel drivers may also request that a particular GPIO be
  51. exported to userspace; this can be useful when debugging.
  52. config GPIO_GENERIC
  53. depends on HAS_IOMEM # Only for IOMEM drivers
  54. tristate
  55. # put drivers in the right section, in alphabetical order
  56. # This symbol is selected by both I2C and SPI expanders
  57. config GPIO_MAX730X
  58. tristate
  59. menu "Memory mapped GPIO drivers"
  60. depends on HAS_IOMEM
  61. config GPIO_74XX_MMIO
  62. tristate "GPIO driver for 74xx-ICs with MMIO access"
  63. depends on OF_GPIO
  64. select GPIO_GENERIC
  65. help
  66. Say yes here to support GPIO functionality for 74xx-compatible ICs
  67. with MMIO access. Compatible models include:
  68. 1 bit: 741G125 (Input), 741G74 (Output)
  69. 2 bits: 742G125 (Input), 7474 (Output)
  70. 4 bits: 74125 (Input), 74175 (Output)
  71. 6 bits: 74365 (Input), 74174 (Output)
  72. 8 bits: 74244 (Input), 74273 (Output)
  73. 16 bits: 741624 (Input), 7416374 (Output)
  74. config GPIO_ALTERA
  75. tristate "Altera GPIO"
  76. depends on OF_GPIO
  77. select GPIOLIB_IRQCHIP
  78. help
  79. Say Y or M here to build support for the Altera PIO device.
  80. If driver is built as a module it will be called gpio-altera.
  81. config GPIO_AMDPT
  82. tristate "AMD Promontory GPIO support"
  83. depends on ACPI
  84. select GPIO_GENERIC
  85. help
  86. driver for GPIO functionality on Promontory IOHub
  87. Require ACPI ASL code to enumerate as a platform device.
  88. config GPIO_ASPEED
  89. tristate "Aspeed GPIO support"
  90. depends on (ARCH_ASPEED || COMPILE_TEST) && OF_GPIO
  91. select GPIOLIB_IRQCHIP
  92. help
  93. Say Y here to support Aspeed AST2400 and AST2500 GPIO controllers.
  94. config GPIO_ATH79
  95. tristate "Atheros AR71XX/AR724X/AR913X GPIO support"
  96. default y if ATH79
  97. depends on ATH79 || COMPILE_TEST
  98. select GPIO_GENERIC
  99. select GPIOLIB_IRQCHIP
  100. help
  101. Select this option to enable GPIO driver for
  102. Atheros AR71XX/AR724X/AR913X SoC devices.
  103. config GPIO_AXP209
  104. tristate "X-Powers AXP209 PMIC GPIO Support"
  105. depends on MFD_AXP20X
  106. help
  107. Say yes to enable GPIO support for the AXP209 PMIC
  108. config GPIO_BCM_KONA
  109. bool "Broadcom Kona GPIO"
  110. depends on OF_GPIO && (ARCH_BCM_MOBILE || COMPILE_TEST)
  111. help
  112. Turn on GPIO support for Broadcom "Kona" chips.
  113. config GPIO_BRCMSTB
  114. tristate "BRCMSTB GPIO support"
  115. default y if (ARCH_BRCMSTB || BMIPS_GENERIC)
  116. depends on OF_GPIO && (ARCH_BRCMSTB || BMIPS_GENERIC || COMPILE_TEST)
  117. select GPIO_GENERIC
  118. select GPIOLIB_IRQCHIP
  119. help
  120. Say yes here to enable GPIO support for Broadcom STB (BCM7XXX) SoCs.
  121. config GPIO_CLPS711X
  122. tristate "CLPS711X GPIO support"
  123. depends on ARCH_CLPS711X || COMPILE_TEST
  124. select GPIO_GENERIC
  125. help
  126. Say yes here to support GPIO on CLPS711X SoCs.
  127. config GPIO_DAVINCI
  128. bool "TI Davinci/Keystone GPIO support"
  129. default y if ARCH_DAVINCI
  130. depends on ARM && (ARCH_DAVINCI || ARCH_KEYSTONE)
  131. help
  132. Say yes here to enable GPIO support for TI Davinci/Keystone SoCs.
  133. config GPIO_DWAPB
  134. tristate "Synopsys DesignWare APB GPIO driver"
  135. select GPIO_GENERIC
  136. select GENERIC_IRQ_CHIP
  137. help
  138. Say Y or M here to build support for the Synopsys DesignWare APB
  139. GPIO block.
  140. config GPIO_EM
  141. tristate "Emma Mobile GPIO"
  142. depends on (ARCH_EMEV2 || COMPILE_TEST) && OF_GPIO
  143. help
  144. Say yes here to support GPIO on Renesas Emma Mobile SoCs.
  145. config GPIO_EP93XX
  146. def_bool y
  147. depends on ARCH_EP93XX
  148. select GPIO_GENERIC
  149. config GPIO_ETRAXFS
  150. bool "Axis ETRAX FS General I/O"
  151. depends on CRIS || COMPILE_TEST
  152. depends on OF_GPIO
  153. select GPIO_GENERIC
  154. select GPIOLIB_IRQCHIP
  155. help
  156. Say yes here to support the GPIO controller on Axis ETRAX FS SoCs.
  157. config GPIO_EXAR
  158. tristate "Support for GPIO pins on XR17V352/354/358"
  159. depends on SERIAL_8250_EXAR
  160. help
  161. Selecting this option will enable handling of GPIO pins present
  162. on Exar XR17V352/354/358 chips.
  163. config GPIO_GE_FPGA
  164. bool "GE FPGA based GPIO"
  165. depends on GE_FPGA
  166. select GPIO_GENERIC
  167. help
  168. Support for common GPIO functionality provided on some GE Single Board
  169. Computers.
  170. This driver provides basic support (configure as input or output, read
  171. and write pin state) for GPIO implemented in a number of GE single
  172. board computers.
  173. config GPIO_FTGPIO010
  174. bool "Faraday FTGPIO010 GPIO"
  175. depends on OF_GPIO
  176. select GPIO_GENERIC
  177. select GPIOLIB_IRQCHIP
  178. default (ARCH_GEMINI || ARCH_MOXART)
  179. help
  180. Support for common GPIOs from the Faraday FTGPIO010 IP core, found in
  181. Cortina systems Gemini platforms, Moxa ART and others.
  182. config GPIO_GENERIC_PLATFORM
  183. tristate "Generic memory-mapped GPIO controller support (MMIO platform device)"
  184. select GPIO_GENERIC
  185. help
  186. Say yes here to support basic platform_device memory-mapped GPIO controllers.
  187. config GPIO_GRGPIO
  188. tristate "Aeroflex Gaisler GRGPIO support"
  189. depends on OF_GPIO
  190. select GPIO_GENERIC
  191. select IRQ_DOMAIN
  192. help
  193. Select this to support Aeroflex Gaisler GRGPIO cores from the GRLIB
  194. VHDL IP core library.
  195. config GPIO_ICH
  196. tristate "Intel ICH GPIO"
  197. depends on PCI && X86
  198. select MFD_CORE
  199. select LPC_ICH
  200. help
  201. Say yes here to support the GPIO functionality of a number of Intel
  202. ICH-based chipsets. Currently supported devices: ICH6, ICH7, ICH8
  203. ICH9, ICH10, Series 5/3400 (eg Ibex Peak), Series 6/C200 (eg
  204. Cougar Point), NM10 (Tiger Point), and 3100 (Whitmore Lake).
  205. If unsure, say N.
  206. config GPIO_IOP
  207. tristate "Intel IOP GPIO"
  208. depends on ARCH_IOP32X || ARCH_IOP33X || COMPILE_TEST
  209. select GPIO_GENERIC
  210. help
  211. Say yes here to support the GPIO functionality of a number of Intel
  212. IOP32X or IOP33X.
  213. If unsure, say N.
  214. config GPIO_LOONGSON
  215. bool "Loongson-2/3 GPIO support"
  216. depends on CPU_LOONGSON2 || CPU_LOONGSON3
  217. help
  218. driver for GPIO functionality on Loongson-2F/3A/3B processors.
  219. config GPIO_LPC18XX
  220. tristate "NXP LPC18XX/43XX GPIO support"
  221. default y if ARCH_LPC18XX
  222. depends on OF_GPIO && (ARCH_LPC18XX || COMPILE_TEST)
  223. help
  224. Select this option to enable GPIO driver for
  225. NXP LPC18XX/43XX devices.
  226. config GPIO_LYNXPOINT
  227. tristate "Intel Lynxpoint GPIO support"
  228. depends on ACPI && X86
  229. select GPIOLIB_IRQCHIP
  230. help
  231. driver for GPIO functionality on Intel Lynxpoint PCH chipset
  232. Requires ACPI device enumeration code to set up a platform device.
  233. config GPIO_MB86S7X
  234. bool "GPIO support for Fujitsu MB86S7x Platforms"
  235. depends on ARCH_MB86S7X || COMPILE_TEST
  236. help
  237. Say yes here to support the GPIO controller in Fujitsu MB86S70 SoCs.
  238. config GPIO_MENZ127
  239. tristate "MEN 16Z127 GPIO support"
  240. depends on MCB
  241. select GPIO_GENERIC
  242. help
  243. Say yes here to support the MEN 16Z127 GPIO Controller
  244. config GPIO_MM_LANTIQ
  245. bool "Lantiq Memory mapped GPIOs"
  246. depends on LANTIQ && SOC_XWAY
  247. help
  248. This enables support for memory mapped GPIOs on the External Bus Unit
  249. (EBU) found on Lantiq SoCs. The gpios are output only as they are
  250. created by attaching a 16bit latch to the bus.
  251. config GPIO_MOCKUP
  252. tristate "GPIO Testing Driver"
  253. depends on GPIOLIB && SYSFS
  254. select GPIO_SYSFS
  255. select GPIOLIB_IRQCHIP
  256. select IRQ_WORK
  257. help
  258. This enables GPIO Testing driver, which provides a way to test GPIO
  259. subsystem through sysfs(or char device) and debugfs. GPIO_SYSFS
  260. must be selected for this test.
  261. User could use it through the script in
  262. tools/testing/selftests/gpio/gpio-mockup.sh. Reference the usage in
  263. it.
  264. config GPIO_MPC5200
  265. def_bool y
  266. depends on PPC_MPC52xx
  267. config GPIO_MPC8XXX
  268. bool "MPC512x/MPC8xxx/QorIQ GPIO support"
  269. depends on PPC_MPC512x || PPC_MPC831x || PPC_MPC834x || PPC_MPC837x || \
  270. FSL_SOC_BOOKE || PPC_86xx || ARCH_LAYERSCAPE || ARM || \
  271. COMPILE_TEST
  272. select GPIO_GENERIC
  273. select IRQ_DOMAIN
  274. help
  275. Say Y here if you're going to use hardware that connects to the
  276. MPC512x/831x/834x/837x/8572/8610/QorIQ GPIOs.
  277. config GPIO_MVEBU
  278. def_bool y
  279. depends on PLAT_ORION
  280. depends on OF_GPIO
  281. select GENERIC_IRQ_CHIP
  282. config GPIO_MXC
  283. def_bool y
  284. depends on ARCH_MXC
  285. select GPIO_GENERIC
  286. select GENERIC_IRQ_CHIP
  287. config GPIO_MXS
  288. def_bool y
  289. depends on ARCH_MXS
  290. select GPIO_GENERIC
  291. select GENERIC_IRQ_CHIP
  292. config GPIO_OCTEON
  293. tristate "Cavium OCTEON GPIO"
  294. depends on GPIOLIB && CAVIUM_OCTEON_SOC
  295. default y
  296. help
  297. Say yes here to support the on-chip GPIO lines on the OCTEON
  298. family of SOCs.
  299. config GPIO_OMAP
  300. tristate "TI OMAP GPIO support" if ARCH_OMAP2PLUS || COMPILE_TEST
  301. default y if ARCH_OMAP
  302. depends on ARM
  303. select GENERIC_IRQ_CHIP
  304. select GPIOLIB_IRQCHIP
  305. help
  306. Say yes here to enable GPIO support for TI OMAP SoCs.
  307. config GPIO_PL061
  308. bool "PrimeCell PL061 GPIO support"
  309. depends on ARM_AMBA
  310. select IRQ_DOMAIN
  311. select GPIOLIB_IRQCHIP
  312. help
  313. Say yes here to support the PrimeCell PL061 GPIO device
  314. config GPIO_PXA
  315. bool "PXA GPIO support"
  316. depends on ARCH_PXA || ARCH_MMP
  317. help
  318. Say yes here to support the PXA GPIO device
  319. config GPIO_RCAR
  320. tristate "Renesas R-Car GPIO"
  321. depends on ARCH_RENESAS || COMPILE_TEST
  322. select GPIOLIB_IRQCHIP
  323. help
  324. Say yes here to support GPIO on Renesas R-Car SoCs.
  325. config GPIO_REG
  326. bool
  327. help
  328. A 32-bit single register GPIO fixed in/out implementation. This
  329. can be used to represent any register as a set of GPIO signals.
  330. config GPIO_SPEAR_SPICS
  331. bool "ST SPEAr13xx SPI Chip Select as GPIO support"
  332. depends on PLAT_SPEAR
  333. select GENERIC_IRQ_CHIP
  334. help
  335. Say yes here to support ST SPEAr SPI Chip Select as GPIO device
  336. config GPIO_STA2X11
  337. bool "STA2x11/ConneXt GPIO support"
  338. depends on MFD_STA2X11
  339. select GENERIC_IRQ_CHIP
  340. help
  341. Say yes here to support the STA2x11/ConneXt GPIO device.
  342. The GPIO module has 128 GPIO pins with alternate functions.
  343. config GPIO_STP_XWAY
  344. bool "XWAY STP GPIOs"
  345. depends on SOC_XWAY
  346. help
  347. This enables support for the Serial To Parallel (STP) unit found on
  348. XWAY SoC. The STP allows the SoC to drive a shift registers cascade,
  349. that can be up to 24 bit. This peripheral is aimed at driving leds.
  350. Some of the gpios/leds can be auto updated by the soc with dsl and
  351. phy status.
  352. config GPIO_SYSCON
  353. tristate "GPIO based on SYSCON"
  354. depends on MFD_SYSCON && OF
  355. help
  356. Say yes here to support GPIO functionality though SYSCON driver.
  357. config GPIO_TB10X
  358. bool
  359. select GENERIC_IRQ_CHIP
  360. select OF_GPIO
  361. config GPIO_TEGRA
  362. bool "NVIDIA Tegra GPIO support"
  363. default ARCH_TEGRA
  364. depends on ARCH_TEGRA || COMPILE_TEST
  365. depends on OF_GPIO
  366. help
  367. Say yes here to support GPIO pins on NVIDIA Tegra SoCs.
  368. config GPIO_TS4800
  369. tristate "TS-4800 DIO blocks and compatibles"
  370. depends on OF_GPIO
  371. depends on SOC_IMX51 || COMPILE_TEST
  372. select GPIO_GENERIC
  373. help
  374. This driver support TS-4800 FPGA GPIO controllers.
  375. config GPIO_TZ1090
  376. bool "Toumaz Xenif TZ1090 GPIO support"
  377. depends on SOC_TZ1090
  378. select GENERIC_IRQ_CHIP
  379. default y
  380. help
  381. Say yes here to support Toumaz Xenif TZ1090 GPIOs.
  382. config GPIO_TZ1090_PDC
  383. bool "Toumaz Xenif TZ1090 PDC GPIO support"
  384. depends on SOC_TZ1090
  385. default y
  386. help
  387. Say yes here to support Toumaz Xenif TZ1090 PDC GPIOs.
  388. config GPIO_VF610
  389. def_bool y
  390. depends on ARCH_MXC && SOC_VF610
  391. select GPIOLIB_IRQCHIP
  392. help
  393. Say yes here to support Vybrid vf610 GPIOs.
  394. config GPIO_VR41XX
  395. tristate "NEC VR4100 series General-purpose I/O Uint support"
  396. depends on CPU_VR41XX
  397. help
  398. Say yes here to support the NEC VR4100 series General-purpose I/O Uint
  399. config GPIO_VX855
  400. tristate "VIA VX855/VX875 GPIO"
  401. depends on (X86 || COMPILE_TEST) && PCI
  402. select MFD_CORE
  403. select MFD_VX855
  404. help
  405. Support access to the VX855/VX875 GPIO lines through the gpio library.
  406. This driver provides common support for accessing the device,
  407. additional drivers must be enabled in order to use the
  408. functionality of the device.
  409. config GPIO_XGENE
  410. bool "APM X-Gene GPIO controller support"
  411. depends on ARM64 && OF_GPIO
  412. help
  413. This driver is to support the GPIO block within the APM X-Gene SoC
  414. platform's generic flash controller. The GPIO pins are muxed with
  415. the generic flash controller's address and data pins. Say yes
  416. here to enable the GFC GPIO functionality.
  417. config GPIO_XGENE_SB
  418. tristate "APM X-Gene GPIO standby controller support"
  419. depends on ARCH_XGENE && OF_GPIO
  420. select GPIO_GENERIC
  421. select GPIOLIB_IRQCHIP
  422. help
  423. This driver supports the GPIO block within the APM X-Gene
  424. Standby Domain. Say yes here to enable the GPIO functionality.
  425. config GPIO_XILINX
  426. tristate "Xilinx GPIO support"
  427. depends on OF_GPIO
  428. help
  429. Say yes here to support the Xilinx FPGA GPIO device
  430. config GPIO_XLP
  431. tristate "Netlogic XLP GPIO support"
  432. depends on OF_GPIO && (CPU_XLP || ARCH_VULCAN || ARCH_THUNDER2 || COMPILE_TEST)
  433. select GPIOLIB_IRQCHIP
  434. help
  435. This driver provides support for GPIO interface on Netlogic XLP MIPS64
  436. SoCs. Currently supported XLP variants are XLP8XX, XLP3XX, XLP2XX,
  437. XLP9XX and XLP5XX.
  438. If unsure, say N.
  439. config GPIO_XTENSA
  440. bool "Xtensa GPIO32 support"
  441. depends on XTENSA
  442. depends on HAVE_XTENSA_GPIO32
  443. depends on !SMP
  444. help
  445. Say yes here to support the Xtensa internal GPIO32 IMPWIRE (input)
  446. and EXPSTATE (output) ports
  447. config GPIO_ZEVIO
  448. bool "LSI ZEVIO SoC memory mapped GPIOs"
  449. depends on ARM && OF_GPIO
  450. help
  451. Say yes here to support the GPIO controller in LSI ZEVIO SoCs.
  452. config GPIO_ZYNQ
  453. tristate "Xilinx Zynq GPIO support"
  454. depends on ARCH_ZYNQ || ARCH_ZYNQMP
  455. select GPIOLIB_IRQCHIP
  456. help
  457. Say yes here to support Xilinx Zynq GPIO controller.
  458. config GPIO_ZX
  459. bool "ZTE ZX GPIO support"
  460. depends on ARCH_ZX || COMPILE_TEST
  461. select GPIOLIB_IRQCHIP
  462. help
  463. Say yes here to support the GPIO device on ZTE ZX SoCs.
  464. config GPIO_LOONGSON1
  465. tristate "Loongson1 GPIO support"
  466. depends on MACH_LOONGSON32
  467. select GPIO_GENERIC
  468. help
  469. Say Y or M here to support GPIO on Loongson1 SoCs.
  470. endmenu
  471. menu "Port-mapped I/O GPIO drivers"
  472. depends on X86 # Unconditional I/O space access
  473. config GPIO_104_DIO_48E
  474. tristate "ACCES 104-DIO-48E GPIO support"
  475. depends on PC104 && ISA_BUS_API
  476. select GPIOLIB_IRQCHIP
  477. help
  478. Enables GPIO support for the ACCES 104-DIO-48E series (104-DIO-48E,
  479. 104-DIO-24E). The base port addresses for the devices may be
  480. configured via the base module parameter. The interrupt line numbers
  481. for the devices may be configured via the irq module parameter.
  482. config GPIO_104_IDIO_16
  483. tristate "ACCES 104-IDIO-16 GPIO support"
  484. depends on PC104 && ISA_BUS_API
  485. select GPIOLIB_IRQCHIP
  486. help
  487. Enables GPIO support for the ACCES 104-IDIO-16 family (104-IDIO-16,
  488. 104-IDIO-16E, 104-IDO-16, 104-IDIO-8, 104-IDIO-8E, 104-IDO-8). The
  489. base port addresses for the devices may be configured via the base
  490. module parameter. The interrupt line numbers for the devices may be
  491. configured via the irq module parameter.
  492. config GPIO_104_IDI_48
  493. tristate "ACCES 104-IDI-48 GPIO support"
  494. depends on PC104 && ISA_BUS_API
  495. select GPIOLIB_IRQCHIP
  496. help
  497. Enables GPIO support for the ACCES 104-IDI-48 family (104-IDI-48A,
  498. 104-IDI-48AC, 104-IDI-48B, 104-IDI-48BC). The base port addresses for
  499. the devices may be configured via the base module parameter. The
  500. interrupt line numbers for the devices may be configured via the irq
  501. module parameter.
  502. config GPIO_F7188X
  503. tristate "F71869, F71869A, F71882FG, F71889F and F81866 GPIO support"
  504. help
  505. This option enables support for GPIOs found on Fintek Super-I/O
  506. chips F71869, F71869A, F71882FG, F71889F and F81866.
  507. To compile this driver as a module, choose M here: the module will
  508. be called f7188x-gpio.
  509. config GPIO_GPIO_MM
  510. tristate "Diamond Systems GPIO-MM GPIO support"
  511. depends on PC104 && ISA_BUS_API
  512. help
  513. Enables GPIO support for the Diamond Systems GPIO-MM and GPIO-MM-12.
  514. The Diamond Systems GPIO-MM device features 48 lines of digital I/O
  515. via the emulation of dual 82C55A PPI chips. This driver provides GPIO
  516. support for these 48 channels of digital I/O.
  517. The base port addresses for the devices may be configured via the base
  518. array module parameter.
  519. config GPIO_IT87
  520. tristate "IT87xx GPIO support"
  521. help
  522. Say yes here to support GPIO functionality of IT87xx Super I/O chips.
  523. This driver is tested with ITE IT8728 and IT8732 Super I/O chips, and
  524. supports the IT8761E, IT8620E and IT8628E Super I/O chip as well.
  525. To compile this driver as a module, choose M here: the module will
  526. be called gpio_it87
  527. config GPIO_SCH
  528. tristate "Intel SCH/TunnelCreek/Centerton/Quark X1000 GPIO"
  529. depends on (X86 || COMPILE_TEST) && PCI
  530. select MFD_CORE
  531. select LPC_SCH
  532. help
  533. Say yes here to support GPIO interface on Intel Poulsbo SCH,
  534. Intel Tunnel Creek processor, Intel Centerton processor or
  535. Intel Quark X1000 SoC.
  536. The Intel SCH contains a total of 14 GPIO pins. Ten GPIOs are
  537. powered by the core power rail and are turned off during sleep
  538. modes (S3 and higher). The remaining four GPIOs are powered by
  539. the Intel SCH suspend power supply. These GPIOs remain
  540. active during S3. The suspend powered GPIOs can be used to wake the
  541. system from the Suspend-to-RAM state.
  542. The Intel Tunnel Creek processor has 5 GPIOs powered by the
  543. core power rail and 9 from suspend power supply.
  544. The Intel Centerton processor has a total of 30 GPIO pins.
  545. Twenty-one are powered by the core power rail and 9 from the
  546. suspend power supply.
  547. The Intel Quark X1000 SoC has 2 GPIOs powered by the core
  548. power well and 6 from the suspend power well.
  549. config GPIO_SCH311X
  550. tristate "SMSC SCH311x SuperI/O GPIO"
  551. help
  552. Driver to enable the GPIOs found on SMSC SMSC SCH3112, SCH3114 and
  553. SCH3116 "Super I/O" chipsets.
  554. To compile this driver as a module, choose M here: the module will
  555. be called gpio-sch311x.
  556. config GPIO_TS5500
  557. tristate "TS-5500 DIO blocks and compatibles"
  558. depends on TS5500 || COMPILE_TEST
  559. help
  560. This driver supports Digital I/O exposed by pin blocks found on some
  561. Technologic Systems platforms. It includes, but is not limited to, 3
  562. blocks of the TS-5500: DIO1, DIO2 and the LCD port, and the TS-5600
  563. LCD port.
  564. config GPIO_WS16C48
  565. tristate "WinSystems WS16C48 GPIO support"
  566. depends on ISA_BUS_API
  567. select GPIOLIB_IRQCHIP
  568. help
  569. Enables GPIO support for the WinSystems WS16C48. The base port
  570. addresses for the devices may be configured via the base module
  571. parameter. The interrupt line numbers for the devices may be
  572. configured via the irq module parameter.
  573. endmenu
  574. menu "I2C GPIO expanders"
  575. depends on I2C
  576. config GPIO_ADP5588
  577. tristate "ADP5588 I2C GPIO expander"
  578. help
  579. This option enables support for 18 GPIOs found
  580. on Analog Devices ADP5588 GPIO Expanders.
  581. config GPIO_ADP5588_IRQ
  582. bool "Interrupt controller support for ADP5588"
  583. depends on GPIO_ADP5588=y
  584. help
  585. Say yes here to enable the adp5588 to be used as an interrupt
  586. controller. It requires the driver to be built in the kernel.
  587. config GPIO_ADNP
  588. tristate "Avionic Design N-bit GPIO expander"
  589. depends on OF_GPIO
  590. select GPIOLIB_IRQCHIP
  591. help
  592. This option enables support for N GPIOs found on Avionic Design
  593. I2C GPIO expanders. The register space will be extended by powers
  594. of two, so the controller will need to accommodate for that. For
  595. example: if a controller provides 48 pins, 6 registers will be
  596. enough to represent all pins, but the driver will assume a
  597. register layout for 64 pins (8 registers).
  598. config GPIO_MAX7300
  599. tristate "Maxim MAX7300 GPIO expander"
  600. select GPIO_MAX730X
  601. help
  602. GPIO driver for Maxim MAX7300 I2C-based GPIO expander.
  603. config GPIO_MAX732X
  604. tristate "MAX7319, MAX7320-7327 I2C Port Expanders"
  605. help
  606. Say yes here to support the MAX7319, MAX7320-7327 series of I2C
  607. Port Expanders. Each IO port on these chips has a fixed role of
  608. Input (designated by 'I'), Push-Pull Output ('O'), or Open-Drain
  609. Input and Output (designed by 'P'). The combinations are listed
  610. below:
  611. 8 bits: max7319 (8I), max7320 (8O), max7321 (8P),
  612. max7322 (4I4O), max7323 (4P4O)
  613. 16 bits: max7324 (8I8O), max7325 (8P8O),
  614. max7326 (4I12O), max7327 (4P12O)
  615. Board setup code must specify the model to use, and the start
  616. number for these GPIOs.
  617. config GPIO_MAX732X_IRQ
  618. bool "Interrupt controller support for MAX732x"
  619. depends on GPIO_MAX732X=y
  620. select GPIOLIB_IRQCHIP
  621. help
  622. Say yes here to enable the max732x to be used as an interrupt
  623. controller. It requires the driver to be built in the kernel.
  624. config GPIO_MC9S08DZ60
  625. bool "MX35 3DS BOARD MC9S08DZ60 GPIO functions"
  626. depends on I2C=y && MACH_MX35_3DS
  627. help
  628. Select this to enable the MC9S08DZ60 GPIO driver
  629. config GPIO_PCA953X
  630. tristate "PCA95[357]x, PCA9698, TCA64xx, and MAX7310 I/O ports"
  631. help
  632. Say yes here to provide access to several register-oriented
  633. SMBus I/O expanders, made mostly by NXP or TI. Compatible
  634. models include:
  635. 4 bits: pca9536, pca9537
  636. 8 bits: max7310, max7315, pca6107, pca9534, pca9538, pca9554,
  637. pca9556, pca9557, pca9574, tca6408, tca9554, xra1202
  638. 16 bits: max7312, max7313, pca9535, pca9539, pca9555, pca9575,
  639. tca6416
  640. 24 bits: tca6424
  641. 40 bits: pca9505, pca9698
  642. config GPIO_PCA953X_IRQ
  643. bool "Interrupt controller support for PCA953x"
  644. depends on GPIO_PCA953X=y
  645. select GPIOLIB_IRQCHIP
  646. help
  647. Say yes here to enable the pca953x to be used as an interrupt
  648. controller. It requires the driver to be built in the kernel.
  649. config GPIO_PCF857X
  650. tristate "PCF857x, PCA{85,96}7x, and MAX732[89] I2C GPIO expanders"
  651. select GPIOLIB_IRQCHIP
  652. select IRQ_DOMAIN
  653. help
  654. Say yes here to provide access to most "quasi-bidirectional" I2C
  655. GPIO expanders used for additional digital outputs or inputs.
  656. Most of these parts are from NXP, though TI is a second source for
  657. some of them. Compatible models include:
  658. 8 bits: pcf8574, pcf8574a, pca8574, pca8574a,
  659. pca9670, pca9672, pca9674, pca9674a,
  660. max7328, max7329
  661. 16 bits: pcf8575, pcf8575c, pca8575,
  662. pca9671, pca9673, pca9675
  663. Your board setup code will need to declare the expanders in
  664. use, and assign numbers to the GPIOs they expose. Those GPIOs
  665. can then be used from drivers and other kernel code, just like
  666. other GPIOs, but only accessible from task contexts.
  667. This driver provides an in-kernel interface to those GPIOs using
  668. platform-neutral GPIO calls.
  669. config GPIO_SX150X
  670. bool "Semtech SX150x I2C GPIO expander (deprecated)"
  671. depends on PINCTRL && I2C=y
  672. select PINCTRL_SX150X
  673. default n
  674. help
  675. Say yes here to provide support for Semtech SX150x-series I2C
  676. GPIO expanders. The GPIO driver was replaced by a Pinctrl version.
  677. config GPIO_TPIC2810
  678. tristate "TPIC2810 8-Bit I2C GPO expander"
  679. help
  680. Say yes here to enable the GPO driver for the TI TPIC2810 chip.
  681. To compile this driver as a module, choose M here: the module will
  682. be called gpio-tpic2810.
  683. config GPIO_TS4900
  684. tristate "Technologic Systems FPGA I2C GPIO"
  685. depends on SOC_IMX6 || COMPILE_TEST
  686. select REGMAP_I2C
  687. help
  688. Say yes here to enabled the GPIO driver for Technologic's FPGA core.
  689. Series supported include TS-4100, TS-4900, TS-7970 and TS-7990.
  690. endmenu
  691. menu "MFD GPIO expanders"
  692. config GPIO_ADP5520
  693. tristate "GPIO Support for ADP5520 PMIC"
  694. depends on PMIC_ADP5520
  695. help
  696. This option enables support for on-chip GPIO found
  697. on Analog Devices ADP5520 PMICs.
  698. config GPIO_ALTERA_A10SR
  699. tristate "Altera Arria10 System Resource GPIO"
  700. depends on MFD_ALTERA_A10SR
  701. help
  702. Driver for Arria10 Development Kit GPIO expansion which
  703. includes reads of pushbuttons and DIP switches as well
  704. as writes to LEDs.
  705. config GPIO_ARIZONA
  706. tristate "Wolfson Microelectronics Arizona class devices"
  707. depends on MFD_ARIZONA
  708. help
  709. Support for GPIOs on Wolfson Arizona class devices.
  710. config GPIO_BD9571MWV
  711. tristate "ROHM BD9571 GPIO support"
  712. depends on MFD_BD9571MWV
  713. help
  714. Support for GPIOs on ROHM BD9571 PMIC. There are two GPIOs
  715. available on the ROHM PMIC in total, both of which can also
  716. generate interrupts.
  717. This driver can also be built as a module. If so, the module
  718. will be called gpio-bd9571mwv.
  719. config GPIO_CRYSTAL_COVE
  720. tristate "GPIO support for Crystal Cove PMIC"
  721. depends on (X86 || COMPILE_TEST) && INTEL_SOC_PMIC
  722. select GPIOLIB_IRQCHIP
  723. help
  724. Support for GPIO pins on Crystal Cove PMIC.
  725. Say Yes if you have a Intel SoC based tablet with Crystal Cove PMIC
  726. inside.
  727. This driver can also be built as a module. If so, the module will be
  728. called gpio-crystalcove.
  729. config GPIO_CS5535
  730. tristate "AMD CS5535/CS5536 GPIO support"
  731. depends on X86 || MIPS || COMPILE_TEST
  732. depends on MFD_CS5535
  733. help
  734. The AMD CS5535 and CS5536 southbridges support 28 GPIO pins that
  735. can be used for quite a number of things. The CS5535/6 is found on
  736. AMD Geode and Lemote Yeeloong devices.
  737. If unsure, say N.
  738. config GPIO_DA9052
  739. tristate "Dialog DA9052 GPIO"
  740. depends on PMIC_DA9052
  741. help
  742. Say yes here to enable the GPIO driver for the DA9052 chip.
  743. config GPIO_DA9055
  744. tristate "Dialog Semiconductor DA9055 GPIO"
  745. depends on MFD_DA9055
  746. help
  747. Say yes here to enable the GPIO driver for the DA9055 chip.
  748. The Dialog DA9055 PMIC chip has 3 GPIO pins that can be
  749. be controller by this driver.
  750. If driver is built as a module it will be called gpio-da9055.
  751. config GPIO_DLN2
  752. tristate "Diolan DLN2 GPIO support"
  753. depends on MFD_DLN2
  754. select GPIOLIB_IRQCHIP
  755. help
  756. Select this option to enable GPIO driver for the Diolan DLN2
  757. board.
  758. This driver can also be built as a module. If so, the module
  759. will be called gpio-dln2.
  760. config HTC_EGPIO
  761. bool "HTC EGPIO support"
  762. depends on GPIOLIB && ARM
  763. help
  764. This driver supports the CPLD egpio chip present on
  765. several HTC phones. It provides basic support for input
  766. pins, output pins, and irqs.
  767. config GPIO_JANZ_TTL
  768. tristate "Janz VMOD-TTL Digital IO Module"
  769. depends on MFD_JANZ_CMODIO
  770. help
  771. This enables support for the Janz VMOD-TTL Digital IO module.
  772. This driver provides support for driving the pins in output
  773. mode only. Input mode is not supported.
  774. config GPIO_KEMPLD
  775. tristate "Kontron ETX / COMexpress GPIO"
  776. depends on MFD_KEMPLD
  777. help
  778. This enables support for the PLD GPIO interface on some Kontron ETX
  779. and COMexpress (ETXexpress) modules.
  780. This driver can also be built as a module. If so, the module will be
  781. called gpio-kempld.
  782. config GPIO_LP3943
  783. tristate "TI/National Semiconductor LP3943 GPIO expander"
  784. depends on MFD_LP3943
  785. help
  786. GPIO driver for LP3943 MFD.
  787. LP3943 can be used as a GPIO expander which provides up to 16 GPIOs.
  788. Open drain outputs are required for this usage.
  789. config GPIO_LP873X
  790. tristate "TI LP873X GPO"
  791. depends on MFD_TI_LP873X
  792. help
  793. This driver supports the GPO on TI Lp873x PMICs. 2 GPOs are present
  794. on LP873X PMICs.
  795. This driver can also be built as a module. If so, the module will be
  796. called gpio-lp873x.
  797. config GPIO_MAX77620
  798. tristate "GPIO support for PMIC MAX77620 and MAX20024"
  799. depends on MFD_MAX77620
  800. help
  801. GPIO driver for MAX77620 and MAX20024 PMIC from Maxim Semiconductor.
  802. MAX77620 PMIC has 8 pins that can be configured as GPIOs. The
  803. driver also provides interrupt support for each of the gpios.
  804. Say yes here to enable the max77620 to be used as gpio controller.
  805. config GPIO_MSIC
  806. bool "Intel MSIC mixed signal gpio support"
  807. depends on (X86 || COMPILE_TEST) && MFD_INTEL_MSIC
  808. help
  809. Enable support for GPIO on intel MSIC controllers found in
  810. intel MID devices
  811. config GPIO_PALMAS
  812. bool "TI PALMAS series PMICs GPIO"
  813. depends on MFD_PALMAS
  814. help
  815. Select this option to enable GPIO driver for the TI PALMAS
  816. series chip family.
  817. config GPIO_RC5T583
  818. bool "RICOH RC5T583 GPIO"
  819. depends on MFD_RC5T583
  820. help
  821. Select this option to enable GPIO driver for the Ricoh RC5T583
  822. chip family.
  823. This driver provides the support for driving/reading the gpio pins
  824. of RC5T583 device through standard gpio library.
  825. config GPIO_STMPE
  826. bool "STMPE GPIOs"
  827. depends on MFD_STMPE
  828. depends on OF_GPIO
  829. select GPIOLIB_IRQCHIP
  830. help
  831. This enables support for the GPIOs found on the STMPE I/O
  832. Expanders.
  833. config GPIO_TC3589X
  834. bool "TC3589X GPIOs"
  835. depends on MFD_TC3589X
  836. depends on OF_GPIO
  837. select GPIOLIB_IRQCHIP
  838. help
  839. This enables support for the GPIOs found on the TC3589X
  840. I/O Expander.
  841. config GPIO_TIMBERDALE
  842. bool "Support for timberdale GPIO IP"
  843. depends on MFD_TIMBERDALE
  844. ---help---
  845. Add support for the GPIO IP in the timberdale FPGA.
  846. config GPIO_TPS65086
  847. tristate "TI TPS65086 GPO"
  848. depends on MFD_TPS65086
  849. help
  850. This driver supports the GPO on TI TPS65086x PMICs.
  851. config GPIO_TPS65218
  852. tristate "TPS65218 GPIO"
  853. depends on MFD_TPS65218
  854. help
  855. Select this option to enable GPIO driver for the TPS65218
  856. chip family.
  857. config GPIO_TPS6586X
  858. bool "TPS6586X GPIO"
  859. depends on MFD_TPS6586X
  860. help
  861. Select this option to enable GPIO driver for the TPS6586X
  862. chip family.
  863. config GPIO_TPS65910
  864. bool "TPS65910 GPIO"
  865. depends on MFD_TPS65910
  866. help
  867. Select this option to enable GPIO driver for the TPS65910
  868. chip family.
  869. config GPIO_TPS65912
  870. tristate "TI TPS65912 GPIO"
  871. depends on MFD_TPS65912
  872. help
  873. This driver supports TPS65912 gpio chip
  874. config GPIO_TWL4030
  875. tristate "TWL4030, TWL5030, and TPS659x0 GPIOs"
  876. depends on TWL4030_CORE
  877. help
  878. Say yes here to access the GPIO signals of various multi-function
  879. power management chips from Texas Instruments.
  880. config GPIO_TWL6040
  881. tristate "TWL6040 GPO"
  882. depends on TWL6040_CORE
  883. help
  884. Say yes here to access the GPO signals of twl6040
  885. audio chip from Texas Instruments.
  886. config GPIO_UCB1400
  887. tristate "Philips UCB1400 GPIO"
  888. depends on UCB1400_CORE
  889. help
  890. This enables support for the Philips UCB1400 GPIO pins.
  891. The UCB1400 is an AC97 audio codec.
  892. config GPIO_WHISKEY_COVE
  893. tristate "GPIO support for Whiskey Cove PMIC"
  894. depends on (X86 || COMPILE_TEST) && INTEL_SOC_PMIC_BXTWC
  895. select GPIOLIB_IRQCHIP
  896. help
  897. Support for GPIO pins on Whiskey Cove PMIC.
  898. Say Yes if you have a Intel SoC based tablet with Whiskey Cove PMIC
  899. inside.
  900. This driver can also be built as a module. If so, the module will be
  901. called gpio-wcove.
  902. config GPIO_WM831X
  903. tristate "WM831x GPIOs"
  904. depends on MFD_WM831X
  905. help
  906. Say yes here to access the GPIO signals of WM831x power management
  907. chips from Wolfson Microelectronics.
  908. config GPIO_WM8350
  909. tristate "WM8350 GPIOs"
  910. depends on MFD_WM8350
  911. help
  912. Say yes here to access the GPIO signals of WM8350 power management
  913. chips from Wolfson Microelectronics.
  914. config GPIO_WM8994
  915. tristate "WM8994 GPIOs"
  916. depends on MFD_WM8994
  917. help
  918. Say yes here to access the GPIO signals of WM8994 audio hub
  919. CODECs from Wolfson Microelectronics.
  920. endmenu
  921. menu "PCI GPIO expanders"
  922. depends on PCI
  923. config GPIO_AMD8111
  924. tristate "AMD 8111 GPIO driver"
  925. depends on X86 || COMPILE_TEST
  926. help
  927. The AMD 8111 south bridge contains 32 GPIO pins which can be used.
  928. Note, that usually system firmware/ACPI handles GPIO pins on their
  929. own and users might easily break their systems with uncarefull usage
  930. of this driver!
  931. If unsure, say N
  932. config GPIO_BT8XX
  933. tristate "BT8XX GPIO abuser"
  934. depends on VIDEO_BT848=n
  935. help
  936. The BT8xx frame grabber chip has 24 GPIO pins that can be abused
  937. as a cheap PCI GPIO card.
  938. This chip can be found on Miro, Hauppauge and STB TV-cards.
  939. The card needs to be physically altered for using it as a
  940. GPIO card. For more information on how to build a GPIO card
  941. from a BT8xx TV card, see the documentation file at
  942. Documentation/bt8xxgpio.txt
  943. If unsure, say N.
  944. config GPIO_INTEL_MID
  945. bool "Intel MID GPIO support"
  946. depends on X86_INTEL_MID
  947. select GPIOLIB_IRQCHIP
  948. help
  949. Say Y here to support Intel MID GPIO.
  950. config GPIO_MERRIFIELD
  951. tristate "Intel Merrifield GPIO support"
  952. depends on X86_INTEL_MID
  953. select GPIOLIB_IRQCHIP
  954. help
  955. Say Y here to support Intel Merrifield GPIO.
  956. config GPIO_ML_IOH
  957. tristate "OKI SEMICONDUCTOR ML7213 IOH GPIO support"
  958. depends on X86 || COMPILE_TEST
  959. select GENERIC_IRQ_CHIP
  960. help
  961. ML7213 is companion chip for Intel Atom E6xx series.
  962. This driver can be used for OKI SEMICONDUCTOR ML7213 IOH(Input/Output
  963. Hub) which is for IVI(In-Vehicle Infotainment) use.
  964. This driver can access the IOH's GPIO device.
  965. config GPIO_PCH
  966. tristate "Intel EG20T PCH/LAPIS Semiconductor IOH(ML7223/ML7831) GPIO"
  967. depends on X86_32 || MIPS || COMPILE_TEST
  968. select GENERIC_IRQ_CHIP
  969. help
  970. This driver is for PCH(Platform controller Hub) GPIO of Intel Topcliff
  971. which is an IOH(Input/Output Hub) for x86 embedded processor.
  972. This driver can access PCH GPIO device.
  973. This driver also can be used for LAPIS Semiconductor IOH(Input/
  974. Output Hub), ML7223 and ML7831.
  975. ML7223 IOH is for MP(Media Phone) use.
  976. ML7831 IOH is for general purpose use.
  977. ML7223/ML7831 is companion chip for Intel Atom E6xx series.
  978. ML7223/ML7831 is completely compatible for Intel EG20T PCH.
  979. config GPIO_PCI_IDIO_16
  980. tristate "ACCES PCI-IDIO-16 GPIO support"
  981. select GPIOLIB_IRQCHIP
  982. help
  983. Enables GPIO support for the ACCES PCI-IDIO-16. An interrupt is
  984. generated when any of the inputs change state (low to high or high to
  985. low). Input filter control is not supported by this driver, and the
  986. input filters are deactivated by this driver.
  987. config GPIO_RDC321X
  988. tristate "RDC R-321x GPIO support"
  989. select MFD_CORE
  990. select MFD_RDC321X
  991. help
  992. Support for the RDC R321x SoC GPIOs over southbridge
  993. PCI configuration space.
  994. config GPIO_SODAVILLE
  995. bool "Intel Sodaville GPIO support"
  996. depends on X86 && OF
  997. select GPIO_GENERIC
  998. select GENERIC_IRQ_CHIP
  999. help
  1000. Say Y here to support Intel Sodaville GPIO.
  1001. endmenu
  1002. menu "SPI GPIO expanders"
  1003. depends on SPI_MASTER
  1004. config GPIO_74X164
  1005. tristate "74x164 serial-in/parallel-out 8-bits shift register"
  1006. depends on OF_GPIO
  1007. help
  1008. Driver for 74x164 compatible serial-in/parallel-out 8-outputs
  1009. shift registers. This driver can be used to provide access
  1010. to more gpio outputs.
  1011. config GPIO_MAX7301
  1012. tristate "Maxim MAX7301 GPIO expander"
  1013. select GPIO_MAX730X
  1014. help
  1015. GPIO driver for Maxim MAX7301 SPI-based GPIO expander.
  1016. config GPIO_MC33880
  1017. tristate "Freescale MC33880 high-side/low-side switch"
  1018. help
  1019. SPI driver for Freescale MC33880 high-side/low-side switch.
  1020. This provides GPIO interface supporting inputs and outputs.
  1021. config GPIO_PISOSR
  1022. tristate "Generic parallel-in/serial-out shift register"
  1023. help
  1024. GPIO driver for SPI compatible parallel-in/serial-out shift
  1025. registers. These are input only devices.
  1026. endmenu
  1027. menu "SPI or I2C GPIO expanders"
  1028. depends on (SPI_MASTER && !I2C) || I2C
  1029. config GPIO_MCP23S08
  1030. tristate "Microchip MCP23xxx I/O expander"
  1031. depends on OF_GPIO
  1032. select GPIOLIB_IRQCHIP
  1033. select REGMAP_I2C if I2C
  1034. select REGMAP if SPI_MASTER
  1035. help
  1036. SPI/I2C driver for Microchip MCP23S08/MCP23S17/MCP23008/MCP23017
  1037. I/O expanders.
  1038. This provides a GPIO interface supporting inputs and outputs.
  1039. The I2C versions of the chips can be used as interrupt-controller.
  1040. endmenu
  1041. menu "USB GPIO expanders"
  1042. depends on USB
  1043. config GPIO_VIPERBOARD
  1044. tristate "Viperboard GPIO a & b support"
  1045. depends on MFD_VIPERBOARD
  1046. help
  1047. Say yes here to access the GPIO signals of Nano River
  1048. Technologies Viperboard. There are two GPIO chips on the
  1049. board: gpioa and gpiob.
  1050. See viperboard API specification and Nano
  1051. River Tech's viperboard.h for detailed meaning
  1052. of the module parameters.
  1053. endmenu
  1054. endif