forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 406
Expand file tree
/
Copy pathKconfig
More file actions
executable file
·179 lines (149 loc) · 4.59 KB
/
Kconfig
File metadata and controls
executable file
·179 lines (149 loc) · 4.59 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
#
# Touchscreen driver configuration
#
menuconfig MESON_INPUT_TOUCHSCREEN
bool "Touchscreens"
help
Say Y here, and a list of supported touchscreens will be displayed.
This option doesn't affect the kernel.
If unsure, say Y.
if MESON_INPUT_TOUCHSCREEN
config ADC_TOUCHSCREEN_AM
tristate "Meson ADC touchscreen"
depends on SARADC_AM
help
Say Y here if you want to use the Meson ADC touchscreen.
config ITK_CAPACITIVE_TOUCHSCREEN
tristate "ITK capacitive touchscreen"
default n
help
Say Y here if you want to use the ITK capacitive panel.
config PIXCIR_CAPACITIVE_TOUCHSCREEN
tristate "PIXCIR I2C capacitive touchscreen"
depends on I2C
default n
help
Say Y here if you want to use the PIXCIR capacitive panel.
config PIXCIR_NEW_CAPACITIVE_TOUCHSCREEN
tristate "PIXCIR I2C new capacitive touchscreen(5 points)"
depends on I2C
default n
help
Say Y here if you want to use the PIXCIR new capacitive panel.
config SINTEK_CAPACITIVE_TOUCHSCREEN
tristate "Sintek capacitive touchscreen"
default n
help
Say Y here if you want to use the Sintek capacitive panel.
config EETI_CAPACITIVE_TOUCHSCREEN
tristate "EETI capacitive touchscreen"
default n
help
Say Y here if you want to use the EETI capacitive panel.
config SIS92XX_CAPACITIVE_TOUCHSCREEN
tristate "SIS92XX I2C capacitive touchscreen"
depends on I2C
default n
help
Say Y here if you want to use the SIS92XX capacitive panel.
config FOCALTECH_CAPACITIVE_TOUCHSCREEN
tristate "FocalTech I2C capacitive touchscreen"
depends on I2C
default n
help
Say Y here if you want to use the FocalTech 5X06 capacitive panel.
config SITRONIX_CAPACITIVE_TOUCHSCREEN
tristate "SITRONIX I2C capacitive touchscreen"
depends on I2C
default n
help
Say Y here if you want to use the SITRONIX ST15XX capacitive panel.
config HX8520_CAPACITIVE_TOUCHSCREEN
tristate "HX8520 I2C capacitive touchscreen"
depends on I2C
default n
help
Say Y here if you want to use the HX8520 capacitive panel.
config RAYDIUM_CAPACITIVE_TOUCHSCREEN
tristate "Raydium I2C capacitive touchscreen"
depends on I2C
default n
help
Say Y here if you want to use the Raydium capacitive panel.
config GOODIX_CAPACITIVE_TOUCHSCREEN
tristate "Goodix I2C capacitive touchscreen"
depends on I2C
default n
help
Say Y here if you want to use the Goodix capacitive panel.
config GOODIX_GT801_CAPACITIVE_TOUCHSCREEN
tristate "Goodix I2C GT801 capacitive touchscreen"
depends on I2C
default n
help
Say Y here if you want to use the Goodix Guitar touch.
config GOODIX_GT81XX_CAPACITIVE_TOUCHSCREEN
tristate "Goodix I2C GT81XX capacitive touchscreen"
depends on I2C
default n
help
Say Y here if you want to use the Goodix capacitive panel.
config GOODIX_GT82X_CAPACITIVE_TOUCHSCREEN
tristate "Goodix GT828X capacitive touch panel"
depends on I2C
default n
help
Say Y here if you want to use the Goodix GT828X capacitive panel.
To compile this driver as a module, choose M here: the
module will be called .
config UOR7X5X_RESISTIVE_TOUCHSCREEN
tristate "UOR7X5X resistive touchscreen"
default n
help
Say Y here if you want to use the UOR7X5X resistive panel.
config UOR6X5X_RESISTIVE_TOUCHSCREEN
tristate "UOR6X5X resistive touchscreen"
default n
help
Say Y here if you want to use the UOR6X5X resistive panel.
config GSLX680_CAPACITIVE_TOUCHSCREEN
tristate "gslx680 I2C capacitive touchscreen"
depends on I2C
default n
help
Say Y here if you want to use the gslx680 capacitive panel.
config GSLX680_COMPATIBLE_CAPACITIVE_TOUCHSCREEN
tristate "gslx680 I2C compatible chip type A and B capacitive touchscreen"
depends on I2C
default n
help
Say Y here if you want to use the gslx680 compatible capacitive panel.
config GSLX680B_CAPACITIVE_TOUCHSCREEN
tristate "gslx680b I2C capacitive touchscreen"
depends on I2C
default n
help
Say Y here if you want to use the gslx680b capacitive panel.
config GOODIX_GT9XX_CAPACITIVE_TOUCHSCREEN
tristate "Goodix I2C GT9XX capacitive touchscreen"
depends on I2C
default n
help
Say Y here if you want to use the Goodix capacitive panel.
config FT5X02_CAPACITIVE_TOUCHSCREEN
tristate "FocalTech I2C FT5X02 capacitive touchscreen"
depends on I2C
default n
help
Say Y here if you want to use the Goodix capacitive panel.
config NOVATEK_CAPACITIVE_TOUCHSCREEN
tristate "novatek I2C NT110x capacitive touchscreen"
depends on I2C
default n
help
Say Y here if you want to use the Goodix capacitive panel.
# VTL TouchScreen Driver Config
menu "Ct36x Touch device support"
source "drivers/amlogic/input/touchscreen/ct36x_ts/Kconfig"
endmenu
endif # MESON_INPUT_TOUCHSCREEN