Kconfig 39 KB

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