Kconfig 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422
  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 ARCH_MIGHT_HAVE_PC_SERIO
  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. <http://xorg.freedesktop.org/archive/individual/driver/>
  30. to take advantage of the advanced features of the touchpad.
  31. If unsure, say Y.
  32. To compile this driver as a module, choose M here: the
  33. module will be called psmouse.
  34. config MOUSE_PS2_ALPS
  35. bool "ALPS PS/2 mouse protocol extension" if EXPERT
  36. default y
  37. depends on MOUSE_PS2
  38. help
  39. Say Y here if you have an ALPS PS/2 touchpad connected to
  40. your system.
  41. If unsure, say Y.
  42. config MOUSE_PS2_LOGIPS2PP
  43. bool "Logitech PS/2++ mouse protocol extension" if EXPERT
  44. default y
  45. depends on MOUSE_PS2
  46. help
  47. Say Y here if you have a Logitech PS/2++ mouse connected to
  48. your system.
  49. If unsure, say Y.
  50. config MOUSE_PS2_SYNAPTICS
  51. bool "Synaptics PS/2 mouse protocol extension" if EXPERT
  52. default y
  53. depends on MOUSE_PS2
  54. help
  55. Say Y here if you have a Synaptics PS/2 TouchPad connected to
  56. your system.
  57. If unsure, say Y.
  58. config MOUSE_PS2_CYPRESS
  59. bool "Cypress PS/2 mouse protocol extension" if EXPERT
  60. default y
  61. depends on MOUSE_PS2
  62. help
  63. Say Y here if you have a Cypress PS/2 Trackpad connected to
  64. your system.
  65. If unsure, say Y.
  66. config MOUSE_PS2_LIFEBOOK
  67. bool "Fujitsu Lifebook PS/2 mouse protocol extension" if EXPERT
  68. default y
  69. depends on MOUSE_PS2 && X86 && DMI
  70. help
  71. Say Y here if you have a Fujitsu B-series Lifebook PS/2
  72. TouchScreen connected to your system.
  73. If unsure, say Y.
  74. config MOUSE_PS2_TRACKPOINT
  75. bool "IBM Trackpoint PS/2 mouse protocol extension" if EXPERT
  76. default y
  77. depends on MOUSE_PS2
  78. help
  79. Say Y here if you have an IBM Trackpoint PS/2 mouse connected
  80. to your system.
  81. If unsure, say Y.
  82. config MOUSE_PS2_ELANTECH
  83. bool "Elantech PS/2 protocol extension"
  84. depends on MOUSE_PS2
  85. help
  86. Say Y here if you have an Elantech PS/2 touchpad connected
  87. to your system.
  88. This driver exposes some configuration registers via sysfs
  89. entries. For further information,
  90. see <file:Documentation/input/elantech.txt>.
  91. If unsure, say N.
  92. config MOUSE_PS2_SENTELIC
  93. bool "Sentelic Finger Sensing Pad PS/2 protocol extension"
  94. depends on MOUSE_PS2
  95. help
  96. Say Y here if you have a laptop (such as MSI WIND Netbook)
  97. with Sentelic Finger Sensing Pad touchpad.
  98. If unsure, say N.
  99. config MOUSE_PS2_TOUCHKIT
  100. bool "eGalax TouchKit PS/2 protocol extension"
  101. depends on MOUSE_PS2
  102. help
  103. Say Y here if you have an eGalax TouchKit PS/2 touchscreen
  104. connected to your system.
  105. If unsure, say N.
  106. config MOUSE_PS2_OLPC
  107. bool "OLPC PS/2 mouse protocol extension"
  108. depends on MOUSE_PS2 && OLPC
  109. help
  110. Say Y here if you have an OLPC XO-1 laptop (with built-in
  111. PS/2 touchpad/tablet device). The manufacturer calls the
  112. touchpad an HGPK.
  113. If unsure, say N.
  114. config MOUSE_PS2_FOCALTECH
  115. bool "FocalTech PS/2 mouse protocol extension" if EXPERT
  116. default y
  117. depends on MOUSE_PS2
  118. help
  119. Say Y here if you have a FocalTech PS/2 TouchPad connected to
  120. your system.
  121. If unsure, say Y.
  122. config MOUSE_PS2_VMMOUSE
  123. bool "Virtual mouse (vmmouse)"
  124. depends on MOUSE_PS2 && X86 && HYPERVISOR_GUEST
  125. help
  126. Say Y here if you are running under control of VMware hypervisor
  127. (ESXi, Workstation or Fusion). Also make sure that when you enable
  128. this option, you remove the xf86-input-vmmouse user-space driver
  129. or upgrade it to at least xf86-input-vmmouse 13.1.0, which doesn't
  130. load in the presence of an in-kernel vmmouse driver.
  131. If unsure, say N.
  132. config MOUSE_SERIAL
  133. tristate "Serial mouse"
  134. select SERIO
  135. help
  136. Say Y here if you have a serial (RS-232, COM port) mouse connected
  137. to your system. This includes Sun, MouseSystems, Microsoft,
  138. Logitech and all other compatible serial mice.
  139. If unsure, say N.
  140. To compile this driver as a module, choose M here: the
  141. module will be called sermouse.
  142. config MOUSE_APPLETOUCH
  143. tristate "Apple USB Touchpad support"
  144. depends on USB_ARCH_HAS_HCD
  145. select USB
  146. help
  147. Say Y here if you want to use an Apple USB Touchpad.
  148. These are the touchpads that can be found on post-February 2005
  149. Apple Powerbooks (prior models have a Synaptics touchpad connected
  150. to the ADB bus).
  151. This driver provides a basic mouse driver but can be interfaced
  152. with the synaptics X11 driver to provide acceleration and
  153. scrolling in X11.
  154. For further information, see
  155. <file:Documentation/input/appletouch.txt>.
  156. To compile this driver as a module, choose M here: the
  157. module will be called appletouch.
  158. config MOUSE_BCM5974
  159. tristate "Apple USB BCM5974 Multitouch trackpad support"
  160. depends on USB_ARCH_HAS_HCD
  161. select USB
  162. help
  163. Say Y here if you have an Apple USB BCM5974 Multitouch
  164. trackpad.
  165. The BCM5974 is the multitouch trackpad found in the Macbook
  166. Air (JAN2008) and Macbook Pro Penryn (FEB2008) laptops.
  167. It is also found in the IPhone (2007) and Ipod Touch (2008).
  168. This driver provides multitouch functionality together with
  169. the synaptics X11 driver.
  170. The interface is currently identical to the appletouch interface,
  171. for further information, see
  172. <file:Documentation/input/appletouch.txt>.
  173. To compile this driver as a module, choose M here: the
  174. module will be called bcm5974.
  175. config MOUSE_CYAPA
  176. tristate "Cypress APA I2C Trackpad support"
  177. depends on I2C
  178. select CRC_ITU_T
  179. help
  180. This driver adds support for Cypress All Points Addressable (APA)
  181. I2C Trackpads, including the ones used in 2012 Samsung Chromebooks.
  182. Say Y here if you have a Cypress APA I2C Trackpad.
  183. To compile this driver as a module, choose M here: the module will be
  184. called cyapa.
  185. config MOUSE_ELAN_I2C
  186. tristate "ELAN I2C Touchpad support"
  187. depends on I2C
  188. help
  189. This driver adds support for Elan I2C/SMbus Trackpads.
  190. Say Y here if you have a ELAN I2C/SMbus Touchpad.
  191. To compile this driver as a module, choose M here: the module will be
  192. called elan_i2c.
  193. config MOUSE_ELAN_I2C_I2C
  194. bool "Enable I2C support"
  195. depends on MOUSE_ELAN_I2C
  196. default y
  197. help
  198. Say Y here if Elan Touchpad in your system is connected to
  199. a standard I2C controller.
  200. If unsure, say Y.
  201. config MOUSE_ELAN_I2C_SMBUS
  202. bool "Enable SMbus support"
  203. depends on MOUSE_ELAN_I2C
  204. help
  205. Say Y here if Elan Touchpad in your system is connected to
  206. a SMbus adapter.
  207. If unsure, say Y.
  208. config MOUSE_INPORT
  209. tristate "InPort/MS/ATIXL busmouse"
  210. depends on ISA
  211. help
  212. Say Y here if you have an InPort, Microsoft or ATI XL busmouse.
  213. They are rather rare these days.
  214. To compile this driver as a module, choose M here: the
  215. module will be called inport.
  216. config MOUSE_ATIXL
  217. bool "ATI XL variant"
  218. depends on MOUSE_INPORT
  219. help
  220. Say Y here if your mouse is of the ATI XL variety.
  221. config MOUSE_LOGIBM
  222. tristate "Logitech busmouse"
  223. depends on ISA
  224. help
  225. Say Y here if you have a Logitech busmouse.
  226. They are rather rare these days.
  227. To compile this driver as a module, choose M here: the
  228. module will be called logibm.
  229. config MOUSE_PC110PAD
  230. tristate "IBM PC110 touchpad"
  231. depends on ISA
  232. help
  233. Say Y if you have the IBM PC-110 micro-notebook and want its
  234. touchpad supported.
  235. To compile this driver as a module, choose M here: the
  236. module will be called pc110pad.
  237. config MOUSE_AMIGA
  238. tristate "Amiga mouse"
  239. depends on AMIGA
  240. help
  241. Say Y here if you have an Amiga and want its native mouse
  242. supported by the kernel.
  243. To compile this driver as a module, choose M here: the
  244. module will be called amimouse.
  245. config MOUSE_ATARI
  246. tristate "Atari mouse"
  247. depends on ATARI
  248. select ATARI_KBD_CORE
  249. help
  250. Say Y here if you have an Atari and want its native mouse
  251. supported by the kernel.
  252. To compile this driver as a module, choose M here: the
  253. module will be called atarimouse.
  254. config MOUSE_RISCPC
  255. tristate "Acorn RiscPC mouse"
  256. depends on ARCH_ACORN
  257. help
  258. Say Y here if you have the Acorn RiscPC computer and want its
  259. native mouse supported.
  260. To compile this driver as a module, choose M here: the
  261. module will be called rpcmouse.
  262. config MOUSE_VSXXXAA
  263. tristate "DEC VSXXX-AA/GA mouse and VSXXX-AB tablet"
  264. select SERIO
  265. help
  266. Say Y (or M) if you want to use a DEC VSXXX-AA (hockey
  267. puck) or a VSXXX-GA (rectangular) mouse. Theses mice are
  268. typically used on DECstations or VAXstations, but can also
  269. be used on any box capable of RS232 (with some adaptor
  270. described in the source file). This driver also works with the
  271. digitizer (VSXXX-AB) DEC produced.
  272. config MOUSE_GPIO
  273. tristate "GPIO mouse"
  274. depends on GPIOLIB || COMPILE_TEST
  275. select INPUT_POLLDEV
  276. help
  277. This driver simulates a mouse on GPIO lines of various CPUs (and some
  278. other chips).
  279. Say Y here if your device has buttons or a simple joystick connected
  280. directly to GPIO lines. Your board-specific setup logic must also
  281. provide a platform device and platform data saying which GPIOs are
  282. used.
  283. To compile this driver as a module, choose M here: the
  284. module will be called gpio_mouse.
  285. config MOUSE_PXA930_TRKBALL
  286. tristate "PXA930 Trackball mouse"
  287. depends on CPU_PXA930 || CPU_PXA935
  288. help
  289. Say Y here to support PXA930 Trackball mouse.
  290. config MOUSE_MAPLE
  291. tristate "Maple mouse (for the Dreamcast)"
  292. depends on MAPLE
  293. help
  294. This driver supports the Maple mouse on the SEGA Dreamcast.
  295. Most Dreamcast users, who have a mouse, will say Y here.
  296. To compile this driver as a module choose M here: the module will be
  297. called maplemouse.
  298. config MOUSE_SYNAPTICS_I2C
  299. tristate "Synaptics I2C Touchpad support"
  300. depends on I2C
  301. help
  302. This driver supports Synaptics I2C touchpad controller on eXeda
  303. mobile device.
  304. The device will not work the synaptics X11 driver because
  305. (i) it reports only relative coordinates and has no capabilities
  306. to report absolute coordinates
  307. (ii) the eXeda device itself uses Xfbdev as X Server and it does
  308. not allow using xf86-input-* drivers.
  309. Say y here if you have eXeda device and want to use a Synaptics
  310. I2C Touchpad.
  311. To compile this driver as a module, choose M here: the
  312. module will be called synaptics_i2c.
  313. config MOUSE_SYNAPTICS_USB
  314. tristate "Synaptics USB device support"
  315. depends on USB_ARCH_HAS_HCD
  316. select USB
  317. help
  318. Say Y here if you want to use a Synaptics USB touchpad or pointing
  319. stick.
  320. While these devices emulate an USB mouse by default and can be used
  321. with standard usbhid driver, this driver, together with its X.Org
  322. counterpart, allows you to fully utilize capabilities of the device.
  323. More information can be found at:
  324. <http://jan-steinhoff.de/linux/synaptics-usb.html>
  325. To compile this driver as a module, choose M here: the
  326. module will be called synaptics_usb.
  327. config MOUSE_NAVPOINT_PXA27x
  328. tristate "Synaptics NavPoint (PXA27x SSP/SPI)"
  329. depends on PXA27x && PXA_SSP
  330. help
  331. This driver adds support for the Synaptics NavPoint touchpad connected
  332. to a PXA27x SSP port in SPI slave mode. The device emulates a mouse;
  333. a tap or tap-and-a-half drag gesture emulates the left mouse button.
  334. For example, use the xf86-input-evdev driver for an X pointing device.
  335. To compile this driver as a module, choose M here: the
  336. module will be called navpoint.
  337. endif