aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@woody.linux-foundation.org>2007-10-14 12:03:42 -0400
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-10-14 12:03:42 -0400
commit52d4e661ac92ab8e1a312fe527221a1311fe4cda (patch)
tree907f37beba526bac7dcffbef7253de3b445a2c1e /include
parentf248488b397d52717f6683e2e53200aa687ffc89 (diff)
parentd057fd4cb892087955568a139d15eae4115a0174 (diff)
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid: (21 commits) HID: hidraw_connect() memleak fix HID: add hidraw interface USB HID: provide hook for hidraw write() HID: hiddev: Add 32bit ioctl compatibilty HID: Add GeneralTouch touchscreen to the blacklist HID: add support for Microsoft Wireless Laser Keyboard 6000 Input: add KEY_LOGOFF USBHID: report descriptor fix for MacBook JIS keyboard HID: trivial fixes in hid-debug HID: fix input mapping for Microsoft Ergonomic Keyboard HID: use hid-plff driver for GreenAsia 0e8f:0003 devices USBHID: Add HID_QUIRK_NOGET for ELO Touch Screen 2700 display HID: enable hiddev for the SantaRosa MacBookPro IR receiver USBHID: add CM109 device to blacklist HID: Report usage codes of keys as EV_MSC scancode events HID: ignore all non-LED usages in output fields in hid-input HID: fix whitespace damage HID: add support for Thrustmaster FGT Force Feedback wheel HID: minimal autosuspend support for USB HID devices HID: add support for Microsoft Natural Ergonomic Keyboard 4000 ...
Diffstat (limited to 'include')
-rw-r--r--include/linux/hid.h7
-rw-r--r--include/linux/hidraw.h86
-rw-r--r--include/linux/input.h2
3 files changed, 95 insertions, 0 deletions
diff --git a/include/linux/hid.h b/include/linux/hid.h
index 898103b401f1..55e51f9f76cb 100644
--- a/include/linux/hid.h
+++ b/include/linux/hid.h
@@ -276,6 +276,7 @@ struct hid_item {
276#define HID_QUIRK_HIDINPUT 0x00200000 276#define HID_QUIRK_HIDINPUT 0x00200000
277#define HID_QUIRK_LOGITECH_IGNORE_DOUBLED_WHEEL 0x00400000 277#define HID_QUIRK_LOGITECH_IGNORE_DOUBLED_WHEEL 0x00400000
278#define HID_QUIRK_LOGITECH_EXPANDED_KEYMAP 0x00800000 278#define HID_QUIRK_LOGITECH_EXPANDED_KEYMAP 0x00800000
279#define HID_QUIRK_IGNORE_HIDINPUT 0x01000000
279 280
280/* 281/*
281 * Separate quirks for runtime report descriptor fixup 282 * Separate quirks for runtime report descriptor fixup
@@ -285,6 +286,7 @@ struct hid_item {
285#define HID_QUIRK_RDESC_LOGITECH 0x00000002 286#define HID_QUIRK_RDESC_LOGITECH 0x00000002
286#define HID_QUIRK_RDESC_SWAPPED_MIN_MAX 0x00000004 287#define HID_QUIRK_RDESC_SWAPPED_MIN_MAX 0x00000004
287#define HID_QUIRK_RDESC_PETALYNX 0x00000008 288#define HID_QUIRK_RDESC_PETALYNX 0x00000008
289#define HID_QUIRK_RDESC_MACBOOK_JIS 0x00000010
288 290
289/* 291/*
290 * This is the global environment of the parser. This information is 292 * This is the global environment of the parser. This information is
@@ -403,6 +405,7 @@ struct hid_control_fifo {
403 405
404#define HID_CLAIMED_INPUT 1 406#define HID_CLAIMED_INPUT 1
405#define HID_CLAIMED_HIDDEV 2 407#define HID_CLAIMED_HIDDEV 2
408#define HID_CLAIMED_HIDRAW 4
406 409
407#define HID_CTRL_RUNNING 1 410#define HID_CTRL_RUNNING 1
408#define HID_OUT_RUNNING 2 411#define HID_OUT_RUNNING 2
@@ -438,6 +441,7 @@ struct hid_device { /* device report descriptor */
438 441
439 struct list_head inputs; /* The list of inputs */ 442 struct list_head inputs; /* The list of inputs */
440 void *hiddev; /* The hiddev structure */ 443 void *hiddev; /* The hiddev structure */
444 void *hidraw;
441 int minor; /* Hiddev minor number */ 445 int minor; /* Hiddev minor number */
442 446
443 wait_queue_head_t wait; /* For sleeping */ 447 wait_queue_head_t wait; /* For sleeping */
@@ -458,6 +462,9 @@ struct hid_device { /* device report descriptor */
458 void (*hiddev_hid_event) (struct hid_device *, struct hid_field *field, 462 void (*hiddev_hid_event) (struct hid_device *, struct hid_field *field,
459 struct hid_usage *, __s32); 463 struct hid_usage *, __s32);
460 void (*hiddev_report_event) (struct hid_device *, struct hid_report *); 464 void (*hiddev_report_event) (struct hid_device *, struct hid_report *);
465
466 /* handler for raw output data, used by hidraw */
467 int (*hid_output_raw_report) (struct hid_device *, __u8 *, size_t);
461#ifdef CONFIG_USB_HIDINPUT_POWERBOOK 468#ifdef CONFIG_USB_HIDINPUT_POWERBOOK
462 unsigned long pb_pressed_fn[NBITS(KEY_MAX)]; 469 unsigned long pb_pressed_fn[NBITS(KEY_MAX)];
463 unsigned long pb_pressed_numlock[NBITS(KEY_MAX)]; 470 unsigned long pb_pressed_numlock[NBITS(KEY_MAX)];
diff --git a/include/linux/hidraw.h b/include/linux/hidraw.h
new file mode 100644
index 000000000000..6676cd5e9954
--- /dev/null
+++ b/include/linux/hidraw.h
@@ -0,0 +1,86 @@
1#ifndef _HIDRAW_H
2#define _HIDRAW_H
3
4/*
5 * Copyright (c) 2007 Jiri Kosina
6 */
7
8/*
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms and conditions of the GNU General Public License,
11 * version 2, as published by the Free Software Foundation.
12 *
13 * You should have received a copy of the GNU General Public License along with
14 * this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
16 */
17
18struct hidraw_report_descriptor {
19 __u32 size;
20 __u8 *value;
21};
22
23struct hidraw_devinfo {
24 __u32 bustype;
25 __s16 vendor;
26 __s16 product;
27};
28
29/* ioctl interface */
30#define HIDIOCGRDESCSIZE _IOR('H', 0x01, int)
31#define HIDIOCGRDESC _IOR('H', 0x02, struct hidraw_report_descriptor)
32#define HIDIOCGRAWINFO _IOR('H', 0x03, struct hidraw_devinfo)
33
34#define HIDRAW_FIRST_MINOR 0
35#define HIDRAW_MAX_DEVICES 64
36/* number of reports to buffer */
37#define HIDRAW_BUFFER_SIZE 64
38
39
40/* kernel-only API declarations */
41#ifdef __KERNEL__
42
43#include <linux/hid.h>
44
45struct hidraw {
46 unsigned int minor;
47 int exist;
48 int open;
49 wait_queue_head_t wait;
50 struct hid_device *hid;
51 struct device *dev;
52 struct list_head list;
53};
54
55struct hidraw_report {
56 __u8 *value;
57 int len;
58};
59
60struct hidraw_list {
61 struct hidraw_report buffer[HIDRAW_BUFFER_SIZE];
62 int head;
63 int tail;
64 struct fasync_struct *fasync;
65 struct hidraw *hidraw;
66 struct list_head node;
67 struct mutex read_mutex;
68};
69
70#ifdef CONFIG_HIDRAW
71int hidraw_init(void);
72void hidraw_exit(void);
73void hidraw_report_event(struct hid_device *, u8 *, int);
74int hidraw_connect(struct hid_device *);
75void hidraw_disconnect(struct hid_device *);
76#else
77static inline int hidraw_init(void) { return 0; }
78static inline void hidraw_exit(void) { }
79static inline void hidraw_report_event(struct hid_device *hid, u8 *data, int len) { }
80static inline int hidraw_connect(struct hid_device *hid) { return -1; }
81static inline void hidraw_disconnect(struct hid_device *hid) { }
82#endif
83
84#endif
85
86#endif
diff --git a/include/linux/input.h b/include/linux/input.h
index 6eb3aead7f1d..52d1bd434a50 100644
--- a/include/linux/input.h
+++ b/include/linux/input.h
@@ -523,6 +523,8 @@ struct input_absinfo {
523#define KEY_ADDRESSBOOK 0x1ad /* AL Contacts/Address Book */ 523#define KEY_ADDRESSBOOK 0x1ad /* AL Contacts/Address Book */
524#define KEY_MESSENGER 0x1ae /* AL Instant Messaging */ 524#define KEY_MESSENGER 0x1ae /* AL Instant Messaging */
525#define KEY_DISPLAYTOGGLE 0x1af /* Turn display (LCD) on and off */ 525#define KEY_DISPLAYTOGGLE 0x1af /* Turn display (LCD) on and off */
526#define KEY_SPELLCHECK 0x1b0 /* AL Spell Check */
527#define KEY_LOGOFF 0x1b1 /* AL Logoff */
526 528
527#define KEY_DEL_EOL 0x1c0 529#define KEY_DEL_EOL 0x1c0
528#define KEY_DEL_EOS 0x1c1 530#define KEY_DEL_EOS 0x1c1