2 * drivers/input/tablet/wacom_wac.h
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
12 #include <linux/types.h>
14 /* maximum packet length for USB devices */
15 #define WACOM_PKGLEN_MAX 68
17 #define WACOM_NAME_MAX 64
19 /* packet length for individual models */
20 #define WACOM_PKGLEN_PENPRTN 7
21 #define WACOM_PKGLEN_GRAPHIRE 8
22 #define WACOM_PKGLEN_BBFUN 9
23 #define WACOM_PKGLEN_INTUOS 10
24 #define WACOM_PKGLEN_TPC1FG 5
25 #define WACOM_PKGLEN_TPC2FG 14
26 #define WACOM_PKGLEN_BBTOUCH 20
27 #define WACOM_PKGLEN_BBTOUCH3 64
28 #define WACOM_PKGLEN_BBPEN 10
29 #define WACOM_PKGLEN_WIRELESS 32
30 #define WACOM_PKGLEN_MTOUCH 62
31 #define WACOM_PKGLEN_MTTPC 40
32 #define WACOM_PKGLEN_DTUS 68
34 /* wacom data size per MT contact */
35 #define WACOM_BYTES_PER_MT_PACKET 11
36 #define WACOM_BYTES_PER_24HDT_PACKET 14
39 #define STYLUS_DEVICE_ID 0x02
40 #define TOUCH_DEVICE_ID 0x03
41 #define CURSOR_DEVICE_ID 0x06
42 #define ERASER_DEVICE_ID 0x0A
43 #define PAD_DEVICE_ID 0x0F
45 /* wacom data packet report IDs */
46 #define WACOM_REPORT_PENABLED 2
47 #define WACOM_REPORT_INTUOSREAD 5
48 #define WACOM_REPORT_INTUOSWRITE 6
49 #define WACOM_REPORT_INTUOSPAD 12
50 #define WACOM_REPORT_INTUOS5PAD 3
51 #define WACOM_REPORT_DTUSPAD 21
52 #define WACOM_REPORT_TPC1FG 6
53 #define WACOM_REPORT_TPC2FG 13
54 #define WACOM_REPORT_TPCMT 13
55 #define WACOM_REPORT_TPCHID 15
56 #define WACOM_REPORT_TPCST 16
57 #define WACOM_REPORT_DTUS 17
58 #define WACOM_REPORT_TPC1FGE 18
59 #define WACOM_REPORT_24HDT 1
60 #define WACOM_REPORT_WL 128
61 #define WACOM_REPORT_USB 192
64 #define WACOM_QUIRK_MULTI_INPUT 0x0001
65 #define WACOM_QUIRK_BBTOUCH_LOWRES 0x0002
66 #define WACOM_QUIRK_NO_INPUT 0x0004
67 #define WACOM_QUIRK_MONITOR 0x0008
103 TABLETPC
, /* add new TPC below */
111 struct wacom_features
{
125 unsigned char unitExpo
;
136 struct wacom_shared
{
137 bool stylus_in_proximity
;
139 /* for wireless device to access USB interfaces */
142 struct input_dev
*touch_input
;
146 char name
[WACOM_NAME_MAX
];
151 struct wacom_features features
;
152 struct wacom_shared
*shared
;
153 struct input_dev
*input
;
155 int battery_capacity
;
156 int num_contacts_left
;