2006-12-08 18:41:30 +01:00
|
|
|
#
|
|
|
|
# HID driver configuration
|
|
|
|
#
|
2007-04-30 13:27:48 +02:00
|
|
|
menuconfig HID_SUPPORT
|
|
|
|
bool "HID Devices"
|
2006-12-08 18:41:30 +01:00
|
|
|
depends on INPUT
|
2007-04-30 13:27:48 +02:00
|
|
|
default y
|
2007-08-18 12:56:21 +02:00
|
|
|
---help---
|
|
|
|
Say Y here to get to see options for various computer-human interface
|
|
|
|
device drivers. This option alone does not add any kernel code.
|
|
|
|
|
|
|
|
If you say N, all options in this submenu will be skipped and disabled.
|
2007-04-30 13:27:48 +02:00
|
|
|
|
|
|
|
if HID_SUPPORT
|
2006-12-08 18:41:30 +01:00
|
|
|
|
|
|
|
config HID
|
|
|
|
tristate "Generic HID support"
|
2006-12-22 18:09:16 +01:00
|
|
|
depends on INPUT
|
2006-12-08 18:41:30 +01:00
|
|
|
default y
|
|
|
|
---help---
|
2007-01-03 23:03:14 +01:00
|
|
|
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,
|
|
|
|
mice, tablets, etc). This option compiles into kernel the generic
|
|
|
|
HID layer code (parser, usages, etc.), which can then be used by
|
|
|
|
transport-specific HID implementation (like USB or Bluetooth).
|
|
|
|
|
|
|
|
For docs and specs, see http://www.usb.org/developers/hidpage/
|
|
|
|
|
2009-01-06 10:15:27 +01:00
|
|
|
If unsure, say Y.
|
2006-12-08 18:41:30 +01:00
|
|
|
|
HID: hid-input: add support for HID devices reporting Battery Strength
Some HID devices, such as my Bluetooth mouse, report their battery
strength as an event. Rather than passing it through as a strange
absolute input event, this patch registers it with the power_supply
subsystem as a battery, so that the device's Battery Strength can be
reported to usermode.
The battery appears in sysfs names
/sys/class/power_supply/hid-<UNIQ>-battery, and it is a child of the
battery-containing device, so it should be clear what it's the battery of.
Unfortunately on my current Fedora 16 system, while the battery does
appear in the UI, it is listed as a Laptop Battery with 0% charge (since
it ignores the "capacity" property of the battery and instead computes
it from the "energy*" fields, which we can't supply given the limited
information contained within the HID Report).
Still, this patch is the first step.
Signed-off-by: Jeremy Fitzhardinge <jeremy@goop.org>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
2011-11-23 09:49:14 +01:00
|
|
|
config HID_BATTERY_STRENGTH
|
|
|
|
bool
|
2011-12-16 23:35:55 +01:00
|
|
|
depends on HID && POWER_SUPPLY && HID == POWER_SUPPLY
|
HID: hid-input: add support for HID devices reporting Battery Strength
Some HID devices, such as my Bluetooth mouse, report their battery
strength as an event. Rather than passing it through as a strange
absolute input event, this patch registers it with the power_supply
subsystem as a battery, so that the device's Battery Strength can be
reported to usermode.
The battery appears in sysfs names
/sys/class/power_supply/hid-<UNIQ>-battery, and it is a child of the
battery-containing device, so it should be clear what it's the battery of.
Unfortunately on my current Fedora 16 system, while the battery does
appear in the UI, it is listed as a Laptop Battery with 0% charge (since
it ignores the "capacity" property of the battery and instead computes
it from the "energy*" fields, which we can't supply given the limited
information contained within the HID Report).
Still, this patch is the first step.
Signed-off-by: Jeremy Fitzhardinge <jeremy@goop.org>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
2011-11-23 09:49:14 +01:00
|
|
|
default y
|
|
|
|
|
2007-05-14 09:57:40 +02:00
|
|
|
config HIDRAW
|
|
|
|
bool "/dev/hidraw raw HID device support"
|
|
|
|
depends on HID
|
|
|
|
---help---
|
|
|
|
Say Y here if you want to support HID devices (from the USB
|
|
|
|
specification standpoint) that aren't strictly user interface
|
|
|
|
devices, like monitor controls and Uninterruptable Power Supplies.
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
2007-03-08 16:47:49 +01:00
|
|
|
source "drivers/hid/usbhid/Kconfig"
|
|
|
|
|
2008-05-16 11:49:19 +02:00
|
|
|
menu "Special HID drivers"
|
|
|
|
depends on HID
|
|
|
|
|
2008-06-23 23:31:09 +02:00
|
|
|
config HID_A4TECH
|
2011-01-20 23:44:16 +01:00
|
|
|
tristate "A4 tech mice" if EXPERT
|
2008-06-23 23:31:09 +02:00
|
|
|
depends on USB_HID
|
2011-01-20 23:44:16 +01:00
|
|
|
default !EXPERT
|
2008-06-23 23:31:09 +02:00
|
|
|
---help---
|
|
|
|
Support for A4 tech X5 and WOP-35 / Trust 450L mice.
|
|
|
|
|
2011-03-11 09:27:34 +01:00
|
|
|
config HID_ACRUX
|
|
|
|
tristate "ACRUX game controller support"
|
2010-07-19 12:13:23 +02:00
|
|
|
depends on USB_HID
|
2011-03-11 09:27:34 +01:00
|
|
|
---help---
|
|
|
|
Say Y here if you want to enable support for ACRUX game controllers.
|
|
|
|
|
|
|
|
config HID_ACRUX_FF
|
2011-08-04 09:25:56 +02:00
|
|
|
bool "ACRUX force feedback support"
|
2011-03-11 09:27:34 +01:00
|
|
|
depends on HID_ACRUX
|
2010-07-19 12:13:23 +02:00
|
|
|
select INPUT_FF_MEMLESS
|
|
|
|
---help---
|
|
|
|
Say Y here if you want to enable force feedback support for ACRUX
|
|
|
|
game controllers.
|
|
|
|
|
2008-06-18 23:36:49 +02:00
|
|
|
config HID_APPLE
|
2011-01-20 23:44:16 +01:00
|
|
|
tristate "Apple {i,Power,Mac}Books" if EXPERT
|
2008-06-18 23:36:49 +02:00
|
|
|
depends on (USB_HID || BT_HIDP)
|
2011-01-20 23:44:16 +01:00
|
|
|
default !EXPERT
|
2008-06-18 23:36:49 +02:00
|
|
|
---help---
|
|
|
|
Support for some Apple devices which less or more break
|
|
|
|
HID specification.
|
|
|
|
|
2008-10-16 01:25:15 +02:00
|
|
|
Say Y here if you want support for keyboards of Apple iBooks, PowerBooks,
|
|
|
|
MacBooks, MacBook Pros and Apple Aluminum.
|
2008-06-18 23:36:49 +02:00
|
|
|
|
2008-06-24 23:24:57 +02:00
|
|
|
config HID_BELKIN
|
2011-01-20 23:44:16 +01:00
|
|
|
tristate "Belkin Flip KVM and Wireless keyboard" if EXPERT
|
2008-06-24 23:24:57 +02:00
|
|
|
depends on USB_HID
|
2011-01-20 23:44:16 +01:00
|
|
|
default !EXPERT
|
2008-06-24 23:24:57 +02:00
|
|
|
---help---
|
|
|
|
Support for Belkin Flip KVM and Wireless keyboard.
|
|
|
|
|
2008-06-24 20:42:25 +02:00
|
|
|
config HID_CHERRY
|
2011-01-20 23:44:16 +01:00
|
|
|
tristate "Cherry Cymotion keyboard" if EXPERT
|
2008-06-24 20:42:25 +02:00
|
|
|
depends on USB_HID
|
2011-01-20 23:44:16 +01:00
|
|
|
default !EXPERT
|
2008-06-24 20:42:25 +02:00
|
|
|
---help---
|
2008-10-16 01:25:15 +02:00
|
|
|
Support for Cherry Cymotion keyboard.
|
2008-06-24 20:42:25 +02:00
|
|
|
|
2008-06-24 22:48:52 +02:00
|
|
|
config HID_CHICONY
|
2011-01-20 23:44:16 +01:00
|
|
|
tristate "Chicony Tactical pad" if EXPERT
|
2008-06-24 22:48:52 +02:00
|
|
|
depends on USB_HID
|
2011-01-20 23:44:16 +01:00
|
|
|
default !EXPERT
|
2008-06-24 22:48:52 +02:00
|
|
|
---help---
|
|
|
|
Support for Chicony Tactical pad.
|
|
|
|
|
2010-05-12 15:18:59 +02:00
|
|
|
config HID_PRODIKEYS
|
2010-05-12 15:27:00 +02:00
|
|
|
tristate "Prodikeys PC-MIDI Keyboard support"
|
2010-05-12 15:18:59 +02:00
|
|
|
depends on USB_HID && SND
|
|
|
|
select SND_RAWMIDI
|
|
|
|
---help---
|
|
|
|
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.
|
|
|
|
|
2008-06-23 22:54:08 +02:00
|
|
|
config HID_CYPRESS
|
2011-01-20 23:44:16 +01:00
|
|
|
tristate "Cypress mouse and barcode readers" if EXPERT
|
2008-06-23 22:54:08 +02:00
|
|
|
depends on USB_HID
|
2011-01-20 23:44:16 +01:00
|
|
|
default !EXPERT
|
2008-06-23 22:54:08 +02:00
|
|
|
---help---
|
2008-10-16 01:25:15 +02:00
|
|
|
Support for cypress mouse and barcode readers.
|
2008-06-23 22:54:08 +02:00
|
|
|
|
2009-05-15 15:46:44 +02:00
|
|
|
config HID_DRAGONRISE
|
2010-08-16 16:26:08 +02:00
|
|
|
tristate "DragonRise Inc. game controller"
|
2009-03-04 10:12:04 +01:00
|
|
|
depends on USB_HID
|
2009-05-15 15:46:44 +02:00
|
|
|
---help---
|
2011-01-28 12:50:53 +01:00
|
|
|
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
|
2009-05-15 15:46:44 +02:00
|
|
|
|
|
|
|
config DRAGONRISE_FF
|
2010-08-16 16:26:08 +02:00
|
|
|
bool "DragonRise Inc. force feedback"
|
2009-05-15 15:46:44 +02:00
|
|
|
depends on HID_DRAGONRISE
|
2009-03-04 10:12:04 +01:00
|
|
|
select INPUT_FF_MEMLESS
|
|
|
|
---help---
|
|
|
|
Say Y here if you want to enable force feedback support for DragonRise Inc.
|
|
|
|
game controllers.
|
|
|
|
|
2010-11-01 20:13:37 +01:00
|
|
|
config HID_EMS_FF
|
|
|
|
tristate "EMS Production Inc. force feedback support"
|
|
|
|
depends on USB_HID
|
|
|
|
select INPUT_FF_MEMLESS
|
|
|
|
---help---
|
|
|
|
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
|
|
|
|
|
2010-06-28 18:54:25 +02:00
|
|
|
config HID_ELECOM
|
2010-08-16 16:26:08 +02:00
|
|
|
tristate "ELECOM BM084 bluetooth mouse"
|
2010-06-28 18:54:25 +02:00
|
|
|
depends on BT_HIDP
|
|
|
|
---help---
|
|
|
|
Support for the ELECOM BM084 (bluetooth mouse).
|
|
|
|
|
2008-06-24 21:11:21 +02:00
|
|
|
config HID_EZKEY
|
2011-01-20 23:44:16 +01:00
|
|
|
tristate "Ezkey BTC 8193 keyboard" if EXPERT
|
2008-06-24 21:11:21 +02:00
|
|
|
depends on USB_HID
|
2011-01-20 23:44:16 +01:00
|
|
|
default !EXPERT
|
2008-06-24 21:11:21 +02:00
|
|
|
---help---
|
2008-10-16 01:25:15 +02:00
|
|
|
Support for Ezkey BTC 8193 keyboard.
|
2008-06-24 21:11:21 +02:00
|
|
|
|
2011-06-26 23:07:31 +02:00
|
|
|
config HID_HOLTEK
|
|
|
|
tristate "Holtek On Line Grip based game controller support"
|
|
|
|
depends on USB_HID
|
|
|
|
---help---
|
|
|
|
Say Y here if you have a Holtek On Line Grip based game controller.
|
|
|
|
|
|
|
|
config HOLTEK_FF
|
|
|
|
bool "Holtek On Line Grip force feedback support"
|
|
|
|
depends on HID_HOLTEK
|
|
|
|
select INPUT_FF_MEMLESS
|
|
|
|
---help---
|
|
|
|
Say Y here if you have a Holtek On Line Grip based game controller
|
|
|
|
and want to have force feedback support for it.
|
|
|
|
|
2011-02-17 15:12:45 +01:00
|
|
|
config HID_KEYTOUCH
|
2011-03-22 10:29:17 +01:00
|
|
|
tristate "Keytouch HID devices"
|
2011-02-17 15:12:45 +01:00
|
|
|
depends on USB_HID
|
|
|
|
---help---
|
|
|
|
Support for Keytouch HID devices not fully compliant with
|
|
|
|
the specification. Currently supported:
|
|
|
|
- Keytouch IEC 60945
|
|
|
|
|
2009-03-11 11:43:27 +01:00
|
|
|
config HID_KYE
|
2011-01-20 23:44:16 +01:00
|
|
|
tristate "Kye/Genius Ergo Mouse" if EXPERT
|
2009-03-11 11:43:27 +01:00
|
|
|
depends on USB_HID
|
2011-01-20 23:44:16 +01:00
|
|
|
default !EXPERT
|
2009-03-11 11:43:27 +01:00
|
|
|
---help---
|
|
|
|
Support for Kye/Genius Ergo Mouse.
|
|
|
|
|
2010-08-09 18:44:17 +02:00
|
|
|
config HID_UCLOGIC
|
2010-08-09 19:56:01 +02:00
|
|
|
tristate "UC-Logic"
|
2010-08-09 18:44:17 +02:00
|
|
|
depends on USB_HID
|
|
|
|
---help---
|
|
|
|
Support for UC-Logic tablets.
|
|
|
|
|
2010-08-20 17:21:11 +02:00
|
|
|
config HID_WALTOP
|
|
|
|
tristate "Waltop"
|
|
|
|
depends on USB_HID
|
|
|
|
---help---
|
|
|
|
Support for Waltop tablets.
|
|
|
|
|
2008-07-24 23:35:13 +02:00
|
|
|
config HID_GYRATION
|
2010-08-16 16:26:08 +02:00
|
|
|
tristate "Gyration remote control"
|
2008-07-24 23:35:13 +02:00
|
|
|
depends on USB_HID
|
|
|
|
---help---
|
2008-10-16 01:25:15 +02:00
|
|
|
Support for Gyration remote control.
|
2008-07-24 23:35:13 +02:00
|
|
|
|
2009-07-13 14:19:58 +02:00
|
|
|
config HID_TWINHAN
|
2010-08-16 16:26:08 +02:00
|
|
|
tristate "Twinhan IR remote control"
|
2009-07-13 14:19:58 +02:00
|
|
|
depends on USB_HID
|
|
|
|
---help---
|
|
|
|
Support for Twinhan IR remote control.
|
|
|
|
|
2009-03-04 16:09:40 +01:00
|
|
|
config HID_KENSINGTON
|
2011-01-20 23:44:16 +01:00
|
|
|
tristate "Kensington Slimblade Trackball" if EXPERT
|
2009-03-04 16:09:40 +01:00
|
|
|
depends on USB_HID
|
2011-01-20 23:44:16 +01:00
|
|
|
default !EXPERT
|
2009-03-04 16:09:40 +01:00
|
|
|
---help---
|
|
|
|
Support for Kensington Slimblade Trackball.
|
|
|
|
|
2011-02-03 16:41:47 +01:00
|
|
|
config HID_LCPOWER
|
|
|
|
tristate "LC-Power"
|
|
|
|
depends on USB_HID
|
|
|
|
---help---
|
|
|
|
Support for LC-Power RC1000MCE RF remote control.
|
|
|
|
|
2008-05-16 11:49:19 +02:00
|
|
|
config HID_LOGITECH
|
2011-01-20 23:44:16 +01:00
|
|
|
tristate "Logitech devices" if EXPERT
|
2008-05-16 11:49:19 +02:00
|
|
|
depends on USB_HID
|
2011-01-20 23:44:16 +01:00
|
|
|
default !EXPERT
|
2008-05-16 11:49:19 +02:00
|
|
|
---help---
|
2008-10-16 01:25:15 +02:00
|
|
|
Support for Logitech devices that are not fully compliant with HID standard.
|
2008-05-16 11:49:19 +02:00
|
|
|
|
2011-09-15 11:34:49 +02:00
|
|
|
config HID_LOGITECH_DJ
|
|
|
|
tristate "Logitech Unifying receivers full support"
|
|
|
|
depends on HID_LOGITECH
|
|
|
|
default m
|
|
|
|
---help---
|
|
|
|
Say Y if you want support for Logitech Unifying receivers and devices.
|
|
|
|
Unifying receivers are capable of pairing up to 6 Logitech compliant
|
|
|
|
devices to the same receiver.
|
|
|
|
|
2008-07-04 23:06:45 +02:00
|
|
|
config LOGITECH_FF
|
2009-05-15 15:46:44 +02:00
|
|
|
bool "Logitech force feedback support"
|
2008-07-04 23:06:45 +02:00
|
|
|
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
|
|
|
|
- Logitech Formula Force EX
|
2009-06-23 12:11:31 +02:00
|
|
|
- Logitech WingMan Formula Force GP
|
2008-07-04 23:06:45 +02:00
|
|
|
- Logitech MOMO Force wheel
|
|
|
|
|
|
|
|
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
|
2010-10-04 15:39:49 +02:00
|
|
|
bool "Logitech RumblePad/Rumblepad 2 force feedback support"
|
2008-07-04 23:06:45 +02:00
|
|
|
depends on HID_LOGITECH
|
|
|
|
select INPUT_FF_MEMLESS
|
|
|
|
help
|
|
|
|
Say Y here if you want to enable force feedback support for Logitech
|
2010-10-04 15:39:49 +02:00
|
|
|
RumblePad and Rumblepad 2 devices.
|
2008-07-04 23:06:45 +02:00
|
|
|
|
2010-01-13 00:25:58 +01:00
|
|
|
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.
|
|
|
|
|
2011-08-04 16:24:22 +02:00
|
|
|
config LOGIWHEELS_FF
|
|
|
|
bool "Logitech wheels configuration and force feedback support"
|
2010-09-22 13:19:42 +02:00
|
|
|
depends on HID_LOGITECH
|
|
|
|
select INPUT_FF_MEMLESS
|
2011-08-10 18:11:10 +02:00
|
|
|
default LOGITECH_FF
|
2010-09-22 13:19:42 +02:00
|
|
|
help
|
2011-08-04 16:24:22 +02:00
|
|
|
Say Y here if you want to enable force feedback and range setting
|
|
|
|
support for following Logitech wheels:
|
|
|
|
- Logitech Driving Force
|
|
|
|
- Logitech Driving Force Pro
|
|
|
|
- Logitech Driving Force GT
|
|
|
|
- Logitech G25
|
|
|
|
- Logitech G27
|
|
|
|
- Logitech MOMO/MOMO 2
|
|
|
|
- Logitech Formula Force EX
|
2010-09-22 13:19:42 +02:00
|
|
|
|
2010-02-06 18:24:36 +01:00
|
|
|
config HID_MAGICMOUSE
|
2010-02-10 14:59:03 +01:00
|
|
|
tristate "Apple MagicMouse multi-touch support"
|
2010-02-06 18:24:36 +01:00
|
|
|
depends on BT_HIDP
|
|
|
|
---help---
|
2010-02-10 14:59:03 +01:00
|
|
|
Support for the Apple Magic Mouse multi-touch.
|
2010-02-06 18:24:36 +01:00
|
|
|
|
|
|
|
Say Y here if you want support for the multi-touch features of the
|
|
|
|
Apple Wireless "Magic" Mouse.
|
|
|
|
|
2008-06-20 21:26:11 +02:00
|
|
|
config HID_MICROSOFT
|
2011-01-20 23:44:16 +01:00
|
|
|
tristate "Microsoft non-fully HID-compliant devices" if EXPERT
|
2008-06-20 21:26:11 +02:00
|
|
|
depends on USB_HID
|
2011-01-20 23:44:16 +01:00
|
|
|
default !EXPERT
|
2008-06-20 21:26:11 +02:00
|
|
|
---help---
|
2008-10-16 01:25:15 +02:00
|
|
|
Support for Microsoft devices that are not fully compliant with HID standard.
|
2008-06-20 21:26:11 +02:00
|
|
|
|
2008-06-25 00:07:50 +02:00
|
|
|
config HID_MONTEREY
|
2011-01-20 23:44:16 +01:00
|
|
|
tristate "Monterey Genius KB29E keyboard" if EXPERT
|
2008-06-25 00:07:50 +02:00
|
|
|
depends on USB_HID
|
2011-01-20 23:44:16 +01:00
|
|
|
default !EXPERT
|
2008-06-25 00:07:50 +02:00
|
|
|
---help---
|
|
|
|
Support for Monterey Genius KB29E.
|
|
|
|
|
2011-01-07 23:45:50 +01:00
|
|
|
config HID_MULTITOUCH
|
|
|
|
tristate "HID Multitouch panels"
|
|
|
|
depends on USB_HID
|
|
|
|
---help---
|
|
|
|
Generic support for HID multitouch panels.
|
|
|
|
|
|
|
|
Say Y here if you have one of the following devices:
|
2011-03-22 17:34:01 +01:00
|
|
|
- 3M PCT touch screens
|
2011-05-19 14:18:13 +02:00
|
|
|
- ActionStar dual touch panels
|
2011-05-20 15:59:34 +02:00
|
|
|
- Cando dual touch panels
|
2011-05-27 20:03:47 +02:00
|
|
|
- Chunghwa panels
|
2011-05-19 14:18:14 +02:00
|
|
|
- CVTouch panels
|
2011-01-11 16:45:54 +01:00
|
|
|
- Cypress TrueTouch panels
|
2011-05-19 11:37:29 +02:00
|
|
|
- Elo TouchSystems IntelliTouch Plus panels
|
2011-05-20 15:59:34 +02:00
|
|
|
- GeneralTouch 'Sensing Win7-TwoFinger' panels
|
2011-05-19 14:18:15 +02:00
|
|
|
- GoodTouch panels
|
2011-01-11 16:45:54 +01:00
|
|
|
- Hanvon dual touch panels
|
2011-05-20 15:59:34 +02:00
|
|
|
- Ilitek dual touch panels
|
2011-01-31 11:28:22 +01:00
|
|
|
- IrTouch Infrared USB panels
|
2011-08-16 06:12:09 +02:00
|
|
|
- LG Display panels (Dell ST2220Tc)
|
2011-05-18 15:27:24 +02:00
|
|
|
- Lumio CrystalTouch panels
|
2011-04-22 11:51:48 +02:00
|
|
|
- MosArt dual-touch panels
|
2011-04-21 16:21:52 +02:00
|
|
|
- PenMount dual touch panels
|
2011-01-11 16:45:54 +01:00
|
|
|
- Pixcir dual touch panels
|
2011-05-20 15:59:34 +02:00
|
|
|
- eGalax dual-touch panels, including the Joojoo and Wetab tablets
|
2011-03-18 14:27:53 +01:00
|
|
|
- Stantum multitouch panels
|
2011-05-19 14:18:16 +02:00
|
|
|
- Touch International Panels
|
2011-05-19 14:18:17 +02:00
|
|
|
- Unitec Panels
|
2011-07-15 10:58:06 +02:00
|
|
|
- XAT optical touch panels
|
2011-01-07 23:45:50 +01:00
|
|
|
|
2011-01-11 16:45:54 +01:00
|
|
|
If unsure, say N.
|
|
|
|
|
|
|
|
To compile this driver as a module, choose M here: the
|
|
|
|
module will be called hid-multitouch.
|
|
|
|
|
2008-11-19 15:54:46 +01:00
|
|
|
config HID_NTRIG
|
2010-08-16 16:26:08 +02:00
|
|
|
tristate "N-Trig touch screen"
|
2008-11-19 15:54:46 +01:00
|
|
|
depends on USB_HID
|
|
|
|
---help---
|
|
|
|
Support for N-Trig touch screen.
|
|
|
|
|
2010-01-21 15:36:52 +01:00
|
|
|
config HID_ORTEK
|
2011-03-21 13:54:22 +01:00
|
|
|
tristate "Ortek PKB-1700/WKB-2000/Skycable wireless keyboard and mouse trackpad"
|
2010-01-21 15:36:52 +01:00
|
|
|
depends on USB_HID
|
|
|
|
---help---
|
2011-03-21 13:54:22 +01:00
|
|
|
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
|
2010-01-21 15:36:52 +01:00
|
|
|
|
2009-05-15 15:46:44 +02:00
|
|
|
config HID_PANTHERLORD
|
2010-08-16 16:26:08 +02:00
|
|
|
tristate "Pantherlord/GreenAsia game controller"
|
2009-05-15 15:46:44 +02:00
|
|
|
depends on USB_HID
|
|
|
|
---help---
|
|
|
|
Say Y here if you have a PantherLord/GreenAsia based game controller
|
|
|
|
or adapter.
|
|
|
|
|
2008-09-18 19:43:32 +02:00
|
|
|
config PANTHERLORD_FF
|
|
|
|
bool "Pantherlord force feedback support"
|
|
|
|
depends on HID_PANTHERLORD
|
|
|
|
select INPUT_FF_MEMLESS
|
2009-05-15 15:46:44 +02:00
|
|
|
---help---
|
2008-09-18 19:43:32 +02:00
|
|
|
Say Y here if you have a PantherLord/GreenAsia based game controller
|
|
|
|
or adapter and want to enable force feedback support for it.
|
|
|
|
|
2008-06-24 23:46:21 +02:00
|
|
|
config HID_PETALYNX
|
2010-08-16 16:26:08 +02:00
|
|
|
tristate "Petalynx Maxter remote control"
|
2008-06-24 23:46:21 +02:00
|
|
|
depends on USB_HID
|
|
|
|
---help---
|
2008-10-16 01:25:15 +02:00
|
|
|
Support for Petalynx Maxter remote control.
|
2008-06-24 23:46:21 +02:00
|
|
|
|
2010-03-30 22:33:50 +02:00
|
|
|
config HID_PICOLCD
|
|
|
|
tristate "PicoLCD (graphic version)"
|
|
|
|
depends on USB_HID
|
|
|
|
---help---
|
|
|
|
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
|
2010-03-30 22:38:09 +02:00
|
|
|
- EEProm / Flash access (via debugfs)
|
2010-04-11 12:17:45 +02:00
|
|
|
Features selectively enabled:
|
|
|
|
- Framebuffer for monochrome 256x64 display
|
|
|
|
- Backlight control
|
|
|
|
- Contrast control
|
|
|
|
- General purpose outputs
|
2010-03-30 22:34:30 +02:00
|
|
|
Features that are not (yet) supported:
|
2010-03-30 22:33:50 +02:00
|
|
|
- IR
|
|
|
|
|
2010-04-11 12:17:45 +02:00
|
|
|
config HID_PICOLCD_FB
|
2011-01-20 23:44:16 +01:00
|
|
|
bool "Framebuffer support" if EXPERT
|
|
|
|
default !EXPERT
|
2010-04-11 12:17:45 +02:00
|
|
|
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
|
|
|
|
---help---
|
|
|
|
Provide access to PicoLCD's 256x64 monochrome display via a
|
|
|
|
frambuffer device.
|
|
|
|
|
|
|
|
config HID_PICOLCD_BACKLIGHT
|
2011-01-20 23:44:16 +01:00
|
|
|
bool "Backlight control" if EXPERT
|
|
|
|
default !EXPERT
|
2010-04-11 12:17:45 +02:00
|
|
|
depends on HID_PICOLCD
|
|
|
|
depends on HID_PICOLCD=BACKLIGHT_CLASS_DEVICE || BACKLIGHT_CLASS_DEVICE=y
|
|
|
|
---help---
|
|
|
|
Provide access to PicoLCD's backlight control via backlight
|
|
|
|
class.
|
|
|
|
|
|
|
|
config HID_PICOLCD_LCD
|
2011-01-20 23:44:16 +01:00
|
|
|
bool "Contrast control" if EXPERT
|
|
|
|
default !EXPERT
|
2010-04-11 12:17:45 +02:00
|
|
|
depends on HID_PICOLCD
|
|
|
|
depends on HID_PICOLCD=LCD_CLASS_DEVICE || LCD_CLASS_DEVICE=y
|
|
|
|
---help---
|
|
|
|
Provide access to PicoLCD's LCD contrast via lcd class.
|
|
|
|
|
|
|
|
config HID_PICOLCD_LEDS
|
2011-01-20 23:44:16 +01:00
|
|
|
bool "GPO via leds class" if EXPERT
|
|
|
|
default !EXPERT
|
2010-04-11 12:17:45 +02:00
|
|
|
depends on HID_PICOLCD
|
|
|
|
depends on HID_PICOLCD=LEDS_CLASS || LEDS_CLASS=y
|
|
|
|
---help---
|
|
|
|
Provide access to PicoLCD's GPO pins via leds class.
|
|
|
|
|
2011-10-15 02:18:54 +02:00
|
|
|
config HID_PRIMAX
|
2011-10-17 17:04:58 +02:00
|
|
|
tristate "Primax non-fully HID-compliant devices"
|
2011-10-15 02:18:54 +02:00
|
|
|
depends on USB_HID
|
|
|
|
---help---
|
|
|
|
Support for Primax devices that are not fully compliant with the
|
|
|
|
HID standard.
|
|
|
|
|
2010-01-13 00:29:16 +01:00
|
|
|
config HID_QUANTA
|
2010-08-16 16:26:08 +02:00
|
|
|
tristate "Quanta Optical Touch panels"
|
2010-01-13 00:29:16 +01:00
|
|
|
depends on USB_HID
|
|
|
|
---help---
|
|
|
|
Support for Quanta Optical Touch dual-touch panels.
|
|
|
|
|
2010-05-19 18:55:16 +02:00
|
|
|
config HID_ROCCAT
|
|
|
|
tristate "Roccat special event support"
|
|
|
|
depends on USB_HID
|
2011-06-01 15:54:10 +02:00
|
|
|
select HID_ROCCAT_COMMON
|
2010-05-19 18:55:16 +02:00
|
|
|
---help---
|
|
|
|
Support for Roccat special events.
|
|
|
|
Say Y here if you have a Roccat mouse or keyboard and want OSD or
|
|
|
|
macro execution support.
|
|
|
|
|
2011-01-30 13:38:23 +01:00
|
|
|
config HID_ROCCAT_COMMON
|
|
|
|
tristate
|
2011-06-01 15:54:10 +02:00
|
|
|
depends on HID_ROCCAT
|
2011-01-30 13:38:23 +01:00
|
|
|
|
2011-01-06 09:00:34 +01:00
|
|
|
config HID_ROCCAT_ARVO
|
|
|
|
tristate "Roccat Arvo keyboard support"
|
|
|
|
depends on USB_HID
|
2011-06-01 15:54:10 +02:00
|
|
|
depends on HID_ROCCAT
|
2011-01-06 09:00:34 +01:00
|
|
|
---help---
|
|
|
|
Support for Roccat Arvo keyboard.
|
|
|
|
|
2010-03-18 16:19:43 +01:00
|
|
|
config HID_ROCCAT_KONE
|
2010-03-22 16:33:15 +01:00
|
|
|
tristate "Roccat Kone Mouse support"
|
2010-03-18 16:19:43 +01:00
|
|
|
depends on USB_HID
|
2011-06-01 15:54:10 +02:00
|
|
|
depends on HID_ROCCAT
|
2010-03-18 16:19:43 +01:00
|
|
|
---help---
|
|
|
|
Support for Roccat Kone mouse.
|
|
|
|
|
2010-11-26 20:57:42 +01:00
|
|
|
config HID_ROCCAT_KONEPLUS
|
|
|
|
tristate "Roccat Kone[+] mouse support"
|
|
|
|
depends on USB_HID
|
2011-06-01 15:54:10 +02:00
|
|
|
depends on HID_ROCCAT
|
2010-11-26 20:57:42 +01:00
|
|
|
---help---
|
|
|
|
Support for Roccat Kone[+] mouse.
|
|
|
|
|
2011-01-30 13:38:24 +01:00
|
|
|
config HID_ROCCAT_KOVAPLUS
|
|
|
|
tristate "Roccat Kova[+] mouse support"
|
|
|
|
depends on USB_HID
|
2011-06-01 15:54:10 +02:00
|
|
|
depends on HID_ROCCAT
|
2011-01-30 13:38:24 +01:00
|
|
|
---help---
|
|
|
|
Support for Roccat Kova[+] mouse.
|
|
|
|
|
2010-08-29 12:30:18 +02:00
|
|
|
config HID_ROCCAT_PYRA
|
|
|
|
tristate "Roccat Pyra mouse support"
|
|
|
|
depends on USB_HID
|
2011-06-01 15:54:10 +02:00
|
|
|
depends on HID_ROCCAT
|
2010-08-29 12:30:18 +02:00
|
|
|
---help---
|
|
|
|
Support for Roccat Pyra mouse.
|
|
|
|
|
2008-06-25 22:31:48 +02:00
|
|
|
config HID_SAMSUNG
|
2010-08-16 16:26:08 +02:00
|
|
|
tristate "Samsung InfraRed remote control or keyboards"
|
2008-06-25 22:31:48 +02:00
|
|
|
depends on USB_HID
|
|
|
|
---help---
|
2010-05-17 12:42:39 +02:00
|
|
|
Support for Samsung InfraRed remote control or keyboards.
|
2008-06-25 22:31:48 +02:00
|
|
|
|
2008-06-25 23:47:04 +02:00
|
|
|
config HID_SONY
|
2010-08-16 16:26:08 +02:00
|
|
|
tristate "Sony PS3 controller"
|
2008-06-25 23:47:04 +02:00
|
|
|
depends on USB_HID
|
|
|
|
---help---
|
|
|
|
Support for Sony PS3 controller.
|
|
|
|
|
2011-05-27 18:40:29 +02:00
|
|
|
config HID_SPEEDLINK
|
|
|
|
tristate "Speedlink VAD Cezanne mouse support"
|
|
|
|
depends on USB_HID
|
|
|
|
---help---
|
|
|
|
Support for Speedlink Vicious and Divine Cezanne mouse.
|
|
|
|
|
2008-06-23 21:56:07 +02:00
|
|
|
config HID_SUNPLUS
|
2010-08-16 16:26:08 +02:00
|
|
|
tristate "Sunplus wireless desktop"
|
2008-06-23 21:56:07 +02:00
|
|
|
depends on USB_HID
|
|
|
|
---help---
|
2008-10-16 01:25:15 +02:00
|
|
|
Support for Sunplus wireless desktop.
|
2008-06-23 21:56:07 +02:00
|
|
|
|
2009-05-15 15:46:44 +02:00
|
|
|
config HID_GREENASIA
|
2010-08-16 16:26:08 +02:00
|
|
|
tristate "GreenAsia (Product ID 0x12) game controller support"
|
2008-12-11 22:07:59 +01:00
|
|
|
depends on USB_HID
|
2009-05-15 15:46:44 +02:00
|
|
|
---help---
|
|
|
|
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
|
2008-12-11 22:07:59 +01:00
|
|
|
select INPUT_FF_MEMLESS
|
|
|
|
---help---
|
|
|
|
Say Y here if you have a GreenAsia (Product ID 0x12) based game controller
|
2009-01-26 11:12:25 +01:00
|
|
|
(like MANTA Warrior MM816 and SpeedLink Strike2 SL-6635) or adapter
|
2008-12-11 22:07:59 +01:00
|
|
|
and want to enable force feedback support for it.
|
|
|
|
|
2009-05-13 10:54:38 +02:00
|
|
|
config HID_SMARTJOYPLUS
|
2010-05-21 13:15:17 +02:00
|
|
|
tristate "SmartJoy PLUS PS2/USB adapter support"
|
2009-05-13 10:54:38 +02:00
|
|
|
depends on USB_HID
|
|
|
|
---help---
|
2011-10-20 22:26:21 +02:00
|
|
|
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.
|
2009-05-13 10:54:38 +02:00
|
|
|
|
|
|
|
config SMARTJOYPLUS_FF
|
|
|
|
bool "SmartJoy PLUS PS2/USB adapter force feedback support"
|
|
|
|
depends on HID_SMARTJOYPLUS
|
|
|
|
select INPUT_FF_MEMLESS
|
|
|
|
---help---
|
|
|
|
Say Y here if you have a SmartJoy PLUS PS2/USB adapter and want to
|
|
|
|
enable force feedback support for it.
|
|
|
|
|
2009-01-04 00:36:56 +01:00
|
|
|
config HID_TOPSEED
|
2010-07-13 22:50:51 +02:00
|
|
|
tristate "TopSeed Cyberlink, BTC Emprex, Conceptronic remote control support"
|
2009-01-04 00:36:56 +01:00
|
|
|
depends on USB_HID
|
|
|
|
---help---
|
2010-07-13 22:50:51 +02:00
|
|
|
Say Y if you have a TopSeed Cyberlink or BTC Emprex or Conceptronic
|
|
|
|
CLLRCMCE remote control.
|
2009-01-04 00:36:56 +01:00
|
|
|
|
2009-05-15 15:46:44 +02:00
|
|
|
config HID_THRUSTMASTER
|
2010-05-21 13:15:17 +02:00
|
|
|
tristate "ThrustMaster devices support"
|
2008-09-18 12:23:31 +02:00
|
|
|
depends on USB_HID
|
2009-05-15 15:46:44 +02:00
|
|
|
---help---
|
|
|
|
Say Y here if you have a THRUSTMASTER FireStore Dual Power 2 or
|
|
|
|
a THRUSTMASTER Ferrari GT Rumble Wheel.
|
|
|
|
|
|
|
|
config THRUSTMASTER_FF
|
|
|
|
bool "ThrustMaster devices force feedback support"
|
|
|
|
depends on HID_THRUSTMASTER
|
2008-09-18 12:23:31 +02:00
|
|
|
select INPUT_FF_MEMLESS
|
2009-05-15 15:46:44 +02:00
|
|
|
---help---
|
2009-06-29 09:41:29 +02:00
|
|
|
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.
|
2008-09-18 12:23:31 +02:00
|
|
|
|
2009-05-11 17:18:12 +02:00
|
|
|
config HID_WACOM
|
HID: make full-fledged hid-bus drivers properly selectable
For historical reasons, we don't have most of the in-tree
drivers residing on hid-bus properly selectable in kernel
configuration unless CONFIG_EMBEDDED is set.
This has been introduced on Linus' request from 14 Oct
===
As to the Kconfig options - do they really add so much space that you need to
ask for the quirks? You didn't use to. Can you make the questions depend on
EMBEDDED, or at least on the HID_COMPAT thing or whatever?
===
This still makes perfect sense for small and tiny drivers, which
just fix report descriptors, fix up HID->input mappings that slightly
violates HUT standard, send one extra packet to the device that is
needed before it becomes functional, etc.
Since then, we have been gathering more and more HID-bus drivers,
which are full-fledged drivers. For these, the size argument becomes
more valid. Plus the devices are much more special than "just violates
HID specification in this one or two tiny unimportant points".
Therefore I am marking such drivers as properly selectable no matter
the setting of CONFIG_EMBEDDED, while keeping all the small and tiny
ones compiled by default.
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
2010-02-03 16:11:12 +01:00
|
|
|
tristate "Wacom Bluetooth devices support"
|
2009-05-11 17:18:12 +02:00
|
|
|
depends on BT_HIDP
|
|
|
|
---help---
|
|
|
|
Support for Wacom Graphire Bluetooth tablet.
|
|
|
|
|
2010-03-15 20:16:23 +01:00
|
|
|
config HID_WACOM_POWER_SUPPLY
|
|
|
|
bool "Wacom Bluetooth devices power supply status support"
|
|
|
|
depends on HID_WACOM
|
|
|
|
select POWER_SUPPLY
|
|
|
|
---help---
|
|
|
|
Say Y here if you want to enable power supply status monitoring for
|
|
|
|
Wacom Bluetooth devices.
|
|
|
|
|
2011-07-05 13:45:08 +02:00
|
|
|
config HID_WIIMOTE
|
|
|
|
tristate "Nintendo Wii Remote support"
|
|
|
|
depends on BT_HIDP
|
2011-08-17 11:43:22 +02:00
|
|
|
depends on LEDS_CLASS
|
2011-09-06 13:50:39 +02:00
|
|
|
select POWER_SUPPLY
|
2011-07-05 13:45:08 +02:00
|
|
|
---help---
|
|
|
|
Support for the Nintendo Wii Remote bluetooth device.
|
|
|
|
|
2009-05-15 15:46:44 +02:00
|
|
|
config HID_ZEROPLUS
|
2010-05-21 13:15:17 +02:00
|
|
|
tristate "Zeroplus based game controller support"
|
2008-09-18 12:23:32 +02:00
|
|
|
depends on USB_HID
|
2009-05-15 15:46:44 +02:00
|
|
|
---help---
|
2008-09-18 12:23:32 +02:00
|
|
|
Say Y here if you have a Zeroplus based game controller.
|
|
|
|
|
2009-05-15 15:46:44 +02:00
|
|
|
config ZEROPLUS_FF
|
|
|
|
bool "Zeroplus based game controller force feedback support"
|
|
|
|
depends on HID_ZEROPLUS
|
|
|
|
select INPUT_FF_MEMLESS
|
|
|
|
---help---
|
|
|
|
Say Y here if you have a Zeroplus based game controller and want
|
|
|
|
to have force feedback support for it.
|
|
|
|
|
2010-05-14 18:30:59 +02:00
|
|
|
config HID_ZYDACRON
|
2010-05-21 13:15:17 +02:00
|
|
|
tristate "Zydacron remote control support"
|
2010-05-14 18:30:59 +02:00
|
|
|
depends on USB_HID
|
|
|
|
---help---
|
|
|
|
Support for Zydacron remote control.
|
|
|
|
|
2008-05-16 11:49:19 +02:00
|
|
|
endmenu
|
|
|
|
|
2007-04-30 13:27:48 +02:00
|
|
|
endif # HID_SUPPORT
|