1# SPDX-License-Identifier: GPL-2.0-only 2# 3# HID driver configuration 4# 5menuconfig HID_SUPPORT 6 bool "HID bus support" 7 default y 8 depends on INPUT 9 help 10 This option adds core support for human interface device (HID). 11 You will also need drivers from the following menu to make use of it. 12 13if HID_SUPPORT 14 15config HID 16 tristate "HID bus core support" 17 default y 18 depends on INPUT 19 help 20 A human interface device (HID) is a type of computer device that 21 interacts directly with and takes input from humans. The term "HID" 22 most commonly used to refer to the USB-HID specification, but other 23 devices (such as, but not strictly limited to, Bluetooth) are 24 designed using HID specification (this involves certain keyboards, 25 mice, tablets, etc). This option adds the HID bus to the kernel, 26 together with generic HID layer code. The HID devices are added and 27 removed from the HID bus by the transport-layer drivers, such as 28 usbhid (USB_HID) and hidp (BT_HIDP). 29 30 For docs and specs, see https://www.usb.org/developers/hidpage/ 31 32 If unsure, say Y. 33 34if HID 35 36config HID_BATTERY_STRENGTH 37 bool "Battery level reporting for HID devices" 38 select POWER_SUPPLY 39 default n 40 help 41 This option adds support of reporting battery strength (for HID devices 42 that support this feature) through power_supply class so that userspace 43 tools, such as upower, can display it. 44 45config HIDRAW 46 bool "/dev/hidraw raw HID device support" 47 help 48 Say Y here if you want to support HID devices (from the USB 49 specification standpoint) that aren't strictly user interface 50 devices, like monitor controls and Uninterruptible Power Supplies. 51 52 This module supports these devices separately using a separate 53 event interface on /dev/hidraw. 54 55 There is also a /dev/hiddev configuration option in the USB HID 56 configuration menu. In comparison to hiddev, this device does not process 57 the hid events at all (no parsing, no lookups). This lets applications 58 to work on raw hid events when they want to, and avoid using transport-specific 59 userspace libhid/libusb libraries. 60 61 If unsure, say Y. 62 63config UHID 64 tristate "User-space I/O driver support for HID subsystem" 65 default n 66 help 67 Say Y here if you want to provide HID I/O Drivers from user-space. 68 This allows to write I/O drivers in user-space and feed the data from 69 the device into the kernel. The kernel parses the HID reports, loads the 70 corresponding HID Device Driver or provides input devices on top of your 71 user-space device. 72 73 This driver cannot be used to parse HID-reports in user-space and write 74 special HID-drivers. You should use hidraw for that. 75 Instead, this driver allows to write the transport-layer driver in 76 user-space like USB-HID and Bluetooth-HID do in kernel-space. 77 78 If unsure, say N. 79 80 To compile this driver as a module, choose M here: the 81 module will be called uhid. 82 83config HID_GENERIC 84 tristate "Generic HID driver" 85 default HID 86 help 87 Support for generic devices on the HID bus. This includes most 88 keyboards and mice, joysticks, tablets and digitizers. 89 90 To compile this driver as a module, choose M here: the module 91 will be called hid-generic. 92 93 If unsure, say Y. 94 95config HID_HAPTIC 96 bool "Haptic touchpad support" 97 default n 98 help 99 Support for touchpads with force sensors and haptic actuators instead of a 100 traditional button. 101 Adds extra parsing and FF device for the hid multitouch driver. 102 It can be used for Elan 2703 haptic touchpad. 103 104 If unsure, say N. 105 106menu "Special HID drivers" 107 108config HID_A4TECH 109 tristate "A4TECH mice" 110 default !EXPERT 111 help 112 Support for some A4TECH mice with two scroll wheels. 113 114config HID_ACCUTOUCH 115 tristate "Accutouch touch device" 116 depends on USB_HID 117 help 118 This selects a driver for the Accutouch 2216 touch controller. 119 120 The driver works around a problem in the reported device capabilities 121 which causes userspace to detect the device as a mouse rather than 122 a touchscreen. 123 124 Say Y here if you have a Accutouch 2216 touch controller. 125 126config HID_ACRUX 127 tristate "ACRUX game controller support" 128 help 129 Say Y here if you want to enable support for ACRUX game controllers. 130 131config HID_ACRUX_FF 132 bool "ACRUX force feedback support" 133 depends on HID_ACRUX 134 select INPUT_FF_MEMLESS 135 help 136 Say Y here if you want to enable force feedback support for ACRUX 137 game controllers. 138 139config HID_APPLE 140 tristate "Apple {i,Power,Mac}Books" 141 depends on LEDS_CLASS 142 depends on NEW_LEDS 143 default !EXPERT 144 help 145 Support for some Apple devices which less or more break 146 HID specification. 147 148 Say Y here if you want support for keyboards of Apple iBooks, PowerBooks, 149 MacBooks, MacBook Pros and Apple Aluminum. 150 151config HID_APPLEIR 152 tristate "Apple infrared receiver" 153 depends on (USB_HID) 154 help 155 Support for Apple infrared remote control. All the Apple computers from 156 2005 onwards include such a port, except the unibody Macbook (2009), 157 and Mac Pros. This receiver is also used in the Apple TV set-top box 158 prior to the 2010 model. 159 160 Say Y here if you want support for Apple infrared remote control. 161 162config HID_APPLETB_BL 163 tristate "Apple Touch Bar Backlight" 164 depends on BACKLIGHT_CLASS_DEVICE 165 depends on X86 || COMPILE_TEST 166 help 167 Say Y here if you want support for the backlight of Touch Bars on x86 168 MacBook Pros. 169 170 To compile this driver as a module, choose M here: the 171 module will be called hid-appletb-bl. 172 173config HID_APPLETB_KBD 174 tristate "Apple Touch Bar Keyboard Mode" 175 depends on USB_HID 176 depends on BACKLIGHT_CLASS_DEVICE 177 depends on INPUT 178 depends on X86 || COMPILE_TEST 179 select INPUT_SPARSEKMAP 180 select HID_APPLETB_BL 181 help 182 Say Y here if you want support for the keyboard mode (escape, 183 function, media and brightness keys) of Touch Bars on x86 MacBook 184 Pros. 185 186 To compile this driver as a module, choose M here: the 187 module will be called hid-appletb-kbd. 188 189config HID_ASUS 190 tristate "Asus" 191 depends on USB_HID 192 depends on LEDS_CLASS 193 depends on ASUS_WMI || ASUS_WMI=n 194 select POWER_SUPPLY 195 help 196 Support for Asus notebook built-in keyboard and touchpad via i2c, and 197 the Asus Republic of Gamers laptop keyboard special keys. 198 199 Supported devices: 200 - EeeBook X205TA 201 - VivoBook E200HA 202 - GL553V series 203 - GL753V series 204 205config HID_AUREAL 206 tristate "Aureal" 207 help 208 Support for Aureal Cy se W-01RN Remote Controller and other Aureal derived remotes. 209 210config HID_BELKIN 211 tristate "Belkin Flip KVM and Wireless keyboard" 212 default !EXPERT 213 help 214 Support for Belkin Flip KVM and Wireless keyboard. 215 216config HID_BETOP_FF 217 tristate "Betop Production Inc. force feedback support" 218 depends on USB_HID 219 select INPUT_FF_MEMLESS 220 help 221 Say Y here if you want to enable force feedback support for devices by 222 BETOP Production Ltd. 223 Currently the following devices are known to be supported: 224 - BETOP 2185 PC & BFM MODE 225 226config HID_BIGBEN_FF 227 tristate "BigBen Interactive Kids' gamepad support" 228 depends on USB_HID 229 depends on NEW_LEDS 230 depends on LEDS_CLASS 231 select INPUT_FF_MEMLESS 232 help 233 Support for the "Kid-friendly Wired Controller" PS3OFMINIPAD 234 gamepad made by BigBen Interactive, originally sold as a PS3 235 accessory. This driver fixes input mapping and adds support for 236 force feedback effects and LEDs on the device. 237 238config HID_CHERRY 239 tristate "Cherry Cymotion keyboard" 240 default !EXPERT 241 help 242 Support for Cherry Cymotion keyboard. 243 244config HID_CHICONY 245 tristate "Chicony devices" 246 depends on USB_HID 247 default !EXPERT 248 help 249 Support for Chicony Tactical pad and special keys on Chicony keyboards. 250 251config HID_CORSAIR 252 tristate "Corsair devices" 253 depends on USB_HID && LEDS_CLASS 254 select POWER_SUPPLY 255 help 256 Support for Corsair devices that are not fully compliant with the 257 HID standard. 258 Support for Corsair Void headsets. 259 260 Supported devices: 261 - Vengeance K90 262 - Scimitar PRO RGB 263 - Corsair Void headsets 264 265config HID_COUGAR 266 tristate "Cougar devices" 267 help 268 Support for Cougar devices that are not fully compliant with the 269 HID standard. 270 271 Supported devices: 272 - Cougar 500k Gaming Keyboard 273 274config HID_MACALLY 275 tristate "Macally devices" 276 help 277 Support for Macally devices that are not fully compliant with the 278 HID standard. 279 280 supported devices: 281 - Macally ikey keyboard 282 283config HID_PRODIKEYS 284 tristate "Prodikeys PC-MIDI Keyboard support" 285 depends on USB_HID && SND 286 select SND_RAWMIDI 287 help 288 Support for Prodikeys PC-MIDI Keyboard device support. 289 Say Y here to enable support for this device. 290 - Prodikeys PC-MIDI keyboard. 291 The Prodikeys PC-MIDI acts as a USB Audio device, with one MIDI 292 input and one MIDI output. These MIDI jacks appear as 293 a sound "card" in the ALSA sound system. 294 Note: if you say N here, this device will still function as a basic 295 multimedia keyboard, but will lack support for the musical keyboard 296 and some additional multimedia keys. 297 298config HID_CMEDIA 299 tristate "CMedia audio chips" 300 help 301 Support for CMedia CM6533 HID audio jack controls 302 and HS100B mute buttons. 303 304config HID_CP2112 305 tristate "Silicon Labs CP2112 HID USB-to-SMBus Bridge support" 306 depends on USB_HID && HIDRAW && I2C && GPIOLIB 307 select GPIOLIB_IRQCHIP 308 help 309 Support for Silicon Labs CP2112 HID USB to SMBus Master Bridge. 310 This is a HID device driver which registers as an i2c adapter 311 and gpiochip to expose these functions of the CP2112. The 312 customizable USB descriptor fields are exposed as sysfs attributes. 313 314config HID_CREATIVE_SB0540 315 tristate "Creative SB0540 infrared receiver" 316 depends on USB_HID 317 help 318 Support for Creative infrared SB0540-compatible remote controls, such 319 as the RM-1500 and RM-1800 remotes. 320 321 Say Y here if you want support for Creative SB0540 infrared receiver. 322 323config HID_CYPRESS 324 tristate "Cypress mouse and barcode readers" 325 default !EXPERT 326 help 327 Support for cypress mouse and barcode readers. 328 329config HID_DRAGONRISE 330 tristate "DragonRise Inc. game controller" 331 help 332 Say Y here if you have DragonRise Inc. game controllers. 333 These might be branded as: 334 - Tesun USB-703 335 - Media-tech MT1504 "Rogue" 336 - DVTech JS19 "Gear" 337 - Defender Game Master 338 339config DRAGONRISE_FF 340 bool "DragonRise Inc. force feedback" 341 depends on HID_DRAGONRISE 342 select INPUT_FF_MEMLESS 343 help 344 Say Y here if you want to enable force feedback support for DragonRise Inc. 345 game controllers. 346 347config HID_EMS_FF 348 tristate "EMS Production Inc. force feedback support" 349 select INPUT_FF_MEMLESS 350 help 351 Say Y here if you want to enable force feedback support for devices by 352 EMS Production Ltd. 353 Currently the following devices are known to be supported: 354 - Trio Linker Plus II 355 356config HID_ELAN 357 tristate "ELAN USB Touchpad Support" 358 depends on LEDS_CLASS && USB_HID 359 help 360 Say Y to enable support for the USB ELAN touchpad 361 Currently the following devices are known to be supported: 362 - HP Pavilion X2 10-p0XX. 363 364config HID_ELECOM 365 tristate "ELECOM HID devices" 366 help 367 Support for ELECOM devices: 368 - BM084 Bluetooth Mouse 369 - EX-G Trackballs (M-XT3DRBK, M-XT3URBK) 370 - DEFT Trackballs (M-DT1DRBK, M-DT1URBK, M-DT2DRBK, M-DT2URBK) 371 - HUGE Trackballs (M-HT1DRBK, M-HT1URBK) 372 373config HID_ELO 374 tristate "ELO USB 4000/4500 touchscreen" 375 depends on USB_HID 376 help 377 Support for the ELO USB 4000/4500 touchscreens. Note that this is for 378 different devices than those handled by CONFIG_TOUCHSCREEN_USB_ELO. 379 380config HID_EVISION 381 tristate "EVision Keyboards Support" 382 depends on HID 383 help 384 Support for some EVision keyboards. Note that this is needed only when 385 applying customization using userspace programs. 386 Support for some EVision devices requiring report descriptor fixups. 387 388config HID_EZKEY 389 tristate "Ezkey BTC 8193 keyboard" 390 default !EXPERT 391 help 392 Support for Ezkey BTC 8193 keyboard. 393 394config HID_FT260 395 tristate "FTDI FT260 USB HID to I2C host support" 396 depends on USB_HID && HIDRAW && I2C 397 help 398 Provides I2C host adapter functionality over USB-HID through FT260 399 device. The customizable USB descriptor fields are exposed as sysfs 400 attributes. 401 402 To compile this driver as a module, choose M here: the module 403 will be called hid-ft260. 404 405config HID_GEMBIRD 406 tristate "Gembird Joypad" 407 help 408 Support for Gembird JPD-DualForce 2. 409 410config HID_GFRM 411 tristate "Google Fiber TV Box remote control support" 412 help 413 Support for Google Fiber TV Box remote controls 414 415config HID_GLORIOUS 416 tristate "Glorious PC Gaming Race mice" 417 help 418 Support for Glorious PC Gaming Race mice such as 419 the Glorious Model O, O- and D. 420 421config HID_HOLTEK 422 tristate "Holtek HID devices" 423 depends on USB_HID 424 help 425 Support for Holtek based devices: 426 - Holtek On Line Grip based game controller 427 - Trust GXT 18 Gaming Keyboard 428 - Sharkoon Drakonia / Perixx MX-2000 gaming mice 429 - Tracer Sniper TRM-503 / NOVA Gaming Slider X200 / 430 Zalman ZM-GM1 431 - SHARKOON DarkGlider Gaming mouse 432 - LEETGION Hellion Gaming Mouse 433 434config HOLTEK_FF 435 bool "Holtek On Line Grip force feedback support" 436 depends on HID_HOLTEK 437 select INPUT_FF_MEMLESS 438 help 439 Say Y here if you have a Holtek On Line Grip based game controller 440 and want to have force feedback support for it. 441 442config HID_VIVALDI_COMMON 443 tristate 444 help 445 ChromeOS Vivaldi HID parsing support library. This is a hidden 446 option so that drivers can use common code to parse the HID 447 descriptors for vivaldi function row keymap. 448 449config HID_GOODIX_SPI 450 tristate "Goodix GT7986U SPI HID touchscreen" 451 depends on SPI_MASTER 452 help 453 Support for Goodix GT7986U SPI HID touchscreen device. 454 455config HID_GOOGLE_HAMMER 456 tristate "Google Hammer Keyboard" 457 select HID_VIVALDI_COMMON 458 select INPUT_VIVALDIFMAP 459 depends on USB_HID && LEDS_CLASS && CROS_EC 460 help 461 Say Y here if you have a Google Hammer device. 462 463config HID_GOOGLE_STADIA_FF 464 tristate "Google Stadia force feedback" 465 select INPUT_FF_MEMLESS 466 help 467 Say Y here if you want to enable force feedback support for the Google 468 Stadia controller. 469 470config HID_VIVALDI 471 tristate "Vivaldi Keyboard" 472 select HID_VIVALDI_COMMON 473 select INPUT_VIVALDIFMAP 474 help 475 Say Y here if you want to enable support for Vivaldi keyboards. 476 477 Vivaldi keyboards use a vendor-specific (Google) HID usage to report 478 how the keys in the top row are physically ordered. 479 480config HID_GT683R 481 tristate "MSI GT68xR LED support" 482 depends on LEDS_CLASS && USB_HID 483 help 484 Say Y here if you want to enable support for the three MSI GT68xR LEDs 485 486 This driver support following modes: 487 - Normal: LEDs are fully on when enabled 488 - Audio: LEDs brightness depends on sound level 489 - Breathing: LEDs brightness varies at human breathing rate 490 491 Currently the following devices are know to be supported: 492 - MSI GT683R 493 494config HID_KEYTOUCH 495 tristate "Keytouch HID devices" 496 help 497 Support for Keytouch HID devices not fully compliant with 498 the specification. Currently supported: 499 - Keytouch IEC 60945 500 501config HID_KYE 502 tristate "KYE/Genius devices" 503 help 504 Support for KYE/Genius devices not fully compliant with HID standard: 505 - Ergo Mouse 506 - EasyPen i405X tablet 507 - MousePen i608X tablet 508 - EasyPen M610X tablet 509 510config HID_KYSONA 511 tristate "Kysona devices" 512 depends on USB_HID 513 help 514 Support for Kysona mice. 515 516 Say Y here if you have a Kysona M600 mouse 517 and want to be able to read its battery capacity. 518 519config HID_UCLOGIC 520 tristate "UC-Logic" 521 depends on USB_HID 522 help 523 Support for UC-Logic and Huion tablets. 524 525config HID_WALTOP 526 tristate "Waltop" 527 help 528 Support for Waltop tablets. 529 530config HID_VIEWSONIC 531 tristate "ViewSonic/Signotec" 532 help 533 Support for ViewSonic/Signotec PD1011 signature pad. 534 535config HID_VRC2 536 tristate "VRC-2 Car Controller" 537 depends on HID 538 help 539 Support for VRC-2 which is a 2-axis controller often used in 540 car simulators. 541 542 To compile this driver as a module, choose M here: the 543 module will be called hid-vrc2. 544 545config HID_XIAOMI 546 tristate "Xiaomi" 547 help 548 Adds support for side buttons of Xiaomi Mi Dual Mode Wireless 549 Mouse Silent Edition. 550 551config HID_GYRATION 552 tristate "Gyration remote control" 553 help 554 Support for Gyration remote control. 555 556config HID_ICADE 557 tristate "ION iCade arcade controller" 558 help 559 Support for the ION iCade arcade controller to work as a joystick. 560 561 To compile this driver as a module, choose M here: the 562 module will be called hid-icade. 563 564config HID_ITE 565 tristate "ITE devices" 566 default !EXPERT 567 help 568 Support for ITE devices not fully compliant with HID standard. 569 570config HID_JABRA 571 tristate "Jabra USB HID Driver" 572 help 573 Support for Jabra USB HID devices. 574 575 Prevents mapping of vendor defined HID usages to input events. Without 576 this driver HID reports from Jabra devices may incorrectly be seen as 577 mouse button events. 578 Say M here if you may ever plug in a Jabra USB device. 579 580config HID_TWINHAN 581 tristate "Twinhan IR remote control" 582 help 583 Support for Twinhan IR remote control. 584 585config HID_KENSINGTON 586 tristate "Kensington Slimblade Trackball" 587 default !EXPERT 588 help 589 Support for Kensington Slimblade Trackball. 590 591config HID_LCPOWER 592 tristate "LC-Power" 593 help 594 Support for LC-Power RC1000MCE RF remote control. 595 596config HID_LED 597 tristate "Simple RGB LED support" 598 depends on LEDS_CLASS 599 help 600 Support for simple RGB LED devices. Currently supported are: 601 - Riso Kagaku Webmail Notifier 602 - Dream Cheeky Webmail Notifier and Friends Alert 603 - ThingM blink(1) 604 - Delcom Visual Signal Indicator Generation 2 605 - Greynut Luxafor 606 607 To compile this driver as a module, choose M here: the 608 module will be called hid-led. 609 610config HID_LENOVO 611 tristate "Lenovo / Thinkpad devices" 612 select NEW_LEDS 613 select LEDS_CLASS 614 help 615 Support for IBM/Lenovo devices that are not fully compliant with HID standard. 616 617 Say Y if you want support for horizontal scrolling of the IBM/Lenovo 618 Scrollpoint mice or the non-compliant features of the Lenovo Thinkpad 619 standalone keyboards, e.g: 620 - ThinkPad USB Keyboard with TrackPoint (supports extra LEDs and trackpoint 621 configuration) 622 - ThinkPad Compact Bluetooth Keyboard with TrackPoint (supports Fn keys) 623 - ThinkPad Compact USB Keyboard with TrackPoint (supports Fn keys) 624 625config HID_LETSKETCH 626 tristate "Letsketch WP9620N tablets" 627 depends on USB_HID 628 help 629 Driver for the LetSketch / VSON WP9620N drawing tablet. This 630 drawing tablet is also sold under other brand names such as Case U, 631 presumably this driver will work for all of them. But it has only been 632 tested with a LetSketch WP9620N model. 633 634 These tablets also work without a special HID driver, but then only 635 part of the active area works and both the pad and stylus buttons are 636 hardwired to special key-combos. E.g. the 2 stylus buttons send right 637 mouse clicks / resp. "e" key presses. 638 639config HID_LOGITECH 640 tristate "Logitech devices" 641 depends on USB_HID 642 depends on LEDS_CLASS 643 depends on LEDS_CLASS_MULTICOLOR 644 default !EXPERT 645 help 646 Support for Logitech devices that are not fully compliant with HID standard. 647 648config HID_LOGITECH_DJ 649 tristate "Logitech receivers full support" 650 depends on USB_HID 651 depends on HIDRAW 652 depends on HID_LOGITECH 653 select HID_LOGITECH_HIDPP 654 help 655 Say Y if you want support for Logitech receivers and devices. 656 Logitech receivers are capable of pairing multiple Logitech compliant 657 devices to the same receiver. Without this driver it will be handled by 658 generic USB_HID driver and all incoming events will be multiplexed 659 into a single mouse and a single keyboard device. 660 661config HID_LOGITECH_HIDPP 662 tristate "Logitech HID++ devices support" 663 depends on HID_LOGITECH 664 select POWER_SUPPLY 665 help 666 Support for Logitech devices relying on the HID++ Logitech specification 667 668 Say Y if you want support for Logitech devices relying on the HID++ 669 specification. Such devices are the various Logitech Touchpads (T650, 670 T651, TK820), some mice (Zone Touch mouse), or even keyboards (Solar 671 Keyboard). 672 673config LOGITECH_FF 674 bool "Logitech force feedback support" 675 depends on HID_LOGITECH 676 select INPUT_FF_MEMLESS 677 help 678 Say Y here if you have one of these devices: 679 - Logitech WingMan Cordless RumblePad 680 - Logitech WingMan Cordless RumblePad 2 681 - Logitech WingMan Force 3D 682 683 and if you want to enable force feedback for them. 684 Note: if you say N here, this device will still be supported, but without 685 force feedback. 686 687config LOGIRUMBLEPAD2_FF 688 bool "Logitech force feedback support (variant 2)" 689 depends on HID_LOGITECH 690 select INPUT_FF_MEMLESS 691 help 692 Say Y here if you want to enable force feedback support for: 693 - Logitech RumblePad 694 - Logitech Rumblepad 2 695 - Logitech Formula Vibration Feedback Wheel 696 697config LOGIG940_FF 698 bool "Logitech Flight System G940 force feedback support" 699 depends on HID_LOGITECH 700 select INPUT_FF_MEMLESS 701 help 702 Say Y here if you want to enable force feedback support for Logitech 703 Flight System G940 devices. 704 705config LOGIWHEELS_FF 706 bool "Logitech wheels configuration and force feedback support" 707 depends on HID_LOGITECH 708 select INPUT_FF_MEMLESS 709 default LOGITECH_FF 710 help 711 Say Y here if you want to enable force feedback and range setting(*) 712 support for following Logitech wheels: 713 - Logitech G25 (*) 714 - Logitech G27 (*) 715 - Logitech G29 (*) 716 - Logitech Driving Force 717 - Logitech Driving Force Pro (*) 718 - Logitech Driving Force GT (*) 719 - Logitech Driving Force EX/RX 720 - Logitech Driving Force Wireless 721 - Logitech Speed Force Wireless 722 - Logitech MOMO Force 723 - Logitech MOMO Racing Force 724 - Logitech Formula Force GP 725 - Logitech Formula Force EX/RX 726 - Logitech Wingman Formula Force GP 727 728config HID_MAGICMOUSE 729 tristate "Apple Magic Mouse/Trackpad multi-touch support" 730 help 731 Support for the Apple Magic Mouse/Trackpad multi-touch. 732 733 Say Y here if you want support for the multi-touch features of the 734 Apple Wireless "Magic" Mouse and the Apple Wireless "Magic" Trackpad. 735 736config HID_MALTRON 737 tristate "Maltron L90 keyboard" 738 help 739 Adds support for the volume up, volume down, mute, and play/pause buttons 740 of the Maltron L90 keyboard. 741 742config HID_MAYFLASH 743 tristate "Mayflash game controller adapter force feedback" 744 select INPUT_FF_MEMLESS 745 help 746 Say Y here if you have HJZ Mayflash PS3 game controller adapters 747 and want to enable force feedback support. 748 749config HID_MEGAWORLD_FF 750 tristate "Mega World based game controller force feedback support" 751 depends on USB_HID 752 select INPUT_FF_MEMLESS 753 help 754 Say Y here if you have a Mega World based game controller and want 755 to have force feedback support for it. 756 757config HID_REDRAGON 758 tristate "Redragon keyboards" 759 default !EXPERT 760 help 761 Support for Redragon keyboards that need fix-ups to work properly. 762 763config HID_MICROSOFT 764 tristate "Microsoft non-fully HID-compliant devices" 765 default !EXPERT 766 select INPUT_FF_MEMLESS 767 help 768 Support for Microsoft devices that are not fully compliant with HID standard. 769 770config HID_MONTEREY 771 tristate "Monterey Genius KB29E keyboard" 772 default !EXPERT 773 help 774 Support for Monterey Genius KB29E. 775 776config HID_MULTITOUCH 777 tristate "HID Multitouch panels" 778 help 779 Generic support for HID multitouch panels. 780 781 Say Y here if you have one of the following devices: 782 - 3M PCT touch screens 783 - ActionStar dual touch panels 784 - Apple Touch Bar on x86 MacBook Pros 785 - Atmel panels 786 - Cando dual touch panels 787 - Chunghwa panels 788 - CJTouch panels 789 - CVTouch panels 790 - Cypress TrueTouch panels 791 - Elan Microelectronics touch panels 792 - Elo TouchSystems IntelliTouch Plus panels 793 - GeneralTouch 'Sensing Win7-TwoFinger' panels 794 - GoodTouch panels 795 - Hanvon dual touch panels 796 - Ilitek dual touch panels 797 - IrTouch Infrared USB panels 798 - LG Display panels (Dell ST2220Tc) 799 - Lumio CrystalTouch panels 800 - MosArt dual-touch panels 801 - Panasonic multitouch panels 802 - PenMount dual touch panels 803 - Perixx Peripad 701 touchpad 804 - PixArt optical touch screen 805 - Pixcir dual touch panels 806 - Quanta panels 807 - eGalax dual-touch panels, including the Joojoo and Wetab tablets 808 - SiS multitouch panels 809 - Stantum multitouch panels 810 - Touch International Panels 811 - Unitec Panels 812 - Wistron optical touch panels 813 - XAT optical touch panels 814 - Xiroku optical touch panels 815 - Zytronic touch panels 816 817 If unsure, say N. 818 819 To compile this driver as a module, choose M here: the 820 module will be called hid-multitouch. 821 822config HID_NINTENDO 823 tristate "Nintendo Joy-Con, NSO, and Pro Controller support" 824 depends on NEW_LEDS 825 depends on LEDS_CLASS 826 select POWER_SUPPLY 827 help 828 Adds support for the Nintendo Switch Joy-Cons, NSO, Pro Controller. 829 All controllers support bluetooth, and the Pro Controller also supports 830 its USB mode. This also includes support for the Nintendo Switch Online 831 Controllers which include the NES, Genesis, SNES, and N64 controllers. 832 833 To compile this driver as a module, choose M here: the 834 module will be called hid-nintendo. 835 836config NINTENDO_FF 837 bool "Nintendo Switch controller force feedback support" 838 depends on HID_NINTENDO 839 select INPUT_FF_MEMLESS 840 help 841 Say Y here if you have a Nintendo Switch controller and want to enable 842 force feedback support for it. This works for both joy-cons, the pro 843 controller, and the NSO N64 controller. For the pro controller, both 844 rumble motors can be controlled individually. 845 846config HID_NTI 847 tristate "NTI keyboard adapters" 848 help 849 Support for the "extra" Sun keyboard keys on keyboards attached 850 through Network Technologies USB-SUN keyboard adapters. 851 852config HID_NTRIG 853 tristate "N-Trig touch screen" 854 depends on USB_HID 855 help 856 Support for N-Trig touch screen. 857 858config HID_NVIDIA_SHIELD 859 tristate "NVIDIA SHIELD devices" 860 depends on USB_HID 861 depends on BT_HIDP 862 depends on LEDS_CLASS 863 select POWER_SUPPLY 864 help 865 Support for NVIDIA SHIELD accessories. 866 867 Supported devices: 868 - Thunderstrike (NVIDIA SHIELD Controller 2017) 869 870config NVIDIA_SHIELD_FF 871 bool "NVIDIA SHIELD force feedback support" 872 depends on HID_NVIDIA_SHIELD 873 select INPUT_FF_MEMLESS 874 help 875 Say Y here if you would like to enable force feedback support for 876 NVIDIA SHIELD accessories with haptics capabilities. 877 878config HID_ORTEK 879 tristate "Ortek PKB-1700/WKB-2000/Skycable wireless keyboard and mouse trackpad" 880 help 881 There are certain devices which have LogicalMaximum wrong in the keyboard 882 usage page of their report descriptor. The most prevailing ones so far 883 are manufactured by Ortek, thus the name of the driver. Currently 884 supported devices by this driver are 885 886 - Ortek PKB-1700 887 - Ortek WKB-2000 888 - Skycable wireless presenter 889 890config HID_PANTHERLORD 891 tristate "Pantherlord/GreenAsia game controller" 892 help 893 Say Y here if you have a PantherLord/GreenAsia based game controller 894 or adapter. 895 896config PANTHERLORD_FF 897 bool "Pantherlord force feedback support" 898 depends on HID_PANTHERLORD 899 select INPUT_FF_MEMLESS 900 help 901 Say Y here if you have a PantherLord/GreenAsia based game controller 902 or adapter and want to enable force feedback support for it. 903 904config HID_PENMOUNT 905 tristate "Penmount touch device" 906 depends on USB_HID 907 help 908 This selects a driver for the PenMount 6000 touch controller. 909 910 The driver works around a problem in the report descript allowing 911 the userspace to touch events instead of mouse events. 912 913 Say Y here if you have a Penmount based touch controller. 914 915config HID_PETALYNX 916 tristate "Petalynx Maxter remote control" 917 help 918 Support for Petalynx Maxter remote control. 919 920config HID_PICOLCD 921 tristate "PicoLCD (graphic version)" 922 help 923 This provides support for Minibox PicoLCD devices, currently 924 only the graphical ones are supported. 925 926 This includes support for the following device features: 927 - Keypad 928 - Switching between Firmware and Flash mode 929 - EEProm / Flash access (via debugfs) 930 Features selectively enabled: 931 - Framebuffer for monochrome 256x64 display 932 - Backlight control 933 - Contrast control 934 - General purpose outputs 935 Features that are not (yet) supported: 936 - IR 937 938config HID_PICOLCD_FB 939 bool "Framebuffer support" if EXPERT 940 default !EXPERT 941 depends on HID_PICOLCD 942 depends on HID_PICOLCD=FB || FB=y 943 select FB_SYSMEM_HELPERS_DEFERRED 944 help 945 Provide access to PicoLCD's 256x64 monochrome display via a 946 framebuffer device. 947 948config HID_PICOLCD_BACKLIGHT 949 bool "Backlight control" if EXPERT 950 default !EXPERT 951 depends on HID_PICOLCD 952 depends on HID_PICOLCD=BACKLIGHT_CLASS_DEVICE || BACKLIGHT_CLASS_DEVICE=y 953 help 954 Provide access to PicoLCD's backlight control via backlight 955 class. 956 957config HID_PICOLCD_LCD 958 bool "Contrast control" if EXPERT 959 default !EXPERT 960 depends on HID_PICOLCD 961 depends on HID_PICOLCD=LCD_CLASS_DEVICE || LCD_CLASS_DEVICE=y 962 help 963 Provide access to PicoLCD's LCD contrast via lcd class. 964 965config HID_PICOLCD_LEDS 966 bool "GPO via leds class" if EXPERT 967 default !EXPERT 968 depends on HID_PICOLCD 969 depends on HID_PICOLCD=LEDS_CLASS || LEDS_CLASS=y 970 help 971 Provide access to PicoLCD's GPO pins via leds class. 972 973config HID_PICOLCD_CIR 974 bool "CIR via RC class" if EXPERT 975 default !EXPERT 976 depends on HID_PICOLCD 977 depends on HID_PICOLCD=RC_CORE || RC_CORE=y 978 help 979 Provide access to PicoLCD's CIR interface via remote control (LIRC). 980 981config HID_PLANTRONICS 982 tristate "Plantronics USB HID Driver" 983 help 984 Provides HID support for Plantronics USB audio devices. 985 Correctly maps vendor unique volume up/down HID usages to 986 KEY_VOLUMEUP and KEY_VOLUMEDOWN events and prevents core mapping 987 of other vendor unique HID usages to random mouse events. 988 989 Say M here if you may ever plug in a Plantronics USB audio device. 990 991config HID_PLAYSTATION 992 tristate "PlayStation HID Driver" 993 depends on LEDS_CLASS_MULTICOLOR 994 select CRC32 995 select POWER_SUPPLY 996 help 997 Provides support for Sony PS4/PS5 controllers including support for 998 its special functionalities e.g. touchpad, lights and motion 999 sensors. 1000 1001config PLAYSTATION_FF 1002 bool "PlayStation force feedback support" 1003 depends on HID_PLAYSTATION 1004 select INPUT_FF_MEMLESS 1005 help 1006 Say Y here if you would like to enable force feedback support for 1007 PlayStation game controllers. 1008 1009config HID_PXRC 1010 tristate "PhoenixRC HID Flight Controller" 1011 depends on HID 1012 help 1013 Support for PhoenixRC HID Flight Controller, a 8-axis flight controller. 1014 1015 To compile this driver as a module, choose M here: the 1016 module will be called hid-pxrc. 1017 1018config HID_RAPOO 1019 tristate "Rapoo non-fully HID-compliant devices" 1020 help 1021 Support for Rapoo devices that are not fully compliant with the 1022 HID standard. 1023 1024config HID_RAZER 1025 tristate "Razer non-fully HID-compliant devices" 1026 help 1027 Support for Razer devices that are not fully compliant with the 1028 HID standard. 1029 1030config HID_PRIMAX 1031 tristate "Primax non-fully HID-compliant devices" 1032 help 1033 Support for Primax devices that are not fully compliant with the 1034 HID standard. 1035 1036config HID_RETRODE 1037 tristate "Retrode 2 USB adapter for vintage video games" 1038 depends on USB_HID 1039 help 1040 Support for 1041 * Retrode 2 cartridge and controller adapter 1042 1043config HID_ROCCAT 1044 tristate "Roccat device support" 1045 depends on USB_HID 1046 help 1047 Support for Roccat devices. 1048 Say Y here if you have a Roccat mouse or keyboard and want 1049 support for its special functionalities. 1050 1051config HID_SAITEK 1052 tristate "Saitek (Mad Catz) non-fully HID-compliant devices" 1053 help 1054 Support for Saitek devices that are not fully compliant with the 1055 HID standard. 1056 1057 Supported devices: 1058 - PS1000 Dual Analog Pad 1059 - Saitek R.A.T.7, R.A.T.9, M.M.O.7 Gaming Mice 1060 - Mad Catz R.A.T.5, R.A.T.9 Gaming Mice 1061 1062config HID_SAMSUNG 1063 tristate "Samsung InfraRed remote control or keyboards" 1064 depends on USB_HID 1065 help 1066 Support for Samsung InfraRed remote control or keyboards. 1067 1068config HID_SEMITEK 1069 tristate "Semitek USB keyboards" 1070 help 1071 Support for Semitek USB keyboards that are not fully compliant 1072 with the HID standard. 1073 1074 There are many variants, including: 1075 - GK61, GK64, GK68, GK84, GK96, etc. 1076 - SK61, SK64, SK68, SK84, SK96, etc. 1077 - Dierya DK61/DK66 1078 - Tronsmart TK09R 1079 - Woo-dy 1080 - X-Bows Nature/Knight 1081 1082config HID_SIGMAMICRO 1083 tristate "SiGma Micro-based keyboards" 1084 depends on USB_HID 1085 help 1086 Support for keyboards that use the SiGma Micro (a.k.a SigmaChip) IC. 1087 1088 Supported devices: 1089 - Landslides KR-700 1090 - Rapoo V500 1091 1092config HID_SONY 1093 tristate "Sony PS2/3/4 accessories" 1094 depends on USB_HID 1095 depends on NEW_LEDS 1096 depends on LEDS_CLASS 1097 select POWER_SUPPLY 1098 select CRC32 1099 help 1100 Support for 1101 1102 * Sony PS3 6-axis controllers 1103 * Sony PS4 DualShock 4 controllers 1104 * Buzz controllers 1105 * Sony PS3 Blue-ray Disk Remote Control (Bluetooth) 1106 * Logitech Harmony adapter for Sony Playstation 3 (Bluetooth) 1107 * Guitar Hero Live PS3, Wii U and PS4 guitar dongles 1108 * Guitar Hero PS3 and PC guitar dongles 1109 1110config SONY_FF 1111 bool "Sony PS2/3/4 accessories force feedback support" 1112 depends on HID_SONY 1113 select INPUT_FF_MEMLESS 1114 help 1115 Say Y here if you have a Sony PS2/3/4 accessory and want to enable 1116 force feedback support for it. 1117 1118config HID_SPEEDLINK 1119 tristate "Speedlink VAD Cezanne mouse support" 1120 help 1121 Support for Speedlink Vicious and Divine Cezanne mouse. 1122 1123config HID_STEAM 1124 tristate "Steam Controller/Deck support" 1125 select POWER_SUPPLY 1126 help 1127 Say Y here if you have a Steam Controller or Deck if you want to use it 1128 without running the Steam Client. It supports both the wired and 1129 the wireless adaptor. 1130 1131config STEAM_FF 1132 bool "Steam Deck force feedback support" 1133 depends on HID_STEAM 1134 select INPUT_FF_MEMLESS 1135 help 1136 Say Y here if you want to enable force feedback support for the Steam 1137 Deck. 1138 1139config HID_STEELSERIES 1140 tristate "Steelseries devices support" 1141 depends on USB_HID 1142 help 1143 Support for Steelseries SRW-S1 steering wheel, and the Steelseries 1144 Arctis 1 Wireless for XBox headset. 1145 1146config HID_SUNPLUS 1147 tristate "Sunplus wireless desktop" 1148 help 1149 Support for Sunplus wireless desktop. 1150 1151config HID_RMI 1152 tristate "Synaptics RMI4 device support" 1153 select RMI4_CORE 1154 select RMI4_F03 1155 select RMI4_F11 1156 select RMI4_F12 1157 select RMI4_F30 1158 select RMI4_F3A 1159 help 1160 Support for Synaptics RMI4 touchpads. 1161 Say Y here if you have a Synaptics RMI4 touchpads over i2c-hid or usbhid 1162 and want support for its special functionalities. 1163 1164config HID_GREENASIA 1165 tristate "GreenAsia (Product ID 0x12) game controller support" 1166 help 1167 Say Y here if you have a GreenAsia (Product ID 0x12) based game 1168 controller or adapter. 1169 1170config GREENASIA_FF 1171 bool "GreenAsia (Product ID 0x12) force feedback support" 1172 depends on HID_GREENASIA 1173 select INPUT_FF_MEMLESS 1174 help 1175 Say Y here if you have a GreenAsia (Product ID 0x12) based game controller 1176 (like MANTA Warrior MM816 and SpeedLink Strike2 SL-6635) or adapter 1177 and want to enable force feedback support for it. 1178 1179config HID_HYPERV_MOUSE 1180 tristate "Microsoft Hyper-V mouse driver" 1181 depends on HYPERV_VMBUS 1182 help 1183 Select this option to enable the Hyper-V mouse driver. 1184 1185config HID_SMARTJOYPLUS 1186 tristate "SmartJoy PLUS PS2/USB adapter support" 1187 help 1188 Support for SmartJoy PLUS PS2/USB adapter, Super Dual Box, 1189 Super Joy Box 3 Pro, Super Dual Box Pro, and Super Joy Box 5 Pro. 1190 1191 Note that DDR (Dance Dance Revolution) mode is not supported, nor 1192 is pressure sensitive buttons on the pro models. 1193 1194config SMARTJOYPLUS_FF 1195 bool "SmartJoy PLUS PS2/USB adapter force feedback support" 1196 depends on HID_SMARTJOYPLUS 1197 select INPUT_FF_MEMLESS 1198 help 1199 Say Y here if you have a SmartJoy PLUS PS2/USB adapter and want to 1200 enable force feedback support for it. 1201 1202config HID_TIVO 1203 tristate "TiVo Slide Bluetooth remote control support" 1204 help 1205 Say Y if you have a TiVo Slide Bluetooth remote control. 1206 1207config HID_TOPSEED 1208 tristate "TopSeed Cyberlink, BTC Emprex, Conceptronic remote control support" 1209 help 1210 Say Y if you have a TopSeed Cyberlink or BTC Emprex or Conceptronic 1211 CLLRCMCE remote control. 1212 1213config HID_TOPRE 1214 tristate "Topre REALFORCE keyboards" 1215 depends on HID 1216 help 1217 Say Y for N-key rollover support on Topre REALFORCE R2 108/87 key and 1218 Topre REALFORCE R3S 87 key keyboards. 1219 1220config HID_THINGM 1221 tristate "ThingM blink(1) USB RGB LED" 1222 depends on LEDS_CLASS 1223 select HID_LED 1224 help 1225 Support for the ThingM blink(1) USB RGB LED. This driver has been 1226 merged into the generic hid led driver. Config symbol HID_THINGM 1227 just selects HID_LED and will be removed soon. 1228 1229config HID_THRUSTMASTER 1230 tristate "ThrustMaster devices support" 1231 depends on USB_HID 1232 help 1233 Say Y here if you have a THRUSTMASTER FireStore Dual Power 2, 1234 a THRUSTMASTER Ferrari GT Rumble Wheel or Thrustmaster FFB 1235 Wheel (T150RS, T300RS, T300 Ferrari Alcantara Edition, T500RS). 1236 1237config THRUSTMASTER_FF 1238 bool "ThrustMaster devices force feedback support" 1239 depends on HID_THRUSTMASTER 1240 select INPUT_FF_MEMLESS 1241 help 1242 Say Y here if you have a THRUSTMASTER FireStore Dual Power 2 or 3, 1243 a THRUSTMASTER Dual Trigger 3-in-1 or a THRUSTMASTER Ferrari GT 1244 Rumble Force or Force Feedback Wheel. 1245 1246config HID_UDRAW_PS3 1247 tristate "THQ PS3 uDraw tablet" 1248 help 1249 Say Y here if you want to use the THQ uDraw gaming tablet for 1250 the PS3. 1251 1252config HID_U2FZERO 1253 tristate "U2F Zero LED and RNG support" 1254 depends on USB_HID 1255 depends on LEDS_CLASS 1256 depends on HW_RANDOM 1257 help 1258 Support for the LED of the U2F Zero device. 1259 1260 U2F Zero supports custom commands for blinking the LED 1261 and getting data from the internal hardware RNG. 1262 The internal hardware can be used to feed the entropy pool. 1263 1264 U2F Zero only supports blinking its LED, so this driver doesn't 1265 allow setting the brightness to anything but 1, which will 1266 trigger a single blink and immediately reset back to 0. 1267 1268config HID_UNIVERSAL_PIDFF 1269 tristate "universal-pidff: extended USB PID driver compatibility and usage" 1270 depends on USB_HID 1271 depends on HID_PID 1272 help 1273 Extended PID support for selected devices. 1274 1275 Contains report fixups, extended usable button range and 1276 pidff quirk management to extend compatibility with slightly 1277 non-compliant USB PID devices and better fuzz/flat values for 1278 high precision direct drive devices. 1279 1280 Supports Moza Racing, Cammus, VRS, FFBeast and more. 1281 1282config HID_WACOM 1283 tristate "Wacom Intuos/Graphire tablet support (USB)" 1284 depends on USB_HID 1285 select POWER_SUPPLY 1286 select NEW_LEDS 1287 select LEDS_CLASS 1288 select LEDS_TRIGGERS 1289 help 1290 Say Y here if you want to use the USB or BT version of the Wacom Intuos 1291 or Graphire tablet. 1292 1293 To compile this driver as a module, choose M here: the 1294 module will be called wacom. 1295 1296config HID_WIIMOTE 1297 tristate "Nintendo Wii / Wii U peripherals" 1298 depends on LEDS_CLASS 1299 select POWER_SUPPLY 1300 select INPUT_FF_MEMLESS 1301 help 1302 Support for Nintendo Wii and Wii U Bluetooth peripherals. Supported 1303 devices are the Wii Remote and its extension devices, but also devices 1304 based on the Wii Remote like the Wii U Pro Controller or the 1305 Wii Balance Board. 1306 1307 Support for all official Nintendo extensions is available, however, 3rd 1308 party extensions might not be supported. Please report these devices to: 1309 http://github.com/dvdhrm/xwiimote/issues 1310 1311 Other Nintendo Wii U peripherals that are IEEE 802.11 based (including 1312 the Wii U Gamepad) might be supported in the future. But currently 1313 support is limited to Bluetooth based devices. 1314 1315 If unsure, say N. 1316 1317 To compile this driver as a module, choose M here: the 1318 module will be called hid-wiimote. 1319 1320config HID_WINWING 1321 tristate "WinWing Orion2 throttle support" 1322 depends on USB_HID 1323 depends on NEW_LEDS 1324 depends on LEDS_CLASS 1325 help 1326 Support for WinWing Orion2 throttle base with the following grips: 1327 1328 * TGRIP-15E 1329 * TGRIP-15EX 1330 * TGRIP-16EX 1331 * TGRIP-18 1332 1333 This driver enables all buttons and switches on the throttle base. 1334 1335 To compile this driver as a module, choose M here: the 1336 module will be called hid-winwing. 1337 1338config HID_XINMO 1339 tristate "Xin-Mo non-fully compliant devices" 1340 help 1341 Support for Xin-Mo devices that are not fully compliant with the HID 1342 standard. Currently only supports the Xin-Mo Dual Arcade. Say Y here 1343 if you have a Xin-Mo Dual Arcade controller. 1344 1345config HID_ZEROPLUS 1346 tristate "Zeroplus based game controller support" 1347 help 1348 Say Y here if you have a Zeroplus based game controller. 1349 1350config ZEROPLUS_FF 1351 bool "Zeroplus based game controller force feedback support" 1352 depends on HID_ZEROPLUS 1353 select INPUT_FF_MEMLESS 1354 help 1355 Say Y here if you have a Zeroplus based game controller and want 1356 to have force feedback support for it. 1357 1358config HID_ZYDACRON 1359 tristate "Zydacron remote control support" 1360 help 1361 Support for Zydacron remote control. 1362 1363config HID_SENSOR_HUB 1364 tristate "HID Sensors framework support" 1365 depends on HAS_IOMEM 1366 select MFD_CORE 1367 default n 1368 help 1369 Support for HID Sensor framework. This creates a MFD instance 1370 for a sensor hub and identifies all the sensors connected to it. 1371 Each sensor is registered as a MFD cell, so that sensor specific 1372 processing can be done in a separate driver. Each sensor 1373 drivers can use the service provided by this driver to register 1374 for events and handle data streams. Each sensor driver can format 1375 data and present to user mode using input or IIO interface. 1376 1377config HID_SENSOR_CUSTOM_SENSOR 1378 tristate "HID Sensors hub custom sensor support" 1379 depends on HID_SENSOR_HUB 1380 default n 1381 help 1382 HID Sensor hub specification allows definition of some custom and 1383 generic sensors. Unlike other HID sensors, they can't be exported 1384 via Linux IIO because of custom fields. This is up to the manufacturer 1385 to decide how to interpret these special sensor ids and process in 1386 the user space. Currently some manufacturers are using these ids for 1387 sensor calibration and debugging other sensors. Manufacturers 1388 shouldn't use these special custom sensor ids to export any of the 1389 standard sensors. 1390 Select this config option for custom/generic sensor support. 1391 1392config HID_ALPS 1393 tristate "Alps HID device support" 1394 help 1395 Support for Alps I2C HID touchpads and StickPointer. 1396 Say Y here if you have a Alps touchpads over i2c-hid or usbhid 1397 and want support for its special functionalities. 1398 1399config HID_MCP2200 1400 tristate "Microchip MCP2200 HID USB-to-GPIO bridge" 1401 depends on USB_HID && GPIOLIB 1402 help 1403 Provides GPIO functionality over USB-HID through MCP2200 device. 1404 1405 To compile this driver as a module, choose M here: the module 1406 will be called hid-mcp2200.ko. 1407 1408config HID_MCP2221 1409 tristate "Microchip MCP2221 HID USB-to-I2C/SMbus host support" 1410 depends on USB_HID && I2C 1411 imply GPIOLIB 1412 imply IIO 1413 help 1414 Provides I2C and SMBUS host adapter functionality over USB-HID 1415 through MCP2221 device. 1416 1417 To compile this driver as a module, choose M here: the module 1418 will be called hid-mcp2221.ko. 1419 1420config HID_KUNIT_TEST 1421 tristate "KUnit tests for HID" if !KUNIT_ALL_TESTS 1422 depends on KUNIT 1423 depends on HID_BATTERY_STRENGTH 1424 depends on HID_UCLOGIC 1425 default KUNIT_ALL_TESTS 1426 help 1427 This builds unit tests for HID. This option is not useful for 1428 distributions or general kernels, but only for kernel 1429 developers working on HID and associated drivers. 1430 1431 For more information on KUnit and unit tests in general, 1432 please refer to the KUnit documentation in 1433 Documentation/dev-tools/kunit/. 1434 1435 If in doubt, say "N". 1436 1437endmenu 1438 1439source "drivers/hid/bpf/Kconfig" 1440 1441source "drivers/hid/i2c-hid/Kconfig" 1442 1443source "drivers/hid/intel-ish-hid/Kconfig" 1444 1445source "drivers/hid/amd-sfh-hid/Kconfig" 1446 1447source "drivers/hid/surface-hid/Kconfig" 1448 1449source "drivers/hid/intel-thc-hid/Kconfig" 1450 1451endif # HID 1452 1453# USB support may be used with HID disabled 1454 1455source "drivers/hid/usbhid/Kconfig" 1456 1457endif # HID_SUPPORT 1458