Kconfig 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860
  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_88PM860X
  12. tristate "Marvell 88PM860x touchscreen"
  13. depends on MFD_88PM860X
  14. help
  15. Say Y here if you have a 88PM860x PMIC and want to enable
  16. support for the built-in touchscreen.
  17. If unsure, say N.
  18. To compile this driver as a module, choose M here: the
  19. module will be called 88pm860x-ts.
  20. config TOUCHSCREEN_ADS7846
  21. tristate "ADS7846/TSC2046/AD7873 and AD(S)7843 based touchscreens"
  22. depends on SPI_MASTER
  23. depends on HWMON = n || HWMON
  24. help
  25. Say Y here if you have a touchscreen interface using the
  26. ADS7846/TSC2046/AD7873 or ADS7843/AD7843 controller,
  27. and your board-specific setup code includes that in its
  28. table of SPI devices.
  29. If HWMON is selected, and the driver is told the reference voltage
  30. on your board, you will also get hwmon interfaces for the voltage
  31. (and on ads7846/tsc2046/ad7873, temperature) sensors of this chip.
  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 ads7846.
  35. config TOUCHSCREEN_AD7877
  36. tristate "AD7877 based touchscreens"
  37. depends on SPI_MASTER
  38. help
  39. Say Y here if you have a touchscreen interface using the
  40. AD7877 controller, and your board-specific initialization
  41. code includes that in its table of SPI devices.
  42. If unsure, say N (but it's safe to say "Y").
  43. To compile this driver as a module, choose M here: the
  44. module will be called ad7877.
  45. config TOUCHSCREEN_AD7879
  46. tristate "Analog Devices AD7879-1/AD7889-1 touchscreen interface"
  47. help
  48. Say Y here if you want to support a touchscreen interface using
  49. the AD7879-1/AD7889-1 controller.
  50. You should select a bus connection too.
  51. To compile this driver as a module, choose M here: the
  52. module will be called ad7879.
  53. config TOUCHSCREEN_AD7879_I2C
  54. tristate "support I2C bus connection"
  55. depends on TOUCHSCREEN_AD7879 && I2C
  56. help
  57. Say Y here if you have AD7879-1/AD7889-1 hooked to an I2C bus.
  58. To compile this driver as a module, choose M here: the
  59. module will be called ad7879-i2c.
  60. config TOUCHSCREEN_AD7879_SPI
  61. tristate "support SPI bus connection"
  62. depends on TOUCHSCREEN_AD7879 && SPI_MASTER
  63. help
  64. Say Y here if you have AD7879-1/AD7889-1 hooked to a SPI bus.
  65. If unsure, say N (but it's safe to say "Y").
  66. To compile this driver as a module, choose M here: the
  67. module will be called ad7879-spi.
  68. config TOUCHSCREEN_ATMEL_MXT
  69. tristate "Atmel mXT I2C Touchscreen"
  70. depends on I2C
  71. help
  72. Say Y here if you have Atmel mXT series I2C touchscreen,
  73. such as AT42QT602240/ATMXT224, connected to your system.
  74. If unsure, say N.
  75. To compile this driver as a module, choose M here: the
  76. module will be called atmel_mxt_ts.
  77. config TOUCHSCREEN_AUO_PIXCIR
  78. tristate "AUO in-cell touchscreen using Pixcir ICs"
  79. depends on I2C
  80. depends on GPIOLIB
  81. help
  82. Say Y here if you have a AUO display with in-cell touchscreen
  83. using Pixcir ICs.
  84. If unsure, say N.
  85. To compile this driver as a module, choose M here: the
  86. module will be called auo-pixcir-ts.
  87. config TOUCHSCREEN_BITSY
  88. tristate "Compaq iPAQ H3600 (Bitsy) touchscreen"
  89. depends on SA1100_BITSY
  90. select SERIO
  91. help
  92. Say Y here if you have the h3600 (Bitsy) touchscreen.
  93. If unsure, say N.
  94. To compile this driver as a module, choose M here: the
  95. module will be called h3600_ts_input.
  96. config TOUCHSCREEN_BU21013
  97. tristate "BU21013 based touch panel controllers"
  98. depends on I2C
  99. help
  100. Say Y here if you have a bu21013 touchscreen connected to
  101. your system.
  102. If unsure, say N.
  103. To compile this driver as a module, choose M here: the
  104. module will be called bu21013_ts.
  105. config TOUCHSCREEN_CY8CTMG110
  106. tristate "cy8ctmg110 touchscreen"
  107. depends on I2C
  108. depends on GPIOLIB
  109. help
  110. Say Y here if you have a cy8ctmg110 capacitive touchscreen on
  111. an AAVA device.
  112. If unsure, say N.
  113. To compile this driver as a module, choose M here: the
  114. module will be called cy8ctmg110_ts.
  115. config TOUCHSCREEN_CYTTSP_CORE
  116. tristate "Cypress TTSP touchscreen"
  117. help
  118. Say Y here if you have a touchscreen using controller from
  119. the Cypress TrueTouch(tm) Standard Product family connected
  120. to your system. You will also need to select appropriate
  121. bus connection below.
  122. If unsure, say N.
  123. To compile this driver as a module, choose M here: the
  124. module will be called cyttsp_core.
  125. config TOUCHSCREEN_CYTTSP_I2C
  126. tristate "support I2C bus connection"
  127. depends on TOUCHSCREEN_CYTTSP_CORE && I2C
  128. help
  129. Say Y here if the touchscreen is connected via I2C bus.
  130. To compile this driver as a module, choose M here: the
  131. module will be called cyttsp_i2c.
  132. config TOUCHSCREEN_CYTTSP_SPI
  133. tristate "support SPI bus connection"
  134. depends on TOUCHSCREEN_CYTTSP_CORE && SPI_MASTER
  135. help
  136. Say Y here if the touchscreen is connected via SPI bus.
  137. To compile this driver as a module, choose M here: the
  138. module will be called cyttsp_spi.
  139. config TOUCHSCREEN_DA9034
  140. tristate "Touchscreen support for Dialog Semiconductor DA9034"
  141. depends on PMIC_DA903X
  142. default y
  143. help
  144. Say Y here to enable the support for the touchscreen found
  145. on Dialog Semiconductor DA9034 PMIC.
  146. config TOUCHSCREEN_DYNAPRO
  147. tristate "Dynapro serial touchscreen"
  148. select SERIO
  149. help
  150. Say Y here if you have a Dynapro serial touchscreen connected to
  151. your system.
  152. If unsure, say N.
  153. To compile this driver as a module, choose M here: the
  154. module will be called dynapro.
  155. config TOUCHSCREEN_HAMPSHIRE
  156. tristate "Hampshire serial touchscreen"
  157. select SERIO
  158. help
  159. Say Y here if you have a Hampshire serial touchscreen connected to
  160. your system.
  161. If unsure, say N.
  162. To compile this driver as a module, choose M here: the
  163. module will be called hampshire.
  164. config TOUCHSCREEN_EETI
  165. tristate "EETI touchscreen panel support"
  166. depends on I2C
  167. help
  168. Say Y here to enable support for I2C connected EETI touch panels.
  169. To compile this driver as a module, choose M here: the
  170. module will be called eeti_ts.
  171. config TOUCHSCREEN_EGALAX
  172. tristate "EETI eGalax multi-touch panel support"
  173. depends on I2C
  174. help
  175. Say Y here to enable support for I2C connected EETI
  176. eGalax multi-touch panels.
  177. To compile this driver as a module, choose M here: the
  178. module will be called egalax_ts.
  179. config TOUCHSCREEN_FUJITSU
  180. tristate "Fujitsu serial touchscreen"
  181. select SERIO
  182. help
  183. Say Y here if you have the Fujitsu touchscreen (such as one
  184. installed in Lifebook P series laptop) connected to your
  185. system.
  186. If unsure, say N.
  187. To compile this driver as a module, choose M here: the
  188. module will be called fujitsu-ts.
  189. config TOUCHSCREEN_ILI210X
  190. tristate "Ilitek ILI210X based touchscreen"
  191. depends on I2C
  192. help
  193. Say Y here if you have a ILI210X based touchscreen
  194. controller. This driver supports models ILI2102,
  195. ILI2102s, ILI2103, ILI2103s and ILI2105.
  196. Such kind of chipsets can be found in Amazon Kindle Fire
  197. touchscreens.
  198. If unsure, say N.
  199. To compile this driver as a module, choose M here: the
  200. module will be called ili210x.
  201. config TOUCHSCREEN_S3C2410
  202. tristate "Samsung S3C2410/generic touchscreen input driver"
  203. depends on ARCH_S3C2410 || SAMSUNG_DEV_TS
  204. select S3C_ADC
  205. help
  206. Say Y here if you have the s3c2410 touchscreen.
  207. If unsure, say N.
  208. To compile this driver as a module, choose M here: the
  209. module will be called s3c2410_ts.
  210. config TOUCHSCREEN_GUNZE
  211. tristate "Gunze AHL-51S touchscreen"
  212. select SERIO
  213. help
  214. Say Y here if you have the Gunze AHL-51 touchscreen connected to
  215. your system.
  216. If unsure, say N.
  217. To compile this driver as a module, choose M here: the
  218. module will be called gunze.
  219. config TOUCHSCREEN_ELO
  220. tristate "Elo serial touchscreens"
  221. select SERIO
  222. help
  223. Say Y here if you have an Elo serial touchscreen connected to
  224. your system.
  225. If unsure, say N.
  226. To compile this driver as a module, choose M here: the
  227. module will be called elo.
  228. config TOUCHSCREEN_WACOM_W8001
  229. tristate "Wacom W8001 penabled serial touchscreen"
  230. select SERIO
  231. help
  232. Say Y here if you have an Wacom W8001 penabled serial touchscreen
  233. connected to your system.
  234. If unsure, say N.
  235. To compile this driver as a module, choose M here: the
  236. module will be called wacom_w8001.
  237. config TOUCHSCREEN_WACOM_I2C
  238. tristate "Wacom Tablet support (I2C)"
  239. depends on I2C
  240. help
  241. Say Y here if you want to use the I2C version of the Wacom
  242. Pen Tablet.
  243. If unsure, say N.
  244. To compile this driver as a module, choose M here: the module
  245. will be called wacom_i2c.
  246. config TOUCHSCREEN_LPC32XX
  247. tristate "LPC32XX touchscreen controller"
  248. depends on ARCH_LPC32XX
  249. help
  250. Say Y here if you have a LPC32XX device and want
  251. to support the built-in touchscreen.
  252. To compile this driver as a module, choose M here: the
  253. module will be called lpc32xx_ts.
  254. config TOUCHSCREEN_MAX11801
  255. tristate "MAX11801 based touchscreens"
  256. depends on I2C
  257. help
  258. Say Y here if you have a MAX11801 based touchscreen
  259. controller.
  260. If unsure, say N.
  261. To compile this driver as a module, choose M here: the
  262. module will be called max11801_ts.
  263. config TOUCHSCREEN_MCS5000
  264. tristate "MELFAS MCS-5000 touchscreen"
  265. depends on I2C
  266. help
  267. Say Y here if you have the MELFAS MCS-5000 touchscreen controller
  268. chip in your system.
  269. If unsure, say N.
  270. To compile this driver as a module, choose M here: the
  271. module will be called mcs5000_ts.
  272. config TOUCHSCREEN_MTOUCH
  273. tristate "MicroTouch serial touchscreens"
  274. select SERIO
  275. help
  276. Say Y here if you have a MicroTouch (3M) serial touchscreen connected to
  277. your system.
  278. If unsure, say N.
  279. To compile this driver as a module, choose M here: the
  280. module will be called mtouch.
  281. config TOUCHSCREEN_INEXIO
  282. tristate "iNexio serial touchscreens"
  283. select SERIO
  284. help
  285. Say Y here if you have an iNexio serial touchscreen connected to
  286. your system.
  287. If unsure, say N.
  288. To compile this driver as a module, choose M here: the
  289. module will be called inexio.
  290. config TOUCHSCREEN_INTEL_MID
  291. tristate "Intel MID platform resistive touchscreen"
  292. depends on INTEL_SCU_IPC
  293. help
  294. Say Y here if you have a Intel MID based touchscreen in
  295. your system.
  296. If unsure, say N.
  297. To compile this driver as a module, choose M here: the
  298. module will be called intel_mid_touch.
  299. config TOUCHSCREEN_MK712
  300. tristate "ICS MicroClock MK712 touchscreen"
  301. help
  302. Say Y here if you have the ICS MicroClock MK712 touchscreen
  303. controller chip in your system.
  304. If unsure, say N.
  305. To compile this driver as a module, choose M here: the
  306. module will be called mk712.
  307. config TOUCHSCREEN_HP600
  308. tristate "HP Jornada 6xx touchscreen"
  309. depends on SH_HP6XX && SH_ADC
  310. help
  311. Say Y here if you have a HP Jornada 620/660/680/690 and want to
  312. support the built-in touchscreen.
  313. To compile this driver as a module, choose M here: the
  314. module will be called hp680_ts_input.
  315. config TOUCHSCREEN_HP7XX
  316. tristate "HP Jornada 7xx touchscreen"
  317. depends on SA1100_JORNADA720_SSP
  318. help
  319. Say Y here if you have a HP Jornada 710/720/728 and want
  320. to support the built-in touchscreen.
  321. To compile this driver as a module, choose M here: the
  322. module will be called jornada720_ts.
  323. config TOUCHSCREEN_HTCPEN
  324. tristate "HTC Shift X9500 touchscreen"
  325. depends on ISA
  326. help
  327. Say Y here if you have an HTC Shift UMPC also known as HTC X9500
  328. Clio / Shangrila and want to support the built-in touchscreen.
  329. If unsure, say N.
  330. To compile this driver as a module, choose M here: the
  331. module will be called htcpen.
  332. config TOUCHSCREEN_PENMOUNT
  333. tristate "Penmount serial touchscreen"
  334. select SERIO
  335. help
  336. Say Y here if you have a Penmount serial touchscreen connected to
  337. your system.
  338. If unsure, say N.
  339. To compile this driver as a module, choose M here: the
  340. module will be called penmount.
  341. config TOUCHSCREEN_MIGOR
  342. tristate "Renesas MIGO-R touchscreen"
  343. depends on SH_MIGOR && I2C
  344. help
  345. Say Y here to enable MIGO-R touchscreen support.
  346. If unsure, say N.
  347. To compile this driver as a module, choose M here: the
  348. module will be called migor_ts.
  349. config TOUCHSCREEN_TNETV107X
  350. tristate "TI TNETV107X touchscreen support"
  351. depends on ARCH_DAVINCI_TNETV107X
  352. help
  353. Say Y here if you want to use the TNETV107X touchscreen.
  354. To compile this driver as a module, choose M here: the
  355. module will be called tnetv107x-ts.
  356. config TOUCHSCREEN_TOUCHRIGHT
  357. tristate "Touchright serial touchscreen"
  358. select SERIO
  359. help
  360. Say Y here if you have a Touchright serial touchscreen connected to
  361. your system.
  362. If unsure, say N.
  363. To compile this driver as a module, choose M here: the
  364. module will be called touchright.
  365. config TOUCHSCREEN_TOUCHWIN
  366. tristate "Touchwin serial touchscreen"
  367. select SERIO
  368. help
  369. Say Y here if you have a Touchwin serial touchscreen connected to
  370. your system.
  371. If unsure, say N.
  372. To compile this driver as a module, choose M here: the
  373. module will be called touchwin.
  374. config TOUCHSCREEN_TI_TSCADC
  375. tristate "TI Touchscreen Interface"
  376. depends on ARCH_OMAP2PLUS
  377. help
  378. Say Y here if you have 4/5/8 wire touchscreen controller
  379. to be connected to the ADC controller on your TI AM335x SoC.
  380. If unsure, say N.
  381. To compile this driver as a module, choose M here: the
  382. module will be called ti_tscadc.
  383. config TOUCHSCREEN_ATMEL_TSADCC
  384. tristate "Atmel Touchscreen Interface"
  385. depends on ARCH_AT91SAM9RL || ARCH_AT91SAM9G45
  386. help
  387. Say Y here if you have a 4-wire touchscreen connected to the
  388. ADC Controller on your Atmel SoC (such as the AT91SAM9RL).
  389. If unsure, say N.
  390. To compile this driver as a module, choose M here: the
  391. module will be called atmel_tsadcc.
  392. config TOUCHSCREEN_UCB1400
  393. tristate "Philips UCB1400 touchscreen"
  394. depends on AC97_BUS
  395. depends on UCB1400_CORE
  396. help
  397. This enables support for the Philips UCB1400 touchscreen interface.
  398. The UCB1400 is an AC97 audio codec. The touchscreen interface
  399. will be initialized only after the ALSA subsystem has been
  400. brought up and the UCB1400 detected. You therefore have to
  401. configure ALSA support as well (either built-in or modular,
  402. independently of whether this driver is itself built-in or
  403. modular) for this driver to work.
  404. To compile this driver as a module, choose M here: the
  405. module will be called ucb1400_ts.
  406. config TOUCHSCREEN_PIXCIR
  407. tristate "PIXCIR I2C touchscreens"
  408. depends on I2C
  409. help
  410. Say Y here if you have a pixcir i2c touchscreen
  411. controller.
  412. If unsure, say N.
  413. To compile this driver as a module, choose M here: the
  414. module will be called pixcir_i2c_ts.
  415. config TOUCHSCREEN_WM831X
  416. tristate "Support for WM831x touchscreen controllers"
  417. depends on MFD_WM831X
  418. help
  419. This enables support for the touchscreen controller on the WM831x
  420. series of PMICs.
  421. To compile this driver as a module, choose M here: the
  422. module will be called wm831x-ts.
  423. config TOUCHSCREEN_WM97XX
  424. tristate "Support for WM97xx AC97 touchscreen controllers"
  425. depends on AC97_BUS
  426. help
  427. Say Y here if you have a Wolfson Microelectronics WM97xx
  428. touchscreen connected to your system. Note that this option
  429. only enables core driver, you will also need to select
  430. support for appropriate chip below.
  431. If unsure, say N.
  432. To compile this driver as a module, choose M here: the
  433. module will be called wm97xx-ts.
  434. config TOUCHSCREEN_WM9705
  435. bool "WM9705 Touchscreen interface support"
  436. depends on TOUCHSCREEN_WM97XX
  437. default y
  438. help
  439. Say Y here to enable support for the Wolfson Microelectronics
  440. WM9705 touchscreen controller.
  441. config TOUCHSCREEN_WM9712
  442. bool "WM9712 Touchscreen interface support"
  443. depends on TOUCHSCREEN_WM97XX
  444. default y
  445. help
  446. Say Y here to enable support for the Wolfson Microelectronics
  447. WM9712 touchscreen controller.
  448. config TOUCHSCREEN_WM9713
  449. bool "WM9713 Touchscreen interface support"
  450. depends on TOUCHSCREEN_WM97XX
  451. default y
  452. help
  453. Say Y here to enable support for the Wolfson Microelectronics
  454. WM9713 touchscreen controller.
  455. config TOUCHSCREEN_WM97XX_ATMEL
  456. tristate "WM97xx Atmel accelerated touch"
  457. depends on TOUCHSCREEN_WM97XX && (AVR32 || ARCH_AT91)
  458. help
  459. Say Y here for support for streaming mode with WM97xx touchscreens
  460. on Atmel AT91 or AVR32 systems with an AC97C module.
  461. Be aware that this will use channel B in the controller for
  462. streaming data, this must not conflict with other AC97C drivers.
  463. If unsure, say N.
  464. To compile this driver as a module, choose M here: the module will
  465. be called atmel-wm97xx.
  466. config TOUCHSCREEN_WM97XX_MAINSTONE
  467. tristate "WM97xx Mainstone/Palm accelerated touch"
  468. depends on TOUCHSCREEN_WM97XX && ARCH_PXA
  469. help
  470. Say Y here for support for streaming mode with WM97xx touchscreens
  471. on Mainstone, Palm Tungsten T5, TX and LifeDrive systems.
  472. If unsure, say N.
  473. To compile this driver as a module, choose M here: the
  474. module will be called mainstone-wm97xx.
  475. config TOUCHSCREEN_WM97XX_ZYLONITE
  476. tristate "Zylonite accelerated touch"
  477. depends on TOUCHSCREEN_WM97XX && MACH_ZYLONITE
  478. select TOUCHSCREEN_WM9713
  479. help
  480. Say Y here for support for streaming mode with the touchscreen
  481. on Zylonite systems.
  482. If unsure, say N.
  483. To compile this driver as a module, choose M here: the
  484. module will be called zylonite-wm97xx.
  485. config TOUCHSCREEN_USB_COMPOSITE
  486. tristate "USB Touchscreen Driver"
  487. depends on USB_ARCH_HAS_HCD
  488. select USB
  489. help
  490. USB Touchscreen driver for:
  491. - eGalax Touchkit USB (also includes eTurboTouch CT-410/510/700)
  492. - PanJit TouchSet USB
  493. - 3M MicroTouch USB (EX II series)
  494. - ITM
  495. - some other eTurboTouch
  496. - Gunze AHL61
  497. - DMC TSC-10/25
  498. - IRTOUCHSYSTEMS/UNITOP
  499. - IdealTEK URTC1000
  500. - GoTop Super_Q2/GogoPen/PenPower tablets
  501. - JASTEC USB Touch Controller/DigiTech DTR-02U
  502. - Zytronic controllers
  503. - Elo TouchSystems 2700 IntelliTouch
  504. - EasyTouch USB Touch Controller from Data Modul
  505. Have a look at <http://linux.chapter7.ch/touchkit/> for
  506. a usage description and the required user-space stuff.
  507. To compile this driver as a module, choose M here: the
  508. module will be called usbtouchscreen.
  509. config TOUCHSCREEN_MC13783
  510. tristate "Freescale MC13783 touchscreen input driver"
  511. depends on MFD_MC13783
  512. help
  513. Say Y here if you have an Freescale MC13783 PMIC on your
  514. board and want to use its touchscreen
  515. If unsure, say N.
  516. To compile this driver as a module, choose M here: the
  517. module will be called mc13783_ts.
  518. config TOUCHSCREEN_USB_EGALAX
  519. default y
  520. bool "eGalax, eTurboTouch CT-410/510/700 device support" if EXPERT
  521. depends on TOUCHSCREEN_USB_COMPOSITE
  522. config TOUCHSCREEN_USB_PANJIT
  523. default y
  524. bool "PanJit device support" if EXPERT
  525. depends on TOUCHSCREEN_USB_COMPOSITE
  526. config TOUCHSCREEN_USB_3M
  527. default y
  528. bool "3M/Microtouch EX II series device support" if EXPERT
  529. depends on TOUCHSCREEN_USB_COMPOSITE
  530. config TOUCHSCREEN_USB_ITM
  531. default y
  532. bool "ITM device support" if EXPERT
  533. depends on TOUCHSCREEN_USB_COMPOSITE
  534. config TOUCHSCREEN_USB_ETURBO
  535. default y
  536. bool "eTurboTouch (non-eGalax compatible) device support" if EXPERT
  537. depends on TOUCHSCREEN_USB_COMPOSITE
  538. config TOUCHSCREEN_USB_GUNZE
  539. default y
  540. bool "Gunze AHL61 device support" if EXPERT
  541. depends on TOUCHSCREEN_USB_COMPOSITE
  542. config TOUCHSCREEN_USB_DMC_TSC10
  543. default y
  544. bool "DMC TSC-10/25 device support" if EXPERT
  545. depends on TOUCHSCREEN_USB_COMPOSITE
  546. config TOUCHSCREEN_USB_IRTOUCH
  547. default y
  548. bool "IRTOUCHSYSTEMS/UNITOP device support" if EXPERT
  549. depends on TOUCHSCREEN_USB_COMPOSITE
  550. config TOUCHSCREEN_USB_IDEALTEK
  551. default y
  552. bool "IdealTEK URTC1000 device support" if EXPERT
  553. depends on TOUCHSCREEN_USB_COMPOSITE
  554. config TOUCHSCREEN_USB_GENERAL_TOUCH
  555. default y
  556. bool "GeneralTouch Touchscreen device support" if EXPERT
  557. depends on TOUCHSCREEN_USB_COMPOSITE
  558. config TOUCHSCREEN_USB_GOTOP
  559. default y
  560. bool "GoTop Super_Q2/GogoPen/PenPower tablet device support" if EXPERT
  561. depends on TOUCHSCREEN_USB_COMPOSITE
  562. config TOUCHSCREEN_USB_JASTEC
  563. default y
  564. bool "JASTEC/DigiTech DTR-02U USB touch controller device support" if EXPERT
  565. depends on TOUCHSCREEN_USB_COMPOSITE
  566. config TOUCHSCREEN_USB_ELO
  567. default y
  568. bool "Elo TouchSystems 2700 IntelliTouch controller device support" if EXPERT
  569. depends on TOUCHSCREEN_USB_COMPOSITE
  570. config TOUCHSCREEN_USB_E2I
  571. default y
  572. bool "e2i Touchscreen controller (e.g. from Mimo 740)"
  573. depends on TOUCHSCREEN_USB_COMPOSITE
  574. config TOUCHSCREEN_USB_ZYTRONIC
  575. default y
  576. bool "Zytronic controller" if EXPERT
  577. depends on TOUCHSCREEN_USB_COMPOSITE
  578. config TOUCHSCREEN_USB_ETT_TC45USB
  579. default y
  580. bool "ET&T USB series TC4UM/TC5UH touchscreen controller support" if EXPERT
  581. depends on TOUCHSCREEN_USB_COMPOSITE
  582. config TOUCHSCREEN_USB_NEXIO
  583. default y
  584. bool "NEXIO/iNexio device support" if EXPERT
  585. depends on TOUCHSCREEN_USB_COMPOSITE
  586. config TOUCHSCREEN_USB_EASYTOUCH
  587. default y
  588. bool "EasyTouch USB Touch controller device support" if EMBEDDED
  589. depends on TOUCHSCREEN_USB_COMPOSITE
  590. help
  591. Say Y here if you have a EasyTouch USB Touch controller device support.
  592. If unsure, say N.
  593. config TOUCHSCREEN_TOUCHIT213
  594. tristate "Sahara TouchIT-213 touchscreen"
  595. select SERIO
  596. help
  597. Say Y here if you have a Sahara TouchIT-213 Tablet PC.
  598. If unsure, say N.
  599. To compile this driver as a module, choose M here: the
  600. module will be called touchit213.
  601. config TOUCHSCREEN_TSC_SERIO
  602. tristate "TSC-10/25/40 serial touchscreen support"
  603. select SERIO
  604. help
  605. Say Y here if you have a TSC-10, 25 or 40 serial touchscreen connected
  606. to your system.
  607. If unsure, say N.
  608. To compile this driver as a module, choose M here: the
  609. module will be called tsc40.
  610. config TOUCHSCREEN_TSC2005
  611. tristate "TSC2005 based touchscreens"
  612. depends on SPI_MASTER && GENERIC_HARDIRQS
  613. help
  614. Say Y here if you have a TSC2005 based touchscreen.
  615. If unsure, say N.
  616. To compile this driver as a module, choose M here: the
  617. module will be called tsc2005.
  618. config TOUCHSCREEN_TSC2007
  619. tristate "TSC2007 based touchscreens"
  620. depends on I2C
  621. help
  622. Say Y here if you have a TSC2007 based touchscreen.
  623. If unsure, say N.
  624. To compile this driver as a module, choose M here: the
  625. module will be called tsc2007.
  626. config TOUCHSCREEN_W90X900
  627. tristate "W90P910 touchscreen driver"
  628. depends on HAVE_CLK
  629. help
  630. Say Y here if you have a W90P910 based touchscreen.
  631. To compile this driver as a module, choose M here: the
  632. module will be called w90p910_ts.
  633. config TOUCHSCREEN_PCAP
  634. tristate "Motorola PCAP touchscreen"
  635. depends on EZX_PCAP
  636. help
  637. Say Y here if you have a Motorola EZX telephone and
  638. want to enable support for the built-in touchscreen.
  639. To compile this driver as a module, choose M here: the
  640. module will be called pcap_ts.
  641. config TOUCHSCREEN_ST1232
  642. tristate "Sitronix ST1232 touchscreen controllers"
  643. depends on I2C
  644. help
  645. Say Y here if you want to support Sitronix ST1232
  646. touchscreen controller.
  647. If unsure, say N.
  648. To compile this driver as a module, choose M here: the
  649. module will be called st1232_ts.
  650. config TOUCHSCREEN_STMPE
  651. tristate "STMicroelectronics STMPE touchscreens"
  652. depends on MFD_STMPE
  653. help
  654. Say Y here if you want support for STMicroelectronics
  655. STMPE touchscreen controllers.
  656. To compile this driver as a module, choose M here: the
  657. module will be called stmpe-ts.
  658. config TOUCHSCREEN_TPS6507X
  659. tristate "TPS6507x based touchscreens"
  660. depends on I2C
  661. help
  662. Say Y here if you have a TPS6507x based touchscreen
  663. controller.
  664. If unsure, say N.
  665. To compile this driver as a module, choose M here: the
  666. module will be called tps6507x_ts.
  667. endif