Kconfig 35 KB

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