Kconfig 39 KB

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