blob: 8a62d4785755ef38319372611aeed6a040d89d3a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#
2# USB Input driver configuration
3#
4comment "USB Input Devices"
5 depends on USB
6
7config USB_HID
8 tristate "USB Human Interface Device (full HID) support"
Jiri Kosina63f38612006-12-08 18:41:30 +01009 default y
10 depends on USB && HID
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 ---help---
Jiri Kosina63f38612006-12-08 18:41:30 +010012 Say Y here if you want full HID support to connect USB keyboards,
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 mice, joysticks, graphic tablets, or any other HID based devices
14 to your computer via USB. You also need to select HID Input layer
15 support (below) if you want to use keyboards, mice, joysticks and
16 the like ... as well as Uninterruptible Power Supply (UPS) and
17 monitor control devices.
18
19 You can't use this driver and the HIDBP (Boot Protocol) keyboard
20 and mouse drivers at the same time. More information is available:
21 <file:Documentation/input/input.txt>.
22
23 If unsure, say Y.
24
25 To compile this driver as a module, choose M here: the
26 module will be called usbhid.
27
28comment "Input core support is needed for USB HID input layer or HIDBP support"
29 depends on USB_HID && INPUT=n
30
Jiri Kosina63f38612006-12-08 18:41:30 +010031config USB_HID_POWERBOOK
Michael Hanselmanneab9edd2006-01-14 10:08:06 -050032 bool "Enable support for iBook/PowerBook special keys"
33 default n
Jiri Kosina63f38612006-12-08 18:41:30 +010034 depends on USB_HID
Michael Hanselmanneab9edd2006-01-14 10:08:06 -050035 help
36 Say Y here if you want support for the special keys (Fn, Numlock) on
37 Apple iBooks and PowerBooks.
38
39 If unsure, say N.
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041config HID_FF
42 bool "Force feedback support (EXPERIMENTAL)"
Jiri Kosina63f38612006-12-08 18:41:30 +010043 depends on USB_HID && EXPERIMENTAL
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 help
45 Say Y here is you want force feedback support for a few HID devices.
46 See below for a list of supported devices.
47
48 See <file:Documentation/input/ff.txt> for a description of the force
49 feedback API.
50
51 If unsure, say N.
52
53config HID_PID
Anssi Hannula224ee882006-07-19 01:40:47 -040054 bool "PID device support"
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 depends on HID_FF
56 help
Anssi Hannula224ee882006-07-19 01:40:47 -040057 Say Y here if you have a PID-compliant device and wish to enable force
58 feedback for it. Microsoft Sidewinder Force Feedback 2 is one of such
59 devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61config LOGITECH_FF
62 bool "Logitech WingMan *3D support"
63 depends on HID_FF
Anssi Hannuladc76c912006-07-19 01:40:55 -040064 select INPUT_FF_MEMLESS if USB_HID
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 help
66 Say Y here if you have one of these devices:
67 - Logitech WingMan Cordless RumblePad
68 - Logitech WingMan Force 3D
69 and if you want to enable force feedback for them.
70 Note: if you say N here, this device will still be supported, but without
71 force feedback.
72
73config THRUSTMASTER_FF
74 bool "ThrustMaster FireStorm Dual Power 2 support (EXPERIMENTAL)"
75 depends on HID_FF && EXPERIMENTAL
Anssi Hannuladc76c912006-07-19 01:40:55 -040076 select INPUT_FF_MEMLESS if USB_HID
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 help
78 Say Y here if you have a THRUSTMASTER FireStore Dual Power 2,
79 and want to enable force feedback support for it.
80 Note: if you say N here, this device will still be supported, but without
81 force feedback.
82
Anssi Hannulabb3caf72006-07-19 01:44:17 -040083config ZEROPLUS_FF
84 bool "Zeroplus based game controller support"
85 depends on HID_FF
86 select INPUT_FF_MEMLESS if USB_HID
87 help
88 Say Y here if you have a Zeroplus based game controller and want to
89 enable force feedback for it.
90
Linus Torvalds1da177e2005-04-16 15:20:36 -070091config USB_HIDDEV
92 bool "/dev/hiddev raw HID device support"
93 depends on USB_HID
94 help
95 Say Y here if you want to support HID devices (from the USB
96 specification standpoint) that aren't strictly user interface
97 devices, like monitor controls and Uninterruptable Power Supplies.
98
99 This module supports these devices separately using a separate
100 event interface on /dev/usb/hiddevX (char 180:96 to 180:111).
101
102 If unsure, say Y.
103
104menu "USB HID Boot Protocol drivers"
105 depends on USB!=n && USB_HID!=y
106
107config USB_KBD
108 tristate "USB HIDBP Keyboard (simple Boot) support"
109 depends on USB && INPUT
110 ---help---
111 Say Y here only if you are absolutely sure that you don't want
112 to use the generic HID driver for your USB keyboard and prefer
113 to use the keyboard in its limited Boot Protocol mode instead.
114
115 This is almost certainly not what you want. This is mostly
116 useful for embedded applications or simple keyboards.
117
118 To compile this driver as a module, choose M here: the
119 module will be called usbkbd.
120
121 If even remotely unsure, say N.
122
123config USB_MOUSE
124 tristate "USB HIDBP Mouse (simple Boot) support"
125 depends on USB && INPUT
126 ---help---
127 Say Y here only if you are absolutely sure that you don't want
128 to use the generic HID driver for your USB mouse and prefer
129 to use the mouse in its limited Boot Protocol mode instead.
130
131 This is almost certainly not what you want. This is mostly
132 useful for embedded applications or simple mice.
133
134 To compile this driver as a module, choose M here: the
135 module will be called usbmouse.
136
137 If even remotely unsure, say N.
138
139endmenu
140
141config USB_AIPTEK
142 tristate "Aiptek 6000U/8000U tablet support"
143 depends on USB && INPUT
144 help
145 Say Y here if you want to use the USB version of the Aiptek 6000U
146 or Aiptek 8000U tablet. Make sure to say Y to "Mouse support"
147 (CONFIG_INPUT_MOUSEDEV) and/or "Event interface support"
148 (CONFIG_INPUT_EVDEV) as well.
149
150 To compile this driver as a module, choose M here: the
151 module will be called aiptek.
152
153config USB_WACOM
154 tristate "Wacom Intuos/Graphire tablet support"
155 depends on USB && INPUT
156 help
157 Say Y here if you want to use the USB version of the Wacom Intuos
158 or Graphire tablet. Make sure to say Y to "Mouse support"
159 (CONFIG_INPUT_MOUSEDEV) and/or "Event interface support"
160 (CONFIG_INPUT_EVDEV) as well.
161
162 To compile this driver as a module, choose M here: the
163 module will be called wacom.
164
Stephane VOLTZ53880542005-06-06 02:22:37 -0500165config USB_ACECAD
166 tristate "Acecad Flair tablet support"
167 depends on USB && INPUT
168 help
169 Say Y here if you want to use the USB version of the Acecad Flair
170 tablet. Make sure to say Y to "Mouse support"
171 (CONFIG_INPUT_MOUSEDEV) and/or "Event interface support"
172 (CONFIG_INPUT_EVDEV) as well.
173
174 To compile this driver as a module, choose M here: the
175 module will be called acecad.
176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177config USB_KBTAB
178 tristate "KB Gear JamStudio tablet support"
179 depends on USB && INPUT
180 help
181 Say Y here if you want to use the USB version of the KB Gear
182 JamStudio tablet. Make sure to say Y to "Mouse support"
183 (CONFIG_INPUT_MOUSEDEV) and/or "Event interface support"
184 (CONFIG_INPUT_EVDEV) as well.
185
186 To compile this driver as a module, choose M here: the
187 module will be called kbtab.
188
189config USB_POWERMATE
190 tristate "Griffin PowerMate and Contour Jog support"
191 depends on USB && INPUT
192 ---help---
193 Say Y here if you want to use Griffin PowerMate or Contour Jog devices.
194 These are aluminum dials which can measure clockwise and anticlockwise
195 rotation. The dial also acts as a pushbutton. The base contains an LED
196 which can be instructed to pulse or to switch to a particular intensity.
197
198 You can download userspace tools from
199 <http://sowerbutts.com/powermate/>.
200
201 To compile this driver as a module, choose M here: the
202 module will be called powermate.
203
Daniel Ritz1d3e2022006-03-29 22:41:07 +0200204config USB_TOUCHSCREEN
205 tristate "USB Touchscreen Driver"
206 depends on USB && INPUT
207 ---help---
208 USB Touchscreen driver for:
Daniel Ritz5d892662006-07-31 21:43:24 +0200209 - eGalax Touchkit USB (also includes eTurboTouch CT-410/510/700)
Daniel Ritz1d3e2022006-03-29 22:41:07 +0200210 - PanJit TouchSet USB
Daniel Ritz5d892662006-07-31 21:43:24 +0200211 - 3M MicroTouch USB (EX II series)
Daniel Ritz1d3e2022006-03-29 22:41:07 +0200212 - ITM
Daniel Ritz5d892662006-07-31 21:43:24 +0200213 - some other eTurboTouch
214 - Gunze AHL61
Holger Schurig24ced062006-11-17 22:50:15 +0100215 - DMC TSC-10/25
Daniel Ritz1d3e2022006-03-29 22:41:07 +0200216
217 Have a look at <http://linux.chapter7.ch/touchkit/> for
218 a usage description and the required user-space stuff.
219
220 To compile this driver as a module, choose M here: the
221 module will be called usbtouchscreen.
222
223config USB_TOUCHSCREEN_EGALAX
224 default y
Daniel Ritz5d892662006-07-31 21:43:24 +0200225 bool "eGalax, eTurboTouch CT-410/510/700 device support" if EMBEDDED
Daniel Ritz1d3e2022006-03-29 22:41:07 +0200226 depends on USB_TOUCHSCREEN
227
228config USB_TOUCHSCREEN_PANJIT
229 default y
230 bool "PanJit device support" if EMBEDDED
231 depends on USB_TOUCHSCREEN
232
233config USB_TOUCHSCREEN_3M
234 default y
Daniel Ritz5d892662006-07-31 21:43:24 +0200235 bool "3M/Microtouch EX II series device support" if EMBEDDED
Daniel Ritz1d3e2022006-03-29 22:41:07 +0200236 depends on USB_TOUCHSCREEN
237
238config USB_TOUCHSCREEN_ITM
239 default y
240 bool "ITM device support" if EMBEDDED
241 depends on USB_TOUCHSCREEN
242
Daniel Ritz5d892662006-07-31 21:43:24 +0200243config USB_TOUCHSCREEN_ETURBO
244 default y
245 bool "eTurboTouch (non-eGalax compatible) device support" if EMBEDDED
246 depends on USB_TOUCHSCREEN
247
248config USB_TOUCHSCREEN_GUNZE
249 default y
250 bool "Gunze AHL61 device support" if EMBEDDED
251 depends on USB_TOUCHSCREEN
252
Holger Schurig24ced062006-11-17 22:50:15 +0100253config USB_TOUCHSCREEN_DMC_TSC10
254 default y
255 bool "DMC TSC-10/25 device support" if EMBEDDED
256 depends on USB_TOUCHSCREEN
257
Henkaca951a2005-08-16 16:17:43 +0200258config USB_YEALINK
259 tristate "Yealink usb-p1k voip phone"
260 depends on USB && INPUT && EXPERIMENTAL
261 ---help---
262 Say Y here if you want to enable keyboard and LCD functions of the
263 Yealink usb-p1k usb phones. The audio part is enabled by the generic
264 usb sound driver, so you might want to enable that as well.
265
266 For information about how to use these additional functions, see
267 <file:Documentation/input/yealink.txt>.
268
269 To compile this driver as a module, choose M here: the module will be
270 called yealink.
271
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272config USB_XPAD
273 tristate "X-Box gamepad support"
274 depends on USB && INPUT
275 ---help---
276 Say Y here if you want to use the X-Box pad with your computer.
277 Make sure to say Y to "Joystick support" (CONFIG_INPUT_JOYDEV)
278 and/or "Event interface support" (CONFIG_INPUT_EVDEV) as well.
279
280 For information about how to connect the X-Box pad to USB, see
281 <file:Documentation/input/xpad.txt>.
282
283 To compile this driver as a module, choose M here: the
284 module will be called xpad.
285
286config USB_ATI_REMOTE
287 tristate "ATI / X10 USB RF remote control"
288 depends on USB && INPUT
289 ---help---
290 Say Y here if you want to use an ATI or X10 "Lola" USB remote control.
291 These are RF remotes with USB receivers.
292 The ATI remote comes with many of ATI's All-In-Wonder video cards.
293 The X10 "Lola" remote is available at:
294 <http://www.x10.com/products/lola_sg1.htm>
295 This driver provides mouse pointer, left and right mouse buttons,
296 and maps all the other remote buttons to keypress events.
297
298 To compile this driver as a module, choose M here: the module will be
299 called ati_remote.
300
Ville Syrjälä735b0cb2005-12-10 20:30:54 +0200301config USB_ATI_REMOTE2
302 tristate "ATI / Philips USB RF remote control"
303 depends on USB && INPUT
304 ---help---
305 Say Y here if you want to use an ATI or Philips USB RF remote control.
306 These are RF remotes with USB receivers.
307 ATI Remote Wonder II comes with some ATI's All-In-Wonder video cards
308 and is also available as a separate product.
309 This driver provides mouse pointer, left and right mouse buttons,
310 and maps all the other remote buttons to keypress events.
311
312 To compile this driver as a module, choose M here: the module will be
313 called ati_remote2.
314
Michael Downey99f83c92005-06-27 11:48:26 -0600315config USB_KEYSPAN_REMOTE
316 tristate "Keyspan DMR USB remote control (EXPERIMENTAL)"
317 depends on USB && INPUT && EXPERIMENTAL
318 ---help---
319 Say Y here if you want to use a Keyspan DMR USB remote control.
320 Currently only the UIA-11 type of receiver has been tested. The tag
321 on the receiver that connects to the USB port should have a P/N that
322 will tell you what type of DMR you have. The UIA-10 type is not
323 supported at this time. This driver maps all buttons to keypress
324 events.
325
326 To compile this driver as a module, choose M here: the module will
327 be called keyspan_remote.
Stelian Popf7214ff2005-09-08 10:19:48 +0200328
329config USB_APPLETOUCH
330 tristate "Apple USB Touchpad support"
331 depends on USB && INPUT
332 ---help---
333 Say Y here if you want to use an Apple USB Touchpad.
334
335 These are the touchpads that can be found on post-February 2005
336 Apple Powerbooks (prior models have a Synaptics touchpad connected
337 to the ADB bus).
338
339 This driver provides a basic mouse driver but can be interfaced
340 with the synaptics X11 driver to provide acceleration and
341 scrolling in X11.
342
343 For further information, see
344 <file:Documentation/input/appletouch.txt>.
345
346 To compile this driver as a module, choose M here: the
347 module will be called appletouch.