blob: da64108de775062b8f02c5f21a4d7749ba8a603c [file] [log] [blame]
Jiri Kosina63f38612006-12-08 18:41:30 +01001#
2# HID driver configuration
3#
Jan Engelhardt3cd70982007-04-30 13:27:48 +02004menuconfig HID_SUPPORT
5 bool "HID Devices"
Jiri Kosina63f38612006-12-08 18:41:30 +01006 depends on INPUT
Jan Engelhardt3cd70982007-04-30 13:27:48 +02007 default y
Jan Engelhardt06bfb7e2007-08-18 12:56:21 +02008 ---help---
9 Say Y here to get to see options for various computer-human interface
10 device drivers. This option alone does not add any kernel code.
11
12 If you say N, all options in this submenu will be skipped and disabled.
Jan Engelhardt3cd70982007-04-30 13:27:48 +020013
14if HID_SUPPORT
Jiri Kosina63f38612006-12-08 18:41:30 +010015
16config HID
17 tristate "Generic HID support"
Russell Kingc96c9d72006-12-22 17:09:16 +000018 depends on INPUT
Jiri Kosina63f38612006-12-08 18:41:30 +010019 default y
Jiri Kosina9be7bbd2008-10-14 23:37:33 +020020 select HID_A4TECH if !EMBEDDED
21 select HID_APPLE if !EMBEDDED
22 select HID_BELKIN if !EMBEDDED
23 select HID_BRIGHT if !EMBEDDED
24 select HID_CHERRY if !EMBEDDED
25 select HID_CHICONY if !EMBEDDED
26 select HID_CYPRESS if !EMBEDDED
27 select HID_DELL if !EMBEDDED
28 select HID_EZKEY if !EMBEDDED
29 select HID_GYRATION if !EMBEDDED
30 select HID_LOGITECH if !EMBEDDED
31 select HID_MICROSOFT if !EMBEDDED
32 select HID_MONTEREY if !EMBEDDED
33 select HID_PANTHERLORD if !EMBEDDED
34 select HID_PETALYNX if !EMBEDDED
35 select HID_SAMSUNG if !EMBEDDED
36 select HID_SONY if !EMBEDDED
37 select HID_SUNPLUS if !EMBEDDED
38
Jiri Kosina63f38612006-12-08 18:41:30 +010039 ---help---
Jiri Kosina69e4d942007-01-03 23:03:14 +010040 A human interface device (HID) is a type of computer device that
41 interacts directly with and takes input from humans. The term "HID"
42 most commonly used to refer to the USB-HID specification, but other
43 devices (such as, but not strictly limited to, Bluetooth) are
44 designed using HID specification (this involves certain keyboards,
45 mice, tablets, etc). This option compiles into kernel the generic
46 HID layer code (parser, usages, etc.), which can then be used by
47 transport-specific HID implementation (like USB or Bluetooth).
48
49 For docs and specs, see http://www.usb.org/developers/hidpage/
50
51 If unsure, say Y
Jiri Kosina63f38612006-12-08 18:41:30 +010052
Jiri Kosinac080d892007-01-25 11:43:31 +010053config HID_DEBUG
54 bool "HID debugging support"
Jiri Kosina58037eb2007-05-30 15:07:13 +020055 default y if !EMBEDDED
Jiri Kosinac080d892007-01-25 11:43:31 +010056 depends on HID
57 ---help---
58 This option lets the HID layer output diagnostics about its internal
59 state, resolve HID usages, dump HID fields, etc. Individual HID drivers
60 use this debugging facility to output information about individual HID
61 devices, etc.
62
63 This feature is useful for those who are either debugging the HID parser
64 or any HID hardware device.
65
66 If unsure, say N
67
Jiri Kosina86166b72007-05-14 09:57:40 +020068config HIDRAW
69 bool "/dev/hidraw raw HID device support"
70 depends on HID
71 ---help---
72 Say Y here if you want to support HID devices (from the USB
73 specification standpoint) that aren't strictly user interface
74 devices, like monitor controls and Uninterruptable Power Supplies.
75
76 This module supports these devices separately using a separate
77 event interface on /dev/hidraw.
78
79 There is also a /dev/hiddev configuration option in the USB HID
80 configuration menu. In comparison to hiddev, this device does not process
81 the hid events at all (no parsing, no lookups). This lets applications
82 to work on raw hid events when they want to, and avoid using transport-specific
83 userspace libhid/libusb libraries.
84
85 If unsure, say Y.
86
Jiri Kosina6db3dfe2007-03-08 16:47:49 +010087source "drivers/hid/usbhid/Kconfig"
88
Jiri Slaby5f22a792008-05-16 11:49:19 +020089menu "Special HID drivers"
90 depends on HID
91
Jiri Slaby02ae9a12008-05-16 11:49:22 +020092config HID_COMPAT
93 bool "Load all HID drivers on hid core load"
94 default y
95 ---help---
96 Compatible option for older userspace. If you have system without udev
97 support of module loading through aliases and also old
98 module-init-tools which can't handle hid bus, choose Y here. Otherwise
99 say N. If you say N and your userspace is old enough, the only
Alex Chiang6f3c0e52008-08-27 13:36:18 +0200100 functionality you lose is modules autoloading.
Jiri Slaby02ae9a12008-05-16 11:49:22 +0200101
102 If unsure, say Y.
103
Jiri Slaby14a21cd2008-06-23 23:31:09 +0200104config HID_A4TECH
105 tristate "A4 tech"
106 default m
107 depends on USB_HID
108 ---help---
109 Support for A4 tech X5 and WOP-35 / Trust 450L mice.
110
Jiri Slaby8c19a512008-06-18 23:36:49 +0200111config HID_APPLE
112 tristate "Apple"
113 default m
114 depends on (USB_HID || BT_HIDP)
115 ---help---
116 Support for some Apple devices which less or more break
117 HID specification.
118
119 Say Y here if you want support for the special keys (Fn, Numlock) on
120 Apple iBooks, PowerBooks, MacBooks, MacBook Pros and aluminum USB
121 keyboards.
122
123 If unsure, say M.
124
Jiri Slabyb5635b12008-06-24 23:24:57 +0200125config HID_BELKIN
126 tristate "Belkin"
127 default m
128 depends on USB_HID
129 ---help---
130 Support for Belkin Flip KVM and Wireless keyboard.
131
Mauro Carvalho Chehaba48c65b2008-10-14 22:41:43 +0200132config HID_BRIGHT
133 tristate "Bright"
134 default m
135 depends on USB_HID
136 ---help---
137 Support for Bright ABNT-2 keyboard.
138
Jiri Slaby3b239cd2008-06-24 20:42:25 +0200139config HID_CHERRY
140 tristate "Cherry"
141 default m
142 depends on USB_HID
143 ---help---
144 Support for Cherry Cymotion.
145
Jiri Slabyfcfacfd2008-06-24 22:48:52 +0200146config HID_CHICONY
147 tristate "Chicony"
148 default m
149 depends on USB_HID
150 ---help---
151 Support for Chicony Tactical pad.
152
Jiri Slaby0f221322008-06-23 22:54:08 +0200153config HID_CYPRESS
154 tristate "Cypress"
155 default m
156 depends on USB_HID
157 ---help---
158 Support for Cypress mouse and barcodes.
159
Jiri Slabyfea6f182008-06-26 22:25:33 +0200160config HID_DELL
161 tristate "Dell"
162 default m
163 depends on USB_HID
164 ---help---
165 Support for Dell W7658.
166
Jiri Slaby1f243e32008-06-24 21:11:21 +0200167config HID_EZKEY
168 tristate "Ezkey"
169 default m
170 depends on USB_HID
171 ---help---
172 Support for Ezkey mouse and barcodes.
173
Jiri Slaby949f8fe2008-07-24 23:35:13 +0200174config HID_GYRATION
175 tristate "Gyration"
176 default m
177 depends on USB_HID
178 ---help---
179 Support for Gyration remote.
180
Jiri Slaby5f22a792008-05-16 11:49:19 +0200181config HID_LOGITECH
182 tristate "Logitech"
183 default m
184 depends on USB_HID
185 ---help---
186 Support for some Logitech devices which breaks less or more
187 HID specification.
188
Jiri Slaby606bd0a2008-07-04 23:06:45 +0200189config LOGITECH_FF
190 bool "Logitech force feedback"
191 depends on HID_LOGITECH
192 select INPUT_FF_MEMLESS
193 help
194 Say Y here if you have one of these devices:
195 - Logitech WingMan Cordless RumblePad
196 - Logitech WingMan Cordless RumblePad 2
197 - Logitech WingMan Force 3D
198 - Logitech Formula Force EX
199 - Logitech MOMO Force wheel
200
201 and if you want to enable force feedback for them.
202 Note: if you say N here, this device will still be supported, but without
203 force feedback.
204
205config LOGIRUMBLEPAD2_FF
206 bool "Logitech Rumblepad 2 force feedback"
207 depends on HID_LOGITECH
208 select INPUT_FF_MEMLESS
209 help
210 Say Y here if you want to enable force feedback support for Logitech
211 Rumblepad 2 devices.
212
Jiri Slaby78a849a2008-06-20 21:26:11 +0200213config HID_MICROSOFT
214 tristate "Microsoft"
215 default m
216 depends on USB_HID
217 ---help---
218 Support for some Microsoft devices which breaks less or more
219 HID specification.
220
Jiri Slaby3b8006e2008-06-25 00:07:50 +0200221config HID_MONTEREY
222 tristate "Monterey"
223 default m
224 depends on USB_HID
225 ---help---
226 Support for Monterey Genius KB29E.
227
Jiri Slaby5f022292008-09-18 19:43:32 +0200228config HID_PANTHERLORD
229 tristate "Pantherlord devices support"
230 default m
231 depends on USB_HID
232 ---help---
233 Support for PantherLord/GreenAsia based device support.
234
235
236config PANTHERLORD_FF
237 bool "Pantherlord force feedback support"
238 depends on HID_PANTHERLORD
239 select INPUT_FF_MEMLESS
240 help
241 Say Y here if you have a PantherLord/GreenAsia based game controller
242 or adapter and want to enable force feedback support for it.
243
Jiri Slaby1e762532008-06-24 23:46:21 +0200244config HID_PETALYNX
245 tristate "Petalynx"
246 default m
247 depends on USB_HID
248 ---help---
249 Support for Petalynx Maxter remote.
250
Jiri Slaby980a3da2008-06-25 22:31:48 +0200251config HID_SAMSUNG
252 tristate "Samsung"
253 default m
254 depends on USB_HID
255 ---help---
256 Support for Samsung IR remote.
257
Jiri Slabybd28ce02008-06-25 23:47:04 +0200258config HID_SONY
259 tristate "Sony"
260 default m
261 depends on USB_HID
262 ---help---
263 Support for Sony PS3 controller.
264
Jiri Slaby90231e72008-06-23 21:56:07 +0200265config HID_SUNPLUS
266 tristate "Sunplus"
267 default m
268 depends on USB_HID
269 ---help---
270 Support for Sunplus WDesktop input device.
271
Jiri Slaby10e41a72008-09-18 12:23:31 +0200272config THRUSTMASTER_FF
273 tristate "ThrustMaster devices support"
274 default m
275 depends on USB_HID
276 select INPUT_FF_MEMLESS
277 help
278 Say Y here if you have a THRUSTMASTER FireStore Dual Power 2 or
279 a THRUSTMASTER Ferrari GT Rumble Force or Force Feedback Wheel.
280
Jiri Slaby987fbc12008-09-18 12:23:32 +0200281config ZEROPLUS_FF
282 tristate "Zeroplus based game controller support"
283 default m
284 depends on USB_HID
285 select INPUT_FF_MEMLESS
286 help
287 Say Y here if you have a Zeroplus based game controller.
288
Jiri Slaby5f22a792008-05-16 11:49:19 +0200289endmenu
290
Jan Engelhardt3cd70982007-04-30 13:27:48 +0200291endif # HID_SUPPORT