blob: 590e14ab196978af1da9a772c5b687a559d666fb (
plain)
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
|
#
# Goodix GT9xx Touchscreen driver
#
config GT1151_TOUCHPANEL_DRIVER
bool "Goodix GT1151 touchpanel driver"
depends on TOUCHSCREEN_GT1151
default n
help
This is the main file for touchpanel driver for Goodix GT1151
touchscreens.
Say Y here if you have a Goodix GT1151 touchscreen connected
to your system.
If unsure, say N.
To compile this driver as a module, choose M here: the
module will be called gt1x_update.
config GT1151_TOUCHPANEL_UPDATE
bool "Goodix GT1151 touchpanel auto update support"
depends on GT1151_TOUCHPANEL_DRIVER
default n
help
This enables support for firmware update for Goodix GT1151
touchscreens.
Say Y here if you have a Goodix GT1151 touchscreen connected
to your system.
If unsure, say N.
To compile this driver as a module, choose M here: the
module will be called gt9xx_update.
config GT1151_TOUCHPANEL_GENERIC
tristate "Goodix GT1151 PM & status control"
depends on GT1151_TOUCHPANEL_DRIVER
default n
help
This is PM & status control for Goodix GT1151
touchscreens.
Say Y here if you want have PM & status control.
If unsure, say N.
To compile this driver as a module, choose M here: the
module will be called gt9xx_generic.
config GT1151_TOUCHPANEL_EXTENTS
tristate "Goodix GT1151 extents functions support here"
depends on GT1151_TOUCHPANEL_DRIVER
default n
help
This is extents functions support for Goodix GT1151
touchscreens.
Say Y here if you want to install extents functions interface
to your system.
If unsure, say N.
To compile this driver as a module, choose M here: the
module will be called gt1x_extents.
config GT1151_TOUCHPANEL_TOOL
tristate "Goodix GT1151 Tools for debuging"
depends on GT1151_TOUCHPANEL_DRIVER
default n
help
This is tools interface support for Goodix GT1151
touchscreens.
Say Y here if you want to have GT1151 tools interface
to your system.
If unsure, say N.
To compile this driver as a module, choose M here: the
module will be called gt9xx_tool.
|