xref: /openbmc/linux/drivers/input/touchscreen/Kconfig (revision 4add635b4e00dd7d6aad83a937afdf1957196da6)
11da177e4SLinus Torvalds#
2d05e84e6SDmitry Torokhov# Touchscreen driver configuration
31da177e4SLinus Torvalds#
41da177e4SLinus Torvaldsmenuconfig INPUT_TOUCHSCREEN
51da177e4SLinus Torvalds	bool "Touchscreens"
61da177e4SLinus Torvalds	help
71da177e4SLinus Torvalds	  Say Y here, and a list of supported touchscreens will be displayed.
81da177e4SLinus Torvalds	  This option doesn't affect the kernel.
91da177e4SLinus Torvalds
101da177e4SLinus Torvalds	  If unsure, say Y.
111da177e4SLinus Torvalds
121da177e4SLinus Torvaldsif INPUT_TOUCHSCREEN
131da177e4SLinus Torvalds
144200e831SDmitry Torokhovconfig TOUCHSCREEN_PROPERTIES
15b98abe52SSebastian Reichel	def_tristate INPUT
164200e831SDmitry Torokhov	depends on INPUT
17b98abe52SSebastian Reichel
18866a98aeSHaojian Zhuangconfig TOUCHSCREEN_88PM860X
19866a98aeSHaojian Zhuang	tristate "Marvell 88PM860x touchscreen"
20866a98aeSHaojian Zhuang	depends on MFD_88PM860X
21866a98aeSHaojian Zhuang	help
22866a98aeSHaojian Zhuang	  Say Y here if you have a 88PM860x PMIC and want to enable
23866a98aeSHaojian Zhuang	  support for the built-in touchscreen.
24866a98aeSHaojian Zhuang
25866a98aeSHaojian Zhuang	  If unsure, say N.
26866a98aeSHaojian Zhuang
27866a98aeSHaojian Zhuang	  To compile this driver as a module, choose M here: the
28866a98aeSHaojian Zhuang	  module will be called 88pm860x-ts.
29866a98aeSHaojian Zhuang
30ffa458c1SDavid Brownellconfig TOUCHSCREEN_ADS7846
3106a09124SMichael Hennerich	tristate "ADS7846/TSC2046/AD7873 and AD(S)7843 based touchscreens"
32ffa458c1SDavid Brownell	depends on SPI_MASTER
332c8dc071SDavid Brownell	depends on HWMON = n || HWMON
34ffa458c1SDavid Brownell	help
35ffa458c1SDavid Brownell	  Say Y here if you have a touchscreen interface using the
3606a09124SMichael Hennerich	  ADS7846/TSC2046/AD7873 or ADS7843/AD7843 controller,
3706a09124SMichael Hennerich	  and your board-specific setup code includes that in its
3806a09124SMichael Hennerich	  table of SPI devices.
39ffa458c1SDavid Brownell
402c8dc071SDavid Brownell	  If HWMON is selected, and the driver is told the reference voltage
412c8dc071SDavid Brownell	  on your board, you will also get hwmon interfaces for the voltage
4206a09124SMichael Hennerich	  (and on ads7846/tsc2046/ad7873, temperature) sensors of this chip.
432c8dc071SDavid Brownell
44ffa458c1SDavid Brownell	  If unsure, say N (but it's safe to say "Y").
45ffa458c1SDavid Brownell
46ffa458c1SDavid Brownell	  To compile this driver as a module, choose M here: the
47ffa458c1SDavid Brownell	  module will be called ads7846.
48ffa458c1SDavid Brownell
49331b78edSMichael Hennerichconfig TOUCHSCREEN_AD7877
50331b78edSMichael Hennerich	tristate "AD7877 based touchscreens"
51331b78edSMichael Hennerich	depends on SPI_MASTER
52331b78edSMichael Hennerich	help
53331b78edSMichael Hennerich	  Say Y here if you have a touchscreen interface using the
54331b78edSMichael Hennerich	  AD7877 controller, and your board-specific initialization
55331b78edSMichael Hennerich	  code includes that in its table of SPI devices.
56331b78edSMichael Hennerich
57331b78edSMichael Hennerich	  If unsure, say N (but it's safe to say "Y").
58331b78edSMichael Hennerich
59331b78edSMichael Hennerich	  To compile this driver as a module, choose M here: the
60331b78edSMichael Hennerich	  module will be called ad7877.
61331b78edSMichael Hennerich
624397c98aSMike Frysingerconfig TOUCHSCREEN_AD7879
634397c98aSMike Frysinger	tristate "Analog Devices AD7879-1/AD7889-1 touchscreen interface"
64b4be468cSMichael Hennerich	help
654397c98aSMike Frysinger	  Say Y here if you want to support a touchscreen interface using
664397c98aSMike Frysinger	  the AD7879-1/AD7889-1 controller.
67b4be468cSMichael Hennerich
684397c98aSMike Frysinger	  You should select a bus connection too.
69b4be468cSMichael Hennerich
70b4be468cSMichael Hennerich	  To compile this driver as a module, choose M here: the
71b4be468cSMichael Hennerich	  module will be called ad7879.
72b4be468cSMichael Hennerich
734397c98aSMike Frysingerconfig TOUCHSCREEN_AD7879_I2C
744397c98aSMike Frysinger	tristate "support I2C bus connection"
754397c98aSMike Frysinger	depends on TOUCHSCREEN_AD7879 && I2C
76404a24c3SDmitry Torokhov	select REGMAP_I2C
774397c98aSMike Frysinger	help
784397c98aSMike Frysinger	  Say Y here if you have AD7879-1/AD7889-1 hooked to an I2C bus.
794397c98aSMike Frysinger
804397c98aSMike Frysinger	  To compile this driver as a module, choose M here: the
814397c98aSMike Frysinger	  module will be called ad7879-i2c.
824397c98aSMike Frysinger
83b4be468cSMichael Hennerichconfig TOUCHSCREEN_AD7879_SPI
844397c98aSMike Frysinger	tristate "support SPI bus connection"
854397c98aSMike Frysinger	depends on TOUCHSCREEN_AD7879 && SPI_MASTER
86404a24c3SDmitry Torokhov	select REGMAP_SPI
87b4be468cSMichael Hennerich	help
884397c98aSMike Frysinger	  Say Y here if you have AD7879-1/AD7889-1 hooked to a SPI bus.
89b4be468cSMichael Hennerich
90b4be468cSMichael Hennerich	  If unsure, say N (but it's safe to say "Y").
91b4be468cSMichael Hennerich
92b4be468cSMichael Hennerich	  To compile this driver as a module, choose M here: the
934397c98aSMike Frysinger	  module will be called ad7879-spi.
94b4be468cSMichael Hennerich
95dd4cae8bSChristian Gmeinerconfig TOUCHSCREEN_AR1021_I2C
96021cbc1eSMartin Kepplinger	tristate "Microchip AR1020/1021 i2c touchscreen"
97dd4cae8bSChristian Gmeiner	depends on I2C && OF
98dd4cae8bSChristian Gmeiner	help
99021cbc1eSMartin Kepplinger	  Say Y here if you have the Microchip AR1020 or AR1021 touchscreen
100021cbc1eSMartin Kepplinger	  controller chip in your system.
101dd4cae8bSChristian Gmeiner
102dd4cae8bSChristian Gmeiner	  If unsure, say N.
103dd4cae8bSChristian Gmeiner
104dd4cae8bSChristian Gmeiner	  To compile this driver as a module, choose M here: the
105dd4cae8bSChristian Gmeiner	  module will be called ar1021_i2c.
106dd4cae8bSChristian Gmeiner
107964de521SDmitry Torokhovconfig TOUCHSCREEN_ATMEL_MXT
108964de521SDmitry Torokhov	tristate "Atmel mXT I2C Touchscreen"
109964de521SDmitry Torokhov	depends on I2C
11082c2c0d6SNick Dyer	select FW_LOADER
111964de521SDmitry Torokhov	help
112964de521SDmitry Torokhov	  Say Y here if you have Atmel mXT series I2C touchscreen,
113964de521SDmitry Torokhov	  such as AT42QT602240/ATMXT224, connected to your system.
114964de521SDmitry Torokhov
115964de521SDmitry Torokhov	  If unsure, say N.
116964de521SDmitry Torokhov
117964de521SDmitry Torokhov	  To compile this driver as a module, choose M here: the
118964de521SDmitry Torokhov	  module will be called atmel_mxt_ts.
119964de521SDmitry Torokhov
120d6a39404SNick Dyerconfig TOUCHSCREEN_ATMEL_MXT_T37
121d6a39404SNick Dyer	bool "Support T37 Diagnostic Data"
1227a4b9a29SArnd Bergmann	depends on TOUCHSCREEN_ATMEL_MXT
1237a4b9a29SArnd Bergmann	depends on VIDEO_V4L2=y || (TOUCHSCREEN_ATMEL_MXT=m && VIDEO_V4L2=m)
124ecfdd7e2SNick Dyer	select VIDEOBUF2_VMALLOC
125d6a39404SNick Dyer	help
126ecfdd7e2SNick Dyer	  Say Y here if you want support to output data from the T37
127ecfdd7e2SNick Dyer	  Diagnostic Data object using a V4L device.
128d6a39404SNick Dyer
1295245db49SHeiko Stübnerconfig TOUCHSCREEN_AUO_PIXCIR
1305245db49SHeiko Stübner	tristate "AUO in-cell touchscreen using Pixcir ICs"
1315245db49SHeiko Stübner	depends on I2C
1327d6548abSGeert Uytterhoeven	depends on GPIOLIB || COMPILE_TEST
1335245db49SHeiko Stübner	help
1345245db49SHeiko Stübner	  Say Y here if you have a AUO display with in-cell touchscreen
1355245db49SHeiko Stübner	  using Pixcir ICs.
1365245db49SHeiko Stübner
1375245db49SHeiko Stübner	  If unsure, say N.
1385245db49SHeiko Stübner
1395245db49SHeiko Stübner	  To compile this driver as a module, choose M here: the
1405245db49SHeiko Stübner	  module will be called auo-pixcir-ts.
1415245db49SHeiko Stübner
1424780c8dfSNaveen Kumar Gaddipaticonfig TOUCHSCREEN_BU21013
1434780c8dfSNaveen Kumar Gaddipati	tristate "BU21013 based touch panel controllers"
1444780c8dfSNaveen Kumar Gaddipati	depends on I2C
1454780c8dfSNaveen Kumar Gaddipati	help
1464780c8dfSNaveen Kumar Gaddipati	  Say Y here if you have a bu21013 touchscreen connected to
1474780c8dfSNaveen Kumar Gaddipati	  your system.
1484780c8dfSNaveen Kumar Gaddipati
1494780c8dfSNaveen Kumar Gaddipati	  If unsure, say N.
1504780c8dfSNaveen Kumar Gaddipati
1514780c8dfSNaveen Kumar Gaddipati	  To compile this driver as a module, choose M here: the
1524780c8dfSNaveen Kumar Gaddipati	  module will be called bu21013_ts.
1534780c8dfSNaveen Kumar Gaddipati
1543a658f23SZhu Yiconfig TOUCHSCREEN_BU21029
1553a658f23SZhu Yi	tristate "Rohm BU21029 based touch panel controllers"
1563a658f23SZhu Yi	depends on I2C
1573a658f23SZhu Yi	help
1583a658f23SZhu Yi	  Say Y here if you have a Rohm BU21029 touchscreen controller
1593a658f23SZhu Yi	  connected to your system.
1603a658f23SZhu Yi
1613a658f23SZhu Yi	  If unsure, say N.
1623a658f23SZhu Yi
1633a658f23SZhu Yi	  To compile this driver as a module, choose M here: the
1643a658f23SZhu Yi	  module will be called bu21029_ts.
1653a658f23SZhu Yi
166a93ad65dSHans de Goedeconfig TOUCHSCREEN_CHIPONE_ICN8318
167a93ad65dSHans de Goede	tristate "chipone icn8318 touchscreen controller"
1687d6548abSGeert Uytterhoeven	depends on GPIOLIB || COMPILE_TEST
169a93ad65dSHans de Goede	depends on I2C
170a93ad65dSHans de Goede	depends on OF
171a93ad65dSHans de Goede	help
172a93ad65dSHans de Goede	  Say Y here if you have a ChipOne icn8318 based I2C touchscreen.
173a93ad65dSHans de Goede
174a93ad65dSHans de Goede	  If unsure, say N.
175a93ad65dSHans de Goede
176a93ad65dSHans de Goede	  To compile this driver as a module, choose M here: the
177a93ad65dSHans de Goede	  module will be called chipone_icn8318.
178a93ad65dSHans de Goede
179e7330fa0SHans de Goedeconfig TOUCHSCREEN_CHIPONE_ICN8505
180e7330fa0SHans de Goede	tristate "chipone icn8505 touchscreen controller"
181e7330fa0SHans de Goede	depends on I2C && ACPI
182e7330fa0SHans de Goede	help
183e7330fa0SHans de Goede	  Say Y here if you have a ChipOne icn8505 based I2C touchscreen.
184e7330fa0SHans de Goede
185e7330fa0SHans de Goede	  If unsure, say N.
186e7330fa0SHans de Goede
187e7330fa0SHans de Goede	  To compile this driver as a module, choose M here: the
188e7330fa0SHans de Goede	  module will be called chipone_icn8505.
189e7330fa0SHans de Goede
19060347c19SSamuli Konttilaconfig TOUCHSCREEN_CY8CTMG110
19160347c19SSamuli Konttila	tristate "cy8ctmg110 touchscreen"
19260347c19SSamuli Konttila	depends on I2C
1937d6548abSGeert Uytterhoeven	depends on GPIOLIB || COMPILE_TEST
19460347c19SSamuli Konttila	help
19560347c19SSamuli Konttila	  Say Y here if you have a cy8ctmg110 capacitive touchscreen on
19660347c19SSamuli Konttila	  an AAVA device.
19760347c19SSamuli Konttila
19860347c19SSamuli Konttila	  If unsure, say N.
19960347c19SSamuli Konttila
20060347c19SSamuli Konttila	  To compile this driver as a module, choose M here: the
20160347c19SSamuli Konttila	  module will be called cy8ctmg110_ts.
20260347c19SSamuli Konttila
2034065d1e7SJavier Martinez Canillasconfig TOUCHSCREEN_CYTTSP_CORE
2044065d1e7SJavier Martinez Canillas	tristate "Cypress TTSP touchscreen"
2054065d1e7SJavier Martinez Canillas	help
2064065d1e7SJavier Martinez Canillas	  Say Y here if you have a touchscreen using controller from
2074065d1e7SJavier Martinez Canillas	  the Cypress TrueTouch(tm) Standard Product family connected
2084065d1e7SJavier Martinez Canillas	  to your system. You will also need to select appropriate
2094065d1e7SJavier Martinez Canillas	  bus connection below.
2104065d1e7SJavier Martinez Canillas
2114065d1e7SJavier Martinez Canillas	  If unsure, say N.
2124065d1e7SJavier Martinez Canillas
2134065d1e7SJavier Martinez Canillas	  To compile this driver as a module, choose M here: the
2144065d1e7SJavier Martinez Canillas	  module will be called cyttsp_core.
2154065d1e7SJavier Martinez Canillas
2164065d1e7SJavier Martinez Canillasconfig TOUCHSCREEN_CYTTSP_I2C
2174065d1e7SJavier Martinez Canillas	tristate "support I2C bus connection"
2184065d1e7SJavier Martinez Canillas	depends on TOUCHSCREEN_CYTTSP_CORE && I2C
2194065d1e7SJavier Martinez Canillas	help
2204065d1e7SJavier Martinez Canillas	  Say Y here if the touchscreen is connected via I2C bus.
2214065d1e7SJavier Martinez Canillas
2224065d1e7SJavier Martinez Canillas	  To compile this driver as a module, choose M here: the
2234065d1e7SJavier Martinez Canillas	  module will be called cyttsp_i2c.
2244065d1e7SJavier Martinez Canillas
2254065d1e7SJavier Martinez Canillasconfig TOUCHSCREEN_CYTTSP_SPI
2264065d1e7SJavier Martinez Canillas	tristate "support SPI bus connection"
2274065d1e7SJavier Martinez Canillas	depends on TOUCHSCREEN_CYTTSP_CORE && SPI_MASTER
2284065d1e7SJavier Martinez Canillas	help
2294065d1e7SJavier Martinez Canillas	  Say Y here if the touchscreen is connected via SPI bus.
2304065d1e7SJavier Martinez Canillas
2314065d1e7SJavier Martinez Canillas	  To compile this driver as a module, choose M here: the
2324065d1e7SJavier Martinez Canillas	  module will be called cyttsp_spi.
2334065d1e7SJavier Martinez Canillas
23417fb1563SFerruh Yigitconfig TOUCHSCREEN_CYTTSP4_CORE
23517fb1563SFerruh Yigit	tristate "Cypress TrueTouch Gen4 Touchscreen Driver"
23617fb1563SFerruh Yigit	help
23717fb1563SFerruh Yigit	  Core driver for Cypress TrueTouch(tm) Standard Product
23817fb1563SFerruh Yigit	  Generation4 touchscreen controllers.
23917fb1563SFerruh Yigit
24017fb1563SFerruh Yigit	  Say Y here if you have a Cypress Gen4 touchscreen.
24117fb1563SFerruh Yigit
24217fb1563SFerruh Yigit	  If unsure, say N.
24317fb1563SFerruh Yigit
24417fb1563SFerruh Yigit	  To compile this driver as a module, choose M here.
24517fb1563SFerruh Yigit
2464f9e8680SFerruh Yigitconfig TOUCHSCREEN_CYTTSP4_I2C
2474f9e8680SFerruh Yigit	tristate "support I2C bus connection"
2484f9e8680SFerruh Yigit	depends on TOUCHSCREEN_CYTTSP4_CORE && I2C
2494f9e8680SFerruh Yigit	help
2504f9e8680SFerruh Yigit	  Say Y here if the touchscreen is connected via I2C bus.
2514f9e8680SFerruh Yigit
2524f9e8680SFerruh Yigit	  To compile this driver as a module, choose M here: the
2534f9e8680SFerruh Yigit	  module will be called cyttsp4_i2c.
2544f9e8680SFerruh Yigit
25567bf12caSFerruh Yigitconfig TOUCHSCREEN_CYTTSP4_SPI
25667bf12caSFerruh Yigit	tristate "support SPI bus connection"
25767bf12caSFerruh Yigit	depends on TOUCHSCREEN_CYTTSP4_CORE && SPI_MASTER
25867bf12caSFerruh Yigit	help
25967bf12caSFerruh Yigit	  Say Y here if the touchscreen is connected via SPI bus.
26067bf12caSFerruh Yigit
26167bf12caSFerruh Yigit	  To compile this driver as a module, choose M here: the
26267bf12caSFerruh Yigit	  module will be called cyttsp4_spi.
26367bf12caSFerruh Yigit
2649bcc00b9SEric Miaoconfig TOUCHSCREEN_DA9034
2659bcc00b9SEric Miao	tristate "Touchscreen support for Dialog Semiconductor DA9034"
2669bcc00b9SEric Miao	depends on PMIC_DA903X
2679bcc00b9SEric Miao	default y
2689bcc00b9SEric Miao	help
2699bcc00b9SEric Miao	  Say Y here to enable the support for the touchscreen found
2709bcc00b9SEric Miao	  on Dialog Semiconductor DA9034 PMIC.
2719bcc00b9SEric Miao
272eead75a2SAshish Jangam	  If unsure, say N.
273eead75a2SAshish Jangam
274eead75a2SAshish Jangam	  To compile this driver as a module, choose M here: the
275eead75a2SAshish Jangam	  module will be called da9034-ts.
276eead75a2SAshish Jangam
277eead75a2SAshish Jangamconfig TOUCHSCREEN_DA9052
278eead75a2SAshish Jangam	tristate "Dialog DA9052/DA9053 TSI"
279eead75a2SAshish Jangam	depends on PMIC_DA9052
280eead75a2SAshish Jangam	help
281eead75a2SAshish Jangam	  Say Y here to support the touchscreen found on Dialog Semiconductor
282eead75a2SAshish Jangam	  DA9052-BC and DA9053-AA/Bx PMICs.
283eead75a2SAshish Jangam
284eead75a2SAshish Jangam	  If unsure, say N.
285eead75a2SAshish Jangam
286eead75a2SAshish Jangam	  To compile this driver as a module, choose M here: the
287eead75a2SAshish Jangam	  module will be called da9052_tsi.
288eead75a2SAshish Jangam
289a5f523bcSTias Gunsconfig TOUCHSCREEN_DYNAPRO
290a5f523bcSTias Guns	tristate "Dynapro serial touchscreen"
291a5f523bcSTias Guns	select SERIO
292a5f523bcSTias Guns	help
293a5f523bcSTias Guns	  Say Y here if you have a Dynapro serial touchscreen connected to
294a5f523bcSTias Guns	  your system.
295a5f523bcSTias Guns
296a5f523bcSTias Guns	  If unsure, say N.
297a5f523bcSTias Guns
298a5f523bcSTias Guns	  To compile this driver as a module, choose M here: the
299a5f523bcSTias Guns	  module will be called dynapro.
300a5f523bcSTias Guns
301422dee56SAdam Bennettconfig TOUCHSCREEN_HAMPSHIRE
302422dee56SAdam Bennett	tristate "Hampshire serial touchscreen"
303422dee56SAdam Bennett	select SERIO
304422dee56SAdam Bennett	help
305422dee56SAdam Bennett	  Say Y here if you have a Hampshire serial touchscreen connected to
306422dee56SAdam Bennett	  your system.
307422dee56SAdam Bennett
308422dee56SAdam Bennett	  If unsure, say N.
309422dee56SAdam Bennett
310422dee56SAdam Bennett	  To compile this driver as a module, choose M here: the
311422dee56SAdam Bennett	  module will be called hampshire.
312422dee56SAdam Bennett
31310494dceSDaniel Mackconfig TOUCHSCREEN_EETI
31410494dceSDaniel Mack	tristate "EETI touchscreen panel support"
31510494dceSDaniel Mack	depends on I2C
31610494dceSDaniel Mack	help
31710494dceSDaniel Mack	  Say Y here to enable support for I2C connected EETI touch panels.
31810494dceSDaniel Mack
31910494dceSDaniel Mack	  To compile this driver as a module, choose M here: the
32010494dceSDaniel Mack	  module will be called eeti_ts.
32110494dceSDaniel Mack
32259bae1dbSZhang Jiejingconfig TOUCHSCREEN_EGALAX
32359bae1dbSZhang Jiejing	tristate "EETI eGalax multi-touch panel support"
324ae495e84SHui Wang	depends on I2C && OF
32559bae1dbSZhang Jiejing	help
32659bae1dbSZhang Jiejing	  Say Y here to enable support for I2C connected EETI
32759bae1dbSZhang Jiejing	  eGalax multi-touch panels.
32859bae1dbSZhang Jiejing
32959bae1dbSZhang Jiejing	  To compile this driver as a module, choose M here: the
33059bae1dbSZhang Jiejing	  module will be called egalax_ts.
33159bae1dbSZhang Jiejing
3326b0f8f9cSBöszörményi Zoltánconfig TOUCHSCREEN_EGALAX_SERIAL
3336b0f8f9cSBöszörményi Zoltán	tristate "EETI eGalax serial touchscreen"
3346b0f8f9cSBöszörményi Zoltán	select SERIO
3356b0f8f9cSBöszörményi Zoltán	help
3366b0f8f9cSBöszörményi Zoltán	  Say Y here to enable support for serial connected EETI
3376b0f8f9cSBöszörményi Zoltán	  eGalax touch panels.
3386b0f8f9cSBöszörményi Zoltán
3396b0f8f9cSBöszörményi Zoltán	  To compile this driver as a module, choose M here: the
3406b0f8f9cSBöszörményi Zoltán	  module will be called egalax_ts_serial.
3416b0f8f9cSBöszörményi Zoltán
3427e577a17SAhmet Inanconfig TOUCHSCREEN_EXC3000
3437e577a17SAhmet Inan	tristate "EETI EXC3000 multi-touch panel support"
3447e577a17SAhmet Inan	depends on I2C
3457e577a17SAhmet Inan	help
3467e577a17SAhmet Inan	  Say Y here to enable support for I2C connected EETI
3477e577a17SAhmet Inan	  EXC3000 multi-touch panels.
3487e577a17SAhmet Inan
3497e577a17SAhmet Inan	  To compile this driver as a module, choose M here: the
3507e577a17SAhmet Inan	  module will be called exc3000.
3517e577a17SAhmet Inan
35285f202d5SDmitry Torokhovconfig TOUCHSCREEN_FUJITSU
35385f202d5SDmitry Torokhov	tristate "Fujitsu serial touchscreen"
35485f202d5SDmitry Torokhov	select SERIO
35585f202d5SDmitry Torokhov	help
35685f202d5SDmitry Torokhov	  Say Y here if you have the Fujitsu touchscreen (such as one
35785f202d5SDmitry Torokhov	  installed in Lifebook P series laptop) connected to your
35885f202d5SDmitry Torokhov	  system.
35985f202d5SDmitry Torokhov
36085f202d5SDmitry Torokhov	  If unsure, say N.
36185f202d5SDmitry Torokhov
36285f202d5SDmitry Torokhov	  To compile this driver as a module, choose M here: the
36385f202d5SDmitry Torokhov	  module will be called fujitsu-ts.
36485f202d5SDmitry Torokhov
365ca96ea86SBastien Noceraconfig TOUCHSCREEN_GOODIX
366ca96ea86SBastien Nocera	tristate "Goodix I2C touchscreen"
367771d8f1bSAleksei Mamlin	depends on I2C
3681261d013SGeert Uytterhoeven	depends on GPIOLIB || COMPILE_TEST
369ca96ea86SBastien Nocera	help
370ca96ea86SBastien Nocera	  Say Y here if you have the Goodix touchscreen (such as one
371ca96ea86SBastien Nocera	  installed in Onda v975w tablets) connected to your
372771d8f1bSAleksei Mamlin	  system. It also supports 5-finger chip models, which can be
373771d8f1bSAleksei Mamlin	  found on ARM tablets, like Wexler TAB7200 and MSI Primo73.
374ca96ea86SBastien Nocera
375ca96ea86SBastien Nocera	  If unsure, say N.
376ca96ea86SBastien Nocera
377ca96ea86SBastien Nocera	  To compile this driver as a module, choose M here: the
378ca96ea86SBastien Nocera	  module will be called goodix.
379ca96ea86SBastien Nocera
380842ff286SAnthony Kimconfig TOUCHSCREEN_HIDEEP
381842ff286SAnthony Kim	tristate "HiDeep Touch IC"
382842ff286SAnthony Kim	depends on I2C
383842ff286SAnthony Kim	help
384842ff286SAnthony Kim	  Say Y here if you have a touchscreen using HiDeep.
385842ff286SAnthony Kim
386842ff286SAnthony Kim	  If unsure, say N.
387842ff286SAnthony Kim
3886f226cffSMasanari Iida	  To compile this driver as a module, choose M here : the
389842ff286SAnthony Kim	  module will be called hideep_ts.
390842ff286SAnthony Kim
3915c6a7a62SOlivier Sobrieconfig TOUCHSCREEN_ILI210X
3925c6a7a62SOlivier Sobrie	tristate "Ilitek ILI210X based touchscreen"
3935c6a7a62SOlivier Sobrie	depends on I2C
3945c6a7a62SOlivier Sobrie	help
3955c6a7a62SOlivier Sobrie	  Say Y here if you have a ILI210X based touchscreen
3965c6a7a62SOlivier Sobrie	  controller. This driver supports models ILI2102,
3975c6a7a62SOlivier Sobrie	  ILI2102s, ILI2103, ILI2103s and ILI2105.
3985c6a7a62SOlivier Sobrie	  Such kind of chipsets can be found in Amazon Kindle Fire
3995c6a7a62SOlivier Sobrie	  touchscreens.
4005c6a7a62SOlivier Sobrie
4015c6a7a62SOlivier Sobrie	  If unsure, say N.
4025c6a7a62SOlivier Sobrie
4035c6a7a62SOlivier Sobrie	  To compile this driver as a module, choose M here: the
4045c6a7a62SOlivier Sobrie	  module will be called ili210x.
4055c6a7a62SOlivier Sobrie
406d5ae685fSJonathan Richardsonconfig TOUCHSCREEN_IPROC
407d5ae685fSJonathan Richardson	tristate "IPROC touch panel driver support"
408d5ae685fSJonathan Richardson	depends on ARCH_BCM_IPROC || COMPILE_TEST
409d5ae685fSJonathan Richardson	help
410d5ae685fSJonathan Richardson	  Say Y here if you want to add support for the IPROC touch
411d5ae685fSJonathan Richardson	  controller to your system.
412d5ae685fSJonathan Richardson
413d5ae685fSJonathan Richardson	  If unsure, say N.
414d5ae685fSJonathan Richardson
415d5ae685fSJonathan Richardson	  To compile this driver as a module, choose M here: the
416d5ae685fSJonathan Richardson	  module will be called bcm_iproc_tsc.
417d5ae685fSJonathan Richardson
418f5f96b93SArnaud Patardconfig TOUCHSCREEN_S3C2410
419504d36e9SBen Dooks	tristate "Samsung S3C2410/generic touchscreen input driver"
420b130d5c2SKukjin Kim	depends on ARCH_S3C24XX || SAMSUNG_DEV_TS
42194eb81adSArnd Bergmann	depends on S3C_ADC
422f5f96b93SArnaud Patard	help
423f5f96b93SArnaud Patard	  Say Y here if you have the s3c2410 touchscreen.
424f5f96b93SArnaud Patard
425f5f96b93SArnaud Patard	  If unsure, say N.
426f5f96b93SArnaud Patard
427f5f96b93SArnaud Patard	  To compile this driver as a module, choose M here: the
428f5f96b93SArnaud Patard	  module will be called s3c2410_ts.
429f5f96b93SArnaud Patard
4300145a714SAndi Shyticonfig TOUCHSCREEN_S6SY761
4310145a714SAndi Shyti	tristate "Samsung S6SY761 Touchscreen driver"
4320145a714SAndi Shyti	depends on I2C
4330145a714SAndi Shyti	help
4340145a714SAndi Shyti	  Say Y if you have the Samsung S6SY761 driver
4350145a714SAndi Shyti
4360145a714SAndi Shyti	  If unsure, say N
4370145a714SAndi Shyti
4380145a714SAndi Shyti	  To compile this driver as module, choose M here: the
4390145a714SAndi Shyti	  module will be called s6sy761.
4400145a714SAndi Shyti
4411da177e4SLinus Torvaldsconfig TOUCHSCREEN_GUNZE
4421da177e4SLinus Torvalds	tristate "Gunze AHL-51S touchscreen"
4431da177e4SLinus Torvalds	select SERIO
4441da177e4SLinus Torvalds	help
4451da177e4SLinus Torvalds	  Say Y here if you have the Gunze AHL-51 touchscreen connected to
4461da177e4SLinus Torvalds	  your system.
4471da177e4SLinus Torvalds
4481da177e4SLinus Torvalds	  If unsure, say N.
4491da177e4SLinus Torvalds
4501da177e4SLinus Torvalds	  To compile this driver as a module, choose M here: the
4511da177e4SLinus Torvalds	  module will be called gunze.
4521da177e4SLinus Torvalds
4539ca5bf50SSiebren Vroegindeweijconfig TOUCHSCREEN_EKTF2127
4549ca5bf50SSiebren Vroegindeweij	tristate "Elan eKTF2127 I2C touchscreen"
4559ca5bf50SSiebren Vroegindeweij	depends on I2C
4569ca5bf50SSiebren Vroegindeweij	help
4579ca5bf50SSiebren Vroegindeweij	  Say Y here if you have an Elan eKTF2127 touchscreen
4589ca5bf50SSiebren Vroegindeweij	  connected to your system.
4599ca5bf50SSiebren Vroegindeweij
4609ca5bf50SSiebren Vroegindeweij	  If unsure, say N.
4619ca5bf50SSiebren Vroegindeweij
4629ca5bf50SSiebren Vroegindeweij	  To compile this driver as a module, choose M here: the
4639ca5bf50SSiebren Vroegindeweij	  module will be called ektf2127.
4649ca5bf50SSiebren Vroegindeweij
46566aee900SScott Liuconfig TOUCHSCREEN_ELAN
46666aee900SScott Liu	tristate "Elan eKTH I2C touchscreen"
46766aee900SScott Liu	depends on I2C
46866aee900SScott Liu	help
46966aee900SScott Liu	  Say Y here if you have an Elan eKTH I2C touchscreen
47066aee900SScott Liu	  connected to your system.
47166aee900SScott Liu
47266aee900SScott Liu	  If unsure, say N.
47366aee900SScott Liu
47466aee900SScott Liu	  To compile this driver as a module, choose M here: the
47566aee900SScott Liu	  module will be called elants_i2c.
47666aee900SScott Liu
4771da177e4SLinus Torvaldsconfig TOUCHSCREEN_ELO
4781da177e4SLinus Torvalds	tristate "Elo serial touchscreens"
4791da177e4SLinus Torvalds	select SERIO
4801da177e4SLinus Torvalds	help
4811da177e4SLinus Torvalds	  Say Y here if you have an Elo serial touchscreen connected to
4821da177e4SLinus Torvalds	  your system.
4831da177e4SLinus Torvalds
4841da177e4SLinus Torvalds	  If unsure, say N.
4851da177e4SLinus Torvalds
4861da177e4SLinus Torvalds	  To compile this driver as a module, choose M here: the
487153ab429SMichael Prokop	  module will be called elo.
4881da177e4SLinus Torvalds
4893eb1aa43SJaya Kumarconfig TOUCHSCREEN_WACOM_W8001
4903eb1aa43SJaya Kumar	tristate "Wacom W8001 penabled serial touchscreen"
4913eb1aa43SJaya Kumar	select SERIO
4923eb1aa43SJaya Kumar	help
4933eb1aa43SJaya Kumar	  Say Y here if you have an Wacom W8001 penabled serial touchscreen
4943eb1aa43SJaya Kumar	  connected to your system.
4953eb1aa43SJaya Kumar
4963eb1aa43SJaya Kumar	  If unsure, say N.
4973eb1aa43SJaya Kumar
4983eb1aa43SJaya Kumar	  To compile this driver as a module, choose M here: the
4993eb1aa43SJaya Kumar	  module will be called wacom_w8001.
5003eb1aa43SJaya Kumar
5015a966261STatsunosuke Tobitaconfig TOUCHSCREEN_WACOM_I2C
5025a966261STatsunosuke Tobita	tristate "Wacom Tablet support (I2C)"
5035a966261STatsunosuke Tobita	depends on I2C
5045a966261STatsunosuke Tobita	help
5055a966261STatsunosuke Tobita	  Say Y here if you want to use the I2C version of the Wacom
5065a966261STatsunosuke Tobita	  Pen Tablet.
5075a966261STatsunosuke Tobita
5085a966261STatsunosuke Tobita	  If unsure, say N.
5095a966261STatsunosuke Tobita
5105a966261STatsunosuke Tobita	  To compile this driver as a module, choose M here: the module
5115a966261STatsunosuke Tobita	  will be called wacom_i2c.
5125a966261STatsunosuke Tobita
5133045a5f5SKevin Wellsconfig TOUCHSCREEN_LPC32XX
5143045a5f5SKevin Wells	tristate "LPC32XX touchscreen controller"
5153045a5f5SKevin Wells	depends on ARCH_LPC32XX
5163045a5f5SKevin Wells	help
5173045a5f5SKevin Wells	  Say Y here if you have a LPC32XX device and want
5183045a5f5SKevin Wells	  to support the built-in touchscreen.
5193045a5f5SKevin Wells
5203045a5f5SKevin Wells	  To compile this driver as a module, choose M here: the
5213045a5f5SKevin Wells	  module will be called lpc32xx_ts.
5223045a5f5SKevin Wells
52342033065SZhang Jiejingconfig TOUCHSCREEN_MAX11801
52442033065SZhang Jiejing	tristate "MAX11801 based touchscreens"
52542033065SZhang Jiejing	depends on I2C
52642033065SZhang Jiejing	help
52742033065SZhang Jiejing	  Say Y here if you have a MAX11801 based touchscreen
52842033065SZhang Jiejing	  controller.
52942033065SZhang Jiejing
53042033065SZhang Jiejing	  If unsure, say N.
53142033065SZhang Jiejing
53242033065SZhang Jiejing	  To compile this driver as a module, choose M here: the
53342033065SZhang Jiejing	  module will be called max11801_ts.
53442033065SZhang Jiejing
53538e783b3SJoonyoung Shimconfig TOUCHSCREEN_MCS5000
53638e783b3SJoonyoung Shim	tristate "MELFAS MCS-5000 touchscreen"
53738e783b3SJoonyoung Shim	depends on I2C
53838e783b3SJoonyoung Shim	help
53938e783b3SJoonyoung Shim	  Say Y here if you have the MELFAS MCS-5000 touchscreen controller
54038e783b3SJoonyoung Shim	  chip in your system.
54138e783b3SJoonyoung Shim
54238e783b3SJoonyoung Shim	  If unsure, say N.
54338e783b3SJoonyoung Shim
54438e783b3SJoonyoung Shim	  To compile this driver as a module, choose M here: the
54538e783b3SJoonyoung Shim	  module will be called mcs5000_ts.
5463eb1aa43SJaya Kumar
54707b8481dSJoonyoung Shimconfig TOUCHSCREEN_MMS114
54807b8481dSJoonyoung Shim	tristate "MELFAS MMS114 touchscreen"
5490244ad00SMartin Schwidefsky	depends on I2C
55007b8481dSJoonyoung Shim	help
55107b8481dSJoonyoung Shim	  Say Y here if you have the MELFAS MMS114 touchscreen controller
55207b8481dSJoonyoung Shim	  chip in your system.
55307b8481dSJoonyoung Shim
55407b8481dSJoonyoung Shim	  If unsure, say N.
55507b8481dSJoonyoung Shim
55607b8481dSJoonyoung Shim	  To compile this driver as a module, choose M here: the
55707b8481dSJoonyoung Shim	  module will be called mms114.
55807b8481dSJoonyoung Shim
5596ccb1d8fSSangwon Jeeconfig TOUCHSCREEN_MELFAS_MIP4
5606ccb1d8fSSangwon Jee	tristate "MELFAS MIP4 Touchscreen"
5616ccb1d8fSSangwon Jee	depends on I2C
5626ccb1d8fSSangwon Jee	help
5636ccb1d8fSSangwon Jee	  Say Y here if you have a MELFAS MIP4 Touchscreen device.
5646ccb1d8fSSangwon Jee
5656ccb1d8fSSangwon Jee	  If unsure, say N.
5666ccb1d8fSSangwon Jee
5676ccb1d8fSSangwon Jee	  To compile this driver as a module, choose M here:
5686ccb1d8fSSangwon Jee	  the module will be called melfas_mip4.
5696ccb1d8fSSangwon Jee
5701da177e4SLinus Torvaldsconfig TOUCHSCREEN_MTOUCH
5711da177e4SLinus Torvalds	tristate "MicroTouch serial touchscreens"
5721da177e4SLinus Torvalds	select SERIO
5731da177e4SLinus Torvalds	help
5741da177e4SLinus Torvalds	  Say Y here if you have a MicroTouch (3M) serial touchscreen connected to
5751da177e4SLinus Torvalds	  your system.
5761da177e4SLinus Torvalds
5771da177e4SLinus Torvalds	  If unsure, say N.
5781da177e4SLinus Torvalds
5791da177e4SLinus Torvalds	  To compile this driver as a module, choose M here: the
5801da177e4SLinus Torvalds	  module will be called mtouch.
5811da177e4SLinus Torvalds
5829a436d52SHaibo Chenconfig TOUCHSCREEN_IMX6UL_TSC
5839a436d52SHaibo Chen	tristate "Freescale i.MX6UL touchscreen controller"
5849a436d52SHaibo Chen	depends on (OF && GPIOLIB) || COMPILE_TEST
5859a436d52SHaibo Chen	help
5869a436d52SHaibo Chen	  Say Y here if you have a Freescale i.MX6UL, and want to
5879a436d52SHaibo Chen	  use the internal touchscreen controller.
5889a436d52SHaibo Chen
5899a436d52SHaibo Chen	  If unsure, say N.
5909a436d52SHaibo Chen
5919a436d52SHaibo Chen	  To compile this driver as a module, choose M here: the
5929a436d52SHaibo Chen	  module will be called imx6ul_tsc.
5939a436d52SHaibo Chen
5943cadd2d9SRichard Lemonconfig TOUCHSCREEN_INEXIO
5953cadd2d9SRichard Lemon	tristate "iNexio serial touchscreens"
5963cadd2d9SRichard Lemon	select SERIO
5973cadd2d9SRichard Lemon	help
5983cadd2d9SRichard Lemon	  Say Y here if you have an iNexio serial touchscreen connected to
5993cadd2d9SRichard Lemon	  your system.
6003cadd2d9SRichard Lemon
6013cadd2d9SRichard Lemon	  If unsure, say N.
6023cadd2d9SRichard Lemon
6033cadd2d9SRichard Lemon	  To compile this driver as a module, choose M here: the
6043cadd2d9SRichard Lemon	  module will be called inexio.
6053cadd2d9SRichard Lemon
6061da177e4SLinus Torvaldsconfig TOUCHSCREEN_MK712
6071da177e4SLinus Torvalds	tristate "ICS MicroClock MK712 touchscreen"
6081da177e4SLinus Torvalds	help
6091da177e4SLinus Torvalds	  Say Y here if you have the ICS MicroClock MK712 touchscreen
6101da177e4SLinus Torvalds	  controller chip in your system.
6111da177e4SLinus Torvalds
6121da177e4SLinus Torvalds	  If unsure, say N.
6131da177e4SLinus Torvalds
6141da177e4SLinus Torvalds	  To compile this driver as a module, choose M here: the
6151da177e4SLinus Torvalds	  module will be called mk712.
6161da177e4SLinus Torvalds
6171da177e4SLinus Torvaldsconfig TOUCHSCREEN_HP600
6184ff891ebSKristoffer Ericson	tristate "HP Jornada 6xx touchscreen"
6190025835cSPaul Mundt	depends on SH_HP6XX && SH_ADC
6201da177e4SLinus Torvalds	help
6214ff891ebSKristoffer Ericson	  Say Y here if you have a HP Jornada 620/660/680/690 and want to
6221da177e4SLinus Torvalds          support the built-in touchscreen.
6231da177e4SLinus Torvalds
6241da177e4SLinus Torvalds	  To compile this driver as a module, choose M here: the
6251da177e4SLinus Torvalds	  module will be called hp680_ts_input.
6261da177e4SLinus Torvalds
6275637f02aSKristoffer Ericsonconfig TOUCHSCREEN_HP7XX
6284ff891ebSKristoffer Ericson	tristate "HP Jornada 7xx touchscreen"
6295637f02aSKristoffer Ericson	depends on SA1100_JORNADA720_SSP
6305637f02aSKristoffer Ericson	help
6315637f02aSKristoffer Ericson	  Say Y here if you have a HP Jornada 710/720/728 and want
6325637f02aSKristoffer Ericson	  to support the built-in touchscreen.
6335637f02aSKristoffer Ericson
6345637f02aSKristoffer Ericson	  To compile this driver as a module, choose M here: the
6355637f02aSKristoffer Ericson	  module will be called jornada720_ts.
6365637f02aSKristoffer Ericson
6373ea7e551SDmitry Artamonowconfig TOUCHSCREEN_IPAQ_MICRO
6383ea7e551SDmitry Artamonow	tristate "HP iPAQ Atmel Micro ASIC touchscreen"
6393ea7e551SDmitry Artamonow	depends on MFD_IPAQ_MICRO
6403ea7e551SDmitry Artamonow	help
6413ea7e551SDmitry Artamonow	  Say Y here to enable support for the touchscreen attached to
6423ea7e551SDmitry Artamonow	  the Atmel Micro peripheral controller on iPAQ h3100/h3600/h3700
6433ea7e551SDmitry Artamonow
6443ea7e551SDmitry Artamonow	  If unsure, say N.
6453ea7e551SDmitry Artamonow
6463ea7e551SDmitry Artamonow	  To compile this driver as a module, choose M here: the
6473ea7e551SDmitry Artamonow	  module will be called ipaq-micro-ts.
6483ea7e551SDmitry Artamonow
6495a18c343SPau Oliva Foraconfig TOUCHSCREEN_HTCPEN
6505a18c343SPau Oliva Fora	tristate "HTC Shift X9500 touchscreen"
6515a18c343SPau Oliva Fora	depends on ISA
6525a18c343SPau Oliva Fora	help
6535a18c343SPau Oliva Fora	  Say Y here if you have an HTC Shift UMPC also known as HTC X9500
6545a18c343SPau Oliva Fora	  Clio / Shangrila and want to support the built-in touchscreen.
6555a18c343SPau Oliva Fora
6565a18c343SPau Oliva Fora	  If unsure, say N.
6575a18c343SPau Oliva Fora
6585a18c343SPau Oliva Fora	  To compile this driver as a module, choose M here: the
6595a18c343SPau Oliva Fora	  module will be called htcpen.
6605a18c343SPau Oliva Fora
661ee479999SRick Kochconfig TOUCHSCREEN_PENMOUNT
662ee479999SRick Koch	tristate "Penmount serial touchscreen"
663ee479999SRick Koch	select SERIO
664ee479999SRick Koch	help
665ee479999SRick Koch	  Say Y here if you have a Penmount serial touchscreen connected to
666ee479999SRick Koch	  your system.
667ee479999SRick Koch
668ee479999SRick Koch	  If unsure, say N.
669ee479999SRick Koch
670ee479999SRick Koch	  To compile this driver as a module, choose M here: the
671ee479999SRick Koch	  module will be called penmount.
672ee479999SRick Koch
67343c4d13eSSimon Budigconfig TOUCHSCREEN_EDT_FT5X06
67443c4d13eSSimon Budig	tristate "EDT FocalTech FT5x06 I2C Touchscreen support"
67543c4d13eSSimon Budig	depends on I2C
67643c4d13eSSimon Budig	help
67743c4d13eSSimon Budig	  Say Y here if you have an EDT "Polytouch" touchscreen based
67843c4d13eSSimon Budig	  on the FocalTech FT5x06 family of controllers connected to
67943c4d13eSSimon Budig	  your system.
68043c4d13eSSimon Budig
68143c4d13eSSimon Budig	  If unsure, say N.
68243c4d13eSSimon Budig
68343c4d13eSSimon Budig	  To compile this driver as a module, choose M here: the
68443c4d13eSSimon Budig	  module will be called edt-ft5x06.
68543c4d13eSSimon Budig
6860b9f28feSNicolas Saenz Julienneconfig TOUCHSCREEN_RASPBERRYPI_FW
6870b9f28feSNicolas Saenz Julienne	tristate "Raspberry Pi's firmware base touch screen support"
688*4add635bSAnders Roxell	depends on RASPBERRYPI_FIRMWARE || (RASPBERRYPI_FIRMWARE=n && COMPILE_TEST)
6890b9f28feSNicolas Saenz Julienne	help
6900b9f28feSNicolas Saenz Julienne	  Say Y here if you have the official Raspberry Pi 7 inch screen on
6910b9f28feSNicolas Saenz Julienne	  your system.
6920b9f28feSNicolas Saenz Julienne
6930b9f28feSNicolas Saenz Julienne	  If unsure, say N.
6940b9f28feSNicolas Saenz Julienne
6950b9f28feSNicolas Saenz Julienne	  To compile this driver as a module, choose M here: the
6960b9f28feSNicolas Saenz Julienne	  module will be called raspberrypi-ts.
6970b9f28feSNicolas Saenz Julienne
698885c316dSMagnus Dammconfig TOUCHSCREEN_MIGOR
699885c316dSMagnus Damm	tristate "Renesas MIGO-R touchscreen"
700db36ae85SJavier Martinez Canillas	depends on (SH_MIGOR || COMPILE_TEST) && I2C
701885c316dSMagnus Damm	help
702885c316dSMagnus Damm	  Say Y here to enable MIGO-R touchscreen support.
703885c316dSMagnus Damm
704885c316dSMagnus Damm	  If unsure, say N.
705885c316dSMagnus Damm
706885c316dSMagnus Damm	  To compile this driver as a module, choose M here: the
707885c316dSMagnus Damm	  module will be called migor_ts.
708885c316dSMagnus Damm
7094003dff4SRick Kochconfig TOUCHSCREEN_TOUCHRIGHT
7104003dff4SRick Koch	tristate "Touchright serial touchscreen"
7114003dff4SRick Koch	select SERIO
7124003dff4SRick Koch	help
7134003dff4SRick Koch	  Say Y here if you have a Touchright serial touchscreen connected to
7144003dff4SRick Koch	  your system.
7154003dff4SRick Koch
7164003dff4SRick Koch	  If unsure, say N.
7174003dff4SRick Koch
7184003dff4SRick Koch	  To compile this driver as a module, choose M here: the
7194003dff4SRick Koch	  module will be called touchright.
7204003dff4SRick Koch
72111ea3173SRick Kochconfig TOUCHSCREEN_TOUCHWIN
72211ea3173SRick Koch	tristate "Touchwin serial touchscreen"
72311ea3173SRick Koch	select SERIO
72411ea3173SRick Koch	help
72511ea3173SRick Koch	  Say Y here if you have a Touchwin serial touchscreen connected to
72611ea3173SRick Koch	  your system.
72711ea3173SRick Koch
72811ea3173SRick Koch	  If unsure, say N.
72911ea3173SRick Koch
73011ea3173SRick Koch	  To compile this driver as a module, choose M here: the
73111ea3173SRick Koch	  module will be called touchwin.
73211ea3173SRick Koch
73355c04de5SPatil, Rachnaconfig TOUCHSCREEN_TI_AM335X_TSC
7341b8be32eSRachna Patil	tristate "TI Touchscreen Interface"
7352b99bafaSPatil, Rachna	depends on MFD_TI_AM335X_TSCADC
7361b8be32eSRachna Patil	help
7371b8be32eSRachna Patil	  Say Y here if you have 4/5/8 wire touchscreen controller
7381b8be32eSRachna Patil	  to be connected to the ADC controller on your TI AM335x SoC.
7391b8be32eSRachna Patil
7401b8be32eSRachna Patil	  If unsure, say N.
7411b8be32eSRachna Patil
7421b8be32eSRachna Patil	  To compile this driver as a module, choose M here: the
74355c04de5SPatil, Rachna	  module will be called ti_am335x_tsc.
7441b8be32eSRachna Patil
745f40219bfSNicolas Pitreconfig TOUCHSCREEN_UCB1400
746f40219bfSNicolas Pitre	tristate "Philips UCB1400 touchscreen"
74764c12e9bSAndrew Morton	depends on AC97_BUS
748d9105c2bSMarek Vašut	depends on UCB1400_CORE
749f40219bfSNicolas Pitre	help
750f40219bfSNicolas Pitre	  This enables support for the Philips UCB1400 touchscreen interface.
751f40219bfSNicolas Pitre	  The UCB1400 is an AC97 audio codec.  The touchscreen interface
752f40219bfSNicolas Pitre	  will be initialized only after the ALSA subsystem has been
753f40219bfSNicolas Pitre	  brought up and the UCB1400 detected.  You therefore have to
754f40219bfSNicolas Pitre	  configure ALSA support as well (either built-in or modular,
755f40219bfSNicolas Pitre	  independently of whether this driver is itself built-in or
756f40219bfSNicolas Pitre	  modular) for this driver to work.
757f40219bfSNicolas Pitre
758f40219bfSNicolas Pitre	  To compile this driver as a module, choose M here: the
759f40219bfSNicolas Pitre	  module will be called ucb1400_ts.
760f40219bfSNicolas Pitre
76136a281e2SJianchun Bianconfig TOUCHSCREEN_PIXCIR
76236a281e2SJianchun Bian	tristate "PIXCIR I2C touchscreens"
76336a281e2SJianchun Bian	depends on I2C
76436a281e2SJianchun Bian	help
76536a281e2SJianchun Bian	  Say Y here if you have a pixcir i2c touchscreen
76636a281e2SJianchun Bian	  controller.
76736a281e2SJianchun Bian
76836a281e2SJianchun Bian	  If unsure, say N.
76936a281e2SJianchun Bian
77036a281e2SJianchun Bian	  To compile this driver as a module, choose M here: the
77136a281e2SJianchun Bian	  module will be called pixcir_i2c_ts.
77236a281e2SJianchun Bian
7733e30c11cSHungNien Chenconfig TOUCHSCREEN_WDT87XX_I2C
7743e30c11cSHungNien Chen	tristate "Weida HiTech I2C touchscreen"
7753e30c11cSHungNien Chen	depends on I2C
7763e30c11cSHungNien Chen	help
7773e30c11cSHungNien Chen	  Say Y here if you have a Weida WDT87XX I2C touchscreen
7783e30c11cSHungNien Chen	  connected to your system.
7793e30c11cSHungNien Chen
7803e30c11cSHungNien Chen	  If unsure, say N.
7813e30c11cSHungNien Chen
7823e30c11cSHungNien Chen	  To compile this driver as a module, choose M here: the
7833e30c11cSHungNien Chen	  module will be called wdt87xx_i2c.
7843e30c11cSHungNien Chen
78500cfa730SMark Brownconfig TOUCHSCREEN_WM831X
78600cfa730SMark Brown	tristate "Support for WM831x touchscreen controllers"
78700cfa730SMark Brown	depends on MFD_WM831X
78800cfa730SMark Brown	help
78900cfa730SMark Brown	  This enables support for the touchscreen controller on the WM831x
79000cfa730SMark Brown	  series of PMICs.
79100cfa730SMark Brown
79200cfa730SMark Brown	  To compile this driver as a module, choose M here: the
79300cfa730SMark Brown	  module will be called wm831x-ts.
79400cfa730SMark Brown
795febf1dffSMark Brownconfig TOUCHSCREEN_WM97XX
796febf1dffSMark Brown	tristate "Support for WM97xx AC97 touchscreen controllers"
797ae9d1b5fSRobert Jarzmik	depends on AC97_BUS || AC97_BUS_NEW
798febf1dffSMark Brown	help
799febf1dffSMark Brown	  Say Y here if you have a Wolfson Microelectronics WM97xx
800febf1dffSMark Brown	  touchscreen connected to your system. Note that this option
801febf1dffSMark Brown	  only enables core driver, you will also need to select
802febf1dffSMark Brown	  support for appropriate chip below.
803febf1dffSMark Brown
804febf1dffSMark Brown	  If unsure, say N.
805febf1dffSMark Brown
806febf1dffSMark Brown	  To compile this driver as a module, choose M here: the
807febf1dffSMark Brown	  module will be called wm97xx-ts.
808febf1dffSMark Brown
8099448cefcSMark Brownconfig TOUCHSCREEN_WM9705
8109448cefcSMark Brown	bool "WM9705 Touchscreen interface support"
8119448cefcSMark Brown	depends on TOUCHSCREEN_WM97XX
812558a171dSMark Brown	default y
8139448cefcSMark Brown	help
814558a171dSMark Brown	  Say Y here to enable support for the Wolfson Microelectronics
815558a171dSMark Brown	  WM9705 touchscreen controller.
8169448cefcSMark Brown
817de22b9efSMark Brownconfig TOUCHSCREEN_WM9712
818de22b9efSMark Brown	bool "WM9712 Touchscreen interface support"
819de22b9efSMark Brown	depends on TOUCHSCREEN_WM97XX
820558a171dSMark Brown	default y
821de22b9efSMark Brown	help
822558a171dSMark Brown	  Say Y here to enable support for the Wolfson Microelectronics
823558a171dSMark Brown	  WM9712 touchscreen controller.
824de22b9efSMark Brown
825dca98e91SMark Brownconfig TOUCHSCREEN_WM9713
826dca98e91SMark Brown	bool "WM9713 Touchscreen interface support"
827dca98e91SMark Brown	depends on TOUCHSCREEN_WM97XX
828558a171dSMark Brown	default y
829dca98e91SMark Brown	help
830558a171dSMark Brown	  Say Y here to enable support for the Wolfson Microelectronics
831558a171dSMark Brown	  WM9713 touchscreen controller.
832dca98e91SMark Brown
8334db8a5f2SMark Brownconfig TOUCHSCREEN_WM97XX_MAINSTONE
834b833306fSMarek Vasut	tristate "WM97xx Mainstone/Palm accelerated touch"
8354db8a5f2SMark Brown	depends on TOUCHSCREEN_WM97XX && ARCH_PXA
8364db8a5f2SMark Brown	help
8374db8a5f2SMark Brown	  Say Y here for support for streaming mode with WM97xx touchscreens
838b833306fSMarek Vasut	  on Mainstone, Palm Tungsten T5, TX and LifeDrive systems.
8394db8a5f2SMark Brown
8404db8a5f2SMark Brown	  If unsure, say N.
8414db8a5f2SMark Brown
8424db8a5f2SMark Brown	  To compile this driver as a module, choose M here: the
8434db8a5f2SMark Brown	  module will be called mainstone-wm97xx.
8444db8a5f2SMark Brown
84522e39d34SMark Brownconfig TOUCHSCREEN_WM97XX_ZYLONITE
84622e39d34SMark Brown	tristate "Zylonite accelerated touch"
84722e39d34SMark Brown	depends on TOUCHSCREEN_WM97XX && MACH_ZYLONITE
84822e39d34SMark Brown	select TOUCHSCREEN_WM9713
84922e39d34SMark Brown	help
85022e39d34SMark Brown	  Say Y here for support for streaming mode with the touchscreen
85122e39d34SMark Brown	  on Zylonite systems.
85222e39d34SMark Brown
85322e39d34SMark Brown	  If unsure, say N.
85422e39d34SMark Brown
85522e39d34SMark Brown	  To compile this driver as a module, choose M here: the
85622e39d34SMark Brown	  module will be called zylonite-wm97xx.
85722e39d34SMark Brown
858d05e84e6SDmitry Torokhovconfig TOUCHSCREEN_USB_COMPOSITE
859d05e84e6SDmitry Torokhov	tristate "USB Touchscreen Driver"
8607a86edefSAl Viro	depends on USB_ARCH_HAS_HCD
861d05e84e6SDmitry Torokhov	select USB
862d05e84e6SDmitry Torokhov	help
863d05e84e6SDmitry Torokhov	  USB Touchscreen driver for:
864d05e84e6SDmitry Torokhov	  - eGalax Touchkit USB (also includes eTurboTouch CT-410/510/700)
865d05e84e6SDmitry Torokhov	  - PanJit TouchSet USB
866d05e84e6SDmitry Torokhov	  - 3M MicroTouch USB (EX II series)
867d05e84e6SDmitry Torokhov	  - ITM
868d05e84e6SDmitry Torokhov	  - some other eTurboTouch
869d05e84e6SDmitry Torokhov	  - Gunze AHL61
870d05e84e6SDmitry Torokhov	  - DMC TSC-10/25
871df561fcdSOndrej Zary	  - IRTOUCHSYSTEMS/UNITOP
872a14a8401SOndrej Zary	  - IdealTEK URTC1000
87314e40206SJerrold Jones	  - GoTop Super_Q2/GogoPen/PenPower tablets
874f7370699SJim Persson	  - JASTEC USB Touch Controller/DigiTech DTR-02U
8752330ed18SDaniel Silverstone	  - Zytronic controllers
876d2cc817aSMichael Gebetsroither	  - Elo TouchSystems 2700 IntelliTouch
877aa87512fSArmando Visconti	  - EasyTouch USB Touch Controller from Data Modul
878df052676SShawn Landden	  - e2i (Mimo monitors)
879d05e84e6SDmitry Torokhov
880d05e84e6SDmitry Torokhov	  Have a look at <http://linux.chapter7.ch/touchkit/> for
881d05e84e6SDmitry Torokhov	  a usage description and the required user-space stuff.
882d05e84e6SDmitry Torokhov
883d05e84e6SDmitry Torokhov	  To compile this driver as a module, choose M here: the
884d05e84e6SDmitry Torokhov	  module will be called usbtouchscreen.
885d05e84e6SDmitry Torokhov
886d81ca730SKsenija Stanojevicconfig TOUCHSCREEN_MXS_LRADC
887d81ca730SKsenija Stanojevic	tristate "Freescale i.MX23/i.MX28 LRADC touchscreen"
888d81ca730SKsenija Stanojevic	depends on MFD_MXS_LRADC
889d81ca730SKsenija Stanojevic	help
890d81ca730SKsenija Stanojevic	  Say Y here if you have a touchscreen connected to the low-resolution
891d81ca730SKsenija Stanojevic	  analog-to-digital converter (LRADC) on an i.MX23 or i.MX28 processor.
892d81ca730SKsenija Stanojevic
893d81ca730SKsenija Stanojevic	  To compile this driver as a module, choose M here: the module will be
894d81ca730SKsenija Stanojevic	  called mxs-lradc-ts.
895d81ca730SKsenija Stanojevic
8964f7ed234SMarkus Pargmannconfig TOUCHSCREEN_MX25
8974f7ed234SMarkus Pargmann	tristate "Freescale i.MX25 touchscreen input driver"
8984f7ed234SMarkus Pargmann	depends on MFD_MX25_TSADC
8994f7ed234SMarkus Pargmann	help
9004f7ed234SMarkus Pargmann	  Enable support for touchscreen connected to your i.MX25.
9014f7ed234SMarkus Pargmann
9024f7ed234SMarkus Pargmann	  To compile this driver as a module, choose M here: the
9034f7ed234SMarkus Pargmann	  module will be called fsl-imx25-tcq.
9044f7ed234SMarkus Pargmann
905d201fd5dSSascha Hauerconfig TOUCHSCREEN_MC13783
906d201fd5dSSascha Hauer	tristate "Freescale MC13783 touchscreen input driver"
907e5a3da21SAlexander Shiyan	depends on MFD_MC13XXX
908d201fd5dSSascha Hauer	help
909d201fd5dSSascha Hauer	  Say Y here if you have an Freescale MC13783 PMIC on your
910d201fd5dSSascha Hauer	  board and want to use its touchscreen
911d201fd5dSSascha Hauer
912d201fd5dSSascha Hauer	  If unsure, say N.
913d201fd5dSSascha Hauer
914d201fd5dSSascha Hauer	  To compile this driver as a module, choose M here: the
915d201fd5dSSascha Hauer	  module will be called mc13783_ts.
916d201fd5dSSascha Hauer
917d05e84e6SDmitry Torokhovconfig TOUCHSCREEN_USB_EGALAX
918d05e84e6SDmitry Torokhov	default y
9196a108a14SDavid Rientjes	bool "eGalax, eTurboTouch CT-410/510/700 device support" if EXPERT
920d05e84e6SDmitry Torokhov	depends on TOUCHSCREEN_USB_COMPOSITE
921d05e84e6SDmitry Torokhov
922d05e84e6SDmitry Torokhovconfig TOUCHSCREEN_USB_PANJIT
923d05e84e6SDmitry Torokhov	default y
9246a108a14SDavid Rientjes	bool "PanJit device support" if EXPERT
925d05e84e6SDmitry Torokhov	depends on TOUCHSCREEN_USB_COMPOSITE
926d05e84e6SDmitry Torokhov
927d05e84e6SDmitry Torokhovconfig TOUCHSCREEN_USB_3M
928d05e84e6SDmitry Torokhov	default y
9296a108a14SDavid Rientjes	bool "3M/Microtouch EX II series device support" if EXPERT
930d05e84e6SDmitry Torokhov	depends on TOUCHSCREEN_USB_COMPOSITE
931d05e84e6SDmitry Torokhov
932d05e84e6SDmitry Torokhovconfig TOUCHSCREEN_USB_ITM
933d05e84e6SDmitry Torokhov	default y
9346a108a14SDavid Rientjes	bool "ITM device support" if EXPERT
935d05e84e6SDmitry Torokhov	depends on TOUCHSCREEN_USB_COMPOSITE
936d05e84e6SDmitry Torokhov
937d05e84e6SDmitry Torokhovconfig TOUCHSCREEN_USB_ETURBO
938d05e84e6SDmitry Torokhov	default y
9396a108a14SDavid Rientjes	bool "eTurboTouch (non-eGalax compatible) device support" if EXPERT
940d05e84e6SDmitry Torokhov	depends on TOUCHSCREEN_USB_COMPOSITE
941d05e84e6SDmitry Torokhov
942d05e84e6SDmitry Torokhovconfig TOUCHSCREEN_USB_GUNZE
943d05e84e6SDmitry Torokhov	default y
9446a108a14SDavid Rientjes	bool "Gunze AHL61 device support" if EXPERT
945d05e84e6SDmitry Torokhov	depends on TOUCHSCREEN_USB_COMPOSITE
946d05e84e6SDmitry Torokhov
947d05e84e6SDmitry Torokhovconfig TOUCHSCREEN_USB_DMC_TSC10
948d05e84e6SDmitry Torokhov	default y
9496a108a14SDavid Rientjes	bool "DMC TSC-10/25 device support" if EXPERT
950d05e84e6SDmitry Torokhov	depends on TOUCHSCREEN_USB_COMPOSITE
951d05e84e6SDmitry Torokhov
952df561fcdSOndrej Zaryconfig TOUCHSCREEN_USB_IRTOUCH
953df561fcdSOndrej Zary	default y
9546a108a14SDavid Rientjes	bool "IRTOUCHSYSTEMS/UNITOP device support" if EXPERT
955df561fcdSOndrej Zary	depends on TOUCHSCREEN_USB_COMPOSITE
956df561fcdSOndrej Zary
957a14a8401SOndrej Zaryconfig TOUCHSCREEN_USB_IDEALTEK
958a14a8401SOndrej Zary	default y
9596a108a14SDavid Rientjes	bool "IdealTEK URTC1000 device support" if EXPERT
960a14a8401SOndrej Zary	depends on TOUCHSCREEN_USB_COMPOSITE
961a14a8401SOndrej Zary
9629d5657dbSIlya Frolovconfig TOUCHSCREEN_USB_GENERAL_TOUCH
9639d5657dbSIlya Frolov	default y
9646a108a14SDavid Rientjes	bool "GeneralTouch Touchscreen device support" if EXPERT
9659d5657dbSIlya Frolov	depends on TOUCHSCREEN_USB_COMPOSITE
9669d5657dbSIlya Frolov
96714e40206SJerrold Jonesconfig TOUCHSCREEN_USB_GOTOP
96814e40206SJerrold Jones	default y
9696a108a14SDavid Rientjes	bool "GoTop Super_Q2/GogoPen/PenPower tablet device support" if EXPERT
97014e40206SJerrold Jones	depends on TOUCHSCREEN_USB_COMPOSITE
97114e40206SJerrold Jones
972f7370699SJim Perssonconfig TOUCHSCREEN_USB_JASTEC
973f7370699SJim Persson	default y
9746a108a14SDavid Rientjes	bool "JASTEC/DigiTech DTR-02U USB touch controller device support" if EXPERT
975f7370699SJim Persson	depends on TOUCHSCREEN_USB_COMPOSITE
976f7370699SJim Persson
977d2cc817aSMichael Gebetsroitherconfig TOUCHSCREEN_USB_ELO
978d2cc817aSMichael Gebetsroither	default y
979d2cc817aSMichael Gebetsroither	bool "Elo TouchSystems 2700 IntelliTouch controller device support" if EXPERT
980d2cc817aSMichael Gebetsroither	depends on TOUCHSCREEN_USB_COMPOSITE
981d2cc817aSMichael Gebetsroither
9829e3b2583SFlorian Echtlerconfig TOUCHSCREEN_USB_E2I
9839e3b2583SFlorian Echtler	default y
984df052676SShawn Landden	bool "e2i Touchscreen controller (e.g. from Mimo 740)" if EXPERT
9859e3b2583SFlorian Echtler	depends on TOUCHSCREEN_USB_COMPOSITE
9869e3b2583SFlorian Echtler
9872330ed18SDaniel Silverstoneconfig TOUCHSCREEN_USB_ZYTRONIC
9882330ed18SDaniel Silverstone	default y
9896a108a14SDavid Rientjes	bool "Zytronic controller" if EXPERT
9902330ed18SDaniel Silverstone	depends on TOUCHSCREEN_USB_COMPOSITE
9912330ed18SDaniel Silverstone
99238771bb4SPetr Štetiarconfig TOUCHSCREEN_USB_ETT_TC45USB
993dbe1420bSPetr Štetiar	default y
9946a108a14SDavid Rientjes	bool "ET&T USB series TC4UM/TC5UH touchscreen controller support" if EXPERT
995dbe1420bSPetr Štetiar	depends on TOUCHSCREEN_USB_COMPOSITE
996dbe1420bSPetr Štetiar
9975197424cSOndrej Zaryconfig TOUCHSCREEN_USB_NEXIO
9985197424cSOndrej Zary	default y
9996a108a14SDavid Rientjes	bool "NEXIO/iNexio device support" if EXPERT
10005197424cSOndrej Zary	depends on TOUCHSCREEN_USB_COMPOSITE
10015197424cSOndrej Zary
1002aa87512fSArmando Visconticonfig TOUCHSCREEN_USB_EASYTOUCH
1003aa87512fSArmando Visconti	default y
10048d25fee2SRandy Dunlap	bool "EasyTouch USB Touch controller device support" if EXPERT
1005aa87512fSArmando Visconti	depends on TOUCHSCREEN_USB_COMPOSITE
1006aa87512fSArmando Visconti	help
100741baf636SShawn Landden	  Say Y here if you have an EasyTouch USB Touch controller.
1008aa87512fSArmando Visconti	  If unsure, say N.
1009aa87512fSArmando Visconti
101073422392SClaudio Niederconfig TOUCHSCREEN_TOUCHIT213
101173422392SClaudio Nieder	tristate "Sahara TouchIT-213 touchscreen"
101273422392SClaudio Nieder	select SERIO
101373422392SClaudio Nieder	help
101473422392SClaudio Nieder	  Say Y here if you have a Sahara TouchIT-213 Tablet PC.
101573422392SClaudio Nieder
101673422392SClaudio Nieder	  If unsure, say N.
101773422392SClaudio Nieder
101873422392SClaudio Nieder	  To compile this driver as a module, choose M here: the
101973422392SClaudio Nieder	  module will be called touchit213.
102073422392SClaudio Nieder
102140e3be39SDamien Riegelconfig TOUCHSCREEN_TS4800
102240e3be39SDamien Riegel	tristate "TS-4800 touchscreen"
102340e3be39SDamien Riegel	depends on HAS_IOMEM && OF
1024cd1480aeSJean Delvare	depends on SOC_IMX51 || COMPILE_TEST
102540e3be39SDamien Riegel	select MFD_SYSCON
102640e3be39SDamien Riegel	select INPUT_POLLDEV
102740e3be39SDamien Riegel	help
102840e3be39SDamien Riegel	  Say Y here if you have a touchscreen on a TS-4800 board.
102940e3be39SDamien Riegel
103040e3be39SDamien Riegel	  On TS-4800, the touchscreen is not handled directly by Linux but by
103140e3be39SDamien Riegel	  a companion FPGA.
103240e3be39SDamien Riegel
103340e3be39SDamien Riegel	  If unsure, say N.
103440e3be39SDamien Riegel
103540e3be39SDamien Riegel	  To compile this driver as a module, choose M here: the
103640e3be39SDamien Riegel	  module will be called ts4800_ts.
103740e3be39SDamien Riegel
1038f01536e3SSebastian Andrzej Siewiorconfig TOUCHSCREEN_TSC_SERIO
1039f01536e3SSebastian Andrzej Siewior	tristate "TSC-10/25/40 serial touchscreen support"
1040f01536e3SSebastian Andrzej Siewior	select SERIO
1041f01536e3SSebastian Andrzej Siewior	help
1042f01536e3SSebastian Andrzej Siewior	  Say Y here if you have a TSC-10, 25 or 40 serial touchscreen connected
1043f01536e3SSebastian Andrzej Siewior	  to your system.
1044f01536e3SSebastian Andrzej Siewior
1045f01536e3SSebastian Andrzej Siewior	  If unsure, say N.
1046f01536e3SSebastian Andrzej Siewior
1047f01536e3SSebastian Andrzej Siewior	  To compile this driver as a module, choose M here: the
1048f01536e3SSebastian Andrzej Siewior	  module will be called tsc40.
1049f01536e3SSebastian Andrzej Siewior
10506ac24381SMichael Wellingconfig TOUCHSCREEN_TSC200X_CORE
10516ac24381SMichael Welling	tristate
10526ac24381SMichael Welling
1053a748941cSMichael Wellingconfig TOUCHSCREEN_TSC2004
1054a748941cSMichael Welling	tristate "TSC2004 based touchscreens"
1055a748941cSMichael Welling	depends on I2C
1056a748941cSMichael Welling	select REGMAP_I2C
1057a748941cSMichael Welling	select TOUCHSCREEN_TSC200X_CORE
1058a748941cSMichael Welling	help
1059a748941cSMichael Welling	  Say Y here if you have a TSC2004 based touchscreen.
1060a748941cSMichael Welling
1061a748941cSMichael Welling	  If unsure, say N.
1062a748941cSMichael Welling
1063a748941cSMichael Welling	  To compile this driver as a module, choose M here: the
1064a748941cSMichael Welling	  module will be called tsc2004.
1065a748941cSMichael Welling
106637bd4469SLauri Leukkunenconfig TOUCHSCREEN_TSC2005
106737bd4469SLauri Leukkunen	tristate "TSC2005 based touchscreens"
10680244ad00SMartin Schwidefsky	depends on SPI_MASTER
1069273cf48aSSebastian Reichel	select REGMAP_SPI
10706ac24381SMichael Welling	select TOUCHSCREEN_TSC200X_CORE
107137bd4469SLauri Leukkunen	help
107237bd4469SLauri Leukkunen	  Say Y here if you have a TSC2005 based touchscreen.
107337bd4469SLauri Leukkunen
107437bd4469SLauri Leukkunen	  If unsure, say N.
107537bd4469SLauri Leukkunen
107637bd4469SLauri Leukkunen	  To compile this driver as a module, choose M here: the
107737bd4469SLauri Leukkunen	  module will be called tsc2005.
107837bd4469SLauri Leukkunen
107950b6f1f4SKwangwoo Leeconfig TOUCHSCREEN_TSC2007
108050b6f1f4SKwangwoo Lee	tristate "TSC2007 based touchscreens"
108150b6f1f4SKwangwoo Lee	depends on I2C
108250b6f1f4SKwangwoo Lee	help
108350b6f1f4SKwangwoo Lee	  Say Y here if you have a TSC2007 based touchscreen.
108450b6f1f4SKwangwoo Lee
108550b6f1f4SKwangwoo Lee	  If unsure, say N.
108650b6f1f4SKwangwoo Lee
108750b6f1f4SKwangwoo Lee	  To compile this driver as a module, choose M here: the
108850b6f1f4SKwangwoo Lee	  module will be called tsc2007.
108950b6f1f4SKwangwoo Lee
1090f1443404SH. Nikolaus Schallerconfig TOUCHSCREEN_TSC2007_IIO
1091f1443404SH. Nikolaus Schaller	bool "IIO interface for external ADC input and temperature"
1092f1443404SH. Nikolaus Schaller	depends on TOUCHSCREEN_TSC2007
1093f1443404SH. Nikolaus Schaller	depends on IIO=y || IIO=TOUCHSCREEN_TSC2007
1094f1443404SH. Nikolaus Schaller	help
1095f1443404SH. Nikolaus Schaller	  Saying Y here adds an iio interface to the tsc2007 which
1096f1443404SH. Nikolaus Schaller	  provides values for the AUX input (used for e.g. battery
1097f1443404SH. Nikolaus Schaller	  or ambient light monitoring), temperature and raw input
1098f1443404SH. Nikolaus Schaller	  values.
1099f1443404SH. Nikolaus Schaller
11007e3f7375SWan ZongShunconfig TOUCHSCREEN_W90X900
11017e3f7375SWan ZongShun	tristate "W90P910 touchscreen driver"
1102e5e0937cSJean Delvare	depends on ARCH_W90X900
11037e3f7375SWan ZongShun	help
11047e3f7375SWan ZongShun	  Say Y here if you have a W90P910 based touchscreen.
11057e3f7375SWan ZongShun
11067e3f7375SWan ZongShun	  To compile this driver as a module, choose M here: the
11077e3f7375SWan ZongShun	  module will be called w90p910_ts.
11087e3f7375SWan ZongShun
11090387e107SDaniel Ribeiroconfig TOUCHSCREEN_PCAP
11100387e107SDaniel Ribeiro	tristate "Motorola PCAP touchscreen"
11110387e107SDaniel Ribeiro	depends on EZX_PCAP
11120387e107SDaniel Ribeiro	help
11130387e107SDaniel Ribeiro	  Say Y here if you have a Motorola EZX telephone and
11140387e107SDaniel Ribeiro	  want to enable support for the built-in touchscreen.
11150387e107SDaniel Ribeiro
11160387e107SDaniel Ribeiro	  To compile this driver as a module, choose M here: the
11170387e107SDaniel Ribeiro	  module will be called pcap_ts.
111875259966STodd Fischer
111948a2b783SJeffrey Linconfig TOUCHSCREEN_RM_TS
112048a2b783SJeffrey Lin	tristate "Raydium I2C Touchscreen"
112148a2b783SJeffrey Lin	depends on I2C
112248a2b783SJeffrey Lin	depends on GPIOLIB || COMPILE_TEST
112348a2b783SJeffrey Lin	help
112448a2b783SJeffrey Lin	  Say Y here if you have Raydium series I2C touchscreen,
112548a2b783SJeffrey Lin	  such as RM32380, connected to your system.
112648a2b783SJeffrey Lin
112748a2b783SJeffrey Lin	  If unsure, say N.
112848a2b783SJeffrey Lin
112948a2b783SJeffrey Lin	  To compile this driver as a module, choose M here: the
113048a2b783SJeffrey Lin	  module will be called raydium_i2c_ts.
113148a2b783SJeffrey Lin
11323197704cSRobert Dolcaconfig TOUCHSCREEN_SILEAD
11333197704cSRobert Dolca	tristate "Silead I2C touchscreen"
11343197704cSRobert Dolca	depends on I2C
11353197704cSRobert Dolca	help
11363197704cSRobert Dolca	  Say Y here if you have the Silead touchscreen connected to
11373197704cSRobert Dolca	  your system.
11383197704cSRobert Dolca
11393197704cSRobert Dolca	  If unsure, say N.
11403197704cSRobert Dolca
11413197704cSRobert Dolca	  To compile this driver as a module, choose M here: the
11423197704cSRobert Dolca	  module will be called silead.
11433197704cSRobert Dolca
1144a485cb03SMika Penttiläconfig TOUCHSCREEN_SIS_I2C
1145a485cb03SMika Penttilä	tristate "SiS 9200 family I2C touchscreen"
1146a485cb03SMika Penttilä	depends on I2C
11471fcca89bSArnd Bergmann	select CRC_ITU_T
1148a485cb03SMika Penttilä	depends on GPIOLIB || COMPILE_TEST
1149a485cb03SMika Penttilä	help
1150a485cb03SMika Penttilä	  This enables support for SiS 9200 family over I2C based touchscreens.
1151a485cb03SMika Penttilä
1152a485cb03SMika Penttilä	  If unsure, say N.
1153a485cb03SMika Penttilä
1154a485cb03SMika Penttilä	  To compile this driver as a module, choose M here: the
1155a485cb03SMika Penttilä	  module will be called sis_i2c.
1156a485cb03SMika Penttilä
115756a8bd6dSTony SIMconfig TOUCHSCREEN_ST1232
115856a8bd6dSTony SIM	tristate "Sitronix ST1232 touchscreen controllers"
115956a8bd6dSTony SIM	depends on I2C
116056a8bd6dSTony SIM	help
116156a8bd6dSTony SIM	  Say Y here if you want to support Sitronix ST1232
116256a8bd6dSTony SIM	  touchscreen controller.
116356a8bd6dSTony SIM
116456a8bd6dSTony SIM	  If unsure, say N.
116556a8bd6dSTony SIM
116656a8bd6dSTony SIM	  To compile this driver as a module, choose M here: the
116756a8bd6dSTony SIM	  module will be called st1232_ts.
116856a8bd6dSTony SIM
116978bcac7bSAndi Shyticonfig TOUCHSCREEN_STMFTS
117078bcac7bSAndi Shyti	tristate "STMicroelectronics STMFTS touchscreen"
117178bcac7bSAndi Shyti	depends on I2C
117278bcac7bSAndi Shyti	depends on LEDS_CLASS
117378bcac7bSAndi Shyti	help
117478bcac7bSAndi Shyti	  Say Y here if you want support for STMicroelectronics
117578bcac7bSAndi Shyti	  STMFTS touchscreen.
117678bcac7bSAndi Shyti
117778bcac7bSAndi Shyti	  To compile this driver as a module, choose M here: the
117878bcac7bSAndi Shyti	  module will be called stmfts.
117978bcac7bSAndi Shyti
118056a8bd6dSTony SIMconfig TOUCHSCREEN_STMPE
118156a8bd6dSTony SIM	tristate "STMicroelectronics STMPE touchscreens"
118256a8bd6dSTony SIM	depends on MFD_STMPE
1183e4b88e19SDmitry Torokhov	depends on (OF || COMPILE_TEST)
118456a8bd6dSTony SIM	help
118556a8bd6dSTony SIM	  Say Y here if you want support for STMicroelectronics
118656a8bd6dSTony SIM	  STMPE touchscreen controllers.
118756a8bd6dSTony SIM
118856a8bd6dSTony SIM	  To compile this driver as a module, choose M here: the
118956a8bd6dSTony SIM	  module will be called stmpe-ts.
119056a8bd6dSTony SIM
11916decea7cSHans de Goedeconfig TOUCHSCREEN_SUN4I
11926decea7cSHans de Goede	tristate "Allwinner sun4i resistive touchscreen controller support"
11936decea7cSHans de Goede	depends on ARCH_SUNXI || COMPILE_TEST
1194f09f98d3SHans de Goede	depends on HWMON
11954a6155a4SArnd Bergmann	depends on THERMAL || !THERMAL_OF
11966decea7cSHans de Goede	help
11976decea7cSHans de Goede	  This selects support for the resistive touchscreen controller
11986decea7cSHans de Goede	  found on Allwinner sunxi SoCs.
11996decea7cSHans de Goede
12006decea7cSHans de Goede	  To compile this driver as a module, choose M here: the
12016decea7cSHans de Goede	  module will be called sun4i-ts.
12026decea7cSHans de Goede
1203bdb5c57fSFlorian Echtlerconfig TOUCHSCREEN_SUR40
1204bdb5c57fSFlorian Echtler	tristate "Samsung SUR40 (Surface 2.0/PixelSense) touchscreen"
1205ef403bcaSGeert Uytterhoeven	depends on USB && MEDIA_USB_SUPPORT && HAS_DMA
1206c8a1978eSRandy Dunlap	depends on VIDEO_V4L2
1207bdb5c57fSFlorian Echtler	select INPUT_POLLDEV
1208e831cd25SFlorian Echtler	select VIDEOBUF2_DMA_SG
1209bdb5c57fSFlorian Echtler	help
1210bdb5c57fSFlorian Echtler	  Say Y here if you want support for the Samsung SUR40 touchscreen
1211bdb5c57fSFlorian Echtler	  (also known as Microsoft Surface 2.0 or Microsoft PixelSense).
1212bdb5c57fSFlorian Echtler
1213bdb5c57fSFlorian Echtler	  To compile this driver as a module, choose M here: the
1214bdb5c57fSFlorian Echtler	  module will be called sur40.
1215bdb5c57fSFlorian Echtler
12164feacbc2SBenjamin Tissoiresconfig TOUCHSCREEN_SURFACE3_SPI
12174feacbc2SBenjamin Tissoires	tristate "Ntrig/Microsoft Surface 3 SPI touchscreen"
12184feacbc2SBenjamin Tissoires	depends on SPI
12194feacbc2SBenjamin Tissoires	depends on GPIOLIB || COMPILE_TEST
12204feacbc2SBenjamin Tissoires	help
12214feacbc2SBenjamin Tissoires	  Say Y here if you have the Ntrig/Microsoft SPI touchscreen
12224feacbc2SBenjamin Tissoires	  controller chip as found on the Surface 3 in your system.
12234feacbc2SBenjamin Tissoires
12244feacbc2SBenjamin Tissoires	  If unsure, say N.
12254feacbc2SBenjamin Tissoires
12264feacbc2SBenjamin Tissoires	  To compile this driver as a module, choose M here: the
12274feacbc2SBenjamin Tissoires	  module will be called surface3_spi.
12284feacbc2SBenjamin Tissoires
1229902cb3afSSébastien Szymanskiconfig TOUCHSCREEN_SX8654
1230902cb3afSSébastien Szymanski	tristate "Semtech SX8654 touchscreen"
1231902cb3afSSébastien Szymanski	depends on I2C
1232902cb3afSSébastien Szymanski	help
1233902cb3afSSébastien Szymanski	  Say Y here if you have a Semtech SX8654 touchscreen controller.
1234902cb3afSSébastien Szymanski
1235902cb3afSSébastien Szymanski	  If unsure, say N
1236902cb3afSSébastien Szymanski
1237902cb3afSSébastien Szymanski	  To compile this driver as a module, choose M here: the
1238902cb3afSSébastien Szymanski	  module will be called sx8654.
1239902cb3afSSébastien Szymanski
124075259966STodd Fischerconfig TOUCHSCREEN_TPS6507X
124175259966STodd Fischer	tristate "TPS6507x based touchscreens"
124275259966STodd Fischer	depends on I2C
12439ff9f6daSDmitry Torokhov	select INPUT_POLLDEV
124475259966STodd Fischer	help
124575259966STodd Fischer	  Say Y here if you have a TPS6507x based touchscreen
124675259966STodd Fischer	  controller.
124775259966STodd Fischer
124875259966STodd Fischer	  If unsure, say N.
124975259966STodd Fischer
125075259966STodd Fischer	  To compile this driver as a module, choose M here: the
125175259966STodd Fischer	  module will be called tps6507x_ts.
125275259966STodd Fischer
125383f66a6fSJelle van der Waaconfig TOUCHSCREEN_ZET6223
125483f66a6fSJelle van der Waa	tristate "Zeitec ZET6223 touchscreen driver"
125583f66a6fSJelle van der Waa	depends on I2C
125683f66a6fSJelle van der Waa	help
125783f66a6fSJelle van der Waa	  Say Y here if you have a touchscreen using Zeitec ZET6223
125883f66a6fSJelle van der Waa
125983f66a6fSJelle van der Waa	  If unsure, say N.
126083f66a6fSJelle van der Waa
126183f66a6fSJelle van der Waa	  To compile this driver as a module, choose M here: the
126283f66a6fSJelle van der Waa	  module will be called zet6223.
126383f66a6fSJelle van der Waa
1264c6d81bd7SHeiko Stübnerconfig TOUCHSCREEN_ZFORCE
1265c6d81bd7SHeiko Stübner	tristate "Neonode zForce infrared touchscreens"
1266c6d81bd7SHeiko Stübner	depends on I2C
12677d6548abSGeert Uytterhoeven	depends on GPIOLIB || COMPILE_TEST
1268c6d81bd7SHeiko Stübner	help
1269c6d81bd7SHeiko Stübner	  Say Y here if you have a touchscreen using the zforce
1270c6d81bd7SHeiko Stübner	  infraread technology from Neonode.
1271c6d81bd7SHeiko Stübner
1272c6d81bd7SHeiko Stübner	  If unsure, say N.
1273c6d81bd7SHeiko Stübner
1274c6d81bd7SHeiko Stübner	  To compile this driver as a module, choose M here: the
1275c6d81bd7SHeiko Stübner	  module will be called zforce_ts.
1276c6d81bd7SHeiko Stübner
127748ead50cSSanchayan Maityconfig TOUCHSCREEN_COLIBRI_VF50
127848ead50cSSanchayan Maity	tristate "Toradex Colibri on board touchscreen driver"
12791261d013SGeert Uytterhoeven	depends on IIO && VF610_ADC
12801261d013SGeert Uytterhoeven	depends on GPIOLIB || COMPILE_TEST
128148ead50cSSanchayan Maity	help
128248ead50cSSanchayan Maity	  Say Y here if you have a Colibri VF50 and plan to use
128348ead50cSSanchayan Maity	  the on-board provided 4-wire touchscreen driver.
128448ead50cSSanchayan Maity
128548ead50cSSanchayan Maity	  If unsure, say N.
128648ead50cSSanchayan Maity
128748ead50cSSanchayan Maity	  To compile this driver as a module, choose M here: the
128848ead50cSSanchayan Maity	  module will be called colibri_vf50_ts.
128948ead50cSSanchayan Maity
1290c7efd123SYoichi Yuasaconfig TOUCHSCREEN_ROHM_BU21023
1291c7efd123SYoichi Yuasa	tristate "ROHM BU21023/24 Dual touch support resistive touchscreens"
1292c7efd123SYoichi Yuasa	depends on I2C
1293c7efd123SYoichi Yuasa	help
1294c7efd123SYoichi Yuasa	  Say Y here if you have a touchscreen using ROHM BU21023/24.
1295c7efd123SYoichi Yuasa
1296c7efd123SYoichi Yuasa	  If unsure, say N.
1297c7efd123SYoichi Yuasa
1298c7efd123SYoichi Yuasa	  To compile this driver as a module, choose M here: the
1299c7efd123SYoichi Yuasa	  module will be called bu21023_ts.
1300c7efd123SYoichi Yuasa
13011da177e4SLinus Torvaldsendif
1302