Kconfig 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357
  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. depends on TTY
  15. default y
  16. select SERIO
  17. select SERIO_LIBPS2
  18. select SERIO_I8042 if X86
  19. select SERIO_GSCPS2 if GSC
  20. help
  21. Say Y here if you have a PS/2 mouse connected to your system. This
  22. includes the standard 2 or 3-button PS/2 mouse, as well as PS/2
  23. mice with wheels and extra buttons, Microsoft, Logitech or Genius
  24. compatible.
  25. Synaptics, ALPS or Elantech TouchPad users might be interested
  26. in a specialized Xorg/XFree86 driver at:
  27. <http://w1.894.telia.com/~u89404340/touchpad/index.html>
  28. and a new version of GPM at:
  29. <http://www.geocities.com/dt_or/gpm/gpm.html>
  30. <http://xorg.freedesktop.org/archive/individual/driver/>
  31. to take advantage of the advanced features of the touchpad.
  32. If unsure, say Y.
  33. To compile this driver as a module, choose M here: the
  34. module will be called psmouse.
  35. config MOUSE_PS2_ALPS
  36. bool "ALPS PS/2 mouse protocol extension" if EXPERT
  37. default y
  38. depends on MOUSE_PS2
  39. help
  40. Say Y here if you have an ALPS PS/2 touchpad connected to
  41. your system.
  42. If unsure, say Y.
  43. config MOUSE_PS2_LOGIPS2PP
  44. bool "Logitech PS/2++ mouse protocol extension" if EXPERT
  45. default y
  46. depends on MOUSE_PS2
  47. help
  48. Say Y here if you have a Logictech PS/2++ mouse connected to
  49. your system.
  50. If unsure, say Y.
  51. config MOUSE_PS2_SYNAPTICS
  52. bool "Synaptics PS/2 mouse protocol extension" if EXPERT
  53. default y
  54. depends on MOUSE_PS2
  55. help
  56. Say Y here if you have a Synaptics PS/2 TouchPad connected to
  57. your system.
  58. If unsure, say Y.
  59. config MOUSE_PS2_LIFEBOOK
  60. bool "Fujitsu Lifebook PS/2 mouse protocol extension" if EXPERT
  61. default y
  62. depends on MOUSE_PS2 && X86 && DMI
  63. help
  64. Say Y here if you have a Fujitsu B-series Lifebook PS/2
  65. TouchScreen connected to your system.
  66. If unsure, say Y.
  67. config MOUSE_PS2_TRACKPOINT
  68. bool "IBM Trackpoint PS/2 mouse protocol extension" if EXPERT
  69. default y
  70. depends on MOUSE_PS2
  71. help
  72. Say Y here if you have an IBM Trackpoint PS/2 mouse connected
  73. to your system.
  74. If unsure, say Y.
  75. config MOUSE_PS2_ELANTECH
  76. bool "Elantech PS/2 protocol extension"
  77. depends on MOUSE_PS2
  78. help
  79. Say Y here if you have an Elantech PS/2 touchpad connected
  80. to your system.
  81. Note that if you enable this driver you will need an updated
  82. X.org Synaptics driver that does not require ABS_PRESSURE
  83. reports from the touchpad (i.e. post 1.5.0 version). You can
  84. grab a patch for the driver here:
  85. http://userweb.kernel.org/~dtor/synaptics-no-abspressure.patch
  86. If unsure, say N.
  87. This driver exposes some configuration registers via sysfs
  88. entries. For further information,
  89. see <file:Documentation/input/elantech.txt>.
  90. config MOUSE_PS2_SENTELIC
  91. bool "Sentelic Finger Sensing Pad PS/2 protocol extension"
  92. depends on MOUSE_PS2
  93. help
  94. Say Y here if you have a laptop (such as MSI WIND Netbook)
  95. with Sentelic Finger Sensing Pad touchpad.
  96. If unsure, say N.
  97. config MOUSE_PS2_TOUCHKIT
  98. bool "eGalax TouchKit PS/2 protocol extension"
  99. depends on MOUSE_PS2
  100. help
  101. Say Y here if you have an eGalax TouchKit PS/2 touchscreen
  102. connected to your system.
  103. If unsure, say N.
  104. config MOUSE_PS2_OLPC
  105. bool "OLPC PS/2 mouse protocol extension"
  106. depends on MOUSE_PS2 && OLPC
  107. help
  108. Say Y here if you have an OLPC XO-1 laptop (with built-in
  109. PS/2 touchpad/tablet device). The manufacturer calls the
  110. touchpad an HGPK.
  111. If unsure, say N.
  112. config MOUSE_SERIAL
  113. tristate "Serial mouse"
  114. depends on TTY
  115. select SERIO
  116. help
  117. Say Y here if you have a serial (RS-232, COM port) mouse connected
  118. to your system. This includes Sun, MouseSystems, Microsoft,
  119. Logitech and all other compatible serial mice.
  120. If unsure, say N.
  121. To compile this driver as a module, choose M here: the
  122. module will be called sermouse.
  123. config MOUSE_APPLETOUCH
  124. tristate "Apple USB Touchpad support"
  125. depends on USB_ARCH_HAS_HCD
  126. select USB
  127. help
  128. Say Y here if you want to use an Apple USB Touchpad.
  129. These are the touchpads that can be found on post-February 2005
  130. Apple Powerbooks (prior models have a Synaptics touchpad connected
  131. to the ADB bus).
  132. This driver provides a basic mouse driver but can be interfaced
  133. with the synaptics X11 driver to provide acceleration and
  134. scrolling in X11.
  135. For further information, see
  136. <file:Documentation/input/appletouch.txt>.
  137. To compile this driver as a module, choose M here: the
  138. module will be called appletouch.
  139. config MOUSE_BCM5974
  140. tristate "Apple USB BCM5974 Multitouch trackpad support"
  141. depends on USB_ARCH_HAS_HCD
  142. select USB
  143. help
  144. Say Y here if you have an Apple USB BCM5974 Multitouch
  145. trackpad.
  146. The BCM5974 is the multitouch trackpad found in the Macbook
  147. Air (JAN2008) and Macbook Pro Penryn (FEB2008) laptops.
  148. It is also found in the IPhone (2007) and Ipod Touch (2008).
  149. This driver provides multitouch functionality together with
  150. the synaptics X11 driver.
  151. The interface is currently identical to the appletouch interface,
  152. for further information, see
  153. <file:Documentation/input/appletouch.txt>.
  154. To compile this driver as a module, choose M here: the
  155. module will be called bcm5974.
  156. config MOUSE_INPORT
  157. tristate "InPort/MS/ATIXL busmouse"
  158. depends on ISA
  159. help
  160. Say Y here if you have an InPort, Microsoft or ATI XL busmouse.
  161. They are rather rare these days.
  162. To compile this driver as a module, choose M here: the
  163. module will be called inport.
  164. config MOUSE_ATIXL
  165. bool "ATI XL variant"
  166. depends on MOUSE_INPORT
  167. help
  168. Say Y here if your mouse is of the ATI XL variety.
  169. config MOUSE_LOGIBM
  170. tristate "Logitech busmouse"
  171. depends on ISA
  172. help
  173. Say Y here if you have a Logitech busmouse.
  174. They are rather rare these days.
  175. To compile this driver as a module, choose M here: the
  176. module will be called logibm.
  177. config MOUSE_PC110PAD
  178. tristate "IBM PC110 touchpad"
  179. depends on ISA
  180. help
  181. Say Y if you have the IBM PC-110 micro-notebook and want its
  182. touchpad supported.
  183. To compile this driver as a module, choose M here: the
  184. module will be called pc110pad.
  185. config MOUSE_AMIGA
  186. tristate "Amiga mouse"
  187. depends on AMIGA
  188. help
  189. Say Y here if you have an Amiga and want its native mouse
  190. supported by the kernel.
  191. To compile this driver as a module, choose M here: the
  192. module will be called amimouse.
  193. config MOUSE_ATARI
  194. tristate "Atari mouse"
  195. depends on ATARI
  196. select ATARI_KBD_CORE
  197. help
  198. Say Y here if you have an Atari and want its native mouse
  199. supported by the kernel.
  200. To compile this driver as a module, choose M here: the
  201. module will be called atarimouse.
  202. config MOUSE_RISCPC
  203. tristate "Acorn RiscPC mouse"
  204. depends on ARCH_ACORN
  205. help
  206. Say Y here if you have the Acorn RiscPC computer and want its
  207. native mouse supported.
  208. To compile this driver as a module, choose M here: the
  209. module will be called rpcmouse.
  210. config MOUSE_VSXXXAA
  211. tristate "DEC VSXXX-AA/GA mouse and VSXXX-AB tablet"
  212. depends on TTY
  213. select SERIO
  214. help
  215. Say Y (or M) if you want to use a DEC VSXXX-AA (hockey
  216. puck) or a VSXXX-GA (rectangular) mouse. Theses mice are
  217. typically used on DECstations or VAXstations, but can also
  218. be used on any box capable of RS232 (with some adaptor
  219. described in the source file). This driver also works with the
  220. digitizer (VSXXX-AB) DEC produced.
  221. config MOUSE_GPIO
  222. tristate "GPIO mouse"
  223. depends on GENERIC_GPIO
  224. select INPUT_POLLDEV
  225. help
  226. This driver simulates a mouse on GPIO lines of various CPUs (and some
  227. other chips).
  228. Say Y here if your device has buttons or a simple joystick connected
  229. directly to GPIO lines. Your board-specific setup logic must also
  230. provide a platform device and platform data saying which GPIOs are
  231. used.
  232. To compile this driver as a module, choose M here: the
  233. module will be called gpio_mouse.
  234. config MOUSE_PXA930_TRKBALL
  235. tristate "PXA930 Trackball mouse"
  236. depends on CPU_PXA930 || CPU_PXA935
  237. help
  238. Say Y here to support PXA930 Trackball mouse.
  239. config MOUSE_MAPLE
  240. tristate "Maple mouse (for the Dreamcast)"
  241. depends on MAPLE
  242. help
  243. This driver supports the Maple mouse on the SEGA Dreamcast.
  244. Most Dreamcast users, who have a mouse, will say Y here.
  245. To compile this driver as a module choose M here: the module will be
  246. called maplemouse.
  247. config MOUSE_SYNAPTICS_I2C
  248. tristate "Synaptics I2C Touchpad support"
  249. depends on I2C
  250. help
  251. This driver supports Synaptics I2C touchpad controller on eXeda
  252. mobile device.
  253. The device will not work the synaptics X11 driver because
  254. (i) it reports only relative coordinates and has no capabilities
  255. to report absolute coordinates
  256. (ii) the eXeda device itself uses Xfbdev as X Server and it does
  257. not allow using xf86-input-* drivers.
  258. Say y here if you have eXeda device and want to use a Synaptics
  259. I2C Touchpad.
  260. To compile this driver as a module, choose M here: the
  261. module will be called synaptics_i2c.
  262. config MOUSE_SYNAPTICS_USB
  263. tristate "Synaptics USB device support"
  264. depends on USB_ARCH_HAS_HCD
  265. select USB
  266. help
  267. Say Y here if you want to use a Synaptics USB touchpad or pointing
  268. stick.
  269. While these devices emulate an USB mouse by default and can be used
  270. with standard usbhid driver, this driver, together with its X.Org
  271. counterpart, allows you to fully utilize capabilities of the device.
  272. More information can be found at:
  273. <http://jan-steinhoff.de/linux/synaptics-usb.html>
  274. To compile this driver as a module, choose M here: the
  275. module will be called synaptics_usb.
  276. config MOUSE_NAVPOINT_PXA27x
  277. tristate "Synaptics NavPoint (PXA27x SSP/SPI)"
  278. depends on PXA27x && PXA_SSP
  279. help
  280. This driver adds support for the Synaptics NavPoint touchpad connected
  281. to a PXA27x SSP port in SPI slave mode. The device emulates a mouse;
  282. a tap or tap-and-a-half drag gesture emulates the left mouse button.
  283. For example, use the xf86-input-evdev driver for an X pointing device.
  284. To compile this driver as a module, choose M here: the
  285. module will be called navpoint.
  286. endif