blob: f5544157576c97fdec7fd72d4dc8de0b8480ddd4 [file] [log] [blame]
Thomas Gleixnerec8f24b2019-05-19 13:07:45 +01001# SPDX-License-Identifier: GPL-2.0-only
Jiri Kosina63f38612006-12-08 18:41:30 +01002#
3# HID driver configuration
4#
Henrik Rydberg1f41a6a2012-06-25 16:55:41 +02005menu "HID support"
6 depends on INPUT
Jiri Kosina63f38612006-12-08 18:41:30 +01007
8config HID
Henrik Rydberg1f41a6a2012-06-25 16:55:41 +02009 tristate "HID bus support"
Russell Kingc96c9d72006-12-22 17:09:16 +000010 depends on INPUT
Jiri Kosina63f38612006-12-08 18:41:30 +010011 default y
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +090012 help
Jiri Kosina69e4d942007-01-03 23:03:14 +010013 A human interface device (HID) is a type of computer device that
14 interacts directly with and takes input from humans. The term "HID"
15 most commonly used to refer to the USB-HID specification, but other
16 devices (such as, but not strictly limited to, Bluetooth) are
17 designed using HID specification (this involves certain keyboards,
Henrik Rydberg1f41a6a2012-06-25 16:55:41 +020018 mice, tablets, etc). This option adds the HID bus to the kernel,
19 together with generic HID layer code. The HID devices are added and
20 removed from the HID bus by the transport-layer drivers, such as
21 usbhid (USB_HID) and hidp (BT_HIDP).
Jiri Kosina69e4d942007-01-03 23:03:14 +010022
Alexander A. Klimovb1631b82020-07-18 13:47:49 +020023 For docs and specs, see https://www.usb.org/developers/hidpage/
Jiri Kosina69e4d942007-01-03 23:03:14 +010024
Pavel Machek205adbe2009-01-06 10:15:27 +010025 If unsure, say Y.
Jiri Kosina63f38612006-12-08 18:41:30 +010026
Henrik Rydberg1f41a6a2012-06-25 16:55:41 +020027if HID
28
Jeremy Fitzhardinge4f5ca832011-11-23 00:49:14 -080029config HID_BATTERY_STRENGTH
Jiri Kosina692d30d2012-04-24 10:51:30 +020030 bool "Battery level reporting for HID devices"
Daniel Nicoletti060c9982014-12-17 11:53:54 -020031 depends on HID
32 select POWER_SUPPLY
Josh Boyer2198edd2012-04-18 10:05:17 -040033 default n
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +090034 help
Jiri Kosina692d30d2012-04-24 10:51:30 +020035 This option adds support of reporting battery strength (for HID devices
36 that support this feature) through power_supply class so that userspace
37 tools, such as upower, can display it.
Jeremy Fitzhardinge4f5ca832011-11-23 00:49:14 -080038
Jiri Kosina86166b72007-05-14 09:57:40 +020039config HIDRAW
40 bool "/dev/hidraw raw HID device support"
41 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +090042 help
Jiri Kosina86166b72007-05-14 09:57:40 +020043 Say Y here if you want to support HID devices (from the USB
44 specification standpoint) that aren't strictly user interface
Christophe JAILLET16863fb2020-04-12 11:07:43 +020045 devices, like monitor controls and Uninterruptible Power Supplies.
Jiri Kosina86166b72007-05-14 09:57:40 +020046
47 This module supports these devices separately using a separate
48 event interface on /dev/hidraw.
49
50 There is also a /dev/hiddev configuration option in the USB HID
51 configuration menu. In comparison to hiddev, this device does not process
52 the hid events at all (no parsing, no lookups). This lets applications
53 to work on raw hid events when they want to, and avoid using transport-specific
54 userspace libhid/libusb libraries.
55
56 If unsure, say Y.
57
David Herrmann1ccd7a22012-06-10 15:16:13 +020058config UHID
59 tristate "User-space I/O driver support for HID subsystem"
60 depends on HID
61 default n
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +090062 help
David Herrmann1ccd7a22012-06-10 15:16:13 +020063 Say Y here if you want to provide HID I/O Drivers from user-space.
64 This allows to write I/O drivers in user-space and feed the data from
65 the device into the kernel. The kernel parses the HID reports, loads the
66 corresponding HID Device Driver or provides input devices on top of your
67 user-space device.
68
69 This driver cannot be used to parse HID-reports in user-space and write
70 special HID-drivers. You should use hidraw for that.
71 Instead, this driver allows to write the transport-layer driver in
72 user-space like USB-HID and Bluetooth-HID do in kernel-space.
73
74 If unsure, say N.
75
76 To compile this driver as a module, choose M here: the
77 module will be called uhid.
78
Henrik Rydberg8215d552012-04-23 12:07:07 +020079config HID_GENERIC
80 tristate "Generic HID driver"
81 depends on HID
Henrik Rydberg1f41a6a2012-06-25 16:55:41 +020082 default HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +090083 help
Henrik Rydberg1f41a6a2012-06-25 16:55:41 +020084 Support for generic devices on the HID bus. This includes most
85 keyboards and mice, joysticks, tablets and digitizers.
Henrik Rydberg8215d552012-04-23 12:07:07 +020086
87 To compile this driver as a module, choose M here: the module
88 will be called hid-generic.
89
90 If unsure, say Y.
91
Henrik Rydberg1f41a6a2012-06-25 16:55:41 +020092menu "Special HID drivers"
93 depends on HID
94
Jiri Slaby14a21cd2008-06-23 23:31:09 +020095config HID_A4TECH
Mateusz Jończyk9858c742021-04-06 20:25:38 +020096 tristate "A4TECH mice"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +010097 depends on HID
David Rientjes6a108a12011-01-20 14:44:16 -080098 default !EXPERT
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +090099 help
Mateusz Jończyk9858c742021-04-06 20:25:38 +0200100 Support for some A4TECH mice with two scroll wheels.
Jiri Slaby14a21cd2008-06-23 23:31:09 +0200101
Martyn Welchc846fe92017-02-14 14:17:56 +0000102config HID_ACCUTOUCH
103 tristate "Accutouch touch device"
104 depends on USB_HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900105 help
Martyn Welchc846fe92017-02-14 14:17:56 +0000106 This selects a driver for the Accutouch 2216 touch controller.
107
108 The driver works around a problem in the reported device capabilities
109 which causes userspace to detect the device as a mouse rather than
110 a touchscreen.
111
112 Say Y here if you have a Accutouch 2216 touch controller.
113
Dmitry Torokhov0ae43812011-03-11 00:27:34 -0800114config HID_ACRUX
115 tristate "ACRUX game controller support"
Benjamin Tissoiresd88142722013-02-25 11:31:46 +0100116 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900117 help
Dmitry Torokhov0ae43812011-03-11 00:27:34 -0800118 Say Y here if you want to enable support for ACRUX game controllers.
119
120config HID_ACRUX_FF
Sergei Kolzun364b9362011-08-04 00:25:56 -0700121 bool "ACRUX force feedback support"
Dmitry Torokhov0ae43812011-03-11 00:27:34 -0800122 depends on HID_ACRUX
Sergei Kolzunc0dbcc32010-07-19 12:13:23 +0200123 select INPUT_FF_MEMLESS
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900124 help
Sergei Kolzunc0dbcc32010-07-19 12:13:23 +0200125 Say Y here if you want to enable force feedback support for ACRUX
126 game controllers.
127
Jiri Slaby8c19a512008-06-18 23:36:49 +0200128config HID_APPLE
Jean Delvare7af05e72015-02-20 17:33:33 +0100129 tristate "Apple {i,Power,Mac}Books"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +0100130 depends on HID
David Rientjes6a108a12011-01-20 14:44:16 -0800131 default !EXPERT
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900132 help
Jiri Slaby8c19a512008-06-18 23:36:49 +0200133 Support for some Apple devices which less or more break
134 HID specification.
135
Jiri Kosinaf0bd8e42008-10-16 01:25:15 +0200136 Say Y here if you want support for keyboards of Apple iBooks, PowerBooks,
137 MacBooks, MacBook Pros and Apple Aluminum.
Jiri Slaby8c19a512008-06-18 23:36:49 +0200138
Benjamin Tissoires9a4a5572013-04-17 18:15:15 +0200139config HID_APPLEIR
140 tristate "Apple infrared receiver"
141 depends on (USB_HID)
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900142 help
Benjamin Tissoires9a4a5572013-04-17 18:15:15 +0200143 Support for Apple infrared remote control. All the Apple computers from
144 2005 onwards include such a port, except the unibody Macbook (2009),
145 and Mac Pros. This receiver is also used in the Apple TV set-top box
146 prior to the 2010 model.
147
148 Say Y here if you want support for Apple infrared remote control.
149
Yusuke Fujimakieeb01a52016-03-21 16:18:42 +0900150config HID_ASUS
151 tristate "Asus"
Hans de Goedec4f01262020-05-07 11:53:34 +0200152 depends on USB_HID
Carlo Caioneaf22a612017-04-06 12:18:17 +0200153 depends on LEDS_CLASS
Daniel Drake3b692c52018-10-09 14:40:56 +0800154 depends on ASUS_WMI || ASUS_WMI=n
Arnd Bergmanna23eab82019-03-04 20:54:43 +0100155 select POWER_SUPPLY
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900156 help
Chris Chiu1caccc22017-03-01 15:48:51 -0600157 Support for Asus notebook built-in keyboard and touchpad via i2c, and
158 the Asus Republic of Gamers laptop keyboard special keys.
Yusuke Fujimakib94f7d52016-04-03 23:15:16 +0900159
160 Supported devices:
161 - EeeBook X205TA
162 - VivoBook E200HA
Chris Chiu1caccc22017-03-01 15:48:51 -0600163 - GL553V series
164 - GL753V series
Yusuke Fujimakieeb01a52016-03-21 16:18:42 +0900165
Josenivaldo Benito Junior212da742012-04-10 19:29:04 -0300166config HID_AUREAL
167 tristate "Aureal"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +0100168 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900169 help
Josenivaldo Benito Junior212da742012-04-10 19:29:04 -0300170 Support for Aureal Cy se W-01RN Remote Controller and other Aureal derived remotes.
171
Jiri Slabyb5635b12008-06-24 23:24:57 +0200172config HID_BELKIN
Jean Delvare7af05e72015-02-20 17:33:33 +0100173 tristate "Belkin Flip KVM and Wireless keyboard"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +0100174 depends on HID
David Rientjes6a108a12011-01-20 14:44:16 -0800175 default !EXPERT
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900176 help
Jiri Slabyb5635b12008-06-24 23:24:57 +0200177 Support for Belkin Flip KVM and Wireless keyboard.
178
Huang Bofc38a8a62014-11-26 18:21:03 +0800179config HID_BETOP_FF
180 tristate "Betop Production Inc. force feedback support"
181 depends on USB_HID
182 select INPUT_FF_MEMLESS
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900183 help
Huang Bofc38a8a62014-11-26 18:21:03 +0800184 Say Y here if you want to enable force feedback support for devices by
185 BETOP Production Ltd.
186 Currently the following devices are known to be supported:
187 - BETOP 2185 PC & BFM MODE
188
Hanno Zulla256a90e2018-08-23 17:03:38 +0200189config HID_BIGBEN_FF
190 tristate "BigBen Interactive Kids' gamepad support"
191 depends on USB_HID
192 depends on NEW_LEDS
193 depends on LEDS_CLASS
194 select INPUT_FF_MEMLESS
Hanno Zulla256a90e2018-08-23 17:03:38 +0200195 help
196 Support for the "Kid-friendly Wired Controller" PS3OFMINIPAD
197 gamepad made by BigBen Interactive, originally sold as a PS3
198 accessory. This driver fixes input mapping and adds support for
199 force feedback effects and LEDs on the device.
200
Jiri Slaby3b239cd2008-06-24 20:42:25 +0200201config HID_CHERRY
Jean Delvare7af05e72015-02-20 17:33:33 +0100202 tristate "Cherry Cymotion keyboard"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +0100203 depends on HID
David Rientjes6a108a12011-01-20 14:44:16 -0800204 default !EXPERT
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900205 help
Jiri Kosinaf0bd8e42008-10-16 01:25:15 +0200206 Support for Cherry Cymotion keyboard.
Jiri Slaby3b239cd2008-06-24 20:42:25 +0200207
Jiri Slabyfcfacfd2008-06-24 22:48:52 +0200208config HID_CHICONY
Daniel Drakef2f10b72017-02-17 07:40:52 -0600209 tristate "Chicony devices"
Greg Kroah-Hartmand0808112021-12-03 08:59:27 +0100210 depends on USB_HID
David Rientjes6a108a12011-01-20 14:44:16 -0800211 default !EXPERT
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900212 help
Daniel Drakef2f10b72017-02-17 07:40:52 -0600213 Support for Chicony Tactical pad and special keys on Chicony keyboards.
Jiri Slabyfcfacfd2008-06-24 22:48:52 +0200214
Clément Vuchener6f781932015-09-30 15:14:20 +0200215config HID_CORSAIR
216 tristate "Corsair devices"
Greg Kroah-Hartmanf237d902021-12-02 12:48:19 +0100217 depends on USB_HID && LEDS_CLASS
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900218 help
Clément Vuchener6f781932015-09-30 15:14:20 +0200219 Support for Corsair devices that are not fully compliant with the
220 HID standard.
221
222 Supported devices:
223 - Vengeance K90
Oscar Campos01adc472017-03-06 21:02:39 +0000224 - Scimitar PRO RGB
Clément Vuchener6f781932015-09-30 15:14:20 +0200225
Daniel M. Lambeab8e759b2018-07-17 22:35:37 +0100226config HID_COUGAR
227 tristate "Cougar devices"
228 depends on HID
229 help
230 Support for Cougar devices that are not fully compliant with the
231 HID standard.
232
233 Supported devices:
234 - Cougar 500k Gaming Keyboard
235
Alex Henrie161f62c2019-04-02 21:18:17 -0600236config HID_MACALLY
237 tristate "Macally devices"
238 depends on HID
239 help
240 Support for Macally devices that are not fully compliant with the
241 HID standard.
242
243 supported devices:
244 - Macally ikey keyboard
245
Don Prince3a370ca2010-05-12 15:18:59 +0200246config HID_PRODIKEYS
Jiri Kosina95736de2010-05-12 15:27:00 +0200247 tristate "Prodikeys PC-MIDI Keyboard support"
Greg Kroah-Hartman30cb3c22021-12-03 09:12:31 +0100248 depends on USB_HID && SND
Don Prince3a370ca2010-05-12 15:18:59 +0200249 select SND_RAWMIDI
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900250 help
Don Prince3a370ca2010-05-12 15:18:59 +0200251 Support for Prodikeys PC-MIDI Keyboard device support.
252 Say Y here to enable support for this device.
253 - Prodikeys PC-MIDI keyboard.
254 The Prodikeys PC-MIDI acts as a USB Audio device, with one MIDI
255 input and one MIDI output. These MIDI jacks appear as
256 a sound "card" in the ALSA sound system.
257 Note: if you say N here, this device will still function as a basic
258 multimedia keyboard, but will lack support for the musical keyboard
259 and some additional multimedia keys.
260
Ben Chenad8ddc52016-01-22 11:59:43 +0800261config HID_CMEDIA
Thomas Weißschuhbebf8822021-07-20 22:27:08 +0200262 tristate "CMedia audio chips"
Ben Chenad8ddc52016-01-22 11:59:43 +0800263 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900264 help
Thomas Weißschuhbebf8822021-07-20 22:27:08 +0200265 Support for CMedia CM6533 HID audio jack controls
266 and HS100B mute buttons.
Ben Chenad8ddc52016-01-22 11:59:43 +0800267
David Barksdalee932d812014-02-04 12:42:48 -0600268config HID_CP2112
269 tristate "Silicon Labs CP2112 HID USB-to-SMBus Bridge support"
Sébastien Szymanskicde30762017-11-02 12:12:43 +0100270 depends on USB_HID && HIDRAW && I2C && GPIOLIB
Bartosz Golaszewskiac34b972017-03-12 19:56:08 +0100271 select GPIOLIB_IRQCHIP
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900272 help
David Barksdalee932d812014-02-04 12:42:48 -0600273 Support for Silicon Labs CP2112 HID USB to SMBus Master Bridge.
274 This is a HID device driver which registers as an i2c adapter
275 and gpiochip to expose these functions of the CP2112. The
276 customizable USB descriptor fields are exposed as sysfs attributes.
277
Bastien Noceraf7c4f732019-07-02 10:39:31 +0200278config HID_CREATIVE_SB0540
279 tristate "Creative SB0540 infrared receiver"
280 depends on USB_HID
281 help
282 Support for Creative infrared SB0540-compatible remote controls, such
283 as the RM-1500 and RM-1800 remotes.
284
285 Say Y here if you want support for Creative SB0540 infrared receiver.
286
Jiri Slaby0f221322008-06-23 22:54:08 +0200287config HID_CYPRESS
Jean Delvare7af05e72015-02-20 17:33:33 +0100288 tristate "Cypress mouse and barcode readers"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +0100289 depends on HID
David Rientjes6a108a12011-01-20 14:44:16 -0800290 default !EXPERT
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900291 help
Jiri Kosinaf0bd8e42008-10-16 01:25:15 +0200292 Support for cypress mouse and barcode readers.
Jiri Slaby0f221322008-06-23 22:54:08 +0200293
Jiri Kosina0f6f4312009-05-15 15:46:44 +0200294config HID_DRAGONRISE
Borislav Petkova1043042010-08-16 16:26:08 +0200295 tristate "DragonRise Inc. game controller"
Benjamin Tissoiresd88142722013-02-25 11:31:46 +0100296 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900297 help
Nikolai Kondrashovb4a65f42011-01-28 14:50:53 +0300298 Say Y here if you have DragonRise Inc. game controllers.
299 These might be branded as:
300 - Tesun USB-703
301 - Media-tech MT1504 "Rogue"
302 - DVTech JS19 "Gear"
303 - Defender Game Master
Jiri Kosina0f6f4312009-05-15 15:46:44 +0200304
305config DRAGONRISE_FF
Borislav Petkova1043042010-08-16 16:26:08 +0200306 bool "DragonRise Inc. force feedback"
Jiri Kosina0f6f4312009-05-15 15:46:44 +0200307 depends on HID_DRAGONRISE
Richard Walmsley3f866fb2009-03-04 22:12:04 +1300308 select INPUT_FF_MEMLESS
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900309 help
Richard Walmsley3f866fb2009-03-04 22:12:04 +1300310 Say Y here if you want to enable force feedback support for DragonRise Inc.
311 game controllers.
312
Ignaz Forster04561c52010-11-01 15:13:37 -0400313config HID_EMS_FF
314 tristate "EMS Production Inc. force feedback support"
Benjamin Tissoiresd88142722013-02-25 11:31:46 +0100315 depends on HID
Ignaz Forster04561c52010-11-01 15:13:37 -0400316 select INPUT_FF_MEMLESS
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900317 help
Ignaz Forster04561c52010-11-01 15:13:37 -0400318 Say Y here if you want to enable force feedback support for devices by
319 EMS Production Ltd.
320 Currently the following devices are known to be supported:
321 - Trio Linker Plus II
322
Alexandrov Stansilav9a6a4192018-01-14 02:33:49 +0300323config HID_ELAN
324 tristate "ELAN USB Touchpad Support"
325 depends on LEDS_CLASS && USB_HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900326 help
Alexandrov Stansilav9a6a4192018-01-14 02:33:49 +0300327 Say Y to enable support for the USB ELAN touchpad
328 Currently the following devices are known to be supported:
329 - HP Pavilion X2 10-p0XX.
330
Richard Nauber64b386e2010-06-28 18:54:25 +0200331config HID_ELECOM
Diego Elio Pettenò0bb7a372017-04-26 17:37:04 +0100332 tristate "ELECOM HID devices"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +0100333 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900334 help
Diego Elio Pettenò0bb7a372017-04-26 17:37:04 +0100335 Support for ELECOM devices:
336 - BM084 Bluetooth Mouse
Tomasz Kramkowski79837ed2018-03-01 17:22:23 +0000337 - EX-G Trackballs (M-XT3DRBK, M-XT3URBK)
338 - DEFT Trackballs (M-DT1DRBK, M-DT1URBK, M-DT2DRBK, M-DT2URBK)
339 - HUGE Trackballs (M-HT1DRBK, M-HT1URBK)
Richard Nauber64b386e2010-06-28 18:54:25 +0200340
Jiri Slabyd23efc12013-05-07 11:40:58 +0200341config HID_ELO
342 tristate "ELO USB 4000/4500 touchscreen"
343 depends on USB_HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900344 help
Jiri Slabyd23efc12013-05-07 11:40:58 +0200345 Support for the ELO USB 4000/4500 touchscreens. Note that this is for
346 different devices than those handled by CONFIG_TOUCHSCREEN_USB_ELO.
347
Jiri Slaby1f243e32008-06-24 21:11:21 +0200348config HID_EZKEY
Jean Delvare7af05e72015-02-20 17:33:33 +0100349 tristate "Ezkey BTC 8193 keyboard"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +0100350 depends on HID
David Rientjes6a108a12011-01-20 14:44:16 -0800351 default !EXPERT
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900352 help
Jiri Kosinaf0bd8e42008-10-16 01:25:15 +0200353 Support for Ezkey BTC 8193 keyboard.
Jiri Slaby1f243e32008-06-24 21:11:21 +0200354
Michael Zaidman6a825822021-02-19 18:36:44 +0200355config HID_FT260
356 tristate "FTDI FT260 USB HID to I2C host support"
357 depends on USB_HID && HIDRAW && I2C
358 help
359 Provides I2C host adapter functionality over USB-HID through FT260
360 device. The customizable USB descriptor fields are exposed as sysfs
361 attributes.
362
363 To compile this driver as a module, choose M here: the module
364 will be called hid-ft260.
365
Benjamin Tissoires931830a2015-08-13 11:11:27 -0400366config HID_GEMBIRD
367 tristate "Gembird Joypad"
368 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900369 help
Benjamin Tissoires931830a2015-08-13 11:11:27 -0400370 Support for Gembird JPD-DualForce 2.
371
Petri Gynther34fc1322015-10-26 01:15:58 -0700372config HID_GFRM
373 tristate "Google Fiber TV Box remote control support"
374 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900375 help
Petri Gynther34fc1322015-10-26 01:15:58 -0700376 Support for Google Fiber TV Box remote controls
377
Samuel Čavoj77a36a32020-03-13 03:12:38 +0100378config HID_GLORIOUS
379 tristate "Glorious PC Gaming Race mice"
380 depends on HID
381 help
382 Support for Glorious PC Gaming Race mice such as
383 the Glorious Model O, O- and D.
384
Anssi Hannulad946e652011-06-27 00:07:31 +0300385config HID_HOLTEK
Tom Harwoodff9bf5a2012-07-06 08:05:04 -0700386 tristate "Holtek HID devices"
Anssi Hannulad946e652011-06-27 00:07:31 +0300387 depends on USB_HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900388 help
Tom Harwoodff9bf5a2012-07-06 08:05:04 -0700389 Support for Holtek based devices:
390 - Holtek On Line Grip based game controller
391 - Trust GXT 18 Gaming Keyboard
Christian Ohm41de3262013-05-21 01:31:08 +0200392 - Sharkoon Drakonia / Perixx MX-2000 gaming mice
Christian Ohmd4f51892013-05-21 01:31:09 +0200393 - Tracer Sniper TRM-503 / NOVA Gaming Slider X200 /
394 Zalman ZM-GM1
Anders F. U. Kiær7da7cbb2013-10-01 19:22:05 +0200395 - SHARKOON DarkGlider Gaming mouse
Anders F. U. Kiærf1a49142013-10-21 23:42:22 +0200396 - LEETGION Hellion Gaming Mouse
Anssi Hannulad946e652011-06-27 00:07:31 +0300397
398config HOLTEK_FF
399 bool "Holtek On Line Grip force feedback support"
400 depends on HID_HOLTEK
401 select INPUT_FF_MEMLESS
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900402 help
Anssi Hannulad946e652011-06-27 00:07:31 +0300403 Say Y here if you have a Holtek On Line Grip based game controller
404 and want to have force feedback support for it.
405
Wei-Ning Huangbc774b82018-03-15 09:28:25 +0800406config HID_GOOGLE_HAMMER
407 tristate "Google Hammer Keyboard"
Enric Balletbo i Serra47f11e02019-09-02 11:53:01 +0200408 depends on USB_HID && LEDS_CLASS && CROS_EC
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900409 help
Wei-Ning Huangbc774b82018-03-15 09:28:25 +0800410 Say Y here if you have a Google Hammer device.
411
Sean O'Brien14c9c012020-09-09 15:03:04 -0700412config HID_VIVALDI
413 tristate "Vivaldi Keyboard"
414 depends on HID
415 help
416 Say Y here if you want to enable support for Vivaldi keyboards.
417
418 Vivaldi keyboards use a vendor-specific (Google) HID usage to report
419 how the keys in the top row are physically ordered.
420
Janne Kanniainenf471d942014-06-18 19:05:02 +0300421config HID_GT683R
422 tristate "MSI GT68xR LED support"
423 depends on LEDS_CLASS && USB_HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900424 help
Janne Kanniainenf471d942014-06-18 19:05:02 +0300425 Say Y here if you want to enable support for the three MSI GT68xR LEDs
426
427 This driver support following modes:
428 - Normal: LEDs are fully on when enabled
429 - Audio: LEDs brightness depends on sound level
430 - Breathing: LEDs brightness varies at human breathing rate
431
432 Currently the following devices are know to be supported:
433 - MSI GT683R
434
Jiri Kosina177900e2011-02-17 15:12:45 +0100435config HID_KEYTOUCH
Stephen Boyd3d366e22011-03-22 02:29:17 -0700436 tristate "Keytouch HID devices"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +0100437 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900438 help
Jiri Kosina177900e2011-02-17 15:12:45 +0100439 Support for Keytouch HID devices not fully compliant with
440 the specification. Currently supported:
441 - Keytouch IEC 60945
442
Jiri Kosina79422742009-03-11 11:43:27 +0100443config HID_KYE
Nikolai Kondrashov22ca20b22012-02-28 13:01:46 +0200444 tristate "KYE/Genius devices"
Benjamin Tissoiresd88142722013-02-25 11:31:46 +0100445 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900446 help
Nikolai Kondrashov22ca20b22012-02-28 13:01:46 +0200447 Support for KYE/Genius devices not fully compliant with HID standard:
448 - Ergo Mouse
449 - EasyPen i405X tablet
450 - MousePen i608X tablet
451 - EasyPen M610X tablet
Jiri Kosina79422742009-03-11 11:43:27 +0100452
Nikolai Kondrashovf8a489c2010-08-09 20:44:17 +0400453config HID_UCLOGIC
Jiri Kosinaf36ee072010-08-09 19:56:01 +0200454 tristate "UC-Logic"
Benjamin Tissoiresbbb2d8a2015-03-04 11:24:55 -0500455 depends on USB_HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900456 help
Nikolai Kondrashov08177f42015-03-03 12:44:01 -0500457 Support for UC-Logic and Huion tablets.
Nikolai Kondrashovf8a489c2010-08-09 20:44:17 +0400458
Nikolai Kondrashov72a46342010-08-20 19:21:11 +0400459config HID_WALTOP
460 tristate "Waltop"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +0100461 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900462 help
Nikolai Kondrashov72a46342010-08-20 19:21:11 +0400463 Support for Waltop tablets.
464
Nikolai Kondrashov7c2af0a2019-02-10 12:13:48 +0200465config HID_VIEWSONIC
466 tristate "ViewSonic/Signotec"
467 depends on HID
468 help
469 Support for ViewSonic/Signotec PD1011 signature pad.
470
Ilya Skriblovsky95157722021-09-19 14:12:36 +0300471config HID_XIAOMI
472 tristate "Xiaomi"
473 depends on HID
474 help
475 Adds support for side buttons of Xiaomi Mi Dual Mode Wireless
476 Mouse Silent Edition.
477
Jiri Slaby949f8fe2008-07-24 23:35:13 +0200478config HID_GYRATION
Borislav Petkova1043042010-08-16 16:26:08 +0200479 tristate "Gyration remote control"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +0100480 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900481 help
Jiri Kosinaf0bd8e42008-10-16 01:25:15 +0200482 Support for Gyration remote control.
Jiri Slaby949f8fe2008-07-24 23:35:13 +0200483
Bastien Nocera4ddfe022012-10-31 12:10:10 +0100484config HID_ICADE
485 tristate "ION iCade arcade controller"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +0100486 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900487 help
Bastien Nocera4ddfe022012-10-31 12:10:10 +0100488 Support for the ION iCade arcade controller to work as a joystick.
489
490 To compile this driver as a module, choose M here: the
491 module will be called hid-icade.
492
Hans de Goedef1918be2017-05-10 17:12:53 +0200493config HID_ITE
494 tristate "ITE devices"
495 depends on HID
496 default !EXPERT
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900497 help
Hans de Goedef1918be2017-05-10 17:12:53 +0200498 Support for ITE devices not fully compliant with HID standard.
499
Niels Skou Olsen19ca2822017-10-04 12:31:22 +0200500config HID_JABRA
501 tristate "Jabra USB HID Driver"
502 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900503 help
Niels Skou Olsen19ca2822017-10-04 12:31:22 +0200504 Support for Jabra USB HID devices.
505
506 Prevents mapping of vendor defined HID usages to input events. Without
507 this driver HID reports from Jabra devices may incorrectly be seen as
508 mouse button events.
509 Say M here if you may ever plug in a Jabra USB device.
510
Bruno Premont711a6802009-07-13 14:19:58 +0200511config HID_TWINHAN
Borislav Petkova1043042010-08-16 16:26:08 +0200512 tristate "Twinhan IR remote control"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +0100513 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900514 help
Bruno Premont711a6802009-07-13 14:19:58 +0200515 Support for Twinhan IR remote control.
516
Jiri Kosinafdf93aa2009-03-04 16:09:40 +0100517config HID_KENSINGTON
Jean Delvare7af05e72015-02-20 17:33:33 +0100518 tristate "Kensington Slimblade Trackball"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +0100519 depends on HID
David Rientjes6a108a12011-01-20 14:44:16 -0800520 default !EXPERT
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900521 help
Jiri Kosinafdf93aa2009-03-04 16:09:40 +0100522 Support for Kensington Slimblade Trackball.
523
Chris Schlund75b07022011-02-03 16:41:47 +0100524config HID_LCPOWER
525 tristate "LC-Power"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +0100526 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900527 help
Chris Schlund75b07022011-02-03 16:41:47 +0100528 Support for LC-Power RC1000MCE RF remote control.
529
Heiner Kallweit6c7ad072016-06-17 21:20:46 +0200530config HID_LED
Jiri Kosina26423b82016-06-17 22:29:47 +0200531 tristate "Simple RGB LED support"
Heiner Kallweit6c7ad072016-06-17 21:20:46 +0200532 depends on HID
533 depends on LEDS_CLASS
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900534 help
Heiner Kallweit007414e2016-06-21 21:49:29 +0200535 Support for simple RGB LED devices. Currently supported are:
536 - Riso Kagaku Webmail Notifier
537 - Dream Cheeky Webmail Notifier and Friends Alert
538 - ThingM blink(1)
Heiner Kallweitde908652016-07-04 21:45:54 +0200539 - Delcom Visual Signal Indicator Generation 2
Heiner Kallweit9d1e0482016-07-04 21:47:52 +0200540 - Greynut Luxafor
Heiner Kallweit6c7ad072016-06-17 21:20:46 +0200541
542 To compile this driver as a module, choose M here: the
543 module will be called hid-led.
544
Jamie Lentin94723bf2014-07-23 23:30:45 +0100545config HID_LENOVO
546 tristate "Lenovo / Thinkpad devices"
Benjamin Tissoires0c521832013-09-11 22:12:24 +0200547 depends on HID
Bryan Wu25976a72012-06-17 18:52:34 +0800548 select NEW_LEDS
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100549 select LEDS_CLASS
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900550 help
pgzha230cd52018-04-12 19:36:47 +0200551 Support for IBM/Lenovo devices that are not fully compliant with HID standard.
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100552
pgzha230cd52018-04-12 19:36:47 +0200553 Say Y if you want support for horizontal scrolling of the IBM/Lenovo
554 Scrollpoint mice or the non-compliant features of the Lenovo Thinkpad
555 standalone keyboards, e.g:
Jamie Lentin94723bf2014-07-23 23:30:45 +0100556 - ThinkPad USB Keyboard with TrackPoint (supports extra LEDs and trackpoint
557 configuration)
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100558 - ThinkPad Compact Bluetooth Keyboard with TrackPoint (supports Fn keys)
559 - ThinkPad Compact USB Keyboard with TrackPoint (supports Fn keys)
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100560
Hans de Goede33a5c272021-12-12 22:23:33 +0100561config HID_LETSKETCH
562 tristate "Letsketch WP9620N tablets"
563 depends on USB_HID
564 help
565 Driver for the LetSketch / VSON WP9620N drawing tablet. This
566 drawing tablet is also sold under other brand names such as Case U,
567 presumably this driver will work for all of them. But it has only been
568 tested with a LetSketch WP9620N model.
569
570 These tablets also work without a special HID driver, but then only
571 part of the active area works and both the pad and stylus buttons are
572 hardwired to special key-combos. E.g. the 2 stylus buttons send right
573 mouse clicks / resp. "e" key presses.
574
Jiri Slaby5f22a792008-05-16 11:49:19 +0200575config HID_LOGITECH
Jean Delvare7af05e72015-02-20 17:33:33 +0100576 tristate "Logitech devices"
Greg Kroah-Hartmanf237d902021-12-02 12:48:19 +0100577 depends on USB_HID
Hans de Goedebdd08ff2019-10-04 09:37:15 +0200578 depends on LEDS_CLASS
David Rientjes6a108a12011-01-20 14:44:16 -0800579 default !EXPERT
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900580 help
Jiri Kosinaf0bd8e42008-10-16 01:25:15 +0200581 Support for Logitech devices that are not fully compliant with HID standard.
Jiri Slaby5f22a792008-05-16 11:49:19 +0200582
Nestor Lopez Casado534a7b82011-09-15 11:34:49 +0200583config HID_LOGITECH_DJ
Filipe Laínsc08ce252020-01-12 23:50:09 +0000584 tristate "Logitech receivers full support"
Benjamin Tissoiresc08f38e2019-04-24 15:13:52 +0200585 depends on USB_HID
Olivier Gaydcdc50e2013-12-03 00:17:24 +0100586 depends on HIDRAW
Nestor Lopez Casado534a7b82011-09-15 11:34:49 +0200587 depends on HID_LOGITECH
Benjamin Tissoiresab94e562014-09-30 13:18:28 -0400588 select HID_LOGITECH_HIDPP
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900589 help
Filipe Laínsc08ce252020-01-12 23:50:09 +0000590 Say Y if you want support for Logitech receivers and devices.
591 Logitech receivers are capable of pairing multiple Logitech compliant
Konstantin Khlebnikov0944e962012-02-13 14:13:03 +0400592 devices to the same receiver. Without this driver it will be handled by
Jorrit Schippersd82603c2012-12-27 17:33:02 +0100593 generic USB_HID driver and all incoming events will be multiplexed
Konstantin Khlebnikov0944e962012-02-13 14:13:03 +0400594 into a single mouse and a single keyboard device.
Nestor Lopez Casado534a7b82011-09-15 11:34:49 +0200595
Benjamin Tissoires2f31c522014-09-30 13:18:27 -0400596config HID_LOGITECH_HIDPP
597 tristate "Logitech HID++ devices support"
598 depends on HID_LOGITECH
Arnd Bergmann351744a2016-07-11 23:49:20 +0200599 select POWER_SUPPLY
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900600 help
Christophe JAILLETe9c67292021-07-23 17:08:40 +0200601 Support for Logitech devices relying on the HID++ Logitech specification
Benjamin Tissoires2f31c522014-09-30 13:18:27 -0400602
603 Say Y if you want support for Logitech devices relying on the HID++
604 specification. Such devices are the various Logitech Touchpads (T650,
605 T651, TK820), some mice (Zone Touch mouse), or even keyboards (Solar
Geert Uytterhoeven79bc33b2015-01-06 09:09:13 +0100606 Keyboard).
Benjamin Tissoires2f31c522014-09-30 13:18:27 -0400607
Jiri Slaby606bd0a2008-07-04 23:06:45 +0200608config LOGITECH_FF
Jiri Kosina0f6f4312009-05-15 15:46:44 +0200609 bool "Logitech force feedback support"
Jiri Slaby606bd0a2008-07-04 23:06:45 +0200610 depends on HID_LOGITECH
611 select INPUT_FF_MEMLESS
612 help
613 Say Y here if you have one of these devices:
614 - Logitech WingMan Cordless RumblePad
615 - Logitech WingMan Cordless RumblePad 2
616 - Logitech WingMan Force 3D
Jiri Slaby606bd0a2008-07-04 23:06:45 +0200617
618 and if you want to enable force feedback for them.
619 Note: if you say N here, this device will still be supported, but without
620 force feedback.
621
622config LOGIRUMBLEPAD2_FF
Elias Vanderstuyftbd043632013-10-07 19:48:12 +0300623 bool "Logitech force feedback support (variant 2)"
Jiri Slaby606bd0a2008-07-04 23:06:45 +0200624 depends on HID_LOGITECH
625 select INPUT_FF_MEMLESS
626 help
Elias Vanderstuyftbd043632013-10-07 19:48:12 +0300627 Say Y here if you want to enable force feedback support for:
628 - Logitech RumblePad
629 - Logitech Rumblepad 2
630 - Logitech Formula Vibration Feedback Wheel
Jiri Slaby606bd0a2008-07-04 23:06:45 +0200631
Gary Stein74f292c2010-01-13 00:25:58 +0100632config LOGIG940_FF
633 bool "Logitech Flight System G940 force feedback support"
634 depends on HID_LOGITECH
635 select INPUT_FF_MEMLESS
636 help
637 Say Y here if you want to enable force feedback support for Logitech
638 Flight System G940 devices.
639
Michal Malýa7ac90f2011-08-04 16:24:22 +0200640config LOGIWHEELS_FF
641 bool "Logitech wheels configuration and force feedback support"
Simon Wood32c88cb2010-09-22 13:19:42 +0200642 depends on HID_LOGITECH
643 select INPUT_FF_MEMLESS
Jiri Kosina70c2cab2011-08-10 18:11:10 +0200644 default LOGITECH_FF
Simon Wood32c88cb2010-09-22 13:19:42 +0200645 help
Simon Woodf777a3a2016-09-18 10:55:42 -0600646 Say Y here if you want to enable force feedback and range setting(*)
Michal Malýa7ac90f2011-08-04 16:24:22 +0200647 support for following Logitech wheels:
Simon Woodf777a3a2016-09-18 10:55:42 -0600648 - Logitech G25 (*)
649 - Logitech G27 (*)
650 - Logitech G29 (*)
Michal Malýa7ac90f2011-08-04 16:24:22 +0200651 - Logitech Driving Force
Simon Woodf777a3a2016-09-18 10:55:42 -0600652 - Logitech Driving Force Pro (*)
653 - Logitech Driving Force GT (*)
654 - Logitech Driving Force EX/RX
655 - Logitech Driving Force Wireless
656 - Logitech Speed Force Wireless
657 - Logitech MOMO Force
658 - Logitech MOMO Racing Force
659 - Logitech Formula Force GP
660 - Logitech Formula Force EX/RX
661 - Logitech Wingman Formula Force GP
Simon Wood32c88cb2010-09-22 13:19:42 +0200662
Michael Poole128537c2010-02-06 12:24:36 -0500663config HID_MAGICMOUSE
David Kingcdfee4f2013-04-20 20:13:52 +0100664 tristate "Apple Magic Mouse/Trackpad multi-touch support"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +0100665 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900666 help
David Kingcdfee4f2013-04-20 20:13:52 +0100667 Support for the Apple Magic Mouse/Trackpad multi-touch.
Michael Poole128537c2010-02-06 12:24:36 -0500668
669 Say Y here if you want support for the multi-touch features of the
David Kingcdfee4f2013-04-20 20:13:52 +0100670 Apple Wireless "Magic" Mouse and the Apple Wireless "Magic" Trackpad.
Michael Poole128537c2010-02-06 12:24:36 -0500671
William Whistleraf8cd702019-01-14 17:50:07 +0000672config HID_MALTRON
673 tristate "Maltron L90 keyboard"
674 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900675 help
William Whistleraf8cd702019-01-14 17:50:07 +0000676 Adds support for the volume up, volume down, mute, and play/pause buttons
677 of the Maltron L90 keyboard.
678
Marcel Haslerf8690452016-11-03 19:47:42 +0100679config HID_MAYFLASH
680 tristate "Mayflash game controller adapter force feedback"
681 depends on HID
682 select INPUT_FF_MEMLESS
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900683 help
Marcel Haslerf8690452016-11-03 19:47:42 +0100684 Say Y here if you have HJZ Mayflash PS3 game controller adapters
685 and want to enable force feedback support.
686
Robert Munteanu85455dd92018-04-17 00:38:24 +0300687config HID_REDRAGON
688 tristate "Redragon keyboards"
689 depends on HID
690 default !EXPERT
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900691 help
Robert Munteanu85455dd92018-04-17 00:38:24 +0300692 Support for Redragon keyboards that need fix-ups to work properly.
693
Jiri Slaby78a849a682008-06-20 21:26:11 +0200694config HID_MICROSOFT
Jean Delvare7af05e72015-02-20 17:33:33 +0100695 tristate "Microsoft non-fully HID-compliant devices"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +0100696 depends on HID
David Rientjes6a108a12011-01-20 14:44:16 -0800697 default !EXPERT
Jiri Kosina830e82a2018-09-05 13:24:47 +0200698 select INPUT_FF_MEMLESS
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900699 help
Jiri Kosinaf0bd8e42008-10-16 01:25:15 +0200700 Support for Microsoft devices that are not fully compliant with HID standard.
Jiri Slaby78a849a682008-06-20 21:26:11 +0200701
Jiri Slaby3b8006e2008-06-25 00:07:50 +0200702config HID_MONTEREY
Jean Delvare7af05e72015-02-20 17:33:33 +0100703 tristate "Monterey Genius KB29E keyboard"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +0100704 depends on HID
David Rientjes6a108a12011-01-20 14:44:16 -0800705 default !EXPERT
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900706 help
Jiri Slaby3b8006e2008-06-25 00:07:50 +0200707 Support for Monterey Genius KB29E.
708
Benjamin Tissoires5519cab2011-01-07 23:45:50 +0100709config HID_MULTITOUCH
710 tristate "HID Multitouch panels"
Benjamin Tissoiresd88142722013-02-25 11:31:46 +0100711 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900712 help
Benjamin Tissoires5519cab2011-01-07 23:45:50 +0100713 Generic support for HID multitouch panels.
714
715 Say Y here if you have one of the following devices:
Benjamin Tissoiresf786bba2011-03-22 17:34:01 +0100716 - 3M PCT touch screens
Benjamin Tissoirese6aac342011-05-19 14:18:13 +0200717 - ActionStar dual touch panels
Benjamin Tissoiresb1057122011-12-23 15:40:59 +0100718 - Atmel panels
Benjamin Tissoires22408282011-05-20 15:59:34 +0200719 - Cando dual touch panels
Austin Zhang942fd422011-05-28 02:03:47 +0800720 - Chunghwa panels
Yang Bo070f63b2015-07-20 09:40:28 -0700721 - CJTouch panels
Benjamin Tissoires79603dc2011-05-19 14:18:14 +0200722 - CVTouch panels
Benjamin Tissoires2d936662011-01-11 16:45:54 +0100723 - Cypress TrueTouch panels
Jan Matějkae02aea92013-10-26 00:03:49 +0200724 - Elan Microelectronics touch panels
Benjamin Tissoiresc04abee2011-05-19 11:37:29 +0200725 - Elo TouchSystems IntelliTouch Plus panels
Benjamin Tissoires22408282011-05-20 15:59:34 +0200726 - GeneralTouch 'Sensing Win7-TwoFinger' panels
Benjamin Tissoiresee0fbd12011-05-19 14:18:15 +0200727 - GoodTouch panels
Benjamin Tissoires2d936662011-01-11 16:45:54 +0100728 - Hanvon dual touch panels
Benjamin Tissoires22408282011-05-20 15:59:34 +0200729 - Ilitek dual touch panels
Benjamin Tissoires4dfcced2011-01-31 11:28:22 +0100730 - IrTouch Infrared USB panels
Jeff Brownc50bb1a2011-08-15 21:12:09 -0700731 - LG Display panels (Dell ST2220Tc)
Benjamin Tissoiresdf167c42011-05-18 15:27:24 +0200732 - Lumio CrystalTouch panels
Benjamin Tissoires4a6ee682011-04-22 11:51:48 +0200733 - MosArt dual-touch panels
Denis Kovalev2258e862012-02-14 00:50:33 -0800734 - Panasonic multitouch panels
John Sung6ab3a9a2011-04-21 16:21:52 +0200735 - PenMount dual touch panels
Benjamin Tissoires847672c2012-02-04 17:08:50 +0100736 - Perixx Peripad 701 touchpad
Aaron Tianb7ea95f2011-12-15 11:09:06 +0800737 - PixArt optical touch screen
Benjamin Tissoires2d936662011-01-11 16:45:54 +0100738 - Pixcir dual touch panels
Benjamin Tissoires5e7ea112011-11-29 13:13:10 +0100739 - Quanta panels
Benjamin Tissoires22408282011-05-20 15:59:34 +0200740 - eGalax dual-touch panels, including the Joojoo and Wetab tablets
Forest Bonda6802e02013-10-21 12:38:49 -0400741 - SiS multitouch panels
Benjamin Tissoires043b4032011-03-18 14:27:53 +0100742 - Stantum multitouch panels
Benjamin Tissoires5e74e562011-05-19 14:18:16 +0200743 - Touch International Panels
Benjamin Tissoires617b64f2011-05-19 14:18:17 +0200744 - Unitec Panels
KaiChung Chengbf9d1212013-11-21 10:04:30 +0100745 - Wistron optical touch panels
ice chienbc8a2a92011-07-15 16:58:06 +0800746 - XAT optical touch panels
Masatoshi Hoshikawa11576c62012-01-05 11:53:46 +0900747 - Xiroku optical touch panels
Benjamin Tissoirese9a09ae2012-06-19 14:39:54 +0200748 - Zytronic touch panels
Benjamin Tissoires5519cab2011-01-07 23:45:50 +0100749
Benjamin Tissoires2d936662011-01-11 16:45:54 +0100750 If unsure, say N.
751
752 To compile this driver as a module, choose M here: the
753 module will be called hid-multitouch.
754
Daniel J. Ogorchock2af16c12021-09-11 13:36:24 -0400755config HID_NINTENDO
756 tristate "Nintendo Joy-Con and Pro Controller support"
757 depends on HID
Daniel J. Ogorchockc5e62672021-09-11 13:36:25 -0400758 depends on NEW_LEDS
759 depends on LEDS_CLASS
Daniel J. Ogorchock08ebba52021-09-11 13:36:26 -0400760 select POWER_SUPPLY
Daniel J. Ogorchock2af16c12021-09-11 13:36:24 -0400761 help
762 Adds support for the Nintendo Switch Joy-Cons and Pro Controller.
763 All controllers support bluetooth, and the Pro Controller also supports
764 its USB mode.
765
766 To compile this driver as a module, choose M here: the
767 module will be called hid-nintendo.
768
Daniel J. Ogorchockc4eae842021-09-11 13:36:28 -0400769config NINTENDO_FF
770 bool "Nintendo Switch controller force feedback support"
771 depends on HID_NINTENDO
772 select INPUT_FF_MEMLESS
773 help
774 Say Y here if you have a Nintendo Switch controller and want to enable
775 force feedback support for it. This works for both joy-cons and the pro
776 controller. For the pro controller, both rumble motors can be controlled
777 individually.
778
Jonathan Tomer07e88a32017-02-01 11:54:57 -0800779config HID_NTI
780 tristate "NTI keyboard adapters"
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900781 help
Jonathan Tomer07e88a32017-02-01 11:54:57 -0800782 Support for the "extra" Sun keyboard keys on keyboards attached
783 through Network Technologies USB-SUN keyboard adapters.
784
Rafi Rubin94011f92008-11-19 15:54:46 +0100785config HID_NTRIG
Borislav Petkova1043042010-08-16 16:26:08 +0200786 tristate "N-Trig touch screen"
Rafi Rubin94011f92008-11-19 15:54:46 +0100787 depends on USB_HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900788 help
Rafi Rubin94011f92008-11-19 15:54:46 +0100789 Support for N-Trig touch screen.
790
Johnathon Harriscd9ec302010-01-21 14:36:52 +0000791config HID_ORTEK
Jiri Kosinad586dca2011-03-21 13:54:22 +0100792 tristate "Ortek PKB-1700/WKB-2000/Skycable wireless keyboard and mouse trackpad"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +0100793 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900794 help
Jiri Kosinad586dca2011-03-21 13:54:22 +0100795 There are certain devices which have LogicalMaximum wrong in the keyboard
796 usage page of their report descriptor. The most prevailing ones so far
797 are manufactured by Ortek, thus the name of the driver. Currently
798 supported devices by this driver are
799
800 - Ortek PKB-1700
801 - Ortek WKB-2000
802 - Skycable wireless presenter
Johnathon Harriscd9ec302010-01-21 14:36:52 +0000803
Jiri Slaby5f022292008-09-18 19:43:32 +0200804config HID_PANTHERLORD
Borislav Petkova1043042010-08-16 16:26:08 +0200805 tristate "Pantherlord/GreenAsia game controller"
Benjamin Tissoiresd88142722013-02-25 11:31:46 +0100806 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900807 help
Jiri Kosina0f6f4312009-05-15 15:46:44 +0200808 Say Y here if you have a PantherLord/GreenAsia based game controller
809 or adapter.
810
Jiri Slaby5f022292008-09-18 19:43:32 +0200811config PANTHERLORD_FF
812 bool "Pantherlord force feedback support"
813 depends on HID_PANTHERLORD
814 select INPUT_FF_MEMLESS
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900815 help
Jiri Slaby5f022292008-09-18 19:43:32 +0200816 Say Y here if you have a PantherLord/GreenAsia based game controller
817 or adapter and want to enable force feedback support for it.
818
Christian Gmeinerffe51d02014-09-03 10:33:53 +0200819config HID_PENMOUNT
820 tristate "Penmount touch device"
821 depends on USB_HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900822 help
Christian Gmeinerffe51d02014-09-03 10:33:53 +0200823 This selects a driver for the PenMount 6000 touch controller.
824
825 The driver works around a problem in the report descript allowing
826 the userspace to touch events instead of mouse events.
827
828 Say Y here if you have a Penmount based touch controller.
829
Jiri Slaby1e762532008-06-24 23:46:21 +0200830config HID_PETALYNX
Borislav Petkova1043042010-08-16 16:26:08 +0200831 tristate "Petalynx Maxter remote control"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +0100832 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900833 help
Jiri Kosinaf0bd8e42008-10-16 01:25:15 +0200834 Support for Petalynx Maxter remote control.
Jiri Slaby1e762532008-06-24 23:46:21 +0200835
Bruno Prémont236db472010-03-30 22:33:50 +0200836config HID_PICOLCD
837 tristate "PicoLCD (graphic version)"
Benjamin Tissoiresb7966a42013-02-25 11:31:47 +0100838 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900839 help
Bruno Prémont236db472010-03-30 22:33:50 +0200840 This provides support for Minibox PicoLCD devices, currently
841 only the graphical ones are supported.
842
843 This includes support for the following device features:
844 - Keypad
845 - Switching between Firmware and Flash mode
Bruno Prémont9bbf2b92010-03-30 22:38:09 +0200846 - EEProm / Flash access (via debugfs)
Bruno Prémont5435f282010-04-11 12:17:45 +0200847 Features selectively enabled:
848 - Framebuffer for monochrome 256x64 display
849 - Backlight control
850 - Contrast control
851 - General purpose outputs
Bruno Prémontb8c21cf2010-03-30 22:34:30 +0200852 Features that are not (yet) supported:
Bruno Prémont236db472010-03-30 22:33:50 +0200853 - IR
Bruno Prémont236db472010-03-30 22:33:50 +0200854
Bruno Prémont5435f282010-04-11 12:17:45 +0200855config HID_PICOLCD_FB
David Rientjes6a108a12011-01-20 14:44:16 -0800856 bool "Framebuffer support" if EXPERT
857 default !EXPERT
Bruno Prémont5435f282010-04-11 12:17:45 +0200858 depends on HID_PICOLCD
859 depends on HID_PICOLCD=FB || FB=y
860 select FB_DEFERRED_IO
861 select FB_SYS_FILLRECT
862 select FB_SYS_COPYAREA
863 select FB_SYS_IMAGEBLIT
864 select FB_SYS_FOPS
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900865 help
Bruno Prémont5435f282010-04-11 12:17:45 +0200866 Provide access to PicoLCD's 256x64 monochrome display via a
Masanari Iida6b2aac42012-04-14 00:14:11 +0900867 framebuffer device.
Bruno Prémont5435f282010-04-11 12:17:45 +0200868
869config HID_PICOLCD_BACKLIGHT
David Rientjes6a108a12011-01-20 14:44:16 -0800870 bool "Backlight control" if EXPERT
871 default !EXPERT
Bruno Prémont5435f282010-04-11 12:17:45 +0200872 depends on HID_PICOLCD
873 depends on HID_PICOLCD=BACKLIGHT_CLASS_DEVICE || BACKLIGHT_CLASS_DEVICE=y
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900874 help
Bruno Prémont5435f282010-04-11 12:17:45 +0200875 Provide access to PicoLCD's backlight control via backlight
876 class.
877
878config HID_PICOLCD_LCD
David Rientjes6a108a12011-01-20 14:44:16 -0800879 bool "Contrast control" if EXPERT
880 default !EXPERT
Bruno Prémont5435f282010-04-11 12:17:45 +0200881 depends on HID_PICOLCD
882 depends on HID_PICOLCD=LCD_CLASS_DEVICE || LCD_CLASS_DEVICE=y
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900883 help
Bruno Prémont5435f282010-04-11 12:17:45 +0200884 Provide access to PicoLCD's LCD contrast via lcd class.
885
886config HID_PICOLCD_LEDS
David Rientjes6a108a12011-01-20 14:44:16 -0800887 bool "GPO via leds class" if EXPERT
888 default !EXPERT
Bruno Prémont5435f282010-04-11 12:17:45 +0200889 depends on HID_PICOLCD
890 depends on HID_PICOLCD=LEDS_CLASS || LEDS_CLASS=y
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900891 help
Bruno Prémont5435f282010-04-11 12:17:45 +0200892 Provide access to PicoLCD's GPO pins via leds class.
893
Bruno Prémontfabdbf22012-07-30 21:38:28 +0200894config HID_PICOLCD_CIR
895 bool "CIR via RC class" if EXPERT
896 default !EXPERT
897 depends on HID_PICOLCD
898 depends on HID_PICOLCD=RC_CORE || RC_CORE=y
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900899 help
Bruno Prémontfabdbf22012-07-30 21:38:28 +0200900 Provide access to PicoLCD's CIR interface via remote control (LIRC).
901
JD Cole1a3f83f2014-10-31 17:34:42 -0700902config HID_PLANTRONICS
903 tristate "Plantronics USB HID Driver"
JD Cole1a3f83f2014-10-31 17:34:42 -0700904 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900905 help
Terry Junge81bb773fa2015-06-08 14:27:57 -0700906 Provides HID support for Plantronics USB audio devices.
907 Correctly maps vendor unique volume up/down HID usages to
908 KEY_VOLUMEUP and KEY_VOLUMEDOWN events and prevents core mapping
909 of other vendor unique HID usages to random mouse events.
910
911 Say M here if you may ever plug in a Plantronics USB audio device.
JD Cole1a3f83f2014-10-31 17:34:42 -0700912
Roderick Colenbranderbc2e15a2021-02-07 13:48:56 -0800913config HID_PLAYSTATION
914 tristate "PlayStation HID Driver"
915 depends on HID
Jiri Kosinad7f1f9f2021-11-01 15:12:02 +0100916 depends on LEDS_CLASS_MULTICOLOR
Roderick Colenbrander799b2b52021-02-07 13:49:02 -0800917 select CRC32
Roderick Colenbranderd30bca42021-02-07 13:48:58 -0800918 select POWER_SUPPLY
Roderick Colenbranderbc2e15a2021-02-07 13:48:56 -0800919 help
920 Provides support for Sony PS5 controllers including support for
921 its special functionalities e.g. touchpad, lights and motion
922 sensors.
923
Roderick Colenbrander51151092021-02-07 13:49:03 -0800924config PLAYSTATION_FF
925 bool "PlayStation force feedback support"
926 depends on HID_PLAYSTATION
927 select INPUT_FF_MEMLESS
928 help
929 Say Y here if you would like to enable force feedback support for
930 PlayStation game controllers.
931
Terry Lambertf6a04602011-10-14 17:18:54 -0700932config HID_PRIMAX
Jiri Kosinadfe9a312011-10-17 17:04:58 +0200933 tristate "Primax non-fully HID-compliant devices"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +0100934 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900935 help
Terry Lambertf6a04602011-10-14 17:18:54 -0700936 Support for Primax devices that are not fully compliant with the
937 HID standard.
938
Bastien Nocera13b2e1b2017-06-20 18:13:37 +0200939config HID_RETRODE
Randy Dunlapfc5431d2017-09-23 17:33:21 -0700940 tristate "Retrode 2 USB adapter for vintage video games"
Bastien Nocera13b2e1b2017-06-20 18:13:37 +0200941 depends on USB_HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900942 help
Bastien Nocera13b2e1b2017-06-20 18:13:37 +0200943 Support for
Bastien Nocera13b2e1b2017-06-20 18:13:37 +0200944 * Retrode 2 cartridge and controller adapter
945
Stefan Achatz206f5f22010-05-19 18:55:16 +0200946config HID_ROCCAT
Stefan Achatzbd393db2011-12-29 17:20:14 +0100947 tristate "Roccat device support"
Stefan Achatz206f5f22010-05-19 18:55:16 +0200948 depends on USB_HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900949 help
Stefan Achatzbd393db2011-12-29 17:20:14 +0100950 Support for Roccat devices.
951 Say Y here if you have a Roccat mouse or keyboard and want
952 support for its special functionalities.
Stefan Achatzcb7cf3d2010-08-29 12:30:18 +0200953
Andreas Hübner1e936742012-02-22 02:10:06 +0100954config HID_SAITEK
Ville Aakko7bb9d642014-11-05 15:13:51 +0100955 tristate "Saitek (Mad Catz) non-fully HID-compliant devices"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +0100956 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900957 help
Andreas Hübner1e936742012-02-22 02:10:06 +0100958 Support for Saitek devices that are not fully compliant with the
959 HID standard.
960
Harald Brinkmann37c492c2014-05-20 20:28:00 +0200961 Supported devices:
962 - PS1000 Dual Analog Pad
Harald Brinkmann8ffd3412015-09-03 17:49:26 +0200963 - Saitek R.A.T.7, R.A.T.9, M.M.O.7 Gaming Mice
964 - Mad Catz R.A.T.5, R.A.T.9 Gaming Mice
Andreas Hübner1e936742012-02-22 02:10:06 +0100965
Jiri Slaby980a3da2008-06-25 22:31:48 +0200966config HID_SAMSUNG
Borislav Petkova1043042010-08-16 16:26:08 +0200967 tristate "Samsung InfraRed remote control or keyboards"
Greg Kroah-Hartmanf237d902021-12-02 12:48:19 +0100968 depends on USB_HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900969 help
Don Princeb3558502010-05-17 11:42:39 +0100970 Support for Samsung InfraRed remote control or keyboards.
Jiri Slaby980a3da2008-06-25 22:31:48 +0200971
Benjamin Moody6a012682021-02-07 13:47:04 -0500972config HID_SEMITEK
973 tristate "Semitek USB keyboards"
974 depends on HID
975 help
976 Support for Semitek USB keyboards that are not fully compliant
977 with the HID standard.
978
979 There are many variants, including:
980 - GK61, GK64, GK68, GK84, GK96, etc.
981 - SK61, SK64, SK68, SK84, SK96, etc.
982 - Dierya DK61/DK66
983 - Tronsmart TK09R
984 - Woo-dy
985 - X-Bows Nature/Knight
986
Jiri Slabybd28ce02008-06-25 23:47:04 +0200987config HID_SONY
Frank Praznike4321c52014-02-01 10:39:58 -0500988 tristate "Sony PS2/3/4 accessories"
Jiri Slabybd28ce02008-06-25 23:47:04 +0200989 depends on USB_HID
Jiri Kosina40e32ee2013-05-28 11:22:09 +0200990 depends on NEW_LEDS
991 depends on LEDS_CLASS
Jiri Kosina695baaa72014-02-03 11:17:25 +0100992 select POWER_SUPPLY
Arnd Bergmann273435a2021-01-03 22:41:44 +0100993 select CRC32
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900994 help
Colin Leitnerf04d5142013-05-27 23:41:05 +0200995 Support for
David Dillow5844c1c2012-09-25 23:02:27 +0200996
Colin Leitnerf04d5142013-05-27 23:41:05 +0200997 * Sony PS3 6-axis controllers
Frank Praznike4321c52014-02-01 10:39:58 -0500998 * Sony PS4 DualShock 4 controllers
Colin Leitnerf04d5142013-05-27 23:41:05 +0200999 * Buzz controllers
Jiri Kosina078328d2013-06-13 12:03:49 +02001000 * Sony PS3 Blue-ray Disk Remote Control (Bluetooth)
1001 * Logitech Harmony adapter for Sony Playstation 3 (Bluetooth)
Daniel Nguyena4bfe132021-08-10 10:09:32 -04001002 * Guitar Hero Live PS3, Wii U and PS4 guitar dongles
Sanjay Govind32e411d2020-12-04 18:45:27 +13001003 * Guitar Hero PS3 and PC guitar dongles
Jiri Slabybd28ce02008-06-25 23:47:04 +02001004
Sven Eckelmanna08c22c2013-11-09 19:25:57 +01001005config SONY_FF
Frank Praznike4321c52014-02-01 10:39:58 -05001006 bool "Sony PS2/3/4 accessories force feedback support"
Sven Eckelmanna08c22c2013-11-09 19:25:57 +01001007 depends on HID_SONY
1008 select INPUT_FF_MEMLESS
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +09001009 help
Frank Praznike4321c52014-02-01 10:39:58 -05001010 Say Y here if you have a Sony PS2/3/4 accessory and want to enable
1011 force feedback support for it.
Sven Eckelmanna08c22c2013-11-09 19:25:57 +01001012
Stefan Kriwanek74bc6952011-05-27 18:40:29 +02001013config HID_SPEEDLINK
1014 tristate "Speedlink VAD Cezanne mouse support"
Benjamin Tissoiresd88142722013-02-25 11:31:46 +01001015 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +09001016 help
Stefan Kriwanek74bc6952011-05-27 18:40:29 +02001017 Support for Speedlink Vicious and Divine Cezanne mouse.
1018
Rodrigo Rivas Costac164d6a2018-04-16 14:27:02 +02001019config HID_STEAM
1020 tristate "Steam Controller support"
1021 depends on HID
Arnd Bergmann4b644872018-05-25 17:30:51 +02001022 select POWER_SUPPLY
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +09001023 help
Rodrigo Rivas Costac164d6a2018-04-16 14:27:02 +02001024 Say Y here if you have a Steam Controller if you want to use it
1025 without running the Steam Client. It supports both the wired and
1026 the wireless adaptor.
1027
Jiri Kosina090800c2013-01-31 16:50:24 +01001028config HID_STEELSERIES
Simon Wood75dbb952013-01-31 08:07:07 -07001029 tristate "Steelseries SRW-S1 steering wheel support"
Benjamin Tissoiresd88142722013-02-25 11:31:46 +01001030 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +09001031 help
Simon Wood75dbb952013-01-31 08:07:07 -07001032 Support for Steelseries SRW-S1 steering wheel
1033
Jiri Slaby90231e72008-06-23 21:56:07 +02001034config HID_SUNPLUS
Borislav Petkova1043042010-08-16 16:26:08 +02001035 tristate "Sunplus wireless desktop"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +01001036 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +09001037 help
Jiri Kosinaf0bd8e42008-10-16 01:25:15 +02001038 Support for Sunplus wireless desktop.
Jiri Slaby90231e72008-06-23 21:56:07 +02001039
Benjamin Tissoires9fb6bf02014-04-07 13:39:33 -04001040config HID_RMI
1041 tristate "Synaptics RMI4 device support"
1042 depends on HID
Andrew Duggan0b2c7a82017-01-05 09:48:58 +01001043 select RMI4_CORE
1044 select RMI4_F03
1045 select RMI4_F11
1046 select RMI4_F12
1047 select RMI4_F30
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +09001048 help
Benjamin Tissoires9fb6bf02014-04-07 13:39:33 -04001049 Support for Synaptics RMI4 touchpads.
1050 Say Y here if you have a Synaptics RMI4 touchpads over i2c-hid or usbhid
1051 and want support for its special functionalities.
1052
Jiri Kosina0f6f4312009-05-15 15:46:44 +02001053config HID_GREENASIA
Borislav Petkova1043042010-08-16 16:26:08 +02001054 tristate "GreenAsia (Product ID 0x12) game controller support"
Benjamin Tissoiresd88142722013-02-25 11:31:46 +01001055 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +09001056 help
Jiri Kosina0f6f4312009-05-15 15:46:44 +02001057 Say Y here if you have a GreenAsia (Product ID 0x12) based game
1058 controller or adapter.
1059
1060config GREENASIA_FF
1061 bool "GreenAsia (Product ID 0x12) force feedback support"
1062 depends on HID_GREENASIA
Lukasz Lubojanski42859e02008-12-11 22:07:59 +01001063 select INPUT_FF_MEMLESS
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +09001064 help
Lukasz Lubojanski42859e02008-12-11 22:07:59 +01001065 Say Y here if you have a GreenAsia (Product ID 0x12) based game controller
Matt LaPlante692105b2009-01-26 11:12:25 +01001066 (like MANTA Warrior MM816 and SpeedLink Strike2 SL-6635) or adapter
Lukasz Lubojanski42859e02008-12-11 22:07:59 +01001067 and want to enable force feedback support for it.
1068
Jiri Kosina6cf851d2011-11-22 22:52:15 +01001069config HID_HYPERV_MOUSE
1070 tristate "Microsoft Hyper-V mouse driver"
1071 depends on HYPERV
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +09001072 help
Jiri Kosina6cf851d2011-11-22 22:52:15 +01001073 Select this option to enable the Hyper-V mouse driver.
1074
Jussi Kivilinnafac733f2009-05-13 11:54:38 +03001075config HID_SMARTJOYPLUS
Jiri Kosina73d5e8f2010-05-21 13:15:17 +02001076 tristate "SmartJoy PLUS PS2/USB adapter support"
Benjamin Tissoiresd88142722013-02-25 11:31:46 +01001077 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +09001078 help
Sean Young1bcc2062011-10-20 21:26:21 +01001079 Support for SmartJoy PLUS PS2/USB adapter, Super Dual Box,
1080 Super Joy Box 3 Pro, Super Dual Box Pro, and Super Joy Box 5 Pro.
1081
1082 Note that DDR (Dance Dance Revolution) mode is not supported, nor
1083 is pressure sensitive buttons on the pro models.
Jussi Kivilinnafac733f2009-05-13 11:54:38 +03001084
1085config SMARTJOYPLUS_FF
1086 bool "SmartJoy PLUS PS2/USB adapter force feedback support"
1087 depends on HID_SMARTJOYPLUS
1088 select INPUT_FF_MEMLESS
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +09001089 help
Jussi Kivilinnafac733f2009-05-13 11:54:38 +03001090 Say Y here if you have a SmartJoy PLUS PS2/USB adapter and want to
1091 enable force feedback support for it.
1092
Jiri Kosina2701eaa2012-02-06 17:36:38 +01001093config HID_TIVO
Jarod Wilson44ea35c2011-10-14 16:57:42 -04001094 tristate "TiVo Slide Bluetooth remote control support"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +01001095 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +09001096 help
Jarod Wilson44ea35c2011-10-14 16:57:42 -04001097 Say Y if you have a TiVo Slide Bluetooth remote control.
1098
Lev Babievf14f5262009-01-04 00:36:56 +01001099config HID_TOPSEED
Kees Bakker54001082010-07-13 22:50:51 +02001100 tristate "TopSeed Cyberlink, BTC Emprex, Conceptronic remote control support"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +01001101 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +09001102 help
Kees Bakker54001082010-07-13 22:50:51 +02001103 Say Y if you have a TopSeed Cyberlink or BTC Emprex or Conceptronic
1104 CLLRCMCE remote control.
Lev Babievf14f5262009-01-04 00:36:56 +01001105
Vivien Didelot30ba2fb2013-01-22 12:01:21 -05001106config HID_THINGM
1107 tristate "ThingM blink(1) USB RGB LED"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +01001108 depends on HID
Vivien Didelot30ba2fb2013-01-22 12:01:21 -05001109 depends on LEDS_CLASS
Heiner Kallweit38b09c02016-06-22 22:04:36 +02001110 select HID_LED
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +09001111 help
Heiner Kallweit38b09c02016-06-22 22:04:36 +02001112 Support for the ThingM blink(1) USB RGB LED. This driver has been
1113 merged into the generic hid led driver. Config symbol HID_THINGM
1114 just selects HID_LED and will be removed soon.
Vivien Didelot30ba2fb2013-01-22 12:01:21 -05001115
Jiri Kosina0f6f4312009-05-15 15:46:44 +02001116config HID_THRUSTMASTER
Jiri Kosina73d5e8f2010-05-21 13:15:17 +02001117 tristate "ThrustMaster devices support"
Jiri Kosinadfe74f52021-03-19 19:49:18 +01001118 depends on USB_HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +09001119 help
Dario Paganic49c3362021-01-31 10:00:45 +01001120 Say Y here if you have a THRUSTMASTER FireStore Dual Power 2,
1121 a THRUSTMASTER Ferrari GT Rumble Wheel or Thrustmaster FFB
1122 Wheel (T150RS, T300RS, T300 Ferrari Alcantara Edition, T500RS).
Jiri Kosina0f6f4312009-05-15 15:46:44 +02001123
1124config THRUSTMASTER_FF
1125 bool "ThrustMaster devices force feedback support"
1126 depends on HID_THRUSTMASTER
1127 select INPUT_FF_MEMLESS
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +09001128 help
Ruben Aos Garralda7a84b132009-06-29 09:41:29 +02001129 Say Y here if you have a THRUSTMASTER FireStore Dual Power 2 or 3,
1130 a THRUSTMASTER Dual Trigger 3-in-1 or a THRUSTMASTER Ferrari GT
1131 Rumble Force or Force Feedback Wheel.
Jiri Slaby10e41a72008-09-18 12:23:31 +02001132
Bastien Nocera0edffe62016-11-15 13:02:05 +01001133config HID_UDRAW_PS3
1134 tristate "THQ PS3 uDraw tablet"
1135 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +09001136 help
Bastien Nocera0edffe62016-11-15 13:02:05 +01001137 Say Y here if you want to use the THQ uDraw gaming tablet for
1138 the PS3.
1139
Andrej Shadura42337b92019-04-01 14:42:00 +02001140config HID_U2FZERO
1141 tristate "U2F Zero LED and RNG support"
1142 depends on USB_HID
1143 depends on LEDS_CLASS
Mao Wenane252e0e02019-04-13 21:44:59 +08001144 depends on HW_RANDOM
Andrej Shadura42337b92019-04-01 14:42:00 +02001145 help
1146 Support for the LED of the U2F Zero device.
1147
1148 U2F Zero supports custom commands for blinking the LED
1149 and getting data from the internal hardware RNG.
1150 The internal hardware can be used to feed the enthropy pool.
1151
1152 U2F Zero only supports blinking its LED, so this driver doesn't
1153 allow setting the brightness to anything but 1, which will
Geert Uytterhoevenad81d1c2019-05-27 14:25:32 +02001154 trigger a single blink and immediately reset back to 0.
Andrej Shadura42337b92019-04-01 14:42:00 +02001155
Bastien Noceraca2dcd42009-05-11 17:18:12 +02001156config HID_WACOM
Benjamin Tissoires471d1712014-07-24 13:10:09 -07001157 tristate "Wacom Intuos/Graphire tablet support (USB)"
Arnd Bergmann9d142012017-07-28 15:18:00 +02001158 depends on USB_HID
Przemo Firszt59d23342010-03-15 19:16:23 +00001159 select POWER_SUPPLY
Benjamin Tissoires471d1712014-07-24 13:10:09 -07001160 select NEW_LEDS
1161 select LEDS_CLASS
Benjamin Tissoires34736aa2016-07-13 18:06:12 +02001162 select LEDS_TRIGGERS
Benjamin Tissoires471d1712014-07-24 13:10:09 -07001163 help
Benjamin Tissoires7403a6a2014-08-06 14:06:26 -07001164 Say Y here if you want to use the USB or BT version of the Wacom Intuos
Benjamin Tissoires471d1712014-07-24 13:10:09 -07001165 or Graphire tablet.
1166
1167 To compile this driver as a module, choose M here: the
1168 module will be called wacom.
Przemo Firszt59d23342010-03-15 19:16:23 +00001169
David Herrmannfb51b442011-07-05 13:45:08 +02001170config HID_WIIMOTE
David Herrmann92eda7e2013-05-05 23:12:45 +02001171 tristate "Nintendo Wii / Wii U peripherals"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +01001172 depends on HID
David Herrmann23a5a4a2011-08-17 11:43:22 +02001173 depends on LEDS_CLASS
David Herrmann6591d752011-09-06 13:50:39 +02001174 select POWER_SUPPLY
David Herrmannef6f4112011-12-07 21:33:59 +01001175 select INPUT_FF_MEMLESS
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +09001176 help
David Herrmann92eda7e2013-05-05 23:12:45 +02001177 Support for Nintendo Wii and Wii U Bluetooth peripherals. Supported
1178 devices are the Wii Remote and its extension devices, but also devices
1179 based on the Wii Remote like the Wii U Pro Controller or the
1180 Wii Balance Board.
David Herrmannfb51b442011-07-05 13:45:08 +02001181
David Herrmann92eda7e2013-05-05 23:12:45 +02001182 Support for all official Nintendo extensions is available, however, 3rd
1183 party extensions might not be supported. Please report these devices to:
1184 http://github.com/dvdhrm/xwiimote/issues
1185
1186 Other Nintendo Wii U peripherals that are IEEE 802.11 based (including
1187 the Wii U Gamepad) might be supported in the future. But currently
1188 support is limited to Bluetooth based devices.
1189
1190 If unsure, say N.
1191
1192 To compile this driver as a module, choose M here: the
1193 module will be called hid-wiimote.
David Herrmanncb992212011-11-17 14:12:01 +01001194
Olivier Scherlercb2c9e32013-07-27 19:20:02 +02001195config HID_XINMO
1196 tristate "Xin-Mo non-fully compliant devices"
1197 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +09001198 help
Olivier Scherlercb2c9e32013-07-27 19:20:02 +02001199 Support for Xin-Mo devices that are not fully compliant with the HID
Brian Norrise2c76a82014-06-10 14:35:36 -07001200 standard. Currently only supports the Xin-Mo Dual Arcade. Say Y here
Olivier Scherlercb2c9e32013-07-27 19:20:02 +02001201 if you have a Xin-Mo Dual Arcade controller.
1202
Jiri Kosina0f6f4312009-05-15 15:46:44 +02001203config HID_ZEROPLUS
Jiri Kosina73d5e8f2010-05-21 13:15:17 +02001204 tristate "Zeroplus based game controller support"
Benjamin Tissoiresd88142722013-02-25 11:31:46 +01001205 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +09001206 help
Jiri Slaby987fbc12008-09-18 12:23:32 +02001207 Say Y here if you have a Zeroplus based game controller.
1208
Jiri Kosina0f6f4312009-05-15 15:46:44 +02001209config ZEROPLUS_FF
1210 bool "Zeroplus based game controller force feedback support"
1211 depends on HID_ZEROPLUS
1212 select INPUT_FF_MEMLESS
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +09001213 help
Jiri Kosina0f6f4312009-05-15 15:46:44 +02001214 Say Y here if you have a Zeroplus based game controller and want
1215 to have force feedback support for it.
1216
Don Princea9885c82010-05-14 17:30:59 +01001217config HID_ZYDACRON
Jiri Kosina73d5e8f2010-05-21 13:15:17 +02001218 tristate "Zydacron remote control support"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +01001219 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +09001220 help
Don Princea9885c82010-05-14 17:30:59 +01001221 Support for Zydacron remote control.
1222
srinivas pandruvada401ca242012-09-05 13:56:00 +01001223config HID_SENSOR_HUB
1224 tristate "HID Sensors framework support"
Chen Gang4732aee2014-06-10 20:04:58 +08001225 depends on HID && HAS_IOMEM
srinivas pandruvada401ca242012-09-05 13:56:00 +01001226 select MFD_CORE
1227 default n
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +09001228 help
srinivas pandruvada401ca242012-09-05 13:56:00 +01001229 Support for HID Sensor framework. This creates a MFD instance
1230 for a sensor hub and identifies all the sensors connected to it.
1231 Each sensor is registered as a MFD cell, so that sensor specific
1232 processing can be done in a separate driver. Each sensor
1233 drivers can use the service provided by this driver to register
1234 for events and handle data streams. Each sensor driver can format
1235 data and present to user mode using input or IIO interface.
1236
Srinivas Pandruvada4a7de052015-04-10 11:22:22 -07001237config HID_SENSOR_CUSTOM_SENSOR
1238 tristate "HID Sensors hub custom sensor support"
1239 depends on HID_SENSOR_HUB
1240 default n
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +09001241 help
Srinivas Pandruvada4a7de052015-04-10 11:22:22 -07001242 HID Sensor hub specification allows definition of some custom and
1243 generic sensors. Unlike other HID sensors, they can't be exported
1244 via Linux IIO because of custom fields. This is up to the manufacturer
1245 to decide how to interpret these special sensor ids and process in
1246 the user space. Currently some manufacturers are using these ids for
1247 sensor calibration and debugging other sensors. Manufacturers
Christophe JAILLET16863fb2020-04-12 11:07:43 +02001248 shouldn't use these special custom sensor ids to export any of the
Srinivas Pandruvada4a7de052015-04-10 11:22:22 -07001249 standard sensors.
1250 Select this config option for custom/generic sensor support.
1251
Masaki Ota25627562016-06-16 18:45:57 +09001252config HID_ALPS
1253 tristate "Alps HID device support"
1254 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +09001255 help
Masaki Ota25627562016-06-16 18:45:57 +09001256 Support for Alps I2C HID touchpads and StickPointer.
1257 Say Y here if you have a Alps touchpads over i2c-hid or usbhid
1258 and want support for its special functionalities.
1259
Rishi Gupta67a95c22020-01-28 09:48:57 +05301260config HID_MCP2221
1261 tristate "Microchip MCP2221 HID USB-to-I2C/SMbus host support"
1262 depends on USB_HID && I2C
Arnd Bergmann2465f0d2020-04-28 23:30:17 +02001263 depends on GPIOLIB
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +09001264 help
Rishi Gupta67a95c22020-01-28 09:48:57 +05301265 Provides I2C and SMBUS host adapter functionality over USB-HID
1266 through MCP2221 device.
1267
1268 To compile this driver as a module, choose M here: the module
1269 will be called hid-mcp2221.ko.
1270
Jiri Slaby5f22a792008-05-16 11:49:19 +02001271endmenu
1272
Henrik Rydberg1f41a6a2012-06-25 16:55:41 +02001273endif # HID
1274
1275source "drivers/hid/usbhid/Kconfig"
1276
Benjamin Tissoires4a200c32012-11-12 15:42:59 +01001277source "drivers/hid/i2c-hid/Kconfig"
1278
Srinivas Pandruvada3703f532016-08-07 02:25:34 -07001279source "drivers/hid/intel-ish-hid/Kconfig"
1280
Sandeep Singh4f567b92020-10-10 01:31:36 +05301281source "drivers/hid/amd-sfh-hid/Kconfig"
1282
Maximilian Luzb05ff102021-03-10 23:53:28 +01001283source "drivers/hid/surface-hid/Kconfig"
1284
Henrik Rydberg1f41a6a2012-06-25 16:55:41 +02001285endmenu