blob: 835f756b150c193fb9b46b4cd3ae6cccefa0a851 [file] [log] [blame]
Ping Cheng3bea7332006-07-13 18:01:36 -07001/*
Dmitry Torokhov4104d132007-05-07 16:16:29 -04002 * drivers/input/tablet/wacom_wac.h
Ping Cheng3bea7332006-07-13 18:01:36 -07003 *
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
Dmitry Torokhov51269fe2010-03-19 22:18:15 -070012#include <linux/types.h>
13
Ping Chengee545002009-12-15 00:35:24 -080014/* 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
Jason Childse33da8a2010-02-17 22:38:31 -080020#define WACOM_PKGLEN_BBFUN 9
21#define WACOM_PKGLEN_INTUOS 10
Ping Chengee545002009-12-15 00:35:24 -080022#define WACOM_PKGLEN_TPC1FG 5
Jason Childse33da8a2010-02-17 22:38:31 -080023#define WACOM_PKGLEN_TPC2FG 14
Ping Cheng4a880812010-09-05 12:25:40 -070024#define WACOM_PKGLEN_BBTOUCH 20
Ping Chengee545002009-12-15 00:35:24 -080025
Ping Chengec67bbe2009-12-15 00:35:24 -080026/* device IDs */
Ping Cheng3bea7332006-07-13 18:01:36 -070027#define STYLUS_DEVICE_ID 0x02
Ping Cheng545f4e92008-11-24 11:44:27 -050028#define TOUCH_DEVICE_ID 0x03
Ping Cheng3bea7332006-07-13 18:01:36 -070029#define CURSOR_DEVICE_ID 0x06
30#define ERASER_DEVICE_ID 0x0A
Ping Cheng80d4e8e2007-02-23 12:22:48 -080031#define PAD_DEVICE_ID 0x0F
Ping Cheng3bea7332006-07-13 18:01:36 -070032
Ping Chengcad74702009-12-15 00:35:25 -080033/* wacom data packet report IDs */
34#define WACOM_REPORT_PENABLED 2
35#define WACOM_REPORT_INTUOSREAD 5
36#define WACOM_REPORT_INTUOSWRITE 6
37#define WACOM_REPORT_INTUOSPAD 12
38#define WACOM_REPORT_TPC1FG 6
39#define WACOM_REPORT_TPC2FG 13
40
Henrik Rydbergbc73dd32010-09-05 12:26:16 -070041/* device quirks */
42#define WACOM_QUIRK_MULTI_INPUT 0x0001
Henrik Rydbergf4ccbef2010-09-05 12:57:13 -070043#define WACOM_QUIRK_BBTOUCH_LOWRES 0x0002
Henrik Rydbergbc73dd32010-09-05 12:26:16 -070044
Ping Cheng3bea7332006-07-13 18:01:36 -070045enum {
46 PENPARTNER = 0,
47 GRAPHIRE,
48 WACOM_G4,
49 PTU,
50 PL,
Ping Chengc8f2edc2010-06-28 01:10:51 -070051 DTU,
Ping Cheng4a880812010-09-05 12:25:40 -070052 BAMBOO_PT,
Ping Cheng3bea7332006-07-13 18:01:36 -070053 INTUOS,
Ping Cheng8d32e3a2006-09-26 13:34:47 -070054 INTUOS3S,
Ping Cheng3bea7332006-07-13 18:01:36 -070055 INTUOS3,
56 INTUOS3L,
Ping Cheng6f660f12009-05-08 18:30:33 -070057 INTUOS4S,
58 INTUOS4,
59 INTUOS4L,
Ping Cheng3a4b4aa2010-06-03 22:10:21 -070060 WACOM_21UX2,
Ping Cheng3bea7332006-07-13 18:01:36 -070061 CINTIQ,
Ping Cheng0e1763f2008-03-13 16:46:46 -040062 WACOM_BEE,
Ping Cheng7ecfbfd2007-06-14 23:32:48 -040063 WACOM_MO,
Ping Cheng545f4e92008-11-24 11:44:27 -050064 TABLETPC,
Ping Chengec67bbe2009-12-15 00:35:24 -080065 TABLETPC2FG,
Ping Cheng3bea7332006-07-13 18:01:36 -070066 MAX_TYPE
67};
68
69struct wacom_features {
Jason Childse33da8a2010-02-17 22:38:31 -080070 const char *name;
Ping Cheng3bea7332006-07-13 18:01:36 -070071 int pktlen;
72 int x_max;
73 int y_max;
74 int pressure_max;
75 int distance_max;
76 int type;
Ping Chengec67bbe2009-12-15 00:35:24 -080077 int device_type;
78 int x_phy;
79 int y_phy;
80 unsigned char unit;
81 unsigned char unitExpo;
Henrik Rydbergfed87e62010-09-05 12:25:11 -070082 int x_fuzz;
83 int y_fuzz;
84 int pressure_fuzz;
85 int distance_fuzz;
Henrik Rydbergbc73dd32010-09-05 12:26:16 -070086 unsigned quirks;
Ping Cheng3bea7332006-07-13 18:01:36 -070087};
88
Ping Cheng4492eff2010-03-19 22:18:15 -070089struct wacom_shared {
90 bool stylus_in_proximity;
Ping Chenga43c7c52011-03-12 20:34:42 -080091 bool touch_down;
Ping Cheng4492eff2010-03-19 22:18:15 -070092};
93
Ping Cheng3bea7332006-07-13 18:01:36 -070094struct wacom_wac {
Ping Cheng49b764a2010-02-20 00:53:49 -080095 char name[64];
Dmitry Torokhov4ee1fc82007-05-03 00:54:54 -040096 unsigned char *data;
Ping Cheng4fc19382011-03-12 20:33:33 -080097 int tool[2];
98 int id[2];
Ping Cheng49b764a2010-02-20 00:53:49 -080099 __u32 serial[2];
Jason Childse33da8a2010-02-17 22:38:31 -0800100 struct wacom_features features;
Ping Cheng4492eff2010-03-19 22:18:15 -0700101 struct wacom_shared *shared;
Dmitry Torokhov8da23fc2010-03-19 22:18:15 -0700102 struct input_dev *input;
Ping Cheng3bea7332006-07-13 18:01:36 -0700103};
104
105#endif