Kconfig 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268
  1. #
  2. # Mouse driver configuration
  3. #
  4. menuconfig INPUT_MOUSE
  5. bool "Mice"
  6. default y
  7. help
  8. Say Y here, and a list of supported mice will be displayed.
  9. This option doesn't affect the kernel.
  10. If unsure, say Y.
  11. if INPUT_MOUSE
  12. config MOUSE_PS2
  13. tristate "PS/2 mouse"
  14. default y
  15. select SERIO
  16. select SERIO_LIBPS2
  17. select SERIO_I8042 if X86_PC
  18. select SERIO_GSCPS2 if GSC
  19. help
  20. Say Y here if you have a PS/2 mouse connected to your system. This
  21. includes the standard 2 or 3-button PS/2 mouse, as well as PS/2
  22. mice with wheels and extra buttons, Microsoft, Logitech or Genius
  23. compatible.
  24. Synaptics TouchPad users might be interested in a specialized
  25. XFree86 driver at:
  26. <http://w1.894.telia.com/~u89404340/touchpad/index.html>
  27. and a new version of GPM at:
  28. <http://www.geocities.com/dt_or/gpm/gpm.html>
  29. to take advantage of the advanced features of the touchpad.
  30. If unsure, say Y.
  31. To compile this driver as a module, choose M here: the
  32. module will be called psmouse.
  33. config MOUSE_PS2_ALPS
  34. bool "ALPS PS/2 mouse protocol extension" if EMBEDDED
  35. default y
  36. depends on MOUSE_PS2
  37. help
  38. Say Y here if you have an ALPS PS/2 touchpad connected to
  39. your system.
  40. If unsure, say Y.
  41. config MOUSE_PS2_LOGIPS2PP
  42. bool "Logitech PS/2++ mouse protocol extension" if EMBEDDED
  43. default y
  44. depends on MOUSE_PS2
  45. help
  46. Say Y here if you have a Logictech PS/2++ mouse connected to
  47. your system.
  48. If unsure, say Y.
  49. config MOUSE_PS2_SYNAPTICS
  50. bool "Synaptics PS/2 mouse protocol extension" if EMBEDDED
  51. default y
  52. depends on MOUSE_PS2
  53. help
  54. Say Y here if you have a Synaptics PS/2 TouchPad connected to
  55. your system.
  56. If unsure, say Y.
  57. config MOUSE_PS2_LIFEBOOK
  58. bool "Fujitsu Lifebook PS/2 mouse protocol extension" if EMBEDDED
  59. default y
  60. depends on MOUSE_PS2
  61. help
  62. Say Y here if you have a Fujitsu B-series Lifebook PS/2
  63. TouchScreen connected to your system.
  64. If unsure, say Y.
  65. config MOUSE_PS2_TRACKPOINT
  66. bool "IBM Trackpoint PS/2 mouse protocol extension" if EMBEDDED
  67. default y
  68. depends on MOUSE_PS2
  69. help
  70. Say Y here if you have an IBM Trackpoint PS/2 mouse connected
  71. to your system.
  72. If unsure, say Y.
  73. config MOUSE_PS2_TOUCHKIT
  74. bool "eGalax TouchKit PS/2 protocol extension"
  75. depends on MOUSE_PS2
  76. help
  77. Say Y here if you have an eGalax TouchKit PS/2 touchscreen
  78. connected to your system.
  79. If unsure, say N.
  80. config MOUSE_PS2_OLPC
  81. bool "OLPC PS/2 mouse protocol extension"
  82. depends on MOUSE_PS2 && OLPC
  83. help
  84. Say Y here if you have an OLPC XO-1 laptop (with built-in
  85. PS/2 touchpad/tablet device). The manufacturer calls the
  86. touchpad an HGPK.
  87. If unsure, say N.
  88. config MOUSE_SERIAL
  89. tristate "Serial mouse"
  90. select SERIO
  91. help
  92. Say Y here if you have a serial (RS-232, COM port) mouse connected
  93. to your system. This includes Sun, MouseSystems, Microsoft,
  94. Logitech and all other compatible serial mice.
  95. If unsure, say N.
  96. To compile this driver as a module, choose M here: the
  97. module will be called sermouse.
  98. config MOUSE_APPLETOUCH
  99. tristate "Apple USB Touchpad support"
  100. depends on USB_ARCH_HAS_HCD
  101. select USB
  102. help
  103. Say Y here if you want to use an Apple USB Touchpad.
  104. These are the touchpads that can be found on post-February 2005
  105. Apple Powerbooks (prior models have a Synaptics touchpad connected
  106. to the ADB bus).
  107. This driver provides a basic mouse driver but can be interfaced
  108. with the synaptics X11 driver to provide acceleration and
  109. scrolling in X11.
  110. For further information, see
  111. <file:Documentation/input/appletouch.txt>.
  112. To compile this driver as a module, choose M here: the
  113. module will be called appletouch.
  114. config MOUSE_BCM5974
  115. tristate "Apple USB BCM5974 Multitouch trackpad support"
  116. depends on USB_ARCH_HAS_HCD
  117. select USB
  118. help
  119. Say Y here if you have an Apple USB BCM5974 Multitouch
  120. trackpad.
  121. The BCM5974 is the multitouch trackpad found in the Macbook
  122. Air (JAN2008) and Macbook Pro Penryn (FEB2008) laptops.
  123. It is also found in the IPhone (2007) and Ipod Touch (2008).
  124. This driver provides multitouch functionality together with
  125. the synaptics X11 driver.
  126. The interface is currently identical to the appletouch interface,
  127. for further information, see
  128. <file:Documentation/input/appletouch.txt>.
  129. To compile this driver as a module, choose M here: the
  130. module will be called bcm5974.
  131. config MOUSE_INPORT
  132. tristate "InPort/MS/ATIXL busmouse"
  133. depends on ISA
  134. help
  135. Say Y here if you have an InPort, Microsoft or ATI XL busmouse.
  136. They are rather rare these days.
  137. To compile this driver as a module, choose M here: the
  138. module will be called inport.
  139. config MOUSE_ATIXL
  140. bool "ATI XL variant"
  141. depends on MOUSE_INPORT
  142. help
  143. Say Y here if your mouse is of the ATI XL variety.
  144. config MOUSE_LOGIBM
  145. tristate "Logitech busmouse"
  146. depends on ISA
  147. help
  148. Say Y here if you have a Logitech busmouse.
  149. They are rather rare these days.
  150. To compile this driver as a module, choose M here: the
  151. module will be called logibm.
  152. config MOUSE_PC110PAD
  153. tristate "IBM PC110 touchpad"
  154. depends on ISA
  155. help
  156. Say Y if you have the IBM PC-110 micro-notebook and want its
  157. touchpad supported.
  158. To compile this driver as a module, choose M here: the
  159. module will be called pc110pad.
  160. config MOUSE_AMIGA
  161. tristate "Amiga mouse"
  162. depends on AMIGA
  163. help
  164. Say Y here if you have an Amiga and want its native mouse
  165. supported by the kernel.
  166. To compile this driver as a module, choose M here: the
  167. module will be called amimouse.
  168. config MOUSE_ATARI
  169. tristate "Atari mouse"
  170. depends on ATARI
  171. select ATARI_KBD_CORE
  172. help
  173. Say Y here if you have an Atari and want its native mouse
  174. supported by the kernel.
  175. To compile this driver as a module, choose M here: the
  176. module will be called atarimouse.
  177. config MOUSE_RISCPC
  178. tristate "Acorn RiscPC mouse"
  179. depends on ARCH_ACORN
  180. help
  181. Say Y here if you have the Acorn RiscPC computer and want its
  182. native mouse supported.
  183. To compile this driver as a module, choose M here: the
  184. module will be called rpcmouse.
  185. config MOUSE_VSXXXAA
  186. tristate "DEC VSXXX-AA/GA mouse and VSXXX-AB tablet"
  187. select SERIO
  188. help
  189. Say Y (or M) if you want to use a DEC VSXXX-AA (hockey
  190. puck) or a VSXXX-GA (rectangular) mouse. Theses mice are
  191. typically used on DECstations or VAXstations, but can also
  192. be used on any box capable of RS232 (with some adaptor
  193. described in the source file). This driver also works with the
  194. digitizer (VSXXX-AB) DEC produced.
  195. config MOUSE_HIL
  196. tristate "HIL pointers (mice etc)."
  197. depends on GSC || HP300
  198. select HP_SDC
  199. select HIL_MLC
  200. help
  201. Say Y here to support HIL pointers.
  202. config MOUSE_GPIO
  203. tristate "GPIO mouse"
  204. depends on GENERIC_GPIO
  205. select INPUT_POLLDEV
  206. help
  207. This driver simulates a mouse on GPIO lines of various CPUs (and some
  208. other chips).
  209. Say Y here if your device has buttons or a simple joystick connected
  210. directly to GPIO lines. Your board-specific setup logic must also
  211. provide a platform device and platform data saying which GPIOs are
  212. used.
  213. To compile this driver as a module, choose M here: the
  214. module will be called gpio_mouse.
  215. endif