blob: d044df5e3bc22608796ebd291e0ad56a5c7e190a [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
20 ---help---
Jiri Kosina69e4d942007-01-03 23:03:14 +010021 A human interface device (HID) is a type of computer device that
22 interacts directly with and takes input from humans. The term "HID"
23 most commonly used to refer to the USB-HID specification, but other
24 devices (such as, but not strictly limited to, Bluetooth) are
25 designed using HID specification (this involves certain keyboards,
26 mice, tablets, etc). This option compiles into kernel the generic
27 HID layer code (parser, usages, etc.), which can then be used by
28 transport-specific HID implementation (like USB or Bluetooth).
29
30 For docs and specs, see http://www.usb.org/developers/hidpage/
31
32 If unsure, say Y
Jiri Kosina63f38612006-12-08 18:41:30 +010033
Jiri Kosinac080d892007-01-25 11:43:31 +010034config HID_DEBUG
35 bool "HID debugging support"
Jiri Kosina58037eb2007-05-30 15:07:13 +020036 default y if !EMBEDDED
Jiri Kosinac080d892007-01-25 11:43:31 +010037 depends on HID
38 ---help---
39 This option lets the HID layer output diagnostics about its internal
40 state, resolve HID usages, dump HID fields, etc. Individual HID drivers
41 use this debugging facility to output information about individual HID
42 devices, etc.
43
44 This feature is useful for those who are either debugging the HID parser
45 or any HID hardware device.
46
47 If unsure, say N
48
Jiri Kosina86166b72007-05-14 09:57:40 +020049config HIDRAW
50 bool "/dev/hidraw raw HID device support"
51 depends on HID
52 ---help---
53 Say Y here if you want to support HID devices (from the USB
54 specification standpoint) that aren't strictly user interface
55 devices, like monitor controls and Uninterruptable Power Supplies.
56
57 This module supports these devices separately using a separate
58 event interface on /dev/hidraw.
59
60 There is also a /dev/hiddev configuration option in the USB HID
61 configuration menu. In comparison to hiddev, this device does not process
62 the hid events at all (no parsing, no lookups). This lets applications
63 to work on raw hid events when they want to, and avoid using transport-specific
64 userspace libhid/libusb libraries.
65
66 If unsure, say Y.
67
Jiri Kosina6db3dfe2007-03-08 16:47:49 +010068source "drivers/hid/usbhid/Kconfig"
69
Jiri Slaby5f22a792008-05-16 11:49:19 +020070menu "Special HID drivers"
71 depends on HID
72
Jiri Slaby02ae9a12008-05-16 11:49:22 +020073config HID_COMPAT
74 bool "Load all HID drivers on hid core load"
75 default y
76 ---help---
77 Compatible option for older userspace. If you have system without udev
78 support of module loading through aliases and also old
79 module-init-tools which can't handle hid bus, choose Y here. Otherwise
80 say N. If you say N and your userspace is old enough, the only
Alex Chiang6f3c0e52008-08-27 13:36:18 +020081 functionality you lose is modules autoloading.
Jiri Slaby02ae9a12008-05-16 11:49:22 +020082
83 If unsure, say Y.
84
Jiri Slaby14a21cd2008-06-23 23:31:09 +020085config HID_A4TECH
Jiri Kosinab36299b2008-10-16 01:18:54 +020086 tristate "A4 tech" if EMBEDDED
Jiri Slaby14a21cd2008-06-23 23:31:09 +020087 depends on USB_HID
Jiri Kosinab36299b2008-10-16 01:18:54 +020088 default y
Jiri Slaby14a21cd2008-06-23 23:31:09 +020089 ---help---
90 Support for A4 tech X5 and WOP-35 / Trust 450L mice.
91
Jiri Slaby8c19a512008-06-18 23:36:49 +020092config HID_APPLE
Jiri Kosinab36299b2008-10-16 01:18:54 +020093 tristate "Apple" if EMBEDDED
Jiri Slaby8c19a512008-06-18 23:36:49 +020094 depends on (USB_HID || BT_HIDP)
Jiri Kosinab36299b2008-10-16 01:18:54 +020095 default y
Jiri Slaby8c19a512008-06-18 23:36:49 +020096 ---help---
97 Support for some Apple devices which less or more break
98 HID specification.
99
100 Say Y here if you want support for the special keys (Fn, Numlock) on
101 Apple iBooks, PowerBooks, MacBooks, MacBook Pros and aluminum USB
102 keyboards.
103
104 If unsure, say M.
105
Jiri Slabyb5635b12008-06-24 23:24:57 +0200106config HID_BELKIN
Jiri Kosinab36299b2008-10-16 01:18:54 +0200107 tristate "Belkin" if EMBEDDED
Jiri Slabyb5635b12008-06-24 23:24:57 +0200108 depends on USB_HID
Jiri Kosinab36299b2008-10-16 01:18:54 +0200109 default y
Jiri Slabyb5635b12008-06-24 23:24:57 +0200110 ---help---
111 Support for Belkin Flip KVM and Wireless keyboard.
112
Mauro Carvalho Chehaba48c65b2008-10-14 22:41:43 +0200113config HID_BRIGHT
Jiri Kosinab36299b2008-10-16 01:18:54 +0200114 tristate "Bright" if EMBEDDED
Mauro Carvalho Chehaba48c65b2008-10-14 22:41:43 +0200115 depends on USB_HID
Jiri Kosinab36299b2008-10-16 01:18:54 +0200116 default y
Mauro Carvalho Chehaba48c65b2008-10-14 22:41:43 +0200117 ---help---
118 Support for Bright ABNT-2 keyboard.
119
Jiri Slaby3b239cd2008-06-24 20:42:25 +0200120config HID_CHERRY
Jiri Kosinab36299b2008-10-16 01:18:54 +0200121 tristate "Cherry" if EMBEDDED
Jiri Slaby3b239cd2008-06-24 20:42:25 +0200122 depends on USB_HID
Jiri Kosinab36299b2008-10-16 01:18:54 +0200123 default y
Jiri Slaby3b239cd2008-06-24 20:42:25 +0200124 ---help---
125 Support for Cherry Cymotion.
126
Jiri Slabyfcfacfd2008-06-24 22:48:52 +0200127config HID_CHICONY
Jiri Kosinab36299b2008-10-16 01:18:54 +0200128 tristate "Chicony" if EMBEDDED
Jiri Slabyfcfacfd2008-06-24 22:48:52 +0200129 depends on USB_HID
Jiri Kosinab36299b2008-10-16 01:18:54 +0200130 default y
Jiri Slabyfcfacfd2008-06-24 22:48:52 +0200131 ---help---
132 Support for Chicony Tactical pad.
133
Jiri Slaby0f221322008-06-23 22:54:08 +0200134config HID_CYPRESS
Jiri Kosinab36299b2008-10-16 01:18:54 +0200135 tristate "Cypress" if EMBEDDED
Jiri Slaby0f221322008-06-23 22:54:08 +0200136 depends on USB_HID
Jiri Kosinab36299b2008-10-16 01:18:54 +0200137 default y
Jiri Slaby0f221322008-06-23 22:54:08 +0200138 ---help---
139 Support for Cypress mouse and barcodes.
140
Jiri Slabyfea6f182008-06-26 22:25:33 +0200141config HID_DELL
Jiri Kosinab36299b2008-10-16 01:18:54 +0200142 tristate "Dell" if EMBEDDED
Jiri Slabyfea6f182008-06-26 22:25:33 +0200143 depends on USB_HID
Jiri Kosinab36299b2008-10-16 01:18:54 +0200144 default y
Jiri Slabyfea6f182008-06-26 22:25:33 +0200145 ---help---
146 Support for Dell W7658.
147
Jiri Slaby1f243e32008-06-24 21:11:21 +0200148config HID_EZKEY
Jiri Kosinab36299b2008-10-16 01:18:54 +0200149 tristate "Ezkey" if EMBEDDED
Jiri Slaby1f243e32008-06-24 21:11:21 +0200150 depends on USB_HID
Jiri Kosinab36299b2008-10-16 01:18:54 +0200151 default y
Jiri Slaby1f243e32008-06-24 21:11:21 +0200152 ---help---
153 Support for Ezkey mouse and barcodes.
154
Jiri Slaby949f8fe2008-07-24 23:35:13 +0200155config HID_GYRATION
Jiri Kosinab36299b2008-10-16 01:18:54 +0200156 tristate "Gyration" if EMBEDDED
Jiri Slaby949f8fe2008-07-24 23:35:13 +0200157 depends on USB_HID
Jiri Kosinab36299b2008-10-16 01:18:54 +0200158 default y
Jiri Slaby949f8fe2008-07-24 23:35:13 +0200159 ---help---
160 Support for Gyration remote.
161
Jiri Slaby5f22a792008-05-16 11:49:19 +0200162config HID_LOGITECH
Jiri Kosinab36299b2008-10-16 01:18:54 +0200163 tristate "Logitech" if EMBEDDED
Jiri Slaby5f22a792008-05-16 11:49:19 +0200164 depends on USB_HID
Jiri Kosinab36299b2008-10-16 01:18:54 +0200165 default y
Jiri Slaby5f22a792008-05-16 11:49:19 +0200166 ---help---
167 Support for some Logitech devices which breaks less or more
168 HID specification.
169
Jiri Slaby606bd0a2008-07-04 23:06:45 +0200170config LOGITECH_FF
171 bool "Logitech force feedback"
172 depends on HID_LOGITECH
173 select INPUT_FF_MEMLESS
174 help
175 Say Y here if you have one of these devices:
176 - Logitech WingMan Cordless RumblePad
177 - Logitech WingMan Cordless RumblePad 2
178 - Logitech WingMan Force 3D
179 - Logitech Formula Force EX
180 - Logitech MOMO Force wheel
181
182 and if you want to enable force feedback for them.
183 Note: if you say N here, this device will still be supported, but without
184 force feedback.
185
186config LOGIRUMBLEPAD2_FF
187 bool "Logitech Rumblepad 2 force feedback"
188 depends on HID_LOGITECH
189 select INPUT_FF_MEMLESS
190 help
191 Say Y here if you want to enable force feedback support for Logitech
192 Rumblepad 2 devices.
193
Jiri Slaby78a849a682008-06-20 21:26:11 +0200194config HID_MICROSOFT
Jiri Kosinab36299b2008-10-16 01:18:54 +0200195 tristate "Microsoft" if EMBEDDED
Jiri Slaby78a849a682008-06-20 21:26:11 +0200196 depends on USB_HID
Jiri Kosinab36299b2008-10-16 01:18:54 +0200197 default y
Jiri Slaby78a849a682008-06-20 21:26:11 +0200198 ---help---
199 Support for some Microsoft devices which breaks less or more
200 HID specification.
201
Jiri Slaby3b8006e2008-06-25 00:07:50 +0200202config HID_MONTEREY
Jiri Kosinab36299b2008-10-16 01:18:54 +0200203 tristate "Monterey" if EMBEDDED
Jiri Slaby3b8006e2008-06-25 00:07:50 +0200204 depends on USB_HID
Jiri Kosinab36299b2008-10-16 01:18:54 +0200205 default y
Jiri Slaby3b8006e2008-06-25 00:07:50 +0200206 ---help---
207 Support for Monterey Genius KB29E.
208
Jiri Slaby5f022292008-09-18 19:43:32 +0200209config HID_PANTHERLORD
Jiri Kosinab36299b2008-10-16 01:18:54 +0200210 tristate "Pantherlord devices support" if EMBEDDED
Jiri Slaby5f022292008-09-18 19:43:32 +0200211 depends on USB_HID
Jiri Kosinab36299b2008-10-16 01:18:54 +0200212 default y
Jiri Slaby5f022292008-09-18 19:43:32 +0200213 ---help---
214 Support for PantherLord/GreenAsia based device support.
215
216
217config PANTHERLORD_FF
218 bool "Pantherlord force feedback support"
219 depends on HID_PANTHERLORD
220 select INPUT_FF_MEMLESS
221 help
222 Say Y here if you have a PantherLord/GreenAsia based game controller
223 or adapter and want to enable force feedback support for it.
224
Jiri Slaby1e762532008-06-24 23:46:21 +0200225config HID_PETALYNX
Jiri Kosinab36299b2008-10-16 01:18:54 +0200226 tristate "Petalynx" if EMBEDDED
Jiri Slaby1e762532008-06-24 23:46:21 +0200227 depends on USB_HID
Jiri Kosinab36299b2008-10-16 01:18:54 +0200228 default y
Jiri Slaby1e762532008-06-24 23:46:21 +0200229 ---help---
230 Support for Petalynx Maxter remote.
231
Jiri Slaby980a3da2008-06-25 22:31:48 +0200232config HID_SAMSUNG
Jiri Kosinab36299b2008-10-16 01:18:54 +0200233 tristate "Samsung" if EMBEDDED
Jiri Slaby980a3da2008-06-25 22:31:48 +0200234 depends on USB_HID
Jiri Kosinab36299b2008-10-16 01:18:54 +0200235 default y
Jiri Slaby980a3da2008-06-25 22:31:48 +0200236 ---help---
237 Support for Samsung IR remote.
238
Jiri Slabybd28ce02008-06-25 23:47:04 +0200239config HID_SONY
Jiri Kosinab36299b2008-10-16 01:18:54 +0200240 tristate "Sony" if EMBEDDED
Jiri Slabybd28ce02008-06-25 23:47:04 +0200241 depends on USB_HID
Jiri Kosinab36299b2008-10-16 01:18:54 +0200242 default y
Jiri Slabybd28ce02008-06-25 23:47:04 +0200243 ---help---
244 Support for Sony PS3 controller.
245
Jiri Slaby90231e72008-06-23 21:56:07 +0200246config HID_SUNPLUS
Jiri Kosinab36299b2008-10-16 01:18:54 +0200247 tristate "Sunplus" if EMBEDDED
Jiri Slaby90231e72008-06-23 21:56:07 +0200248 depends on USB_HID
Jiri Kosinab36299b2008-10-16 01:18:54 +0200249 default y
Jiri Slaby90231e72008-06-23 21:56:07 +0200250 ---help---
251 Support for Sunplus WDesktop input device.
252
Jiri Slaby10e41a72008-09-18 12:23:31 +0200253config THRUSTMASTER_FF
254 tristate "ThrustMaster devices support"
255 default m
256 depends on USB_HID
257 select INPUT_FF_MEMLESS
258 help
259 Say Y here if you have a THRUSTMASTER FireStore Dual Power 2 or
260 a THRUSTMASTER Ferrari GT Rumble Force or Force Feedback Wheel.
261
Jiri Slaby987fbc12008-09-18 12:23:32 +0200262config ZEROPLUS_FF
263 tristate "Zeroplus based game controller support"
264 default m
265 depends on USB_HID
266 select INPUT_FF_MEMLESS
267 help
268 Say Y here if you have a Zeroplus based game controller.
269
Jiri Slaby5f22a792008-05-16 11:49:19 +0200270endmenu
271
Jan Engelhardt3cd70982007-04-30 13:27:48 +0200272endif # HID_SUPPORT