Kconfig 37.4 KB
Newer Older
1
# SPDX-License-Identifier: GPL-2.0-only
J
Jiri Kosina 已提交
2 3 4
#
# HID driver configuration
#
5 6
menu "HID support"
     depends on INPUT
J
Jiri Kosina 已提交
7 8

config HID
9
	tristate "HID bus support"
10
	depends on INPUT
J
Jiri Kosina 已提交
11
	default y
12
	help
J
Jiri Kosina 已提交
13 14 15 16 17
	  A human interface device (HID) is a type of computer device that
	  interacts directly with and takes input from humans. The term "HID"
	  most commonly used to refer to the USB-HID specification, but other
	  devices (such as, but not strictly limited to, Bluetooth) are
	  designed using HID specification (this involves certain keyboards,
18 19 20 21
	  mice, tablets, etc). This option adds the HID bus to the kernel,
	  together with generic HID layer code. The HID devices are added and
	  removed from the HID bus by the transport-layer drivers, such as
	  usbhid (USB_HID) and hidp (BT_HIDP).
J
Jiri Kosina 已提交
22

23
	  For docs and specs, see https://www.usb.org/developers/hidpage/
J
Jiri Kosina 已提交
24

25
	  If unsure, say Y.
J
Jiri Kosina 已提交
26

27 28
if HID

29
config HID_BATTERY_STRENGTH
30
	bool "Battery level reporting for HID devices"
31
	select POWER_SUPPLY
32
	default n
33
	help
34 35 36
	This option adds support of reporting battery strength (for HID devices
	that support this feature) through power_supply class so that userspace
	tools, such as upower, can display it.
37

J
Jiri Kosina 已提交
38 39
config HIDRAW
	bool "/dev/hidraw raw HID device support"
40
	help
J
Jiri Kosina 已提交
41 42
	Say Y here if you want to support HID devices (from the USB
	specification standpoint) that aren't strictly user interface
C
Christophe JAILLET 已提交
43
	devices, like monitor controls and Uninterruptible Power Supplies.
J
Jiri Kosina 已提交
44 45 46 47 48 49 50 51 52 53 54 55

	This module supports these devices separately using a separate
	event interface on /dev/hidraw.

	There is also a /dev/hiddev configuration option in the USB HID
	configuration menu. In comparison to hiddev, this device does not process
	the hid events at all (no parsing, no lookups). This lets applications
	to work on raw hid events when they want to, and avoid using transport-specific
	userspace libhid/libusb libraries.

	If unsure, say Y.

56 57 58
config UHID
	tristate "User-space I/O driver support for HID subsystem"
	default n
59
	help
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
	Say Y here if you want to provide HID I/O Drivers from user-space.
	This allows to write I/O drivers in user-space and feed the data from
	the device into the kernel. The kernel parses the HID reports, loads the
	corresponding HID Device Driver or provides input devices on top of your
	user-space device.

	This driver cannot be used to parse HID-reports in user-space and write
	special HID-drivers. You should use hidraw for that.
	Instead, this driver allows to write the transport-layer driver in
	user-space like USB-HID and Bluetooth-HID do in kernel-space.

	If unsure, say N.

	To compile this driver as a module, choose M here: the
	module will be called uhid.

76 77
config HID_GENERIC
	tristate "Generic HID driver"
78
	default HID
79
	help
80 81
	Support for generic devices on the HID bus. This includes most
	keyboards and mice, joysticks, tablets and digitizers.
82 83 84 85 86 87

	To compile this driver as a module, choose M here: the module
	will be called hid-generic.

	If unsure, say Y.

88 89
menu "Special HID drivers"

J
Jiri Slaby 已提交
90
config HID_A4TECH
91
	tristate "A4TECH mice"
92
	default !EXPERT
93
	help
94
	Support for some A4TECH mice with two scroll wheels.
J
Jiri Slaby 已提交
95

96 97 98
config HID_ACCUTOUCH
	tristate "Accutouch touch device"
	depends on USB_HID
99
	help
100 101 102 103 104 105 106 107
	  This selects a driver for the Accutouch 2216 touch controller.

	  The driver works around a problem in the reported device capabilities
	  which causes userspace to detect the device as a mouse rather than
          a touchscreen.

	  Say Y here if you have a Accutouch 2216 touch controller.

108 109
config HID_ACRUX
	tristate "ACRUX game controller support"
110
	help
111 112 113
	Say Y here if you want to enable support for ACRUX game controllers.

config HID_ACRUX_FF
114
	bool "ACRUX force feedback support"
115
	depends on HID_ACRUX
116
	select INPUT_FF_MEMLESS
117
	help
118 119 120
	Say Y here if you want to enable force feedback support for ACRUX
	game controllers.

J
Jiri Slaby 已提交
121
config HID_APPLE
122
	tristate "Apple {i,Power,Mac}Books"
123 124
	depends on LEDS_CLASS
	depends on NEW_LEDS
125
	default !EXPERT
126
	help
J
Jiri Slaby 已提交
127 128 129
	Support for some Apple devices which less or more break
	HID specification.

130 131
	Say Y here if you want support for keyboards of	Apple iBooks, PowerBooks,
	MacBooks, MacBook Pros and Apple Aluminum.
J
Jiri Slaby 已提交
132

133 134 135
config HID_APPLEIR
	tristate "Apple infrared receiver"
	depends on (USB_HID)
136
	help
137 138 139 140 141 142 143
	Support for Apple infrared remote control. All the Apple computers from
	  2005 onwards include such a port, except the unibody Macbook (2009),
	  and Mac Pros. This receiver is also used in the Apple TV set-top box
	  prior to the 2010 model.

	Say Y here if you want support for Apple infrared remote control.

144 145
config HID_ASUS
	tristate "Asus"
146
	depends on USB_HID
147
	depends on LEDS_CLASS
148
	depends on ASUS_WMI || ASUS_WMI=n
149
	select POWER_SUPPLY
150
	help
151 152
	Support for Asus notebook built-in keyboard and touchpad via i2c, and
	the Asus Republic of Gamers laptop keyboard special keys.
153 154 155 156

	Supported devices:
	- EeeBook X205TA
	- VivoBook E200HA
157 158
	- GL553V series
	- GL753V series
159

160 161
config HID_AUREAL
	tristate "Aureal"
162
	help
163 164
	Support for Aureal Cy se W-01RN Remote Controller and other Aureal derived remotes.

J
Jiri Slaby 已提交
165
config HID_BELKIN
166
	tristate "Belkin Flip KVM and Wireless keyboard"
167
	default !EXPERT
168
	help
J
Jiri Slaby 已提交
169 170
	Support for Belkin Flip KVM and Wireless keyboard.

171 172 173 174
config HID_BETOP_FF
	tristate "Betop Production Inc. force feedback support"
	depends on USB_HID
	select INPUT_FF_MEMLESS
175
	help
176 177 178 179 180
	Say Y here if you want to enable force feedback support for devices by
	BETOP Production Ltd.
	Currently the following devices are known to be supported:
	 - BETOP 2185 PC & BFM MODE

181 182 183 184 185 186 187 188 189 190 191 192
config HID_BIGBEN_FF
	tristate "BigBen Interactive Kids' gamepad support"
	depends on USB_HID
	depends on NEW_LEDS
	depends on LEDS_CLASS
	select INPUT_FF_MEMLESS
	help
	  Support for the "Kid-friendly Wired Controller" PS3OFMINIPAD
	  gamepad made by BigBen Interactive, originally sold as a PS3
	  accessory. This driver fixes input mapping and adds support for
	  force feedback effects and LEDs on the device.

J
Jiri Slaby 已提交
193
config HID_CHERRY
194
	tristate "Cherry Cymotion keyboard"
195
	default !EXPERT
196
	help
197
	Support for Cherry Cymotion keyboard.
J
Jiri Slaby 已提交
198

J
Jiri Slaby 已提交
199
config HID_CHICONY
200
	tristate "Chicony devices"
201
	depends on USB_HID
202
	default !EXPERT
203
	help
204
	Support for Chicony Tactical pad and special keys on Chicony keyboards.
J
Jiri Slaby 已提交
205

206 207
config HID_CORSAIR
	tristate "Corsair devices"
208
	depends on USB_HID && LEDS_CLASS
209
	help
210 211 212 213 214
	Support for Corsair devices that are not fully compliant with the
	HID standard.

	Supported devices:
	- Vengeance K90
215
	- Scimitar PRO RGB
216

217 218 219 220 221 222 223 224 225
config HID_COUGAR
	tristate "Cougar devices"
	help
	Support for Cougar devices that are not fully compliant with the
	HID standard.

	Supported devices:
	- Cougar 500k Gaming Keyboard

226 227 228 229 230 231 232 233 234
config HID_MACALLY
	tristate "Macally devices"
	help
	Support for Macally devices that are not fully compliant with the
	HID standard.

	supported devices:
	- Macally ikey keyboard

D
Don Prince 已提交
235
config HID_PRODIKEYS
236
	tristate "Prodikeys PC-MIDI Keyboard support"
237
	depends on USB_HID && SND
D
Don Prince 已提交
238
	select SND_RAWMIDI
239
	help
D
Don Prince 已提交
240 241 242 243 244 245 246 247 248 249
	Support for Prodikeys PC-MIDI Keyboard device support.
	Say Y here to enable support for this device.
	- Prodikeys PC-MIDI keyboard.
	  The Prodikeys PC-MIDI acts as a USB Audio device, with one MIDI
	  input and one MIDI output. These MIDI jacks appear as
	  a sound "card" in the ALSA sound system.
	  Note: if you say N here, this device will still function as a basic
	  multimedia keyboard, but will lack support for the musical keyboard
	  and some additional multimedia keys.

250
config HID_CMEDIA
251
	tristate "CMedia audio chips"
252
	help
253 254
	Support for CMedia CM6533 HID audio jack controls
        and HS100B mute buttons.
255

D
David Barksdale 已提交
256 257
config HID_CP2112
	tristate "Silicon Labs CP2112 HID USB-to-SMBus Bridge support"
258
	depends on USB_HID && HIDRAW && I2C && GPIOLIB
259
	select GPIOLIB_IRQCHIP
260
	help
D
David Barksdale 已提交
261 262 263 264 265
	Support for Silicon Labs CP2112 HID USB to SMBus Master Bridge.
	This is a HID device driver which registers as an i2c adapter
	and gpiochip to expose these functions of the CP2112. The
	customizable USB descriptor fields are exposed as sysfs attributes.

266 267 268 269 270 271 272 273 274
config HID_CREATIVE_SB0540
	tristate "Creative SB0540 infrared receiver"
	depends on USB_HID
	help
	Support for Creative infrared SB0540-compatible remote controls, such
	as the RM-1500 and RM-1800 remotes.

	Say Y here if you want support for Creative SB0540 infrared receiver.

J
Jiri Slaby 已提交
275
config HID_CYPRESS
276
	tristate "Cypress mouse and barcode readers"
277
	default !EXPERT
278
	help
279
	Support for cypress mouse and barcode readers.
J
Jiri Slaby 已提交
280

281
config HID_DRAGONRISE
282
	tristate "DragonRise Inc. game controller"
283
	help
284 285 286 287 288 289
	Say Y here if you have DragonRise Inc. game controllers.
	These might be branded as:
	- Tesun USB-703
	- Media-tech MT1504 "Rogue"
	- DVTech JS19 "Gear"
	- Defender Game Master
290 291

config DRAGONRISE_FF
292
	bool "DragonRise Inc. force feedback"
293
	depends on HID_DRAGONRISE
294
	select INPUT_FF_MEMLESS
295
	help
296 297 298
	Say Y here if you want to enable force feedback support for DragonRise Inc.
	game controllers.

299 300 301
config HID_EMS_FF
	tristate "EMS Production Inc. force feedback support"
	select INPUT_FF_MEMLESS
302
	help
303 304 305 306 307
	Say Y here if you want to enable force feedback support for devices by
	EMS Production Ltd.
	Currently the following devices are known to be supported:
	 - Trio Linker Plus II

308 309 310
config HID_ELAN
	tristate "ELAN USB Touchpad Support"
	depends on LEDS_CLASS && USB_HID
311
	help
312 313 314 315
	Say Y to enable support for the USB ELAN touchpad
	Currently the following devices are known to be supported:
	 - HP Pavilion X2 10-p0XX.

316
config HID_ELECOM
317
	tristate "ELECOM HID devices"
318
	help
319 320
	Support for ELECOM devices:
	  - BM084 Bluetooth Mouse
321 322 323
	  - EX-G Trackballs (M-XT3DRBK, M-XT3URBK)
	  - DEFT Trackballs (M-DT1DRBK, M-DT1URBK, M-DT2DRBK, M-DT2URBK)
	  - HUGE Trackballs (M-HT1DRBK, M-HT1URBK)
324

J
Jiri Slaby 已提交
325 326 327
config HID_ELO
	tristate "ELO USB 4000/4500 touchscreen"
	depends on USB_HID
328
	help
J
Jiri Slaby 已提交
329 330 331
	Support for the ELO USB 4000/4500 touchscreens. Note that this is for
	different devices than those handled by CONFIG_TOUCHSCREEN_USB_ELO.

J
Jiri Slaby 已提交
332
config HID_EZKEY
333
	tristate "Ezkey BTC 8193 keyboard"
334
	default !EXPERT
335
	help
336
	Support for Ezkey BTC 8193 keyboard.
J
Jiri Slaby 已提交
337

338 339 340 341 342 343 344 345 346 347 348
config HID_FT260
	tristate "FTDI FT260 USB HID to I2C host support"
	depends on USB_HID && HIDRAW && I2C
	help
	  Provides I2C host adapter functionality over USB-HID through FT260
	  device. The customizable USB descriptor fields are exposed as sysfs
	  attributes.

	  To compile this driver as a module, choose M here: the module
	  will be called hid-ft260.

349 350
config HID_GEMBIRD
	tristate "Gembird Joypad"
351
	help
352 353
	Support for Gembird JPD-DualForce 2.

354 355
config HID_GFRM
	tristate "Google Fiber TV Box remote control support"
356
	help
357 358
	Support for Google Fiber TV Box remote controls

359 360 361 362 363 364
config HID_GLORIOUS
	tristate "Glorious PC Gaming Race mice"
	help
	  Support for Glorious PC Gaming Race mice such as
	  the Glorious Model O, O- and D.

365
config HID_HOLTEK
366
	tristate "Holtek HID devices"
367
	depends on USB_HID
368
	help
369 370 371
	Support for Holtek based devices:
	  - Holtek On Line Grip based game controller
	  - Trust GXT 18 Gaming Keyboard
372
	  - Sharkoon Drakonia / Perixx MX-2000 gaming mice
373 374
	  - Tracer Sniper TRM-503 / NOVA Gaming Slider X200 /
	    Zalman ZM-GM1
375
	  - SHARKOON DarkGlider Gaming mouse
376
	  - LEETGION Hellion Gaming Mouse
377 378 379 380 381

config HOLTEK_FF
	bool "Holtek On Line Grip force feedback support"
	depends on HID_HOLTEK
	select INPUT_FF_MEMLESS
382
	help
383 384 385
	  Say Y here if you have a Holtek On Line Grip based game controller
	  and want to have force feedback support for it.

386 387 388 389 390 391 392
config HID_VIVALDI_COMMON
	tristate
	help
	  ChromeOS Vivaldi HID parsing support library. This is a hidden
	  option so that drivers can use common code to parse the HID
	  descriptors for vivaldi function row keymap.

393 394
config HID_GOOGLE_HAMMER
	tristate "Google Hammer Keyboard"
395 396
	select HID_VIVALDI_COMMON
	select INPUT_VIVALDIFMAP
397
	depends on USB_HID && LEDS_CLASS && CROS_EC
398
	help
399 400
	Say Y here if you have a Google Hammer device.

S
Sean O'Brien 已提交
401 402
config HID_VIVALDI
	tristate "Vivaldi Keyboard"
403
	select HID_VIVALDI_COMMON
404
	select INPUT_VIVALDIFMAP
S
Sean O'Brien 已提交
405 406 407 408 409 410
	help
	  Say Y here if you want to enable support for Vivaldi keyboards.

	  Vivaldi keyboards use a vendor-specific (Google) HID usage to report
	  how the keys in the top row are physically ordered.

411 412 413
config HID_GT683R
	tristate "MSI GT68xR LED support"
	depends on LEDS_CLASS && USB_HID
414
	help
415 416 417 418 419 420 421 422 423 424
	Say Y here if you want to enable support for the three MSI GT68xR LEDs

	This driver support following modes:
	  - Normal: LEDs are fully on when enabled
	  - Audio:  LEDs brightness depends on sound level
	  - Breathing: LEDs brightness varies at human breathing rate

	Currently the following devices are know to be supported:
	  - MSI GT683R

425
config HID_KEYTOUCH
426
	tristate "Keytouch HID devices"
427
	help
428 429 430 431
	Support for Keytouch HID devices not fully compliant with
	the specification. Currently supported:
		- Keytouch IEC 60945

432
config HID_KYE
433
	tristate "KYE/Genius devices"
434
	help
435 436 437 438 439
	Support for KYE/Genius devices not fully compliant with HID standard:
	- Ergo Mouse
	- EasyPen i405X tablet
	- MousePen i608X tablet
	- EasyPen M610X tablet
440

441
config HID_UCLOGIC
J
Jiri Kosina 已提交
442
	tristate "UC-Logic"
443
	depends on USB_HID
444
	help
445
	Support for UC-Logic and Huion tablets.
446

447 448
config HID_WALTOP
	tristate "Waltop"
449
	help
450 451
	Support for Waltop tablets.

452 453 454 455 456
config HID_VIEWSONIC
	tristate "ViewSonic/Signotec"
	help
	  Support for ViewSonic/Signotec PD1011 signature pad.

457 458 459 460 461 462 463 464 465 466
config HID_VRC2
	tristate "VRC-2 Car Controller"
	depends on HID
	help
        Support for VRC-2 which is a 2-axis controller often used in
        car simulators.

        To compile this driver as a module, choose M here: the
        module will be called hid-vrc2.

467 468 469 470 471 472
config HID_XIAOMI
	tristate "Xiaomi"
	help
	  Adds support for side buttons of Xiaomi Mi Dual Mode Wireless
	  Mouse Silent Edition.

J
Jiri Slaby 已提交
473
config HID_GYRATION
474
	tristate "Gyration remote control"
475
	help
476
	Support for Gyration remote control.
J
Jiri Slaby 已提交
477

B
Bastien Nocera 已提交
478 479
config HID_ICADE
	tristate "ION iCade arcade controller"
480
	help
B
Bastien Nocera 已提交
481 482 483 484 485
	Support for the ION iCade arcade controller to work as a joystick.

	To compile this driver as a module, choose M here: the
	module will be called hid-icade.

H
Hans de Goede 已提交
486 487 488
config HID_ITE
	tristate "ITE devices"
	default !EXPERT
489
	help
H
Hans de Goede 已提交
490 491
	Support for ITE devices not fully compliant with HID standard.

492 493
config HID_JABRA
	tristate "Jabra USB HID Driver"
494
	help
495 496 497 498 499 500 501
	Support for Jabra USB HID devices.

	Prevents mapping of vendor defined HID usages to input events. Without
	this driver HID	reports from Jabra devices may incorrectly be seen as
	mouse button events.
	Say M here if you may ever plug in a Jabra USB device.

502
config HID_TWINHAN
503
	tristate "Twinhan IR remote control"
504
	help
505 506
	Support for Twinhan IR remote control.

507
config HID_KENSINGTON
508
	tristate "Kensington Slimblade Trackball"
509
	default !EXPERT
510
	help
511 512
	Support for Kensington Slimblade Trackball.

513 514
config HID_LCPOWER
	tristate "LC-Power"
515
	help
516 517
	Support for LC-Power RC1000MCE RF remote control.

518
config HID_LED
J
Jiri Kosina 已提交
519
	tristate "Simple RGB LED support"
520
	depends on LEDS_CLASS
521
	help
522 523 524 525
	Support for simple RGB LED devices. Currently supported are:
	- Riso Kagaku Webmail Notifier
	- Dream Cheeky Webmail Notifier and Friends Alert
	- ThingM blink(1)
526
	- Delcom Visual Signal Indicator Generation 2
527
	- Greynut Luxafor
528 529 530 531

	To compile this driver as a module, choose M here: the
	module will be called hid-led.

532 533
config HID_LENOVO
	tristate "Lenovo / Thinkpad devices"
534
	select NEW_LEDS
535
	select LEDS_CLASS
536
	help
537
	Support for IBM/Lenovo devices that are not fully compliant with HID standard.
538

539 540 541
	Say Y if you want support for horizontal scrolling of the IBM/Lenovo
	Scrollpoint mice or the non-compliant features of the Lenovo Thinkpad
	standalone keyboards, e.g:
542 543
	- ThinkPad USB Keyboard with TrackPoint (supports extra LEDs and trackpoint
	  configuration)
544 545
	- ThinkPad Compact Bluetooth Keyboard with TrackPoint (supports Fn keys)
	- ThinkPad Compact USB Keyboard with TrackPoint (supports Fn keys)
546

547 548 549 550 551 552 553 554 555 556 557 558 559 560
config HID_LETSKETCH
	tristate "Letsketch WP9620N tablets"
	depends on USB_HID
	help
	  Driver for the LetSketch / VSON WP9620N drawing tablet. This
	  drawing tablet is also sold under other brand names such as Case U,
	  presumably this driver will work for all of them. But it has only been
	  tested with a LetSketch WP9620N model.

	  These tablets also work without a special HID driver, but then only
	  part of the active area works and both the pad and stylus buttons are
	  hardwired to special key-combos. E.g. the 2 stylus buttons send right
	  mouse clicks / resp. "e" key presses.

J
Jiri Slaby 已提交
561
config HID_LOGITECH
562
	tristate "Logitech devices"
563
	depends on USB_HID
564
	depends on LEDS_CLASS
565
	default !EXPERT
566
	help
567
	Support for Logitech devices that are not fully compliant with HID standard.
J
Jiri Slaby 已提交
568

569
config HID_LOGITECH_DJ
570
	tristate "Logitech receivers full support"
571
	depends on USB_HID
572
	depends on HIDRAW
573
	depends on HID_LOGITECH
574
	select HID_LOGITECH_HIDPP
575
	help
576 577
	Say Y if you want support for Logitech receivers and devices.
	Logitech receivers are capable of pairing multiple Logitech compliant
578
	devices to the same receiver. Without this driver it will be handled by
579
	generic USB_HID driver and all incoming events will be multiplexed
580
	into a single mouse and a single keyboard device.
581

582 583 584
config HID_LOGITECH_HIDPP
	tristate "Logitech HID++ devices support"
	depends on HID_LOGITECH
585
	select POWER_SUPPLY
586
	help
C
Christophe JAILLET 已提交
587
	Support for Logitech devices relying on the HID++ Logitech specification
588 589 590 591

	Say Y if you want support for Logitech devices relying on the HID++
	specification. Such devices are the various Logitech Touchpads (T650,
	T651, TK820), some mice (Zone Touch mouse), or even keyboards (Solar
G
Geert Uytterhoeven 已提交
592
	Keyboard).
593

J
Jiri Slaby 已提交
594
config LOGITECH_FF
595
	bool "Logitech force feedback support"
J
Jiri Slaby 已提交
596 597 598 599 600 601 602 603 604 605 606 607 608
	depends on HID_LOGITECH
	select INPUT_FF_MEMLESS
	help
	  Say Y here if you have one of these devices:
	  - Logitech WingMan Cordless RumblePad
	  - Logitech WingMan Cordless RumblePad 2
	  - Logitech WingMan Force 3D

	  and if you want to enable force feedback for them.
	  Note: if you say N here, this device will still be supported, but without
	  force feedback.

config LOGIRUMBLEPAD2_FF
609
	bool "Logitech force feedback support (variant 2)"
J
Jiri Slaby 已提交
610 611 612
	depends on HID_LOGITECH
	select INPUT_FF_MEMLESS
	help
613 614 615 616
	  Say Y here if you want to enable force feedback support for:
	  - Logitech RumblePad
	  - Logitech Rumblepad 2
	  - Logitech Formula Vibration Feedback Wheel
J
Jiri Slaby 已提交
617

618 619 620 621 622 623 624 625
config LOGIG940_FF
	bool "Logitech Flight System G940 force feedback support"
	depends on HID_LOGITECH
	select INPUT_FF_MEMLESS
	help
	  Say Y here if you want to enable force feedback support for Logitech
	  Flight System G940 devices.

626 627
config LOGIWHEELS_FF
	bool "Logitech wheels configuration and force feedback support"
628 629
	depends on HID_LOGITECH
	select INPUT_FF_MEMLESS
630
	default LOGITECH_FF
631
	help
632
	  Say Y here if you want to enable force feedback and range setting(*)
633
	  support for following Logitech wheels:
634 635 636
	  - Logitech G25 (*)
	  - Logitech G27 (*)
	  - Logitech G29 (*)
637
	  - Logitech Driving Force
638 639 640 641 642 643 644 645 646 647
	  - Logitech Driving Force Pro (*)
	  - Logitech Driving Force GT (*)
	  - Logitech Driving Force EX/RX
	  - Logitech Driving Force Wireless
	  - Logitech Speed Force Wireless
	  - Logitech MOMO Force
	  - Logitech MOMO Racing Force
	  - Logitech Formula Force GP
	  - Logitech Formula Force EX/RX
	  - Logitech Wingman Formula Force GP
648

649
config HID_MAGICMOUSE
650
	tristate "Apple Magic Mouse/Trackpad multi-touch support"
651
	help
652
	Support for the Apple Magic Mouse/Trackpad multi-touch.
653 654

	Say Y here if you want support for the multi-touch features of the
655
	Apple Wireless "Magic" Mouse and the Apple Wireless "Magic" Trackpad.
656

657 658
config HID_MALTRON
	tristate "Maltron L90 keyboard"
659
	help
660 661 662
	Adds support for the volume up, volume down, mute, and play/pause buttons
	of the Maltron L90 keyboard.

663 664 665
config HID_MAYFLASH
	tristate "Mayflash game controller adapter force feedback"
	select INPUT_FF_MEMLESS
666
	help
667 668 669
	Say Y here if you have HJZ Mayflash PS3 game controller adapters
	and want to enable force feedback support.

670 671 672 673 674 675 676 677
config HID_MEGAWORLD_FF
	tristate "Mega World based game controller force feedback support"
	depends on USB_HID
	select INPUT_FF_MEMLESS
	help
	Say Y here if you have a Mega World based game controller and want
	to have force feedback support for it.

678 679 680
config HID_REDRAGON
	tristate "Redragon keyboards"
	default !EXPERT
681
	help
682 683
    Support for Redragon keyboards that need fix-ups to work properly.

J
Jiri Slaby 已提交
684
config HID_MICROSOFT
685
	tristate "Microsoft non-fully HID-compliant devices"
686
	default !EXPERT
687
	select INPUT_FF_MEMLESS
688
	help
689
	Support for Microsoft devices that are not fully compliant with HID standard.
J
Jiri Slaby 已提交
690

J
Jiri Slaby 已提交
691
config HID_MONTEREY
692
	tristate "Monterey Genius KB29E keyboard"
693
	default !EXPERT
694
	help
J
Jiri Slaby 已提交
695 696
	Support for Monterey Genius KB29E.

697 698
config HID_MULTITOUCH
	tristate "HID Multitouch panels"
699
	help
700 701 702
	  Generic support for HID multitouch panels.

	  Say Y here if you have one of the following devices:
703
	  - 3M PCT touch screens
704
	  - ActionStar dual touch panels
705
	  - Atmel panels
706
	  - Cando dual touch panels
707
	  - Chunghwa panels
708
	  - CJTouch panels
709
	  - CVTouch panels
710
	  - Cypress TrueTouch panels
711
	  - Elan Microelectronics touch panels
712
	  - Elo TouchSystems IntelliTouch Plus panels
713
	  - GeneralTouch 'Sensing Win7-TwoFinger' panels
714
	  - GoodTouch panels
715
	  - Hanvon dual touch panels
716
	  - Ilitek dual touch panels
717
	  - IrTouch Infrared USB panels
718
	  - LG Display panels (Dell ST2220Tc)
719
	  - Lumio CrystalTouch panels
720
	  - MosArt dual-touch panels
721
	  - Panasonic multitouch panels
722
	  - PenMount dual touch panels
723
	  - Perixx Peripad 701 touchpad
724
	  - PixArt optical touch screen
725
	  - Pixcir dual touch panels
726
	  - Quanta panels
727
	  - eGalax dual-touch panels, including the Joojoo and Wetab tablets
728
	  - SiS multitouch panels
729
	  - Stantum multitouch panels
730
	  - Touch International Panels
731
	  - Unitec Panels
732
	  - Wistron optical touch panels
733
	  - XAT optical touch panels
734
	  - Xiroku optical touch panels
735
	  - Zytronic touch panels
736

737 738 739 740 741
	  If unsure, say N.

	  To compile this driver as a module, choose M here: the
	  module will be called hid-multitouch.

742 743
config HID_NINTENDO
	tristate "Nintendo Joy-Con and Pro Controller support"
744 745
	depends on NEW_LEDS
	depends on LEDS_CLASS
746
	select POWER_SUPPLY
747 748 749 750 751 752 753 754
	help
	Adds support for the Nintendo Switch Joy-Cons and Pro Controller.
	All controllers support bluetooth, and the Pro Controller also supports
	its USB mode.

	To compile this driver as a module, choose M here: the
	module will be called hid-nintendo.

755 756 757 758 759 760 761 762 763 764
config NINTENDO_FF
	bool "Nintendo Switch controller force feedback support"
	depends on HID_NINTENDO
	select INPUT_FF_MEMLESS
	help
	Say Y here if you have a Nintendo Switch controller and want to enable
	force feedback support for it. This works for both joy-cons and the pro
	controller. For the pro controller, both rumble motors can be controlled
	individually.

765 766
config HID_NTI
	tristate "NTI keyboard adapters"
767
	help
768 769 770
	Support for the "extra" Sun keyboard keys on keyboards attached
	through Network Technologies USB-SUN keyboard adapters.

R
Rafi Rubin 已提交
771
config HID_NTRIG
772
	tristate "N-Trig touch screen"
R
Rafi Rubin 已提交
773
	depends on USB_HID
774
	help
R
Rafi Rubin 已提交
775 776
	Support for N-Trig touch screen.

777
config HID_ORTEK
778
	tristate "Ortek PKB-1700/WKB-2000/Skycable wireless keyboard and mouse trackpad"
779
	help
780 781 782 783 784 785 786 787
	There are certain devices which have LogicalMaximum wrong in the keyboard
	usage page of their report descriptor. The most prevailing ones so far
	are manufactured by Ortek, thus the name of the driver. Currently
	supported devices by this driver are

	   - Ortek PKB-1700
	   - Ortek WKB-2000
	   - Skycable wireless presenter
788

789
config HID_PANTHERLORD
790
	tristate "Pantherlord/GreenAsia game controller"
791
	help
792 793 794
	  Say Y here if you have a PantherLord/GreenAsia based game controller
	  or adapter.

J
Jiri Slaby 已提交
795 796 797 798
config PANTHERLORD_FF
	bool "Pantherlord force feedback support"
	depends on HID_PANTHERLORD
	select INPUT_FF_MEMLESS
799
	help
J
Jiri Slaby 已提交
800 801 802
	  Say Y here if you have a PantherLord/GreenAsia based game controller
	  or adapter and want to enable force feedback support for it.

803 804 805
config HID_PENMOUNT
	tristate "Penmount touch device"
	depends on USB_HID
806
	help
807 808 809 810 811 812 813
	  This selects a driver for the PenMount 6000 touch controller.

	  The driver works around a problem in the report descript allowing
	  the userspace to touch events instead of mouse events.

	  Say Y here if you have a Penmount based touch controller.

J
Jiri Slaby 已提交
814
config HID_PETALYNX
815
	tristate "Petalynx Maxter remote control"
816
	help
817
	Support for Petalynx Maxter remote control.
J
Jiri Slaby 已提交
818

819 820
config HID_PICOLCD
	tristate "PicoLCD (graphic version)"
821
	help
822 823 824 825 826 827
	  This provides support for Minibox PicoLCD devices, currently
	  only the graphical ones are supported.

	  This includes support for the following device features:
	  - Keypad
	  - Switching between Firmware and Flash mode
828
	  - EEProm / Flash access     (via debugfs)
829 830 831 832 833
	  Features selectively enabled:
	  - Framebuffer for monochrome 256x64 display
	  - Backlight control
	  - Contrast control
	  - General purpose outputs
834
	  Features that are not (yet) supported:
835 836
	  - IR

837
config HID_PICOLCD_FB
838 839
	bool "Framebuffer support" if EXPERT
	default !EXPERT
840 841 842 843 844 845 846
	depends on HID_PICOLCD
	depends on HID_PICOLCD=FB || FB=y
	select FB_DEFERRED_IO
	select FB_SYS_FILLRECT
	select FB_SYS_COPYAREA
	select FB_SYS_IMAGEBLIT
	select FB_SYS_FOPS
847
	help
848
	  Provide access to PicoLCD's 256x64 monochrome display via a
M
Masanari Iida 已提交
849
	  framebuffer device.
850 851

config HID_PICOLCD_BACKLIGHT
852 853
	bool "Backlight control" if EXPERT
	default !EXPERT
854 855
	depends on HID_PICOLCD
	depends on HID_PICOLCD=BACKLIGHT_CLASS_DEVICE || BACKLIGHT_CLASS_DEVICE=y
856
	help
857 858 859 860
	  Provide access to PicoLCD's backlight control via backlight
	  class.

config HID_PICOLCD_LCD
861 862
	bool "Contrast control" if EXPERT
	default !EXPERT
863 864
	depends on HID_PICOLCD
	depends on HID_PICOLCD=LCD_CLASS_DEVICE || LCD_CLASS_DEVICE=y
865
	help
866 867 868
	  Provide access to PicoLCD's LCD contrast via lcd class.

config HID_PICOLCD_LEDS
869 870
	bool "GPO via leds class" if EXPERT
	default !EXPERT
871 872
	depends on HID_PICOLCD
	depends on HID_PICOLCD=LEDS_CLASS || LEDS_CLASS=y
873
	help
874 875
	  Provide access to PicoLCD's GPO pins via leds class.

B
Bruno Prémont 已提交
876 877 878 879 880
config HID_PICOLCD_CIR
	bool "CIR via RC class" if EXPERT
	default !EXPERT
	depends on HID_PICOLCD
	depends on HID_PICOLCD=RC_CORE || RC_CORE=y
881
	help
B
Bruno Prémont 已提交
882 883
	  Provide access to PicoLCD's CIR interface via remote control (LIRC).

884 885
config HID_PLANTRONICS
	tristate "Plantronics USB HID Driver"
886
	help
887 888 889 890 891 892
	  Provides HID support for Plantronics USB audio devices.
	  Correctly maps vendor unique volume up/down HID usages to
	  KEY_VOLUMEUP and KEY_VOLUMEDOWN events and prevents core mapping
	  of other vendor unique HID usages to random mouse events.

	  Say M here if you may ever plug in a Plantronics USB audio device.
893

894 895
config HID_PLAYSTATION
	tristate "PlayStation HID Driver"
896
	depends on LEDS_CLASS_MULTICOLOR
897
	select CRC32
898
	select POWER_SUPPLY
899 900 901 902 903
	help
	  Provides support for Sony PS5 controllers including support for
	  its special functionalities e.g. touchpad, lights and motion
	  sensors.

904 905 906 907 908 909 910 911
config PLAYSTATION_FF
	bool "PlayStation force feedback support"
	depends on HID_PLAYSTATION
	select INPUT_FF_MEMLESS
	help
	  Say Y here if you would like to enable force feedback support for
	  PlayStation game controllers.

912 913 914 915 916 917 918 919 920
config HID_PXRC
       tristate "PhoenixRC HID Flight Controller"
       depends on HID
       help
       Support for PhoenixRC HID Flight Controller, a 8-axis flight controller.

       To compile this driver as a module, choose M here: the
       module will be called hid-pxrc.

921 922 923 924 925 926
config HID_RAZER
	tristate "Razer non-fully HID-compliant devices"
	help
	Support for Razer devices that are not fully compliant with the
	HID standard.

927
config HID_PRIMAX
928
	tristate "Primax non-fully HID-compliant devices"
929
	help
930 931 932
	Support for Primax devices that are not fully compliant with the
	HID standard.

933
config HID_RETRODE
934
	tristate "Retrode 2 USB adapter for vintage video games"
935
	depends on USB_HID
936
	help
937 938 939
	Support for
	  * Retrode 2 cartridge and controller adapter

940
config HID_ROCCAT
941
	tristate "Roccat device support"
942
	depends on USB_HID
943
	help
944 945 946
	Support for Roccat devices.
	Say Y here if you have a Roccat mouse or keyboard and want
	support for its special functionalities.
947

948
config HID_SAITEK
949
	tristate "Saitek (Mad Catz) non-fully HID-compliant devices"
950
	help
951 952 953
	Support for Saitek devices that are not fully compliant with the
	HID standard.

954 955
	Supported devices:
	- PS1000 Dual Analog Pad
956 957
	- Saitek R.A.T.7, R.A.T.9, M.M.O.7 Gaming Mice
	- Mad Catz R.A.T.5, R.A.T.9 Gaming Mice
958

J
Jiri Slaby 已提交
959
config HID_SAMSUNG
960
	tristate "Samsung InfraRed remote control or keyboards"
961
	depends on USB_HID
962
	help
963
	Support for Samsung InfraRed remote control or keyboards.
J
Jiri Slaby 已提交
964

965 966 967 968 969 970 971 972 973 974 975 976 977 978
config HID_SEMITEK
	tristate "Semitek USB keyboards"
	help
	Support for Semitek USB keyboards that are not fully compliant
	with the HID standard.

	There are many variants, including:
	- GK61, GK64, GK68, GK84, GK96, etc.
	- SK61, SK64, SK68, SK84, SK96, etc.
	- Dierya DK61/DK66
	- Tronsmart TK09R
	- Woo-dy
	- X-Bows Nature/Knight

D
Desmond Lim 已提交
979 980 981 982 983 984 985 986 987 988
config HID_SIGMAMICRO
	tristate "SiGma Micro-based keyboards"
	depends on USB_HID
	help
	  Support for keyboards that use the SiGma Micro (a.k.a SigmaChip) IC.

	  Supported devices:
	  - Landslides KR-700
	  - Rapoo V500

J
Jiri Slaby 已提交
989
config HID_SONY
990
	tristate "Sony PS2/3/4 accessories"
J
Jiri Slaby 已提交
991
	depends on USB_HID
J
Jiri Kosina 已提交
992 993
	depends on NEW_LEDS
	depends on LEDS_CLASS
994
	select POWER_SUPPLY
A
Arnd Bergmann 已提交
995
	select CRC32
996
	help
997
	Support for
998

999
	  * Sony PS3 6-axis controllers
1000
	  * Sony PS4 DualShock 4 controllers
1001
	  * Buzz controllers
1002 1003
	  * Sony PS3 Blue-ray Disk Remote Control (Bluetooth)
	  * Logitech Harmony adapter for Sony Playstation 3 (Bluetooth)
1004
	  * Guitar Hero Live PS3, Wii U and PS4 guitar dongles
1005
	  * Guitar Hero PS3 and PC guitar dongles
J
Jiri Slaby 已提交
1006

1007
config SONY_FF
1008
	bool "Sony PS2/3/4 accessories force feedback support" 
1009 1010
	depends on HID_SONY
	select INPUT_FF_MEMLESS
1011
	help
1012 1013
	Say Y here if you have a Sony PS2/3/4 accessory and want to enable
	force feedback support for it.
1014

1015 1016
config HID_SPEEDLINK
	tristate "Speedlink VAD Cezanne mouse support"
1017
	help
1018 1019
	Support for Speedlink Vicious and Divine Cezanne mouse.

1020 1021
config HID_STEAM
	tristate "Steam Controller support"
1022
	select POWER_SUPPLY
1023
	help
1024 1025 1026 1027
	Say Y here if you have a Steam Controller if you want to use it
	without running the Steam Client. It supports both the wired and
	the wireless adaptor.

1028
config HID_STEELSERIES
1029
	tristate "Steelseries SRW-S1 steering wheel support"
1030
	help
1031 1032
	Support for Steelseries SRW-S1 steering wheel

J
Jiri Slaby 已提交
1033
config HID_SUNPLUS
1034
	tristate "Sunplus wireless desktop"
1035
	help
1036
	Support for Sunplus wireless desktop.
J
Jiri Slaby 已提交
1037

1038 1039
config HID_RMI
	tristate "Synaptics RMI4 device support"
1040 1041 1042 1043 1044
	select RMI4_CORE
	select RMI4_F03
	select RMI4_F11
	select RMI4_F12
	select RMI4_F30
1045
	help
1046 1047 1048 1049
	Support for Synaptics RMI4 touchpads.
	Say Y here if you have a Synaptics RMI4 touchpads over i2c-hid or usbhid
	and want support for its special functionalities.

1050
config HID_GREENASIA
1051
	tristate "GreenAsia (Product ID 0x12) game controller support"
1052
	help
1053 1054 1055 1056 1057 1058
	  Say Y here if you have a GreenAsia (Product ID 0x12) based game
	  controller or adapter.

config GREENASIA_FF
	bool "GreenAsia (Product ID 0x12) force feedback support"
	depends on HID_GREENASIA
1059
	select INPUT_FF_MEMLESS
1060
	help
1061
	Say Y here if you have a GreenAsia (Product ID 0x12) based game controller
1062
	(like MANTA Warrior MM816 and SpeedLink Strike2 SL-6635) or adapter
1063 1064
	and want to enable force feedback support for it.

1065 1066 1067
config HID_HYPERV_MOUSE
	tristate "Microsoft Hyper-V mouse driver"
	depends on HYPERV
1068
	help
1069 1070
	Select this option to enable the Hyper-V mouse driver.

1071
config HID_SMARTJOYPLUS
1072
	tristate "SmartJoy PLUS PS2/USB adapter support"
1073
	help
1074 1075 1076 1077 1078
	Support for SmartJoy PLUS PS2/USB adapter, Super Dual Box,
	Super Joy Box 3 Pro, Super Dual Box Pro, and Super Joy Box 5 Pro.

	Note that DDR (Dance Dance Revolution) mode is not supported, nor
	is pressure sensitive buttons on the pro models.
1079 1080 1081 1082 1083

config SMARTJOYPLUS_FF
	bool "SmartJoy PLUS PS2/USB adapter force feedback support"
	depends on HID_SMARTJOYPLUS
	select INPUT_FF_MEMLESS
1084
	help
1085 1086 1087
	Say Y here if you have a SmartJoy PLUS PS2/USB adapter and want to
	enable force feedback support for it.

J
Jiri Kosina 已提交
1088
config HID_TIVO
1089
	tristate "TiVo Slide Bluetooth remote control support"
1090
	help
1091 1092
	Say Y if you have a TiVo Slide Bluetooth remote control.

1093
config HID_TOPSEED
1094
	tristate "TopSeed Cyberlink, BTC Emprex, Conceptronic remote control support"
1095
	help
1096 1097
	Say Y if you have a TopSeed Cyberlink or BTC Emprex or Conceptronic
	CLLRCMCE remote control.
1098

1099 1100 1101 1102 1103 1104
config HID_TOPRE
	tristate "Topre REALFORCE keyboards"
	depends on HID
	help
	  Say Y for N-key rollover support on Topre REALFORCE R2 108 key keyboards.

1105 1106 1107
config HID_THINGM
	tristate "ThingM blink(1) USB RGB LED"
	depends on LEDS_CLASS
1108
	select HID_LED
1109
	help
1110 1111 1112
	Support for the ThingM blink(1) USB RGB LED. This driver has been
	merged into the generic hid led driver. Config symbol HID_THINGM
	just selects HID_LED and will be removed soon.
1113

1114
config HID_THRUSTMASTER
1115
	tristate "ThrustMaster devices support"
1116
	depends on USB_HID
1117
	help
1118 1119 1120
	  Say Y here if you have a THRUSTMASTER FireStore Dual Power 2,
	  a THRUSTMASTER Ferrari GT Rumble Wheel or Thrustmaster FFB
	  Wheel (T150RS, T300RS, T300 Ferrari Alcantara Edition, T500RS).
1121 1122 1123 1124

config THRUSTMASTER_FF
	bool "ThrustMaster devices force feedback support"
	depends on HID_THRUSTMASTER
J
Jiri Slaby 已提交
1125
	select INPUT_FF_MEMLESS
1126
	help
1127 1128 1129
	  Say Y here if you have a THRUSTMASTER FireStore Dual Power 2 or 3,
	  a THRUSTMASTER Dual Trigger 3-in-1 or a THRUSTMASTER Ferrari GT
	  Rumble Force or Force Feedback Wheel.
J
Jiri Slaby 已提交
1130

1131 1132
config HID_UDRAW_PS3
	tristate "THQ PS3 uDraw tablet"
1133
	help
1134 1135 1136
	  Say Y here if you want to use the THQ uDraw gaming tablet for
	  the PS3.

1137 1138 1139 1140
config HID_U2FZERO
	tristate "U2F Zero LED and RNG support"
	depends on USB_HID
	depends on LEDS_CLASS
1141
	depends on HW_RANDOM
1142 1143 1144 1145 1146 1147 1148 1149 1150
	help
	  Support for the LED of the U2F Zero device.

	  U2F Zero supports custom commands for blinking the LED
	  and getting data from the internal hardware RNG.
	  The internal hardware can be used to feed the enthropy pool.

	  U2F Zero only supports blinking its LED, so this driver doesn't
	  allow setting the brightness to anything but 1, which will
1151
	  trigger a single blink and immediately reset back to 0.
1152

1153
config HID_WACOM
1154
	tristate "Wacom Intuos/Graphire tablet support (USB)"
1155
	depends on USB_HID
1156
	select POWER_SUPPLY
1157 1158
	select NEW_LEDS
	select LEDS_CLASS
1159
	select LEDS_TRIGGERS
1160
	help
1161
	  Say Y here if you want to use the USB or BT version of the Wacom Intuos
1162 1163 1164 1165
	  or Graphire tablet.

	  To compile this driver as a module, choose M here: the
	  module will be called wacom.
1166

1167
config HID_WIIMOTE
1168
	tristate "Nintendo Wii / Wii U peripherals"
1169
	depends on LEDS_CLASS
1170
	select POWER_SUPPLY
1171
	select INPUT_FF_MEMLESS
1172
	help
1173 1174 1175 1176
	Support for Nintendo Wii and Wii U Bluetooth peripherals. Supported
	devices are the Wii Remote and its extension devices, but also devices
	based on the Wii Remote like the Wii U Pro Controller or the
	Wii Balance Board.
1177

1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189
	Support for all official Nintendo extensions is available, however, 3rd
	party extensions might not be supported. Please report these devices to:
	  http://github.com/dvdhrm/xwiimote/issues

	Other Nintendo Wii U peripherals that are IEEE 802.11 based (including
	the Wii U Gamepad) might be supported in the future. But currently
	support is limited to Bluetooth based devices.

	If unsure, say N.

	To compile this driver as a module, choose M here: the
	module will be called hid-wiimote.
1190

1191 1192
config HID_XINMO
	tristate "Xin-Mo non-fully compliant devices"
1193
	help
1194
	Support for Xin-Mo devices that are not fully compliant with the HID
1195
	standard. Currently only supports the Xin-Mo Dual Arcade. Say Y here
1196 1197
	if you have a Xin-Mo Dual Arcade controller.

1198
config HID_ZEROPLUS
1199
	tristate "Zeroplus based game controller support"
1200
	help
J
Jiri Slaby 已提交
1201 1202
	  Say Y here if you have a Zeroplus based game controller.

1203 1204 1205 1206
config ZEROPLUS_FF
	bool "Zeroplus based game controller force feedback support"
	depends on HID_ZEROPLUS
	select INPUT_FF_MEMLESS
1207
	help
1208 1209 1210
	  Say Y here if you have a Zeroplus based game controller and want
	  to have force feedback support for it.

D
Don Prince 已提交
1211
config HID_ZYDACRON
1212
	tristate "Zydacron remote control support"
1213
	help
D
Don Prince 已提交
1214 1215
	Support for Zydacron remote control.

1216 1217
config HID_SENSOR_HUB
	tristate "HID Sensors framework support"
1218
	depends on HAS_IOMEM
1219 1220
	select MFD_CORE
	default n
1221
	help
1222 1223 1224 1225 1226 1227 1228 1229
	  Support for HID Sensor framework. This creates a MFD instance
	  for a sensor hub and identifies all the sensors connected to it.
	  Each sensor is registered as a MFD cell, so that sensor specific
	  processing can be done in a separate driver. Each sensor
	  drivers can use the service provided by this driver to register
	  for events and handle data streams. Each sensor driver can format
	  data and present to user mode using input or IIO interface.

1230 1231 1232 1233
config HID_SENSOR_CUSTOM_SENSOR
	tristate "HID Sensors hub custom sensor support"
	depends on HID_SENSOR_HUB
	default n
1234
	help
1235 1236 1237 1238 1239 1240
	  HID Sensor hub specification allows definition of some custom and
	  generic sensors. Unlike other HID sensors, they can't be exported
	  via Linux IIO because of custom fields. This is up to the manufacturer
	  to decide how to interpret these special sensor ids and process in
	  the user space. Currently some manufacturers are using these ids for
	  sensor calibration and debugging other sensors. Manufacturers
C
Christophe JAILLET 已提交
1241
	  shouldn't use these special custom sensor ids to export any of the
1242 1243 1244
	  standard sensors.
	  Select this config option for custom/generic sensor support.

1245 1246
config HID_ALPS
	tristate "Alps HID device support"
1247
	help
1248 1249 1250 1251
	Support for Alps I2C HID touchpads and StickPointer.
	Say Y here if you have a Alps touchpads over i2c-hid or usbhid
	and want support for its special functionalities.

1252 1253 1254
config HID_MCP2221
	tristate "Microchip MCP2221 HID USB-to-I2C/SMbus host support"
	depends on USB_HID && I2C
1255
	imply GPIOLIB
1256
	help
1257 1258 1259 1260 1261 1262
	Provides I2C and SMBUS host adapter functionality over USB-HID
	through MCP2221 device.

	To compile this driver as a module, choose M here: the module
	will be called hid-mcp2221.ko.

1263
config HID_KUNIT_TEST
1264
	tristate "KUnit tests for HID" if !KUNIT_ALL_TESTS
1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278
	depends on KUNIT=y
	depends on HID_UCLOGIC
	default KUNIT_ALL_TESTS
	help
	  This builds unit tests for HID. This option is not useful for
	  distributions or general kernels, but only for kernel
	  developers working on HID and associated drivers.

	  For more information on KUnit and unit tests in general,
	  please refer to the KUnit documentation in
	  Documentation/dev-tools/kunit/.

	  If in doubt, say "N".

J
Jiri Slaby 已提交
1279 1280
endmenu

1281 1282 1283 1284
endif # HID

source "drivers/hid/usbhid/Kconfig"

1285 1286
source "drivers/hid/i2c-hid/Kconfig"

1287 1288
source "drivers/hid/intel-ish-hid/Kconfig"

1289 1290
source "drivers/hid/amd-sfh-hid/Kconfig"

1291 1292
source "drivers/hid/surface-hid/Kconfig"

1293
endmenu