Kconfig 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. #
  2. # Touchscreen driver configuration
  3. #
  4. menuconfig INPUT_TOUCHSCREEN
  5. bool "Touchscreens"
  6. help
  7. Say Y here, and a list of supported touchscreens will be displayed.
  8. This option doesn't affect the kernel.
  9. If unsure, say Y.
  10. if INPUT_TOUCHSCREEN
  11. config TOUCHSCREEN_MTK
  12. bool "MediaTek Touch Panel Driver"
  13. help
  14. Say Y here if you have MediaTek touch panel.
  15. If unsure, say N.
  16. To compile this dirver as a module, choose M here: the
  17. module will be called.
  18. config TOUCHSCREEN_MTK_GT1151
  19. bool "GT1151 for Mediatek package"
  20. default n
  21. help
  22. Say Y here if you have GT1151 touch panel.
  23. If unsure, say N.
  24. To compile this dirver as a module, choose M here: the
  25. module will be called.
  26. source "drivers/input/touchscreen/mediatek/GT1151/Kconfig"
  27. config TOUCHSCREEN_MTK_GT928
  28. tristate "GT928 Touchscreen"
  29. help
  30. Say Y here if you have Goodix GT928 touchscreen,
  31. connected to your system.
  32. If unsure, say N.
  33. To compile this driver as a module, choose M here.
  34. config TOUCHSCREEN_MTK_SYNAPTICS_I2C_RMI4
  35. tristate "Synaptics DSX I2C touchscreen"
  36. depends on I2C
  37. help
  38. Say Y here if you have a Synaptics DSX I2C touchscreen
  39. connected to your system.
  40. If unsure, say N.
  41. To compile this driver as a module, choose M here: the
  42. module will be called synaptics_i2c_rmi4.
  43. source "drivers/input/touchscreen/mediatek/synaptics_i2c_rmi4/Kconfig"
  44. config TOUCHSCREEN_MTK_GT910
  45. bool "GT910 for Mediatek package"
  46. default n
  47. help
  48. Say Y here if you have GT910 touch panel.
  49. If unsure, say N.
  50. To compile this dirver as a module, choose M here: the
  51. module will be called.
  52. source "drivers/input/touchscreen/mediatek/GT910/Kconfig"
  53. config TOUCHSCREEN_MTK_FT5X0X_NEW
  54. bool "FT5X0X for Mediatek package"
  55. default n
  56. help
  57. Say Y here if you have FT5X0X touch panel.
  58. If unsure, say N.
  59. To compile this dirver as a module, choose M here: the
  60. module will be called.
  61. source "drivers/input/touchscreen/mediatek/ft5x0x_new/Kconfig"
  62. endif