Skip to content

Commit

Permalink
supported gt911 touchscreen
Browse files Browse the repository at this point in the history
  • Loading branch information
Given He authored and csjamesdeng committed Aug 29, 2018
1 parent fe22a01 commit 976c41e
Show file tree
Hide file tree
Showing 10 changed files with 3,959 additions and 0 deletions.
1 change: 1 addition & 0 deletions arch/arm/configs/sun8iw12p1smp_defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -1519,6 +1519,7 @@ CONFIG_TOUCHSCREEN_GT5688=m
CONFIG_TOUCHSCREEN_MSG2XXX=m
# CONFIG_WAKEUP_BY_MSG2XXX is not set
CONFIG_TOUCHSCREEN_FT6X_TS=m
CONFIG_TOUCHSCREEN_GT9XX_TS=m
# CONFIG_INPUT_MISC is not set
CONFIG_INPUT_SENSOR=y
CONFIG_SENSORS_GPADC=y
Expand Down
1 change: 1 addition & 0 deletions drivers/input/touchscreen/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -1117,4 +1117,5 @@ source "drivers/input/touchscreen/gslx680/Kconfig"
source "drivers/input/touchscreen/gt5688/Kconfig"
source "drivers/input/touchscreen/s23501t0-g/Kconfig"
source "drivers/input/touchscreen/ft6x/Kconfig"
source "drivers/input/touchscreen/gt9xx/Kconfig"
endif
1 change: 1 addition & 0 deletions drivers/input/touchscreen/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -96,3 +96,4 @@ obj-$(CONFIG_INPUT_TOUCHSCREEN) += gslx680/
obj-y += gt5688/
obj-y += s23501t0-g/
obj-y += ft6x/
obj-y += gt9xx/
10 changes: 10 additions & 0 deletions drivers/input/touchscreen/gt9xx/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#
# Touchscreen driver configuration
#
config TOUCHSCREEN_GT9XX_TS
tristate "gt9xx touchscreen driver"
depends on INPUT && I2C
default m
help
gt9xx touchscreen driver

9 changes: 9 additions & 0 deletions drivers/input/touchscreen/gt9xx/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#
# Makefile for the touchscreen drivers.
#

# Each configuration option enables a list of files.

obj-$(CONFIG_TOUCHSCREEN_GT9XX_TS) += gt9xx_ts.o
gt9xx_ts-objs := goodix_tool.o gt9xx_update.o gt9xx.o

Loading

0 comments on commit 976c41e

Please sign in to comment.