Kconfig 37 KB

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