]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/input/tablet/wacom_wac.h
Input: wacom - fix some formatting issues
[mirror_ubuntu-artful-kernel.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,
3bea733a 53 CINTIQ,
0e1763f5 54 WACOM_BEE,
7ecfbfd3 55 WACOM_MO,
545f4e99 56 TABLETPC,
ec67bbed 57 TABLETPC2FG,
3bea733a
PC
58 MAX_TYPE
59};
60
61struct wacom_features {
e33da8a5 62 const char *name;
3bea733a
PC
63 int pktlen;
64 int x_max;
65 int y_max;
66 int pressure_max;
67 int distance_max;
68 int type;
ec67bbed
PC
69 int device_type;
70 int x_phy;
71 int y_phy;
72 unsigned char unit;
73 unsigned char unitExpo;
3bea733a
PC
74};
75
4492efff
PC
76struct wacom_shared {
77 bool stylus_in_proximity;
78};
79
3bea733a 80struct wacom_wac {
49b764ae 81 char name[64];
4ee1fc8e 82 unsigned char *data;
49b764ae
PC
83 int tool[2];
84 int id[2];
85 __u32 serial[2];
e33da8a5 86 struct wacom_features features;
4492efff 87 struct wacom_shared *shared;
3bea733a
PC
88};
89
90#endif