blob: 18f09104765c71406020bc2031c76ef901fcaa2c [file] [log] [blame]
Jiri Kosina6db3dfe2007-03-08 16:47:49 +01001comment "USB Input Devices"
2 depends on USB
3
4config USB_HID
5 tristate "USB Human Interface Device (full HID) support"
6 default y
7 depends on USB && INPUT
8 select HID
9 ---help---
10 Say Y here if you want full HID support to connect USB keyboards,
11 mice, joysticks, graphic tablets, or any other HID based devices
12 to your computer via USB, as well as Uninterruptible Power Supply
13 (UPS) and monitor control devices.
14
15 You can't use this driver and the HIDBP (Boot Protocol) keyboard
16 and mouse drivers at the same time. More information is available:
17 <file:Documentation/input/input.txt>.
18
19 If unsure, say Y.
20
21 To compile this driver as a module, choose M here: the
22 module will be called usbhid.
23
24comment "Input core support is needed for USB HID input layer or HIDBP support"
25 depends on USB_HID && INPUT=n
26
27config USB_HIDINPUT_POWERBOOK
Michel Daenzera45d82d2007-10-24 16:30:37 +020028 bool "Enable support for Apple laptop/aluminum USB special keys"
Jiri Kosina6db3dfe2007-03-08 16:47:49 +010029 default n
30 depends on USB_HID
31 help
32 Say Y here if you want support for the special keys (Fn, Numlock) on
Michel Daenzera45d82d2007-10-24 16:30:37 +020033 Apple iBooks, PowerBooks, MacBooks, MacBook Pros and aluminum USB
34 keyboards.
Jiri Kosina6db3dfe2007-03-08 16:47:49 +010035
36 If unsure, say N.
37
38config HID_FF
39 bool "Force feedback support (EXPERIMENTAL)"
40 depends on USB_HID && EXPERIMENTAL
41 help
42 Say Y here is you want force feedback support for a few HID devices.
43 See below for a list of supported devices.
44
45 See <file:Documentation/input/ff.txt> for a description of the force
46 feedback API.
47
48 If unsure, say N.
49
50config HID_PID
51 bool "PID device support"
52 depends on HID_FF
53 help
54 Say Y here if you have a PID-compliant device and wish to enable force
55 feedback for it. Microsoft Sidewinder Force Feedback 2 is one of such
56 devices.
57
58config LOGITECH_FF
59 bool "Logitech devices support"
60 depends on HID_FF
61 select INPUT_FF_MEMLESS if USB_HID
62 help
63 Say Y here if you have one of these devices:
64 - Logitech WingMan Cordless RumblePad
65 - Logitech WingMan Cordless RumblePad 2
66 - Logitech WingMan Force 3D
67 - Logitech Formula Force EX
68 - Logitech MOMO Force wheel
69
70 and if you want to enable force feedback for them.
71 Note: if you say N here, this device will still be supported, but without
72 force feedback.
73
Anssi Hannulac17f9c92008-04-01 01:51:11 +020074config LOGIRUMBLEPAD2_FF
75 bool "Logitech Rumblepad 2 support"
76 depends on HID_FF
77 select INPUT_FF_MEMLESS if USB_HID
78 help
79 Say Y here if you want to enable force feedback support for Logitech
80 Rumblepad 2 devices.
81
Jiri Kosina6db3dfe2007-03-08 16:47:49 +010082config PANTHERLORD_FF
Anssi Hannula5edc41ee2007-09-19 16:13:20 +020083 bool "PantherLord/GreenAsia based device support"
Jiri Kosina6db3dfe2007-03-08 16:47:49 +010084 depends on HID_FF
85 select INPUT_FF_MEMLESS if USB_HID
86 help
Anssi Hannula5edc41ee2007-09-19 16:13:20 +020087 Say Y here if you have a PantherLord/GreenAsia based game controller
88 or adapter and want to enable force feedback support for it.
Jiri Kosina6db3dfe2007-03-08 16:47:49 +010089
90config THRUSTMASTER_FF
Jiri Kosinaf5c669f2008-04-01 01:56:33 +020091 bool "ThrustMaster devices support"
92 depends on HID_FF
Jiri Kosina6db3dfe2007-03-08 16:47:49 +010093 select INPUT_FF_MEMLESS if USB_HID
94 help
Dmitry Torokhovb27c9592007-07-30 14:56:26 +020095 Say Y here if you have a THRUSTMASTER FireStore Dual Power 2 or
96 a THRUSTMASTER Ferrari GT Rumble Force or Force Feedback Wheel,
Jiri Kosina6db3dfe2007-03-08 16:47:49 +010097 and want to enable force feedback support for it.
98 Note: if you say N here, this device will still be supported, but without
99 force feedback.
100
101config ZEROPLUS_FF
102 bool "Zeroplus based game controller support"
103 depends on HID_FF
104 select INPUT_FF_MEMLESS if USB_HID
105 help
106 Say Y here if you have a Zeroplus based game controller and want to
107 enable force feedback for it.
108
109config USB_HIDDEV
110 bool "/dev/hiddev raw HID device support"
111 depends on USB_HID
112 help
113 Say Y here if you want to support HID devices (from the USB
114 specification standpoint) that aren't strictly user interface
115 devices, like monitor controls and Uninterruptable Power Supplies.
116
117 This module supports these devices separately using a separate
118 event interface on /dev/usb/hiddevX (char 180:96 to 180:111).
119
120 If unsure, say Y.
121
122menu "USB HID Boot Protocol drivers"
123 depends on USB!=n && USB_HID!=y
124
125config USB_KBD
126 tristate "USB HIDBP Keyboard (simple Boot) support"
127 depends on USB && INPUT
128 ---help---
129 Say Y here only if you are absolutely sure that you don't want
130 to use the generic HID driver for your USB keyboard and prefer
131 to use the keyboard in its limited Boot Protocol mode instead.
132
133 This is almost certainly not what you want. This is mostly
134 useful for embedded applications or simple keyboards.
135
136 To compile this driver as a module, choose M here: the
137 module will be called usbkbd.
138
139 If even remotely unsure, say N.
140
141config USB_MOUSE
142 tristate "USB HIDBP Mouse (simple Boot) support"
143 depends on USB && INPUT
144 ---help---
145 Say Y here only if you are absolutely sure that you don't want
146 to use the generic HID driver for your USB mouse and prefer
147 to use the mouse in its limited Boot Protocol mode instead.
148
149 This is almost certainly not what you want. This is mostly
150 useful for embedded applications or simple mice.
151
152 To compile this driver as a module, choose M here: the
153 module will be called usbmouse.
154
155 If even remotely unsure, say N.
156
157endmenu
158
159