| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- #
- # Touchscreen driver configuration
- #
- menuconfig 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 INPUT_TOUCHSCREEN
- config TOUCHSCREEN_MTK
- bool "MediaTek Touch Panel Driver"
- help
- Say Y here if you have MediaTek touch panel.
- If unsure, say N.
- To compile this dirver as a module, choose M here: the
- module will be called.
- config TOUCHSCREEN_MTK_GT1151
- bool "GT1151 for Mediatek package"
- default n
- help
- Say Y here if you have GT1151 touch panel.
- If unsure, say N.
- To compile this dirver as a module, choose M here: the
- module will be called.
- source "drivers/input/touchscreen/mediatek/GT1151/Kconfig"
- config TOUCHSCREEN_MTK_GT928
- tristate "GT928 Touchscreen"
- help
- Say Y here if you have Goodix GT928 touchscreen,
- connected to your system.
- If unsure, say N.
- To compile this driver as a module, choose M here.
- config TOUCHSCREEN_MTK_SYNAPTICS_I2C_RMI4
- tristate "Synaptics DSX I2C touchscreen"
- depends on I2C
- help
- Say Y here if you have a Synaptics DSX I2C touchscreen
- connected to your system.
- If unsure, say N.
- To compile this driver as a module, choose M here: the
- module will be called synaptics_i2c_rmi4.
- source "drivers/input/touchscreen/mediatek/synaptics_i2c_rmi4/Kconfig"
- config TOUCHSCREEN_MTK_GT910
- bool "GT910 for Mediatek package"
- default n
- help
- Say Y here if you have GT910 touch panel.
- If unsure, say N.
- To compile this dirver as a module, choose M here: the
- module will be called.
- source "drivers/input/touchscreen/mediatek/GT910/Kconfig"
- config TOUCHSCREEN_MTK_FT5X0X_NEW
- bool "FT5X0X for Mediatek package"
- default n
- help
- Say Y here if you have FT5X0X touch panel.
- If unsure, say N.
- To compile this dirver as a module, choose M here: the
- module will be called.
- source "drivers/input/touchscreen/mediatek/ft5x0x_new/Kconfig"
- endif
|