Kconfig 13 KB

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