blob: 77a0affd0c288725e00b937969166024e16ee9be [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#
Dmitry Torokhovd05e84e2007-05-07 16:38:49 -04002# Touchscreen driver configuration
Linus Torvalds1da177e2005-04-16 15:20:36 -07003#
4menuconfig INPUT_TOUCHSCREEN
5 bool "Touchscreens"
6 help
7 Say Y here, and a list of supported touchscreens will be displayed.
8 This option doesn't affect the kernel.
9
10 If unsure, say Y.
11
12if INPUT_TOUCHSCREEN
13
Haojian Zhuang866a98a2009-12-15 16:06:17 -050014config TOUCHSCREEN_88PM860X
15 tristate "Marvell 88PM860x touchscreen"
16 depends on MFD_88PM860X
17 help
18 Say Y here if you have a 88PM860x PMIC and want to enable
19 support for the built-in touchscreen.
20
21 If unsure, say N.
22
23 To compile this driver as a module, choose M here: the
24 module will be called 88pm860x-ts.
25
David Brownellffa458c2006-01-08 13:34:21 -080026config TOUCHSCREEN_ADS7846
Michael Hennerich06a09122010-03-09 20:38:45 -080027 tristate "ADS7846/TSC2046/AD7873 and AD(S)7843 based touchscreens"
David Brownellffa458c2006-01-08 13:34:21 -080028 depends on SPI_MASTER
David Brownell2c8dc072007-01-18 00:45:48 -050029 depends on HWMON = n || HWMON
David Brownellffa458c2006-01-08 13:34:21 -080030 help
31 Say Y here if you have a touchscreen interface using the
Michael Hennerich06a09122010-03-09 20:38:45 -080032 ADS7846/TSC2046/AD7873 or ADS7843/AD7843 controller,
33 and your board-specific setup code includes that in its
34 table of SPI devices.
David Brownellffa458c2006-01-08 13:34:21 -080035
David Brownell2c8dc072007-01-18 00:45:48 -050036 If HWMON is selected, and the driver is told the reference voltage
37 on your board, you will also get hwmon interfaces for the voltage
Michael Hennerich06a09122010-03-09 20:38:45 -080038 (and on ads7846/tsc2046/ad7873, temperature) sensors of this chip.
David Brownell2c8dc072007-01-18 00:45:48 -050039
David Brownellffa458c2006-01-08 13:34:21 -080040 If unsure, say N (but it's safe to say "Y").
41
42 To compile this driver as a module, choose M here: the
43 module will be called ads7846.
44
Michael Hennerich331b78e2009-03-09 20:12:52 -070045config TOUCHSCREEN_AD7877
46 tristate "AD7877 based touchscreens"
47 depends on SPI_MASTER
48 help
49 Say Y here if you have a touchscreen interface using the
50 AD7877 controller, and your board-specific initialization
51 code includes that in its table of SPI devices.
52
53 If unsure, say N (but it's safe to say "Y").
54
55 To compile this driver as a module, choose M here: the
56 module will be called ad7877.
57
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070058config TOUCHSCREEN_ATMEL_MAXTOUCH
59 tristate "Atmel maXTouch based touchscreens"
60 depends on I2C
61 default n
62 help
63 Say Y here if you have an Atmel Maxtouch based touchscreen.
64
65 If unsure, say N.
66
67 To compile this driver as a module, choose M here: the
68 module will be called maXTouch.
69
Mike Frysinger4397c982010-06-30 01:40:52 -070070config TOUCHSCREEN_AD7879
71 tristate "Analog Devices AD7879-1/AD7889-1 touchscreen interface"
Michael Hennerichb4be4682009-03-09 20:12:52 -070072 help
Mike Frysinger4397c982010-06-30 01:40:52 -070073 Say Y here if you want to support a touchscreen interface using
74 the AD7879-1/AD7889-1 controller.
Michael Hennerichb4be4682009-03-09 20:12:52 -070075
Mike Frysinger4397c982010-06-30 01:40:52 -070076 You should select a bus connection too.
Michael Hennerichb4be4682009-03-09 20:12:52 -070077
78 To compile this driver as a module, choose M here: the
79 module will be called ad7879.
80
Mike Frysinger4397c982010-06-30 01:40:52 -070081config TOUCHSCREEN_AD7879_I2C
82 tristate "support I2C bus connection"
83 depends on TOUCHSCREEN_AD7879 && I2C
84 help
85 Say Y here if you have AD7879-1/AD7889-1 hooked to an I2C bus.
86
87 To compile this driver as a module, choose M here: the
88 module will be called ad7879-i2c.
89
Michael Hennerichb4be4682009-03-09 20:12:52 -070090config TOUCHSCREEN_AD7879_SPI
Mike Frysinger4397c982010-06-30 01:40:52 -070091 tristate "support SPI bus connection"
92 depends on TOUCHSCREEN_AD7879 && SPI_MASTER
Michael Hennerichb4be4682009-03-09 20:12:52 -070093 help
Mike Frysinger4397c982010-06-30 01:40:52 -070094 Say Y here if you have AD7879-1/AD7889-1 hooked to a SPI bus.
Michael Hennerichb4be4682009-03-09 20:12:52 -070095
96 If unsure, say N (but it's safe to say "Y").
97
98 To compile this driver as a module, choose M here: the
Mike Frysinger4397c982010-06-30 01:40:52 -070099 module will be called ad7879-spi.
Michael Hennerichb4be4682009-03-09 20:12:52 -0700100
Dmitry Torokhov964de522011-02-02 23:21:58 -0800101config TOUCHSCREEN_ATMEL_MXT
102 tristate "Atmel mXT I2C Touchscreen"
103 depends on I2C
104 help
105 Say Y here if you have Atmel mXT series I2C touchscreen,
106 such as AT42QT602240/ATMXT224, connected to your system.
107
108 If unsure, say N.
109
110 To compile this driver as a module, choose M here: the
111 module will be called atmel_mxt_ts.
112
Heiko Stübner5245db42011-12-27 21:21:17 -0800113config TOUCHSCREEN_AUO_PIXCIR
114 tristate "AUO in-cell touchscreen using Pixcir ICs"
115 depends on I2C
116 depends on GPIOLIB
117 help
118 Say Y here if you have a AUO display with in-cell touchscreen
119 using Pixcir ICs.
120
121 If unsure, say N.
122
123 To compile this driver as a module, choose M here: the
124 module will be called auo-pixcir-ts.
125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126config TOUCHSCREEN_BITSY
127 tristate "Compaq iPAQ H3600 (Bitsy) touchscreen"
128 depends on SA1100_BITSY
129 select SERIO
130 help
131 Say Y here if you have the h3600 (Bitsy) touchscreen.
132
133 If unsure, say N.
134
135 To compile this driver as a module, choose M here: the
136 module will be called h3600_ts_input.
137
Naveen Kumar Gaddipati4780c8d2010-10-04 22:32:48 -0700138config TOUCHSCREEN_BU21013
139 tristate "BU21013 based touch panel controllers"
140 depends on I2C
141 help
142 Say Y here if you have a bu21013 touchscreen connected to
143 your system.
144
145 If unsure, say N.
146
147 To compile this driver as a module, choose M here: the
148 module will be called bu21013_ts.
149
Samuli Konttila60347c12010-07-30 09:02:43 -0700150config TOUCHSCREEN_CY8CTMG110
151 tristate "cy8ctmg110 touchscreen"
152 depends on I2C
153 depends on GPIOLIB
Samuli Konttila60347c12010-07-30 09:02:43 -0700154 help
155 Say Y here if you have a cy8ctmg110 capacitive touchscreen on
156 an AAVA device.
157
158 If unsure, say N.
159
160 To compile this driver as a module, choose M here: the
161 module will be called cy8ctmg110_ts.
162
Javier Martinez Canillas4065d1e2012-01-31 00:18:00 -0800163config TOUCHSCREEN_CYTTSP_CORE
164 tristate "Cypress TTSP touchscreen"
165 help
166 Say Y here if you have a touchscreen using controller from
167 the Cypress TrueTouch(tm) Standard Product family connected
168 to your system. You will also need to select appropriate
169 bus connection below.
170
171 If unsure, say N.
172
173 To compile this driver as a module, choose M here: the
174 module will be called cyttsp_core.
175
176config TOUCHSCREEN_CYTTSP_I2C
177 tristate "support I2C bus connection"
178 depends on TOUCHSCREEN_CYTTSP_CORE && I2C
179 help
180 Say Y here if the touchscreen is connected via I2C bus.
181
182 To compile this driver as a module, choose M here: the
183 module will be called cyttsp_i2c.
184
185config TOUCHSCREEN_CYTTSP_SPI
186 tristate "support SPI bus connection"
187 depends on TOUCHSCREEN_CYTTSP_CORE && SPI_MASTER
188 help
189 Say Y here if the touchscreen is connected via SPI bus.
190
191 To compile this driver as a module, choose M here: the
192 module will be called cyttsp_spi.
193
Eric Miao9bcc00b2008-12-23 04:21:04 -0500194config TOUCHSCREEN_DA9034
195 tristate "Touchscreen support for Dialog Semiconductor DA9034"
196 depends on PMIC_DA903X
197 default y
198 help
199 Say Y here to enable the support for the touchscreen found
200 on Dialog Semiconductor DA9034 PMIC.
201
Tias Gunsa5f523b2009-10-25 12:13:58 -0700202config TOUCHSCREEN_DYNAPRO
203 tristate "Dynapro serial touchscreen"
204 select SERIO
205 help
206 Say Y here if you have a Dynapro serial touchscreen connected to
207 your system.
208
209 If unsure, say N.
210
211 To compile this driver as a module, choose M here: the
212 module will be called dynapro.
213
Adam Bennett422dee52010-04-12 19:54:38 -0700214config TOUCHSCREEN_HAMPSHIRE
215 tristate "Hampshire serial touchscreen"
216 select SERIO
217 help
218 Say Y here if you have a Hampshire serial touchscreen connected to
219 your system.
220
221 If unsure, say N.
222
223 To compile this driver as a module, choose M here: the
224 module will be called hampshire.
225
Daniel Mack10494dc2009-05-18 16:10:39 -0700226config TOUCHSCREEN_EETI
227 tristate "EETI touchscreen panel support"
228 depends on I2C
229 help
230 Say Y here to enable support for I2C connected EETI touch panels.
231
232 To compile this driver as a module, choose M here: the
233 module will be called eeti_ts.
234
Zhang Jiejing59bae1d2011-11-12 00:03:18 -0800235config TOUCHSCREEN_EGALAX
236 tristate "EETI eGalax multi-touch panel support"
237 depends on I2C
238 help
239 Say Y here to enable support for I2C connected EETI
240 eGalax multi-touch panels.
241
242 To compile this driver as a module, choose M here: the
243 module will be called egalax_ts.
244
Dmitry Torokhov85f202d2007-07-18 00:37:01 -0400245config TOUCHSCREEN_FUJITSU
246 tristate "Fujitsu serial touchscreen"
247 select SERIO
248 help
249 Say Y here if you have the Fujitsu touchscreen (such as one
250 installed in Lifebook P series laptop) connected to your
251 system.
252
253 If unsure, say N.
254
255 To compile this driver as a module, choose M here: the
256 module will be called fujitsu-ts.
257
Olivier Sobrie5c6a7a62012-03-16 23:57:09 -0700258config TOUCHSCREEN_ILI210X
259 tristate "Ilitek ILI210X based touchscreen"
260 depends on I2C
261 help
262 Say Y here if you have a ILI210X based touchscreen
263 controller. This driver supports models ILI2102,
264 ILI2102s, ILI2103, ILI2103s and ILI2105.
265 Such kind of chipsets can be found in Amazon Kindle Fire
266 touchscreens.
267
268 If unsure, say N.
269
270 To compile this driver as a module, choose M here: the
271 module will be called ili210x.
272
Arnaud Patardf5f96b92009-11-23 09:47:12 -0800273config TOUCHSCREEN_S3C2410
Ben Dooks504d36e2010-05-19 14:45:01 +0900274 tristate "Samsung S3C2410/generic touchscreen input driver"
Kukjin Kimb130d5c2012-02-03 14:29:23 +0900275 depends on ARCH_S3C24XX || SAMSUNG_DEV_TS
Mark Brown829ab5b2010-05-31 11:57:24 -0700276 select S3C_ADC
Arnaud Patardf5f96b92009-11-23 09:47:12 -0800277 help
278 Say Y here if you have the s3c2410 touchscreen.
279
280 If unsure, say N.
281
282 To compile this driver as a module, choose M here: the
283 module will be called s3c2410_ts.
284
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285config TOUCHSCREEN_GUNZE
286 tristate "Gunze AHL-51S touchscreen"
287 select SERIO
288 help
289 Say Y here if you have the Gunze AHL-51 touchscreen connected to
290 your system.
291
292 If unsure, say N.
293
294 To compile this driver as a module, choose M here: the
295 module will be called gunze.
296
297config TOUCHSCREEN_ELO
298 tristate "Elo serial touchscreens"
299 select SERIO
300 help
301 Say Y here if you have an Elo serial touchscreen connected to
302 your system.
303
304 If unsure, say N.
305
306 To compile this driver as a module, choose M here: the
Michael Prokop153ab422005-07-11 01:09:10 -0500307 module will be called elo.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Jaya Kumar3eb1aa42008-11-19 16:58:50 -0500309config TOUCHSCREEN_WACOM_W8001
310 tristate "Wacom W8001 penabled serial touchscreen"
311 select SERIO
312 help
313 Say Y here if you have an Wacom W8001 penabled serial touchscreen
314 connected to your system.
315
316 If unsure, say N.
317
318 To compile this driver as a module, choose M here: the
319 module will be called wacom_w8001.
320
Kevin Wells3045a5f2010-08-28 22:45:22 -0700321config TOUCHSCREEN_LPC32XX
322 tristate "LPC32XX touchscreen controller"
323 depends on ARCH_LPC32XX
324 help
325 Say Y here if you have a LPC32XX device and want
326 to support the built-in touchscreen.
327
328 To compile this driver as a module, choose M here: the
329 module will be called lpc32xx_ts.
330
Zhang Jiejing42033062011-04-11 23:48:23 -0700331config TOUCHSCREEN_MAX11801
332 tristate "MAX11801 based touchscreens"
333 depends on I2C
334 help
335 Say Y here if you have a MAX11801 based touchscreen
336 controller.
337
338 If unsure, say N.
339
340 To compile this driver as a module, choose M here: the
341 module will be called max11801_ts.
342
Joonyoung Shim38e783b2009-09-17 22:35:45 -0700343config TOUCHSCREEN_MCS5000
344 tristate "MELFAS MCS-5000 touchscreen"
345 depends on I2C
346 help
347 Say Y here if you have the MELFAS MCS-5000 touchscreen controller
348 chip in your system.
349
350 If unsure, say N.
351
352 To compile this driver as a module, choose M here: the
353 module will be called mcs5000_ts.
Jaya Kumar3eb1aa42008-11-19 16:58:50 -0500354
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355config TOUCHSCREEN_MTOUCH
356 tristate "MicroTouch serial touchscreens"
357 select SERIO
358 help
359 Say Y here if you have a MicroTouch (3M) serial touchscreen connected to
360 your system.
361
362 If unsure, say N.
363
364 To compile this driver as a module, choose M here: the
365 module will be called mtouch.
366
Richard Lemon3cadd2d2008-06-26 10:10:41 -0400367config TOUCHSCREEN_INEXIO
368 tristate "iNexio serial touchscreens"
369 select SERIO
370 help
371 Say Y here if you have an iNexio serial touchscreen connected to
372 your system.
373
374 If unsure, say N.
375
376 To compile this driver as a module, choose M here: the
377 module will be called inexio.
378
Dmitry Torokhovd4f5f932010-08-31 23:00:52 -0700379config TOUCHSCREEN_INTEL_MID
380 tristate "Intel MID platform resistive touchscreen"
381 depends on INTEL_SCU_IPC
382 help
383 Say Y here if you have a Intel MID based touchscreen in
384 your system.
385
386 If unsure, say N.
387
388 To compile this driver as a module, choose M here: the
389 module will be called intel_mid_touch.
390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391config TOUCHSCREEN_MK712
392 tristate "ICS MicroClock MK712 touchscreen"
393 help
394 Say Y here if you have the ICS MicroClock MK712 touchscreen
395 controller chip in your system.
396
397 If unsure, say N.
398
399 To compile this driver as a module, choose M here: the
400 module will be called mk712.
401
402config TOUCHSCREEN_HP600
Kristoffer Ericson4ff891e2008-01-14 00:54:23 -0500403 tristate "HP Jornada 6xx touchscreen"
Paul Mundt00258352006-01-16 22:14:08 -0800404 depends on SH_HP6XX && SH_ADC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 help
Kristoffer Ericson4ff891e2008-01-14 00:54:23 -0500406 Say Y here if you have a HP Jornada 620/660/680/690 and want to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 support the built-in touchscreen.
408
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 To compile this driver as a module, choose M here: the
410 module will be called hp680_ts_input.
411
Kristoffer Ericson5637f022007-09-26 00:02:56 -0400412config TOUCHSCREEN_HP7XX
Kristoffer Ericson4ff891e2008-01-14 00:54:23 -0500413 tristate "HP Jornada 7xx touchscreen"
Kristoffer Ericson5637f022007-09-26 00:02:56 -0400414 depends on SA1100_JORNADA720_SSP
415 help
416 Say Y here if you have a HP Jornada 710/720/728 and want
417 to support the built-in touchscreen.
418
419 To compile this driver as a module, choose M here: the
420 module will be called jornada720_ts.
421
Pau Oliva Fora5a18c342008-06-02 00:38:35 -0400422config TOUCHSCREEN_HTCPEN
423 tristate "HTC Shift X9500 touchscreen"
424 depends on ISA
425 help
426 Say Y here if you have an HTC Shift UMPC also known as HTC X9500
427 Clio / Shangrila and want to support the built-in touchscreen.
428
429 If unsure, say N.
430
431 To compile this driver as a module, choose M here: the
432 module will be called htcpen.
433
Rick Kochee479992006-08-05 00:32:18 -0400434config TOUCHSCREEN_PENMOUNT
435 tristate "Penmount serial touchscreen"
436 select SERIO
437 help
438 Say Y here if you have a Penmount serial touchscreen connected to
439 your system.
440
441 If unsure, say N.
442
443 To compile this driver as a module, choose M here: the
444 module will be called penmount.
445
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700446config TOUCHSCREEN_MSM
447 bool "Qualcomm MSM touchscreen controller"
448 depends on ARCH_MSM7X30 && MARIMBA_TSADC
449 default n
450 help
451 Say Y here if you have a 4-wire resistive touchscreen panel
452 connected to the TSSC touchscreen controller on a
453 Qualcomm MSM/QSD based SoC.
454
Magnus Damm885c3162008-05-07 11:15:02 -0400455config TOUCHSCREEN_MIGOR
456 tristate "Renesas MIGO-R touchscreen"
457 depends on SH_MIGOR && I2C
458 help
459 Say Y here to enable MIGO-R touchscreen support.
460
461 If unsure, say N.
462
463 To compile this driver as a module, choose M here: the
464 module will be called migor_ts.
465
Cyril Chemparathy0fa6c772010-09-20 12:26:43 -0400466config TOUCHSCREEN_TNETV107X
467 tristate "TI TNETV107X touchscreen support"
468 depends on ARCH_DAVINCI_TNETV107X
469 help
470 Say Y here if you want to use the TNETV107X touchscreen.
471
472 To compile this driver as a module, choose M here: the
473 module will be called tnetv107x-ts.
474
Arve Hjønnevåg46b612b2007-08-21 21:56:46 -0700475config TOUCHSCREEN_SYNAPTICS_I2C_RMI
476 tristate "Synaptics i2c touchscreen"
477 depends on I2C
478 help
479 This enables support for Synaptics RMI over I2C based touchscreens.
480
Taniya Das6f0884b2011-09-06 16:24:21 +0530481config TOUCHSCREEN_SYNAPTICS_RMI4_I2C
482 tristate "Synaptics i2c touchscreen(ClearPad 3000)"
483 depends on I2C
484 select SYNA_MULTI_TOUCH
485 help
486 This enables support for Synaptics RMI over I2C based touchscreens(ClearPad 3000).
487
488config SYNA_MULTI_TOUCH
489 tristate "Synaptics i2c touchscreen(ClearPad 3000) MutilTouch support"
490 depends on TOUCHSCREEN_SYNAPTICS_RMI4_I2C
491 default y
492
Rick Koch4003dff2006-08-05 00:32:24 -0400493config TOUCHSCREEN_TOUCHRIGHT
494 tristate "Touchright serial touchscreen"
495 select SERIO
496 help
497 Say Y here if you have a Touchright serial touchscreen connected to
498 your system.
499
500 If unsure, say N.
501
502 To compile this driver as a module, choose M here: the
503 module will be called touchright.
504
Rick Koch11ea3172006-08-05 00:32:30 -0400505config TOUCHSCREEN_TOUCHWIN
506 tristate "Touchwin serial touchscreen"
507 select SERIO
508 help
509 Say Y here if you have a Touchwin serial touchscreen connected to
510 your system.
511
512 If unsure, say N.
513
514 To compile this driver as a module, choose M here: the
515 module will be called touchwin.
516
Rachna Patil1b8be322012-03-04 08:11:57 -0800517config TOUCHSCREEN_TI_TSCADC
518 tristate "TI Touchscreen Interface"
519 depends on ARCH_OMAP2PLUS
520 help
521 Say Y here if you have 4/5/8 wire touchscreen controller
522 to be connected to the ADC controller on your TI AM335x SoC.
523
524 If unsure, say N.
525
526 To compile this driver as a module, choose M here: the
527 module will be called ti_tscadc.
528
Dan Liang72d18a72008-07-23 21:27:25 -0400529config TOUCHSCREEN_ATMEL_TSADCC
530 tristate "Atmel Touchscreen Interface"
Nicolas Ferre985f37f2009-11-19 09:32:52 -0800531 depends on ARCH_AT91SAM9RL || ARCH_AT91SAM9G45
Dan Liang72d18a72008-07-23 21:27:25 -0400532 help
533 Say Y here if you have a 4-wire touchscreen connected to the
534 ADC Controller on your Atmel SoC (such as the AT91SAM9RL).
535
536 If unsure, say N.
537
538 To compile this driver as a module, choose M here: the
539 module will be called atmel_tsadcc.
540
Nicolas Pitref40219b2006-11-17 01:07:26 -0500541config TOUCHSCREEN_UCB1400
542 tristate "Philips UCB1400 touchscreen"
Andrew Morton64c12e92008-10-15 13:50:20 +0200543 depends on AC97_BUS
Marek Vašutd9105c22008-08-03 21:34:08 +0100544 depends on UCB1400_CORE
Nicolas Pitref40219b2006-11-17 01:07:26 -0500545 help
546 This enables support for the Philips UCB1400 touchscreen interface.
547 The UCB1400 is an AC97 audio codec. The touchscreen interface
548 will be initialized only after the ALSA subsystem has been
549 brought up and the UCB1400 detected. You therefore have to
550 configure ALSA support as well (either built-in or modular,
551 independently of whether this driver is itself built-in or
552 modular) for this driver to work.
553
554 To compile this driver as a module, choose M here: the
555 module will be called ucb1400_ts.
556
Jianchun Bian36a281e2011-12-30 15:16:21 -0800557config TOUCHSCREEN_PIXCIR
558 tristate "PIXCIR I2C touchscreens"
559 depends on I2C
560 help
561 Say Y here if you have a pixcir i2c touchscreen
562 controller.
563
564 If unsure, say N.
565
566 To compile this driver as a module, choose M here: the
567 module will be called pixcir_i2c_ts.
568
Mark Brown00cfa732011-01-30 12:31:30 -0800569config TOUCHSCREEN_WM831X
570 tristate "Support for WM831x touchscreen controllers"
571 depends on MFD_WM831X
572 help
573 This enables support for the touchscreen controller on the WM831x
574 series of PMICs.
575
576 To compile this driver as a module, choose M here: the
577 module will be called wm831x-ts.
578
Mark Brownfebf1df2008-04-02 00:51:09 -0400579config TOUCHSCREEN_WM97XX
580 tristate "Support for WM97xx AC97 touchscreen controllers"
581 depends on AC97_BUS
582 help
583 Say Y here if you have a Wolfson Microelectronics WM97xx
584 touchscreen connected to your system. Note that this option
585 only enables core driver, you will also need to select
586 support for appropriate chip below.
587
588 If unsure, say N.
589
590 To compile this driver as a module, choose M here: the
591 module will be called wm97xx-ts.
592
Mark Brown9448cef2008-04-02 00:51:21 -0400593config TOUCHSCREEN_WM9705
594 bool "WM9705 Touchscreen interface support"
595 depends on TOUCHSCREEN_WM97XX
Mark Brown558a1712008-07-29 01:14:59 -0400596 default y
Mark Brown9448cef2008-04-02 00:51:21 -0400597 help
Mark Brown558a1712008-07-29 01:14:59 -0400598 Say Y here to enable support for the Wolfson Microelectronics
599 WM9705 touchscreen controller.
Mark Brown9448cef2008-04-02 00:51:21 -0400600
Mark Brownde22b9e2008-04-02 00:51:26 -0400601config TOUCHSCREEN_WM9712
602 bool "WM9712 Touchscreen interface support"
603 depends on TOUCHSCREEN_WM97XX
Mark Brown558a1712008-07-29 01:14:59 -0400604 default y
Mark Brownde22b9e2008-04-02 00:51:26 -0400605 help
Mark Brown558a1712008-07-29 01:14:59 -0400606 Say Y here to enable support for the Wolfson Microelectronics
607 WM9712 touchscreen controller.
Mark Brownde22b9e2008-04-02 00:51:26 -0400608
Mark Browndca98e92008-04-02 00:51:30 -0400609config TOUCHSCREEN_WM9713
610 bool "WM9713 Touchscreen interface support"
611 depends on TOUCHSCREEN_WM97XX
Mark Brown558a1712008-07-29 01:14:59 -0400612 default y
Mark Browndca98e92008-04-02 00:51:30 -0400613 help
Mark Brown558a1712008-07-29 01:14:59 -0400614 Say Y here to enable support for the Wolfson Microelectronics
615 WM9713 touchscreen controller.
Mark Browndca98e92008-04-02 00:51:30 -0400616
Hans-Christian Egtvedt864fe732009-04-18 18:45:06 -0700617config TOUCHSCREEN_WM97XX_ATMEL
618 tristate "WM97xx Atmel accelerated touch"
619 depends on TOUCHSCREEN_WM97XX && (AVR32 || ARCH_AT91)
620 help
621 Say Y here for support for streaming mode with WM97xx touchscreens
622 on Atmel AT91 or AVR32 systems with an AC97C module.
623
624 Be aware that this will use channel B in the controller for
625 streaming data, this must not conflict with other AC97C drivers.
626
627 If unsure, say N.
628
629 To compile this driver as a module, choose M here: the module will
630 be called atmel-wm97xx.
631
Mark Brown4db8a5f2008-04-02 00:51:46 -0400632config TOUCHSCREEN_WM97XX_MAINSTONE
Marek Vasutb8333062009-07-20 22:26:37 -0700633 tristate "WM97xx Mainstone/Palm accelerated touch"
Mark Brown4db8a5f2008-04-02 00:51:46 -0400634 depends on TOUCHSCREEN_WM97XX && ARCH_PXA
635 help
636 Say Y here for support for streaming mode with WM97xx touchscreens
Marek Vasutb8333062009-07-20 22:26:37 -0700637 on Mainstone, Palm Tungsten T5, TX and LifeDrive systems.
Mark Brown4db8a5f2008-04-02 00:51:46 -0400638
639 If unsure, say N.
640
641 To compile this driver as a module, choose M here: the
642 module will be called mainstone-wm97xx.
643
Mark Brown22e39d32009-03-04 01:12:49 -0800644config TOUCHSCREEN_WM97XX_ZYLONITE
645 tristate "Zylonite accelerated touch"
646 depends on TOUCHSCREEN_WM97XX && MACH_ZYLONITE
647 select TOUCHSCREEN_WM9713
648 help
649 Say Y here for support for streaming mode with the touchscreen
650 on Zylonite systems.
651
652 If unsure, say N.
653
654 To compile this driver as a module, choose M here: the
655 module will be called zylonite-wm97xx.
656
Dmitry Torokhovd05e84e2007-05-07 16:38:49 -0400657config TOUCHSCREEN_USB_COMPOSITE
658 tristate "USB Touchscreen Driver"
Al Viro7a86ede2007-05-15 20:36:20 +0100659 depends on USB_ARCH_HAS_HCD
Dmitry Torokhovd05e84e2007-05-07 16:38:49 -0400660 select USB
661 help
662 USB Touchscreen driver for:
663 - eGalax Touchkit USB (also includes eTurboTouch CT-410/510/700)
664 - PanJit TouchSet USB
665 - 3M MicroTouch USB (EX II series)
666 - ITM
667 - some other eTurboTouch
668 - Gunze AHL61
669 - DMC TSC-10/25
Ondrej Zarydf561fc2007-07-03 01:55:03 -0400670 - IRTOUCHSYSTEMS/UNITOP
Ondrej Zarya14a8402007-09-04 23:45:01 -0400671 - IdealTEK URTC1000
Jerrold Jones14e40202007-10-22 00:59:47 -0400672 - GoTop Super_Q2/GogoPen/PenPower tablets
Jim Perssonf7370692009-07-07 22:07:59 -0700673 - JASTEC USB Touch Controller/DigiTech DTR-02U
Daniel Silverstone2330ed12009-11-23 08:38:16 -0800674 - Zytronic controllers
Michael Gebetsroitherd2cc817a2011-11-04 23:56:05 -0700675 - Elo TouchSystems 2700 IntelliTouch
Armando Viscontiaa875122012-03-04 10:41:36 -0800676 - EasyTouch USB Touch Controller from Data Modul
Dmitry Torokhovd05e84e2007-05-07 16:38:49 -0400677
678 Have a look at <http://linux.chapter7.ch/touchkit/> for
679 a usage description and the required user-space stuff.
680
681 To compile this driver as a module, choose M here: the
682 module will be called usbtouchscreen.
683
Sascha Hauerd201fd52009-12-15 08:48:57 -0800684config TOUCHSCREEN_MC13783
685 tristate "Freescale MC13783 touchscreen input driver"
686 depends on MFD_MC13783
687 help
688 Say Y here if you have an Freescale MC13783 PMIC on your
689 board and want to use its touchscreen
690
691 If unsure, say N.
692
693 To compile this driver as a module, choose M here: the
694 module will be called mc13783_ts.
695
Dmitry Torokhovd05e84e2007-05-07 16:38:49 -0400696config TOUCHSCREEN_USB_EGALAX
697 default y
David Rientjes6a108a12011-01-20 14:44:16 -0800698 bool "eGalax, eTurboTouch CT-410/510/700 device support" if EXPERT
Dmitry Torokhovd05e84e2007-05-07 16:38:49 -0400699 depends on TOUCHSCREEN_USB_COMPOSITE
700
701config TOUCHSCREEN_USB_PANJIT
702 default y
David Rientjes6a108a12011-01-20 14:44:16 -0800703 bool "PanJit device support" if EXPERT
Dmitry Torokhovd05e84e2007-05-07 16:38:49 -0400704 depends on TOUCHSCREEN_USB_COMPOSITE
705
706config TOUCHSCREEN_USB_3M
707 default y
David Rientjes6a108a12011-01-20 14:44:16 -0800708 bool "3M/Microtouch EX II series device support" if EXPERT
Dmitry Torokhovd05e84e2007-05-07 16:38:49 -0400709 depends on TOUCHSCREEN_USB_COMPOSITE
710
711config TOUCHSCREEN_USB_ITM
712 default y
David Rientjes6a108a12011-01-20 14:44:16 -0800713 bool "ITM device support" if EXPERT
Dmitry Torokhovd05e84e2007-05-07 16:38:49 -0400714 depends on TOUCHSCREEN_USB_COMPOSITE
715
716config TOUCHSCREEN_USB_ETURBO
717 default y
David Rientjes6a108a12011-01-20 14:44:16 -0800718 bool "eTurboTouch (non-eGalax compatible) device support" if EXPERT
Dmitry Torokhovd05e84e2007-05-07 16:38:49 -0400719 depends on TOUCHSCREEN_USB_COMPOSITE
720
721config TOUCHSCREEN_USB_GUNZE
722 default y
David Rientjes6a108a12011-01-20 14:44:16 -0800723 bool "Gunze AHL61 device support" if EXPERT
Dmitry Torokhovd05e84e2007-05-07 16:38:49 -0400724 depends on TOUCHSCREEN_USB_COMPOSITE
725
726config TOUCHSCREEN_USB_DMC_TSC10
727 default y
David Rientjes6a108a12011-01-20 14:44:16 -0800728 bool "DMC TSC-10/25 device support" if EXPERT
Dmitry Torokhovd05e84e2007-05-07 16:38:49 -0400729 depends on TOUCHSCREEN_USB_COMPOSITE
730
Ondrej Zarydf561fc2007-07-03 01:55:03 -0400731config TOUCHSCREEN_USB_IRTOUCH
732 default y
David Rientjes6a108a12011-01-20 14:44:16 -0800733 bool "IRTOUCHSYSTEMS/UNITOP device support" if EXPERT
Ondrej Zarydf561fc2007-07-03 01:55:03 -0400734 depends on TOUCHSCREEN_USB_COMPOSITE
735
Ondrej Zarya14a8402007-09-04 23:45:01 -0400736config TOUCHSCREEN_USB_IDEALTEK
737 default y
David Rientjes6a108a12011-01-20 14:44:16 -0800738 bool "IdealTEK URTC1000 device support" if EXPERT
Ondrej Zarya14a8402007-09-04 23:45:01 -0400739 depends on TOUCHSCREEN_USB_COMPOSITE
740
Ilya Frolov9d5657d2007-10-12 14:19:40 -0400741config TOUCHSCREEN_USB_GENERAL_TOUCH
742 default y
David Rientjes6a108a12011-01-20 14:44:16 -0800743 bool "GeneralTouch Touchscreen device support" if EXPERT
Ilya Frolov9d5657d2007-10-12 14:19:40 -0400744 depends on TOUCHSCREEN_USB_COMPOSITE
745
Jerrold Jones14e40202007-10-22 00:59:47 -0400746config TOUCHSCREEN_USB_GOTOP
747 default y
David Rientjes6a108a12011-01-20 14:44:16 -0800748 bool "GoTop Super_Q2/GogoPen/PenPower tablet device support" if EXPERT
Jerrold Jones14e40202007-10-22 00:59:47 -0400749 depends on TOUCHSCREEN_USB_COMPOSITE
750
Jim Perssonf7370692009-07-07 22:07:59 -0700751config TOUCHSCREEN_USB_JASTEC
752 default y
David Rientjes6a108a12011-01-20 14:44:16 -0800753 bool "JASTEC/DigiTech DTR-02U USB touch controller device support" if EXPERT
Jim Perssonf7370692009-07-07 22:07:59 -0700754 depends on TOUCHSCREEN_USB_COMPOSITE
755
Michael Gebetsroitherd2cc817a2011-11-04 23:56:05 -0700756config TOUCHSCREEN_USB_ELO
757 default y
758 bool "Elo TouchSystems 2700 IntelliTouch controller device support" if EXPERT
759 depends on TOUCHSCREEN_USB_COMPOSITE
760
Florian Echtler9e3b2582009-07-27 17:35:39 -0700761config TOUCHSCREEN_USB_E2I
762 default y
763 bool "e2i Touchscreen controller (e.g. from Mimo 740)"
764 depends on TOUCHSCREEN_USB_COMPOSITE
765
Daniel Silverstone2330ed12009-11-23 08:38:16 -0800766config TOUCHSCREEN_USB_ZYTRONIC
767 default y
David Rientjes6a108a12011-01-20 14:44:16 -0800768 bool "Zytronic controller" if EXPERT
Daniel Silverstone2330ed12009-11-23 08:38:16 -0800769 depends on TOUCHSCREEN_USB_COMPOSITE
770
Petr Å tetiar38771bb2010-06-28 09:38:48 -0700771config TOUCHSCREEN_USB_ETT_TC45USB
Petr Å tetiardbe14202009-11-29 23:37:07 -0800772 default y
David Rientjes6a108a12011-01-20 14:44:16 -0800773 bool "ET&T USB series TC4UM/TC5UH touchscreen controller support" if EXPERT
Petr Å tetiardbe14202009-11-29 23:37:07 -0800774 depends on TOUCHSCREEN_USB_COMPOSITE
775
Ondrej Zary51974242010-02-04 00:17:18 -0800776config TOUCHSCREEN_USB_NEXIO
777 default y
David Rientjes6a108a12011-01-20 14:44:16 -0800778 bool "NEXIO/iNexio device support" if EXPERT
Ondrej Zary51974242010-02-04 00:17:18 -0800779 depends on TOUCHSCREEN_USB_COMPOSITE
780
Armando Viscontiaa875122012-03-04 10:41:36 -0800781config TOUCHSCREEN_USB_EASYTOUCH
782 default y
783 bool "EasyTouch USB Touch controller device support" if EMBEDDED
784 depends on TOUCHSCREEN_USB_COMPOSITE
785 help
786 Say Y here if you have a EasyTouch USB Touch controller device support.
787 If unsure, say N.
788
Claudio Nieder73422392008-07-07 11:56:30 -0400789config TOUCHSCREEN_TOUCHIT213
790 tristate "Sahara TouchIT-213 touchscreen"
791 select SERIO
792 help
793 Say Y here if you have a Sahara TouchIT-213 Tablet PC.
794
795 If unsure, say N.
796
797 To compile this driver as a module, choose M here: the
798 module will be called touchit213.
799
Sebastian Andrzej Siewiorf01536e2011-09-28 10:04:21 -0700800config TOUCHSCREEN_TSC_SERIO
801 tristate "TSC-10/25/40 serial touchscreen support"
802 select SERIO
803 help
804 Say Y here if you have a TSC-10, 25 or 40 serial touchscreen connected
805 to your system.
806
807 If unsure, say N.
808
809 To compile this driver as a module, choose M here: the
810 module will be called tsc40.
811
Lauri Leukkunen37bd4462011-03-16 22:07:36 -0700812config TOUCHSCREEN_TSC2005
813 tristate "TSC2005 based touchscreens"
Geert Uytterhoevenddca6a32011-03-21 02:37:07 -0700814 depends on SPI_MASTER && GENERIC_HARDIRQS
Lauri Leukkunen37bd4462011-03-16 22:07:36 -0700815 help
816 Say Y here if you have a TSC2005 based touchscreen.
817
818 If unsure, say N.
819
820 To compile this driver as a module, choose M here: the
821 module will be called tsc2005.
822
Kwangwoo Lee50b6f1f2008-12-20 04:26:01 -0500823config TOUCHSCREEN_TSC2007
824 tristate "TSC2007 based touchscreens"
825 depends on I2C
826 help
827 Say Y here if you have a TSC2007 based touchscreen.
828
829 If unsure, say N.
830
831 To compile this driver as a module, choose M here: the
832 module will be called tsc2007.
833
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700834config TOUCHSCREEN_MSM_LEGACY
835 default n
836 tristate "MSM Touchscreen"
837 depends on ARCH_MSM && !ARCH_MSM7X30
838 help
839 Say Y here if you have a touchscreen interface using MSM
840 touchscreen controller.
841
842 To compile this driver as a module, choose M here: the
843 module will be called msm_touch.
844
845config ANDROID_TOUCHSCREEN_MSM_HACKS
846 default y
847 depends on TOUCHSCREEN_MSM_LEGACY
848 bool "Android MSM Touchscreen hacks"
849 help
850 Say Y here if you are running Android framework on Qualcomm
851 MSM/QSD based Surf or FFAs. These hacks are required inorder
852 to Android framework to receive adjusted x, y co-ordinates
853 until proper calibration framework is in place.
854
Wan ZongShun7e3f7372009-06-10 23:27:22 -0700855config TOUCHSCREEN_W90X900
856 tristate "W90P910 touchscreen driver"
Wan ZongShunb7788c52009-07-12 20:52:19 -0700857 depends on HAVE_CLK
Wan ZongShun7e3f7372009-06-10 23:27:22 -0700858 help
859 Say Y here if you have a W90P910 based touchscreen.
860
861 To compile this driver as a module, choose M here: the
862 module will be called w90p910_ts.
863
Daniel Ribeiro0387e102009-08-07 22:54:56 +0200864config TOUCHSCREEN_PCAP
865 tristate "Motorola PCAP touchscreen"
866 depends on EZX_PCAP
867 help
868 Say Y here if you have a Motorola EZX telephone and
869 want to enable support for the built-in touchscreen.
870
871 To compile this driver as a module, choose M here: the
872 module will be called pcap_ts.
Todd Fischer75259962010-04-05 17:53:12 -0600873
Tony SIM56a8bd62010-12-15 23:39:25 -0800874config TOUCHSCREEN_ST1232
875 tristate "Sitronix ST1232 touchscreen controllers"
876 depends on I2C
877 help
878 Say Y here if you want to support Sitronix ST1232
879 touchscreen controller.
880
881 If unsure, say N.
882
883 To compile this driver as a module, choose M here: the
884 module will be called st1232_ts.
885
886config TOUCHSCREEN_STMPE
887 tristate "STMicroelectronics STMPE touchscreens"
888 depends on MFD_STMPE
889 help
890 Say Y here if you want support for STMicroelectronics
891 STMPE touchscreen controllers.
892
893 To compile this driver as a module, choose M here: the
894 module will be called stmpe-ts.
895
Todd Fischer75259962010-04-05 17:53:12 -0600896config TOUCHSCREEN_TPS6507X
897 tristate "TPS6507x based touchscreens"
898 depends on I2C
899 help
900 Say Y here if you have a TPS6507x based touchscreen
901 controller.
902
903 If unsure, say N.
904
905 To compile this driver as a module, choose M here: the
906 module will be called tps6507x_ts.
907
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700908config TOUCHSCREEN_CY8C_TS
909 tristate "Cypress TMA300-TMG200 based touchscreens"
910 depends on I2C
911 default n
912 help
913 Say Y here if you have a Cypress TMA300/TMG200 based touchscreen.
914 TMA300 is a multi-touch screen which can report upto 10
915 touches at a time. TMG200 supports 2 touches.
916
917 If unsure, say N.
918
919 To compile this driver as a module, choose M here: the
920 module will be called cy8c_ts.
921
Steve Mucklef132c6c2012-06-06 18:30:57 -0700922config TOUCHSCREEN_CYTTSP_I2C_QC
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700923 tristate "Cypress TTSP based touchscreens"
924 depends on I2C
925 default n
926 help
927 Say Y here if you have a Cypress TTSP based touchscreen.
928 TMA300 is a multi-touch screen which can report upto 10
929 touches at a time.
930
931 If unsure, say N.
932
933 To compile this driver as a module, choose M here: the
934 module will be called cyttsp-i2c.
Mohan Pallakaa2595072012-01-12 22:23:15 +0530935
936config TOUCHSCREEN_FT5X06
937 tristate "FocalTech touchscreens"
938 depends on I2C
939 help
940 Say Y here if you have a ft5X06 touchscreen.
941 Ft5x06 controllers are multi touch controllers which can
942 report 5 touches at a time.
943
944 If unsure, say N.
945
946 To compile this driver as a module, choose M here: the
947 module will be called ft5x06_ts.
948
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949endif