Kconfig 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727
  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. config ARCH_WANT_OPTIONAL_GPIOLIB
  12. bool
  13. help
  14. Select this config option from the architecture Kconfig, if
  15. it is possible to use gpiolib on the architecture, but let the
  16. user decide whether to actually build it or not.
  17. Select this instead of ARCH_REQUIRE_GPIOLIB, if your architecture does
  18. not depend on GPIOs being available, but rather let the user
  19. decide whether he needs it or not.
  20. config ARCH_REQUIRE_GPIOLIB
  21. bool
  22. select GPIOLIB
  23. help
  24. Platforms select gpiolib if they use this infrastructure
  25. for all their GPIOs, usually starting with ones integrated
  26. into SOC processors.
  27. Selecting this from the architecture code will cause the gpiolib
  28. code to always get built in.
  29. config GPIO_DEVRES
  30. def_bool y
  31. depends on HAS_IOMEM
  32. menuconfig GPIOLIB
  33. bool "GPIO Support"
  34. depends on ARCH_WANT_OPTIONAL_GPIOLIB || ARCH_REQUIRE_GPIOLIB
  35. help
  36. This enables GPIO support through the generic GPIO library.
  37. You only need to enable this, if you also want to enable
  38. one or more of the GPIO drivers below.
  39. If unsure, say N.
  40. if GPIOLIB
  41. config OF_GPIO
  42. def_bool y
  43. depends on OF
  44. config GPIO_ACPI
  45. def_bool y
  46. depends on ACPI
  47. config DEBUG_GPIO
  48. bool "Debug GPIO calls"
  49. depends on DEBUG_KERNEL
  50. help
  51. Say Y here to add some extra checks and diagnostics to GPIO calls.
  52. These checks help ensure that GPIOs have been properly initialized
  53. before they are used, and that sleeping calls are not made from
  54. non-sleeping contexts. They can make bitbanged serial protocols
  55. slower. The diagnostics help catch the type of setup errors
  56. that are most common when setting up new platforms or boards.
  57. config GPIO_SYSFS
  58. bool "/sys/class/gpio/... (sysfs interface)"
  59. depends on SYSFS
  60. help
  61. Say Y here to add a sysfs interface for GPIOs.
  62. This is mostly useful to work around omissions in a system's
  63. kernel support. Those are common in custom and semicustom
  64. hardware assembled using standard kernels with a minimum of
  65. custom patches. In those cases, userspace code may import
  66. a given GPIO from the kernel, if no kernel driver requested it.
  67. Kernel drivers may also request that a particular GPIO be
  68. exported to userspace; this can be useful when debugging.
  69. config GPIO_GENERIC
  70. tristate
  71. # put drivers in the right section, in alphabetical order
  72. config GPIO_DA9052
  73. tristate "Dialog DA9052 GPIO"
  74. depends on PMIC_DA9052
  75. help
  76. Say yes here to enable the GPIO driver for the DA9052 chip.
  77. config GPIO_DA9055
  78. tristate "Dialog Semiconductor DA9055 GPIO"
  79. depends on MFD_DA9055
  80. help
  81. Say yes here to enable the GPIO driver for the DA9055 chip.
  82. The Dialog DA9055 PMIC chip has 3 GPIO pins that can be
  83. be controller by this driver.
  84. If driver is built as a module it will be called gpio-da9055.
  85. config GPIO_MAX730X
  86. tristate
  87. comment "Memory mapped GPIO drivers:"
  88. config GPIO_CLPS711X
  89. def_bool y
  90. depends on ARCH_CLPS711X
  91. config GPIO_GENERIC_PLATFORM
  92. tristate "Generic memory-mapped GPIO controller support (MMIO platform device)"
  93. select GPIO_GENERIC
  94. help
  95. Say yes here to support basic platform_device memory-mapped GPIO controllers.
  96. config GPIO_IT8761E
  97. tristate "IT8761E GPIO support"
  98. depends on X86 # unconditional access to IO space.
  99. help
  100. Say yes here to support GPIO functionality of IT8761E super I/O chip.
  101. config GPIO_EM
  102. tristate "Emma Mobile GPIO"
  103. depends on ARM
  104. help
  105. Say yes here to support GPIO on Renesas Emma Mobile SoCs.
  106. config GPIO_EP93XX
  107. def_bool y
  108. depends on ARCH_EP93XX
  109. select GPIO_GENERIC
  110. config GPIO_MM_LANTIQ
  111. bool "Lantiq Memory mapped GPIOs"
  112. depends on LANTIQ && SOC_XWAY
  113. help
  114. This enables support for memory mapped GPIOs on the External Bus Unit
  115. (EBU) found on Lantiq SoCs. The gpios are output only as they are
  116. created by attaching a 16bit latch to the bus.
  117. config GPIO_MPC5200
  118. def_bool y
  119. depends on PPC_MPC52xx
  120. config GPIO_MPC8XXX
  121. bool "MPC512x/MPC8xxx GPIO support"
  122. depends on PPC_MPC512x || PPC_MPC831x || PPC_MPC834x || PPC_MPC837x || \
  123. FSL_SOC_BOOKE || PPC_86xx
  124. help
  125. Say Y here if you're going to use hardware that connects to the
  126. MPC512x/831x/834x/837x/8572/8610 GPIOs.
  127. config GPIO_MSM_V1
  128. tristate "Qualcomm MSM GPIO v1"
  129. depends on GPIOLIB && ARCH_MSM && (ARCH_MSM7X00A || ARCH_MSM7X30 || ARCH_QSD8X50)
  130. help
  131. Say yes here to support the GPIO interface on ARM v6 based
  132. Qualcomm MSM chips. Most of the pins on the MSM can be
  133. selected for GPIO, and are controlled by this driver.
  134. config GPIO_MSM_V2
  135. tristate "Qualcomm MSM GPIO v2"
  136. depends on GPIOLIB && ARCH_MSM
  137. help
  138. Say yes here to support the GPIO interface on ARM v7 based
  139. Qualcomm MSM chips. Most of the pins on the MSM can be
  140. selected for GPIO, and are controlled by this driver.
  141. config GPIO_MVEBU
  142. def_bool y
  143. depends on PLAT_ORION
  144. depends on OF
  145. select GPIO_GENERIC
  146. select GENERIC_IRQ_CHIP
  147. config GPIO_MXC
  148. def_bool y
  149. depends on ARCH_MXC
  150. select GPIO_GENERIC
  151. select GENERIC_IRQ_CHIP
  152. config GPIO_MXS
  153. def_bool y
  154. depends on ARCH_MXS
  155. select GPIO_GENERIC
  156. select GENERIC_IRQ_CHIP
  157. config GPIO_PL061
  158. bool "PrimeCell PL061 GPIO support"
  159. depends on ARM && ARM_AMBA
  160. select GENERIC_IRQ_CHIP
  161. help
  162. Say yes here to support the PrimeCell PL061 GPIO device
  163. config GPIO_PXA
  164. bool "PXA GPIO support"
  165. depends on ARCH_PXA || ARCH_MMP
  166. help
  167. Say yes here to support the PXA GPIO device
  168. config GPIO_RCAR
  169. tristate "Renesas R-Car GPIO"
  170. depends on ARM
  171. help
  172. Say yes here to support GPIO on Renesas R-Car SoCs.
  173. config GPIO_SAMSUNG
  174. bool
  175. depends on PLAT_SAMSUNG
  176. help
  177. Legacy GPIO support. Use only for platforms without support for
  178. pinctrl.
  179. config GPIO_SPEAR_SPICS
  180. bool "ST SPEAr13xx SPI Chip Select as GPIO support"
  181. depends on PLAT_SPEAR
  182. select GENERIC_IRQ_CHIP
  183. help
  184. Say yes here to support ST SPEAr SPI Chip Select as GPIO device
  185. config GPIO_STA2X11
  186. bool "STA2x11/ConneXt GPIO support"
  187. depends on MFD_STA2X11
  188. select GENERIC_IRQ_CHIP
  189. help
  190. Say yes here to support the STA2x11/ConneXt GPIO device.
  191. The GPIO module has 128 GPIO pins with alternate functions.
  192. config GPIO_TS5500
  193. tristate "TS-5500 DIO blocks and compatibles"
  194. help
  195. This driver supports Digital I/O exposed by pin blocks found on some
  196. Technologic Systems platforms. It includes, but is not limited to, 3
  197. blocks of the TS-5500: DIO1, DIO2 and the LCD port, and the TS-5600
  198. LCD port.
  199. config GPIO_XILINX
  200. bool "Xilinx GPIO support"
  201. depends on PPC_OF || MICROBLAZE
  202. help
  203. Say yes here to support the Xilinx FPGA GPIO device
  204. config GPIO_VR41XX
  205. tristate "NEC VR4100 series General-purpose I/O Uint support"
  206. depends on CPU_VR41XX
  207. help
  208. Say yes here to support the NEC VR4100 series General-purpose I/O Uint
  209. config GPIO_SCH
  210. tristate "Intel SCH/TunnelCreek/Centerton GPIO"
  211. depends on PCI && X86
  212. select MFD_CORE
  213. select LPC_SCH
  214. help
  215. Say yes here to support GPIO interface on Intel Poulsbo SCH,
  216. Intel Tunnel Creek processor or Intel Centerton processor.
  217. The Intel SCH contains a total of 14 GPIO pins. Ten GPIOs are
  218. powered by the core power rail and are turned off during sleep
  219. modes (S3 and higher). The remaining four GPIOs are powered by
  220. the Intel SCH suspend power supply. These GPIOs remain
  221. active during S3. The suspend powered GPIOs can be used to wake the
  222. system from the Suspend-to-RAM state.
  223. The Intel Tunnel Creek processor has 5 GPIOs powered by the
  224. core power rail and 9 from suspend power supply.
  225. The Intel Centerton processor has a total of 30 GPIO pins.
  226. Twenty-one are powered by the core power rail and 9 from the
  227. suspend power supply.
  228. config GPIO_ICH
  229. tristate "Intel ICH GPIO"
  230. depends on PCI && X86
  231. select MFD_CORE
  232. select LPC_ICH
  233. help
  234. Say yes here to support the GPIO functionality of a number of Intel
  235. ICH-based chipsets. Currently supported devices: ICH6, ICH7, ICH8
  236. ICH9, ICH10, Series 5/3400 (eg Ibex Peak), Series 6/C200 (eg
  237. Cougar Point), NM10 (Tiger Point), and 3100 (Whitmore Lake).
  238. If unsure, say N.
  239. config GPIO_VX855
  240. tristate "VIA VX855/VX875 GPIO"
  241. depends on PCI && GENERIC_HARDIRQS
  242. select MFD_CORE
  243. select MFD_VX855
  244. help
  245. Support access to the VX855/VX875 GPIO lines through the gpio library.
  246. This driver provides common support for accessing the device,
  247. additional drivers must be enabled in order to use the
  248. functionality of the device.
  249. config GPIO_GE_FPGA
  250. bool "GE FPGA based GPIO"
  251. depends on GE_FPGA
  252. help
  253. Support for common GPIO functionality provided on some GE Single Board
  254. Computers.
  255. This driver provides basic support (configure as input or output, read
  256. and write pin state) for GPIO implemented in a number of GE single
  257. board computers.
  258. config GPIO_LYNXPOINT
  259. bool "Intel Lynxpoint GPIO support"
  260. depends on ACPI && X86
  261. select IRQ_DOMAIN
  262. help
  263. driver for GPIO functionality on Intel Lynxpoint PCH chipset
  264. Requires ACPI device enumeration code to set up a platform device.
  265. config GPIO_GRGPIO
  266. tristate "Aeroflex Gaisler GRGPIO support"
  267. depends on OF
  268. select GPIO_GENERIC
  269. select IRQ_DOMAIN
  270. help
  271. Select this to support Aeroflex Gaisler GRGPIO cores from the GRLIB
  272. VHDL IP core library.
  273. comment "I2C GPIO expanders:"
  274. config GPIO_ARIZONA
  275. tristate "Wolfson Microelectronics Arizona class devices"
  276. depends on MFD_ARIZONA
  277. help
  278. Support for GPIOs on Wolfson Arizona class devices.
  279. config GPIO_MAX7300
  280. tristate "Maxim MAX7300 GPIO expander"
  281. depends on I2C
  282. select GPIO_MAX730X
  283. help
  284. GPIO driver for Maxim MAX7301 I2C-based GPIO expander.
  285. config GPIO_MAX732X
  286. tristate "MAX7319, MAX7320-7327 I2C Port Expanders"
  287. depends on I2C
  288. help
  289. Say yes here to support the MAX7319, MAX7320-7327 series of I2C
  290. Port Expanders. Each IO port on these chips has a fixed role of
  291. Input (designated by 'I'), Push-Pull Output ('O'), or Open-Drain
  292. Input and Output (designed by 'P'). The combinations are listed
  293. below:
  294. 8 bits: max7319 (8I), max7320 (8O), max7321 (8P),
  295. max7322 (4I4O), max7323 (4P4O)
  296. 16 bits: max7324 (8I8O), max7325 (8P8O),
  297. max7326 (4I12O), max7327 (4P12O)
  298. Board setup code must specify the model to use, and the start
  299. number for these GPIOs.
  300. config GPIO_MAX732X_IRQ
  301. bool "Interrupt controller support for MAX732x"
  302. depends on GPIO_MAX732X=y && GENERIC_HARDIRQS
  303. help
  304. Say yes here to enable the max732x to be used as an interrupt
  305. controller. It requires the driver to be built in the kernel.
  306. config GPIO_MC9S08DZ60
  307. bool "MX35 3DS BOARD MC9S08DZ60 GPIO functions"
  308. depends on I2C=y && MACH_MX35_3DS
  309. help
  310. Select this to enable the MC9S08DZ60 GPIO driver
  311. config GPIO_PCA953X
  312. tristate "PCA953x, PCA955x, PCA957x, TCA64xx, and MAX7310 I/O ports"
  313. depends on I2C
  314. help
  315. Say yes here to provide access to several register-oriented
  316. SMBus I/O expanders, made mostly by NXP or TI. Compatible
  317. models include:
  318. 4 bits: pca9536, pca9537
  319. 8 bits: max7310, max7315, pca6107, pca9534, pca9538, pca9554,
  320. pca9556, pca9557, pca9574, tca6408
  321. 16 bits: max7312, max7313, pca9535, pca9539, pca9555, pca9575,
  322. tca6416
  323. config GPIO_PCA953X_IRQ
  324. bool "Interrupt controller support for PCA953x"
  325. depends on GPIO_PCA953X=y
  326. help
  327. Say yes here to enable the pca953x to be used as an interrupt
  328. controller. It requires the driver to be built in the kernel.
  329. config GPIO_PCF857X
  330. tristate "PCF857x, PCA{85,96}7x, and MAX732[89] I2C GPIO expanders"
  331. depends on I2C
  332. select IRQ_DOMAIN
  333. help
  334. Say yes here to provide access to most "quasi-bidirectional" I2C
  335. GPIO expanders used for additional digital outputs or inputs.
  336. Most of these parts are from NXP, though TI is a second source for
  337. some of them. Compatible models include:
  338. 8 bits: pcf8574, pcf8574a, pca8574, pca8574a,
  339. pca9670, pca9672, pca9674, pca9674a,
  340. max7328, max7329
  341. 16 bits: pcf8575, pcf8575c, pca8575,
  342. pca9671, pca9673, pca9675
  343. Your board setup code will need to declare the expanders in
  344. use, and assign numbers to the GPIOs they expose. Those GPIOs
  345. can then be used from drivers and other kernel code, just like
  346. other GPIOs, but only accessible from task contexts.
  347. This driver provides an in-kernel interface to those GPIOs using
  348. platform-neutral GPIO calls.
  349. config GPIO_RC5T583
  350. bool "RICOH RC5T583 GPIO"
  351. depends on MFD_RC5T583
  352. help
  353. Select this option to enable GPIO driver for the Ricoh RC5T583
  354. chip family.
  355. This driver provides the support for driving/reading the gpio pins
  356. of RC5T583 device through standard gpio library.
  357. config GPIO_SX150X
  358. bool "Semtech SX150x I2C GPIO expander"
  359. depends on I2C=y
  360. default n
  361. help
  362. Say yes here to provide support for Semtech SX150-series I2C
  363. GPIO expanders. Compatible models include:
  364. 8 bits: sx1508q
  365. 16 bits: sx1509q
  366. config GPIO_STMPE
  367. bool "STMPE GPIOs"
  368. depends on MFD_STMPE
  369. help
  370. This enables support for the GPIOs found on the STMPE I/O
  371. Expanders.
  372. config GPIO_STP_XWAY
  373. bool "XWAY STP GPIOs"
  374. depends on SOC_XWAY
  375. help
  376. This enables support for the Serial To Parallel (STP) unit found on
  377. XWAY SoC. The STP allows the SoC to drive a shift registers cascade,
  378. that can be up to 24 bit. This peripheral is aimed at driving leds.
  379. Some of the gpios/leds can be auto updated by the soc with dsl and
  380. phy status.
  381. config GPIO_TC3589X
  382. bool "TC3589X GPIOs"
  383. depends on MFD_TC3589X
  384. help
  385. This enables support for the GPIOs found on the TC3589X
  386. I/O Expander.
  387. config GPIO_TPS65912
  388. tristate "TI TPS65912 GPIO"
  389. depends on (MFD_TPS65912_I2C || MFD_TPS65912_SPI)
  390. help
  391. This driver supports TPS65912 gpio chip
  392. config GPIO_TWL4030
  393. tristate "TWL4030, TWL5030, and TPS659x0 GPIOs"
  394. depends on TWL4030_CORE
  395. help
  396. Say yes here to access the GPIO signals of various multi-function
  397. power management chips from Texas Instruments.
  398. config GPIO_TWL6040
  399. tristate "TWL6040 GPO"
  400. depends on TWL6040_CORE
  401. help
  402. Say yes here to access the GPO signals of twl6040
  403. audio chip from Texas Instruments.
  404. config GPIO_WM831X
  405. tristate "WM831x GPIOs"
  406. depends on MFD_WM831X
  407. help
  408. Say yes here to access the GPIO signals of WM831x power management
  409. chips from Wolfson Microelectronics.
  410. config GPIO_WM8350
  411. tristate "WM8350 GPIOs"
  412. depends on MFD_WM8350
  413. help
  414. Say yes here to access the GPIO signals of WM8350 power management
  415. chips from Wolfson Microelectronics.
  416. config GPIO_WM8994
  417. tristate "WM8994 GPIOs"
  418. depends on MFD_WM8994
  419. help
  420. Say yes here to access the GPIO signals of WM8994 audio hub
  421. CODECs from Wolfson Microelectronics.
  422. config GPIO_ADP5520
  423. tristate "GPIO Support for ADP5520 PMIC"
  424. depends on PMIC_ADP5520
  425. help
  426. This option enables support for on-chip GPIO found
  427. on Analog Devices ADP5520 PMICs.
  428. config GPIO_ADP5588
  429. tristate "ADP5588 I2C GPIO expander"
  430. depends on I2C
  431. help
  432. This option enables support for 18 GPIOs found
  433. on Analog Devices ADP5588 GPIO Expanders.
  434. config GPIO_ADP5588_IRQ
  435. bool "Interrupt controller support for ADP5588"
  436. depends on GPIO_ADP5588=y
  437. help
  438. Say yes here to enable the adp5588 to be used as an interrupt
  439. controller. It requires the driver to be built in the kernel.
  440. config GPIO_ADNP
  441. tristate "Avionic Design N-bit GPIO expander"
  442. depends on I2C && OF_GPIO
  443. help
  444. This option enables support for N GPIOs found on Avionic Design
  445. I2C GPIO expanders. The register space will be extended by powers
  446. of two, so the controller will need to accommodate for that. For
  447. example: if a controller provides 48 pins, 6 registers will be
  448. enough to represent all pins, but the driver will assume a
  449. register layout for 64 pins (8 registers).
  450. comment "PCI GPIO expanders:"
  451. config GPIO_CS5535
  452. tristate "AMD CS5535/CS5536 GPIO support"
  453. depends on PCI && X86 && MFD_CS5535
  454. help
  455. The AMD CS5535 and CS5536 southbridges support 28 GPIO pins that
  456. can be used for quite a number of things. The CS5535/6 is found on
  457. AMD Geode and Lemote Yeeloong devices.
  458. If unsure, say N.
  459. config GPIO_BT8XX
  460. tristate "BT8XX GPIO abuser"
  461. depends on PCI && VIDEO_BT848=n
  462. help
  463. The BT8xx frame grabber chip has 24 GPIO pins than can be abused
  464. as a cheap PCI GPIO card.
  465. This chip can be found on Miro, Hauppauge and STB TV-cards.
  466. The card needs to be physically altered for using it as a
  467. GPIO card. For more information on how to build a GPIO card
  468. from a BT8xx TV card, see the documentation file at
  469. Documentation/bt8xxgpio.txt
  470. If unsure, say N.
  471. config GPIO_AMD8111
  472. tristate "AMD 8111 GPIO driver"
  473. depends on PCI
  474. help
  475. The AMD 8111 south bridge contains 32 GPIO pins which can be used.
  476. Note, that usually system firmware/ACPI handles GPIO pins on their
  477. own and users might easily break their systems with uncarefull usage
  478. of this driver!
  479. If unsure, say N
  480. config GPIO_LANGWELL
  481. bool "Intel Langwell/Penwell GPIO support"
  482. depends on PCI && X86
  483. select IRQ_DOMAIN
  484. help
  485. Say Y here to support Intel Langwell/Penwell GPIO.
  486. config GPIO_PCH
  487. tristate "Intel EG20T PCH/LAPIS Semiconductor IOH(ML7223/ML7831) GPIO"
  488. depends on PCI && X86
  489. select GENERIC_IRQ_CHIP
  490. help
  491. This driver is for PCH(Platform controller Hub) GPIO of Intel Topcliff
  492. which is an IOH(Input/Output Hub) for x86 embedded processor.
  493. This driver can access PCH GPIO device.
  494. This driver also can be used for LAPIS Semiconductor IOH(Input/
  495. Output Hub), ML7223 and ML7831.
  496. ML7223 IOH is for MP(Media Phone) use.
  497. ML7831 IOH is for general purpose use.
  498. ML7223/ML7831 is companion chip for Intel Atom E6xx series.
  499. ML7223/ML7831 is completely compatible for Intel EG20T PCH.
  500. config GPIO_ML_IOH
  501. tristate "OKI SEMICONDUCTOR ML7213 IOH GPIO support"
  502. depends on PCI
  503. select GENERIC_IRQ_CHIP
  504. help
  505. ML7213 is companion chip for Intel Atom E6xx series.
  506. This driver can be used for OKI SEMICONDUCTOR ML7213 IOH(Input/Output
  507. Hub) which is for IVI(In-Vehicle Infotainment) use.
  508. This driver can access the IOH's GPIO device.
  509. config GPIO_SODAVILLE
  510. bool "Intel Sodaville GPIO support"
  511. depends on X86 && PCI && OF
  512. select GPIO_GENERIC
  513. select GENERIC_IRQ_CHIP
  514. help
  515. Say Y here to support Intel Sodaville GPIO.
  516. config GPIO_TIMBERDALE
  517. bool "Support for timberdale GPIO IP"
  518. depends on MFD_TIMBERDALE && HAS_IOMEM
  519. ---help---
  520. Add support for the GPIO IP in the timberdale FPGA.
  521. config GPIO_RDC321X
  522. tristate "RDC R-321x GPIO support"
  523. depends on PCI && GENERIC_HARDIRQS
  524. select MFD_CORE
  525. select MFD_RDC321X
  526. help
  527. Support for the RDC R321x SoC GPIOs over southbridge
  528. PCI configuration space.
  529. comment "SPI GPIO expanders:"
  530. config GPIO_MAX7301
  531. tristate "Maxim MAX7301 GPIO expander"
  532. depends on SPI_MASTER
  533. select GPIO_MAX730X
  534. help
  535. GPIO driver for Maxim MAX7301 SPI-based GPIO expander.
  536. config GPIO_MCP23S08
  537. tristate "Microchip MCP23xxx I/O expander"
  538. depends on (SPI_MASTER && !I2C) || I2C
  539. help
  540. SPI/I2C driver for Microchip MCP23S08/MCP23S17/MCP23008/MCP23017
  541. I/O expanders.
  542. This provides a GPIO interface supporting inputs and outputs.
  543. config GPIO_MC33880
  544. tristate "Freescale MC33880 high-side/low-side switch"
  545. depends on SPI_MASTER
  546. help
  547. SPI driver for Freescale MC33880 high-side/low-side switch.
  548. This provides GPIO interface supporting inputs and outputs.
  549. config GPIO_74X164
  550. tristate "74x164 serial-in/parallel-out 8-bits shift register"
  551. depends on SPI_MASTER
  552. help
  553. Platform driver for 74x164 compatible serial-in/parallel-out
  554. 8-outputs shift registers. This driver can be used to provide access
  555. to more gpio outputs.
  556. comment "AC97 GPIO expanders:"
  557. config GPIO_UCB1400
  558. bool "Philips UCB1400 GPIO"
  559. depends on UCB1400_CORE
  560. help
  561. This enables support for the Philips UCB1400 GPIO pins.
  562. The UCB1400 is an AC97 audio codec.
  563. comment "MODULbus GPIO expanders:"
  564. config GPIO_JANZ_TTL
  565. tristate "Janz VMOD-TTL Digital IO Module"
  566. depends on MFD_JANZ_CMODIO
  567. help
  568. This enables support for the Janz VMOD-TTL Digital IO module.
  569. This driver provides support for driving the pins in output
  570. mode only. Input mode is not supported.
  571. config GPIO_PALMAS
  572. bool "TI PALMAS series PMICs GPIO"
  573. depends on MFD_PALMAS
  574. help
  575. Select this option to enable GPIO driver for the TI PALMAS
  576. series chip family.
  577. config GPIO_TPS6586X
  578. bool "TPS6586X GPIO"
  579. depends on MFD_TPS6586X
  580. help
  581. Select this option to enable GPIO driver for the TPS6586X
  582. chip family.
  583. config GPIO_TPS65910
  584. bool "TPS65910 GPIO"
  585. depends on MFD_TPS65910
  586. help
  587. Select this option to enable GPIO driver for the TPS65910
  588. chip family.
  589. config GPIO_MSIC
  590. bool "Intel MSIC mixed signal gpio support"
  591. depends on MFD_INTEL_MSIC
  592. help
  593. Enable support for GPIO on intel MSIC controllers found in
  594. intel MID devices
  595. comment "USB GPIO expanders:"
  596. config GPIO_VIPERBOARD
  597. tristate "Viperboard GPIO a & b support"
  598. depends on MFD_VIPERBOARD && USB
  599. help
  600. Say yes here to access the GPIO signals of Nano River
  601. Technologies Viperboard. There are two GPIO chips on the
  602. board: gpioa and gpiob.
  603. See viperboard API specification and Nano
  604. River Tech's viperboard.h for detailed meaning
  605. of the module parameters.
  606. endif