Kconfig 35 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303
  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_PROPERTIES
  12. def_tristate INPUT
  13. depends on INPUT
  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. select REGMAP_I2C
  60. help
  61. Say Y here if you have AD7879-1/AD7889-1 hooked to an I2C bus.
  62. To compile this driver as a module, choose M here: the
  63. module will be called ad7879-i2c.
  64. config TOUCHSCREEN_AD7879_SPI
  65. tristate "support SPI bus connection"
  66. depends on TOUCHSCREEN_AD7879 && SPI_MASTER
  67. select REGMAP_SPI
  68. help
  69. Say Y here if you have AD7879-1/AD7889-1 hooked to a SPI bus.
  70. If unsure, say N (but it's safe to say "Y").
  71. To compile this driver as a module, choose M here: the
  72. module will be called ad7879-spi.
  73. config TOUCHSCREEN_ADC
  74. tristate "Generic ADC based resistive touchscreen"
  75. depends on IIO
  76. select IIO_BUFFER_CB
  77. help
  78. Say Y here if you want to use the generic ADC
  79. resistive touchscreen driver.
  80. If unsure, say N (but it's safe to say "Y").
  81. To compile this driver as a module, choose M here: the
  82. module will be called resistive-adc-touch.ko.
  83. config TOUCHSCREEN_AR1021_I2C
  84. tristate "Microchip AR1020/1021 i2c touchscreen"
  85. depends on I2C && OF
  86. help
  87. Say Y here if you have the Microchip AR1020 or AR1021 touchscreen
  88. controller chip in your system.
  89. If unsure, say N.
  90. To compile this driver as a module, choose M here: the
  91. module will be called ar1021_i2c.
  92. config TOUCHSCREEN_ATMEL_MXT
  93. tristate "Atmel mXT I2C Touchscreen"
  94. depends on I2C
  95. select FW_LOADER
  96. help
  97. Say Y here if you have Atmel mXT series I2C touchscreen,
  98. such as AT42QT602240/ATMXT224, connected to your system.
  99. If unsure, say N.
  100. To compile this driver as a module, choose M here: the
  101. module will be called atmel_mxt_ts.
  102. config TOUCHSCREEN_ATMEL_MXT_T37
  103. bool "Support T37 Diagnostic Data"
  104. depends on TOUCHSCREEN_ATMEL_MXT
  105. depends on VIDEO_V4L2=y || (TOUCHSCREEN_ATMEL_MXT=m && VIDEO_V4L2=m)
  106. select VIDEOBUF2_VMALLOC
  107. help
  108. Say Y here if you want support to output data from the T37
  109. Diagnostic Data object using a V4L device.
  110. config TOUCHSCREEN_AUO_PIXCIR
  111. tristate "AUO in-cell touchscreen using Pixcir ICs"
  112. depends on I2C
  113. depends on GPIOLIB || COMPILE_TEST
  114. help
  115. Say Y here if you have a AUO display with in-cell touchscreen
  116. using Pixcir ICs.
  117. If unsure, say N.
  118. To compile this driver as a module, choose M here: the
  119. module will be called auo-pixcir-ts.
  120. config TOUCHSCREEN_BU21013
  121. tristate "BU21013 based touch panel controllers"
  122. depends on I2C
  123. help
  124. Say Y here if you have a bu21013 touchscreen connected to
  125. your system.
  126. If unsure, say N.
  127. To compile this driver as a module, choose M here: the
  128. module will be called bu21013_ts.
  129. config TOUCHSCREEN_BU21029
  130. tristate "Rohm BU21029 based touch panel controllers"
  131. depends on I2C
  132. help
  133. Say Y here if you have a Rohm BU21029 touchscreen controller
  134. connected to your system.
  135. If unsure, say N.
  136. To compile this driver as a module, choose M here: the
  137. module will be called bu21029_ts.
  138. config TOUCHSCREEN_CHIPONE_ICN8318
  139. tristate "chipone icn8318 touchscreen controller"
  140. depends on GPIOLIB || COMPILE_TEST
  141. depends on I2C
  142. depends on OF
  143. help
  144. Say Y here if you have a ChipOne icn8318 based I2C touchscreen.
  145. If unsure, say N.
  146. To compile this driver as a module, choose M here: the
  147. module will be called chipone_icn8318.
  148. config TOUCHSCREEN_CHIPONE_ICN8505
  149. tristate "chipone icn8505 touchscreen controller"
  150. depends on I2C && ACPI
  151. help
  152. Say Y here if you have a ChipOne icn8505 based I2C touchscreen.
  153. If unsure, say N.
  154. To compile this driver as a module, choose M here: the
  155. module will be called chipone_icn8505.
  156. config TOUCHSCREEN_CY8CTMG110
  157. tristate "cy8ctmg110 touchscreen"
  158. depends on I2C
  159. depends on GPIOLIB || COMPILE_TEST
  160. help
  161. Say Y here if you have a cy8ctmg110 capacitive touchscreen on
  162. an AAVA device.
  163. If unsure, say N.
  164. To compile this driver as a module, choose M here: the
  165. module will be called cy8ctmg110_ts.
  166. config TOUCHSCREEN_CYTTSP_CORE
  167. tristate "Cypress TTSP touchscreen"
  168. help
  169. Say Y here if you have a touchscreen using controller from
  170. the Cypress TrueTouch(tm) Standard Product family connected
  171. to your system. You will also need to select appropriate
  172. bus connection below.
  173. If unsure, say N.
  174. To compile this driver as a module, choose M here: the
  175. module will be called cyttsp_core.
  176. config TOUCHSCREEN_CYTTSP_I2C
  177. tristate "support I2C bus connection"
  178. depends on TOUCHSCREEN_CYTTSP_CORE && I2C
  179. help
  180. Say Y here if the touchscreen is connected via I2C bus.
  181. To compile this driver as a module, choose M here: the
  182. module will be called cyttsp_i2c.
  183. config TOUCHSCREEN_CYTTSP_SPI
  184. tristate "support SPI bus connection"
  185. depends on TOUCHSCREEN_CYTTSP_CORE && SPI_MASTER
  186. help
  187. Say Y here if the touchscreen is connected via SPI bus.
  188. To compile this driver as a module, choose M here: the
  189. module will be called cyttsp_spi.
  190. config TOUCHSCREEN_CYTTSP4_CORE
  191. tristate "Cypress TrueTouch Gen4 Touchscreen Driver"
  192. help
  193. Core driver for Cypress TrueTouch(tm) Standard Product
  194. Generation4 touchscreen controllers.
  195. Say Y here if you have a Cypress Gen4 touchscreen.
  196. If unsure, say N.
  197. To compile this driver as a module, choose M here.
  198. config TOUCHSCREEN_CYTTSP4_I2C
  199. tristate "support I2C bus connection"
  200. depends on TOUCHSCREEN_CYTTSP4_CORE && I2C
  201. help
  202. Say Y here if the touchscreen is connected via I2C bus.
  203. To compile this driver as a module, choose M here: the
  204. module will be called cyttsp4_i2c.
  205. config TOUCHSCREEN_CYTTSP4_SPI
  206. tristate "support SPI bus connection"
  207. depends on TOUCHSCREEN_CYTTSP4_CORE && SPI_MASTER
  208. help
  209. Say Y here if the touchscreen is connected via SPI bus.
  210. To compile this driver as a module, choose M here: the
  211. module will be called cyttsp4_spi.
  212. config TOUCHSCREEN_DA9034
  213. tristate "Touchscreen support for Dialog Semiconductor DA9034"
  214. depends on PMIC_DA903X
  215. default y
  216. help
  217. Say Y here to enable the support for the touchscreen found
  218. on Dialog Semiconductor DA9034 PMIC.
  219. If unsure, say N.
  220. To compile this driver as a module, choose M here: the
  221. module will be called da9034-ts.
  222. config TOUCHSCREEN_DA9052
  223. tristate "Dialog DA9052/DA9053 TSI"
  224. depends on PMIC_DA9052
  225. help
  226. Say Y here to support the touchscreen found on Dialog Semiconductor
  227. DA9052-BC and DA9053-AA/Bx PMICs.
  228. If unsure, say N.
  229. To compile this driver as a module, choose M here: the
  230. module will be called da9052_tsi.
  231. config TOUCHSCREEN_DYNAPRO
  232. tristate "Dynapro serial touchscreen"
  233. select SERIO
  234. help
  235. Say Y here if you have a Dynapro serial touchscreen connected to
  236. your system.
  237. If unsure, say N.
  238. To compile this driver as a module, choose M here: the
  239. module will be called dynapro.
  240. config TOUCHSCREEN_HAMPSHIRE
  241. tristate "Hampshire serial touchscreen"
  242. select SERIO
  243. help
  244. Say Y here if you have a Hampshire serial touchscreen connected to
  245. your system.
  246. If unsure, say N.
  247. To compile this driver as a module, choose M here: the
  248. module will be called hampshire.
  249. config TOUCHSCREEN_EETI
  250. tristate "EETI touchscreen panel support"
  251. depends on I2C
  252. help
  253. Say Y here to enable support for I2C connected EETI touch panels.
  254. To compile this driver as a module, choose M here: the
  255. module will be called eeti_ts.
  256. config TOUCHSCREEN_EGALAX
  257. tristate "EETI eGalax multi-touch panel support"
  258. depends on I2C && OF
  259. help
  260. Say Y here to enable support for I2C connected EETI
  261. eGalax multi-touch panels.
  262. To compile this driver as a module, choose M here: the
  263. module will be called egalax_ts.
  264. config TOUCHSCREEN_EGALAX_SERIAL
  265. tristate "EETI eGalax serial touchscreen"
  266. select SERIO
  267. help
  268. Say Y here to enable support for serial connected EETI
  269. eGalax touch panels.
  270. To compile this driver as a module, choose M here: the
  271. module will be called egalax_ts_serial.
  272. config TOUCHSCREEN_EXC3000
  273. tristate "EETI EXC3000 multi-touch panel support"
  274. depends on I2C
  275. help
  276. Say Y here to enable support for I2C connected EETI
  277. EXC3000 multi-touch panels.
  278. To compile this driver as a module, choose M here: the
  279. module will be called exc3000.
  280. config TOUCHSCREEN_FUJITSU
  281. tristate "Fujitsu serial touchscreen"
  282. select SERIO
  283. help
  284. Say Y here if you have the Fujitsu touchscreen (such as one
  285. installed in Lifebook P series laptop) connected to your
  286. system.
  287. If unsure, say N.
  288. To compile this driver as a module, choose M here: the
  289. module will be called fujitsu-ts.
  290. config TOUCHSCREEN_GOODIX
  291. tristate "Goodix I2C touchscreen"
  292. depends on I2C
  293. depends on GPIOLIB || COMPILE_TEST
  294. help
  295. Say Y here if you have the Goodix touchscreen (such as one
  296. installed in Onda v975w tablets) connected to your
  297. system. It also supports 5-finger chip models, which can be
  298. found on ARM tablets, like Wexler TAB7200 and MSI Primo73.
  299. If unsure, say N.
  300. To compile this driver as a module, choose M here: the
  301. module will be called goodix.
  302. config TOUCHSCREEN_HIDEEP
  303. tristate "HiDeep Touch IC"
  304. depends on I2C
  305. help
  306. Say Y here if you have a touchscreen using HiDeep.
  307. If unsure, say N.
  308. To compile this driver as a module, choose M here : the
  309. module will be called hideep_ts.
  310. config TOUCHSCREEN_ILI210X
  311. tristate "Ilitek ILI210X based touchscreen"
  312. depends on I2C
  313. help
  314. Say Y here if you have a ILI210X based touchscreen
  315. controller. This driver supports models ILI2102,
  316. ILI2102s, ILI2103, ILI2103s and ILI2105.
  317. Such kind of chipsets can be found in Amazon Kindle Fire
  318. touchscreens.
  319. If unsure, say N.
  320. To compile this driver as a module, choose M here: the
  321. module will be called ili210x.
  322. config TOUCHSCREEN_IPROC
  323. tristate "IPROC touch panel driver support"
  324. depends on ARCH_BCM_IPROC || COMPILE_TEST
  325. help
  326. Say Y here if you want to add support for the IPROC touch
  327. controller to your system.
  328. If unsure, say N.
  329. To compile this driver as a module, choose M here: the
  330. module will be called bcm_iproc_tsc.
  331. config TOUCHSCREEN_S3C2410
  332. tristate "Samsung S3C2410/generic touchscreen input driver"
  333. depends on ARCH_S3C24XX || SAMSUNG_DEV_TS
  334. depends on S3C_ADC
  335. help
  336. Say Y here if you have the s3c2410 touchscreen.
  337. If unsure, say N.
  338. To compile this driver as a module, choose M here: the
  339. module will be called s3c2410_ts.
  340. config TOUCHSCREEN_S6SY761
  341. tristate "Samsung S6SY761 Touchscreen driver"
  342. depends on I2C
  343. help
  344. Say Y if you have the Samsung S6SY761 driver
  345. If unsure, say N
  346. To compile this driver as module, choose M here: the
  347. module will be called s6sy761.
  348. config TOUCHSCREEN_GUNZE
  349. tristate "Gunze AHL-51S touchscreen"
  350. select SERIO
  351. help
  352. Say Y here if you have the Gunze AHL-51 touchscreen connected to
  353. your system.
  354. If unsure, say N.
  355. To compile this driver as a module, choose M here: the
  356. module will be called gunze.
  357. config TOUCHSCREEN_EKTF2127
  358. tristate "Elan eKTF2127 I2C touchscreen"
  359. depends on I2C
  360. help
  361. Say Y here if you have an Elan eKTF2127 touchscreen
  362. connected to your system.
  363. If unsure, say N.
  364. To compile this driver as a module, choose M here: the
  365. module will be called ektf2127.
  366. config TOUCHSCREEN_ELAN
  367. tristate "Elan eKTH I2C touchscreen"
  368. depends on I2C
  369. help
  370. Say Y here if you have an Elan eKTH I2C touchscreen
  371. connected to your system.
  372. If unsure, say N.
  373. To compile this driver as a module, choose M here: the
  374. module will be called elants_i2c.
  375. config TOUCHSCREEN_ELO
  376. tristate "Elo serial touchscreens"
  377. select SERIO
  378. help
  379. Say Y here if you have an Elo serial touchscreen connected to
  380. your system.
  381. If unsure, say N.
  382. To compile this driver as a module, choose M here: the
  383. module will be called elo.
  384. config TOUCHSCREEN_WACOM_W8001
  385. tristate "Wacom W8001 penabled serial touchscreen"
  386. select SERIO
  387. help
  388. Say Y here if you have an Wacom W8001 penabled serial touchscreen
  389. connected to your system.
  390. If unsure, say N.
  391. To compile this driver as a module, choose M here: the
  392. module will be called wacom_w8001.
  393. config TOUCHSCREEN_WACOM_I2C
  394. tristate "Wacom Tablet support (I2C)"
  395. depends on I2C
  396. help
  397. Say Y here if you want to use the I2C version of the Wacom
  398. Pen Tablet.
  399. If unsure, say N.
  400. To compile this driver as a module, choose M here: the module
  401. will be called wacom_i2c.
  402. config TOUCHSCREEN_LPC32XX
  403. tristate "LPC32XX touchscreen controller"
  404. depends on ARCH_LPC32XX
  405. help
  406. Say Y here if you have a LPC32XX device and want
  407. to support the built-in touchscreen.
  408. To compile this driver as a module, choose M here: the
  409. module will be called lpc32xx_ts.
  410. config TOUCHSCREEN_MAX11801
  411. tristate "MAX11801 based touchscreens"
  412. depends on I2C
  413. help
  414. Say Y here if you have a MAX11801 based touchscreen
  415. controller.
  416. If unsure, say N.
  417. To compile this driver as a module, choose M here: the
  418. module will be called max11801_ts.
  419. config TOUCHSCREEN_MCS5000
  420. tristate "MELFAS MCS-5000 touchscreen"
  421. depends on I2C
  422. help
  423. Say Y here if you have the MELFAS MCS-5000 touchscreen controller
  424. chip in your system.
  425. If unsure, say N.
  426. To compile this driver as a module, choose M here: the
  427. module will be called mcs5000_ts.
  428. config TOUCHSCREEN_MMS114
  429. tristate "MELFAS MMS114 touchscreen"
  430. depends on I2C
  431. help
  432. Say Y here if you have the MELFAS MMS114 touchscreen controller
  433. chip in your system.
  434. If unsure, say N.
  435. To compile this driver as a module, choose M here: the
  436. module will be called mms114.
  437. config TOUCHSCREEN_MELFAS_MIP4
  438. tristate "MELFAS MIP4 Touchscreen"
  439. depends on I2C
  440. help
  441. Say Y here if you have a MELFAS MIP4 Touchscreen device.
  442. If unsure, say N.
  443. To compile this driver as a module, choose M here:
  444. the module will be called melfas_mip4.
  445. config TOUCHSCREEN_MTOUCH
  446. tristate "MicroTouch serial touchscreens"
  447. select SERIO
  448. help
  449. Say Y here if you have a MicroTouch (3M) serial touchscreen connected to
  450. your system.
  451. If unsure, say N.
  452. To compile this driver as a module, choose M here: the
  453. module will be called mtouch.
  454. config TOUCHSCREEN_IMX6UL_TSC
  455. tristate "Freescale i.MX6UL touchscreen controller"
  456. depends on (OF && GPIOLIB) || COMPILE_TEST
  457. help
  458. Say Y here if you have a Freescale i.MX6UL, and want to
  459. use the internal touchscreen controller.
  460. If unsure, say N.
  461. To compile this driver as a module, choose M here: the
  462. module will be called imx6ul_tsc.
  463. config TOUCHSCREEN_INEXIO
  464. tristate "iNexio serial touchscreens"
  465. select SERIO
  466. help
  467. Say Y here if you have an iNexio serial touchscreen connected to
  468. your system.
  469. If unsure, say N.
  470. To compile this driver as a module, choose M here: the
  471. module will be called inexio.
  472. config TOUCHSCREEN_MK712
  473. tristate "ICS MicroClock MK712 touchscreen"
  474. help
  475. Say Y here if you have the ICS MicroClock MK712 touchscreen
  476. controller chip in your system.
  477. If unsure, say N.
  478. To compile this driver as a module, choose M here: the
  479. module will be called mk712.
  480. config TOUCHSCREEN_HP600
  481. tristate "HP Jornada 6xx touchscreen"
  482. depends on SH_HP6XX && SH_ADC
  483. help
  484. Say Y here if you have a HP Jornada 620/660/680/690 and want to
  485. support the built-in touchscreen.
  486. To compile this driver as a module, choose M here: the
  487. module will be called hp680_ts_input.
  488. config TOUCHSCREEN_HP7XX
  489. tristate "HP Jornada 7xx touchscreen"
  490. depends on SA1100_JORNADA720_SSP
  491. help
  492. Say Y here if you have a HP Jornada 710/720/728 and want
  493. to support the built-in touchscreen.
  494. To compile this driver as a module, choose M here: the
  495. module will be called jornada720_ts.
  496. config TOUCHSCREEN_IPAQ_MICRO
  497. tristate "HP iPAQ Atmel Micro ASIC touchscreen"
  498. depends on MFD_IPAQ_MICRO
  499. help
  500. Say Y here to enable support for the touchscreen attached to
  501. the Atmel Micro peripheral controller on iPAQ h3100/h3600/h3700
  502. If unsure, say N.
  503. To compile this driver as a module, choose M here: the
  504. module will be called ipaq-micro-ts.
  505. config TOUCHSCREEN_HTCPEN
  506. tristate "HTC Shift X9500 touchscreen"
  507. depends on ISA
  508. help
  509. Say Y here if you have an HTC Shift UMPC also known as HTC X9500
  510. Clio / Shangrila and want to support the built-in touchscreen.
  511. If unsure, say N.
  512. To compile this driver as a module, choose M here: the
  513. module will be called htcpen.
  514. config TOUCHSCREEN_PENMOUNT
  515. tristate "Penmount serial touchscreen"
  516. select SERIO
  517. help
  518. Say Y here if you have a Penmount serial touchscreen connected to
  519. your system.
  520. If unsure, say N.
  521. To compile this driver as a module, choose M here: the
  522. module will be called penmount.
  523. config TOUCHSCREEN_EDT_FT5X06
  524. tristate "EDT FocalTech FT5x06 I2C Touchscreen support"
  525. depends on I2C
  526. help
  527. Say Y here if you have an EDT "Polytouch" touchscreen based
  528. on the FocalTech FT5x06 family of controllers connected to
  529. your system.
  530. If unsure, say N.
  531. To compile this driver as a module, choose M here: the
  532. module will be called edt-ft5x06.
  533. config TOUCHSCREEN_MIGOR
  534. tristate "Renesas MIGO-R touchscreen"
  535. depends on (SH_MIGOR || COMPILE_TEST) && I2C
  536. help
  537. Say Y here to enable MIGO-R touchscreen support.
  538. If unsure, say N.
  539. To compile this driver as a module, choose M here: the
  540. module will be called migor_ts.
  541. config TOUCHSCREEN_TOUCHRIGHT
  542. tristate "Touchright serial touchscreen"
  543. select SERIO
  544. help
  545. Say Y here if you have a Touchright serial touchscreen connected to
  546. your system.
  547. If unsure, say N.
  548. To compile this driver as a module, choose M here: the
  549. module will be called touchright.
  550. config TOUCHSCREEN_TOUCHWIN
  551. tristate "Touchwin serial touchscreen"
  552. select SERIO
  553. help
  554. Say Y here if you have a Touchwin serial touchscreen connected to
  555. your system.
  556. If unsure, say N.
  557. To compile this driver as a module, choose M here: the
  558. module will be called touchwin.
  559. config TOUCHSCREEN_TI_AM335X_TSC
  560. tristate "TI Touchscreen Interface"
  561. depends on MFD_TI_AM335X_TSCADC
  562. help
  563. Say Y here if you have 4/5/8 wire touchscreen controller
  564. to be connected to the ADC controller on your TI AM335x SoC.
  565. If unsure, say N.
  566. To compile this driver as a module, choose M here: the
  567. module will be called ti_am335x_tsc.
  568. config TOUCHSCREEN_UCB1400
  569. tristate "Philips UCB1400 touchscreen"
  570. depends on AC97_BUS
  571. depends on UCB1400_CORE
  572. help
  573. This enables support for the Philips UCB1400 touchscreen interface.
  574. The UCB1400 is an AC97 audio codec. The touchscreen interface
  575. will be initialized only after the ALSA subsystem has been
  576. brought up and the UCB1400 detected. You therefore have to
  577. configure ALSA support as well (either built-in or modular,
  578. independently of whether this driver is itself built-in or
  579. modular) for this driver to work.
  580. To compile this driver as a module, choose M here: the
  581. module will be called ucb1400_ts.
  582. config TOUCHSCREEN_PIXCIR
  583. tristate "PIXCIR I2C touchscreens"
  584. depends on I2C
  585. help
  586. Say Y here if you have a pixcir i2c touchscreen
  587. controller.
  588. If unsure, say N.
  589. To compile this driver as a module, choose M here: the
  590. module will be called pixcir_i2c_ts.
  591. config TOUCHSCREEN_WDT87XX_I2C
  592. tristate "Weida HiTech I2C touchscreen"
  593. depends on I2C
  594. help
  595. Say Y here if you have a Weida WDT87XX I2C touchscreen
  596. connected to your system.
  597. If unsure, say N.
  598. To compile this driver as a module, choose M here: the
  599. module will be called wdt87xx_i2c.
  600. config TOUCHSCREEN_WM831X
  601. tristate "Support for WM831x touchscreen controllers"
  602. depends on MFD_WM831X
  603. help
  604. This enables support for the touchscreen controller on the WM831x
  605. series of PMICs.
  606. To compile this driver as a module, choose M here: the
  607. module will be called wm831x-ts.
  608. config TOUCHSCREEN_WM97XX
  609. tristate "Support for WM97xx AC97 touchscreen controllers"
  610. depends on AC97_BUS || AC97_BUS_NEW
  611. help
  612. Say Y here if you have a Wolfson Microelectronics WM97xx
  613. touchscreen connected to your system. Note that this option
  614. only enables core driver, you will also need to select
  615. support for appropriate chip below.
  616. If unsure, say N.
  617. To compile this driver as a module, choose M here: the
  618. module will be called wm97xx-ts.
  619. config TOUCHSCREEN_WM9705
  620. bool "WM9705 Touchscreen interface support"
  621. depends on TOUCHSCREEN_WM97XX
  622. default y
  623. help
  624. Say Y here to enable support for the Wolfson Microelectronics
  625. WM9705 touchscreen controller.
  626. config TOUCHSCREEN_WM9712
  627. bool "WM9712 Touchscreen interface support"
  628. depends on TOUCHSCREEN_WM97XX
  629. default y
  630. help
  631. Say Y here to enable support for the Wolfson Microelectronics
  632. WM9712 touchscreen controller.
  633. config TOUCHSCREEN_WM9713
  634. bool "WM9713 Touchscreen interface support"
  635. depends on TOUCHSCREEN_WM97XX
  636. default y
  637. help
  638. Say Y here to enable support for the Wolfson Microelectronics
  639. WM9713 touchscreen controller.
  640. config TOUCHSCREEN_WM97XX_MAINSTONE
  641. tristate "WM97xx Mainstone/Palm accelerated touch"
  642. depends on TOUCHSCREEN_WM97XX && ARCH_PXA
  643. help
  644. Say Y here for support for streaming mode with WM97xx touchscreens
  645. on Mainstone, Palm Tungsten T5, TX and LifeDrive systems.
  646. If unsure, say N.
  647. To compile this driver as a module, choose M here: the
  648. module will be called mainstone-wm97xx.
  649. config TOUCHSCREEN_WM97XX_ZYLONITE
  650. tristate "Zylonite accelerated touch"
  651. depends on TOUCHSCREEN_WM97XX && MACH_ZYLONITE
  652. select TOUCHSCREEN_WM9713
  653. help
  654. Say Y here for support for streaming mode with the touchscreen
  655. on Zylonite systems.
  656. If unsure, say N.
  657. To compile this driver as a module, choose M here: the
  658. module will be called zylonite-wm97xx.
  659. config TOUCHSCREEN_USB_COMPOSITE
  660. tristate "USB Touchscreen Driver"
  661. depends on USB_ARCH_HAS_HCD
  662. select USB
  663. help
  664. USB Touchscreen driver for:
  665. - eGalax Touchkit USB (also includes eTurboTouch CT-410/510/700)
  666. - PanJit TouchSet USB
  667. - 3M MicroTouch USB (EX II series)
  668. - ITM
  669. - some other eTurboTouch
  670. - Gunze AHL61
  671. - DMC TSC-10/25
  672. - IRTOUCHSYSTEMS/UNITOP
  673. - IdealTEK URTC1000
  674. - GoTop Super_Q2/GogoPen/PenPower tablets
  675. - JASTEC USB Touch Controller/DigiTech DTR-02U
  676. - Zytronic controllers
  677. - Elo TouchSystems 2700 IntelliTouch
  678. - EasyTouch USB Touch Controller from Data Modul
  679. - e2i (Mimo monitors)
  680. Have a look at <http://linux.chapter7.ch/touchkit/> for
  681. a usage description and the required user-space stuff.
  682. To compile this driver as a module, choose M here: the
  683. module will be called usbtouchscreen.
  684. config TOUCHSCREEN_MXS_LRADC
  685. tristate "Freescale i.MX23/i.MX28 LRADC touchscreen"
  686. depends on MFD_MXS_LRADC
  687. help
  688. Say Y here if you have a touchscreen connected to the low-resolution
  689. analog-to-digital converter (LRADC) on an i.MX23 or i.MX28 processor.
  690. To compile this driver as a module, choose M here: the module will be
  691. called mxs-lradc-ts.
  692. config TOUCHSCREEN_MX25
  693. tristate "Freescale i.MX25 touchscreen input driver"
  694. depends on MFD_MX25_TSADC
  695. help
  696. Enable support for touchscreen connected to your i.MX25.
  697. To compile this driver as a module, choose M here: the
  698. module will be called fsl-imx25-tcq.
  699. config TOUCHSCREEN_MC13783
  700. tristate "Freescale MC13783 touchscreen input driver"
  701. depends on MFD_MC13XXX
  702. help
  703. Say Y here if you have an Freescale MC13783 PMIC on your
  704. board and want to use its touchscreen
  705. If unsure, say N.
  706. To compile this driver as a module, choose M here: the
  707. module will be called mc13783_ts.
  708. config TOUCHSCREEN_USB_EGALAX
  709. default y
  710. bool "eGalax, eTurboTouch CT-410/510/700 device support" if EXPERT
  711. depends on TOUCHSCREEN_USB_COMPOSITE
  712. config TOUCHSCREEN_USB_PANJIT
  713. default y
  714. bool "PanJit device support" if EXPERT
  715. depends on TOUCHSCREEN_USB_COMPOSITE
  716. config TOUCHSCREEN_USB_3M
  717. default y
  718. bool "3M/Microtouch EX II series device support" if EXPERT
  719. depends on TOUCHSCREEN_USB_COMPOSITE
  720. config TOUCHSCREEN_USB_ITM
  721. default y
  722. bool "ITM device support" if EXPERT
  723. depends on TOUCHSCREEN_USB_COMPOSITE
  724. config TOUCHSCREEN_USB_ETURBO
  725. default y
  726. bool "eTurboTouch (non-eGalax compatible) device support" if EXPERT
  727. depends on TOUCHSCREEN_USB_COMPOSITE
  728. config TOUCHSCREEN_USB_GUNZE
  729. default y
  730. bool "Gunze AHL61 device support" if EXPERT
  731. depends on TOUCHSCREEN_USB_COMPOSITE
  732. config TOUCHSCREEN_USB_DMC_TSC10
  733. default y
  734. bool "DMC TSC-10/25 device support" if EXPERT
  735. depends on TOUCHSCREEN_USB_COMPOSITE
  736. config TOUCHSCREEN_USB_IRTOUCH
  737. default y
  738. bool "IRTOUCHSYSTEMS/UNITOP device support" if EXPERT
  739. depends on TOUCHSCREEN_USB_COMPOSITE
  740. config TOUCHSCREEN_USB_IDEALTEK
  741. default y
  742. bool "IdealTEK URTC1000 device support" if EXPERT
  743. depends on TOUCHSCREEN_USB_COMPOSITE
  744. config TOUCHSCREEN_USB_GENERAL_TOUCH
  745. default y
  746. bool "GeneralTouch Touchscreen device support" if EXPERT
  747. depends on TOUCHSCREEN_USB_COMPOSITE
  748. config TOUCHSCREEN_USB_GOTOP
  749. default y
  750. bool "GoTop Super_Q2/GogoPen/PenPower tablet device support" if EXPERT
  751. depends on TOUCHSCREEN_USB_COMPOSITE
  752. config TOUCHSCREEN_USB_JASTEC
  753. default y
  754. bool "JASTEC/DigiTech DTR-02U USB touch controller device support" if EXPERT
  755. depends on TOUCHSCREEN_USB_COMPOSITE
  756. config TOUCHSCREEN_USB_ELO
  757. default y
  758. bool "Elo TouchSystems 2700 IntelliTouch controller device support" if EXPERT
  759. depends on TOUCHSCREEN_USB_COMPOSITE
  760. config TOUCHSCREEN_USB_E2I
  761. default y
  762. bool "e2i Touchscreen controller (e.g. from Mimo 740)" if EXPERT
  763. depends on TOUCHSCREEN_USB_COMPOSITE
  764. config TOUCHSCREEN_USB_ZYTRONIC
  765. default y
  766. bool "Zytronic controller" if EXPERT
  767. depends on TOUCHSCREEN_USB_COMPOSITE
  768. config TOUCHSCREEN_USB_ETT_TC45USB
  769. default y
  770. bool "ET&T USB series TC4UM/TC5UH touchscreen controller support" if EXPERT
  771. depends on TOUCHSCREEN_USB_COMPOSITE
  772. config TOUCHSCREEN_USB_NEXIO
  773. default y
  774. bool "NEXIO/iNexio device support" if EXPERT
  775. depends on TOUCHSCREEN_USB_COMPOSITE
  776. config TOUCHSCREEN_USB_EASYTOUCH
  777. default y
  778. bool "EasyTouch USB Touch controller device support" if EXPERT
  779. depends on TOUCHSCREEN_USB_COMPOSITE
  780. help
  781. Say Y here if you have an EasyTouch USB Touch controller.
  782. If unsure, say N.
  783. config TOUCHSCREEN_TOUCHIT213
  784. tristate "Sahara TouchIT-213 touchscreen"
  785. select SERIO
  786. help
  787. Say Y here if you have a Sahara TouchIT-213 Tablet PC.
  788. If unsure, say N.
  789. To compile this driver as a module, choose M here: the
  790. module will be called touchit213.
  791. config TOUCHSCREEN_TS4800
  792. tristate "TS-4800 touchscreen"
  793. depends on HAS_IOMEM && OF
  794. depends on SOC_IMX51 || COMPILE_TEST
  795. select MFD_SYSCON
  796. select INPUT_POLLDEV
  797. help
  798. Say Y here if you have a touchscreen on a TS-4800 board.
  799. On TS-4800, the touchscreen is not handled directly by Linux but by
  800. a companion FPGA.
  801. If unsure, say N.
  802. To compile this driver as a module, choose M here: the
  803. module will be called ts4800_ts.
  804. config TOUCHSCREEN_TSC_SERIO
  805. tristate "TSC-10/25/40 serial touchscreen support"
  806. select SERIO
  807. help
  808. Say Y here if you have a TSC-10, 25 or 40 serial touchscreen connected
  809. to your system.
  810. If unsure, say N.
  811. To compile this driver as a module, choose M here: the
  812. module will be called tsc40.
  813. config TOUCHSCREEN_TSC200X_CORE
  814. tristate
  815. config TOUCHSCREEN_TSC2004
  816. tristate "TSC2004 based touchscreens"
  817. depends on I2C
  818. select REGMAP_I2C
  819. select TOUCHSCREEN_TSC200X_CORE
  820. help
  821. Say Y here if you have a TSC2004 based touchscreen.
  822. If unsure, say N.
  823. To compile this driver as a module, choose M here: the
  824. module will be called tsc2004.
  825. config TOUCHSCREEN_TSC2005
  826. tristate "TSC2005 based touchscreens"
  827. depends on SPI_MASTER
  828. select REGMAP_SPI
  829. select TOUCHSCREEN_TSC200X_CORE
  830. help
  831. Say Y here if you have a TSC2005 based touchscreen.
  832. If unsure, say N.
  833. To compile this driver as a module, choose M here: the
  834. module will be called tsc2005.
  835. config TOUCHSCREEN_TSC2007
  836. tristate "TSC2007 based touchscreens"
  837. depends on I2C
  838. help
  839. Say Y here if you have a TSC2007 based touchscreen.
  840. If unsure, say N.
  841. To compile this driver as a module, choose M here: the
  842. module will be called tsc2007.
  843. config TOUCHSCREEN_TSC2007_IIO
  844. bool "IIO interface for external ADC input and temperature"
  845. depends on TOUCHSCREEN_TSC2007
  846. depends on IIO=y || IIO=TOUCHSCREEN_TSC2007
  847. help
  848. Saying Y here adds an iio interface to the tsc2007 which
  849. provides values for the AUX input (used for e.g. battery
  850. or ambient light monitoring), temperature and raw input
  851. values.
  852. config TOUCHSCREEN_W90X900
  853. tristate "W90P910 touchscreen driver"
  854. depends on ARCH_W90X900
  855. help
  856. Say Y here if you have a W90P910 based touchscreen.
  857. To compile this driver as a module, choose M here: the
  858. module will be called w90p910_ts.
  859. config TOUCHSCREEN_PCAP
  860. tristate "Motorola PCAP touchscreen"
  861. depends on EZX_PCAP
  862. help
  863. Say Y here if you have a Motorola EZX telephone and
  864. want to enable support for the built-in touchscreen.
  865. To compile this driver as a module, choose M here: the
  866. module will be called pcap_ts.
  867. config TOUCHSCREEN_RM_TS
  868. tristate "Raydium I2C Touchscreen"
  869. depends on I2C
  870. depends on GPIOLIB || COMPILE_TEST
  871. help
  872. Say Y here if you have Raydium series I2C touchscreen,
  873. such as RM32380, connected to your system.
  874. If unsure, say N.
  875. To compile this driver as a module, choose M here: the
  876. module will be called raydium_i2c_ts.
  877. config TOUCHSCREEN_SILEAD
  878. tristate "Silead I2C touchscreen"
  879. depends on I2C
  880. help
  881. Say Y here if you have the Silead touchscreen connected to
  882. your system.
  883. If unsure, say N.
  884. To compile this driver as a module, choose M here: the
  885. module will be called silead.
  886. config TOUCHSCREEN_SIS_I2C
  887. tristate "SiS 9200 family I2C touchscreen"
  888. depends on I2C
  889. select CRC_ITU_T
  890. depends on GPIOLIB || COMPILE_TEST
  891. help
  892. This enables support for SiS 9200 family over I2C based touchscreens.
  893. If unsure, say N.
  894. To compile this driver as a module, choose M here: the
  895. module will be called sis_i2c.
  896. config TOUCHSCREEN_ST1232
  897. tristate "Sitronix ST1232 touchscreen controllers"
  898. depends on I2C
  899. help
  900. Say Y here if you want to support Sitronix ST1232
  901. touchscreen controller.
  902. If unsure, say N.
  903. To compile this driver as a module, choose M here: the
  904. module will be called st1232_ts.
  905. config TOUCHSCREEN_STMFTS
  906. tristate "STMicroelectronics STMFTS touchscreen"
  907. depends on I2C
  908. depends on LEDS_CLASS
  909. help
  910. Say Y here if you want support for STMicroelectronics
  911. STMFTS touchscreen.
  912. To compile this driver as a module, choose M here: the
  913. module will be called stmfts.
  914. config TOUCHSCREEN_STMPE
  915. tristate "STMicroelectronics STMPE touchscreens"
  916. depends on MFD_STMPE
  917. depends on (OF || COMPILE_TEST)
  918. help
  919. Say Y here if you want support for STMicroelectronics
  920. STMPE touchscreen controllers.
  921. To compile this driver as a module, choose M here: the
  922. module will be called stmpe-ts.
  923. config TOUCHSCREEN_SUN4I
  924. tristate "Allwinner sun4i resistive touchscreen controller support"
  925. depends on ARCH_SUNXI || COMPILE_TEST
  926. depends on HWMON
  927. depends on THERMAL || !THERMAL_OF
  928. help
  929. This selects support for the resistive touchscreen controller
  930. found on Allwinner sunxi SoCs.
  931. To compile this driver as a module, choose M here: the
  932. module will be called sun4i-ts.
  933. config TOUCHSCREEN_SUR40
  934. tristate "Samsung SUR40 (Surface 2.0/PixelSense) touchscreen"
  935. depends on USB && MEDIA_USB_SUPPORT && HAS_DMA
  936. depends on VIDEO_V4L2
  937. select INPUT_POLLDEV
  938. select VIDEOBUF2_DMA_SG
  939. help
  940. Say Y here if you want support for the Samsung SUR40 touchscreen
  941. (also known as Microsoft Surface 2.0 or Microsoft PixelSense).
  942. To compile this driver as a module, choose M here: the
  943. module will be called sur40.
  944. config TOUCHSCREEN_SURFACE3_SPI
  945. tristate "Ntrig/Microsoft Surface 3 SPI touchscreen"
  946. depends on SPI
  947. depends on GPIOLIB || COMPILE_TEST
  948. help
  949. Say Y here if you have the Ntrig/Microsoft SPI touchscreen
  950. controller chip as found on the Surface 3 in your system.
  951. If unsure, say N.
  952. To compile this driver as a module, choose M here: the
  953. module will be called surface3_spi.
  954. config TOUCHSCREEN_SX8654
  955. tristate "Semtech SX8654 touchscreen"
  956. depends on I2C
  957. help
  958. Say Y here if you have a Semtech SX8654 touchscreen controller.
  959. If unsure, say N
  960. To compile this driver as a module, choose M here: the
  961. module will be called sx8654.
  962. config TOUCHSCREEN_TPS6507X
  963. tristate "TPS6507x based touchscreens"
  964. depends on I2C
  965. select INPUT_POLLDEV
  966. help
  967. Say Y here if you have a TPS6507x based touchscreen
  968. controller.
  969. If unsure, say N.
  970. To compile this driver as a module, choose M here: the
  971. module will be called tps6507x_ts.
  972. config TOUCHSCREEN_ZET6223
  973. tristate "Zeitec ZET6223 touchscreen driver"
  974. depends on I2C
  975. help
  976. Say Y here if you have a touchscreen using Zeitec ZET6223
  977. If unsure, say N.
  978. To compile this driver as a module, choose M here: the
  979. module will be called zet6223.
  980. config TOUCHSCREEN_ZFORCE
  981. tristate "Neonode zForce infrared touchscreens"
  982. depends on I2C
  983. depends on GPIOLIB || COMPILE_TEST
  984. help
  985. Say Y here if you have a touchscreen using the zforce
  986. infraread technology from Neonode.
  987. If unsure, say N.
  988. To compile this driver as a module, choose M here: the
  989. module will be called zforce_ts.
  990. config TOUCHSCREEN_COLIBRI_VF50
  991. tristate "Toradex Colibri on board touchscreen driver"
  992. depends on IIO && VF610_ADC
  993. depends on GPIOLIB || COMPILE_TEST
  994. help
  995. Say Y here if you have a Colibri VF50 and plan to use
  996. the on-board provided 4-wire touchscreen driver.
  997. If unsure, say N.
  998. To compile this driver as a module, choose M here: the
  999. module will be called colibri_vf50_ts.
  1000. config TOUCHSCREEN_ROHM_BU21023
  1001. tristate "ROHM BU21023/24 Dual touch support resistive touchscreens"
  1002. depends on I2C
  1003. help
  1004. Say Y here if you have a touchscreen using ROHM BU21023/24.
  1005. If unsure, say N.
  1006. To compile this driver as a module, choose M here: the
  1007. module will be called bu21023_ts.
  1008. endif