2006-12-08 20:41:30 +03:00
#
# HID driver configuration
#
2012-06-25 18:55:41 +04:00
menu "HID support"
depends on INPUT
2006-12-08 20:41:30 +03:00
config HID
2012-06-25 18:55:41 +04:00
tristate "HID bus support"
2006-12-22 20:09:16 +03:00
depends on INPUT
2006-12-08 20:41:30 +03:00
default y
---help---
2007-01-04 01:03:14 +03: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,
2012-06-25 18:55:41 +04:00
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).
2007-01-04 01:03:14 +03:00
For docs and specs, see http://www.usb.org/developers/hidpage/
2009-01-06 12:15:27 +03:00
If unsure, say Y.
2006-12-08 20:41:30 +03:00
2012-06-25 18:55:41 +04:00
if HID
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 12:49:14 +04:00
config HID_BATTERY_STRENGTH
2012-04-24 12:51:30 +04:00
bool "Battery level reporting for HID devices"
2011-12-19 12:16:29 +04:00
depends on HID && POWER_SUPPLY && HID = POWER_SUPPLY
2012-04-18 18:05:17 +04:00
default n
2012-04-24 12:51:30 +04:00
---help---
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.
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 12:49:14 +04:00
2007-05-14 11:57:40 +04: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.
2012-06-10 17:16:13 +04:00
config UHID
tristate "User-space I/O driver support for HID subsystem"
depends on HID
default n
---help---
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.
2012-04-23 14:07:07 +04:00
config HID_GENERIC
tristate "Generic HID driver"
depends on HID
2012-06-25 18:55:41 +04:00
default HID
2012-04-23 14:07:07 +04:00
---help---
2012-06-25 18:55:41 +04:00
Support for generic devices on the HID bus. This includes most
keyboards and mice, joysticks, tablets and digitizers.
2012-04-23 14:07:07 +04:00
To compile this driver as a module, choose M here: the module
will be called hid-generic.
If unsure, say Y.
2012-06-25 18:55:41 +04:00
menu "Special HID drivers"
depends on HID
2008-06-24 01:31:09 +04:00
config HID_A4TECH
2011-01-21 01:44:16 +03:00
tristate "A4 tech mice" if EXPERT
2008-06-24 01:31:09 +04:00
depends on USB_HID
2011-01-21 01:44:16 +03:00
default !EXPERT
2008-06-24 01:31:09 +04:00
---help---
Support for A4 tech X5 and WOP-35 / Trust 450L mice.
2011-03-11 11:27:34 +03:00
config HID_ACRUX
tristate "ACRUX game controller support"
2010-07-19 14:13:23 +04:00
depends on USB_HID
2011-03-11 11:27:34 +03:00
---help---
Say Y here if you want to enable support for ACRUX game controllers.
config HID_ACRUX_FF
2011-08-04 11:25:56 +04:00
bool "ACRUX force feedback support"
2011-03-11 11:27:34 +03:00
depends on HID_ACRUX
2010-07-19 14:13:23 +04:00
select INPUT_FF_MEMLESS
---help---
Say Y here if you want to enable force feedback support for ACRUX
game controllers.
2008-06-19 01:36:49 +04:00
config HID_APPLE
2011-01-21 01:44:16 +03:00
tristate "Apple {i,Power,Mac}Books" if EXPERT
2008-06-19 01:36:49 +04:00
depends on (USB_HID || BT_HIDP)
2011-01-21 01:44:16 +03:00
default !EXPERT
2008-06-19 01:36:49 +04:00
---help---
Support for some Apple devices which less or more break
HID specification.
2008-10-16 03:25:15 +04:00
Say Y here if you want support for keyboards of Apple iBooks, PowerBooks,
MacBooks, MacBook Pros and Apple Aluminum.
2008-06-19 01:36:49 +04:00
2012-04-11 02:29:04 +04:00
config HID_AUREAL
tristate "Aureal"
depends on USB_HID
---help---
Support for Aureal Cy se W-01RN Remote Controller and other Aureal derived remotes.
2008-06-25 01:24:57 +04:00
config HID_BELKIN
2011-01-21 01:44:16 +03:00
tristate "Belkin Flip KVM and Wireless keyboard" if EXPERT
2008-06-25 01:24:57 +04:00
depends on USB_HID
2011-01-21 01:44:16 +03:00
default !EXPERT
2008-06-25 01:24:57 +04:00
---help---
Support for Belkin Flip KVM and Wireless keyboard.
2008-06-24 22:42:25 +04:00
config HID_CHERRY
2011-01-21 01:44:16 +03:00
tristate "Cherry Cymotion keyboard" if EXPERT
2008-06-24 22:42:25 +04:00
depends on USB_HID
2011-01-21 01:44:16 +03:00
default !EXPERT
2008-06-24 22:42:25 +04:00
---help---
2008-10-16 03:25:15 +04:00
Support for Cherry Cymotion keyboard.
2008-06-24 22:42:25 +04:00
2008-06-25 00:48:52 +04:00
config HID_CHICONY
2011-01-21 01:44:16 +03:00
tristate "Chicony Tactical pad" if EXPERT
2008-06-25 00:48:52 +04:00
depends on USB_HID
2011-01-21 01:44:16 +03:00
default !EXPERT
2008-06-25 00:48:52 +04:00
---help---
Support for Chicony Tactical pad.
2010-05-12 17:18:59 +04:00
config HID_PRODIKEYS
2010-05-12 17:27:00 +04:00
tristate "Prodikeys PC-MIDI Keyboard support"
2010-05-12 17:18:59 +04: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-24 00:54:08 +04:00
config HID_CYPRESS
2011-01-21 01:44:16 +03:00
tristate "Cypress mouse and barcode readers" if EXPERT
2008-06-24 00:54:08 +04:00
depends on USB_HID
2011-01-21 01:44:16 +03:00
default !EXPERT
2008-06-24 00:54:08 +04:00
---help---
2008-10-16 03:25:15 +04:00
Support for cypress mouse and barcode readers.
2008-06-24 00:54:08 +04:00
2009-05-15 17:46:44 +04:00
config HID_DRAGONRISE
2010-08-16 18:26:08 +04:00
tristate "DragonRise Inc. game controller"
2009-03-04 12:12:04 +03:00
depends on USB_HID
2009-05-15 17:46:44 +04:00
---help---
2011-01-28 14:50:53 +03: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 17:46:44 +04:00
config DRAGONRISE_FF
2010-08-16 18:26:08 +04:00
bool "DragonRise Inc. force feedback"
2009-05-15 17:46:44 +04:00
depends on HID_DRAGONRISE
2009-03-04 12:12:04 +03: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 22:13:37 +03: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 20:54:25 +04:00
config HID_ELECOM
2010-08-16 18:26:08 +04:00
tristate "ELECOM BM084 bluetooth mouse"
2010-06-28 20:54:25 +04:00
depends on BT_HIDP
---help---
Support for the ELECOM BM084 (bluetooth mouse).
2008-06-24 23:11:21 +04:00
config HID_EZKEY
2011-01-21 01:44:16 +03:00
tristate "Ezkey BTC 8193 keyboard" if EXPERT
2008-06-24 23:11:21 +04:00
depends on USB_HID
2011-01-21 01:44:16 +03:00
default !EXPERT
2008-06-24 23:11:21 +04:00
---help---
2008-10-16 03:25:15 +04:00
Support for Ezkey BTC 8193 keyboard.
2008-06-24 23:11:21 +04:00
2011-06-27 01:07:31 +04:00
config HID_HOLTEK
2012-07-06 19:05:04 +04:00
tristate "Holtek HID devices"
2011-06-27 01:07:31 +04:00
depends on USB_HID
---help---
2012-07-06 19:05:04 +04:00
Support for Holtek based devices:
- Holtek On Line Grip based game controller
- Trust GXT 18 Gaming Keyboard
2011-06-27 01:07:31 +04:00
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 17:12:45 +03:00
config HID_KEYTOUCH
2011-03-22 12:29:17 +03:00
tristate "Keytouch HID devices"
2011-02-17 17:12:45 +03: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 13:43:27 +03:00
config HID_KYE
2012-02-28 15:01:46 +04:00
tristate "KYE/Genius devices"
2009-03-11 13:43:27 +03:00
depends on USB_HID
---help---
2012-02-28 15:01:46 +04:00
Support for KYE/Genius devices not fully compliant with HID standard:
- Ergo Mouse
- EasyPen i405X tablet
- MousePen i608X tablet
- EasyPen M610X tablet
2009-03-11 13:43:27 +03:00
2010-08-09 20:44:17 +04:00
config HID_UCLOGIC
2010-08-09 21:56:01 +04:00
tristate "UC-Logic"
2010-08-09 20:44:17 +04:00
depends on USB_HID
---help---
Support for UC-Logic tablets.
2010-08-20 19:21:11 +04:00
config HID_WALTOP
tristate "Waltop"
depends on USB_HID
---help---
Support for Waltop tablets.
2008-07-25 01:35:13 +04:00
config HID_GYRATION
2010-08-16 18:26:08 +04:00
tristate "Gyration remote control"
2008-07-25 01:35:13 +04:00
depends on USB_HID
---help---
2008-10-16 03:25:15 +04:00
Support for Gyration remote control.
2008-07-25 01:35:13 +04:00
2009-07-13 16:19:58 +04:00
config HID_TWINHAN
2010-08-16 18:26:08 +04:00
tristate "Twinhan IR remote control"
2009-07-13 16:19:58 +04:00
depends on USB_HID
---help---
Support for Twinhan IR remote control.
2009-03-04 18:09:40 +03:00
config HID_KENSINGTON
2011-01-21 01:44:16 +03:00
tristate "Kensington Slimblade Trackball" if EXPERT
2009-03-04 18:09:40 +03:00
depends on USB_HID
2011-01-21 01:44:16 +03:00
default !EXPERT
2009-03-04 18:09:40 +03:00
---help---
Support for Kensington Slimblade Trackball.
2011-02-03 18:41:47 +03:00
config HID_LCPOWER
tristate "LC-Power"
depends on USB_HID
---help---
Support for LC-Power RC1000MCE RF remote control.
2012-02-15 16:40:43 +04:00
config HID_LENOVO_TPKBD
tristate "Lenovo ThinkPad USB Keyboard with TrackPoint"
depends on USB_HID
2012-06-17 14:52:34 +04:00
select NEW_LEDS
2012-02-15 16:40:43 +04:00
select LEDS_CLASS
---help---
Support for the Lenovo ThinkPad USB Keyboard with TrackPoint.
Say Y here if you have a Lenovo ThinkPad USB Keyboard with TrackPoint
and would like to use device-specific features like changing the
sensitivity of the trackpoint, using the microphone mute button or
controlling the mute and microphone mute LEDs.
2008-05-16 13:49:19 +04:00
config HID_LOGITECH
2011-01-21 01:44:16 +03:00
tristate "Logitech devices" if EXPERT
2008-05-16 13:49:19 +04:00
depends on USB_HID
2011-01-21 01:44:16 +03:00
default !EXPERT
2008-05-16 13:49:19 +04:00
---help---
2008-10-16 03:25:15 +04:00
Support for Logitech devices that are not fully compliant with HID standard.
2008-05-16 13:49:19 +04:00
2011-09-15 13:34:49 +04:00
config HID_LOGITECH_DJ
tristate "Logitech Unifying receivers full support"
depends on HID_LOGITECH
---help---
Say Y if you want support for Logitech Unifying receivers and devices.
Unifying receivers are capable of pairing up to 6 Logitech compliant
2012-02-13 14:13:03 +04:00
devices to the same receiver. Without this driver it will be handled by
generic USB_HID driver and all incomming events will be multiplexed
into a single mouse and a single keyboard device.
2011-09-15 13:34:49 +04:00
2008-07-05 01:06:45 +04:00
config LOGITECH_FF
2009-05-15 17:46:44 +04:00
bool "Logitech force feedback support"
2008-07-05 01:06:45 +04: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 14:11:31 +04:00
- Logitech WingMan Formula Force GP
2008-07-05 01:06:45 +04: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 17:39:49 +04:00
bool "Logitech RumblePad/Rumblepad 2 force feedback support"
2008-07-05 01:06:45 +04: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 17:39:49 +04:00
RumblePad and Rumblepad 2 devices.
2008-07-05 01:06:45 +04:00
2010-01-13 02:25:58 +03: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 18:24:22 +04:00
config LOGIWHEELS_FF
bool "Logitech wheels configuration and force feedback support"
2010-09-22 15:19:42 +04:00
depends on HID_LOGITECH
select INPUT_FF_MEMLESS
2011-08-10 20:11:10 +04:00
default LOGITECH_FF
2010-09-22 15:19:42 +04:00
help
2011-08-04 18:24:22 +04: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 15:19:42 +04:00
2010-02-06 20:24:36 +03:00
config HID_MAGICMOUSE
2010-02-10 16:59:03 +03:00
tristate "Apple MagicMouse multi-touch support"
2010-02-06 20:24:36 +03:00
depends on BT_HIDP
---help---
2010-02-10 16:59:03 +03:00
Support for the Apple Magic Mouse multi-touch.
2010-02-06 20:24:36 +03:00
Say Y here if you want support for the multi-touch features of the
Apple Wireless "Magic" Mouse.
2008-06-20 23:26:11 +04:00
config HID_MICROSOFT
2011-01-21 01:44:16 +03:00
tristate "Microsoft non-fully HID-compliant devices" if EXPERT
2008-06-20 23:26:11 +04:00
depends on USB_HID
2011-01-21 01:44:16 +03:00
default !EXPERT
2008-06-20 23:26:11 +04:00
---help---
2008-10-16 03:25:15 +04:00
Support for Microsoft devices that are not fully compliant with HID standard.
2008-06-20 23:26:11 +04:00
2008-06-25 02:07:50 +04:00
config HID_MONTEREY
2011-01-21 01:44:16 +03:00
tristate "Monterey Genius KB29E keyboard" if EXPERT
2008-06-25 02:07:50 +04:00
depends on USB_HID
2011-01-21 01:44:16 +03:00
default !EXPERT
2008-06-25 02:07:50 +04:00
---help---
Support for Monterey Genius KB29E.
2011-01-08 01:45:50 +03: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 19:34:01 +03:00
- 3M PCT touch screens
2011-05-19 16:18:13 +04:00
- ActionStar dual touch panels
2011-12-23 18:40:59 +04:00
- Atmel panels
2011-05-20 17:59:34 +04:00
- Cando dual touch panels
2011-05-27 22:03:47 +04:00
- Chunghwa panels
2011-05-19 16:18:14 +04:00
- CVTouch panels
2011-01-11 18:45:54 +03:00
- Cypress TrueTouch panels
2011-05-19 13:37:29 +04:00
- Elo TouchSystems IntelliTouch Plus panels
2011-05-20 17:59:34 +04:00
- GeneralTouch 'Sensing Win7-TwoFinger' panels
2011-05-19 16:18:15 +04:00
- GoodTouch panels
2011-01-11 18:45:54 +03:00
- Hanvon dual touch panels
2011-05-20 17:59:34 +04:00
- Ilitek dual touch panels
2011-01-31 13:28:22 +03:00
- IrTouch Infrared USB panels
2011-08-16 08:12:09 +04:00
- LG Display panels (Dell ST2220Tc)
2011-05-18 17:27:24 +04:00
- Lumio CrystalTouch panels
2011-04-22 13:51:48 +04:00
- MosArt dual-touch panels
2012-02-14 12:50:33 +04:00
- Panasonic multitouch panels
2011-04-21 18:21:52 +04:00
- PenMount dual touch panels
2012-02-04 20:08:50 +04:00
- Perixx Peripad 701 touchpad
2011-12-15 07:09:06 +04:00
- PixArt optical touch screen
2011-01-11 18:45:54 +03:00
- Pixcir dual touch panels
2011-11-29 16:13:10 +04:00
- Quanta panels
2011-05-20 17:59:34 +04:00
- eGalax dual-touch panels, including the Joojoo and Wetab tablets
2011-03-18 16:27:53 +03:00
- Stantum multitouch panels
2011-05-19 16:18:16 +04:00
- Touch International Panels
2011-05-19 16:18:17 +04:00
- Unitec Panels
2011-07-15 12:58:06 +04:00
- XAT optical touch panels
2012-01-05 06:53:46 +04:00
- Xiroku optical touch panels
2012-06-19 16:39:54 +04:00
- Zytronic touch panels
2011-01-08 01:45:50 +03:00
2011-01-11 18:45:54 +03: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 17:54:46 +03:00
config HID_NTRIG
2010-08-16 18:26:08 +04:00
tristate "N-Trig touch screen"
2008-11-19 17:54:46 +03:00
depends on USB_HID
---help---
Support for N-Trig touch screen.
2010-01-21 17:36:52 +03:00
config HID_ORTEK
2011-03-21 15:54:22 +03:00
tristate "Ortek PKB-1700/WKB-2000/Skycable wireless keyboard and mouse trackpad"
2010-01-21 17:36:52 +03:00
depends on USB_HID
---help---
2011-03-21 15:54:22 +03: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 17:36:52 +03:00
2009-05-15 17:46:44 +04:00
config HID_PANTHERLORD
2010-08-16 18:26:08 +04:00
tristate "Pantherlord/GreenAsia game controller"
2009-05-15 17:46:44 +04:00
depends on USB_HID
---help---
Say Y here if you have a PantherLord/GreenAsia based game controller
or adapter.
2008-09-18 21:43:32 +04:00
config PANTHERLORD_FF
bool "Pantherlord force feedback support"
depends on HID_PANTHERLORD
select INPUT_FF_MEMLESS
2009-05-15 17:46:44 +04:00
---help---
2008-09-18 21:43:32 +04: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-25 01:46:21 +04:00
config HID_PETALYNX
2010-08-16 18:26:08 +04:00
tristate "Petalynx Maxter remote control"
2008-06-25 01:46:21 +04:00
depends on USB_HID
---help---
2008-10-16 03:25:15 +04:00
Support for Petalynx Maxter remote control.
2008-06-25 01:46:21 +04:00
2010-03-31 00:33:50 +04: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-31 00:38:09 +04:00
- EEProm / Flash access (via debugfs)
2010-04-11 14:17:45 +04:00
Features selectively enabled:
- Framebuffer for monochrome 256x64 display
- Backlight control
- Contrast control
- General purpose outputs
2010-03-31 00:34:30 +04:00
Features that are not (yet) supported:
2010-03-31 00:33:50 +04:00
- IR
2010-04-11 14:17:45 +04:00
config HID_PICOLCD_FB
2011-01-21 01:44:16 +03:00
bool "Framebuffer support" if EXPERT
default !EXPERT
2010-04-11 14:17:45 +04: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
2012-04-13 19:14:11 +04:00
framebuffer device.
2010-04-11 14:17:45 +04:00
config HID_PICOLCD_BACKLIGHT
2011-01-21 01:44:16 +03:00
bool "Backlight control" if EXPERT
default !EXPERT
2010-04-11 14:17:45 +04: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-21 01:44:16 +03:00
bool "Contrast control" if EXPERT
default !EXPERT
2010-04-11 14:17:45 +04: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-21 01:44:16 +03:00
bool "GPO via leds class" if EXPERT
default !EXPERT
2010-04-11 14:17:45 +04: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.
2012-07-30 23:38:28 +04:00
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
---help---
Provide access to PicoLCD's CIR interface via remote control (LIRC).
2011-10-15 04:18:54 +04:00
config HID_PRIMAX
2011-10-17 19:04:58 +04:00
tristate "Primax non-fully HID-compliant devices"
2011-10-15 04:18:54 +04:00
depends on USB_HID
---help---
Support for Primax devices that are not fully compliant with the
HID standard.
2012-09-26 01:02:27 +04:00
config HID_PS3REMOTE
tristate "Sony PS3 BD Remote Control"
depends on BT_HIDP
---help---
Support for the Sony PS3 Blue-ray Disk Remote Control and Logitech
Harmony Adapter for PS3, which connect over Bluetooth.
Support for the 6-axis controllers is provided by HID_SONY.
2010-05-19 20:55:16 +04:00
config HID_ROCCAT
2011-12-29 20:20:14 +04:00
tristate "Roccat device support"
2010-05-19 20:55:16 +04:00
depends on USB_HID
---help---
2011-12-29 20:20:14 +04:00
Support for Roccat devices.
Say Y here if you have a Roccat mouse or keyboard and want
support for its special functionalities.
2010-08-29 14:30:18 +04:00
2012-02-22 05:10:06 +04:00
config HID_SAITEK
tristate "Saitek non-fully HID-compliant devices"
depends on USB_HID
---help---
Support for Saitek devices that are not fully compliant with the
HID standard.
Currently only supports the PS1000 controller.
2008-06-26 00:31:48 +04:00
config HID_SAMSUNG
2010-08-16 18:26:08 +04:00
tristate "Samsung InfraRed remote control or keyboards"
2008-06-26 00:31:48 +04:00
depends on USB_HID
---help---
2010-05-17 14:42:39 +04:00
Support for Samsung InfraRed remote control or keyboards.
2008-06-26 00:31:48 +04:00
2008-06-26 01:47:04 +04:00
config HID_SONY
2010-08-16 18:26:08 +04:00
tristate "Sony PS3 controller"
2008-06-26 01:47:04 +04:00
depends on USB_HID
---help---
2012-09-26 01:02:27 +04:00
Support for Sony PS3 6-axis controllers.
Support for the Sony PS3 BD Remote is provided by HID_PS3REMOTE.
2008-06-26 01:47:04 +04:00
2011-05-27 20:40:29 +04: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 23:56:07 +04:00
config HID_SUNPLUS
2010-08-16 18:26:08 +04:00
tristate "Sunplus wireless desktop"
2008-06-23 23:56:07 +04:00
depends on USB_HID
---help---
2008-10-16 03:25:15 +04:00
Support for Sunplus wireless desktop.
2008-06-23 23:56:07 +04:00
2009-05-15 17:46:44 +04:00
config HID_GREENASIA
2010-08-16 18:26:08 +04:00
tristate "GreenAsia (Product ID 0x12) game controller support"
2008-12-12 00:07:59 +03:00
depends on USB_HID
2009-05-15 17:46:44 +04: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-12 00:07:59 +03:00
select INPUT_FF_MEMLESS
---help---
Say Y here if you have a GreenAsia (Product ID 0x12) based game controller
2009-01-26 13:12:25 +03:00
(like MANTA Warrior MM816 and SpeedLink Strike2 SL-6635) or adapter
2008-12-12 00:07:59 +03:00
and want to enable force feedback support for it.
2011-11-23 01:52:15 +04:00
config HID_HYPERV_MOUSE
tristate "Microsoft Hyper-V mouse driver"
depends on HYPERV
---help---
Select this option to enable the Hyper-V mouse driver.
2009-05-13 12:54:38 +04:00
config HID_SMARTJOYPLUS
2010-05-21 15:15:17 +04:00
tristate "SmartJoy PLUS PS2/USB adapter support"
2009-05-13 12:54:38 +04:00
depends on USB_HID
---help---
2011-10-21 00:26:21 +04: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 12:54:38 +04: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.
2012-02-06 20:36:38 +04:00
config HID_TIVO
HID: add support for tivo slide remote
This patch finishes off adding full support for the TiVo Slide remote,
which is a mostly pure HID device from the perspective of the kernel.
There are a few mappings that use a vendor-specific usage page, and a
few keys in the consumer usage page that I think make sense to remap
slightly, to better fit their key labels' intended use. Doing this in a
stand-alone hid-tivo.c makes the modifications only matter for this
specific device.
What's actually connected to the computer is a Broadcom-made usb dongle,
which has an embedded hub, bluetooth adapter, mouse and keyboard
devices. You pair with the dongle, then the remote sends data that its
converted into HID on the keyboard interface (the mouse interface
doesn't do anything interesting, so far as I can tell).
lsusb for this device:
Bus 004 Device 005: ID 0a5c:2190 Broadcom Corp.
Bus 004 Device 004: ID 0a5c:4503 Broadcom Corp.
Bus 004 Device 003: ID 150a:1201
Bus 004 Device 002: ID 0a5c:4500 Broadcom Corp. BCM2046B1 USB 2.0 Hub (part of BCM2046 Bluetooth)
Speaking of the keyboard interface, the remote actually does contain a
keyboard as well. The top slides away, revealing a reasonably functional
qwerty keyboard (not unlike many slide cell phones), thus the product
name.
CC: Jiri Kosina <jkosina@suse.cz>
Signed-off-by: Jarod Wilson <jarod@redhat.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
2011-10-15 00:57:42 +04:00
tristate "TiVo Slide Bluetooth remote control support"
2012-03-13 12:36:05 +04:00
depends on (USB_HID || BT_HIDP)
HID: add support for tivo slide remote
This patch finishes off adding full support for the TiVo Slide remote,
which is a mostly pure HID device from the perspective of the kernel.
There are a few mappings that use a vendor-specific usage page, and a
few keys in the consumer usage page that I think make sense to remap
slightly, to better fit their key labels' intended use. Doing this in a
stand-alone hid-tivo.c makes the modifications only matter for this
specific device.
What's actually connected to the computer is a Broadcom-made usb dongle,
which has an embedded hub, bluetooth adapter, mouse and keyboard
devices. You pair with the dongle, then the remote sends data that its
converted into HID on the keyboard interface (the mouse interface
doesn't do anything interesting, so far as I can tell).
lsusb for this device:
Bus 004 Device 005: ID 0a5c:2190 Broadcom Corp.
Bus 004 Device 004: ID 0a5c:4503 Broadcom Corp.
Bus 004 Device 003: ID 150a:1201
Bus 004 Device 002: ID 0a5c:4500 Broadcom Corp. BCM2046B1 USB 2.0 Hub (part of BCM2046 Bluetooth)
Speaking of the keyboard interface, the remote actually does contain a
keyboard as well. The top slides away, revealing a reasonably functional
qwerty keyboard (not unlike many slide cell phones), thus the product
name.
CC: Jiri Kosina <jkosina@suse.cz>
Signed-off-by: Jarod Wilson <jarod@redhat.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
2011-10-15 00:57:42 +04:00
---help---
Say Y if you have a TiVo Slide Bluetooth remote control.
2009-01-04 02:36:56 +03:00
config HID_TOPSEED
2010-07-14 00:50:51 +04:00
tristate "TopSeed Cyberlink, BTC Emprex, Conceptronic remote control support"
2009-01-04 02:36:56 +03:00
depends on USB_HID
---help---
2010-07-14 00:50:51 +04:00
Say Y if you have a TopSeed Cyberlink or BTC Emprex or Conceptronic
CLLRCMCE remote control.
2009-01-04 02:36:56 +03:00
2009-05-15 17:46:44 +04:00
config HID_THRUSTMASTER
2010-05-21 15:15:17 +04:00
tristate "ThrustMaster devices support"
2008-09-18 14:23:31 +04:00
depends on USB_HID
2009-05-15 17:46:44 +04: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 14:23:31 +04:00
select INPUT_FF_MEMLESS
2009-05-15 17:46:44 +04:00
---help---
2009-06-29 11:41:29 +04: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 14:23:31 +04:00
2009-05-11 19:18:12 +04: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 18:11:12 +03:00
tristate "Wacom Bluetooth devices support"
2009-05-11 19:18:12 +04:00
depends on BT_HIDP
2012-05-20 06:11:55 +04:00
depends on LEDS_CLASS
2010-03-15 22:16:23 +03:00
select POWER_SUPPLY
---help---
2012-03-22 22:54:06 +04:00
Support for Wacom Graphire Bluetooth and Intuos4 WL tablets.
2010-03-15 22:16:23 +03:00
2011-07-05 15:45:08 +04:00
config HID_WIIMOTE
tristate "Nintendo Wii Remote support"
depends on BT_HIDP
2011-08-17 13:43:22 +04:00
depends on LEDS_CLASS
2011-09-06 15:50:39 +04:00
select POWER_SUPPLY
2011-12-08 00:33:59 +04:00
select INPUT_FF_MEMLESS
2011-07-05 15:45:08 +04:00
---help---
Support for the Nintendo Wii Remote bluetooth device.
2011-11-17 17:12:01 +04:00
config HID_WIIMOTE_EXT
bool "Nintendo Wii Remote Extension support"
depends on HID_WIIMOTE
default HID_WIIMOTE
---help---
Support for extension controllers of the Nintendo Wii Remote. Say yes
here if you want to use the Nintendo Motion+, Nunchuck or Classic
extension controllers with your Wii Remote.
2009-05-15 17:46:44 +04:00
config HID_ZEROPLUS
2010-05-21 15:15:17 +04:00
tristate "Zeroplus based game controller support"
2008-09-18 14:23:32 +04:00
depends on USB_HID
2009-05-15 17:46:44 +04:00
---help---
2008-09-18 14:23:32 +04:00
Say Y here if you have a Zeroplus based game controller.
2009-05-15 17:46:44 +04: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 20:30:59 +04:00
config HID_ZYDACRON
2010-05-21 15:15:17 +04:00
tristate "Zydacron remote control support"
2010-05-14 20:30:59 +04:00
depends on USB_HID
---help---
Support for Zydacron remote control.
2012-09-05 16:56:00 +04:00
config HID_SENSOR_HUB
tristate "HID Sensors framework support"
depends on USB_HID
select MFD_CORE
default n
-- help---
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.
2008-05-16 13:49:19 +04:00
endmenu
2012-06-25 18:55:41 +04:00
endif # HID
source "drivers/hid/usbhid/Kconfig"
endmenu