Kconfig 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. #
  2. # Mouse 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_BITSY
  12. tristate "Compaq iPAQ H3600 (Bitsy) touchscreen"
  13. depends on SA1100_BITSY
  14. select SERIO
  15. help
  16. Say Y here if you have the h3600 (Bitsy) touchscreen.
  17. If unsure, say N.
  18. To compile this driver as a module, choose M here: the
  19. module will be called h3600_ts_input.
  20. config TOUCHSCREEN_CORGI
  21. tristate "SharpSL (Corgi and Spitz series) touchscreen driver"
  22. depends on PXA_SHARPSL
  23. default y
  24. help
  25. Say Y here to enable the driver for the touchscreen on the
  26. Sharp SL-C7xx and SL-Cxx00 series of PDAs.
  27. If unsure, say N.
  28. To compile this driver as a module, choose M here: the
  29. module will be called corgi_ts.
  30. config TOUCHSCREEN_GUNZE
  31. tristate "Gunze AHL-51S touchscreen"
  32. select SERIO
  33. help
  34. Say Y here if you have the Gunze AHL-51 touchscreen connected to
  35. your system.
  36. If unsure, say N.
  37. To compile this driver as a module, choose M here: the
  38. module will be called gunze.
  39. config TOUCHSCREEN_ELO
  40. tristate "Elo serial touchscreens"
  41. select SERIO
  42. help
  43. Say Y here if you have an Elo serial touchscreen connected to
  44. your system.
  45. If unsure, say N.
  46. To compile this driver as a module, choose M here: the
  47. module will be called elo.
  48. config TOUCHSCREEN_MTOUCH
  49. tristate "MicroTouch serial touchscreens"
  50. select SERIO
  51. help
  52. Say Y here if you have a MicroTouch (3M) serial touchscreen connected to
  53. your system.
  54. If unsure, say N.
  55. To compile this driver as a module, choose M here: the
  56. module will be called mtouch.
  57. config TOUCHSCREEN_MK712
  58. tristate "ICS MicroClock MK712 touchscreen"
  59. help
  60. Say Y here if you have the ICS MicroClock MK712 touchscreen
  61. controller chip in your system.
  62. If unsure, say N.
  63. To compile this driver as a module, choose M here: the
  64. module will be called mk712.
  65. config TOUCHSCREEN_HP600
  66. tristate "HP Jornada 680/690 touchscreen"
  67. depends on SH_HP600 && SH_ADC
  68. help
  69. Say Y here if you have a HP Jornada 680 or 690 and want to
  70. support the built-in touchscreen.
  71. If unsure, say N.
  72. To compile this driver as a module, choose M here: the
  73. module will be called hp680_ts_input.
  74. endif