1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
if INPUT_TOUCHSCREEN
config TOUCHSCREEN_NVIDIA_ATMEL_MXT
tristate "NVIDIA Atmel mXT I2C Touchscreen"
depends on I2C
select FW_LOADER
help
Say Y here if you have Atmel mXT series I2C touchscreen,
such as AT42QT602240/ATMXT224, connected to your system.
If unsure, say N.
To compile this driver as a module, choose M here: the
module will be called atmel_mxt_ts.
It is Nvidia Atmel driver which is impoved based on
atmel k3.14 driver.
config TOUCHSCREEN_LR388K7
tristate "Sharp LR388K7 touchscreen"
depends on SPI_MASTER
help
Say Y here if you have a LR388K7 and want to enable
support for the built-in touchscreen.
If unsure, say N.
To compile this driver as a module, choose M here: the
module will be called lr388k7.
config TOUCHSCREEN_RM31080A
tristate "RAYDIUM_31080A based touchscreens"
depends on SPI_MASTER
help
Say Y here if you have a touchscreen interface using the
RAYDIUM_T31080A controller, and your board-specific initialization
code includes that in its table of SPI devices.
If unsure, say N (but it's safe to say "Y").
To compile this driver as a module, choose M here: the
module will be called RAYDIUM_31080A.
config TOUCHSCREEN_EXC80
tristate "EGALAX_EXC80 based touchscreens"
depends on I2C
help
Say Y here if you have a touchscreen interface using the
EGALAX controller, and your board-specific initialization
code includes that in its table of I2C devices.
If unsure, say N (but it's safe to say "Y").
To compile this driver as a module, choose M here: the
module will be called EGALAX.
config TOUCHSCREEN_EXC80_USB
tristate "EGALAX_EXC80 USB based touchscreens"
help
Say Y here if you have a touchscreen interface using the
EGALAX controller, and your board-specific initialization
code includes that in its table.
If unsure, say N (but it's safe to say "Y").
To compile this driver as a module, choose M here: the
module will be called egalax_ts_usb.
endif
|