mirror of
https://github.com/hardkernel/linux.git
synced 2026-04-11 07:28:10 +09:00
Change-Id: I754250669891307b0deab2bdab1bd01512713f79 Signed-off-by: Tao Huang <huangtao@rock-chips.com>
41 lines
605 B
Plaintext
41 lines
605 B
Plaintext
# SPDX-License-Identifier: GPL-2.0
|
|
menuconfig TS_AUTO_I2C
|
|
bool "Support auto touch screen with I2C"
|
|
default n
|
|
|
|
if TS_AUTO_I2C
|
|
|
|
config TS_FT5306
|
|
bool "touch screen ft5306"
|
|
default n
|
|
|
|
config TS_GT8110
|
|
bool "touch screen gt8110"
|
|
default n
|
|
|
|
config TS_GT828
|
|
bool "touch screen gt828"
|
|
default n
|
|
|
|
config TS_CT360
|
|
bool "touch screen ct360"
|
|
default n
|
|
|
|
endif
|
|
|
|
config TS_AUTO_SPI
|
|
bool "Support auto touch screen with SPI"
|
|
depends on SPI_MASTER
|
|
|
|
if TS_AUTO_SPI
|
|
|
|
endif
|
|
|
|
config TS_AUTO_SERIAL
|
|
bool "Support auto touch screen with UART"
|
|
|
|
if TS_AUTO_SERIAL
|
|
|
|
endif
|
|
|