Kconfig 38 KB

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