Kconfig 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324
  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
  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, ALPS or Elantech TouchPad users might be interested
  25. in a specialized Xorg/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 && X86
  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_ELANTECH
  74. bool "Elantech PS/2 protocol extension"
  75. depends on MOUSE_PS2
  76. help
  77. Say Y here if you have an Elantech PS/2 touchpad connected
  78. to your system.
  79. Note that if you enable this driver you will need an updated
  80. X.org Synaptics driver that does not require ABS_PRESSURE
  81. reports from the touchpad (i.e. post 1.5.0 version). You can
  82. grab a patch for the driver here:
  83. http://userweb.kernel.org/~dtor/synaptics-no-abspressure.patch
  84. If unsure, say N.
  85. This driver exposes some configuration registers via sysfs
  86. entries. For further information,
  87. see <file:Documentation/input/elantech.txt>.
  88. config MOUSE_PS2_SENTELIC
  89. bool "Sentelic Finger Sensing Pad PS/2 protocol extension"
  90. depends on MOUSE_PS2
  91. help
  92. Say Y here if you have a laptop (such as MSI WIND Netbook)
  93. with Sentelic Finger Sensing Pad touchpad.
  94. If unsure, say N.
  95. config MOUSE_PS2_TOUCHKIT
  96. bool "eGalax TouchKit PS/2 protocol extension"
  97. depends on MOUSE_PS2
  98. help
  99. Say Y here if you have an eGalax TouchKit PS/2 touchscreen
  100. connected to your system.
  101. If unsure, say N.
  102. config MOUSE_PS2_OLPC
  103. bool "OLPC PS/2 mouse protocol extension"
  104. depends on MOUSE_PS2 && OLPC
  105. help
  106. Say Y here if you have an OLPC XO-1 laptop (with built-in
  107. PS/2 touchpad/tablet device). The manufacturer calls the
  108. touchpad an HGPK.
  109. If unsure, say N.
  110. config MOUSE_SERIAL
  111. tristate "Serial mouse"
  112. select SERIO
  113. help
  114. Say Y here if you have a serial (RS-232, COM port) mouse connected
  115. to your system. This includes Sun, MouseSystems, Microsoft,
  116. Logitech and all other compatible serial mice.
  117. If unsure, say N.
  118. To compile this driver as a module, choose M here: the
  119. module will be called sermouse.
  120. config MOUSE_APPLETOUCH
  121. tristate "Apple USB Touchpad support"
  122. depends on USB_ARCH_HAS_HCD
  123. select USB
  124. help
  125. Say Y here if you want to use an Apple USB Touchpad.
  126. These are the touchpads that can be found on post-February 2005
  127. Apple Powerbooks (prior models have a Synaptics touchpad connected
  128. to the ADB bus).
  129. This driver provides a basic mouse driver but can be interfaced
  130. with the synaptics X11 driver to provide acceleration and
  131. scrolling in X11.
  132. For further information, see
  133. <file:Documentation/input/appletouch.txt>.
  134. To compile this driver as a module, choose M here: the
  135. module will be called appletouch.
  136. config MOUSE_BCM5974
  137. tristate "Apple USB BCM5974 Multitouch trackpad support"
  138. depends on USB_ARCH_HAS_HCD
  139. select USB
  140. help
  141. Say Y here if you have an Apple USB BCM5974 Multitouch
  142. trackpad.
  143. The BCM5974 is the multitouch trackpad found in the Macbook
  144. Air (JAN2008) and Macbook Pro Penryn (FEB2008) laptops.
  145. It is also found in the IPhone (2007) and Ipod Touch (2008).
  146. This driver provides multitouch functionality together with
  147. the synaptics X11 driver.
  148. The interface is currently identical to the appletouch interface,
  149. for further information, see
  150. <file:Documentation/input/appletouch.txt>.
  151. To compile this driver as a module, choose M here: the
  152. module will be called bcm5974.
  153. config MOUSE_INPORT
  154. tristate "InPort/MS/ATIXL busmouse"
  155. depends on ISA
  156. help
  157. Say Y here if you have an InPort, Microsoft or ATI XL busmouse.
  158. They are rather rare these days.
  159. To compile this driver as a module, choose M here: the
  160. module will be called inport.
  161. config MOUSE_ATIXL
  162. bool "ATI XL variant"
  163. depends on MOUSE_INPORT
  164. help
  165. Say Y here if your mouse is of the ATI XL variety.
  166. config MOUSE_LOGIBM
  167. tristate "Logitech busmouse"
  168. depends on ISA
  169. help
  170. Say Y here if you have a Logitech busmouse.
  171. They are rather rare these days.
  172. To compile this driver as a module, choose M here: the
  173. module will be called logibm.
  174. config MOUSE_PC110PAD
  175. tristate "IBM PC110 touchpad"
  176. depends on ISA
  177. help
  178. Say Y if you have the IBM PC-110 micro-notebook and want its
  179. touchpad supported.
  180. To compile this driver as a module, choose M here: the
  181. module will be called pc110pad.
  182. config MOUSE_AMIGA
  183. tristate "Amiga mouse"
  184. depends on AMIGA
  185. help
  186. Say Y here if you have an Amiga and want its native mouse
  187. supported by the kernel.
  188. To compile this driver as a module, choose M here: the
  189. module will be called amimouse.
  190. config MOUSE_ATARI
  191. tristate "Atari mouse"
  192. depends on ATARI
  193. select ATARI_KBD_CORE
  194. help
  195. Say Y here if you have an Atari and want its native mouse
  196. supported by the kernel.
  197. To compile this driver as a module, choose M here: the
  198. module will be called atarimouse.
  199. config MOUSE_RISCPC
  200. tristate "Acorn RiscPC mouse"
  201. depends on ARCH_ACORN
  202. help
  203. Say Y here if you have the Acorn RiscPC computer and want its
  204. native mouse supported.
  205. To compile this driver as a module, choose M here: the
  206. module will be called rpcmouse.
  207. config MOUSE_VSXXXAA
  208. tristate "DEC VSXXX-AA/GA mouse and VSXXX-AB tablet"
  209. select SERIO
  210. help
  211. Say Y (or M) if you want to use a DEC VSXXX-AA (hockey
  212. puck) or a VSXXX-GA (rectangular) mouse. Theses mice are
  213. typically used on DECstations or VAXstations, but can also
  214. be used on any box capable of RS232 (with some adaptor
  215. described in the source file). This driver also works with the
  216. digitizer (VSXXX-AB) DEC produced.
  217. config MOUSE_GPIO
  218. tristate "GPIO mouse"
  219. depends on GENERIC_GPIO
  220. select INPUT_POLLDEV
  221. help
  222. This driver simulates a mouse on GPIO lines of various CPUs (and some
  223. other chips).
  224. Say Y here if your device has buttons or a simple joystick connected
  225. directly to GPIO lines. Your board-specific setup logic must also
  226. provide a platform device and platform data saying which GPIOs are
  227. used.
  228. To compile this driver as a module, choose M here: the
  229. module will be called gpio_mouse.
  230. config MOUSE_PXA930_TRKBALL
  231. tristate "PXA930 Trackball mouse"
  232. depends on CPU_PXA930 || CPU_PXA935
  233. help
  234. Say Y here to support PXA930 Trackball mouse.
  235. config MOUSE_MAPLE
  236. tristate "Maple mouse (for the Dreamcast)"
  237. depends on MAPLE
  238. help
  239. This driver supports the Maple mouse on the SEGA Dreamcast.
  240. Most Dreamcast users, who have a mouse, will say Y here.
  241. To compile this driver as a module choose M here: the module will be
  242. called maplemouse.
  243. config MOUSE_SYNAPTICS_I2C
  244. tristate "Synaptics I2C Touchpad support"
  245. depends on I2C
  246. help
  247. This driver supports Synaptics I2C touchpad controller on eXeda
  248. mobile device.
  249. The device will not work the synaptics X11 driver because
  250. (i) it reports only relative coordinates and has no capabilities
  251. to report absolute coordinates
  252. (ii) the eXeda device itself uses Xfbdev as X Server and it does
  253. not allow using xf86-input-* drivers.
  254. Say y here if you have eXeda device and want to use a Synaptics
  255. I2C Touchpad.
  256. To compile this driver as a module, choose M here: the
  257. module will be called synaptics_i2c.
  258. endif