Merge branch 'fix/hda' into for-linus
[pandora-kernel.git] / drivers / input / tablet / wacom_wac.h
1 /*
2  * drivers/input/tablet/wacom_wac.h
3  *
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.
8  */
9 #ifndef WACOM_WAC_H
10 #define WACOM_WAC_H
11
12 /* maximum packet length for USB devices */
13 #define WACOM_PKGLEN_MAX        32
14
15 /* packet length for individual models */
16 #define WACOM_PKGLEN_PENPRTN     7
17 #define WACOM_PKGLEN_GRAPHIRE    8
18 #define WACOM_PKGLEN_BBFUN       9
19 #define WACOM_PKGLEN_INTUOS     10
20 #define WACOM_PKGLEN_PENABLED    8
21 #define WACOM_PKGLEN_TPC1FG      5
22 #define WACOM_PKGLEN_TPC2FG     14
23
24 /* device IDs */
25 #define STYLUS_DEVICE_ID        0x02
26 #define TOUCH_DEVICE_ID         0x03
27 #define CURSOR_DEVICE_ID        0x06
28 #define ERASER_DEVICE_ID        0x0A
29 #define PAD_DEVICE_ID           0x0F
30
31 /* wacom data packet report IDs */
32 #define WACOM_REPORT_PENABLED           2
33 #define WACOM_REPORT_INTUOSREAD         5
34 #define WACOM_REPORT_INTUOSWRITE        6
35 #define WACOM_REPORT_INTUOSPAD          12
36 #define WACOM_REPORT_TPC1FG             6
37 #define WACOM_REPORT_TPC2FG             13
38
39 enum {
40         PENPARTNER = 0,
41         GRAPHIRE,
42         WACOM_G4,
43         PTU,
44         PL,
45         INTUOS,
46         INTUOS3S,
47         INTUOS3,
48         INTUOS3L,
49         INTUOS4S,
50         INTUOS4,
51         INTUOS4L,
52         CINTIQ,
53         WACOM_BEE,
54         WACOM_MO,
55         TABLETPC,
56         TABLETPC2FG,
57         MAX_TYPE
58 };
59
60 struct wacom_features {
61         char *name;
62         int pktlen;
63         int x_max;
64         int y_max;
65         int pressure_max;
66         int distance_max;
67         int type;
68         int device_type;
69         int x_phy;
70         int y_phy;
71         unsigned char unit;
72         unsigned char unitExpo;
73 };
74
75 struct wacom_wac {
76         unsigned char *data;
77         int tool[2];
78         int id[2];
79         __u32 serial[2];
80         struct wacom_features *features;
81 };
82
83 #endif