Kconfig 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307
  1. #
  2. # Touchscreen driver configuration
  3. #
  4. menuconfig INPUT_TOUCHSCREEN
  5. bool "Touchscreens"
  6. help
  7. Say Y here, and a list of supported touchscreens will be displayed.
  8. This option doesn't affect the kernel.
  9. If unsure, say Y.
  10. if INPUT_TOUCHSCREEN
  11. config TOUCHSCREEN_ADS7846
  12. tristate "ADS7846/TSC2046 and ADS7843 based touchscreens"
  13. depends on SPI_MASTER
  14. depends on HWMON = n || HWMON
  15. help
  16. Say Y here if you have a touchscreen interface using the
  17. ADS7846/TSC2046 or ADS7843 controller, and your board-specific
  18. setup code includes that in its table of SPI devices.
  19. If HWMON is selected, and the driver is told the reference voltage
  20. on your board, you will also get hwmon interfaces for the voltage
  21. (and on ads7846/tsc2046, temperature) sensors of this chip.
  22. If unsure, say N (but it's safe to say "Y").
  23. To compile this driver as a module, choose M here: the
  24. module will be called ads7846.
  25. config TOUCHSCREEN_BITSY
  26. tristate "Compaq iPAQ H3600 (Bitsy) touchscreen"
  27. depends on SA1100_BITSY
  28. select SERIO
  29. help
  30. Say Y here if you have the h3600 (Bitsy) touchscreen.
  31. If unsure, say N.
  32. To compile this driver as a module, choose M here: the
  33. module will be called h3600_ts_input.
  34. config TOUCHSCREEN_CORGI
  35. tristate "SharpSL (Corgi and Spitz series) touchscreen driver"
  36. depends on PXA_SHARPSL
  37. default y
  38. help
  39. Say Y here to enable the driver for the touchscreen on the
  40. Sharp SL-C7xx and SL-Cxx00 series of PDAs.
  41. If unsure, say N.
  42. To compile this driver as a module, choose M here: the
  43. module will be called corgi_ts.
  44. config TOUCHSCREEN_FUJITSU
  45. tristate "Fujitsu serial touchscreen"
  46. select SERIO
  47. help
  48. Say Y here if you have the Fujitsu touchscreen (such as one
  49. installed in Lifebook P series laptop) connected to your
  50. system.
  51. If unsure, say N.
  52. To compile this driver as a module, choose M here: the
  53. module will be called fujitsu-ts.
  54. config TOUCHSCREEN_GUNZE
  55. tristate "Gunze AHL-51S touchscreen"
  56. select SERIO
  57. help
  58. Say Y here if you have the Gunze AHL-51 touchscreen connected to
  59. your system.
  60. If unsure, say N.
  61. To compile this driver as a module, choose M here: the
  62. module will be called gunze.
  63. config TOUCHSCREEN_ELO
  64. tristate "Elo serial touchscreens"
  65. select SERIO
  66. help
  67. Say Y here if you have an Elo serial touchscreen connected to
  68. your system.
  69. If unsure, say N.
  70. To compile this driver as a module, choose M here: the
  71. module will be called elo.
  72. config TOUCHSCREEN_MTOUCH
  73. tristate "MicroTouch serial touchscreens"
  74. select SERIO
  75. help
  76. Say Y here if you have a MicroTouch (3M) serial touchscreen connected to
  77. your system.
  78. If unsure, say N.
  79. To compile this driver as a module, choose M here: the
  80. module will be called mtouch.
  81. config TOUCHSCREEN_MK712
  82. tristate "ICS MicroClock MK712 touchscreen"
  83. help
  84. Say Y here if you have the ICS MicroClock MK712 touchscreen
  85. controller chip in your system.
  86. If unsure, say N.
  87. To compile this driver as a module, choose M here: the
  88. module will be called mk712.
  89. config TOUCHSCREEN_HP600
  90. tristate "HP Jornada 6xx touchscreen"
  91. depends on SH_HP6XX && SH_ADC
  92. help
  93. Say Y here if you have a HP Jornada 620/660/680/690 and want to
  94. support the built-in touchscreen.
  95. To compile this driver as a module, choose M here: the
  96. module will be called hp680_ts_input.
  97. config TOUCHSCREEN_HP7XX
  98. tristate "HP Jornada 7xx touchscreen"
  99. depends on SA1100_JORNADA720_SSP
  100. help
  101. Say Y here if you have a HP Jornada 710/720/728 and want
  102. to support the built-in touchscreen.
  103. To compile this driver as a module, choose M here: the
  104. module will be called jornada720_ts.
  105. config TOUCHSCREEN_PENMOUNT
  106. tristate "Penmount serial touchscreen"
  107. select SERIO
  108. help
  109. Say Y here if you have a Penmount serial touchscreen connected to
  110. your system.
  111. If unsure, say N.
  112. To compile this driver as a module, choose M here: the
  113. module will be called penmount.
  114. config TOUCHSCREEN_TOUCHRIGHT
  115. tristate "Touchright serial touchscreen"
  116. select SERIO
  117. help
  118. Say Y here if you have a Touchright serial touchscreen connected to
  119. your system.
  120. If unsure, say N.
  121. To compile this driver as a module, choose M here: the
  122. module will be called touchright.
  123. config TOUCHSCREEN_TOUCHWIN
  124. tristate "Touchwin serial touchscreen"
  125. select SERIO
  126. help
  127. Say Y here if you have a Touchwin serial touchscreen connected to
  128. your system.
  129. If unsure, say N.
  130. To compile this driver as a module, choose M here: the
  131. module will be called touchwin.
  132. config TOUCHSCREEN_UCB1400
  133. tristate "Philips UCB1400 touchscreen"
  134. select AC97_BUS
  135. help
  136. This enables support for the Philips UCB1400 touchscreen interface.
  137. The UCB1400 is an AC97 audio codec. The touchscreen interface
  138. will be initialized only after the ALSA subsystem has been
  139. brought up and the UCB1400 detected. You therefore have to
  140. configure ALSA support as well (either built-in or modular,
  141. independently of whether this driver is itself built-in or
  142. modular) for this driver to work.
  143. To compile this driver as a module, choose M here: the
  144. module will be called ucb1400_ts.
  145. config TOUCHSCREEN_WM97XX
  146. tristate "Support for WM97xx AC97 touchscreen controllers"
  147. depends on AC97_BUS
  148. help
  149. Say Y here if you have a Wolfson Microelectronics WM97xx
  150. touchscreen connected to your system. Note that this option
  151. only enables core driver, you will also need to select
  152. support for appropriate chip below.
  153. If unsure, say N.
  154. To compile this driver as a module, choose M here: the
  155. module will be called wm97xx-ts.
  156. config TOUCHSCREEN_WM9705
  157. bool "WM9705 Touchscreen interface support"
  158. depends on TOUCHSCREEN_WM97XX
  159. help
  160. Say Y here if you have a Wolfson Microelectronics WM9705
  161. touchscreen controller connected to your system.
  162. If unsure, say N.
  163. config TOUCHSCREEN_WM9712
  164. bool "WM9712 Touchscreen interface support"
  165. depends on TOUCHSCREEN_WM97XX
  166. help
  167. Say Y here if you have a Wolfson Microelectronics WM9712
  168. touchscreen controller connected to your system.
  169. If unsure, say N.
  170. config TOUCHSCREEN_WM9713
  171. bool "WM9713 Touchscreen interface support"
  172. depends on TOUCHSCREEN_WM97XX
  173. help
  174. Say Y here if you have a Wolfson Microelectronics WM9713 touchscreen
  175. controller connected to your system.
  176. If unsure, say N.
  177. config TOUCHSCREEN_USB_COMPOSITE
  178. tristate "USB Touchscreen Driver"
  179. depends on USB_ARCH_HAS_HCD
  180. select USB
  181. help
  182. USB Touchscreen driver for:
  183. - eGalax Touchkit USB (also includes eTurboTouch CT-410/510/700)
  184. - PanJit TouchSet USB
  185. - 3M MicroTouch USB (EX II series)
  186. - ITM
  187. - some other eTurboTouch
  188. - Gunze AHL61
  189. - DMC TSC-10/25
  190. - IRTOUCHSYSTEMS/UNITOP
  191. - IdealTEK URTC1000
  192. - GoTop Super_Q2/GogoPen/PenPower tablets
  193. Have a look at <http://linux.chapter7.ch/touchkit/> for
  194. a usage description and the required user-space stuff.
  195. To compile this driver as a module, choose M here: the
  196. module will be called usbtouchscreen.
  197. config TOUCHSCREEN_USB_EGALAX
  198. default y
  199. bool "eGalax, eTurboTouch CT-410/510/700 device support" if EMBEDDED
  200. depends on TOUCHSCREEN_USB_COMPOSITE
  201. config TOUCHSCREEN_USB_PANJIT
  202. default y
  203. bool "PanJit device support" if EMBEDDED
  204. depends on TOUCHSCREEN_USB_COMPOSITE
  205. config TOUCHSCREEN_USB_3M
  206. default y
  207. bool "3M/Microtouch EX II series device support" if EMBEDDED
  208. depends on TOUCHSCREEN_USB_COMPOSITE
  209. config TOUCHSCREEN_USB_ITM
  210. default y
  211. bool "ITM device support" if EMBEDDED
  212. depends on TOUCHSCREEN_USB_COMPOSITE
  213. config TOUCHSCREEN_USB_ETURBO
  214. default y
  215. bool "eTurboTouch (non-eGalax compatible) device support" if EMBEDDED
  216. depends on TOUCHSCREEN_USB_COMPOSITE
  217. config TOUCHSCREEN_USB_GUNZE
  218. default y
  219. bool "Gunze AHL61 device support" if EMBEDDED
  220. depends on TOUCHSCREEN_USB_COMPOSITE
  221. config TOUCHSCREEN_USB_DMC_TSC10
  222. default y
  223. bool "DMC TSC-10/25 device support" if EMBEDDED
  224. depends on TOUCHSCREEN_USB_COMPOSITE
  225. config TOUCHSCREEN_USB_IRTOUCH
  226. default y
  227. bool "IRTOUCHSYSTEMS/UNITOP device support" if EMBEDDED
  228. depends on TOUCHSCREEN_USB_COMPOSITE
  229. config TOUCHSCREEN_USB_IDEALTEK
  230. default y
  231. bool "IdealTEK URTC1000 device support" if EMBEDDED
  232. depends on TOUCHSCREEN_USB_COMPOSITE
  233. config TOUCHSCREEN_USB_GENERAL_TOUCH
  234. default y
  235. bool "GeneralTouch Touchscreen device support" if EMBEDDED
  236. depends on TOUCHSCREEN_USB_COMPOSITE
  237. config TOUCHSCREEN_USB_GOTOP
  238. default y
  239. bool "GoTop Super_Q2/GogoPen/PenPower tablet device support" if EMBEDDED
  240. depends on TOUCHSCREEN_USB_COMPOSITE
  241. endif