Kconfig 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258
  1. #
  2. # GPIO infrastructure and expanders
  3. #
  4. config ARCH_WANT_OPTIONAL_GPIOLIB
  5. bool
  6. help
  7. Select this config option from the architecture Kconfig, if
  8. it is possible to use gpiolib on the architecture, but let the
  9. user decide whether to actually build it or not.
  10. Select this instead of ARCH_REQUIRE_GPIOLIB, if your architecture does
  11. not depend on GPIOs being available, but rather let the user
  12. decide whether he needs it or not.
  13. config ARCH_REQUIRE_GPIOLIB
  14. bool
  15. select GPIOLIB
  16. help
  17. Platforms select gpiolib if they use this infrastructure
  18. for all their GPIOs, usually starting with ones integrated
  19. into SOC processors.
  20. Selecting this from the architecture code will cause the gpiolib
  21. code to always get built in.
  22. menuconfig GPIOLIB
  23. bool "GPIO Support"
  24. depends on ARCH_WANT_OPTIONAL_GPIOLIB || ARCH_REQUIRE_GPIOLIB
  25. select GENERIC_GPIO
  26. help
  27. This enables GPIO support through the generic GPIO library.
  28. You only need to enable this, if you also want to enable
  29. one or more of the GPIO expansion card drivers below.
  30. If unsure, say N.
  31. if GPIOLIB
  32. config DEBUG_GPIO
  33. bool "Debug GPIO calls"
  34. depends on DEBUG_KERNEL
  35. help
  36. Say Y here to add some extra checks and diagnostics to GPIO calls.
  37. These checks help ensure that GPIOs have been properly initialized
  38. before they are used, and that sleeping calls are not made from
  39. non-sleeping contexts. They can make bitbanged serial protocols
  40. slower. The diagnostics help catch the type of setup errors
  41. that are most common when setting up new platforms or boards.
  42. config GPIO_SYSFS
  43. bool "/sys/class/gpio/... (sysfs interface)"
  44. depends on SYSFS && EXPERIMENTAL
  45. help
  46. Say Y here to add a sysfs interface for GPIOs.
  47. This is mostly useful to work around omissions in a system's
  48. kernel support. Those are common in custom and semicustom
  49. hardware assembled using standard kernels with a minimum of
  50. custom patches. In those cases, userspace code may import
  51. a given GPIO from the kernel, if no kernel driver requested it.
  52. Kernel drivers may also request that a particular GPIO be
  53. exported to userspace; this can be useful when debugging.
  54. # put expanders in the right section, in alphabetical order
  55. comment "Memory mapped GPIO expanders:"
  56. config GPIO_PL061
  57. bool "PrimeCell PL061 GPIO support"
  58. depends on ARM_AMBA
  59. help
  60. Say yes here to support the PrimeCell PL061 GPIO device
  61. config GPIO_XILINX
  62. bool "Xilinx GPIO support"
  63. depends on PPC_OF || MICROBLAZE
  64. help
  65. Say yes here to support the Xilinx FPGA GPIO device
  66. config GPIO_VR41XX
  67. tristate "NEC VR4100 series General-purpose I/O Uint support"
  68. depends on CPU_VR41XX
  69. help
  70. Say yes here to support the NEC VR4100 series General-purpose I/O Uint
  71. comment "I2C GPIO expanders:"
  72. config GPIO_MAX732X
  73. tristate "MAX7319, MAX7320-7327 I2C Port Expanders"
  74. depends on I2C
  75. help
  76. Say yes here to support the MAX7319, MAX7320-7327 series of I2C
  77. Port Expanders. Each IO port on these chips has a fixed role of
  78. Input (designated by 'I'), Push-Pull Output ('O'), or Open-Drain
  79. Input and Output (designed by 'P'). The combinations are listed
  80. below:
  81. 8 bits: max7319 (8I), max7320 (8O), max7321 (8P),
  82. max7322 (4I4O), max7323 (4P4O)
  83. 16 bits: max7324 (8I8O), max7325 (8P8O),
  84. max7326 (4I12O), max7327 (4P12O)
  85. Board setup code must specify the model to use, and the start
  86. number for these GPIOs.
  87. config GPIO_PCA953X
  88. tristate "PCA953x, PCA955x, TCA64xx, and MAX7310 I/O ports"
  89. depends on I2C
  90. help
  91. Say yes here to provide access to several register-oriented
  92. SMBus I/O expanders, made mostly by NXP or TI. Compatible
  93. models include:
  94. 4 bits: pca9536, pca9537
  95. 8 bits: max7310, pca9534, pca9538, pca9554, pca9557,
  96. tca6408
  97. 16 bits: pca9535, pca9539, pca9555, tca6416
  98. This driver can also be built as a module. If so, the module
  99. will be called pca953x.
  100. config GPIO_PCF857X
  101. tristate "PCF857x, PCA{85,96}7x, and MAX732[89] I2C GPIO expanders"
  102. depends on I2C
  103. help
  104. Say yes here to provide access to most "quasi-bidirectional" I2C
  105. GPIO expanders used for additional digital outputs or inputs.
  106. Most of these parts are from NXP, though TI is a second source for
  107. some of them. Compatible models include:
  108. 8 bits: pcf8574, pcf8574a, pca8574, pca8574a,
  109. pca9670, pca9672, pca9674, pca9674a,
  110. max7328, max7329
  111. 16 bits: pcf8575, pcf8575c, pca8575,
  112. pca9671, pca9673, pca9675
  113. Your board setup code will need to declare the expanders in
  114. use, and assign numbers to the GPIOs they expose. Those GPIOs
  115. can then be used from drivers and other kernel code, just like
  116. other GPIOs, but only accessible from task contexts.
  117. This driver provides an in-kernel interface to those GPIOs using
  118. platform-neutral GPIO calls.
  119. config GPIO_TWL4030
  120. tristate "TWL4030, TWL5030, and TPS659x0 GPIOs"
  121. depends on TWL4030_CORE
  122. help
  123. Say yes here to access the GPIO signals of various multi-function
  124. power management chips from Texas Instruments.
  125. config GPIO_WM831X
  126. tristate "WM831x GPIOs"
  127. depends on MFD_WM831X
  128. help
  129. Say yes here to access the GPIO signals of WM831x power management
  130. chips from Wolfson Microelectronics.
  131. config GPIO_ADP5520
  132. tristate "GPIO Support for ADP5520 PMIC"
  133. depends on PMIC_ADP5520
  134. help
  135. This option enables support for on-chip GPIO found
  136. on Analog Devices ADP5520 PMICs.
  137. To compile this driver as a module, choose M here: the module will
  138. be called adp5520-gpio.
  139. config GPIO_ADP5588
  140. tristate "ADP5588 I2C GPIO expander"
  141. depends on I2C
  142. help
  143. This option enables support for 18 GPIOs found
  144. on Analog Devices ADP5588 GPIO Expanders.
  145. To compile this driver as a module, choose M here: the module will be
  146. called adp5588-gpio.
  147. comment "PCI GPIO expanders:"
  148. config GPIO_CS5535
  149. tristate "AMD CS5535/CS5536 GPIO support"
  150. depends on PCI && !CS5535_GPIO
  151. help
  152. The AMD CS5535 and CS5536 southbridges support 28 GPIO pins that
  153. can be used for quite a number of things. The CS5535/6 is found on
  154. AMD Geode and Lemote Yeeloong devices.
  155. If unsure, say N.
  156. config GPIO_BT8XX
  157. tristate "BT8XX GPIO abuser"
  158. depends on PCI && VIDEO_BT848=n
  159. help
  160. The BT8xx frame grabber chip has 24 GPIO pins than can be abused
  161. as a cheap PCI GPIO card.
  162. This chip can be found on Miro, Hauppauge and STB TV-cards.
  163. The card needs to be physically altered for using it as a
  164. GPIO card. For more information on how to build a GPIO card
  165. from a BT8xx TV card, see the documentation file at
  166. Documentation/bt8xxgpio.txt
  167. If unsure, say N.
  168. config GPIO_LANGWELL
  169. bool "Intel Moorestown Platform Langwell GPIO support"
  170. depends on PCI
  171. help
  172. Say Y here to support Intel Moorestown platform GPIO.
  173. config GPIO_TIMBERDALE
  174. bool "Support for timberdale GPIO IP"
  175. depends on MFD_TIMBERDALE && GPIOLIB && HAS_IOMEM
  176. ---help---
  177. Add support for the GPIO IP in the timberdale FPGA.
  178. comment "SPI GPIO expanders:"
  179. config GPIO_MAX7301
  180. tristate "Maxim MAX7301 GPIO expander"
  181. depends on SPI_MASTER
  182. help
  183. gpio driver for Maxim MAX7301 SPI GPIO expander.
  184. config GPIO_MCP23S08
  185. tristate "Microchip MCP23S08 I/O expander"
  186. depends on SPI_MASTER
  187. help
  188. SPI driver for Microchip MCP23S08 I/O expander. This provides
  189. a GPIO interface supporting inputs and outputs.
  190. config GPIO_MC33880
  191. tristate "Freescale MC33880 high-side/low-side switch"
  192. depends on SPI_MASTER
  193. help
  194. SPI driver for Freescale MC33880 high-side/low-side switch.
  195. This provides GPIO interface supporting inputs and outputs.
  196. comment "AC97 GPIO expanders:"
  197. config GPIO_UCB1400
  198. bool "Philips UCB1400 GPIO"
  199. depends on UCB1400_CORE
  200. help
  201. This enables support for the Philips UCB1400 GPIO pins.
  202. The UCB1400 is an AC97 audio codec.
  203. To compile this driver as a module, choose M here: the
  204. module will be called ucb1400_gpio.
  205. endif