blob: 2682a7d6cb458d8880eaa88fde75ee77a7b2dac9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#
2# Mouse driver configuration
3#
4menuconfig INPUT_MOUSE
Dmitry Torokhovb5da20f2007-05-07 17:12:07 -04005 bool "Mice"
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 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
11 If unsure, say Y.
12
13if INPUT_MOUSE
14
15config MOUSE_PS2
16 tristate "PS/2 mouse"
17 default y
18 select SERIO
19 select SERIO_LIBPS2
Arthur Othienof2c84c02005-10-30 23:04:05 -050020 select SERIO_I8042 if X86_PC
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 select SERIO_GSCPS2 if GSC
Dmitry Torokhovb5da20f2007-05-07 17:12:07 -040022 help
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 Say Y here if you have a PS/2 mouse connected to your system. This
24 includes the standard 2 or 3-button PS/2 mouse, as well as PS/2
25 mice with wheels and extra buttons, Microsoft, Logitech or Genius
26 compatible.
27
28 Synaptics TouchPad users might be interested in a specialized
29 XFree86 driver at:
30 <http://w1.894.telia.com/~u89404340/touchpad/index.html>
31 and a new version of GPM at:
32 <http://www.geocities.com/dt_or/gpm/gpm.html>
33 to take advantage of the advanced features of the touchpad.
34
35 If unsure, say Y.
36
37 To compile this driver as a module, choose M here: the
38 module will be called psmouse.
39
Andres Salomon55e3d922007-03-10 01:39:54 -050040config MOUSE_PS2_ALPS
41 bool "ALPS PS/2 mouse protocol extension" if EMBEDDED
42 default y
43 depends on MOUSE_PS2
Dmitry Torokhovb5da20f2007-05-07 17:12:07 -040044 help
Andres Salomon55e3d922007-03-10 01:39:54 -050045 Say Y here if you have an ALPS PS/2 touchpad connected to
46 your system.
47
48 If unsure, say Y.
49
50config MOUSE_PS2_LOGIPS2PP
Uwe Buglab23c9e32007-05-28 23:24:48 -040051 bool "Logitech PS/2++ mouse protocol extension" if EMBEDDED
Andres Salomon55e3d922007-03-10 01:39:54 -050052 default y
53 depends on MOUSE_PS2
Dmitry Torokhovb5da20f2007-05-07 17:12:07 -040054 help
Andres Salomon55e3d922007-03-10 01:39:54 -050055 Say Y here if you have a Logictech PS/2++ mouse connected to
56 your system.
57
58 If unsure, say Y.
59
60config MOUSE_PS2_SYNAPTICS
61 bool "Synaptics PS/2 mouse protocol extension" if EMBEDDED
62 default y
63 depends on MOUSE_PS2
Dmitry Torokhovb5da20f2007-05-07 17:12:07 -040064 help
Andres Salomon55e3d922007-03-10 01:39:54 -050065 Say Y here if you have a Synaptics PS/2 TouchPad connected to
66 your system.
67
68 If unsure, say Y.
69
70config MOUSE_PS2_LIFEBOOK
71 bool "Fujitsu Lifebook PS/2 mouse protocol extension" if EMBEDDED
72 default y
73 depends on MOUSE_PS2
Dmitry Torokhovb5da20f2007-05-07 17:12:07 -040074 help
Andres Salomon55e3d922007-03-10 01:39:54 -050075 Say Y here if you have a Fujitsu B-series Lifebook PS/2
76 TouchScreen connected to your system.
77
78 If unsure, say Y.
79
80config MOUSE_PS2_TRACKPOINT
81 bool "IBM Trackpoint PS/2 mouse protocol extension" if EMBEDDED
82 default y
83 depends on MOUSE_PS2
Dmitry Torokhovb5da20f2007-05-07 17:12:07 -040084 help
Andres Salomon55e3d922007-03-10 01:39:54 -050085 Say Y here if you have an IBM Trackpoint PS/2 mouse connected
86 to your system.
87
88 If unsure, say Y.
89
90config MOUSE_PS2_TOUCHKIT
91 bool "eGalax TouchKit PS/2 protocol extension"
92 depends on MOUSE_PS2
Dmitry Torokhovb5da20f2007-05-07 17:12:07 -040093 help
Andres Salomon55e3d922007-03-10 01:39:54 -050094 Say Y here if you have an eGalax TouchKit PS/2 touchscreen
95 connected to your system.
96
97 If unsure, say N.
98
Linus Torvalds1da177e2005-04-16 15:20:36 -070099config MOUSE_SERIAL
100 tristate "Serial mouse"
101 select SERIO
Dmitry Torokhovb5da20f2007-05-07 17:12:07 -0400102 help
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 Say Y here if you have a serial (RS-232, COM port) mouse connected
104 to your system. This includes Sun, MouseSystems, Microsoft,
105 Logitech and all other compatible serial mice.
106
107 If unsure, say N.
108
109 To compile this driver as a module, choose M here: the
110 module will be called sermouse.
111
Dmitry Torokhovb5da20f2007-05-07 17:12:07 -0400112config MOUSE_APPLETOUCH
113 tristate "Apple USB Touchpad support"
114 select USB
115 help
116 Say Y here if you want to use an Apple USB Touchpad.
117
118 These are the touchpads that can be found on post-February 2005
119 Apple Powerbooks (prior models have a Synaptics touchpad connected
120 to the ADB bus).
121
122 This driver provides a basic mouse driver but can be interfaced
123 with the synaptics X11 driver to provide acceleration and
124 scrolling in X11.
125
126 For further information, see
127 <file:Documentation/input/appletouch.txt>.
128
129 To compile this driver as a module, choose M here: the
130 module will be called appletouch.
131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132config MOUSE_INPORT
133 tristate "InPort/MS/ATIXL busmouse"
134 depends on ISA
135 help
136 Say Y here if you have an InPort, Microsoft or ATI XL busmouse.
137 They are rather rare these days.
138
139 To compile this driver as a module, choose M here: the
140 module will be called inport.
141
142config MOUSE_ATIXL
143 bool "ATI XL variant"
144 depends on MOUSE_INPORT
145 help
146 Say Y here if your mouse is of the ATI XL variety.
147
148config MOUSE_LOGIBM
149 tristate "Logitech busmouse"
150 depends on ISA
151 help
152 Say Y here if you have a Logitech busmouse.
153 They are rather rare these days.
154
155 To compile this driver as a module, choose M here: the
156 module will be called logibm.
157
158config MOUSE_PC110PAD
159 tristate "IBM PC110 touchpad"
160 depends on ISA
161 help
162 Say Y if you have the IBM PC-110 micro-notebook and want its
163 touchpad supported.
164
165 To compile this driver as a module, choose M here: the
166 module will be called pc110pad.
167
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168config MOUSE_AMIGA
169 tristate "Amiga mouse"
170 depends on AMIGA
171 help
172 Say Y here if you have an Amiga and want its native mouse
173 supported by the kernel.
174
175 To compile this driver as a module, choose M here: the
176 module will be called amimouse.
177
Michael Schmitzc04cb852007-05-01 22:32:38 +0200178config MOUSE_ATARI
179 tristate "Atari mouse"
180 depends on ATARI
181 select ATARI_KBD_CORE
182 help
183 Say Y here if you have an Atari and want its native mouse
184 supported by the kernel.
185
186 To compile this driver as a module, choose M here: the
187 module will be called atarimouse.
188
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189config MOUSE_RISCPC
190 tristate "Acorn RiscPC mouse"
191 depends on ARCH_ACORN
192 help
193 Say Y here if you have the Acorn RiscPC computer and want its
194 native mouse supported.
195
196 To compile this driver as a module, choose M here: the
197 module will be called rpcmouse.
198
199config MOUSE_VSXXXAA
200 tristate "DEC VSXXX-AA/GA mouse and VSXXX-AB tablet"
201 select SERIO
202 help
203 Say Y (or M) if you want to use a DEC VSXXX-AA (hockey
204 puck) or a VSXXX-GA (rectangular) mouse. Theses mice are
205 typically used on DECstations or VAXstations, but can also
206 be used on any box capable of RS232 (with some adaptor
207 described in the source file). This driver also works with the
208 digitizer (VSXXX-AB) DEC produced.
209
210config MOUSE_HIL
Andres Salomon55e3d922007-03-10 01:39:54 -0500211 tristate "HIL pointers (mice etc)."
Geert Uytterhoevenda96d0b2006-10-09 22:22:37 +0200212 depends on GSC || HP300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 select HP_SDC
214 select HIL_MLC
215 help
216 Say Y here to support HIL pointers.
217
218endif