diff options
Diffstat (limited to 'usr/src/dkms_source_tree/wacom_wac.h')
| -rw-r--r-- | usr/src/dkms_source_tree/wacom_wac.h | 100 |
1 files changed, 100 insertions, 0 deletions
diff --git a/usr/src/dkms_source_tree/wacom_wac.h b/usr/src/dkms_source_tree/wacom_wac.h new file mode 100644 index 0000000..770909c --- /dev/null +++ b/usr/src/dkms_source_tree/wacom_wac.h | |||
| @@ -0,0 +1,100 @@ | |||
| 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 | #include <linux/types.h> | ||
| 13 | |||
| 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 | ||
| 20 | #define WACOM_PKGLEN_BBFUN 9 | ||
| 21 | #define WACOM_PKGLEN_INTUOS 10 | ||
| 22 | #define WACOM_PKGLEN_TPC1FG 5 | ||
| 23 | #define WACOM_PKGLEN_TPC2FG 14 | ||
| 24 | #define WACOM_PKGLEN_BBTOUCH 20 | ||
| 25 | |||
| 26 | /* device IDs */ | ||
| 27 | #define STYLUS_DEVICE_ID 0x02 | ||
| 28 | #define TOUCH_DEVICE_ID 0x03 | ||
| 29 | #define CURSOR_DEVICE_ID 0x06 | ||
| 30 | #define ERASER_DEVICE_ID 0x0A | ||
| 31 | #define PAD_DEVICE_ID 0x0F | ||
| 32 | |||
| 33 | /* 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 | |||
| 41 | /* largest reported tracking id */ | ||
| 42 | #define MAX_TRACKING_ID 0xfff | ||
| 43 | |||
| 44 | enum { | ||
| 45 | PENPARTNER = 0, | ||
| 46 | GRAPHIRE, | ||
| 47 | WACOM_G4, | ||
| 48 | PTU, | ||
| 49 | PL, | ||
| 50 | DTU, | ||
| 51 | INTUOS, | ||
| 52 | INTUOS3S, | ||
| 53 | INTUOS3, | ||
| 54 | INTUOS3L, | ||
| 55 | INTUOS4S, | ||
| 56 | INTUOS4, | ||
| 57 | INTUOS4L, | ||
| 58 | WACOM_21UX2, | ||
| 59 | CINTIQ, | ||
| 60 | WACOM_BEE, | ||
| 61 | WACOM_MO, | ||
| 62 | TABLETPC, | ||
| 63 | TABLETPC2FG, | ||
| 64 | BAMBOO_TOUCH, | ||
| 65 | BAMBOO_BOOT, | ||
| 66 | MAX_TYPE | ||
| 67 | }; | ||
| 68 | |||
| 69 | struct wacom_features { | ||
| 70 | const char *name; | ||
| 71 | int pktlen; | ||
| 72 | int x_max; | ||
| 73 | int y_max; | ||
| 74 | int pressure_max; | ||
| 75 | int distance_max; | ||
| 76 | int type; | ||
| 77 | int device_type; | ||
| 78 | int x_phy; | ||
| 79 | int y_phy; | ||
| 80 | unsigned char unit; | ||
| 81 | unsigned char unitExpo; | ||
| 82 | }; | ||
| 83 | |||
| 84 | struct wacom_shared { | ||
| 85 | bool stylus_in_proximity; | ||
| 86 | }; | ||
| 87 | |||
| 88 | struct wacom_wac { | ||
| 89 | char name[64]; | ||
| 90 | unsigned char *data; | ||
| 91 | int tool[3]; | ||
| 92 | int id[3]; | ||
| 93 | __u32 serial[2]; | ||
| 94 | int last_finger; | ||
| 95 | struct wacom_features features; | ||
| 96 | struct wacom_shared *shared; | ||
| 97 | struct input_dev *input; | ||
| 98 | }; | ||
| 99 | |||
| 100 | #endif | ||
