Linux Audio

Check our new training course

Linux kernel drivers training

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