blob: 414b74be4da1695bf677e599b8aaf5ec8500679c [file] [log] [blame]
David Herrmannace3d862012-06-10 15:16:14 +02001#ifndef __UHID_H_
2#define __UHID_H_
3
4/*
5 * User-space I/O driver support for HID subsystem
6 * Copyright (c) 2012 David Herrmann
7 */
8
9/*
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by the Free
12 * Software Foundation; either version 2 of the License, or (at your option)
13 * any later version.
14 */
15
16/*
17 * Public header for user-space communication. We try to keep every structure
18 * aligned but to be safe we also use __attribute__((__packed__)). Therefore,
19 * the communication should be ABI compatible even between architectures.
20 */
21
22#include <linux/input.h>
23#include <linux/types.h>
24
25enum uhid_event_type {
David Herrmannd365c6c2012-06-10 15:16:18 +020026 UHID_CREATE,
27 UHID_DESTROY,
David Herrmannec4b7de2012-06-10 15:16:21 +020028 UHID_START,
29 UHID_STOP,
David Herrmanne7191472012-06-10 15:16:22 +020030 UHID_OPEN,
31 UHID_CLOSE,
David Herrmann3b3baa82012-06-10 15:16:24 +020032 UHID_OUTPUT,
David Herrmannbdb829e2013-07-15 19:10:15 +020033 UHID_OUTPUT_EV, /* obsolete! */
David Herrmann5e87a362012-06-10 15:16:19 +020034 UHID_INPUT,
David Herrmannfcfcf0d2012-06-10 15:16:25 +020035 UHID_FEATURE,
36 UHID_FEATURE_ANSWER,
David Herrmannace3d862012-06-10 15:16:14 +020037};
38
David Herrmannd365c6c2012-06-10 15:16:18 +020039struct uhid_create_req {
40 __u8 name[128];
41 __u8 phys[64];
42 __u8 uniq[64];
43 __u8 __user *rd_data;
44 __u16 rd_size;
45
46 __u16 bus;
47 __u32 vendor;
48 __u32 product;
49 __u32 version;
50 __u32 country;
51} __attribute__((__packed__));
52
David Herrmann5e87a362012-06-10 15:16:19 +020053#define UHID_DATA_MAX 4096
54
David Herrmann3b3baa82012-06-10 15:16:24 +020055enum uhid_report_type {
56 UHID_FEATURE_REPORT,
57 UHID_OUTPUT_REPORT,
58 UHID_INPUT_REPORT,
59};
60
David Herrmann5e87a362012-06-10 15:16:19 +020061struct uhid_input_req {
62 __u8 data[UHID_DATA_MAX];
63 __u16 size;
64} __attribute__((__packed__));
65
David Herrmann3b3baa82012-06-10 15:16:24 +020066struct uhid_output_req {
67 __u8 data[UHID_DATA_MAX];
68 __u16 size;
69 __u8 rtype;
70} __attribute__((__packed__));
71
David Herrmannbdb829e2013-07-15 19:10:15 +020072/* Obsolete! Newer kernels will no longer send these events but instead convert
73 * it into raw output reports via UHID_OUTPUT. */
David Herrmannf80e1362012-06-10 15:16:23 +020074struct uhid_output_ev_req {
75 __u16 type;
76 __u16 code;
77 __s32 value;
78} __attribute__((__packed__));
79
David Herrmannfcfcf0d2012-06-10 15:16:25 +020080struct uhid_feature_req {
81 __u32 id;
82 __u8 rnum;
83 __u8 rtype;
84} __attribute__((__packed__));
85
86struct uhid_feature_answer_req {
87 __u32 id;
88 __u16 err;
89 __u16 size;
90 __u8 data[UHID_DATA_MAX];
David Herrmannfee5dfe2012-12-17 13:20:43 +010091} __attribute__((__packed__));
David Herrmannfcfcf0d2012-06-10 15:16:25 +020092
David Herrmannace3d862012-06-10 15:16:14 +020093struct uhid_event {
94 __u32 type;
David Herrmannd365c6c2012-06-10 15:16:18 +020095
96 union {
97 struct uhid_create_req create;
David Herrmann5e87a362012-06-10 15:16:19 +020098 struct uhid_input_req input;
David Herrmann3b3baa82012-06-10 15:16:24 +020099 struct uhid_output_req output;
David Herrmannf80e1362012-06-10 15:16:23 +0200100 struct uhid_output_ev_req output_ev;
David Herrmannfcfcf0d2012-06-10 15:16:25 +0200101 struct uhid_feature_req feature;
102 struct uhid_feature_answer_req feature_answer;
David Herrmannd365c6c2012-06-10 15:16:18 +0200103 } u;
David Herrmannace3d862012-06-10 15:16:14 +0200104} __attribute__((__packed__));
105
106#endif /* __UHID_H_ */