Kconfig 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580
  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_AD7877
  26. tristate "AD7877 based touchscreens"
  27. depends on SPI_MASTER
  28. help
  29. Say Y here if you have a touchscreen interface using the
  30. AD7877 controller, and your board-specific initialization
  31. code includes that in its table of SPI devices.
  32. If unsure, say N (but it's safe to say "Y").
  33. To compile this driver as a module, choose M here: the
  34. module will be called ad7877.
  35. config TOUCHSCREEN_AD7879_I2C
  36. tristate "AD7879 based touchscreens: AD7879-1 I2C Interface"
  37. depends on I2C
  38. select TOUCHSCREEN_AD7879
  39. help
  40. Say Y here if you have a touchscreen interface using the
  41. AD7879-1/AD7889-1 controller, and your board-specific
  42. initialization code includes that in its table of I2C devices.
  43. If unsure, say N (but it's safe to say "Y").
  44. To compile this driver as a module, choose M here: the
  45. module will be called ad7879.
  46. config TOUCHSCREEN_AD7879_SPI
  47. tristate "AD7879 based touchscreens: AD7879 SPI Interface"
  48. depends on SPI_MASTER && TOUCHSCREEN_AD7879_I2C = n
  49. select TOUCHSCREEN_AD7879
  50. help
  51. Say Y here if you have a touchscreen interface using the
  52. AD7879/AD7889 controller, and your board-specific initialization
  53. code includes that in its table of SPI devices.
  54. If unsure, say N (but it's safe to say "Y").
  55. To compile this driver as a module, choose M here: the
  56. module will be called ad7879.
  57. config TOUCHSCREEN_AD7879
  58. tristate
  59. default n
  60. config TOUCHSCREEN_BITSY
  61. tristate "Compaq iPAQ H3600 (Bitsy) touchscreen"
  62. depends on SA1100_BITSY
  63. select SERIO
  64. help
  65. Say Y here if you have the h3600 (Bitsy) touchscreen.
  66. If unsure, say N.
  67. To compile this driver as a module, choose M here: the
  68. module will be called h3600_ts_input.
  69. config TOUCHSCREEN_CORGI
  70. tristate "SharpSL (Corgi and Spitz series) touchscreen driver (DEPRECATED)"
  71. depends on PXA_SHARPSL
  72. select CORGI_SSP_DEPRECATED
  73. default y
  74. help
  75. Say Y here to enable the driver for the touchscreen on the
  76. Sharp SL-C7xx and SL-Cxx00 series of PDAs.
  77. If unsure, say N.
  78. To compile this driver as a module, choose M here: the
  79. module will be called corgi_ts.
  80. NOTE: this driver is deprecated, try enable SPI and generic
  81. ADS7846-based touchscreen driver.
  82. config TOUCHSCREEN_DA9034
  83. tristate "Touchscreen support for Dialog Semiconductor DA9034"
  84. depends on PMIC_DA903X
  85. default y
  86. help
  87. Say Y here to enable the support for the touchscreen found
  88. on Dialog Semiconductor DA9034 PMIC.
  89. config TOUCHSCREEN_DYNAPRO
  90. tristate "Dynapro serial touchscreen"
  91. select SERIO
  92. help
  93. Say Y here if you have a Dynapro serial touchscreen connected to
  94. your system.
  95. If unsure, say N.
  96. To compile this driver as a module, choose M here: the
  97. module will be called dynapro.
  98. config TOUCHSCREEN_EETI
  99. tristate "EETI touchscreen panel support"
  100. depends on I2C
  101. help
  102. Say Y here to enable support for I2C connected EETI touch panels.
  103. To compile this driver as a module, choose M here: the
  104. module will be called eeti_ts.
  105. config TOUCHSCREEN_FUJITSU
  106. tristate "Fujitsu serial touchscreen"
  107. select SERIO
  108. help
  109. Say Y here if you have the Fujitsu touchscreen (such as one
  110. installed in Lifebook P series laptop) connected to your
  111. system.
  112. If unsure, say N.
  113. To compile this driver as a module, choose M here: the
  114. module will be called fujitsu-ts.
  115. config TOUCHSCREEN_S3C2410
  116. tristate "Samsung S3C2410 touchscreen input driver"
  117. depends on ARCH_S3C2410
  118. select S3C24XX_ADC
  119. help
  120. Say Y here if you have the s3c2410 touchscreen.
  121. If unsure, say N.
  122. To compile this driver as a module, choose M here: the
  123. module will be called s3c2410_ts.
  124. config TOUCHSCREEN_GUNZE
  125. tristate "Gunze AHL-51S touchscreen"
  126. select SERIO
  127. help
  128. Say Y here if you have the Gunze AHL-51 touchscreen connected to
  129. your system.
  130. If unsure, say N.
  131. To compile this driver as a module, choose M here: the
  132. module will be called gunze.
  133. config TOUCHSCREEN_ELO
  134. tristate "Elo serial touchscreens"
  135. select SERIO
  136. help
  137. Say Y here if you have an Elo serial touchscreen connected to
  138. your system.
  139. If unsure, say N.
  140. To compile this driver as a module, choose M here: the
  141. module will be called elo.
  142. config TOUCHSCREEN_WACOM_W8001
  143. tristate "Wacom W8001 penabled serial touchscreen"
  144. select SERIO
  145. help
  146. Say Y here if you have an Wacom W8001 penabled serial touchscreen
  147. connected to your system.
  148. If unsure, say N.
  149. To compile this driver as a module, choose M here: the
  150. module will be called wacom_w8001.
  151. config TOUCHSCREEN_MCS5000
  152. tristate "MELFAS MCS-5000 touchscreen"
  153. depends on I2C
  154. help
  155. Say Y here if you have the MELFAS MCS-5000 touchscreen controller
  156. chip in your system.
  157. If unsure, say N.
  158. To compile this driver as a module, choose M here: the
  159. module will be called mcs5000_ts.
  160. config TOUCHSCREEN_MTOUCH
  161. tristate "MicroTouch serial touchscreens"
  162. select SERIO
  163. help
  164. Say Y here if you have a MicroTouch (3M) serial touchscreen connected to
  165. your system.
  166. If unsure, say N.
  167. To compile this driver as a module, choose M here: the
  168. module will be called mtouch.
  169. config TOUCHSCREEN_INEXIO
  170. tristate "iNexio serial touchscreens"
  171. select SERIO
  172. help
  173. Say Y here if you have an iNexio serial touchscreen connected to
  174. your system.
  175. If unsure, say N.
  176. To compile this driver as a module, choose M here: the
  177. module will be called inexio.
  178. config TOUCHSCREEN_MK712
  179. tristate "ICS MicroClock MK712 touchscreen"
  180. help
  181. Say Y here if you have the ICS MicroClock MK712 touchscreen
  182. controller chip in your system.
  183. If unsure, say N.
  184. To compile this driver as a module, choose M here: the
  185. module will be called mk712.
  186. config TOUCHSCREEN_HP600
  187. tristate "HP Jornada 6xx touchscreen"
  188. depends on SH_HP6XX && SH_ADC
  189. help
  190. Say Y here if you have a HP Jornada 620/660/680/690 and want to
  191. support the built-in touchscreen.
  192. To compile this driver as a module, choose M here: the
  193. module will be called hp680_ts_input.
  194. config TOUCHSCREEN_HP7XX
  195. tristate "HP Jornada 7xx touchscreen"
  196. depends on SA1100_JORNADA720_SSP
  197. help
  198. Say Y here if you have a HP Jornada 710/720/728 and want
  199. to support the built-in touchscreen.
  200. To compile this driver as a module, choose M here: the
  201. module will be called jornada720_ts.
  202. config TOUCHSCREEN_HTCPEN
  203. tristate "HTC Shift X9500 touchscreen"
  204. depends on ISA
  205. help
  206. Say Y here if you have an HTC Shift UMPC also known as HTC X9500
  207. Clio / Shangrila and want to support the built-in touchscreen.
  208. If unsure, say N.
  209. To compile this driver as a module, choose M here: the
  210. module will be called htcpen.
  211. config TOUCHSCREEN_PENMOUNT
  212. tristate "Penmount serial touchscreen"
  213. select SERIO
  214. help
  215. Say Y here if you have a Penmount serial touchscreen connected to
  216. your system.
  217. If unsure, say N.
  218. To compile this driver as a module, choose M here: the
  219. module will be called penmount.
  220. config TOUCHSCREEN_MIGOR
  221. tristate "Renesas MIGO-R touchscreen"
  222. depends on SH_MIGOR && I2C
  223. help
  224. Say Y here to enable MIGO-R touchscreen support.
  225. If unsure, say N.
  226. To compile this driver as a module, choose M here: the
  227. module will be called migor_ts.
  228. config TOUCHSCREEN_TOUCHRIGHT
  229. tristate "Touchright serial touchscreen"
  230. select SERIO
  231. help
  232. Say Y here if you have a Touchright serial touchscreen connected to
  233. your system.
  234. If unsure, say N.
  235. To compile this driver as a module, choose M here: the
  236. module will be called touchright.
  237. config TOUCHSCREEN_TOUCHWIN
  238. tristate "Touchwin serial touchscreen"
  239. select SERIO
  240. help
  241. Say Y here if you have a Touchwin serial touchscreen connected to
  242. your system.
  243. If unsure, say N.
  244. To compile this driver as a module, choose M here: the
  245. module will be called touchwin.
  246. config TOUCHSCREEN_ATMEL_TSADCC
  247. tristate "Atmel Touchscreen Interface"
  248. depends on ARCH_AT91SAM9RL || ARCH_AT91SAM9G45
  249. help
  250. Say Y here if you have a 4-wire touchscreen connected to the
  251. ADC Controller on your Atmel SoC (such as the AT91SAM9RL).
  252. If unsure, say N.
  253. To compile this driver as a module, choose M here: the
  254. module will be called atmel_tsadcc.
  255. config TOUCHSCREEN_UCB1400
  256. tristate "Philips UCB1400 touchscreen"
  257. depends on AC97_BUS
  258. depends on UCB1400_CORE
  259. help
  260. This enables support for the Philips UCB1400 touchscreen interface.
  261. The UCB1400 is an AC97 audio codec. The touchscreen interface
  262. will be initialized only after the ALSA subsystem has been
  263. brought up and the UCB1400 detected. You therefore have to
  264. configure ALSA support as well (either built-in or modular,
  265. independently of whether this driver is itself built-in or
  266. modular) for this driver to work.
  267. To compile this driver as a module, choose M here: the
  268. module will be called ucb1400_ts.
  269. config TOUCHSCREEN_WM97XX
  270. tristate "Support for WM97xx AC97 touchscreen controllers"
  271. depends on AC97_BUS
  272. help
  273. Say Y here if you have a Wolfson Microelectronics WM97xx
  274. touchscreen connected to your system. Note that this option
  275. only enables core driver, you will also need to select
  276. support for appropriate chip below.
  277. If unsure, say N.
  278. To compile this driver as a module, choose M here: the
  279. module will be called wm97xx-ts.
  280. config TOUCHSCREEN_WM9705
  281. bool "WM9705 Touchscreen interface support"
  282. depends on TOUCHSCREEN_WM97XX
  283. default y
  284. help
  285. Say Y here to enable support for the Wolfson Microelectronics
  286. WM9705 touchscreen controller.
  287. config TOUCHSCREEN_WM9712
  288. bool "WM9712 Touchscreen interface support"
  289. depends on TOUCHSCREEN_WM97XX
  290. default y
  291. help
  292. Say Y here to enable support for the Wolfson Microelectronics
  293. WM9712 touchscreen controller.
  294. config TOUCHSCREEN_WM9713
  295. bool "WM9713 Touchscreen interface support"
  296. depends on TOUCHSCREEN_WM97XX
  297. default y
  298. help
  299. Say Y here to enable support for the Wolfson Microelectronics
  300. WM9713 touchscreen controller.
  301. config TOUCHSCREEN_WM97XX_ATMEL
  302. tristate "WM97xx Atmel accelerated touch"
  303. depends on TOUCHSCREEN_WM97XX && (AVR32 || ARCH_AT91)
  304. help
  305. Say Y here for support for streaming mode with WM97xx touchscreens
  306. on Atmel AT91 or AVR32 systems with an AC97C module.
  307. Be aware that this will use channel B in the controller for
  308. streaming data, this must not conflict with other AC97C drivers.
  309. If unsure, say N.
  310. To compile this driver as a module, choose M here: the module will
  311. be called atmel-wm97xx.
  312. config TOUCHSCREEN_WM97XX_MAINSTONE
  313. tristate "WM97xx Mainstone/Palm accelerated touch"
  314. depends on TOUCHSCREEN_WM97XX && ARCH_PXA
  315. help
  316. Say Y here for support for streaming mode with WM97xx touchscreens
  317. on Mainstone, Palm Tungsten T5, TX and LifeDrive systems.
  318. If unsure, say N.
  319. To compile this driver as a module, choose M here: the
  320. module will be called mainstone-wm97xx.
  321. config TOUCHSCREEN_WM97XX_ZYLONITE
  322. tristate "Zylonite accelerated touch"
  323. depends on TOUCHSCREEN_WM97XX && MACH_ZYLONITE
  324. select TOUCHSCREEN_WM9713
  325. help
  326. Say Y here for support for streaming mode with the touchscreen
  327. on Zylonite systems.
  328. If unsure, say N.
  329. To compile this driver as a module, choose M here: the
  330. module will be called zylonite-wm97xx.
  331. config TOUCHSCREEN_USB_COMPOSITE
  332. tristate "USB Touchscreen Driver"
  333. depends on USB_ARCH_HAS_HCD
  334. select USB
  335. help
  336. USB Touchscreen driver for:
  337. - eGalax Touchkit USB (also includes eTurboTouch CT-410/510/700)
  338. - PanJit TouchSet USB
  339. - 3M MicroTouch USB (EX II series)
  340. - ITM
  341. - some other eTurboTouch
  342. - Gunze AHL61
  343. - DMC TSC-10/25
  344. - IRTOUCHSYSTEMS/UNITOP
  345. - IdealTEK URTC1000
  346. - GoTop Super_Q2/GogoPen/PenPower tablets
  347. - JASTEC USB Touch Controller/DigiTech DTR-02U
  348. - Zytronic controllers
  349. Have a look at <http://linux.chapter7.ch/touchkit/> for
  350. a usage description and the required user-space stuff.
  351. To compile this driver as a module, choose M here: the
  352. module will be called usbtouchscreen.
  353. config TOUCHSCREEN_MC13783
  354. tristate "Freescale MC13783 touchscreen input driver"
  355. depends on MFD_MC13783
  356. help
  357. Say Y here if you have an Freescale MC13783 PMIC on your
  358. board and want to use its touchscreen
  359. If unsure, say N.
  360. To compile this driver as a module, choose M here: the
  361. module will be called mc13783_ts.
  362. config TOUCHSCREEN_USB_EGALAX
  363. default y
  364. bool "eGalax, eTurboTouch CT-410/510/700 device support" if EMBEDDED
  365. depends on TOUCHSCREEN_USB_COMPOSITE
  366. config TOUCHSCREEN_USB_PANJIT
  367. default y
  368. bool "PanJit device support" if EMBEDDED
  369. depends on TOUCHSCREEN_USB_COMPOSITE
  370. config TOUCHSCREEN_USB_3M
  371. default y
  372. bool "3M/Microtouch EX II series device support" if EMBEDDED
  373. depends on TOUCHSCREEN_USB_COMPOSITE
  374. config TOUCHSCREEN_USB_ITM
  375. default y
  376. bool "ITM device support" if EMBEDDED
  377. depends on TOUCHSCREEN_USB_COMPOSITE
  378. config TOUCHSCREEN_USB_ETURBO
  379. default y
  380. bool "eTurboTouch (non-eGalax compatible) device support" if EMBEDDED
  381. depends on TOUCHSCREEN_USB_COMPOSITE
  382. config TOUCHSCREEN_USB_GUNZE
  383. default y
  384. bool "Gunze AHL61 device support" if EMBEDDED
  385. depends on TOUCHSCREEN_USB_COMPOSITE
  386. config TOUCHSCREEN_USB_DMC_TSC10
  387. default y
  388. bool "DMC TSC-10/25 device support" if EMBEDDED
  389. depends on TOUCHSCREEN_USB_COMPOSITE
  390. config TOUCHSCREEN_USB_IRTOUCH
  391. default y
  392. bool "IRTOUCHSYSTEMS/UNITOP device support" if EMBEDDED
  393. depends on TOUCHSCREEN_USB_COMPOSITE
  394. config TOUCHSCREEN_USB_IDEALTEK
  395. default y
  396. bool "IdealTEK URTC1000 device support" if EMBEDDED
  397. depends on TOUCHSCREEN_USB_COMPOSITE
  398. config TOUCHSCREEN_USB_GENERAL_TOUCH
  399. default y
  400. bool "GeneralTouch Touchscreen device support" if EMBEDDED
  401. depends on TOUCHSCREEN_USB_COMPOSITE
  402. config TOUCHSCREEN_USB_GOTOP
  403. default y
  404. bool "GoTop Super_Q2/GogoPen/PenPower tablet device support" if EMBEDDED
  405. depends on TOUCHSCREEN_USB_COMPOSITE
  406. config TOUCHSCREEN_USB_JASTEC
  407. default y
  408. bool "JASTEC/DigiTech DTR-02U USB touch controller device support" if EMBEDDED
  409. depends on TOUCHSCREEN_USB_COMPOSITE
  410. config TOUCHSCREEN_USB_E2I
  411. default y
  412. bool "e2i Touchscreen controller (e.g. from Mimo 740)"
  413. depends on TOUCHSCREEN_USB_COMPOSITE
  414. config TOUCHSCREEN_USB_ZYTRONIC
  415. default y
  416. bool "Zytronic controller" if EMBEDDED
  417. depends on TOUCHSCREEN_USB_COMPOSITE
  418. config TOUCHSCREEN_USB_ETT_TC5UH
  419. default y
  420. bool "ET&T TC5UH touchscreen controler support" if EMBEDDED
  421. depends on TOUCHSCREEN_USB_COMPOSITE
  422. config TOUCHSCREEN_TOUCHIT213
  423. tristate "Sahara TouchIT-213 touchscreen"
  424. select SERIO
  425. help
  426. Say Y here if you have a Sahara TouchIT-213 Tablet PC.
  427. If unsure, say N.
  428. To compile this driver as a module, choose M here: the
  429. module will be called touchit213.
  430. config TOUCHSCREEN_TSC2007
  431. tristate "TSC2007 based touchscreens"
  432. depends on I2C
  433. help
  434. Say Y here if you have a TSC2007 based touchscreen.
  435. If unsure, say N.
  436. To compile this driver as a module, choose M here: the
  437. module will be called tsc2007.
  438. config TOUCHSCREEN_W90X900
  439. tristate "W90P910 touchscreen driver"
  440. depends on HAVE_CLK
  441. help
  442. Say Y here if you have a W90P910 based touchscreen.
  443. To compile this driver as a module, choose M here: the
  444. module will be called w90p910_ts.
  445. config TOUCHSCREEN_PCAP
  446. tristate "Motorola PCAP touchscreen"
  447. depends on EZX_PCAP
  448. help
  449. Say Y here if you have a Motorola EZX telephone and
  450. want to enable support for the built-in touchscreen.
  451. To compile this driver as a module, choose M here: the
  452. module will be called pcap_ts.
  453. endif