xref: /linux/drivers/hid/Kconfig (revision c0dbcc33c652a0646542560de29a1c3f1ab7169f)
163f3861dSJiri Kosina#
263f3861dSJiri Kosina# HID driver configuration
363f3861dSJiri Kosina#
43cd70986SJan Engelhardtmenuconfig HID_SUPPORT
53cd70986SJan Engelhardt	bool "HID Devices"
663f3861dSJiri Kosina	depends on INPUT
73cd70986SJan Engelhardt	default y
806bfb7ebSJan Engelhardt	---help---
906bfb7ebSJan Engelhardt	  Say Y here to get to see options for various computer-human interface
1006bfb7ebSJan Engelhardt	  device drivers. This option alone does not add any kernel code.
1106bfb7ebSJan Engelhardt
1206bfb7ebSJan Engelhardt	  If you say N, all options in this submenu will be skipped and disabled.
133cd70986SJan Engelhardt
143cd70986SJan Engelhardtif HID_SUPPORT
1563f3861dSJiri Kosina
1663f3861dSJiri Kosinaconfig HID
1763f3861dSJiri Kosina	tristate "Generic HID support"
18c96c9d7bSRussell King	depends on INPUT
1963f3861dSJiri Kosina	default y
2063f3861dSJiri Kosina	---help---
2169e4d948SJiri Kosina	  A human interface device (HID) is a type of computer device that
2269e4d948SJiri Kosina	  interacts directly with and takes input from humans. The term "HID"
2369e4d948SJiri Kosina	  most commonly used to refer to the USB-HID specification, but other
2469e4d948SJiri Kosina	  devices (such as, but not strictly limited to, Bluetooth) are
2569e4d948SJiri Kosina	  designed using HID specification (this involves certain keyboards,
2669e4d948SJiri Kosina	  mice, tablets, etc). This option compiles into kernel the generic
2769e4d948SJiri Kosina	  HID layer code (parser, usages, etc.), which can then be used by
2869e4d948SJiri Kosina	  transport-specific HID implementation (like USB or Bluetooth).
2969e4d948SJiri Kosina
3069e4d948SJiri Kosina	  For docs and specs, see http://www.usb.org/developers/hidpage/
3169e4d948SJiri Kosina
32205adbecSPavel Machek	  If unsure, say Y.
3363f3861dSJiri Kosina
3486166b7bSJiri Kosinaconfig HIDRAW
3586166b7bSJiri Kosina	bool "/dev/hidraw raw HID device support"
3686166b7bSJiri Kosina	depends on HID
3786166b7bSJiri Kosina	---help---
3886166b7bSJiri Kosina	Say Y here if you want to support HID devices (from the USB
3986166b7bSJiri Kosina	specification standpoint) that aren't strictly user interface
4086166b7bSJiri Kosina	devices, like monitor controls and Uninterruptable Power Supplies.
4186166b7bSJiri Kosina
4286166b7bSJiri Kosina	This module supports these devices separately using a separate
4386166b7bSJiri Kosina	event interface on /dev/hidraw.
4486166b7bSJiri Kosina
4586166b7bSJiri Kosina	There is also a /dev/hiddev configuration option in the USB HID
4686166b7bSJiri Kosina	configuration menu. In comparison to hiddev, this device does not process
4786166b7bSJiri Kosina	the hid events at all (no parsing, no lookups). This lets applications
4886166b7bSJiri Kosina	to work on raw hid events when they want to, and avoid using transport-specific
4986166b7bSJiri Kosina	userspace libhid/libusb libraries.
5086166b7bSJiri Kosina
5186166b7bSJiri Kosina	If unsure, say Y.
5286166b7bSJiri Kosina
536db3dfefSJiri Kosinasource "drivers/hid/usbhid/Kconfig"
546db3dfefSJiri Kosina
555f22a799SJiri Slabymenu "Special HID drivers"
565f22a799SJiri Slaby	depends on HID
575f22a799SJiri Slaby
58b6353f4fSStephane Chattyconfig HID_3M_PCT
594b186f72SJiri Kosina	tristate "3M PCT"
60b6353f4fSStephane Chatty	depends on USB_HID
61b6353f4fSStephane Chatty	---help---
62b6353f4fSStephane Chatty	Support for 3M PCT touch screens.
63b6353f4fSStephane Chatty
6414a21cd4SJiri Slabyconfig HID_A4TECH
65b36299bcSJiri Kosina	tristate "A4 tech" if EMBEDDED
6614a21cd4SJiri Slaby	depends on USB_HID
67d04b431eSDavid Brownell	default !EMBEDDED
6814a21cd4SJiri Slaby	---help---
6914a21cd4SJiri Slaby	Support for A4 tech X5 and WOP-35 / Trust 450L mice.
7014a21cd4SJiri Slaby
71*c0dbcc33SSergei Kolzunconfig HID_ACRUX_FF
72*c0dbcc33SSergei Kolzun	tristate "ACRUX force feedback support"
73*c0dbcc33SSergei Kolzun	depends on USB_HID
74*c0dbcc33SSergei Kolzun	default !EMBEDDED
75*c0dbcc33SSergei Kolzun	select INPUT_FF_MEMLESS
76*c0dbcc33SSergei Kolzun	---help---
77*c0dbcc33SSergei Kolzun	Say Y here if you want to enable force feedback support for ACRUX
78*c0dbcc33SSergei Kolzun	game controllers.
79*c0dbcc33SSergei Kolzun
808c19a515SJiri Slabyconfig HID_APPLE
81b36299bcSJiri Kosina	tristate "Apple" if EMBEDDED
828c19a515SJiri Slaby	depends on (USB_HID || BT_HIDP)
83d04b431eSDavid Brownell	default !EMBEDDED
848c19a515SJiri Slaby	---help---
858c19a515SJiri Slaby	Support for some Apple devices which less or more break
868c19a515SJiri Slaby	HID specification.
878c19a515SJiri Slaby
88f0bd8e43SJiri Kosina	Say Y here if you want support for keyboards of	Apple iBooks, PowerBooks,
89f0bd8e43SJiri Kosina	MacBooks, MacBook Pros and Apple Aluminum.
908c19a515SJiri Slaby
91b5635b12SJiri Slabyconfig HID_BELKIN
92b36299bcSJiri Kosina	tristate "Belkin" if EMBEDDED
93b5635b12SJiri Slaby	depends on USB_HID
94d04b431eSDavid Brownell	default !EMBEDDED
95b5635b12SJiri Slaby	---help---
96b5635b12SJiri Slaby	Support for Belkin Flip KVM and Wireless keyboard.
97b5635b12SJiri Slaby
9836213e1eSStephane Chattyconfig HID_CANDO
9936213e1eSStephane Chatty	tristate "Cando dual touch panel"
10036213e1eSStephane Chatty	depends on USB_HID
10136213e1eSStephane Chatty	---help---
10236213e1eSStephane Chatty	Support for Cando dual touch panel.
10336213e1eSStephane Chatty
1043b239cd7SJiri Slabyconfig HID_CHERRY
105b36299bcSJiri Kosina	tristate "Cherry" if EMBEDDED
1063b239cd7SJiri Slaby	depends on USB_HID
107d04b431eSDavid Brownell	default !EMBEDDED
1083b239cd7SJiri Slaby	---help---
109f0bd8e43SJiri Kosina	Support for Cherry Cymotion keyboard.
1103b239cd7SJiri Slaby
111fcfacfd3SJiri Slabyconfig HID_CHICONY
112b36299bcSJiri Kosina	tristate "Chicony" if EMBEDDED
113fcfacfd3SJiri Slaby	depends on USB_HID
114d04b431eSDavid Brownell	default !EMBEDDED
115fcfacfd3SJiri Slaby	---help---
116fcfacfd3SJiri Slaby	Support for Chicony Tactical pad.
117fcfacfd3SJiri Slaby
1183a370ca1SDon Princeconfig HID_PRODIKEYS
11995736de9SJiri Kosina	tristate "Prodikeys PC-MIDI Keyboard support"
1203a370ca1SDon Prince	depends on USB_HID && SND
1213a370ca1SDon Prince	select SND_RAWMIDI
1223a370ca1SDon Prince	---help---
1233a370ca1SDon Prince	Support for Prodikeys PC-MIDI Keyboard device support.
1243a370ca1SDon Prince	Say Y here to enable support for this device.
1253a370ca1SDon Prince	- Prodikeys PC-MIDI keyboard.
1263a370ca1SDon Prince	  The Prodikeys PC-MIDI acts as a USB Audio device, with one MIDI
1273a370ca1SDon Prince	  input and one MIDI output. These MIDI jacks appear as
1283a370ca1SDon Prince	  a sound "card" in the ALSA sound system.
1293a370ca1SDon Prince	  Note: if you say N here, this device will still function as a basic
1303a370ca1SDon Prince	  multimedia keyboard, but will lack support for the musical keyboard
1313a370ca1SDon Prince	  and some additional multimedia keys.
1323a370ca1SDon Prince
1330f221320SJiri Slabyconfig HID_CYPRESS
134b36299bcSJiri Kosina	tristate "Cypress" if EMBEDDED
1350f221320SJiri Slaby	depends on USB_HID
136d04b431eSDavid Brownell	default !EMBEDDED
1370f221320SJiri Slaby	---help---
138f0bd8e43SJiri Kosina	Support for cypress mouse and barcode readers.
1390f221320SJiri Slaby
1400f6f4319SJiri Kosinaconfig HID_DRAGONRISE
14173d5e8f7SJiri Kosina	tristate "DragonRise Inc. support"
1423f866fbdSRichard Walmsley	depends on USB_HID
1430f6f4319SJiri Kosina	---help---
1440f6f4319SJiri Kosina	Say Y here if you have DragonRise Inc.game controllers.
1450f6f4319SJiri Kosina
1460f6f4319SJiri Kosinaconfig DRAGONRISE_FF
1470f6f4319SJiri Kosina	bool "DragonRise Inc. force feedback support"
1480f6f4319SJiri Kosina	depends on HID_DRAGONRISE
1493f866fbdSRichard Walmsley	select INPUT_FF_MEMLESS
1503f866fbdSRichard Walmsley	---help---
1513f866fbdSRichard Walmsley	Say Y here if you want to enable force feedback support for DragonRise Inc.
1523f866fbdSRichard Walmsley	game controllers.
1533f866fbdSRichard Walmsley
1540c3910c2SStephane Chattyconfig HID_EGALAX
1550c3910c2SStephane Chatty	tristate "eGalax multi-touch panel"
1560c3910c2SStephane Chatty	depends on USB_HID
1570c3910c2SStephane Chatty	---help---
15873d5e8f7SJiri Kosina	Support for the eGalax dual-touch panel.
1590c3910c2SStephane Chatty
1601f243e30SJiri Slabyconfig HID_EZKEY
161b36299bcSJiri Kosina	tristate "Ezkey" if EMBEDDED
1621f243e30SJiri Slaby	depends on USB_HID
163d04b431eSDavid Brownell	default !EMBEDDED
1641f243e30SJiri Slaby	---help---
165f0bd8e43SJiri Kosina	Support for Ezkey BTC 8193 keyboard.
1661f243e30SJiri Slaby
16779422741SJiri Kosinaconfig HID_KYE
16879422741SJiri Kosina	tristate "Kye" if EMBEDDED
16979422741SJiri Kosina	depends on USB_HID
17079422741SJiri Kosina	default !EMBEDDED
17179422741SJiri Kosina	---help---
17279422741SJiri Kosina	Support for Kye/Genius Ergo Mouse.
17379422741SJiri Kosina
174949f8fefSJiri Slabyconfig HID_GYRATION
17573d5e8f7SJiri Kosina	tristate "Gyration"
176949f8fefSJiri Slaby	depends on USB_HID
177949f8fefSJiri Slaby	---help---
178f0bd8e43SJiri Kosina	Support for Gyration remote control.
179949f8fefSJiri Slaby
180711a680eSBruno Premontconfig HID_TWINHAN
18173d5e8f7SJiri Kosina	tristate "Twinhan"
182711a680eSBruno Premont	depends on USB_HID
183711a680eSBruno Premont	---help---
184711a680eSBruno Premont	Support for Twinhan IR remote control.
185711a680eSBruno Premont
186fdf93aa3SJiri Kosinaconfig HID_KENSINGTON
187fdf93aa3SJiri Kosina	tristate "Kensington" if EMBEDDED
188fdf93aa3SJiri Kosina	depends on USB_HID
189fdf93aa3SJiri Kosina	default !EMBEDDED
190fdf93aa3SJiri Kosina	---help---
191fdf93aa3SJiri Kosina	Support for Kensington Slimblade Trackball.
192fdf93aa3SJiri Kosina
1935f22a799SJiri Slabyconfig HID_LOGITECH
194b36299bcSJiri Kosina	tristate "Logitech" if EMBEDDED
1955f22a799SJiri Slaby	depends on USB_HID
196d04b431eSDavid Brownell	default !EMBEDDED
1975f22a799SJiri Slaby	---help---
198f0bd8e43SJiri Kosina	Support for Logitech devices that are not fully compliant with HID standard.
1995f22a799SJiri Slaby
200606bd0a8SJiri Slabyconfig LOGITECH_FF
2010f6f4319SJiri Kosina	bool "Logitech force feedback support"
202606bd0a8SJiri Slaby	depends on HID_LOGITECH
203606bd0a8SJiri Slaby	select INPUT_FF_MEMLESS
204606bd0a8SJiri Slaby	help
205606bd0a8SJiri Slaby	  Say Y here if you have one of these devices:
206606bd0a8SJiri Slaby	  - Logitech WingMan Cordless RumblePad
207606bd0a8SJiri Slaby	  - Logitech WingMan Cordless RumblePad 2
208606bd0a8SJiri Slaby	  - Logitech WingMan Force 3D
209606bd0a8SJiri Slaby	  - Logitech Formula Force EX
210fd30ea8cSJiri Kosina	  - Logitech WingMan Formula Force GP
211606bd0a8SJiri Slaby	  - Logitech MOMO Force wheel
212606bd0a8SJiri Slaby
213606bd0a8SJiri Slaby	  and if you want to enable force feedback for them.
214606bd0a8SJiri Slaby	  Note: if you say N here, this device will still be supported, but without
215606bd0a8SJiri Slaby	  force feedback.
216606bd0a8SJiri Slaby
217606bd0a8SJiri Slabyconfig LOGIRUMBLEPAD2_FF
2180f6f4319SJiri Kosina	bool "Logitech Rumblepad 2 force feedback support"
219606bd0a8SJiri Slaby	depends on HID_LOGITECH
220606bd0a8SJiri Slaby	select INPUT_FF_MEMLESS
221606bd0a8SJiri Slaby	help
222606bd0a8SJiri Slaby	  Say Y here if you want to enable force feedback support for Logitech
223606bd0a8SJiri Slaby	  Rumblepad 2 devices.
224606bd0a8SJiri Slaby
22574f292caSGary Steinconfig LOGIG940_FF
22674f292caSGary Stein	bool "Logitech Flight System G940 force feedback support"
22774f292caSGary Stein	depends on HID_LOGITECH
22874f292caSGary Stein	select INPUT_FF_MEMLESS
22974f292caSGary Stein	help
23074f292caSGary Stein	  Say Y here if you want to enable force feedback support for Logitech
23174f292caSGary Stein	  Flight System G940 devices.
23274f292caSGary Stein
233128537ceSMichael Pooleconfig HID_MAGICMOUSE
2349f523147SJiri Kosina	tristate "Apple MagicMouse multi-touch support"
235128537ceSMichael Poole	depends on BT_HIDP
236128537ceSMichael Poole	---help---
2379f523147SJiri Kosina	Support for the Apple Magic Mouse multi-touch.
238128537ceSMichael Poole
239128537ceSMichael Poole	Say Y here if you want support for the multi-touch features of the
240128537ceSMichael Poole	Apple Wireless "Magic" Mouse.
241128537ceSMichael Poole
24278a849a6SJiri Slabyconfig HID_MICROSOFT
243b36299bcSJiri Kosina	tristate "Microsoft" if EMBEDDED
24478a849a6SJiri Slaby	depends on USB_HID
245d04b431eSDavid Brownell	default !EMBEDDED
24678a849a6SJiri Slaby	---help---
247f0bd8e43SJiri Kosina	Support for Microsoft devices that are not fully compliant with HID standard.
24878a849a6SJiri Slaby
24977f720b7SStephane Chattyconfig HID_MOSART
25077f720b7SStephane Chatty	tristate "MosArt"
25177f720b7SStephane Chatty	depends on USB_HID
25277f720b7SStephane Chatty	---help---
25377f720b7SStephane Chatty	Support for MosArt dual-touch panels.
25477f720b7SStephane Chatty
2553b8006e5SJiri Slabyconfig HID_MONTEREY
256b36299bcSJiri Kosina	tristate "Monterey" if EMBEDDED
2573b8006e5SJiri Slaby	depends on USB_HID
258d04b431eSDavid Brownell	default !EMBEDDED
2593b8006e5SJiri Slaby	---help---
2603b8006e5SJiri Slaby	Support for Monterey Genius KB29E.
2613b8006e5SJiri Slaby
26294011f93SRafi Rubinconfig HID_NTRIG
2632dbf209dSJiri Kosina	tristate "NTrig"
26494011f93SRafi Rubin	depends on USB_HID
26594011f93SRafi Rubin	---help---
26694011f93SRafi Rubin	Support for N-Trig touch screen.
26794011f93SRafi Rubin
268cd9ec30dSJohnathon Harrisconfig HID_ORTEK
26973d5e8f7SJiri Kosina	tristate "Ortek"
270cd9ec30dSJohnathon Harris	depends on USB_HID
271cd9ec30dSJohnathon Harris	---help---
272cd9ec30dSJohnathon Harris	Support for Ortek WKB-2000 wireless keyboard + mouse trackpad.
273cd9ec30dSJohnathon Harris
2745f022298SJiri Slabyconfig HID_PANTHERLORD
27573d5e8f7SJiri Kosina	tristate "Pantherlord support"
2760f6f4319SJiri Kosina	depends on USB_HID
2770f6f4319SJiri Kosina	---help---
2780f6f4319SJiri Kosina	  Say Y here if you have a PantherLord/GreenAsia based game controller
2790f6f4319SJiri Kosina	  or adapter.
2800f6f4319SJiri Kosina
2815f022298SJiri Slabyconfig PANTHERLORD_FF
2825f022298SJiri Slaby	bool "Pantherlord force feedback support"
2835f022298SJiri Slaby	depends on HID_PANTHERLORD
2845f022298SJiri Slaby	select INPUT_FF_MEMLESS
2850f6f4319SJiri Kosina	---help---
2865f022298SJiri Slaby	  Say Y here if you have a PantherLord/GreenAsia based game controller
2875f022298SJiri Slaby	  or adapter and want to enable force feedback support for it.
2885f022298SJiri Slaby
2891e762532SJiri Slabyconfig HID_PETALYNX
29073d5e8f7SJiri Kosina	tristate "Petalynx"
2911e762532SJiri Slaby	depends on USB_HID
2921e762532SJiri Slaby	---help---
293f0bd8e43SJiri Kosina	Support for Petalynx Maxter remote control.
2941e762532SJiri Slaby
295236db47cSBruno Prémontconfig HID_PICOLCD
296236db47cSBruno Prémont	tristate "PicoLCD (graphic version)"
297236db47cSBruno Prémont	depends on USB_HID
298236db47cSBruno Prémont	---help---
299236db47cSBruno Prémont	  This provides support for Minibox PicoLCD devices, currently
300236db47cSBruno Prémont	  only the graphical ones are supported.
301236db47cSBruno Prémont
302236db47cSBruno Prémont	  This includes support for the following device features:
303236db47cSBruno Prémont	  - Keypad
304236db47cSBruno Prémont	  - Switching between Firmware and Flash mode
3059bbf2b98SBruno Prémont	  - EEProm / Flash access     (via debugfs)
3065435f281SBruno Prémont	  Features selectively enabled:
3075435f281SBruno Prémont	  - Framebuffer for monochrome 256x64 display
3085435f281SBruno Prémont	  - Backlight control
3095435f281SBruno Prémont	  - Contrast control
3105435f281SBruno Prémont	  - General purpose outputs
311b8c21cf6SBruno Prémont	  Features that are not (yet) supported:
312236db47cSBruno Prémont	  - IR
313236db47cSBruno Prémont
3145435f281SBruno Prémontconfig HID_PICOLCD_FB
3155435f281SBruno Prémont	bool "Framebuffer support" if EMBEDDED
3165435f281SBruno Prémont	default !EMBEDDED
3175435f281SBruno Prémont	depends on HID_PICOLCD
3185435f281SBruno Prémont	depends on HID_PICOLCD=FB || FB=y
3195435f281SBruno Prémont	select FB_DEFERRED_IO
3205435f281SBruno Prémont	select FB_SYS_FILLRECT
3215435f281SBruno Prémont	select FB_SYS_COPYAREA
3225435f281SBruno Prémont	select FB_SYS_IMAGEBLIT
3235435f281SBruno Prémont	select FB_SYS_FOPS
3245435f281SBruno Prémont	---help---
3255435f281SBruno Prémont	  Provide access to PicoLCD's 256x64 monochrome display via a
3265435f281SBruno Prémont	  frambuffer device.
3275435f281SBruno Prémont
3285435f281SBruno Prémontconfig HID_PICOLCD_BACKLIGHT
3295435f281SBruno Prémont	bool "Backlight control" if EMBEDDED
3305435f281SBruno Prémont	default !EMBEDDED
3315435f281SBruno Prémont	depends on HID_PICOLCD
3325435f281SBruno Prémont	depends on HID_PICOLCD=BACKLIGHT_CLASS_DEVICE || BACKLIGHT_CLASS_DEVICE=y
3335435f281SBruno Prémont	---help---
3345435f281SBruno Prémont	  Provide access to PicoLCD's backlight control via backlight
3355435f281SBruno Prémont	  class.
3365435f281SBruno Prémont
3375435f281SBruno Prémontconfig HID_PICOLCD_LCD
3385435f281SBruno Prémont	bool "Contrast control" if EMBEDDED
3395435f281SBruno Prémont	default !EMBEDDED
3405435f281SBruno Prémont	depends on HID_PICOLCD
3415435f281SBruno Prémont	depends on HID_PICOLCD=LCD_CLASS_DEVICE || LCD_CLASS_DEVICE=y
3425435f281SBruno Prémont	---help---
3435435f281SBruno Prémont	  Provide access to PicoLCD's LCD contrast via lcd class.
3445435f281SBruno Prémont
3455435f281SBruno Prémontconfig HID_PICOLCD_LEDS
3465435f281SBruno Prémont	bool "GPO via leds class" if EMBEDDED
3475435f281SBruno Prémont	default !EMBEDDED
3485435f281SBruno Prémont	depends on HID_PICOLCD
3495435f281SBruno Prémont	depends on HID_PICOLCD=LEDS_CLASS || LEDS_CLASS=y
3505435f281SBruno Prémont	---help---
3515435f281SBruno Prémont	  Provide access to PicoLCD's GPO pins via leds class.
3525435f281SBruno Prémont
35349e4739aSStephane Chattyconfig HID_QUANTA
35449e4739aSStephane Chatty	tristate "Quanta Optical Touch"
35549e4739aSStephane Chatty	depends on USB_HID
35649e4739aSStephane Chatty	---help---
35749e4739aSStephane Chatty	Support for Quanta Optical Touch dual-touch panels.
35849e4739aSStephane Chatty
359206f5f2fSStefan Achatzconfig HID_ROCCAT
360206f5f2fSStefan Achatz	tristate "Roccat special event support"
361206f5f2fSStefan Achatz	depends on USB_HID
362206f5f2fSStefan Achatz	---help---
363206f5f2fSStefan Achatz	Support for Roccat special events.
364206f5f2fSStefan Achatz	Say Y here if you have a Roccat mouse or keyboard and want OSD or
365206f5f2fSStefan Achatz	macro execution support.
366206f5f2fSStefan Achatz
36714bf62cdSStefan Achatzconfig HID_ROCCAT_KONE
36823d386d8SJiri Kosina	tristate "Roccat Kone Mouse support"
36914bf62cdSStefan Achatz	depends on USB_HID
370fdd45ef4SRandy Dunlap	select HID_ROCCAT
37114bf62cdSStefan Achatz	---help---
37214bf62cdSStefan Achatz	Support for Roccat Kone mouse.
37314bf62cdSStefan Achatz
374980a3da6SJiri Slabyconfig HID_SAMSUNG
37573d5e8f7SJiri Kosina	tristate "Samsung"
376980a3da6SJiri Slaby	depends on USB_HID
377980a3da6SJiri Slaby	---help---
378b355850bSDon Prince	Support for Samsung InfraRed remote control or keyboards.
379980a3da6SJiri Slaby
380bd28ce00SJiri Slabyconfig HID_SONY
38173d5e8f7SJiri Kosina	tristate "Sony"
382bd28ce00SJiri Slaby	depends on USB_HID
383bd28ce00SJiri Slaby	---help---
384bd28ce00SJiri Slaby	Support for Sony PS3 controller.
385bd28ce00SJiri Slaby
386d3fb5454SStephane Chattyconfig HID_STANTUM
38792688c0cSJiri Kosina	tristate "Stantum"
388d3fb5454SStephane Chatty	depends on USB_HID
389d3fb5454SStephane Chatty	---help---
390d3fb5454SStephane Chatty	Support for Stantum multitouch panel.
391d3fb5454SStephane Chatty
39290231e7eSJiri Slabyconfig HID_SUNPLUS
39373d5e8f7SJiri Kosina	tristate "Sunplus"
39490231e7eSJiri Slaby	depends on USB_HID
39590231e7eSJiri Slaby	---help---
396f0bd8e43SJiri Kosina	Support for Sunplus wireless desktop.
39790231e7eSJiri Slaby
3980f6f4319SJiri Kosinaconfig HID_GREENASIA
39973d5e8f7SJiri Kosina	tristate "GreenAsia (Product ID 0x12) support"
40042859e0bSLukasz Lubojanski	depends on USB_HID
4010f6f4319SJiri Kosina	---help---
4020f6f4319SJiri Kosina	  Say Y here if you have a GreenAsia (Product ID 0x12) based game
4030f6f4319SJiri Kosina	  controller or adapter.
4040f6f4319SJiri Kosina
4050f6f4319SJiri Kosinaconfig GREENASIA_FF
4060f6f4319SJiri Kosina	bool "GreenAsia (Product ID 0x12) force feedback support"
4070f6f4319SJiri Kosina	depends on HID_GREENASIA
40842859e0bSLukasz Lubojanski	select INPUT_FF_MEMLESS
40942859e0bSLukasz Lubojanski	---help---
41042859e0bSLukasz Lubojanski	Say Y here if you have a GreenAsia (Product ID 0x12) based game controller
411692105b8SMatt LaPlante	(like MANTA Warrior MM816 and SpeedLink Strike2 SL-6635) or adapter
41242859e0bSLukasz Lubojanski	and want to enable force feedback support for it.
41342859e0bSLukasz Lubojanski
414fac733f0SJussi Kivilinnaconfig HID_SMARTJOYPLUS
41573d5e8f7SJiri Kosina	tristate "SmartJoy PLUS PS2/USB adapter support"
416fac733f0SJussi Kivilinna	depends on USB_HID
417fac733f0SJussi Kivilinna	---help---
418fac733f0SJussi Kivilinna	Support for SmartJoy PLUS PS2/USB adapter.
419fac733f0SJussi Kivilinna
420fac733f0SJussi Kivilinnaconfig SMARTJOYPLUS_FF
421fac733f0SJussi Kivilinna	bool "SmartJoy PLUS PS2/USB adapter force feedback support"
422fac733f0SJussi Kivilinna	depends on HID_SMARTJOYPLUS
423fac733f0SJussi Kivilinna	select INPUT_FF_MEMLESS
424fac733f0SJussi Kivilinna	---help---
425fac733f0SJussi Kivilinna	Say Y here if you have a SmartJoy PLUS PS2/USB adapter and want to
426fac733f0SJussi Kivilinna	enable force feedback support for it.
427fac733f0SJussi Kivilinna
428f14f526dSLev Babievconfig HID_TOPSEED
42973d5e8f7SJiri Kosina	tristate "TopSeed Cyberlink remote control support"
430f14f526dSLev Babiev	depends on USB_HID
431f14f526dSLev Babiev	---help---
432bf280628SWayne Thomas	Say Y if you have a TopSeed Cyberlink or BTC Emprex remote control.
433f14f526dSLev Babiev
4340f6f4319SJiri Kosinaconfig HID_THRUSTMASTER
43573d5e8f7SJiri Kosina	tristate "ThrustMaster devices support"
43610e41a71SJiri Slaby	depends on USB_HID
4370f6f4319SJiri Kosina	---help---
43810e41a71SJiri Slaby	  Say Y here if you have a THRUSTMASTER FireStore Dual Power 2 or
4390f6f4319SJiri Kosina	  a THRUSTMASTER Ferrari GT Rumble Wheel.
4400f6f4319SJiri Kosina
4410f6f4319SJiri Kosinaconfig THRUSTMASTER_FF
4420f6f4319SJiri Kosina	bool "ThrustMaster devices force feedback support"
4430f6f4319SJiri Kosina	depends on HID_THRUSTMASTER
4440f6f4319SJiri Kosina	select INPUT_FF_MEMLESS
4450f6f4319SJiri Kosina	---help---
4467a84b133SRuben Aos Garralda	  Say Y here if you have a THRUSTMASTER FireStore Dual Power 2 or 3,
4477a84b133SRuben Aos Garralda	  a THRUSTMASTER Dual Trigger 3-in-1 or a THRUSTMASTER Ferrari GT
4487a84b133SRuben Aos Garralda	  Rumble Force or Force Feedback Wheel.
44910e41a71SJiri Slaby
450ca2dcd40SBastien Noceraconfig HID_WACOM
4512dbf209dSJiri Kosina	tristate "Wacom Bluetooth devices support"
452ca2dcd40SBastien Nocera	depends on BT_HIDP
453ca2dcd40SBastien Nocera	---help---
454ca2dcd40SBastien Nocera	Support for Wacom Graphire Bluetooth tablet.
455ca2dcd40SBastien Nocera
45659d2334aSPrzemo Firsztconfig HID_WACOM_POWER_SUPPLY
45759d2334aSPrzemo Firszt	bool "Wacom Bluetooth devices power supply status support"
45859d2334aSPrzemo Firszt	depends on HID_WACOM
45959d2334aSPrzemo Firszt	select POWER_SUPPLY
46059d2334aSPrzemo Firszt	---help---
46159d2334aSPrzemo Firszt	  Say Y here if you want to enable power supply status monitoring for
46259d2334aSPrzemo Firszt	  Wacom Bluetooth devices.
46359d2334aSPrzemo Firszt
4640f6f4319SJiri Kosinaconfig HID_ZEROPLUS
46573d5e8f7SJiri Kosina	tristate "Zeroplus based game controller support"
466987fbc1fSJiri Slaby	depends on USB_HID
4670f6f4319SJiri Kosina	---help---
468987fbc1fSJiri Slaby	  Say Y here if you have a Zeroplus based game controller.
469987fbc1fSJiri Slaby
4700f6f4319SJiri Kosinaconfig ZEROPLUS_FF
4710f6f4319SJiri Kosina	bool "Zeroplus based game controller force feedback support"
4720f6f4319SJiri Kosina	depends on HID_ZEROPLUS
4730f6f4319SJiri Kosina	select INPUT_FF_MEMLESS
4740f6f4319SJiri Kosina	---help---
4750f6f4319SJiri Kosina	  Say Y here if you have a Zeroplus based game controller and want
4760f6f4319SJiri Kosina	  to have force feedback support for it.
4770f6f4319SJiri Kosina
478a9885c8fSDon Princeconfig HID_ZYDACRON
47973d5e8f7SJiri Kosina	tristate "Zydacron remote control support"
480a9885c8fSDon Prince	depends on USB_HID
481a9885c8fSDon Prince	---help---
482a9885c8fSDon Prince	Support for Zydacron remote control.
483a9885c8fSDon Prince
4845f22a799SJiri Slabyendmenu
4855f22a799SJiri Slaby
4863cd70986SJan Engelhardtendif # HID_SUPPORT
487