]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - include/linux/hid.h
HID: wacom: generic: Add support for battery status on pen and pad interfaces
[mirror_ubuntu-artful-kernel.git] / include / linux / hid.h
CommitLineData
1da177e4 1/*
1da177e4
LT
2 * Copyright (c) 1999 Andreas Gal
3 * Copyright (c) 2000-2001 Vojtech Pavlik
b55fd23c 4 * Copyright (c) 2006-2007 Jiri Kosina
1da177e4 5 */
1da177e4
LT
6/*
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *
21 * Should you need to contact me, the author, you can do so either by
22 * e-mail - mail your message to <vojtech@ucw.cz>, or by paper mail:
23 * Vojtech Pavlik, Simunkova 1594, Prague 8, 182 00 Czech Republic
24 */
607ca46e
DH
25#ifndef __HID_H
26#define __HID_H
1da177e4 27
57d292bd
JK
28
29#include <linux/types.h>
30#include <linux/slab.h>
31#include <linux/list.h>
e8c84f9a 32#include <linux/mod_devicetable.h> /* hid_device_id */
57d292bd
JK
33#include <linux/timer.h>
34#include <linux/workqueue.h>
35#include <linux/input.h>
4ea54542 36#include <linux/semaphore.h>
4f5ca836 37#include <linux/power_supply.h>
607ca46e 38#include <uapi/linux/hid.h>
57d292bd 39
1da177e4
LT
40/*
41 * We parse each description item into this structure. Short items data
42 * values are expanded to 32-bit signed int, long items contain a pointer
43 * into the data area.
44 */
45
46struct hid_item {
47 unsigned format;
48 __u8 size;
49 __u8 type;
50 __u8 tag;
51 union {
52 __u8 u8;
53 __s8 s8;
54 __u16 u16;
55 __s16 s16;
56 __u32 u32;
57 __s32 s32;
58 __u8 *longdata;
59 } data;
60};
61
62/*
63 * HID report item format
64 */
65
66#define HID_ITEM_FORMAT_SHORT 0
67#define HID_ITEM_FORMAT_LONG 1
68
69/*
70 * Special tag indicating long items
71 */
72
73#define HID_ITEM_TAG_LONG 15
74
75/*
76 * HID report descriptor item type (prefix bit 2,3)
77 */
78
79#define HID_ITEM_TYPE_MAIN 0
80#define HID_ITEM_TYPE_GLOBAL 1
81#define HID_ITEM_TYPE_LOCAL 2
82#define HID_ITEM_TYPE_RESERVED 3
83
84/*
85 * HID report descriptor main item tags
86 */
87
88#define HID_MAIN_ITEM_TAG_INPUT 8
89#define HID_MAIN_ITEM_TAG_OUTPUT 9
90#define HID_MAIN_ITEM_TAG_FEATURE 11
91#define HID_MAIN_ITEM_TAG_BEGIN_COLLECTION 10
92#define HID_MAIN_ITEM_TAG_END_COLLECTION 12
93
94/*
95 * HID report descriptor main item contents
96 */
97
98#define HID_MAIN_ITEM_CONSTANT 0x001
99#define HID_MAIN_ITEM_VARIABLE 0x002
100#define HID_MAIN_ITEM_RELATIVE 0x004
05f091ab 101#define HID_MAIN_ITEM_WRAP 0x008
1da177e4
LT
102#define HID_MAIN_ITEM_NONLINEAR 0x010
103#define HID_MAIN_ITEM_NO_PREFERRED 0x020
104#define HID_MAIN_ITEM_NULL_STATE 0x040
105#define HID_MAIN_ITEM_VOLATILE 0x080
106#define HID_MAIN_ITEM_BUFFERED_BYTE 0x100
107
108/*
109 * HID report descriptor collection item types
110 */
111
112#define HID_COLLECTION_PHYSICAL 0
113#define HID_COLLECTION_APPLICATION 1
114#define HID_COLLECTION_LOGICAL 2
115
116/*
117 * HID report descriptor global item tags
118 */
119
120#define HID_GLOBAL_ITEM_TAG_USAGE_PAGE 0
121#define HID_GLOBAL_ITEM_TAG_LOGICAL_MINIMUM 1
122#define HID_GLOBAL_ITEM_TAG_LOGICAL_MAXIMUM 2
123#define HID_GLOBAL_ITEM_TAG_PHYSICAL_MINIMUM 3
124#define HID_GLOBAL_ITEM_TAG_PHYSICAL_MAXIMUM 4
125#define HID_GLOBAL_ITEM_TAG_UNIT_EXPONENT 5
126#define HID_GLOBAL_ITEM_TAG_UNIT 6
127#define HID_GLOBAL_ITEM_TAG_REPORT_SIZE 7
128#define HID_GLOBAL_ITEM_TAG_REPORT_ID 8
129#define HID_GLOBAL_ITEM_TAG_REPORT_COUNT 9
130#define HID_GLOBAL_ITEM_TAG_PUSH 10
131#define HID_GLOBAL_ITEM_TAG_POP 11
132
133/*
134 * HID report descriptor local item tags
135 */
136
137#define HID_LOCAL_ITEM_TAG_USAGE 0
138#define HID_LOCAL_ITEM_TAG_USAGE_MINIMUM 1
139#define HID_LOCAL_ITEM_TAG_USAGE_MAXIMUM 2
140#define HID_LOCAL_ITEM_TAG_DESIGNATOR_INDEX 3
141#define HID_LOCAL_ITEM_TAG_DESIGNATOR_MINIMUM 4
142#define HID_LOCAL_ITEM_TAG_DESIGNATOR_MAXIMUM 5
143#define HID_LOCAL_ITEM_TAG_STRING_INDEX 7
144#define HID_LOCAL_ITEM_TAG_STRING_MINIMUM 8
145#define HID_LOCAL_ITEM_TAG_STRING_MAXIMUM 9
146#define HID_LOCAL_ITEM_TAG_DELIMITER 10
147
148/*
149 * HID usage tables
150 */
151
152#define HID_USAGE_PAGE 0xffff0000
153
154#define HID_UP_UNDEFINED 0x00000000
05f091ab 155#define HID_UP_GENDESK 0x00010000
0aebfdac 156#define HID_UP_SIMULATION 0x00020000
4f5ca836 157#define HID_UP_GENDEVCTRLS 0x00060000
05f091ab
DT
158#define HID_UP_KEYBOARD 0x00070000
159#define HID_UP_LED 0x00080000
160#define HID_UP_BUTTON 0x00090000
161#define HID_UP_ORDINAL 0x000a0000
f3dddf24 162#define HID_UP_TELEPHONY 0x000b0000
1da177e4 163#define HID_UP_CONSUMER 0x000c0000
05f091ab
DT
164#define HID_UP_DIGITIZER 0x000d0000
165#define HID_UP_PID 0x000f0000
1da177e4 166#define HID_UP_HPVENDOR 0xff7f0000
929578ab 167#define HID_UP_HPVENDOR2 0xff010000
1da177e4 168#define HID_UP_MSVENDOR 0xff000000
e875ce37
SP
169#define HID_UP_CUSTOM 0x00ff0000
170#define HID_UP_LOGIVENDOR 0xffbc0000
b466c1dd
SW
171#define HID_UP_LOGIVENDOR2 0xff090000
172#define HID_UP_LOGIVENDOR3 0xff430000
f3d4ff0e 173#define HID_UP_LNVENDOR 0xffa00000
83499b52 174#define HID_UP_SENSOR 0x00200000
1da177e4
LT
175
176#define HID_USAGE 0x0000ffff
177
178#define HID_GD_POINTER 0x00010001
179#define HID_GD_MOUSE 0x00010002
180#define HID_GD_JOYSTICK 0x00010004
181#define HID_GD_GAMEPAD 0x00010005
182#define HID_GD_KEYBOARD 0x00010006
183#define HID_GD_KEYPAD 0x00010007
184#define HID_GD_MULTIAXIS 0x00010008
185#define HID_GD_X 0x00010030
186#define HID_GD_Y 0x00010031
187#define HID_GD_Z 0x00010032
188#define HID_GD_RX 0x00010033
189#define HID_GD_RY 0x00010034
190#define HID_GD_RZ 0x00010035
191#define HID_GD_SLIDER 0x00010036
192#define HID_GD_DIAL 0x00010037
193#define HID_GD_WHEEL 0x00010038
194#define HID_GD_HATSWITCH 0x00010039
195#define HID_GD_BUFFER 0x0001003a
196#define HID_GD_BYTECOUNT 0x0001003b
197#define HID_GD_MOTION 0x0001003c
198#define HID_GD_START 0x0001003d
199#define HID_GD_SELECT 0x0001003e
200#define HID_GD_VX 0x00010040
201#define HID_GD_VY 0x00010041
202#define HID_GD_VZ 0x00010042
203#define HID_GD_VBRX 0x00010043
204#define HID_GD_VBRY 0x00010044
205#define HID_GD_VBRZ 0x00010045
206#define HID_GD_VNO 0x00010046
207#define HID_GD_FEATURE 0x00010047
6aef704e 208#define HID_GD_SYSTEM_CONTROL 0x00010080
1da177e4
LT
209#define HID_GD_UP 0x00010090
210#define HID_GD_DOWN 0x00010091
211#define HID_GD_RIGHT 0x00010092
212#define HID_GD_LEFT 0x00010093
213
4f5ca836
JF
214#define HID_DC_BATTERYSTRENGTH 0x00060020
215
6aef704e
BT
216#define HID_CP_CONSUMER_CONTROL 0x000c0001
217
89f536cc
SC
218#define HID_DG_DIGITIZER 0x000d0001
219#define HID_DG_PEN 0x000d0002
220#define HID_DG_LIGHTPEN 0x000d0003
221#define HID_DG_TOUCHSCREEN 0x000d0004
222#define HID_DG_TOUCHPAD 0x000d0005
223#define HID_DG_STYLUS 0x000d0020
224#define HID_DG_PUCK 0x000d0021
225#define HID_DG_FINGER 0x000d0022
226#define HID_DG_TIPPRESSURE 0x000d0030
227#define HID_DG_BARRELPRESSURE 0x000d0031
228#define HID_DG_INRANGE 0x000d0032
229#define HID_DG_TOUCH 0x000d0033
230#define HID_DG_UNTOUCH 0x000d0034
231#define HID_DG_TAP 0x000d0035
232#define HID_DG_TABLETFUNCTIONKEY 0x000d0039
233#define HID_DG_PROGRAMCHANGEKEY 0x000d003a
93aab7fa 234#define HID_DG_BATTERYSTRENGTH 0x000d003b
89f536cc 235#define HID_DG_INVERT 0x000d003c
50066a04
JG
236#define HID_DG_TILT_X 0x000d003d
237#define HID_DG_TILT_Y 0x000d003e
238#define HID_DG_TWIST 0x000d0041
89f536cc
SC
239#define HID_DG_TIPSWITCH 0x000d0042
240#define HID_DG_TIPSWITCH2 0x000d0043
241#define HID_DG_BARRELSWITCH 0x000d0044
242#define HID_DG_ERASER 0x000d0045
243#define HID_DG_TABLETPICK 0x000d0046
1a3f83f6
JC
244
245#define HID_CP_CONSUMERCONTROL 0x000c0001
a45c30ec
JC
246#define HID_CP_NUMERICKEYPAD 0x000c0002
247#define HID_CP_PROGRAMMABLEBUTTONS 0x000c0003
248#define HID_CP_MICROPHONE 0x000c0004
249#define HID_CP_HEADPHONE 0x000c0005
250#define HID_CP_GRAPHICEQUALIZER 0x000c0006
251#define HID_CP_FUNCTIONBUTTONS 0x000c0036
252#define HID_CP_SELECTION 0x000c0080
253#define HID_CP_MEDIASELECTION 0x000c0087
254#define HID_CP_SELECTDISC 0x000c00ba
255#define HID_CP_PLAYBACKSPEED 0x000c00f1
256#define HID_CP_PROXIMITY 0x000c0109
257#define HID_CP_SPEAKERSYSTEM 0x000c0160
258#define HID_CP_CHANNELLEFT 0x000c0161
259#define HID_CP_CHANNELRIGHT 0x000c0162
260#define HID_CP_CHANNELCENTER 0x000c0163
261#define HID_CP_CHANNELFRONT 0x000c0164
262#define HID_CP_CHANNELCENTERFRONT 0x000c0165
263#define HID_CP_CHANNELSIDE 0x000c0166
264#define HID_CP_CHANNELSURROUND 0x000c0167
265#define HID_CP_CHANNELLOWFREQUENCYENHANCEMENT 0x000c0168
266#define HID_CP_CHANNELTOP 0x000c0169
267#define HID_CP_CHANNELUNKNOWN 0x000c016a
268#define HID_CP_APPLICATIONLAUNCHBUTTONS 0x000c0180
269#define HID_CP_GENERICGUIAPPLICATIONCONTROLS 0x000c0200
1a3f83f6 270
89f536cc
SC
271#define HID_DG_CONFIDENCE 0x000d0047
272#define HID_DG_WIDTH 0x000d0048
273#define HID_DG_HEIGHT 0x000d0049
274#define HID_DG_CONTACTID 0x000d0051
275#define HID_DG_INPUTMODE 0x000d0052
276#define HID_DG_DEVICEINDEX 0x000d0053
277#define HID_DG_CONTACTCOUNT 0x000d0054
278#define HID_DG_CONTACTMAX 0x000d0055
2c6e0277 279#define HID_DG_BUTTONTYPE 0x000d0059
368c9664
PC
280#define HID_DG_BARRELSWITCH2 0x000d005a
281#define HID_DG_TOOLSERIALNUMBER 0x000d005b
89f536cc 282
1da177e4
LT
283/*
284 * HID report types --- Ouch! HID spec says 1 2 3!
285 */
286
287#define HID_INPUT_REPORT 0
288#define HID_OUTPUT_REPORT 1
289#define HID_FEATURE_REPORT 2
290
39054a5a
DH
291#define HID_REPORT_TYPES 3
292
93c10132
JS
293/*
294 * HID connect requests
295 */
296
297#define HID_CONNECT_HIDINPUT 0x01
298#define HID_CONNECT_HIDINPUT_FORCE 0x02
299#define HID_CONNECT_HIDRAW 0x04
300#define HID_CONNECT_HIDDEV 0x08
301#define HID_CONNECT_HIDDEV_FORCE 0x10
302#define HID_CONNECT_FF 0x20
7704ac93 303#define HID_CONNECT_DRIVER 0x40
93c10132
JS
304#define HID_CONNECT_DEFAULT (HID_CONNECT_HIDINPUT|HID_CONNECT_HIDRAW| \
305 HID_CONNECT_HIDDEV|HID_CONNECT_FF)
306
1da177e4
LT
307/*
308 * HID device quirks.
309 */
310
876b9276
PW
311/*
312 * Increase this if you need to configure more HID quirks at module load time
313 */
314#define MAX_USBHID_BOOT_QUIRKS 4
315
eab9edd2
MH
316#define HID_QUIRK_INVERT 0x00000001
317#define HID_QUIRK_NOTOUCH 0x00000002
6f4303fb 318#define HID_QUIRK_IGNORE 0x00000004
eab9edd2 319#define HID_QUIRK_NOGET 0x00000008
b5e5a37e 320#define HID_QUIRK_HIDDEV_FORCE 0x00000010
eab9edd2
MH
321#define HID_QUIRK_BADPAD 0x00000020
322#define HID_QUIRK_MULTI_INPUT 0x00000040
3a343ee4 323#define HID_QUIRK_HIDINPUT_FORCE 0x00000080
4f22decf 324#define HID_QUIRK_NO_EMPTY_INPUT 0x00000100
595e9276 325#define HID_QUIRK_NO_INIT_INPUT_REPORTS 0x00000200
0b750b3b 326#define HID_QUIRK_ALWAYS_POLL 0x00000400
ea9a4a8b 327#define HID_QUIRK_SKIP_OUTPUT_REPORTS 0x00010000
e534a935
BT
328#define HID_QUIRK_SKIP_OUTPUT_REPORT_ID 0x00020000
329#define HID_QUIRK_NO_OUTPUT_REPORTS_ON_INTR_EP 0x00040000
f345c37c 330#define HID_QUIRK_FULLSPEED_INTERVAL 0x10000000
5b915d9e 331#define HID_QUIRK_NO_INIT_REPORTS 0x20000000
b5e5a37e 332#define HID_QUIRK_NO_IGNORE 0x40000000
24750f3e 333#define HID_QUIRK_NO_INPUT_SYNC 0x80000000
ea9a4a8b 334
734c6609
HR
335/*
336 * HID device groups
ba391e5a
BT
337 *
338 * Note: HID_GROUP_ANY is declared in linux/mod_devicetable.h
339 * and has a value of 0x0000
734c6609
HR
340 */
341#define HID_GROUP_GENERIC 0x0001
4fa3a583 342#define HID_GROUP_MULTITOUCH 0x0002
83499b52 343#define HID_GROUP_SENSOR_HUB 0x0003
f961bd35 344#define HID_GROUP_MULTITOUCH_WIN_8 0x0004
734c6609 345
ba391e5a
BT
346/*
347 * Vendor specific HID device groups
348 */
349#define HID_GROUP_RMI 0x0100
29b47391 350#define HID_GROUP_WACOM 0x0101
d610274b 351#define HID_GROUP_LOGITECH_DJ_DEVICE 0x0102
29b47391 352
1da177e4
LT
353/*
354 * This is the global environment of the parser. This information is
355 * persistent for main-items. The global environment can be saved and
356 * restored with PUSH/POP statements.
357 */
358
359struct hid_global {
360 unsigned usage_page;
361 __s32 logical_minimum;
362 __s32 logical_maximum;
363 __s32 physical_minimum;
364 __s32 physical_maximum;
365 __s32 unit_exponent;
366 unsigned unit;
367 unsigned report_id;
368 unsigned report_size;
369 unsigned report_count;
370};
371
372/*
373 * This is the local environment. It is persistent up the next main-item.
374 */
375
5f1ab74f 376#define HID_MAX_USAGES 12288
1da177e4
LT
377#define HID_DEFAULT_NUM_COLLECTIONS 16
378
379struct hid_local {
380 unsigned usage[HID_MAX_USAGES]; /* usage array */
381 unsigned collection_index[HID_MAX_USAGES]; /* collection index array */
382 unsigned usage_index;
383 unsigned usage_minimum;
384 unsigned delimiter_depth;
385 unsigned delimiter_branch;
386};
387
388/*
389 * This is the collection stack. We climb up the stack to determine
390 * application and function of each field.
391 */
392
393struct hid_collection {
394 unsigned type;
395 unsigned usage;
396 unsigned level;
397};
398
399struct hid_usage {
400 unsigned hid; /* hid usage code */
401 unsigned collection_index; /* index into collection array */
f262d1fa 402 unsigned usage_index; /* index into usage array */
1da177e4
LT
403 /* hidinput data */
404 __u16 code; /* input driver code */
405 __u8 type; /* input driver type */
406 __s8 hat_min; /* hat switch fun */
407 __s8 hat_max; /* ditto */
408 __s8 hat_dir; /* ditto */
409};
410
411struct hid_input;
412
413struct hid_field {
414 unsigned physical; /* physical usage for this field */
415 unsigned logical; /* logical usage for this field */
416 unsigned application; /* application usage for this field */
417 struct hid_usage *usage; /* usage table for this function */
418 unsigned maxusage; /* maximum usage index */
419 unsigned flags; /* main-item flags (i.e. volatile,array,constant) */
420 unsigned report_offset; /* bit offset in the report */
421 unsigned report_size; /* size of this field in the report */
422 unsigned report_count; /* number of this field in the report */
423 unsigned report_type; /* (input,output,feature) */
424 __s32 *value; /* last known value(s) */
425 __s32 logical_minimum;
426 __s32 logical_maximum;
427 __s32 physical_minimum;
428 __s32 physical_maximum;
429 __s32 unit_exponent;
430 unsigned unit;
431 struct hid_report *report; /* associated report */
432 unsigned index; /* index into report->field[] */
433 /* hidinput data */
434 struct hid_input *hidinput; /* associated input structure */
435 __u16 dpad; /* dpad input code */
436};
437
7e55bded 438#define HID_MAX_FIELDS 256
1da177e4
LT
439
440struct hid_report {
441 struct list_head list;
442 unsigned id; /* id of this report */
443 unsigned type; /* report type */
444 struct hid_field *field[HID_MAX_FIELDS]; /* fields of the report */
445 unsigned maxfield; /* maximum valid field index */
446 unsigned size; /* size of the report (bits) */
447 struct hid_device *device; /* associated device */
448};
449
43622021
KC
450#define HID_MAX_IDS 256
451
1da177e4
LT
452struct hid_report_enum {
453 unsigned numbered;
454 struct list_head report_list;
43622021 455 struct hid_report *report_id_hash[HID_MAX_IDS];
1da177e4
LT
456};
457
bf0964dc
MH
458#define HID_MIN_BUFFER_SIZE 64 /* make sure there is at least a packet size of space */
459#define HID_MAX_BUFFER_SIZE 4096 /* 4kb */
1da177e4
LT
460#define HID_CONTROL_FIFO_SIZE 256 /* to init devices with >100 reports */
461#define HID_OUTPUT_FIFO_SIZE 64
462
463struct hid_control_fifo {
464 unsigned char dir;
465 struct hid_report *report;
f129ea6d
AH
466 char *raw_report;
467};
468
469struct hid_output_fifo {
470 struct hid_report *report;
471 char *raw_report;
1da177e4
LT
472};
473
474#define HID_CLAIMED_INPUT 1
475#define HID_CLAIMED_HIDDEV 2
86166b7b 476#define HID_CLAIMED_HIDRAW 4
7704ac93 477#define HID_CLAIMED_DRIVER 8
1da177e4 478
85cdaf52 479#define HID_STAT_ADDED 1
c500c971 480#define HID_STAT_PARSED 2
85cdaf52 481
1da177e4
LT
482struct hid_input {
483 struct list_head list;
484 struct hid_report *report;
c5b7c7c3 485 struct input_dev *input;
1da177e4
LT
486};
487
a73a6370
JS
488enum hid_type {
489 HID_TYPE_OTHER = 0,
6dc1418e
TS
490 HID_TYPE_USBMOUSE,
491 HID_TYPE_USBNONE
a73a6370
JS
492};
493
85cdaf52 494struct hid_driver;
c500c971 495struct hid_ll_driver;
85cdaf52 496
1da177e4 497struct hid_device { /* device report descriptor */
a7197c2e
HR
498 __u8 *dev_rdesc;
499 unsigned dev_rsize;
85cdaf52 500 __u8 *rdesc;
1da177e4
LT
501 unsigned rsize;
502 struct hid_collection *collection; /* List of HID collections */
503 unsigned collection_size; /* Number of allocated hid_collections */
504 unsigned maxcollection; /* Number of parsed collections */
505 unsigned maxapplication; /* Number of applications */
85cdaf52 506 __u16 bus; /* BUS ID */
4d53b801 507 __u16 group; /* Report group */
85cdaf52
JS
508 __u32 vendor; /* Vendor ID */
509 __u32 product; /* Product ID */
510 __u32 version; /* HID version */
a73a6370 511 enum hid_type type; /* device type (mouse, kbd, ...) */
1da177e4
LT
512 unsigned country; /* HID country */
513 struct hid_report_enum report_enum[HID_REPORT_TYPES];
50c9d75b 514 struct work_struct led_work; /* delayed LED worker */
1da177e4 515
c849a614
AR
516 struct semaphore driver_lock; /* protects the current driver, except during input */
517 struct semaphore driver_input_lock; /* protects the current driver */
85cdaf52
JS
518 struct device dev; /* device */
519 struct hid_driver *driver;
c500c971 520 struct hid_ll_driver *ll_driver;
1da177e4 521
4f5ca836
JF
522#ifdef CONFIG_HID_BATTERY_STRENGTH
523 /*
524 * Power supply information for HID devices which report
297d716f
KK
525 * battery strength. power_supply was successfully registered if
526 * battery is non-NULL.
4f5ca836 527 */
297d716f 528 struct power_supply *battery;
4f5ca836
JF
529 __s32 battery_min;
530 __s32 battery_max;
fb8ac91b 531 __s32 battery_report_type;
c5a92aa3 532 __s32 battery_report_id;
4f5ca836
JF
533#endif
534
85cdaf52 535 unsigned int status; /* see STAT flags above */
05f091ab 536 unsigned claimed; /* Claimed by hidinput, hiddev? */
1da177e4 537 unsigned quirks; /* Various quirks the device can pull on us */
c849a614 538 bool io_started; /* Protected by driver_lock. If IO has started */
1da177e4
LT
539
540 struct list_head inputs; /* The list of inputs */
541 void *hiddev; /* The hiddev structure */
86166b7b 542 void *hidraw;
1da177e4
LT
543 int minor; /* Hiddev minor number */
544
1da177e4
LT
545 int open; /* is the device open by anyone? */
546 char name[128]; /* Device name */
547 char phys[64]; /* Device physical location */
548 char uniq[64]; /* Device unique identifier (serial #) */
549
229695e5
JK
550 void *driver_data;
551
93c10132
JS
552 /* temporary hid_ff handling (until moved to the drivers) */
553 int (*ff_init)(struct hid_device *);
554
aa938f79 555 /* hiddev event handler */
93c10132 556 int (*hiddev_connect)(struct hid_device *, unsigned int);
c4c259bc 557 void (*hiddev_disconnect)(struct hid_device *);
aa938f79
JK
558 void (*hiddev_hid_event) (struct hid_device *, struct hid_field *field,
559 struct hid_usage *, __s32);
aa8de2f0 560 void (*hiddev_report_event) (struct hid_device *, struct hid_report *);
86166b7b 561
cd667ce2
JK
562 /* debugging support via debugfs */
563 unsigned short debug;
564 struct dentry *debug_dir;
565 struct dentry *debug_rdesc;
566 struct dentry *debug_events;
567 struct list_head debug_list;
1deb9d34 568 spinlock_t debug_list_lock;
cd667ce2 569 wait_queue_head_t debug_wait;
1da177e4
LT
570};
571
d8ce9bf5
GT
572#define to_hid_device(pdev) \
573 container_of(pdev, struct hid_device, dev)
574
85cdaf52
JS
575static inline void *hid_get_drvdata(struct hid_device *hdev)
576{
577 return dev_get_drvdata(&hdev->dev);
578}
579
580static inline void hid_set_drvdata(struct hid_device *hdev, void *data)
581{
582 dev_set_drvdata(&hdev->dev, data);
583}
584
1da177e4
LT
585#define HID_GLOBAL_STACK_SIZE 4
586#define HID_COLLECTION_STACK_SIZE 4
587
e39f2d59
AD
588#define HID_SCAN_FLAG_MT_WIN_8 BIT(0)
589#define HID_SCAN_FLAG_VENDOR_SPECIFIC BIT(1)
590#define HID_SCAN_FLAG_GD_POINTER BIT(2)
f961bd35 591
1da177e4
LT
592struct hid_parser {
593 struct hid_global global;
594 struct hid_global global_stack[HID_GLOBAL_STACK_SIZE];
595 unsigned global_stack_ptr;
596 struct hid_local local;
597 unsigned collection_stack[HID_COLLECTION_STACK_SIZE];
598 unsigned collection_stack_ptr;
599 struct hid_device *device;
f961bd35 600 unsigned scan_flags;
1da177e4
LT
601};
602
603struct hid_class_descriptor {
604 __u8 bDescriptorType;
01d7b369 605 __le16 wDescriptorLength;
1da177e4
LT
606} __attribute__ ((packed));
607
608struct hid_descriptor {
609 __u8 bLength;
610 __u8 bDescriptorType;
01d7b369 611 __le16 bcdHID;
1da177e4
LT
612 __u8 bCountryCode;
613 __u8 bNumDescriptors;
614
615 struct hid_class_descriptor desc[1];
616} __attribute__ ((packed));
617
070748ed
HR
618#define HID_DEVICE(b, g, ven, prod) \
619 .bus = (b), .group = (g), .vendor = (ven), .product = (prod)
620#define HID_USB_DEVICE(ven, prod) \
621 .bus = BUS_USB, .vendor = (ven), .product = (prod)
622#define HID_BLUETOOTH_DEVICE(ven, prod) \
623 .bus = BUS_BLUETOOTH, .vendor = (ven), .product = (prod)
9fb6bf02
BT
624#define HID_I2C_DEVICE(ven, prod) \
625 .bus = BUS_I2C, .vendor = (ven), .product = (prod)
85cdaf52
JS
626
627#define HID_REPORT_ID(rep) \
628 .report_type = (rep)
629#define HID_USAGE_ID(uhid, utype, ucode) \
630 .usage_hid = (uhid), .usage_type = (utype), .usage_code = (ucode)
631/* we don't want to catch types and codes equal to 0 */
632#define HID_TERMINATOR (HID_ANY_ID - 1)
633
634struct hid_report_id {
635 __u32 report_type;
636};
637struct hid_usage_id {
638 __u32 usage_hid;
639 __u32 usage_type;
640 __u32 usage_code;
641};
642
643/**
644 * struct hid_driver
645 * @name: driver name (e.g. "Footech_bar-wheel")
646 * @id_table: which devices is this driver for (must be non-NULL for probe
647 * to be called)
3a6f82f7
JS
648 * @dyn_list: list of dynamically added device ids
649 * @dyn_lock: lock protecting @dyn_list
85cdaf52
JS
650 * @probe: new device inserted
651 * @remove: device removed (NULL if not a hot-plug capable driver)
652 * @report_table: on which reports to call raw_event (NULL means all)
653 * @raw_event: if report in report_table, this hook is called (NULL means nop)
654 * @usage_table: on which events to call event (NULL means all)
655 * @event: if usage in usage_table, this hook is called (NULL means nop)
6d85d037 656 * @report: this hook is called after parsing a report (NULL means nop)
c500c971
JS
657 * @report_fixup: called before report descriptor parsing (NULL means nop)
658 * @input_mapping: invoked on input registering before mapping an usage
659 * @input_mapped: invoked on input registering after mapping an usage
9ebf3d76 660 * @input_configured: invoked just before the device is registered
0d2689c0 661 * @feature_mapping: invoked on feature registering
6a740aa4
BP
662 * @suspend: invoked on suspend (NULL means nop)
663 * @resume: invoked on resume if device was not reset (NULL means nop)
664 * @reset_resume: invoked on resume if device was reset (NULL means nop)
85cdaf52 665 *
c849a614
AR
666 * probe should return -errno on error, or 0 on success. During probe,
667 * input will not be passed to raw_event unless hid_device_io_start is
668 * called.
669 *
85cdaf52
JS
670 * raw_event and event should return 0 on no action performed, 1 when no
671 * further processing should be done and negative on error
c500c971
JS
672 *
673 * input_mapping shall return a negative value to completely ignore this usage
674 * (e.g. doubled or invalid usage), zero to continue with parsing of this
675 * usage by generic code (no special handling needed) or positive to skip
676 * generic parsing (needed special handling which was done in the hook already)
677 * input_mapped shall return negative to inform the layer that this usage
678 * should not be considered for further processing or zero to notify that
679 * no processing was performed and should be done in a generic manner
680 * Both these functions may be NULL which means the same behavior as returning
681 * zero from them.
85cdaf52
JS
682 */
683struct hid_driver {
684 char *name;
685 const struct hid_device_id *id_table;
686
3a6f82f7
JS
687 struct list_head dyn_list;
688 spinlock_t dyn_lock;
689
85cdaf52
JS
690 int (*probe)(struct hid_device *dev, const struct hid_device_id *id);
691 void (*remove)(struct hid_device *dev);
692
693 const struct hid_report_id *report_table;
694 int (*raw_event)(struct hid_device *hdev, struct hid_report *report,
695 u8 *data, int size);
696 const struct hid_usage_id *usage_table;
697 int (*event)(struct hid_device *hdev, struct hid_field *field,
698 struct hid_usage *usage, __s32 value);
6d85d037 699 void (*report)(struct hid_device *hdev, struct hid_report *report);
c500c971 700
73e4008d
NK
701 __u8 *(*report_fixup)(struct hid_device *hdev, __u8 *buf,
702 unsigned int *size);
c500c971
JS
703
704 int (*input_mapping)(struct hid_device *hdev,
705 struct hid_input *hidinput, struct hid_field *field,
706 struct hid_usage *usage, unsigned long **bit, int *max);
707 int (*input_mapped)(struct hid_device *hdev,
708 struct hid_input *hidinput, struct hid_field *field,
709 struct hid_usage *usage, unsigned long **bit, int *max);
9154301a
DT
710 int (*input_configured)(struct hid_device *hdev,
711 struct hid_input *hidinput);
0d2689c0 712 void (*feature_mapping)(struct hid_device *hdev,
f635bd11 713 struct hid_field *field,
0d2689c0 714 struct hid_usage *usage);
6a740aa4
BP
715#ifdef CONFIG_PM
716 int (*suspend)(struct hid_device *hdev, pm_message_t message);
717 int (*resume)(struct hid_device *hdev);
718 int (*reset_resume)(struct hid_device *hdev);
719#endif
85cdaf52
JS
720/* private: */
721 struct device_driver driver;
722};
723
ba91a967
GT
724#define to_hid_driver(pdrv) \
725 container_of(pdrv, struct hid_driver, driver)
726
c500c971
JS
727/**
728 * hid_ll_driver - low level driver callbacks
729 * @start: called on probe to start the device
730 * @stop: called on remove
731 * @open: called by input layer on open
732 * @close: called by input layer on close
c500c971
JS
733 * @parse: this method is called only once to parse the device data,
734 * shouldn't allocate anything to not leak memory
e90a6df8 735 * @request: send report request to device (e.g. feature report)
3373443b 736 * @wait: wait for buffered io to complete (send/recv reports)
b69d6536
BT
737 * @raw_request: send raw report request to device (e.g. feature report)
738 * @output_report: send output report to device
9684819b 739 * @idle: send idle request to device
c500c971
JS
740 */
741struct hid_ll_driver {
742 int (*start)(struct hid_device *hdev);
743 void (*stop)(struct hid_device *hdev);
744
745 int (*open)(struct hid_device *hdev);
746 void (*close)(struct hid_device *hdev);
747
0361a28d
ON
748 int (*power)(struct hid_device *hdev, int level);
749
c500c971 750 int (*parse)(struct hid_device *hdev);
e90a6df8
HR
751
752 void (*request)(struct hid_device *hdev,
753 struct hid_report *report, int reqtype);
754
3373443b
HR
755 int (*wait)(struct hid_device *hdev);
756
cd4dc082
FP
757 int (*raw_request) (struct hid_device *hdev, unsigned char reportnum,
758 __u8 *buf, size_t len, unsigned char rtype,
759 int reqtype);
760
761 int (*output_report) (struct hid_device *hdev, __u8 *buf, size_t len);
762
763 int (*idle)(struct hid_device *hdev, int report, int idle, int reqtype);
c500c971
JS
764};
765
0361a28d
ON
766#define PM_HINT_FULLON 1<<5
767#define PM_HINT_NORMAL 1<<1
768
1da177e4
LT
769/* Applications from HID Usage Tables 4/8/99 Version 1.1 */
770/* We ignore a few input applications that are not widely used */
8b0e58a7 771#define IS_INPUT_APPLICATION(a) (((a >= 0x00010000) && (a <= 0x00010008)) || (a == 0x00010080) || (a == 0x000c0001) || ((a >= 0x000d0002) && (a <= 0x000d0006)))
229695e5
JK
772
773/* HID core API */
58037eb9 774
58037eb9 775extern int hid_debug;
58037eb9 776
4529eefa 777extern bool hid_ignore(struct hid_device *);
85cdaf52
JS
778extern int hid_add_device(struct hid_device *);
779extern void hid_destroy_device(struct hid_device *);
780
781extern int __must_check __hid_register_driver(struct hid_driver *,
782 struct module *, const char *mod_name);
eb5589a8
PG
783
784/* use a define to avoid include chaining to get THIS_MODULE & friends */
785#define hid_register_driver(driver) \
786 __hid_register_driver(driver, THIS_MODULE, KBUILD_MODNAME)
787
85cdaf52
JS
788extern void hid_unregister_driver(struct hid_driver *);
789
4d02c58e
HS
790/**
791 * module_hid_driver() - Helper macro for registering a HID driver
792 * @__hid_driver: hid_driver struct
793 *
794 * Helper macro for HID drivers which do not do anything special in module
795 * init/exit. This eliminates a lot of boilerplate. Each module may only
796 * use this macro once, and calling it replaces module_init() and module_exit()
797 */
798#define module_hid_driver(__hid_driver) \
799 module_driver(__hid_driver, hid_register_driver, \
800 hid_unregister_driver)
801
7d12e780 802extern void hidinput_hid_event(struct hid_device *, struct hid_field *, struct hid_usage *, __s32);
1da177e4 803extern void hidinput_report_event(struct hid_device *hid, struct hid_report *report);
93c10132 804extern int hidinput_connect(struct hid_device *hid, unsigned int force);
1da177e4 805extern void hidinput_disconnect(struct hid_device *);
1da177e4 806
1da177e4 807int hid_set_field(struct hid_field *, unsigned, __s32);
aa8de2f0 808int hid_input_report(struct hid_device *, int type, u8 *, int, int);
dde5845a 809int hidinput_find_field(struct hid_device *hid, unsigned int type, unsigned int code, struct hid_field **field);
4371ea82
DK
810struct hid_field *hidinput_get_led_field(struct hid_device *hid);
811unsigned int hidinput_count_leds(struct hid_device *hid);
37cf6e6f 812__s32 hidinput_calc_abs_res(const struct hid_field *field, __u16 code);
dde5845a 813void hid_output_report(struct hid_report *report, __u8 *data);
4fa5a7f7 814void __hid_request(struct hid_device *hid, struct hid_report *rep, int reqtype);
27ce4050 815u8 *hid_alloc_report_buf(struct hid_report *report, gfp_t flags);
85cdaf52 816struct hid_device *hid_allocate_device(void);
90a006ab 817struct hid_report *hid_register_report(struct hid_device *device, unsigned type, unsigned id);
85cdaf52 818int hid_parse_report(struct hid_device *hid, __u8 *start, unsigned size);
331415ff
KC
819struct hid_report *hid_validate_values(struct hid_device *hid,
820 unsigned int type, unsigned int id,
821 unsigned int field_index,
822 unsigned int report_counts);
a7197c2e 823int hid_open_report(struct hid_device *device);
0361a28d 824int hid_check_keys_pressed(struct hid_device *hid);
93c10132 825int hid_connect(struct hid_device *hid, unsigned int connect_mask);
c4c259bc 826void hid_disconnect(struct hid_device *hid);
bbc21cfd
JF
827const struct hid_device_id *hid_match_id(struct hid_device *hdev,
828 const struct hid_device_id *id);
77463838 829s32 hid_snto32(__u32 value, unsigned n);
04fba786
GB
830__u32 hid_field_extract(const struct hid_device *hid, __u8 *report,
831 unsigned offset, unsigned n);
85cdaf52 832
c849a614
AR
833/**
834 * hid_device_io_start - enable HID input during probe, remove
835 *
836 * @hid - the device
837 *
838 * This should only be called during probe or remove and only be
839 * called by the thread calling probe or remove. It will allow
840 * incoming packets to be delivered to the driver.
841 */
842static inline void hid_device_io_start(struct hid_device *hid) {
843 if (hid->io_started) {
6c3f70ac 844 dev_warn(&hid->dev, "io already started\n");
c849a614
AR
845 return;
846 }
847 hid->io_started = true;
848 up(&hid->driver_input_lock);
849}
850
851/**
852 * hid_device_io_stop - disable HID input during probe, remove
853 *
854 * @hid - the device
855 *
856 * Should only be called after hid_device_io_start. It will prevent
857 * incoming packets from going to the driver for the duration of
858 * probe, remove. If called during probe, packets will still go to the
859 * driver after probe is complete. This function should only be called
860 * by the thread calling probe or remove.
861 */
862static inline void hid_device_io_stop(struct hid_device *hid) {
863 if (!hid->io_started) {
6c3f70ac 864 dev_warn(&hid->dev, "io already stopped\n");
c849a614
AR
865 return;
866 }
867 hid->io_started = false;
868 down(&hid->driver_input_lock);
869}
870
022e8c4d
JS
871/**
872 * hid_map_usage - map usage input bits
873 *
874 * @hidinput: hidinput which we are interested in
875 * @usage: usage to fill in
876 * @bit: pointer to input->{}bit (out parameter)
877 * @max: maximal valid usage->code to consider later (out parameter)
878 * @type: input event type (EV_KEY, EV_REL, ...)
879 * @c: code which corresponds to this usage and type
880 */
881static inline void hid_map_usage(struct hid_input *hidinput,
882 struct hid_usage *usage, unsigned long **bit, int *max,
883 __u8 type, __u16 c)
884{
885 struct input_dev *input = hidinput->input;
886
887 usage->type = type;
888 usage->code = c;
889
890 switch (type) {
891 case EV_ABS:
892 *bit = input->absbit;
893 *max = ABS_MAX;
894 break;
895 case EV_REL:
896 *bit = input->relbit;
897 *max = REL_MAX;
898 break;
899 case EV_KEY:
900 *bit = input->keybit;
901 *max = KEY_MAX;
902 break;
903 case EV_LED:
904 *bit = input->ledbit;
905 *max = LED_MAX;
906 break;
907 }
908}
909
910/**
911 * hid_map_usage_clear - map usage input bits and clear the input bit
912 *
913 * The same as hid_map_usage, except the @c bit is also cleared in supported
914 * bits (@bit).
915 */
916static inline void hid_map_usage_clear(struct hid_input *hidinput,
917 struct hid_usage *usage, unsigned long **bit, int *max,
918 __u8 type, __u16 c)
919{
920 hid_map_usage(hidinput, usage, bit, max, type, c);
921 clear_bit(c, *bit);
922}
923
c500c971
JS
924/**
925 * hid_parse - parse HW reports
926 *
927 * @hdev: hid device
928 *
929 * Call this from probe after you set up the device (if needed). Your
930 * report_fixup will be called (if non-NULL) after reading raw report from
931 * device before passing it to hid layer for real parsing.
932 */
933static inline int __must_check hid_parse(struct hid_device *hdev)
934{
a7197c2e 935 return hid_open_report(hdev);
c500c971
JS
936}
937
938/**
939 * hid_hw_start - start underlaying HW
940 *
941 * @hdev: hid device
93c10132 942 * @connect_mask: which outputs to connect, see HID_CONNECT_*
c500c971
JS
943 *
944 * Call this in probe function *after* hid_parse. This will setup HW buffers
945 * and start the device (if not deffered to device open). hid_hw_stop must be
25985edc 946 * called if this was successful.
c500c971 947 */
93c10132
JS
948static inline int __must_check hid_hw_start(struct hid_device *hdev,
949 unsigned int connect_mask)
c500c971 950{
93c10132
JS
951 int ret = hdev->ll_driver->start(hdev);
952 if (ret || !connect_mask)
953 return ret;
954 ret = hid_connect(hdev, connect_mask);
955 if (ret)
956 hdev->ll_driver->stop(hdev);
957 return ret;
c500c971
JS
958}
959
960/**
961 * hid_hw_stop - stop underlaying HW
962 *
963 * @hdev: hid device
964 *
965 * This is usually called from remove function or from probe when something
966 * failed and hid_hw_start was called already.
967 */
968static inline void hid_hw_stop(struct hid_device *hdev)
969{
c4c259bc 970 hid_disconnect(hdev);
c500c971
JS
971 hdev->ll_driver->stop(hdev);
972}
973
5bea7660
DT
974/**
975 * hid_hw_open - signal underlaying HW to start delivering events
976 *
977 * @hdev: hid device
978 *
979 * Tell underlying HW to start delivering events from the device.
980 * This function should be called sometime after successful call
981 * to hid_hiw_start().
982 */
983static inline int __must_check hid_hw_open(struct hid_device *hdev)
984{
985 return hdev->ll_driver->open(hdev);
986}
987
988/**
989 * hid_hw_close - signal underlaying HW to stop delivering events
990 *
991 * @hdev: hid device
992 *
993 * This function indicates that we are not interested in the events
994 * from this device anymore. Delivery of events may or may not stop,
995 * depending on the number of users still outstanding.
996 */
997static inline void hid_hw_close(struct hid_device *hdev)
998{
999 hdev->ll_driver->close(hdev);
1000}
1001
1002/**
1003 * hid_hw_power - requests underlying HW to go into given power mode
1004 *
1005 * @hdev: hid device
1006 * @level: requested power level (one of %PM_HINT_* defines)
1007 *
1008 * This function requests underlying hardware to enter requested power
1009 * mode.
1010 */
1011
1012static inline int hid_hw_power(struct hid_device *hdev, int level)
1013{
1014 return hdev->ll_driver->power ? hdev->ll_driver->power(hdev, level) : 0;
1015}
1016
e90a6df8
HR
1017
1018/**
1019 * hid_hw_request - send report request to device
1020 *
1021 * @hdev: hid device
1022 * @report: report to send
1023 * @reqtype: hid request type
1024 */
1025static inline void hid_hw_request(struct hid_device *hdev,
1026 struct hid_report *report, int reqtype)
1027{
1028 if (hdev->ll_driver->request)
4fa5a7f7
BT
1029 return hdev->ll_driver->request(hdev, report, reqtype);
1030
1031 __hid_request(hdev, report, reqtype);
e90a6df8
HR
1032}
1033
b69d6536
BT
1034/**
1035 * hid_hw_raw_request - send report request to device
1036 *
1037 * @hdev: hid device
1038 * @reportnum: report ID
1039 * @buf: in/out data to transfer
1040 * @len: length of buf
1041 * @rtype: HID report type
1042 * @reqtype: HID_REQ_GET_REPORT or HID_REQ_SET_REPORT
1043 *
1044 * @return: count of data transfered, negative if error
1045 *
1046 * Same behavior as hid_hw_request, but with raw buffers instead.
1047 */
1048static inline int hid_hw_raw_request(struct hid_device *hdev,
1049 unsigned char reportnum, __u8 *buf,
1050 size_t len, unsigned char rtype, int reqtype)
1051{
53182517
BT
1052 if (len < 1 || len > HID_MAX_BUFFER_SIZE || !buf)
1053 return -EINVAL;
1054
3c86726c 1055 return hdev->ll_driver->raw_request(hdev, reportnum, buf, len,
b69d6536 1056 rtype, reqtype);
b69d6536
BT
1057}
1058
1059/**
1060 * hid_hw_output_report - send output report to device
1061 *
1062 * @hdev: hid device
1063 * @buf: raw data to transfer
1064 * @len: length of buf
1065 *
1066 * @return: count of data transfered, negative if error
1067 */
1068static inline int hid_hw_output_report(struct hid_device *hdev, __u8 *buf,
1069 size_t len)
1070{
53182517
BT
1071 if (len < 1 || len > HID_MAX_BUFFER_SIZE || !buf)
1072 return -EINVAL;
1073
b69d6536
BT
1074 if (hdev->ll_driver->output_report)
1075 return hdev->ll_driver->output_report(hdev, buf, len);
1076
1077 return -ENOSYS;
1078}
1079
9684819b
BT
1080/**
1081 * hid_hw_idle - send idle request to device
1082 *
1083 * @hdev: hid device
1084 * @report: report to control
1085 * @idle: idle state
1086 * @reqtype: hid request type
1087 */
1088static inline int hid_hw_idle(struct hid_device *hdev, int report, int idle,
1089 int reqtype)
1090{
1091 if (hdev->ll_driver->idle)
1092 return hdev->ll_driver->idle(hdev, report, idle, reqtype);
1093
1094 return 0;
1095}
1096
3373443b
HR
1097/**
1098 * hid_hw_wait - wait for buffered io to complete
1099 *
1100 * @hdev: hid device
1101 */
1102static inline void hid_hw_wait(struct hid_device *hdev)
1103{
1104 if (hdev->ll_driver->wait)
1105 hdev->ll_driver->wait(hdev);
1106}
1107
dabb05c6
MM
1108/**
1109 * hid_report_len - calculate the report length
1110 *
1111 * @report: the report we want to know the length
1112 */
1113static inline int hid_report_len(struct hid_report *report)
1114{
1115 /* equivalent to DIV_ROUND_UP(report->size, 8) + !!(report->id > 0) */
1116 return ((report->size - 1) >> 3) + 1 + (report->id > 0);
1117}
1118
b6787242 1119int hid_report_raw_event(struct hid_device *hid, int type, u8 *data, int size,
85cdaf52
JS
1120 int interrupt);
1121
876b9276 1122/* HID quirks API */
2eb5dc30 1123u32 usbhid_lookup_quirk(const u16 idVendor, const u16 idProduct);
876b9276
PW
1124int usbhid_quirks_init(char **quirks_param);
1125void usbhid_quirks_exit(void);
2eb5dc30 1126
224ee88f
AH
1127#ifdef CONFIG_HID_PID
1128int hid_pidff_init(struct hid_device *hid);
1129#else
76483cf4 1130#define hid_pidff_init NULL
1da177e4 1131#endif
58037eb9 1132
4291ee30
JP
1133#define dbg_hid(format, arg...) \
1134do { \
1135 if (hid_debug) \
1136 printk(KERN_DEBUG "%s: " format, __FILE__, ##arg); \
1137} while (0)
1138
1139#define hid_printk(level, hid, fmt, arg...) \
1140 dev_printk(level, &(hid)->dev, fmt, ##arg)
1141#define hid_emerg(hid, fmt, arg...) \
1142 dev_emerg(&(hid)->dev, fmt, ##arg)
1143#define hid_crit(hid, fmt, arg...) \
1144 dev_crit(&(hid)->dev, fmt, ##arg)
1145#define hid_alert(hid, fmt, arg...) \
1146 dev_alert(&(hid)->dev, fmt, ##arg)
1147#define hid_err(hid, fmt, arg...) \
1148 dev_err(&(hid)->dev, fmt, ##arg)
1149#define hid_notice(hid, fmt, arg...) \
1150 dev_notice(&(hid)->dev, fmt, ##arg)
1151#define hid_warn(hid, fmt, arg...) \
1152 dev_warn(&(hid)->dev, fmt, ##arg)
1153#define hid_info(hid, fmt, arg...) \
1154 dev_info(&(hid)->dev, fmt, ##arg)
1155#define hid_dbg(hid, fmt, arg...) \
1156 dev_dbg(&(hid)->dev, fmt, ##arg)
1157
57d292bd 1158#endif