Kconfig 26 KB

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