]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/input/tablet/wacom_wac.h
Merge branch 'perf-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[net-next-2.6.git] / drivers / input / tablet / wacom_wac.h
CommitLineData
3bea733a 1/*
4104d13f 2 * drivers/input/tablet/wacom_wac.h
3bea733a
PC
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
51269fe8
DT
12#include <linux/types.h>
13
ee54500d
PC
14/* maximum packet length for USB devices */
15#define WACOM_PKGLEN_MAX 32
16
17/* packet length for individual models */
18#define WACOM_PKGLEN_PENPRTN 7
19#define WACOM_PKGLEN_GRAPHIRE 8
e33da8a5
JC
20#define WACOM_PKGLEN_BBFUN 9
21#define WACOM_PKGLEN_INTUOS 10
ee54500d 22#define WACOM_PKGLEN_TPC1FG 5
e33da8a5 23#define WACOM_PKGLEN_TPC2FG 14
ee54500d 24
ec67bbed 25/* device IDs */
3bea733a 26#define STYLUS_DEVICE_ID 0x02
545f4e99 27#define TOUCH_DEVICE_ID 0x03
3bea733a
PC
28#define CURSOR_DEVICE_ID 0x06
29#define ERASER_DEVICE_ID 0x0A
80d4e8e9 30#define PAD_DEVICE_ID 0x0F
3bea733a 31
cad74700
PC
32/* wacom data packet report IDs */
33#define WACOM_REPORT_PENABLED 2
34#define WACOM_REPORT_INTUOSREAD 5
35#define WACOM_REPORT_INTUOSWRITE 6
36#define WACOM_REPORT_INTUOSPAD 12
37#define WACOM_REPORT_TPC1FG 6
38#define WACOM_REPORT_TPC2FG 13
39
3bea733a
PC
40enum {
41 PENPARTNER = 0,
42 GRAPHIRE,
43 WACOM_G4,
44 PTU,
45 PL,
46 INTUOS,
8d32e3ae 47 INTUOS3S,
3bea733a
PC
48 INTUOS3,
49 INTUOS3L,
6f660f12
PC
50 INTUOS4S,
51 INTUOS4,
52 INTUOS4L,
3a4b4aaa 53 WACOM_21UX2,
3bea733a 54 CINTIQ,
0e1763f5 55 WACOM_BEE,
7ecfbfd3 56 WACOM_MO,
545f4e99 57 TABLETPC,
ec67bbed 58 TABLETPC2FG,
3bea733a
PC
59 MAX_TYPE
60};
61
62struct wacom_features {
e33da8a5 63 const char *name;
3bea733a
PC
64 int pktlen;
65 int x_max;
66 int y_max;
67 int pressure_max;
68 int distance_max;
69 int type;
ec67bbed
PC
70 int device_type;
71 int x_phy;
72 int y_phy;
73 unsigned char unit;
74 unsigned char unitExpo;
3bea733a
PC
75};
76
4492efff
PC
77struct wacom_shared {
78 bool stylus_in_proximity;
79};
80
3bea733a 81struct wacom_wac {
49b764ae 82 char name[64];
4ee1fc8e 83 unsigned char *data;
ab687b18
PC
84 int tool[3];
85 int id[3];
49b764ae 86 __u32 serial[2];
ab687b18 87 int last_finger;
e33da8a5 88 struct wacom_features features;
4492efff 89 struct wacom_shared *shared;
8da23fc1 90 struct input_dev *input;
3bea733a
PC
91};
92
93#endif