xref: /linux/drivers/input/mouse/Kconfig (revision f89bd95c5c946776f116ffeb997653d4193d6a35)
11da177e4SLinus Torvalds#
21da177e4SLinus Torvalds# Mouse driver configuration
31da177e4SLinus Torvalds#
41da177e4SLinus Torvaldsmenuconfig INPUT_MOUSE
5b5da20f8SDmitry Torokhov	bool "Mice"
61da177e4SLinus Torvalds	default y
71da177e4SLinus Torvalds	help
81da177e4SLinus Torvalds	  Say Y here, and a list of supported mice will be displayed.
91da177e4SLinus Torvalds	  This option doesn't affect the kernel.
101da177e4SLinus Torvalds
111da177e4SLinus Torvalds	  If unsure, say Y.
121da177e4SLinus Torvalds
131da177e4SLinus Torvaldsif INPUT_MOUSE
141da177e4SLinus Torvalds
151da177e4SLinus Torvaldsconfig MOUSE_PS2
161da177e4SLinus Torvalds	tristate "PS/2 mouse"
171da177e4SLinus Torvalds	default y
181da177e4SLinus Torvalds	select SERIO
191da177e4SLinus Torvalds	select SERIO_LIBPS2
20f2c84c0eSArthur Othieno	select SERIO_I8042 if X86_PC
211da177e4SLinus Torvalds	select SERIO_GSCPS2 if GSC
22b5da20f8SDmitry Torokhov	help
231da177e4SLinus Torvalds	  Say Y here if you have a PS/2 mouse connected to your system. This
241da177e4SLinus Torvalds	  includes the standard 2 or 3-button PS/2 mouse, as well as PS/2
251da177e4SLinus Torvalds	  mice with wheels and extra buttons, Microsoft, Logitech or Genius
261da177e4SLinus Torvalds	  compatible.
271da177e4SLinus Torvalds
281da177e4SLinus Torvalds	  Synaptics TouchPad users might be interested in a specialized
291da177e4SLinus Torvalds	  XFree86 driver at:
301da177e4SLinus Torvalds		<http://w1.894.telia.com/~u89404340/touchpad/index.html>
311da177e4SLinus Torvalds	  and a new version of GPM at:
321da177e4SLinus Torvalds		<http://www.geocities.com/dt_or/gpm/gpm.html>
331da177e4SLinus Torvalds	  to take advantage of the advanced features of the touchpad.
341da177e4SLinus Torvalds
351da177e4SLinus Torvalds	  If unsure, say Y.
361da177e4SLinus Torvalds
371da177e4SLinus Torvalds	  To compile this driver as a module, choose M here: the
381da177e4SLinus Torvalds	  module will be called psmouse.
391da177e4SLinus Torvalds
4055e3d922SAndres Salomonconfig MOUSE_PS2_ALPS
4155e3d922SAndres Salomon	bool "ALPS PS/2 mouse protocol extension" if EMBEDDED
4255e3d922SAndres Salomon	default y
4355e3d922SAndres Salomon	depends on MOUSE_PS2
44b5da20f8SDmitry Torokhov	help
4555e3d922SAndres Salomon	  Say Y here if you have an ALPS PS/2 touchpad connected to
4655e3d922SAndres Salomon	  your system.
4755e3d922SAndres Salomon
4855e3d922SAndres Salomon	  If unsure, say Y.
4955e3d922SAndres Salomon
5055e3d922SAndres Salomonconfig MOUSE_PS2_LOGIPS2PP
51b23c9e38SUwe Bugla	bool "Logitech PS/2++ mouse protocol extension" if EMBEDDED
5255e3d922SAndres Salomon	default y
5355e3d922SAndres Salomon	depends on MOUSE_PS2
54b5da20f8SDmitry Torokhov	help
5555e3d922SAndres Salomon	  Say Y here if you have a Logictech PS/2++ mouse connected to
5655e3d922SAndres Salomon	  your system.
5755e3d922SAndres Salomon
5855e3d922SAndres Salomon	  If unsure, say Y.
5955e3d922SAndres Salomon
6055e3d922SAndres Salomonconfig MOUSE_PS2_SYNAPTICS
6155e3d922SAndres Salomon	bool "Synaptics PS/2 mouse protocol extension" if EMBEDDED
6255e3d922SAndres Salomon	default y
6355e3d922SAndres Salomon	depends on MOUSE_PS2
64b5da20f8SDmitry Torokhov	help
6555e3d922SAndres Salomon	  Say Y here if you have a Synaptics PS/2 TouchPad connected to
6655e3d922SAndres Salomon	  your system.
6755e3d922SAndres Salomon
6855e3d922SAndres Salomon	  If unsure, say Y.
6955e3d922SAndres Salomon
7055e3d922SAndres Salomonconfig MOUSE_PS2_LIFEBOOK
7155e3d922SAndres Salomon	bool "Fujitsu Lifebook PS/2 mouse protocol extension" if EMBEDDED
7255e3d922SAndres Salomon	default y
7355e3d922SAndres Salomon	depends on MOUSE_PS2
74b5da20f8SDmitry Torokhov	help
7555e3d922SAndres Salomon	  Say Y here if you have a Fujitsu B-series Lifebook PS/2
7655e3d922SAndres Salomon	  TouchScreen connected to your system.
7755e3d922SAndres Salomon
7855e3d922SAndres Salomon	  If unsure, say Y.
7955e3d922SAndres Salomon
8055e3d922SAndres Salomonconfig MOUSE_PS2_TRACKPOINT
8155e3d922SAndres Salomon	bool "IBM Trackpoint PS/2 mouse protocol extension" if EMBEDDED
8255e3d922SAndres Salomon	default y
8355e3d922SAndres Salomon	depends on MOUSE_PS2
84b5da20f8SDmitry Torokhov	help
8555e3d922SAndres Salomon	  Say Y here if you have an IBM Trackpoint PS/2 mouse connected
8655e3d922SAndres Salomon	  to your system.
8755e3d922SAndres Salomon
8855e3d922SAndres Salomon	  If unsure, say Y.
8955e3d922SAndres Salomon
9055e3d922SAndres Salomonconfig MOUSE_PS2_TOUCHKIT
9155e3d922SAndres Salomon	bool "eGalax TouchKit PS/2 protocol extension"
9255e3d922SAndres Salomon	depends on MOUSE_PS2
93b5da20f8SDmitry Torokhov	help
9455e3d922SAndres Salomon	  Say Y here if you have an eGalax TouchKit PS/2 touchscreen
9555e3d922SAndres Salomon	  connected to your system.
9655e3d922SAndres Salomon
9755e3d922SAndres Salomon	  If unsure, say N.
9855e3d922SAndres Salomon
991da177e4SLinus Torvaldsconfig MOUSE_SERIAL
1001da177e4SLinus Torvalds	tristate "Serial mouse"
1011da177e4SLinus Torvalds	select SERIO
102b5da20f8SDmitry Torokhov	help
1031da177e4SLinus Torvalds	  Say Y here if you have a serial (RS-232, COM port) mouse connected
1041da177e4SLinus Torvalds	  to your system. This includes Sun, MouseSystems, Microsoft,
1051da177e4SLinus Torvalds	  Logitech and all other compatible serial mice.
1061da177e4SLinus Torvalds
1071da177e4SLinus Torvalds	  If unsure, say N.
1081da177e4SLinus Torvalds
1091da177e4SLinus Torvalds	  To compile this driver as a module, choose M here: the
1101da177e4SLinus Torvalds	  module will be called sermouse.
1111da177e4SLinus Torvalds
112b5da20f8SDmitry Torokhovconfig MOUSE_APPLETOUCH
113b5da20f8SDmitry Torokhov	tristate "Apple USB Touchpad support"
1147a86edefSAl Viro	depends on USB_ARCH_HAS_HCD
115b5da20f8SDmitry Torokhov	select USB
116b5da20f8SDmitry Torokhov	help
117b5da20f8SDmitry Torokhov	  Say Y here if you want to use an Apple USB Touchpad.
118b5da20f8SDmitry Torokhov
119b5da20f8SDmitry Torokhov	  These are the touchpads that can be found on post-February 2005
120b5da20f8SDmitry Torokhov	  Apple Powerbooks (prior models have a Synaptics touchpad connected
121b5da20f8SDmitry Torokhov	  to the ADB bus).
122b5da20f8SDmitry Torokhov
123b5da20f8SDmitry Torokhov	  This driver provides a basic mouse driver but can be interfaced
124b5da20f8SDmitry Torokhov	  with the synaptics X11 driver to provide acceleration and
125b5da20f8SDmitry Torokhov	  scrolling in X11.
126b5da20f8SDmitry Torokhov
127b5da20f8SDmitry Torokhov	  For further information, see
128b5da20f8SDmitry Torokhov	  <file:Documentation/input/appletouch.txt>.
129b5da20f8SDmitry Torokhov
130b5da20f8SDmitry Torokhov	  To compile this driver as a module, choose M here: the
131b5da20f8SDmitry Torokhov	  module will be called appletouch.
132b5da20f8SDmitry Torokhov
133*f89bd95cSHenrik Rydbergconfig MOUSE_BCM5974
134*f89bd95cSHenrik Rydberg	tristate "Apple USB BCM5974 Multitouch trackpad support"
135*f89bd95cSHenrik Rydberg	depends on USB_ARCH_HAS_HCD
136*f89bd95cSHenrik Rydberg	select USB
137*f89bd95cSHenrik Rydberg	help
138*f89bd95cSHenrik Rydberg	  Say Y here if you have an Apple USB BCM5974 Multitouch
139*f89bd95cSHenrik Rydberg	  trackpad.
140*f89bd95cSHenrik Rydberg
141*f89bd95cSHenrik Rydberg	  The BCM5974 is the multitouch trackpad found in the Macbook
142*f89bd95cSHenrik Rydberg	  Air (JAN2008) and Macbook Pro Penryn (FEB2008) laptops.
143*f89bd95cSHenrik Rydberg
144*f89bd95cSHenrik Rydberg	  It is also found in the IPhone (2007) and Ipod Touch (2008).
145*f89bd95cSHenrik Rydberg
146*f89bd95cSHenrik Rydberg	  This driver provides multitouch functionality together with
147*f89bd95cSHenrik Rydberg	  the synaptics X11 driver.
148*f89bd95cSHenrik Rydberg
149*f89bd95cSHenrik Rydberg	  The interface is currently identical to the appletouch interface,
150*f89bd95cSHenrik Rydberg	  for further information, see
151*f89bd95cSHenrik Rydberg	  <file:Documentation/input/appletouch.txt>.
152*f89bd95cSHenrik Rydberg
153*f89bd95cSHenrik Rydberg	  To compile this driver as a module, choose M here: the
154*f89bd95cSHenrik Rydberg	  module will be called bcm5974.
155*f89bd95cSHenrik Rydberg
1561da177e4SLinus Torvaldsconfig MOUSE_INPORT
1571da177e4SLinus Torvalds	tristate "InPort/MS/ATIXL busmouse"
1581da177e4SLinus Torvalds	depends on ISA
1591da177e4SLinus Torvalds	help
1601da177e4SLinus Torvalds	  Say Y here if you have an InPort, Microsoft or ATI XL busmouse.
1611da177e4SLinus Torvalds	  They are rather rare these days.
1621da177e4SLinus Torvalds
1631da177e4SLinus Torvalds	  To compile this driver as a module, choose M here: the
1641da177e4SLinus Torvalds	  module will be called inport.
1651da177e4SLinus Torvalds
1661da177e4SLinus Torvaldsconfig MOUSE_ATIXL
1671da177e4SLinus Torvalds	bool "ATI XL variant"
1681da177e4SLinus Torvalds	depends on MOUSE_INPORT
1691da177e4SLinus Torvalds	help
1701da177e4SLinus Torvalds	  Say Y here if your mouse is of the ATI XL variety.
1711da177e4SLinus Torvalds
1721da177e4SLinus Torvaldsconfig MOUSE_LOGIBM
1731da177e4SLinus Torvalds	tristate "Logitech busmouse"
1741da177e4SLinus Torvalds	depends on ISA
1751da177e4SLinus Torvalds	help
1761da177e4SLinus Torvalds	  Say Y here if you have a Logitech busmouse.
1771da177e4SLinus Torvalds	  They are rather rare these days.
1781da177e4SLinus Torvalds
1791da177e4SLinus Torvalds	  To compile this driver as a module, choose M here: the
1801da177e4SLinus Torvalds	  module will be called logibm.
1811da177e4SLinus Torvalds
1821da177e4SLinus Torvaldsconfig MOUSE_PC110PAD
1831da177e4SLinus Torvalds	tristate "IBM PC110 touchpad"
1841da177e4SLinus Torvalds	depends on ISA
1851da177e4SLinus Torvalds	help
1861da177e4SLinus Torvalds	  Say Y if you have the IBM PC-110 micro-notebook and want its
1871da177e4SLinus Torvalds	  touchpad supported.
1881da177e4SLinus Torvalds
1891da177e4SLinus Torvalds	  To compile this driver as a module, choose M here: the
1901da177e4SLinus Torvalds	  module will be called pc110pad.
1911da177e4SLinus Torvalds
1921da177e4SLinus Torvaldsconfig MOUSE_AMIGA
1931da177e4SLinus Torvalds	tristate "Amiga mouse"
1941da177e4SLinus Torvalds	depends on AMIGA
1951da177e4SLinus Torvalds	help
1961da177e4SLinus Torvalds	  Say Y here if you have an Amiga and want its native mouse
1971da177e4SLinus Torvalds	  supported by the kernel.
1981da177e4SLinus Torvalds
1991da177e4SLinus Torvalds	  To compile this driver as a module, choose M here: the
2001da177e4SLinus Torvalds	  module will be called amimouse.
2011da177e4SLinus Torvalds
202c04cb856SMichael Schmitzconfig MOUSE_ATARI
203c04cb856SMichael Schmitz	tristate "Atari mouse"
204c04cb856SMichael Schmitz	depends on ATARI
205c04cb856SMichael Schmitz	select ATARI_KBD_CORE
206c04cb856SMichael Schmitz	help
207c04cb856SMichael Schmitz	  Say Y here if you have an Atari and want its native mouse
208c04cb856SMichael Schmitz	  supported by the kernel.
209c04cb856SMichael Schmitz
210c04cb856SMichael Schmitz	  To compile this driver as a module, choose M here: the
211c04cb856SMichael Schmitz	  module will be called atarimouse.
212c04cb856SMichael Schmitz
2131da177e4SLinus Torvaldsconfig MOUSE_RISCPC
2141da177e4SLinus Torvalds	tristate "Acorn RiscPC mouse"
2151da177e4SLinus Torvalds	depends on ARCH_ACORN
2161da177e4SLinus Torvalds	help
2171da177e4SLinus Torvalds	  Say Y here if you have the Acorn RiscPC computer and want its
2181da177e4SLinus Torvalds	  native mouse supported.
2191da177e4SLinus Torvalds
2201da177e4SLinus Torvalds	  To compile this driver as a module, choose M here: the
2211da177e4SLinus Torvalds	  module will be called rpcmouse.
2221da177e4SLinus Torvalds
2231da177e4SLinus Torvaldsconfig MOUSE_VSXXXAA
2241da177e4SLinus Torvalds	tristate "DEC VSXXX-AA/GA mouse and VSXXX-AB tablet"
2251da177e4SLinus Torvalds	select SERIO
2261da177e4SLinus Torvalds	help
2271da177e4SLinus Torvalds	  Say Y (or M) if you want to use a DEC VSXXX-AA (hockey
2281da177e4SLinus Torvalds	  puck) or a VSXXX-GA (rectangular) mouse. Theses mice are
2291da177e4SLinus Torvalds	  typically used on DECstations or VAXstations, but can also
2301da177e4SLinus Torvalds	  be used on any box capable of RS232 (with some adaptor
2311da177e4SLinus Torvalds	  described in the source file). This driver also works with the
2321da177e4SLinus Torvalds	  digitizer (VSXXX-AB) DEC produced.
2331da177e4SLinus Torvalds
2341da177e4SLinus Torvaldsconfig MOUSE_HIL
2351da177e4SLinus Torvalds	tristate "HIL pointers (mice etc)."
236da96d0b5SGeert Uytterhoeven	depends on GSC || HP300
2371da177e4SLinus Torvalds	select HP_SDC
2381da177e4SLinus Torvalds	select HIL_MLC
2391da177e4SLinus Torvalds	help
2401da177e4SLinus Torvalds	  Say Y here to support HIL pointers.
2411da177e4SLinus Torvalds
2425f565502SHans-Christian Egtvedtconfig MOUSE_GPIO
2435f565502SHans-Christian Egtvedt	tristate "GPIO mouse"
2445f565502SHans-Christian Egtvedt	depends on GENERIC_GPIO
2455f565502SHans-Christian Egtvedt	select INPUT_POLLDEV
2465f565502SHans-Christian Egtvedt	help
2475f565502SHans-Christian Egtvedt	  This driver simulates a mouse on GPIO lines of various CPUs (and some
2485f565502SHans-Christian Egtvedt	  other chips).
2495f565502SHans-Christian Egtvedt
2505f565502SHans-Christian Egtvedt	  Say Y here if your device has buttons or a simple joystick connected
2515f565502SHans-Christian Egtvedt	  directly to GPIO lines. Your board-specific setup logic must also
2525f565502SHans-Christian Egtvedt	  provide a platform device and platform data saying which GPIOs are
2535f565502SHans-Christian Egtvedt	  used.
2545f565502SHans-Christian Egtvedt
2555f565502SHans-Christian Egtvedt	  To compile this driver as a module, choose M here: the
2565f565502SHans-Christian Egtvedt	  module will be called gpio_mouse.
2575f565502SHans-Christian Egtvedt
2581da177e4SLinus Torvaldsendif
259