Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 1 | /* |
Dmitry Torokhov | 4104d13 | 2007-05-07 16:16:29 -0400 | [diff] [blame] | 2 | * drivers/input/tablet/wacom_wac.c |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 3 | * |
Ping Cheng | ee54500 | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 4 | * USB Wacom tablet support - Wacom specific code |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 5 | * |
| 6 | */ |
| 7 | |
| 8 | /* |
| 9 | * This program is free software; you can redistribute it and/or modify |
| 10 | * it under the terms of the GNU General Public License as published by |
| 11 | * the Free Software Foundation; either version 2 of the License, or |
| 12 | * (at your option) any later version. |
| 13 | */ |
Dmitry Torokhov | 51269fe | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 14 | |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 15 | #include "wacom_wac.h" |
Dmitry Torokhov | 51269fe | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 16 | #include "wacom.h" |
Henrik Rydberg | 47c78e8 | 2010-11-27 09:16:48 +0100 | [diff] [blame] | 17 | #include <linux/input/mt.h> |
Aristeu Rozanski | 1483f55 | 2011-06-22 01:17:17 -0700 | [diff] [blame] | 18 | #include <linux/hid.h> |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 19 | |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 20 | /* resolution for penabled devices */ |
| 21 | #define WACOM_PL_RES 20 |
| 22 | #define WACOM_PENPRTN_RES 40 |
| 23 | #define WACOM_VOLITO_RES 50 |
| 24 | #define WACOM_GRAPHIRE_RES 80 |
| 25 | #define WACOM_INTUOS_RES 100 |
| 26 | #define WACOM_INTUOS3_RES 200 |
| 27 | |
Dmitry Torokhov | 95dd3b3 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 28 | static int wacom_penpartner_irq(struct wacom_wac *wacom) |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 29 | { |
| 30 | unsigned char *data = wacom->data; |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 31 | struct input_dev *input = wacom->input; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 32 | |
| 33 | switch (data[0]) { |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 34 | case 1: |
| 35 | if (data[5] & 0x80) { |
| 36 | wacom->tool[0] = (data[5] & 0x20) ? BTN_TOOL_RUBBER : BTN_TOOL_PEN; |
| 37 | wacom->id[0] = (data[5] & 0x20) ? ERASER_DEVICE_ID : STYLUS_DEVICE_ID; |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 38 | input_report_key(input, wacom->tool[0], 1); |
| 39 | input_report_abs(input, ABS_MISC, wacom->id[0]); /* report tool id */ |
Dmitry Torokhov | 252f776 | 2010-03-19 22:33:38 -0700 | [diff] [blame] | 40 | input_report_abs(input, ABS_X, get_unaligned_le16(&data[1])); |
| 41 | input_report_abs(input, ABS_Y, get_unaligned_le16(&data[3])); |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 42 | input_report_abs(input, ABS_PRESSURE, (signed char)data[6] + 127); |
| 43 | input_report_key(input, BTN_TOUCH, ((signed char)data[6] > -127)); |
| 44 | input_report_key(input, BTN_STYLUS, (data[5] & 0x40)); |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 45 | } else { |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 46 | input_report_key(input, wacom->tool[0], 0); |
| 47 | input_report_abs(input, ABS_MISC, 0); /* report tool id */ |
| 48 | input_report_abs(input, ABS_PRESSURE, -1); |
| 49 | input_report_key(input, BTN_TOUCH, 0); |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 50 | } |
| 51 | break; |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 52 | |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 53 | case 2: |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 54 | input_report_key(input, BTN_TOOL_PEN, 1); |
| 55 | input_report_abs(input, ABS_MISC, STYLUS_DEVICE_ID); /* report tool id */ |
Dmitry Torokhov | 252f776 | 2010-03-19 22:33:38 -0700 | [diff] [blame] | 56 | input_report_abs(input, ABS_X, get_unaligned_le16(&data[1])); |
| 57 | input_report_abs(input, ABS_Y, get_unaligned_le16(&data[3])); |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 58 | input_report_abs(input, ABS_PRESSURE, (signed char)data[6] + 127); |
| 59 | input_report_key(input, BTN_TOUCH, ((signed char)data[6] > -80) && !(data[5] & 0x20)); |
| 60 | input_report_key(input, BTN_STYLUS, (data[5] & 0x40)); |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 61 | break; |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 62 | |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 63 | default: |
| 64 | printk(KERN_INFO "wacom_penpartner_irq: received unknown report #%d\n", data[0]); |
| 65 | return 0; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 66 | } |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 67 | |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 68 | return 1; |
| 69 | } |
| 70 | |
Dmitry Torokhov | 95dd3b3 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 71 | static int wacom_pl_irq(struct wacom_wac *wacom) |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 72 | { |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 73 | struct wacom_features *features = &wacom->features; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 74 | unsigned char *data = wacom->data; |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 75 | struct input_dev *input = wacom->input; |
Ping Cheng | e34b9d2 | 2008-05-05 11:36:41 -0400 | [diff] [blame] | 76 | int prox, pressure; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 77 | |
Ping Cheng | cad7470 | 2009-12-15 00:35:25 -0800 | [diff] [blame] | 78 | if (data[0] != WACOM_REPORT_PENABLED) { |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 79 | dbg("wacom_pl_irq: received unknown report #%d", data[0]); |
| 80 | return 0; |
| 81 | } |
| 82 | |
| 83 | prox = data[1] & 0x40; |
| 84 | |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 85 | if (prox) { |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 86 | wacom->id[0] = ERASER_DEVICE_ID; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 87 | pressure = (signed char)((data[7] << 1) | ((data[4] >> 2) & 1)); |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 88 | if (features->pressure_max > 255) |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 89 | pressure = (pressure << 1) | ((data[4] >> 6) & 1); |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 90 | pressure += (features->pressure_max + 1) / 2; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 91 | |
| 92 | /* |
| 93 | * if going from out of proximity into proximity select between the eraser |
| 94 | * and the pen based on the state of the stylus2 button, choose eraser if |
| 95 | * pressed else choose pen. if not a proximity change from out to in, send |
| 96 | * an out of proximity for previous tool then a in for new tool. |
| 97 | */ |
| 98 | if (!wacom->tool[0]) { |
| 99 | /* Eraser bit set for DTF */ |
| 100 | if (data[1] & 0x10) |
| 101 | wacom->tool[1] = BTN_TOOL_RUBBER; |
| 102 | else |
| 103 | /* Going into proximity select tool */ |
| 104 | wacom->tool[1] = (data[4] & 0x20) ? BTN_TOOL_RUBBER : BTN_TOOL_PEN; |
| 105 | } else { |
| 106 | /* was entered with stylus2 pressed */ |
| 107 | if (wacom->tool[1] == BTN_TOOL_RUBBER && !(data[4] & 0x20)) { |
| 108 | /* report out proximity for previous tool */ |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 109 | input_report_key(input, wacom->tool[1], 0); |
| 110 | input_sync(input); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 111 | wacom->tool[1] = BTN_TOOL_PEN; |
| 112 | return 0; |
| 113 | } |
| 114 | } |
| 115 | if (wacom->tool[1] != BTN_TOOL_RUBBER) { |
| 116 | /* Unknown tool selected default to pen tool */ |
| 117 | wacom->tool[1] = BTN_TOOL_PEN; |
Ping Cheng | e34b9d2 | 2008-05-05 11:36:41 -0400 | [diff] [blame] | 118 | wacom->id[0] = STYLUS_DEVICE_ID; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 119 | } |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 120 | input_report_key(input, wacom->tool[1], prox); /* report in proximity for tool */ |
| 121 | input_report_abs(input, ABS_MISC, wacom->id[0]); /* report tool id */ |
| 122 | input_report_abs(input, ABS_X, data[3] | (data[2] << 7) | ((data[1] & 0x03) << 14)); |
| 123 | input_report_abs(input, ABS_Y, data[6] | (data[5] << 7) | ((data[4] & 0x03) << 14)); |
| 124 | input_report_abs(input, ABS_PRESSURE, pressure); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 125 | |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 126 | input_report_key(input, BTN_TOUCH, data[4] & 0x08); |
| 127 | input_report_key(input, BTN_STYLUS, data[4] & 0x10); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 128 | /* Only allow the stylus2 button to be reported for the pen tool. */ |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 129 | input_report_key(input, BTN_STYLUS2, (wacom->tool[1] == BTN_TOOL_PEN) && (data[4] & 0x20)); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 130 | } else { |
| 131 | /* report proximity-out of a (valid) tool */ |
| 132 | if (wacom->tool[1] != BTN_TOOL_RUBBER) { |
| 133 | /* Unknown tool selected default to pen tool */ |
| 134 | wacom->tool[1] = BTN_TOOL_PEN; |
| 135 | } |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 136 | input_report_key(input, wacom->tool[1], prox); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 137 | } |
| 138 | |
| 139 | wacom->tool[0] = prox; /* Save proximity state */ |
| 140 | return 1; |
| 141 | } |
| 142 | |
Dmitry Torokhov | 95dd3b3 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 143 | static int wacom_ptu_irq(struct wacom_wac *wacom) |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 144 | { |
| 145 | unsigned char *data = wacom->data; |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 146 | struct input_dev *input = wacom->input; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 147 | |
Ping Cheng | cad7470 | 2009-12-15 00:35:25 -0800 | [diff] [blame] | 148 | if (data[0] != WACOM_REPORT_PENABLED) { |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 149 | printk(KERN_INFO "wacom_ptu_irq: received unknown report #%d\n", data[0]); |
| 150 | return 0; |
| 151 | } |
| 152 | |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 153 | if (data[1] & 0x04) { |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 154 | input_report_key(input, BTN_TOOL_RUBBER, data[1] & 0x20); |
| 155 | input_report_key(input, BTN_TOUCH, data[1] & 0x08); |
Ping Cheng | e34b9d2 | 2008-05-05 11:36:41 -0400 | [diff] [blame] | 156 | wacom->id[0] = ERASER_DEVICE_ID; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 157 | } else { |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 158 | input_report_key(input, BTN_TOOL_PEN, data[1] & 0x20); |
| 159 | input_report_key(input, BTN_TOUCH, data[1] & 0x01); |
Ping Cheng | e34b9d2 | 2008-05-05 11:36:41 -0400 | [diff] [blame] | 160 | wacom->id[0] = STYLUS_DEVICE_ID; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 161 | } |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 162 | input_report_abs(input, ABS_MISC, wacom->id[0]); /* report tool id */ |
Dmitry Torokhov | 252f776 | 2010-03-19 22:33:38 -0700 | [diff] [blame] | 163 | input_report_abs(input, ABS_X, le16_to_cpup((__le16 *)&data[2])); |
| 164 | input_report_abs(input, ABS_Y, le16_to_cpup((__le16 *)&data[4])); |
| 165 | input_report_abs(input, ABS_PRESSURE, le16_to_cpup((__le16 *)&data[6])); |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 166 | input_report_key(input, BTN_STYLUS, data[1] & 0x02); |
| 167 | input_report_key(input, BTN_STYLUS2, data[1] & 0x10); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 168 | return 1; |
| 169 | } |
| 170 | |
Ping Cheng | c8f2edc | 2010-06-28 01:10:51 -0700 | [diff] [blame] | 171 | static int wacom_dtu_irq(struct wacom_wac *wacom) |
| 172 | { |
| 173 | struct wacom_features *features = &wacom->features; |
| 174 | char *data = wacom->data; |
| 175 | struct input_dev *input = wacom->input; |
| 176 | int prox = data[1] & 0x20, pressure; |
| 177 | |
| 178 | dbg("wacom_dtu_irq: received report #%d", data[0]); |
| 179 | |
| 180 | if (prox) { |
| 181 | /* Going into proximity select tool */ |
| 182 | wacom->tool[0] = (data[1] & 0x0c) ? BTN_TOOL_RUBBER : BTN_TOOL_PEN; |
| 183 | if (wacom->tool[0] == BTN_TOOL_PEN) |
| 184 | wacom->id[0] = STYLUS_DEVICE_ID; |
| 185 | else |
| 186 | wacom->id[0] = ERASER_DEVICE_ID; |
| 187 | } |
| 188 | input_report_key(input, BTN_STYLUS, data[1] & 0x02); |
| 189 | input_report_key(input, BTN_STYLUS2, data[1] & 0x10); |
| 190 | input_report_abs(input, ABS_X, le16_to_cpup((__le16 *)&data[2])); |
| 191 | input_report_abs(input, ABS_Y, le16_to_cpup((__le16 *)&data[4])); |
| 192 | pressure = ((data[7] & 0x01) << 8) | data[6]; |
| 193 | if (pressure < 0) |
| 194 | pressure = features->pressure_max + pressure + 1; |
| 195 | input_report_abs(input, ABS_PRESSURE, pressure); |
| 196 | input_report_key(input, BTN_TOUCH, data[1] & 0x05); |
| 197 | if (!prox) /* out-prox */ |
| 198 | wacom->id[0] = 0; |
| 199 | input_report_key(input, wacom->tool[0], prox); |
| 200 | input_report_abs(input, ABS_MISC, wacom->id[0]); |
| 201 | return 1; |
| 202 | } |
| 203 | |
Dmitry Torokhov | 95dd3b3 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 204 | static int wacom_graphire_irq(struct wacom_wac *wacom) |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 205 | { |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 206 | struct wacom_features *features = &wacom->features; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 207 | unsigned char *data = wacom->data; |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 208 | struct input_dev *input = wacom->input; |
Dmitry Torokhov | 252f776 | 2010-03-19 22:33:38 -0700 | [diff] [blame] | 209 | int prox; |
Ping Cheng | 3b57ca0 | 2010-03-04 21:50:59 -0800 | [diff] [blame] | 210 | int rw = 0; |
| 211 | int retval = 0; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 212 | |
Ping Cheng | cad7470 | 2009-12-15 00:35:25 -0800 | [diff] [blame] | 213 | if (data[0] != WACOM_REPORT_PENABLED) { |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 214 | dbg("wacom_graphire_irq: received unknown report #%d", data[0]); |
Ping Cheng | 3b57ca0 | 2010-03-04 21:50:59 -0800 | [diff] [blame] | 215 | goto exit; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 216 | } |
| 217 | |
Ping Cheng | 3b57ca0 | 2010-03-04 21:50:59 -0800 | [diff] [blame] | 218 | prox = data[1] & 0x80; |
| 219 | if (prox || wacom->id[0]) { |
| 220 | if (prox) { |
| 221 | switch ((data[1] >> 5) & 3) { |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 222 | |
| 223 | case 0: /* Pen */ |
| 224 | wacom->tool[0] = BTN_TOOL_PEN; |
Ping Cheng | e34b9d2 | 2008-05-05 11:36:41 -0400 | [diff] [blame] | 225 | wacom->id[0] = STYLUS_DEVICE_ID; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 226 | break; |
| 227 | |
| 228 | case 1: /* Rubber */ |
| 229 | wacom->tool[0] = BTN_TOOL_RUBBER; |
Ping Cheng | e34b9d2 | 2008-05-05 11:36:41 -0400 | [diff] [blame] | 230 | wacom->id[0] = ERASER_DEVICE_ID; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 231 | break; |
| 232 | |
| 233 | case 2: /* Mouse with wheel */ |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 234 | input_report_key(input, BTN_MIDDLE, data[1] & 0x04); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 235 | /* fall through */ |
| 236 | |
| 237 | case 3: /* Mouse without wheel */ |
| 238 | wacom->tool[0] = BTN_TOOL_MOUSE; |
Ping Cheng | e34b9d2 | 2008-05-05 11:36:41 -0400 | [diff] [blame] | 239 | wacom->id[0] = CURSOR_DEVICE_ID; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 240 | break; |
Ping Cheng | 3b57ca0 | 2010-03-04 21:50:59 -0800 | [diff] [blame] | 241 | } |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 242 | } |
Dmitry Torokhov | 252f776 | 2010-03-19 22:33:38 -0700 | [diff] [blame] | 243 | input_report_abs(input, ABS_X, le16_to_cpup((__le16 *)&data[2])); |
| 244 | input_report_abs(input, ABS_Y, le16_to_cpup((__le16 *)&data[4])); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 245 | if (wacom->tool[0] != BTN_TOOL_MOUSE) { |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 246 | input_report_abs(input, ABS_PRESSURE, data[6] | ((data[7] & 0x01) << 8)); |
| 247 | input_report_key(input, BTN_TOUCH, data[1] & 0x01); |
| 248 | input_report_key(input, BTN_STYLUS, data[1] & 0x02); |
| 249 | input_report_key(input, BTN_STYLUS2, data[1] & 0x04); |
Dmitry Torokhov | afb567e | 2010-04-13 23:08:58 -0700 | [diff] [blame] | 250 | } else { |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 251 | input_report_key(input, BTN_LEFT, data[1] & 0x01); |
| 252 | input_report_key(input, BTN_RIGHT, data[1] & 0x02); |
Ping Cheng | 3b57ca0 | 2010-03-04 21:50:59 -0800 | [diff] [blame] | 253 | if (features->type == WACOM_G4 || |
| 254 | features->type == WACOM_MO) { |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 255 | input_report_abs(input, ABS_DISTANCE, data[6] & 0x3f); |
Mike Auty | d9f66c1 | 2010-08-28 20:35:17 -0700 | [diff] [blame] | 256 | rw = (data[7] & 0x04) - (data[7] & 0x03); |
Ping Cheng | 3b57ca0 | 2010-03-04 21:50:59 -0800 | [diff] [blame] | 257 | } else { |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 258 | input_report_abs(input, ABS_DISTANCE, data[7] & 0x3f); |
Mike Auty | d9f66c1 | 2010-08-28 20:35:17 -0700 | [diff] [blame] | 259 | rw = -(signed char)data[6]; |
Ping Cheng | 3b57ca0 | 2010-03-04 21:50:59 -0800 | [diff] [blame] | 260 | } |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 261 | input_report_rel(input, REL_WHEEL, rw); |
Dmitry Torokhov | afb567e | 2010-04-13 23:08:58 -0700 | [diff] [blame] | 262 | } |
Ping Cheng | 3b57ca0 | 2010-03-04 21:50:59 -0800 | [diff] [blame] | 263 | |
| 264 | if (!prox) |
| 265 | wacom->id[0] = 0; |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 266 | input_report_abs(input, ABS_MISC, wacom->id[0]); /* report tool id */ |
| 267 | input_report_key(input, wacom->tool[0], prox); |
Ping Cheng | 998c454 | 2011-07-06 18:05:41 -0700 | [diff] [blame] | 268 | input_event(input, EV_MSC, MSC_SERIAL, 1); |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 269 | input_sync(input); /* sync last event */ |
Ping Cheng | 80d4e8e | 2007-02-23 12:22:48 -0800 | [diff] [blame] | 270 | } |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 271 | |
| 272 | /* send pad data */ |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 273 | switch (features->type) { |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 274 | case WACOM_G4: |
Ping Cheng | 3b57ca0 | 2010-03-04 21:50:59 -0800 | [diff] [blame] | 275 | prox = data[7] & 0xf8; |
| 276 | if (prox || wacom->id[1]) { |
Ping Cheng | e34b9d2 | 2008-05-05 11:36:41 -0400 | [diff] [blame] | 277 | wacom->id[1] = PAD_DEVICE_ID; |
Ping Cheng | 0bd10ef | 2011-07-06 18:05:42 -0700 | [diff] [blame] | 278 | input_report_key(input, BTN_BACK, (data[7] & 0x40)); |
| 279 | input_report_key(input, BTN_FORWARD, (data[7] & 0x80)); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 280 | rw = ((data[7] & 0x18) >> 3) - ((data[7] & 0x20) >> 3); |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 281 | input_report_rel(input, REL_WHEEL, rw); |
Ping Cheng | 3b57ca0 | 2010-03-04 21:50:59 -0800 | [diff] [blame] | 282 | if (!prox) |
| 283 | wacom->id[1] = 0; |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 284 | input_report_abs(input, ABS_MISC, wacom->id[1]); |
| 285 | input_event(input, EV_MSC, MSC_SERIAL, 0xf0); |
Ping Cheng | ab687b1 | 2010-04-05 23:07:41 -0700 | [diff] [blame] | 286 | retval = 1; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 287 | } |
Ping Cheng | 7ecfbfd | 2007-06-14 23:32:48 -0400 | [diff] [blame] | 288 | break; |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 289 | |
| 290 | case WACOM_MO: |
Ping Cheng | 3b57ca0 | 2010-03-04 21:50:59 -0800 | [diff] [blame] | 291 | prox = (data[7] & 0xf8) || data[8]; |
| 292 | if (prox || wacom->id[1]) { |
Ping Cheng | e34b9d2 | 2008-05-05 11:36:41 -0400 | [diff] [blame] | 293 | wacom->id[1] = PAD_DEVICE_ID; |
Ping Cheng | 0bd10ef | 2011-07-06 18:05:42 -0700 | [diff] [blame] | 294 | input_report_key(input, BTN_BACK, (data[7] & 0x08)); |
| 295 | input_report_key(input, BTN_LEFT, (data[7] & 0x20)); |
| 296 | input_report_key(input, BTN_FORWARD, (data[7] & 0x10)); |
| 297 | input_report_key(input, BTN_RIGHT, (data[7] & 0x40)); |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 298 | input_report_abs(input, ABS_WHEEL, (data[8] & 0x7f)); |
Ping Cheng | 3b57ca0 | 2010-03-04 21:50:59 -0800 | [diff] [blame] | 299 | if (!prox) |
| 300 | wacom->id[1] = 0; |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 301 | input_report_abs(input, ABS_MISC, wacom->id[1]); |
| 302 | input_event(input, EV_MSC, MSC_SERIAL, 0xf0); |
Ping Cheng | 8446001 | 2011-07-06 18:05:43 -0700 | [diff] [blame] | 303 | retval = 1; |
Ping Cheng | 7ecfbfd | 2007-06-14 23:32:48 -0400 | [diff] [blame] | 304 | } |
| 305 | break; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 306 | } |
Ping Cheng | 3b57ca0 | 2010-03-04 21:50:59 -0800 | [diff] [blame] | 307 | exit: |
| 308 | return retval; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 309 | } |
| 310 | |
Dmitry Torokhov | 95dd3b3 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 311 | static int wacom_intuos_inout(struct wacom_wac *wacom) |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 312 | { |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 313 | struct wacom_features *features = &wacom->features; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 314 | unsigned char *data = wacom->data; |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 315 | struct input_dev *input = wacom->input; |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 316 | int idx = 0; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 317 | |
| 318 | /* tool number */ |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 319 | if (features->type == INTUOS) |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 320 | idx = data[1] & 0x01; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 321 | |
| 322 | /* Enter report */ |
| 323 | if ((data[1] & 0xfc) == 0xc0) { |
| 324 | /* serial number of the tool */ |
| 325 | wacom->serial[idx] = ((data[3] & 0x0f) << 28) + |
| 326 | (data[4] << 20) + (data[5] << 12) + |
| 327 | (data[6] << 4) + (data[7] >> 4); |
| 328 | |
Ping Cheng | 493630b | 2010-06-22 11:21:34 -0700 | [diff] [blame] | 329 | wacom->id[idx] = (data[2] << 4) | (data[3] >> 4) | |
| 330 | ((data[7] & 0x0f) << 20) | ((data[8] & 0xf0) << 12); |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 331 | |
Ping Cheng | 493630b | 2010-06-22 11:21:34 -0700 | [diff] [blame] | 332 | switch (wacom->id[idx] & 0xfffff) { |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 333 | case 0x812: /* Inking pen */ |
| 334 | case 0x801: /* Intuos3 Inking pen */ |
Ping Cheng | 493630b | 2010-06-22 11:21:34 -0700 | [diff] [blame] | 335 | case 0x20802: /* Intuos4 Inking Pen */ |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 336 | case 0x012: |
| 337 | wacom->tool[idx] = BTN_TOOL_PENCIL; |
| 338 | break; |
| 339 | |
| 340 | case 0x822: /* Pen */ |
| 341 | case 0x842: |
| 342 | case 0x852: |
| 343 | case 0x823: /* Intuos3 Grip Pen */ |
| 344 | case 0x813: /* Intuos3 Classic Pen */ |
| 345 | case 0x885: /* Intuos3 Marker Pen */ |
Ping Cheng | 3a4b4aa | 2010-06-03 22:10:21 -0700 | [diff] [blame] | 346 | case 0x802: /* Intuos4 General Pen */ |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 347 | case 0x804: /* Intuos4 Marker Pen */ |
| 348 | case 0x40802: /* Intuos4 Classic Pen */ |
| 349 | case 0x022: |
| 350 | wacom->tool[idx] = BTN_TOOL_PEN; |
| 351 | break; |
| 352 | |
| 353 | case 0x832: /* Stroke pen */ |
| 354 | case 0x032: |
| 355 | wacom->tool[idx] = BTN_TOOL_BRUSH; |
| 356 | break; |
| 357 | |
| 358 | case 0x007: /* Mouse 4D and 2D */ |
| 359 | case 0x09c: |
| 360 | case 0x094: |
| 361 | case 0x017: /* Intuos3 2D Mouse */ |
| 362 | case 0x806: /* Intuos4 Mouse */ |
| 363 | wacom->tool[idx] = BTN_TOOL_MOUSE; |
| 364 | break; |
| 365 | |
| 366 | case 0x096: /* Lens cursor */ |
| 367 | case 0x097: /* Intuos3 Lens cursor */ |
| 368 | case 0x006: /* Intuos4 Lens cursor */ |
| 369 | wacom->tool[idx] = BTN_TOOL_LENS; |
| 370 | break; |
| 371 | |
| 372 | case 0x82a: /* Eraser */ |
| 373 | case 0x85a: |
| 374 | case 0x91a: |
| 375 | case 0xd1a: |
| 376 | case 0x0fa: |
| 377 | case 0x82b: /* Intuos3 Grip Pen Eraser */ |
| 378 | case 0x81b: /* Intuos3 Classic Pen Eraser */ |
| 379 | case 0x91b: /* Intuos3 Airbrush Eraser */ |
| 380 | case 0x80c: /* Intuos4 Marker Pen Eraser */ |
Ping Cheng | 3a4b4aa | 2010-06-03 22:10:21 -0700 | [diff] [blame] | 381 | case 0x80a: /* Intuos4 General Pen Eraser */ |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 382 | case 0x4080a: /* Intuos4 Classic Pen Eraser */ |
| 383 | case 0x90a: /* Intuos4 Airbrush Eraser */ |
| 384 | wacom->tool[idx] = BTN_TOOL_RUBBER; |
| 385 | break; |
| 386 | |
| 387 | case 0xd12: |
| 388 | case 0x912: |
| 389 | case 0x112: |
| 390 | case 0x913: /* Intuos3 Airbrush */ |
| 391 | case 0x902: /* Intuos4 Airbrush */ |
| 392 | wacom->tool[idx] = BTN_TOOL_AIRBRUSH; |
| 393 | break; |
| 394 | |
| 395 | default: /* Unknown tool */ |
| 396 | wacom->tool[idx] = BTN_TOOL_PEN; |
| 397 | break; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 398 | } |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 399 | return 1; |
| 400 | } |
| 401 | |
Ping Cheng | 3a4b4aa | 2010-06-03 22:10:21 -0700 | [diff] [blame] | 402 | /* older I4 styli don't work with new Cintiqs */ |
| 403 | if (!((wacom->id[idx] >> 20) & 0x01) && |
| 404 | (features->type == WACOM_21UX2)) |
| 405 | return 1; |
| 406 | |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 407 | /* Exit report */ |
| 408 | if ((data[1] & 0xfe) == 0x80) { |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 409 | /* |
| 410 | * Reset all states otherwise we lose the initial states |
| 411 | * when in-prox next time |
| 412 | */ |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 413 | input_report_abs(input, ABS_X, 0); |
| 414 | input_report_abs(input, ABS_Y, 0); |
| 415 | input_report_abs(input, ABS_DISTANCE, 0); |
| 416 | input_report_abs(input, ABS_TILT_X, 0); |
| 417 | input_report_abs(input, ABS_TILT_Y, 0); |
Ping Cheng | 80d4e8e | 2007-02-23 12:22:48 -0800 | [diff] [blame] | 418 | if (wacom->tool[idx] >= BTN_TOOL_MOUSE) { |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 419 | input_report_key(input, BTN_LEFT, 0); |
| 420 | input_report_key(input, BTN_MIDDLE, 0); |
| 421 | input_report_key(input, BTN_RIGHT, 0); |
| 422 | input_report_key(input, BTN_SIDE, 0); |
| 423 | input_report_key(input, BTN_EXTRA, 0); |
| 424 | input_report_abs(input, ABS_THROTTLE, 0); |
| 425 | input_report_abs(input, ABS_RZ, 0); |
Ping Cheng | 7ecfbfd | 2007-06-14 23:32:48 -0400 | [diff] [blame] | 426 | } else { |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 427 | input_report_abs(input, ABS_PRESSURE, 0); |
| 428 | input_report_key(input, BTN_STYLUS, 0); |
| 429 | input_report_key(input, BTN_STYLUS2, 0); |
| 430 | input_report_key(input, BTN_TOUCH, 0); |
| 431 | input_report_abs(input, ABS_WHEEL, 0); |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 432 | if (features->type >= INTUOS3S) |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 433 | input_report_abs(input, ABS_Z, 0); |
Ping Cheng | 8d32e3a | 2006-09-26 13:34:47 -0700 | [diff] [blame] | 434 | } |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 435 | input_report_key(input, wacom->tool[idx], 0); |
| 436 | input_report_abs(input, ABS_MISC, 0); /* reset tool id */ |
| 437 | input_event(input, EV_MSC, MSC_SERIAL, wacom->serial[idx]); |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 438 | wacom->id[idx] = 0; |
Ping Cheng | 80d4e8e | 2007-02-23 12:22:48 -0800 | [diff] [blame] | 439 | return 2; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 440 | } |
| 441 | return 0; |
| 442 | } |
| 443 | |
Dmitry Torokhov | 95dd3b3 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 444 | static void wacom_intuos_general(struct wacom_wac *wacom) |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 445 | { |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 446 | struct wacom_features *features = &wacom->features; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 447 | unsigned char *data = wacom->data; |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 448 | struct input_dev *input = wacom->input; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 449 | unsigned int t; |
| 450 | |
| 451 | /* general pen packet */ |
| 452 | if ((data[1] & 0xb8) == 0xa0) { |
| 453 | t = (data[6] << 2) | ((data[7] >> 6) & 3); |
Aristeu Rozanski | ca047fe | 2010-10-10 14:12:33 -0700 | [diff] [blame] | 454 | if ((features->type >= INTUOS4S && features->type <= INTUOS4L) || |
| 455 | features->type == WACOM_21UX2) { |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 456 | t = (t << 1) | (data[1] & 1); |
Aristeu Rozanski | ca047fe | 2010-10-10 14:12:33 -0700 | [diff] [blame] | 457 | } |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 458 | input_report_abs(input, ABS_PRESSURE, t); |
| 459 | input_report_abs(input, ABS_TILT_X, |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 460 | ((data[7] << 1) & 0x7e) | (data[8] >> 7)); |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 461 | input_report_abs(input, ABS_TILT_Y, data[8] & 0x7f); |
| 462 | input_report_key(input, BTN_STYLUS, data[1] & 2); |
| 463 | input_report_key(input, BTN_STYLUS2, data[1] & 4); |
| 464 | input_report_key(input, BTN_TOUCH, t > 10); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 465 | } |
| 466 | |
| 467 | /* airbrush second packet */ |
| 468 | if ((data[1] & 0xbc) == 0xb4) { |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 469 | input_report_abs(input, ABS_WHEEL, |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 470 | (data[6] << 2) | ((data[7] >> 6) & 3)); |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 471 | input_report_abs(input, ABS_TILT_X, |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 472 | ((data[7] << 1) & 0x7e) | (data[8] >> 7)); |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 473 | input_report_abs(input, ABS_TILT_Y, data[8] & 0x7f); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 474 | } |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 475 | } |
| 476 | |
Dmitry Torokhov | 95dd3b3 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 477 | static int wacom_intuos_irq(struct wacom_wac *wacom) |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 478 | { |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 479 | struct wacom_features *features = &wacom->features; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 480 | unsigned char *data = wacom->data; |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 481 | struct input_dev *input = wacom->input; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 482 | unsigned int t; |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 483 | int idx = 0, result; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 484 | |
Ping Cheng | cad7470 | 2009-12-15 00:35:25 -0800 | [diff] [blame] | 485 | if (data[0] != WACOM_REPORT_PENABLED && data[0] != WACOM_REPORT_INTUOSREAD |
| 486 | && data[0] != WACOM_REPORT_INTUOSWRITE && data[0] != WACOM_REPORT_INTUOSPAD) { |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 487 | dbg("wacom_intuos_irq: received unknown report #%d", data[0]); |
| 488 | return 0; |
| 489 | } |
| 490 | |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 491 | /* tool number */ |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 492 | if (features->type == INTUOS) |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 493 | idx = data[1] & 0x01; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 494 | |
| 495 | /* pad packets. Works as a second tool and is always in prox */ |
Ping Cheng | cad7470 | 2009-12-15 00:35:25 -0800 | [diff] [blame] | 496 | if (data[0] == WACOM_REPORT_INTUOSPAD) { |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 497 | if (features->type >= INTUOS4S && features->type <= INTUOS4L) { |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 498 | input_report_key(input, BTN_0, (data[2] & 0x01)); |
| 499 | input_report_key(input, BTN_1, (data[3] & 0x01)); |
| 500 | input_report_key(input, BTN_2, (data[3] & 0x02)); |
| 501 | input_report_key(input, BTN_3, (data[3] & 0x04)); |
| 502 | input_report_key(input, BTN_4, (data[3] & 0x08)); |
| 503 | input_report_key(input, BTN_5, (data[3] & 0x10)); |
| 504 | input_report_key(input, BTN_6, (data[3] & 0x20)); |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 505 | if (data[1] & 0x80) { |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 506 | input_report_abs(input, ABS_WHEEL, (data[1] & 0x7f)); |
Ping Cheng | a862952 | 2009-06-02 16:59:58 -0700 | [diff] [blame] | 507 | } else { |
| 508 | /* Out of proximity, clear wheel value. */ |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 509 | input_report_abs(input, ABS_WHEEL, 0); |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 510 | } |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 511 | if (features->type != INTUOS4S) { |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 512 | input_report_key(input, BTN_7, (data[3] & 0x40)); |
| 513 | input_report_key(input, BTN_8, (data[3] & 0x80)); |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 514 | } |
| 515 | if (data[1] | (data[2] & 0x01) | data[3]) { |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 516 | input_report_key(input, wacom->tool[1], 1); |
| 517 | input_report_abs(input, ABS_MISC, PAD_DEVICE_ID); |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 518 | } else { |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 519 | input_report_key(input, wacom->tool[1], 0); |
| 520 | input_report_abs(input, ABS_MISC, 0); |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 521 | } |
| 522 | } else { |
Ping Cheng | 3a4b4aa | 2010-06-03 22:10:21 -0700 | [diff] [blame] | 523 | if (features->type == WACOM_21UX2) { |
| 524 | input_report_key(input, BTN_0, (data[5] & 0x01)); |
| 525 | input_report_key(input, BTN_1, (data[6] & 0x01)); |
| 526 | input_report_key(input, BTN_2, (data[6] & 0x02)); |
| 527 | input_report_key(input, BTN_3, (data[6] & 0x04)); |
| 528 | input_report_key(input, BTN_4, (data[6] & 0x08)); |
| 529 | input_report_key(input, BTN_5, (data[6] & 0x10)); |
| 530 | input_report_key(input, BTN_6, (data[6] & 0x20)); |
| 531 | input_report_key(input, BTN_7, (data[6] & 0x40)); |
| 532 | input_report_key(input, BTN_8, (data[6] & 0x80)); |
| 533 | input_report_key(input, BTN_9, (data[7] & 0x01)); |
| 534 | input_report_key(input, BTN_A, (data[8] & 0x01)); |
| 535 | input_report_key(input, BTN_B, (data[8] & 0x02)); |
| 536 | input_report_key(input, BTN_C, (data[8] & 0x04)); |
| 537 | input_report_key(input, BTN_X, (data[8] & 0x08)); |
| 538 | input_report_key(input, BTN_Y, (data[8] & 0x10)); |
| 539 | input_report_key(input, BTN_Z, (data[8] & 0x20)); |
| 540 | input_report_key(input, BTN_BASE, (data[8] & 0x40)); |
| 541 | input_report_key(input, BTN_BASE2, (data[8] & 0x80)); |
| 542 | } else { |
| 543 | input_report_key(input, BTN_0, (data[5] & 0x01)); |
| 544 | input_report_key(input, BTN_1, (data[5] & 0x02)); |
| 545 | input_report_key(input, BTN_2, (data[5] & 0x04)); |
| 546 | input_report_key(input, BTN_3, (data[5] & 0x08)); |
| 547 | input_report_key(input, BTN_4, (data[6] & 0x01)); |
| 548 | input_report_key(input, BTN_5, (data[6] & 0x02)); |
| 549 | input_report_key(input, BTN_6, (data[6] & 0x04)); |
| 550 | input_report_key(input, BTN_7, (data[6] & 0x08)); |
| 551 | input_report_key(input, BTN_8, (data[5] & 0x10)); |
| 552 | input_report_key(input, BTN_9, (data[6] & 0x10)); |
| 553 | } |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 554 | input_report_abs(input, ABS_RX, ((data[1] & 0x1f) << 8) | data[2]); |
| 555 | input_report_abs(input, ABS_RY, ((data[3] & 0x1f) << 8) | data[4]); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 556 | |
Ping Cheng | 493630b | 2010-06-22 11:21:34 -0700 | [diff] [blame] | 557 | if ((data[5] & 0x1f) | data[6] | (data[1] & 0x1f) | |
Ping Cheng | 3a4b4aa | 2010-06-03 22:10:21 -0700 | [diff] [blame] | 558 | data[2] | (data[3] & 0x1f) | data[4] | data[8] | |
| 559 | (data[7] & 0x01)) { |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 560 | input_report_key(input, wacom->tool[1], 1); |
| 561 | input_report_abs(input, ABS_MISC, PAD_DEVICE_ID); |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 562 | } else { |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 563 | input_report_key(input, wacom->tool[1], 0); |
| 564 | input_report_abs(input, ABS_MISC, 0); |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 565 | } |
| 566 | } |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 567 | input_event(input, EV_MSC, MSC_SERIAL, 0xffffffff); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 568 | return 1; |
| 569 | } |
| 570 | |
| 571 | /* process in/out prox events */ |
Dmitry Torokhov | 95dd3b3 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 572 | result = wacom_intuos_inout(wacom); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 573 | if (result) |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 574 | return result - 1; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 575 | |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 576 | /* don't proceed if we don't know the ID */ |
| 577 | if (!wacom->id[idx]) |
| 578 | return 0; |
| 579 | |
| 580 | /* Only large Intuos support Lense Cursor */ |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 581 | if (wacom->tool[idx] == BTN_TOOL_LENS && |
| 582 | (features->type == INTUOS3 || |
| 583 | features->type == INTUOS3S || |
| 584 | features->type == INTUOS4 || |
| 585 | features->type == INTUOS4S)) { |
| 586 | |
Ping Cheng | 80d4e8e | 2007-02-23 12:22:48 -0800 | [diff] [blame] | 587 | return 0; |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 588 | } |
Ping Cheng | 80d4e8e | 2007-02-23 12:22:48 -0800 | [diff] [blame] | 589 | |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 590 | /* Cintiq doesn't send data when RDY bit isn't set */ |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 591 | if (features->type == CINTIQ && !(data[1] & 0x40)) |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 592 | return 0; |
| 593 | |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 594 | if (features->type >= INTUOS3S) { |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 595 | input_report_abs(input, ABS_X, (data[2] << 9) | (data[3] << 1) | ((data[9] >> 1) & 1)); |
| 596 | input_report_abs(input, ABS_Y, (data[4] << 9) | (data[5] << 1) | (data[9] & 1)); |
| 597 | input_report_abs(input, ABS_DISTANCE, ((data[9] >> 2) & 0x3f)); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 598 | } else { |
Dmitry Torokhov | 252f776 | 2010-03-19 22:33:38 -0700 | [diff] [blame] | 599 | input_report_abs(input, ABS_X, be16_to_cpup((__be16 *)&data[2])); |
| 600 | input_report_abs(input, ABS_Y, be16_to_cpup((__be16 *)&data[4])); |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 601 | input_report_abs(input, ABS_DISTANCE, ((data[9] >> 3) & 0x1f)); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 602 | } |
| 603 | |
| 604 | /* process general packets */ |
Dmitry Torokhov | 95dd3b3 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 605 | wacom_intuos_general(wacom); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 606 | |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 607 | /* 4D mouse, 2D mouse, marker pen rotation, tilt mouse, or Lens cursor packets */ |
| 608 | if ((data[1] & 0xbc) == 0xa8 || (data[1] & 0xbe) == 0xb0 || (data[1] & 0xbc) == 0xac) { |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 609 | |
| 610 | if (data[1] & 0x02) { |
| 611 | /* Rotation packet */ |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 612 | if (features->type >= INTUOS3S) { |
Ping Cheng | 0e1763f | 2008-03-13 16:46:46 -0400 | [diff] [blame] | 613 | /* I3 marker pen rotation */ |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 614 | t = (data[6] << 3) | ((data[7] >> 5) & 7); |
| 615 | t = (data[7] & 0x20) ? ((t > 900) ? ((t-1) / 2 - 1350) : |
| 616 | ((t-1) / 2 + 450)) : (450 - t / 2) ; |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 617 | input_report_abs(input, ABS_Z, t); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 618 | } else { |
| 619 | /* 4D mouse rotation packet */ |
| 620 | t = (data[6] << 3) | ((data[7] >> 5) & 7); |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 621 | input_report_abs(input, ABS_RZ, (data[7] & 0x20) ? |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 622 | ((t - 1) / 2) : -t / 2); |
| 623 | } |
| 624 | |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 625 | } else if (!(data[1] & 0x10) && features->type < INTUOS3S) { |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 626 | /* 4D mouse packet */ |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 627 | input_report_key(input, BTN_LEFT, data[8] & 0x01); |
| 628 | input_report_key(input, BTN_MIDDLE, data[8] & 0x02); |
| 629 | input_report_key(input, BTN_RIGHT, data[8] & 0x04); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 630 | |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 631 | input_report_key(input, BTN_SIDE, data[8] & 0x20); |
| 632 | input_report_key(input, BTN_EXTRA, data[8] & 0x10); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 633 | t = (data[6] << 2) | ((data[7] >> 6) & 3); |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 634 | input_report_abs(input, ABS_THROTTLE, (data[8] & 0x08) ? -t : t); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 635 | |
| 636 | } else if (wacom->tool[idx] == BTN_TOOL_MOUSE) { |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 637 | /* I4 mouse */ |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 638 | if (features->type >= INTUOS4S && features->type <= INTUOS4L) { |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 639 | input_report_key(input, BTN_LEFT, data[6] & 0x01); |
| 640 | input_report_key(input, BTN_MIDDLE, data[6] & 0x02); |
| 641 | input_report_key(input, BTN_RIGHT, data[6] & 0x04); |
| 642 | input_report_rel(input, REL_WHEEL, ((data[7] & 0x80) >> 7) |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 643 | - ((data[7] & 0x40) >> 6)); |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 644 | input_report_key(input, BTN_SIDE, data[6] & 0x08); |
| 645 | input_report_key(input, BTN_EXTRA, data[6] & 0x10); |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 646 | |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 647 | input_report_abs(input, ABS_TILT_X, |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 648 | ((data[7] << 1) & 0x7e) | (data[8] >> 7)); |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 649 | input_report_abs(input, ABS_TILT_Y, data[8] & 0x7f); |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 650 | } else { |
| 651 | /* 2D mouse packet */ |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 652 | input_report_key(input, BTN_LEFT, data[8] & 0x04); |
| 653 | input_report_key(input, BTN_MIDDLE, data[8] & 0x08); |
| 654 | input_report_key(input, BTN_RIGHT, data[8] & 0x10); |
| 655 | input_report_rel(input, REL_WHEEL, (data[8] & 0x01) |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 656 | - ((data[8] & 0x02) >> 1)); |
| 657 | |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 658 | /* I3 2D mouse side buttons */ |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 659 | if (features->type >= INTUOS3S && features->type <= INTUOS3L) { |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 660 | input_report_key(input, BTN_SIDE, data[8] & 0x40); |
| 661 | input_report_key(input, BTN_EXTRA, data[8] & 0x20); |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 662 | } |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 663 | } |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 664 | } else if ((features->type < INTUOS3S || features->type == INTUOS3L || |
| 665 | features->type == INTUOS4L) && |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 666 | wacom->tool[idx] == BTN_TOOL_LENS) { |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 667 | /* Lens cursor packets */ |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 668 | input_report_key(input, BTN_LEFT, data[8] & 0x01); |
| 669 | input_report_key(input, BTN_MIDDLE, data[8] & 0x02); |
| 670 | input_report_key(input, BTN_RIGHT, data[8] & 0x04); |
| 671 | input_report_key(input, BTN_SIDE, data[8] & 0x10); |
| 672 | input_report_key(input, BTN_EXTRA, data[8] & 0x08); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 673 | } |
| 674 | } |
| 675 | |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 676 | input_report_abs(input, ABS_MISC, wacom->id[idx]); /* report tool id */ |
| 677 | input_report_key(input, wacom->tool[idx], 1); |
| 678 | input_event(input, EV_MSC, MSC_SERIAL, wacom->serial[idx]); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 679 | return 1; |
| 680 | } |
| 681 | |
Ping Cheng | 84eb5aa | 2011-03-12 20:35:18 -0800 | [diff] [blame] | 682 | static int wacom_tpc_mt_touch(struct wacom_wac *wacom) |
| 683 | { |
| 684 | struct input_dev *input = wacom->input; |
| 685 | unsigned char *data = wacom->data; |
| 686 | int contact_with_no_pen_down_count = 0; |
| 687 | int i; |
| 688 | |
| 689 | for (i = 0; i < 2; i++) { |
| 690 | int p = data[1] & (1 << i); |
| 691 | bool touch = p && !wacom->shared->stylus_in_proximity; |
| 692 | |
| 693 | input_mt_slot(input, i); |
| 694 | input_mt_report_slot_state(input, MT_TOOL_FINGER, touch); |
| 695 | if (touch) { |
| 696 | int x = le16_to_cpup((__le16 *)&data[i * 2 + 2]) & 0x7fff; |
| 697 | int y = le16_to_cpup((__le16 *)&data[i * 2 + 6]) & 0x7fff; |
| 698 | |
| 699 | input_report_abs(input, ABS_MT_POSITION_X, x); |
| 700 | input_report_abs(input, ABS_MT_POSITION_Y, y); |
| 701 | contact_with_no_pen_down_count++; |
| 702 | } |
| 703 | } |
| 704 | |
| 705 | /* keep touch state for pen event */ |
| 706 | wacom->shared->touch_down = (contact_with_no_pen_down_count > 0); |
| 707 | |
| 708 | input_mt_report_pointer_emulation(input, true); |
| 709 | |
| 710 | return 1; |
| 711 | } |
| 712 | |
Ping Cheng | a43c7c5 | 2011-03-12 20:34:42 -0800 | [diff] [blame] | 713 | static int wacom_tpc_single_touch(struct wacom_wac *wacom, size_t len) |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 714 | { |
| 715 | char *data = wacom->data; |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 716 | struct input_dev *input = wacom->input; |
Ping Cheng | a43c7c5 | 2011-03-12 20:34:42 -0800 | [diff] [blame] | 717 | bool prox; |
| 718 | int x = 0, y = 0; |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 719 | |
Ping Cheng | a43c7c5 | 2011-03-12 20:34:42 -0800 | [diff] [blame] | 720 | if (!wacom->shared->stylus_in_proximity) { |
| 721 | if (len == WACOM_PKGLEN_TPC1FG) { |
| 722 | prox = data[0] & 0x01; |
| 723 | x = get_unaligned_le16(&data[1]); |
| 724 | y = get_unaligned_le16(&data[3]); |
| 725 | } else { /* with capacity */ |
| 726 | prox = data[1] & 0x01; |
| 727 | x = le16_to_cpup((__le16 *)&data[2]); |
| 728 | y = le16_to_cpup((__le16 *)&data[4]); |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 729 | } |
Ping Cheng | a43c7c5 | 2011-03-12 20:34:42 -0800 | [diff] [blame] | 730 | } else |
| 731 | /* force touch out when pen is in prox */ |
| 732 | prox = 0; |
| 733 | |
| 734 | if (prox) { |
| 735 | input_report_abs(input, ABS_X, x); |
| 736 | input_report_abs(input, ABS_Y, y); |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 737 | } |
Ping Cheng | a43c7c5 | 2011-03-12 20:34:42 -0800 | [diff] [blame] | 738 | input_report_key(input, BTN_TOUCH, prox); |
| 739 | |
| 740 | /* keep touch state for pen events */ |
| 741 | wacom->shared->touch_down = prox; |
| 742 | |
| 743 | return 1; |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 744 | } |
| 745 | |
Ping Cheng | 8aa9a9a | 2011-03-12 20:34:11 -0800 | [diff] [blame] | 746 | static int wacom_tpc_pen(struct wacom_wac *wacom) |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 747 | { |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 748 | struct wacom_features *features = &wacom->features; |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 749 | char *data = wacom->data; |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 750 | struct input_dev *input = wacom->input; |
Ping Cheng | a43c7c5 | 2011-03-12 20:34:42 -0800 | [diff] [blame] | 751 | int pressure; |
| 752 | bool prox = data[1] & 0x20; |
Ping Cheng | 8aa9a9a | 2011-03-12 20:34:11 -0800 | [diff] [blame] | 753 | |
Ping Cheng | a43c7c5 | 2011-03-12 20:34:42 -0800 | [diff] [blame] | 754 | if (!wacom->shared->stylus_in_proximity) /* first in prox */ |
Ping Cheng | 8aa9a9a | 2011-03-12 20:34:11 -0800 | [diff] [blame] | 755 | /* Going into proximity select tool */ |
| 756 | wacom->tool[0] = (data[1] & 0x0c) ? BTN_TOOL_RUBBER : BTN_TOOL_PEN; |
Ping Cheng | 8aa9a9a | 2011-03-12 20:34:11 -0800 | [diff] [blame] | 757 | |
Ping Cheng | a43c7c5 | 2011-03-12 20:34:42 -0800 | [diff] [blame] | 758 | /* keep pen state for touch events */ |
| 759 | wacom->shared->stylus_in_proximity = prox; |
Ping Cheng | 8aa9a9a | 2011-03-12 20:34:11 -0800 | [diff] [blame] | 760 | |
Ping Cheng | a43c7c5 | 2011-03-12 20:34:42 -0800 | [diff] [blame] | 761 | /* send pen events only when touch is up or forced out */ |
| 762 | if (!wacom->shared->touch_down) { |
| 763 | input_report_key(input, BTN_STYLUS, data[1] & 0x02); |
| 764 | input_report_key(input, BTN_STYLUS2, data[1] & 0x10); |
| 765 | input_report_abs(input, ABS_X, le16_to_cpup((__le16 *)&data[2])); |
| 766 | input_report_abs(input, ABS_Y, le16_to_cpup((__le16 *)&data[4])); |
| 767 | pressure = ((data[7] & 0x01) << 8) | data[6]; |
| 768 | if (pressure < 0) |
| 769 | pressure = features->pressure_max + pressure + 1; |
| 770 | input_report_abs(input, ABS_PRESSURE, pressure); |
| 771 | input_report_key(input, BTN_TOUCH, data[1] & 0x05); |
| 772 | input_report_key(input, wacom->tool[0], prox); |
| 773 | return 1; |
| 774 | } |
| 775 | |
| 776 | return 0; |
Ping Cheng | 8aa9a9a | 2011-03-12 20:34:11 -0800 | [diff] [blame] | 777 | } |
| 778 | |
| 779 | static int wacom_tpc_irq(struct wacom_wac *wacom, size_t len) |
| 780 | { |
| 781 | char *data = wacom->data; |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 782 | |
| 783 | dbg("wacom_tpc_irq: received report #%d", data[0]); |
| 784 | |
Ping Cheng | a43c7c5 | 2011-03-12 20:34:42 -0800 | [diff] [blame] | 785 | if (len == WACOM_PKGLEN_TPC1FG || data[0] == WACOM_REPORT_TPC1FG) |
| 786 | return wacom_tpc_single_touch(wacom, len); |
Ping Cheng | 84eb5aa | 2011-03-12 20:35:18 -0800 | [diff] [blame] | 787 | else if (data[0] == WACOM_REPORT_TPC2FG) |
| 788 | return wacom_tpc_mt_touch(wacom); |
Ping Cheng | a43c7c5 | 2011-03-12 20:34:42 -0800 | [diff] [blame] | 789 | else if (data[0] == WACOM_REPORT_PENABLED) |
Ping Cheng | 8aa9a9a | 2011-03-12 20:34:11 -0800 | [diff] [blame] | 790 | return wacom_tpc_pen(wacom); |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 791 | |
Ping Cheng | 8aa9a9a | 2011-03-12 20:34:11 -0800 | [diff] [blame] | 792 | return 0; |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 793 | } |
| 794 | |
Chris Bagwell | e1d38e4 | 2010-09-12 00:09:27 -0700 | [diff] [blame] | 795 | static int wacom_bpt_touch(struct wacom_wac *wacom) |
Henrik Rydberg | cb734c0 | 2010-09-05 12:53:16 -0700 | [diff] [blame] | 796 | { |
Henrik Rydberg | f4ccbef | 2010-09-05 12:57:13 -0700 | [diff] [blame] | 797 | struct wacom_features *features = &wacom->features; |
Henrik Rydberg | cb734c0 | 2010-09-05 12:53:16 -0700 | [diff] [blame] | 798 | struct input_dev *input = wacom->input; |
| 799 | unsigned char *data = wacom->data; |
Henrik Rydberg | cb734c0 | 2010-09-05 12:53:16 -0700 | [diff] [blame] | 800 | int i; |
| 801 | |
Chris Bagwell | 5a6c865 | 2011-11-07 19:52:42 -0800 | [diff] [blame^] | 802 | if (data[0] != 0x02) |
| 803 | return 0; |
| 804 | |
Henrik Rydberg | cb734c0 | 2010-09-05 12:53:16 -0700 | [diff] [blame] | 805 | for (i = 0; i < 2; i++) { |
| 806 | int p = data[9 * i + 2]; |
Henrik Rydberg | c5f4dec | 2010-12-15 13:50:34 +0100 | [diff] [blame] | 807 | bool touch = p && !wacom->shared->stylus_in_proximity; |
| 808 | |
Henrik Rydberg | cb734c0 | 2010-09-05 12:53:16 -0700 | [diff] [blame] | 809 | input_mt_slot(input, i); |
Henrik Rydberg | c5f4dec | 2010-12-15 13:50:34 +0100 | [diff] [blame] | 810 | input_mt_report_slot_state(input, MT_TOOL_FINGER, touch); |
Chris Bagwell | 33d5f71 | 2010-09-12 00:12:28 -0700 | [diff] [blame] | 811 | /* |
| 812 | * Touch events need to be disabled while stylus is |
| 813 | * in proximity because user's hand is resting on touchpad |
| 814 | * and sending unwanted events. User expects tablet buttons |
| 815 | * to continue working though. |
| 816 | */ |
Henrik Rydberg | c5f4dec | 2010-12-15 13:50:34 +0100 | [diff] [blame] | 817 | if (touch) { |
Henrik Rydberg | cb734c0 | 2010-09-05 12:53:16 -0700 | [diff] [blame] | 818 | int x = get_unaligned_be16(&data[9 * i + 3]) & 0x7ff; |
| 819 | int y = get_unaligned_be16(&data[9 * i + 5]) & 0x7ff; |
Henrik Rydberg | f4ccbef | 2010-09-05 12:57:13 -0700 | [diff] [blame] | 820 | if (features->quirks & WACOM_QUIRK_BBTOUCH_LOWRES) { |
| 821 | x <<= 5; |
| 822 | y <<= 5; |
| 823 | } |
Henrik Rydberg | cb734c0 | 2010-09-05 12:53:16 -0700 | [diff] [blame] | 824 | input_report_abs(input, ABS_MT_PRESSURE, p); |
| 825 | input_report_abs(input, ABS_MT_POSITION_X, x); |
| 826 | input_report_abs(input, ABS_MT_POSITION_Y, y); |
Henrik Rydberg | cb734c0 | 2010-09-05 12:53:16 -0700 | [diff] [blame] | 827 | } |
Henrik Rydberg | cb734c0 | 2010-09-05 12:53:16 -0700 | [diff] [blame] | 828 | } |
| 829 | |
Henrik Rydberg | c5f4dec | 2010-12-15 13:50:34 +0100 | [diff] [blame] | 830 | input_mt_report_pointer_emulation(input, true); |
Henrik Rydberg | cb734c0 | 2010-09-05 12:53:16 -0700 | [diff] [blame] | 831 | |
| 832 | input_report_key(input, BTN_LEFT, (data[1] & 0x08) != 0); |
| 833 | input_report_key(input, BTN_FORWARD, (data[1] & 0x04) != 0); |
| 834 | input_report_key(input, BTN_BACK, (data[1] & 0x02) != 0); |
| 835 | input_report_key(input, BTN_RIGHT, (data[1] & 0x01) != 0); |
| 836 | |
| 837 | input_sync(input); |
| 838 | |
| 839 | return 0; |
| 840 | } |
| 841 | |
Chris Bagwell | 73149ab | 2011-10-26 22:34:21 -0700 | [diff] [blame] | 842 | static void wacom_bpt3_touch_msg(struct wacom_wac *wacom, unsigned char *data) |
| 843 | { |
| 844 | struct input_dev *input = wacom->input; |
| 845 | int slot_id = data[0] - 2; /* data[0] is between 2 and 17 */ |
| 846 | bool touch = data[1] & 0x80; |
| 847 | |
| 848 | touch = touch && !wacom->shared->stylus_in_proximity; |
| 849 | |
| 850 | input_mt_slot(input, slot_id); |
| 851 | input_mt_report_slot_state(input, MT_TOOL_FINGER, touch); |
| 852 | |
| 853 | if (touch) { |
| 854 | int x = (data[2] << 4) | (data[4] >> 4); |
| 855 | int y = (data[3] << 4) | (data[4] & 0x0f); |
| 856 | int w = data[6]; |
| 857 | |
| 858 | input_report_abs(input, ABS_MT_POSITION_X, x); |
| 859 | input_report_abs(input, ABS_MT_POSITION_Y, y); |
| 860 | input_report_abs(input, ABS_MT_TOUCH_MAJOR, w); |
| 861 | } |
| 862 | } |
| 863 | |
| 864 | static void wacom_bpt3_button_msg(struct wacom_wac *wacom, unsigned char *data) |
| 865 | { |
| 866 | struct input_dev *input = wacom->input; |
| 867 | |
| 868 | input_report_key(input, BTN_LEFT, (data[1] & 0x08) != 0); |
| 869 | input_report_key(input, BTN_FORWARD, (data[1] & 0x04) != 0); |
| 870 | input_report_key(input, BTN_BACK, (data[1] & 0x02) != 0); |
| 871 | input_report_key(input, BTN_RIGHT, (data[1] & 0x01) != 0); |
| 872 | } |
| 873 | |
| 874 | static int wacom_bpt3_touch(struct wacom_wac *wacom) |
| 875 | { |
| 876 | struct input_dev *input = wacom->input; |
| 877 | unsigned char *data = wacom->data; |
| 878 | int count = data[1] & 0x03; |
| 879 | int i; |
| 880 | |
Chris Bagwell | 5a6c865 | 2011-11-07 19:52:42 -0800 | [diff] [blame^] | 881 | if (data[0] != 0x02) |
| 882 | return 0; |
| 883 | |
Chris Bagwell | 73149ab | 2011-10-26 22:34:21 -0700 | [diff] [blame] | 884 | /* data has up to 7 fixed sized 8-byte messages starting at data[2] */ |
| 885 | for (i = 0; i < count; i++) { |
| 886 | int offset = (8 * i) + 2; |
| 887 | int msg_id = data[offset]; |
| 888 | |
| 889 | if (msg_id >= 2 && msg_id <= 17) |
| 890 | wacom_bpt3_touch_msg(wacom, data + offset); |
| 891 | else if (msg_id == 128) |
| 892 | wacom_bpt3_button_msg(wacom, data + offset); |
| 893 | |
| 894 | } |
| 895 | |
| 896 | input_mt_report_pointer_emulation(input, true); |
| 897 | |
| 898 | input_sync(input); |
| 899 | |
| 900 | return 0; |
| 901 | } |
| 902 | |
Chris Bagwell | 2aaacb1 | 2010-09-12 00:11:35 -0700 | [diff] [blame] | 903 | static int wacom_bpt_pen(struct wacom_wac *wacom) |
| 904 | { |
| 905 | struct input_dev *input = wacom->input; |
| 906 | unsigned char *data = wacom->data; |
| 907 | int prox = 0, x = 0, y = 0, p = 0, d = 0, pen = 0, btn1 = 0, btn2 = 0; |
| 908 | |
Chris Bagwell | 5a6c865 | 2011-11-07 19:52:42 -0800 | [diff] [blame^] | 909 | if (data[0] != 0x02) |
| 910 | return 0; |
| 911 | |
Chris Bagwell | c598141 | 2011-10-26 22:28:34 -0700 | [diff] [blame] | 912 | prox = (data[1] & 0x20) == 0x20; |
Chris Bagwell | 2aaacb1 | 2010-09-12 00:11:35 -0700 | [diff] [blame] | 913 | |
| 914 | /* |
| 915 | * All reports shared between PEN and RUBBER tool must be |
| 916 | * forced to a known starting value (zero) when transitioning to |
| 917 | * out-of-prox. |
| 918 | * |
| 919 | * If not reset then, to userspace, it will look like lost events |
| 920 | * if new tool comes in-prox with same values as previous tool sent. |
| 921 | * |
| 922 | * Hardware does report zero in most out-of-prox cases but not all. |
| 923 | */ |
| 924 | if (prox) { |
| 925 | if (!wacom->shared->stylus_in_proximity) { |
| 926 | if (data[1] & 0x08) { |
| 927 | wacom->tool[0] = BTN_TOOL_RUBBER; |
| 928 | wacom->id[0] = ERASER_DEVICE_ID; |
| 929 | } else { |
| 930 | wacom->tool[0] = BTN_TOOL_PEN; |
| 931 | wacom->id[0] = STYLUS_DEVICE_ID; |
| 932 | } |
| 933 | wacom->shared->stylus_in_proximity = true; |
| 934 | } |
| 935 | x = le16_to_cpup((__le16 *)&data[2]); |
| 936 | y = le16_to_cpup((__le16 *)&data[4]); |
| 937 | p = le16_to_cpup((__le16 *)&data[6]); |
Chris Bagwell | c18c2ce | 2011-10-10 08:52:13 -0700 | [diff] [blame] | 938 | /* |
| 939 | * Convert distance from out prox to distance from tablet. |
| 940 | * distance will be greater than distance_max once |
| 941 | * touching and applying pressure; do not report negative |
| 942 | * distance. |
| 943 | */ |
| 944 | if (data[8] <= wacom->features.distance_max) |
| 945 | d = wacom->features.distance_max - data[8]; |
| 946 | |
Chris Bagwell | 2aaacb1 | 2010-09-12 00:11:35 -0700 | [diff] [blame] | 947 | pen = data[1] & 0x01; |
| 948 | btn1 = data[1] & 0x02; |
| 949 | btn2 = data[1] & 0x04; |
| 950 | } |
| 951 | |
| 952 | input_report_key(input, BTN_TOUCH, pen); |
| 953 | input_report_key(input, BTN_STYLUS, btn1); |
| 954 | input_report_key(input, BTN_STYLUS2, btn2); |
| 955 | |
| 956 | input_report_abs(input, ABS_X, x); |
| 957 | input_report_abs(input, ABS_Y, y); |
| 958 | input_report_abs(input, ABS_PRESSURE, p); |
| 959 | input_report_abs(input, ABS_DISTANCE, d); |
| 960 | |
| 961 | if (!prox) { |
| 962 | wacom->id[0] = 0; |
| 963 | wacom->shared->stylus_in_proximity = false; |
| 964 | } |
| 965 | |
| 966 | input_report_key(input, wacom->tool[0], prox); /* PEN or RUBBER */ |
| 967 | input_report_abs(input, ABS_MISC, wacom->id[0]); /* TOOL ID */ |
| 968 | |
| 969 | return 1; |
| 970 | } |
| 971 | |
Chris Bagwell | e1d38e4 | 2010-09-12 00:09:27 -0700 | [diff] [blame] | 972 | static int wacom_bpt_irq(struct wacom_wac *wacom, size_t len) |
| 973 | { |
| 974 | if (len == WACOM_PKGLEN_BBTOUCH) |
| 975 | return wacom_bpt_touch(wacom); |
Chris Bagwell | 73149ab | 2011-10-26 22:34:21 -0700 | [diff] [blame] | 976 | else if (len == WACOM_PKGLEN_BBTOUCH3) |
| 977 | return wacom_bpt3_touch(wacom); |
| 978 | else if (len == WACOM_PKGLEN_BBFUN || len == WACOM_PKGLEN_BBPEN) |
Chris Bagwell | 2aaacb1 | 2010-09-12 00:11:35 -0700 | [diff] [blame] | 979 | return wacom_bpt_pen(wacom); |
Chris Bagwell | e1d38e4 | 2010-09-12 00:09:27 -0700 | [diff] [blame] | 980 | |
| 981 | return 0; |
| 982 | } |
| 983 | |
Dmitry Torokhov | 95dd3b3 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 984 | void wacom_wac_irq(struct wacom_wac *wacom_wac, size_t len) |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 985 | { |
Dmitry Torokhov | 95dd3b3 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 986 | bool sync; |
| 987 | |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 988 | switch (wacom_wac->features.type) { |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 989 | case PENPARTNER: |
Dmitry Torokhov | 95dd3b3 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 990 | sync = wacom_penpartner_irq(wacom_wac); |
| 991 | break; |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 992 | |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 993 | case PL: |
Dmitry Torokhov | 95dd3b3 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 994 | sync = wacom_pl_irq(wacom_wac); |
| 995 | break; |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 996 | |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 997 | case WACOM_G4: |
| 998 | case GRAPHIRE: |
| 999 | case WACOM_MO: |
Dmitry Torokhov | 95dd3b3 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1000 | sync = wacom_graphire_irq(wacom_wac); |
| 1001 | break; |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 1002 | |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1003 | case PTU: |
Dmitry Torokhov | 95dd3b3 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1004 | sync = wacom_ptu_irq(wacom_wac); |
| 1005 | break; |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 1006 | |
Ping Cheng | c8f2edc | 2010-06-28 01:10:51 -0700 | [diff] [blame] | 1007 | case DTU: |
| 1008 | sync = wacom_dtu_irq(wacom_wac); |
| 1009 | break; |
| 1010 | |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1011 | case INTUOS: |
| 1012 | case INTUOS3S: |
| 1013 | case INTUOS3: |
| 1014 | case INTUOS3L: |
| 1015 | case INTUOS4S: |
| 1016 | case INTUOS4: |
| 1017 | case INTUOS4L: |
| 1018 | case CINTIQ: |
| 1019 | case WACOM_BEE: |
Ping Cheng | 3a4b4aa | 2010-06-03 22:10:21 -0700 | [diff] [blame] | 1020 | case WACOM_21UX2: |
Dmitry Torokhov | 95dd3b3 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1021 | sync = wacom_intuos_irq(wacom_wac); |
| 1022 | break; |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 1023 | |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1024 | case TABLETPC: |
| 1025 | case TABLETPC2FG: |
Dmitry Torokhov | 95dd3b3 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1026 | sync = wacom_tpc_irq(wacom_wac, len); |
| 1027 | break; |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 1028 | |
Henrik Rydberg | cb734c0 | 2010-09-05 12:53:16 -0700 | [diff] [blame] | 1029 | case BAMBOO_PT: |
| 1030 | sync = wacom_bpt_irq(wacom_wac, len); |
| 1031 | break; |
| 1032 | |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1033 | default: |
Dmitry Torokhov | 95dd3b3 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1034 | sync = false; |
| 1035 | break; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 1036 | } |
Dmitry Torokhov | 95dd3b3 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1037 | |
| 1038 | if (sync) |
| 1039 | input_sync(wacom_wac->input); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 1040 | } |
| 1041 | |
Ping Cheng | 6521d0b | 2010-10-24 21:53:40 -0700 | [diff] [blame] | 1042 | static void wacom_setup_cintiq(struct wacom_wac *wacom_wac) |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 1043 | { |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1044 | struct input_dev *input_dev = wacom_wac->input; |
| 1045 | |
| 1046 | input_set_capability(input_dev, EV_MSC, MSC_SERIAL); |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1047 | |
| 1048 | __set_bit(BTN_TOOL_RUBBER, input_dev->keybit); |
| 1049 | __set_bit(BTN_TOOL_PEN, input_dev->keybit); |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1050 | __set_bit(BTN_TOOL_BRUSH, input_dev->keybit); |
| 1051 | __set_bit(BTN_TOOL_PENCIL, input_dev->keybit); |
| 1052 | __set_bit(BTN_TOOL_AIRBRUSH, input_dev->keybit); |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1053 | __set_bit(BTN_STYLUS, input_dev->keybit); |
| 1054 | __set_bit(BTN_STYLUS2, input_dev->keybit); |
| 1055 | |
| 1056 | input_set_abs_params(input_dev, ABS_DISTANCE, |
| 1057 | 0, wacom_wac->features.distance_max, 0, 0); |
| 1058 | input_set_abs_params(input_dev, ABS_WHEEL, 0, 1023, 0, 0); |
| 1059 | input_set_abs_params(input_dev, ABS_TILT_X, 0, 127, 0, 0); |
| 1060 | input_set_abs_params(input_dev, ABS_TILT_Y, 0, 127, 0, 0); |
Ping Cheng | 6521d0b | 2010-10-24 21:53:40 -0700 | [diff] [blame] | 1061 | } |
| 1062 | |
| 1063 | static void wacom_setup_intuos(struct wacom_wac *wacom_wac) |
| 1064 | { |
| 1065 | struct input_dev *input_dev = wacom_wac->input; |
| 1066 | |
| 1067 | input_set_capability(input_dev, EV_REL, REL_WHEEL); |
| 1068 | |
| 1069 | wacom_setup_cintiq(wacom_wac); |
| 1070 | |
| 1071 | __set_bit(BTN_LEFT, input_dev->keybit); |
| 1072 | __set_bit(BTN_RIGHT, input_dev->keybit); |
| 1073 | __set_bit(BTN_MIDDLE, input_dev->keybit); |
| 1074 | __set_bit(BTN_SIDE, input_dev->keybit); |
| 1075 | __set_bit(BTN_EXTRA, input_dev->keybit); |
| 1076 | __set_bit(BTN_TOOL_MOUSE, input_dev->keybit); |
| 1077 | __set_bit(BTN_TOOL_LENS, input_dev->keybit); |
| 1078 | |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1079 | input_set_abs_params(input_dev, ABS_RZ, -900, 899, 0, 0); |
| 1080 | input_set_abs_params(input_dev, ABS_THROTTLE, -1023, 1023, 0, 0); |
| 1081 | } |
| 1082 | |
Henrik Rydberg | bc73dd3 | 2010-09-05 12:26:16 -0700 | [diff] [blame] | 1083 | void wacom_setup_device_quirks(struct wacom_features *features) |
| 1084 | { |
| 1085 | |
| 1086 | /* touch device found but size is not defined. use default */ |
Ping Cheng | 84eb5aa | 2011-03-12 20:35:18 -0800 | [diff] [blame] | 1087 | if (features->device_type == BTN_TOOL_FINGER && !features->x_max) { |
Henrik Rydberg | bc73dd3 | 2010-09-05 12:26:16 -0700 | [diff] [blame] | 1088 | features->x_max = 1023; |
| 1089 | features->y_max = 1023; |
| 1090 | } |
| 1091 | |
| 1092 | /* these device have multiple inputs */ |
| 1093 | if (features->type == TABLETPC || features->type == TABLETPC2FG || |
| 1094 | features->type == BAMBOO_PT) |
| 1095 | features->quirks |= WACOM_QUIRK_MULTI_INPUT; |
Henrik Rydberg | cb734c0 | 2010-09-05 12:53:16 -0700 | [diff] [blame] | 1096 | |
Chris Bagwell | 73149ab | 2011-10-26 22:34:21 -0700 | [diff] [blame] | 1097 | /* quirk for bamboo touch with 2 low res touches */ |
Henrik Rydberg | cb734c0 | 2010-09-05 12:53:16 -0700 | [diff] [blame] | 1098 | if (features->type == BAMBOO_PT && |
Chris Bagwell | 73149ab | 2011-10-26 22:34:21 -0700 | [diff] [blame] | 1099 | features->pktlen == WACOM_PKGLEN_BBTOUCH) { |
Henrik Rydberg | f4ccbef | 2010-09-05 12:57:13 -0700 | [diff] [blame] | 1100 | features->x_max <<= 5; |
| 1101 | features->y_max <<= 5; |
| 1102 | features->x_fuzz <<= 5; |
| 1103 | features->y_fuzz <<= 5; |
Henrik Rydberg | f4ccbef | 2010-09-05 12:57:13 -0700 | [diff] [blame] | 1104 | features->quirks |= WACOM_QUIRK_BBTOUCH_LOWRES; |
Henrik Rydberg | cb734c0 | 2010-09-05 12:53:16 -0700 | [diff] [blame] | 1105 | } |
Henrik Rydberg | bc73dd3 | 2010-09-05 12:26:16 -0700 | [diff] [blame] | 1106 | } |
| 1107 | |
Ping Cheng | 409550f | 2011-01-25 18:03:13 -0800 | [diff] [blame] | 1108 | static unsigned int wacom_calculate_touch_res(unsigned int logical_max, |
| 1109 | unsigned int physical_max) |
| 1110 | { |
| 1111 | /* Touch physical dimensions are in 100th of mm */ |
| 1112 | return (logical_max * 100) / physical_max; |
| 1113 | } |
| 1114 | |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1115 | void wacom_setup_input_capabilities(struct input_dev *input_dev, |
| 1116 | struct wacom_wac *wacom_wac) |
| 1117 | { |
| 1118 | struct wacom_features *features = &wacom_wac->features; |
| 1119 | int i; |
| 1120 | |
| 1121 | input_dev->evbit[0] |= BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS); |
| 1122 | |
| 1123 | __set_bit(BTN_TOUCH, input_dev->keybit); |
| 1124 | |
Henrik Rydberg | fed87e6 | 2010-09-05 12:25:11 -0700 | [diff] [blame] | 1125 | input_set_abs_params(input_dev, ABS_X, 0, features->x_max, |
| 1126 | features->x_fuzz, 0); |
| 1127 | input_set_abs_params(input_dev, ABS_Y, 0, features->y_max, |
| 1128 | features->y_fuzz, 0); |
| 1129 | input_set_abs_params(input_dev, ABS_PRESSURE, 0, features->pressure_max, |
| 1130 | features->pressure_fuzz, 0); |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1131 | |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1132 | if (features->device_type == BTN_TOOL_PEN) { |
| 1133 | /* penabled devices have fixed resolution for each model */ |
| 1134 | input_abs_set_res(input_dev, ABS_X, features->x_resolution); |
| 1135 | input_abs_set_res(input_dev, ABS_Y, features->y_resolution); |
| 1136 | } else { |
| 1137 | input_abs_set_res(input_dev, ABS_X, |
| 1138 | wacom_calculate_touch_res(features->x_max, |
| 1139 | features->x_phy)); |
| 1140 | input_abs_set_res(input_dev, ABS_Y, |
| 1141 | wacom_calculate_touch_res(features->y_max, |
| 1142 | features->y_phy)); |
| 1143 | } |
| 1144 | |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1145 | __set_bit(ABS_MISC, input_dev->absbit); |
| 1146 | |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 1147 | switch (wacom_wac->features.type) { |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1148 | case WACOM_MO: |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1149 | input_set_abs_params(input_dev, ABS_WHEEL, 0, 71, 0, 0); |
| 1150 | /* fall through */ |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 1151 | |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1152 | case WACOM_G4: |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1153 | input_set_capability(input_dev, EV_MSC, MSC_SERIAL); |
| 1154 | |
Ping Cheng | 0bd10ef | 2011-07-06 18:05:42 -0700 | [diff] [blame] | 1155 | __set_bit(BTN_BACK, input_dev->keybit); |
| 1156 | __set_bit(BTN_FORWARD, input_dev->keybit); |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1157 | /* fall through */ |
| 1158 | |
| 1159 | case GRAPHIRE: |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1160 | input_set_capability(input_dev, EV_REL, REL_WHEEL); |
| 1161 | |
| 1162 | __set_bit(BTN_LEFT, input_dev->keybit); |
| 1163 | __set_bit(BTN_RIGHT, input_dev->keybit); |
| 1164 | __set_bit(BTN_MIDDLE, input_dev->keybit); |
| 1165 | |
| 1166 | __set_bit(BTN_TOOL_RUBBER, input_dev->keybit); |
| 1167 | __set_bit(BTN_TOOL_PEN, input_dev->keybit); |
| 1168 | __set_bit(BTN_TOOL_MOUSE, input_dev->keybit); |
| 1169 | __set_bit(BTN_STYLUS, input_dev->keybit); |
| 1170 | __set_bit(BTN_STYLUS2, input_dev->keybit); |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1171 | break; |
| 1172 | |
Ping Cheng | 3a4b4aa | 2010-06-03 22:10:21 -0700 | [diff] [blame] | 1173 | case WACOM_21UX2: |
| 1174 | __set_bit(BTN_A, input_dev->keybit); |
| 1175 | __set_bit(BTN_B, input_dev->keybit); |
| 1176 | __set_bit(BTN_C, input_dev->keybit); |
| 1177 | __set_bit(BTN_X, input_dev->keybit); |
| 1178 | __set_bit(BTN_Y, input_dev->keybit); |
| 1179 | __set_bit(BTN_Z, input_dev->keybit); |
| 1180 | __set_bit(BTN_BASE, input_dev->keybit); |
| 1181 | __set_bit(BTN_BASE2, input_dev->keybit); |
| 1182 | /* fall through */ |
| 1183 | |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1184 | case WACOM_BEE: |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1185 | __set_bit(BTN_8, input_dev->keybit); |
| 1186 | __set_bit(BTN_9, input_dev->keybit); |
| 1187 | /* fall through */ |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1188 | |
Ping Cheng | 6521d0b | 2010-10-24 21:53:40 -0700 | [diff] [blame] | 1189 | case CINTIQ: |
| 1190 | for (i = 0; i < 8; i++) |
| 1191 | __set_bit(BTN_0 + i, input_dev->keybit); |
Ping Cheng | 6521d0b | 2010-10-24 21:53:40 -0700 | [diff] [blame] | 1192 | |
Ping Cheng | 71c86ce | 2011-06-22 01:02:51 -0700 | [diff] [blame] | 1193 | if (wacom_wac->features.type != WACOM_21UX2) { |
| 1194 | input_set_abs_params(input_dev, ABS_RX, 0, 4096, 0, 0); |
| 1195 | input_set_abs_params(input_dev, ABS_RY, 0, 4096, 0, 0); |
| 1196 | } |
| 1197 | |
Ping Cheng | 6521d0b | 2010-10-24 21:53:40 -0700 | [diff] [blame] | 1198 | input_set_abs_params(input_dev, ABS_Z, -900, 899, 0, 0); |
| 1199 | wacom_setup_cintiq(wacom_wac); |
| 1200 | break; |
| 1201 | |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1202 | case INTUOS3: |
| 1203 | case INTUOS3L: |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1204 | __set_bit(BTN_4, input_dev->keybit); |
| 1205 | __set_bit(BTN_5, input_dev->keybit); |
| 1206 | __set_bit(BTN_6, input_dev->keybit); |
| 1207 | __set_bit(BTN_7, input_dev->keybit); |
| 1208 | |
| 1209 | input_set_abs_params(input_dev, ABS_RY, 0, 4096, 0, 0); |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1210 | /* fall through */ |
| 1211 | |
| 1212 | case INTUOS3S: |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1213 | __set_bit(BTN_0, input_dev->keybit); |
| 1214 | __set_bit(BTN_1, input_dev->keybit); |
| 1215 | __set_bit(BTN_2, input_dev->keybit); |
| 1216 | __set_bit(BTN_3, input_dev->keybit); |
| 1217 | |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1218 | input_set_abs_params(input_dev, ABS_RX, 0, 4096, 0, 0); |
| 1219 | input_set_abs_params(input_dev, ABS_Z, -900, 899, 0, 0); |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1220 | /* fall through */ |
| 1221 | |
| 1222 | case INTUOS: |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1223 | wacom_setup_intuos(wacom_wac); |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1224 | break; |
| 1225 | |
| 1226 | case INTUOS4: |
| 1227 | case INTUOS4L: |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1228 | __set_bit(BTN_7, input_dev->keybit); |
| 1229 | __set_bit(BTN_8, input_dev->keybit); |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1230 | /* fall through */ |
| 1231 | |
| 1232 | case INTUOS4S: |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1233 | for (i = 0; i < 7; i++) |
| 1234 | __set_bit(BTN_0 + i, input_dev->keybit); |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1235 | |
| 1236 | input_set_abs_params(input_dev, ABS_Z, -900, 899, 0, 0); |
| 1237 | wacom_setup_intuos(wacom_wac); |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1238 | break; |
| 1239 | |
| 1240 | case TABLETPC2FG: |
Ping Cheng | 84eb5aa | 2011-03-12 20:35:18 -0800 | [diff] [blame] | 1241 | if (features->device_type == BTN_TOOL_DOUBLETAP) { |
| 1242 | |
| 1243 | input_mt_init_slots(input_dev, 2); |
| 1244 | input_set_abs_params(input_dev, ABS_MT_TOOL_TYPE, |
| 1245 | 0, MT_TOOL_MAX, 0, 0); |
| 1246 | input_set_abs_params(input_dev, ABS_MT_POSITION_X, |
| 1247 | 0, features->x_max, 0, 0); |
| 1248 | input_set_abs_params(input_dev, ABS_MT_POSITION_Y, |
| 1249 | 0, features->y_max, 0, 0); |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1250 | } |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1251 | /* fall through */ |
| 1252 | |
| 1253 | case TABLETPC: |
Ping Cheng | a43c7c5 | 2011-03-12 20:34:42 -0800 | [diff] [blame] | 1254 | __clear_bit(ABS_MISC, input_dev->absbit); |
| 1255 | |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1256 | if (features->device_type != BTN_TOOL_PEN) |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1257 | break; /* no need to process stylus stuff */ |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1258 | |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1259 | /* fall through */ |
| 1260 | |
| 1261 | case PL: |
| 1262 | case PTU: |
Ping Cheng | c8f2edc | 2010-06-28 01:10:51 -0700 | [diff] [blame] | 1263 | case DTU: |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1264 | __set_bit(BTN_TOOL_PEN, input_dev->keybit); |
| 1265 | __set_bit(BTN_STYLUS, input_dev->keybit); |
| 1266 | __set_bit(BTN_STYLUS2, input_dev->keybit); |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1267 | /* fall through */ |
| 1268 | |
| 1269 | case PENPARTNER: |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1270 | __set_bit(BTN_TOOL_RUBBER, input_dev->keybit); |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1271 | break; |
Henrik Rydberg | cb734c0 | 2010-09-05 12:53:16 -0700 | [diff] [blame] | 1272 | |
| 1273 | case BAMBOO_PT: |
| 1274 | __clear_bit(ABS_MISC, input_dev->absbit); |
| 1275 | |
Ping Cheng | 84eb5aa | 2011-03-12 20:35:18 -0800 | [diff] [blame] | 1276 | if (features->device_type == BTN_TOOL_DOUBLETAP) { |
Henrik Rydberg | cb734c0 | 2010-09-05 12:53:16 -0700 | [diff] [blame] | 1277 | __set_bit(BTN_LEFT, input_dev->keybit); |
| 1278 | __set_bit(BTN_FORWARD, input_dev->keybit); |
| 1279 | __set_bit(BTN_BACK, input_dev->keybit); |
| 1280 | __set_bit(BTN_RIGHT, input_dev->keybit); |
| 1281 | |
| 1282 | __set_bit(BTN_TOOL_FINGER, input_dev->keybit); |
| 1283 | __set_bit(BTN_TOOL_DOUBLETAP, input_dev->keybit); |
| 1284 | |
Chris Bagwell | 73149ab | 2011-10-26 22:34:21 -0700 | [diff] [blame] | 1285 | if (features->pktlen == WACOM_PKGLEN_BBTOUCH3) { |
| 1286 | __set_bit(BTN_TOOL_TRIPLETAP, |
| 1287 | input_dev->keybit); |
| 1288 | __set_bit(BTN_TOOL_QUADTAP, |
| 1289 | input_dev->keybit); |
| 1290 | |
| 1291 | input_mt_init_slots(input_dev, 16); |
| 1292 | |
| 1293 | input_set_abs_params(input_dev, |
| 1294 | ABS_MT_TOUCH_MAJOR, |
| 1295 | 0, 255, 0, 0); |
| 1296 | } else { |
| 1297 | input_mt_init_slots(input_dev, 2); |
| 1298 | } |
| 1299 | |
Henrik Rydberg | cb734c0 | 2010-09-05 12:53:16 -0700 | [diff] [blame] | 1300 | input_set_abs_params(input_dev, ABS_MT_POSITION_X, |
| 1301 | 0, features->x_max, |
| 1302 | features->x_fuzz, 0); |
| 1303 | input_set_abs_params(input_dev, ABS_MT_POSITION_Y, |
| 1304 | 0, features->y_max, |
| 1305 | features->y_fuzz, 0); |
Chris Bagwell | 2aaacb1 | 2010-09-12 00:11:35 -0700 | [diff] [blame] | 1306 | } else if (features->device_type == BTN_TOOL_PEN) { |
| 1307 | __set_bit(BTN_TOOL_RUBBER, input_dev->keybit); |
| 1308 | __set_bit(BTN_TOOL_PEN, input_dev->keybit); |
| 1309 | __set_bit(BTN_STYLUS, input_dev->keybit); |
| 1310 | __set_bit(BTN_STYLUS2, input_dev->keybit); |
Chris Bagwell | c18c2ce | 2011-10-10 08:52:13 -0700 | [diff] [blame] | 1311 | input_set_abs_params(input_dev, ABS_DISTANCE, 0, |
| 1312 | features->distance_max, |
| 1313 | 0, 0); |
Henrik Rydberg | cb734c0 | 2010-09-05 12:53:16 -0700 | [diff] [blame] | 1314 | } |
| 1315 | break; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 1316 | } |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 1317 | } |
| 1318 | |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1319 | static const struct wacom_features wacom_features_0x00 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1320 | { "Wacom Penpartner", WACOM_PKGLEN_PENPRTN, 5040, 3780, 255, |
| 1321 | 0, PENPARTNER, WACOM_PENPRTN_RES, WACOM_PENPRTN_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1322 | static const struct wacom_features wacom_features_0x10 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1323 | { "Wacom Graphire", WACOM_PKGLEN_GRAPHIRE, 10206, 7422, 511, |
| 1324 | 63, GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1325 | static const struct wacom_features wacom_features_0x11 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1326 | { "Wacom Graphire2 4x5", WACOM_PKGLEN_GRAPHIRE, 10206, 7422, 511, |
| 1327 | 63, GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1328 | static const struct wacom_features wacom_features_0x12 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1329 | { "Wacom Graphire2 5x7", WACOM_PKGLEN_GRAPHIRE, 13918, 10206, 511, |
| 1330 | 63, GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1331 | static const struct wacom_features wacom_features_0x13 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1332 | { "Wacom Graphire3", WACOM_PKGLEN_GRAPHIRE, 10208, 7424, 511, |
| 1333 | 63, GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1334 | static const struct wacom_features wacom_features_0x14 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1335 | { "Wacom Graphire3 6x8", WACOM_PKGLEN_GRAPHIRE, 16704, 12064, 511, |
| 1336 | 63, GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1337 | static const struct wacom_features wacom_features_0x15 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1338 | { "Wacom Graphire4 4x5", WACOM_PKGLEN_GRAPHIRE, 10208, 7424, 511, |
| 1339 | 63, WACOM_G4, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1340 | static const struct wacom_features wacom_features_0x16 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1341 | { "Wacom Graphire4 6x8", WACOM_PKGLEN_GRAPHIRE, 16704, 12064, 511, |
| 1342 | 63, WACOM_G4, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1343 | static const struct wacom_features wacom_features_0x17 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1344 | { "Wacom BambooFun 4x5", WACOM_PKGLEN_BBFUN, 14760, 9225, 511, |
| 1345 | 63, WACOM_MO, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1346 | static const struct wacom_features wacom_features_0x18 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1347 | { "Wacom BambooFun 6x8", WACOM_PKGLEN_BBFUN, 21648, 13530, 511, |
| 1348 | 63, WACOM_MO, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1349 | static const struct wacom_features wacom_features_0x19 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1350 | { "Wacom Bamboo1 Medium", WACOM_PKGLEN_GRAPHIRE, 16704, 12064, 511, |
| 1351 | 63, GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1352 | static const struct wacom_features wacom_features_0x60 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1353 | { "Wacom Volito", WACOM_PKGLEN_GRAPHIRE, 5104, 3712, 511, |
| 1354 | 63, GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1355 | static const struct wacom_features wacom_features_0x61 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1356 | { "Wacom PenStation2", WACOM_PKGLEN_GRAPHIRE, 3250, 2320, 255, |
| 1357 | 63, GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1358 | static const struct wacom_features wacom_features_0x62 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1359 | { "Wacom Volito2 4x5", WACOM_PKGLEN_GRAPHIRE, 5104, 3712, 511, |
| 1360 | 63, GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1361 | static const struct wacom_features wacom_features_0x63 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1362 | { "Wacom Volito2 2x3", WACOM_PKGLEN_GRAPHIRE, 3248, 2320, 511, |
| 1363 | 63, GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1364 | static const struct wacom_features wacom_features_0x64 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1365 | { "Wacom PenPartner2", WACOM_PKGLEN_GRAPHIRE, 3250, 2320, 511, |
| 1366 | 63, GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1367 | static const struct wacom_features wacom_features_0x65 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1368 | { "Wacom Bamboo", WACOM_PKGLEN_BBFUN, 14760, 9225, 511, |
| 1369 | 63, WACOM_MO, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1370 | static const struct wacom_features wacom_features_0x69 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1371 | { "Wacom Bamboo1", WACOM_PKGLEN_GRAPHIRE, 5104, 3712, 511, |
| 1372 | 63, GRAPHIRE, WACOM_PENPRTN_RES, WACOM_PENPRTN_RES }; |
Ping Cheng | 11d0cf8 | 2011-06-27 12:57:58 -0700 | [diff] [blame] | 1373 | static const struct wacom_features wacom_features_0x6A = |
| 1374 | { "Wacom Bamboo1 4x6", WACOM_PKGLEN_GRAPHIRE, 14760, 9225, 1023, |
| 1375 | 63, GRAPHIRE, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
| 1376 | static const struct wacom_features wacom_features_0x6B = |
| 1377 | { "Wacom Bamboo1 5x8", WACOM_PKGLEN_GRAPHIRE, 21648, 13530, 1023, |
| 1378 | 63, GRAPHIRE, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1379 | static const struct wacom_features wacom_features_0x20 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1380 | { "Wacom Intuos 4x5", WACOM_PKGLEN_INTUOS, 12700, 10600, 1023, |
| 1381 | 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1382 | static const struct wacom_features wacom_features_0x21 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1383 | { "Wacom Intuos 6x8", WACOM_PKGLEN_INTUOS, 20320, 16240, 1023, |
| 1384 | 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1385 | static const struct wacom_features wacom_features_0x22 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1386 | { "Wacom Intuos 9x12", WACOM_PKGLEN_INTUOS, 30480, 24060, 1023, |
| 1387 | 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1388 | static const struct wacom_features wacom_features_0x23 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1389 | { "Wacom Intuos 12x12", WACOM_PKGLEN_INTUOS, 30480, 31680, 1023, |
| 1390 | 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1391 | static const struct wacom_features wacom_features_0x24 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1392 | { "Wacom Intuos 12x18", WACOM_PKGLEN_INTUOS, 45720, 31680, 1023, |
| 1393 | 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1394 | static const struct wacom_features wacom_features_0x30 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1395 | { "Wacom PL400", WACOM_PKGLEN_GRAPHIRE, 5408, 4056, 255, |
| 1396 | 0, PL, WACOM_PL_RES, WACOM_PL_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1397 | static const struct wacom_features wacom_features_0x31 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1398 | { "Wacom PL500", WACOM_PKGLEN_GRAPHIRE, 6144, 4608, 255, |
| 1399 | 0, PL, WACOM_PL_RES, WACOM_PL_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1400 | static const struct wacom_features wacom_features_0x32 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1401 | { "Wacom PL600", WACOM_PKGLEN_GRAPHIRE, 6126, 4604, 255, |
| 1402 | 0, PL, WACOM_PL_RES, WACOM_PL_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1403 | static const struct wacom_features wacom_features_0x33 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1404 | { "Wacom PL600SX", WACOM_PKGLEN_GRAPHIRE, 6260, 5016, 255, |
| 1405 | 0, PL, WACOM_PL_RES, WACOM_PL_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1406 | static const struct wacom_features wacom_features_0x34 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1407 | { "Wacom PL550", WACOM_PKGLEN_GRAPHIRE, 6144, 4608, 511, |
| 1408 | 0, PL, WACOM_PL_RES, WACOM_PL_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1409 | static const struct wacom_features wacom_features_0x35 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1410 | { "Wacom PL800", WACOM_PKGLEN_GRAPHIRE, 7220, 5780, 511, |
| 1411 | 0, PL, WACOM_PL_RES, WACOM_PL_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1412 | static const struct wacom_features wacom_features_0x37 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1413 | { "Wacom PL700", WACOM_PKGLEN_GRAPHIRE, 6758, 5406, 511, |
| 1414 | 0, PL, WACOM_PL_RES, WACOM_PL_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1415 | static const struct wacom_features wacom_features_0x38 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1416 | { "Wacom PL510", WACOM_PKGLEN_GRAPHIRE, 6282, 4762, 511, |
| 1417 | 0, PL, WACOM_PL_RES, WACOM_PL_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1418 | static const struct wacom_features wacom_features_0x39 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1419 | { "Wacom DTU710", WACOM_PKGLEN_GRAPHIRE, 34080, 27660, 511, |
| 1420 | 0, PL, WACOM_PL_RES, WACOM_PL_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1421 | static const struct wacom_features wacom_features_0xC4 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1422 | { "Wacom DTF521", WACOM_PKGLEN_GRAPHIRE, 6282, 4762, 511, |
| 1423 | 0, PL, WACOM_PL_RES, WACOM_PL_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1424 | static const struct wacom_features wacom_features_0xC0 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1425 | { "Wacom DTF720", WACOM_PKGLEN_GRAPHIRE, 6858, 5506, 511, |
| 1426 | 0, PL, WACOM_PL_RES, WACOM_PL_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1427 | static const struct wacom_features wacom_features_0xC2 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1428 | { "Wacom DTF720a", WACOM_PKGLEN_GRAPHIRE, 6858, 5506, 511, |
| 1429 | 0, PL, WACOM_PL_RES, WACOM_PL_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1430 | static const struct wacom_features wacom_features_0x03 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1431 | { "Wacom Cintiq Partner", WACOM_PKGLEN_GRAPHIRE, 20480, 15360, 511, |
| 1432 | 0, PTU, WACOM_PL_RES, WACOM_PL_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1433 | static const struct wacom_features wacom_features_0x41 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1434 | { "Wacom Intuos2 4x5", WACOM_PKGLEN_INTUOS, 12700, 10600, 1023, |
| 1435 | 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1436 | static const struct wacom_features wacom_features_0x42 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1437 | { "Wacom Intuos2 6x8", WACOM_PKGLEN_INTUOS, 20320, 16240, 1023, |
| 1438 | 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1439 | static const struct wacom_features wacom_features_0x43 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1440 | { "Wacom Intuos2 9x12", WACOM_PKGLEN_INTUOS, 30480, 24060, 1023, |
| 1441 | 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1442 | static const struct wacom_features wacom_features_0x44 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1443 | { "Wacom Intuos2 12x12", WACOM_PKGLEN_INTUOS, 30480, 31680, 1023, |
| 1444 | 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1445 | static const struct wacom_features wacom_features_0x45 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1446 | { "Wacom Intuos2 12x18", WACOM_PKGLEN_INTUOS, 45720, 31680, 1023, |
| 1447 | 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1448 | static const struct wacom_features wacom_features_0xB0 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1449 | { "Wacom Intuos3 4x5", WACOM_PKGLEN_INTUOS, 25400, 20320, 1023, |
| 1450 | 63, INTUOS3S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1451 | static const struct wacom_features wacom_features_0xB1 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1452 | { "Wacom Intuos3 6x8", WACOM_PKGLEN_INTUOS, 40640, 30480, 1023, |
| 1453 | 63, INTUOS3, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1454 | static const struct wacom_features wacom_features_0xB2 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1455 | { "Wacom Intuos3 9x12", WACOM_PKGLEN_INTUOS, 60960, 45720, 1023, |
| 1456 | 63, INTUOS3, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1457 | static const struct wacom_features wacom_features_0xB3 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1458 | { "Wacom Intuos3 12x12", WACOM_PKGLEN_INTUOS, 60960, 60960, 1023, |
| 1459 | 63, INTUOS3L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1460 | static const struct wacom_features wacom_features_0xB4 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1461 | { "Wacom Intuos3 12x19", WACOM_PKGLEN_INTUOS, 97536, 60960, 1023, |
| 1462 | 63, INTUOS3L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1463 | static const struct wacom_features wacom_features_0xB5 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1464 | { "Wacom Intuos3 6x11", WACOM_PKGLEN_INTUOS, 54204, 31750, 1023, |
| 1465 | 63, INTUOS3, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1466 | static const struct wacom_features wacom_features_0xB7 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1467 | { "Wacom Intuos3 4x6", WACOM_PKGLEN_INTUOS, 31496, 19685, 1023, |
| 1468 | 63, INTUOS3S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1469 | static const struct wacom_features wacom_features_0xB8 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1470 | { "Wacom Intuos4 4x6", WACOM_PKGLEN_INTUOS, 31496, 19685, 2047, |
| 1471 | 63, INTUOS4S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1472 | static const struct wacom_features wacom_features_0xB9 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1473 | { "Wacom Intuos4 6x9", WACOM_PKGLEN_INTUOS, 44704, 27940, 2047, |
| 1474 | 63, INTUOS4, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1475 | static const struct wacom_features wacom_features_0xBA = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1476 | { "Wacom Intuos4 8x13", WACOM_PKGLEN_INTUOS, 65024, 40640, 2047, |
| 1477 | 63, INTUOS4L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1478 | static const struct wacom_features wacom_features_0xBB = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1479 | { "Wacom Intuos4 12x19", WACOM_PKGLEN_INTUOS, 97536, 60960, 2047, |
| 1480 | 63, INTUOS4L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES }; |
Ping Cheng | 3a4b4aa | 2010-06-03 22:10:21 -0700 | [diff] [blame] | 1481 | static const struct wacom_features wacom_features_0xBC = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1482 | { "Wacom Intuos4 WL", WACOM_PKGLEN_INTUOS, 40840, 25400, 2047, |
| 1483 | 63, INTUOS4, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1484 | static const struct wacom_features wacom_features_0x3F = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1485 | { "Wacom Cintiq 21UX", WACOM_PKGLEN_INTUOS, 87200, 65600, 1023, |
| 1486 | 63, CINTIQ, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1487 | static const struct wacom_features wacom_features_0xC5 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1488 | { "Wacom Cintiq 20WSX", WACOM_PKGLEN_INTUOS, 86680, 54180, 1023, |
| 1489 | 63, WACOM_BEE, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1490 | static const struct wacom_features wacom_features_0xC6 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1491 | { "Wacom Cintiq 12WX", WACOM_PKGLEN_INTUOS, 53020, 33440, 1023, |
| 1492 | 63, WACOM_BEE, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1493 | static const struct wacom_features wacom_features_0xC7 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1494 | { "Wacom DTU1931", WACOM_PKGLEN_GRAPHIRE, 37832, 30305, 511, |
| 1495 | 0, PL, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Ping Cheng | c8f2edc | 2010-06-28 01:10:51 -0700 | [diff] [blame] | 1496 | static const struct wacom_features wacom_features_0xCE = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1497 | { "Wacom DTU2231", WACOM_PKGLEN_GRAPHIRE, 47864, 27011, 511, |
| 1498 | 0, DTU, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Ping Cheng | c8f2edc | 2010-06-28 01:10:51 -0700 | [diff] [blame] | 1499 | static const struct wacom_features wacom_features_0xF0 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1500 | { "Wacom DTU1631", WACOM_PKGLEN_GRAPHIRE, 34623, 19553, 511, |
| 1501 | 0, DTU, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Ping Cheng | 3a4b4aa | 2010-06-03 22:10:21 -0700 | [diff] [blame] | 1502 | static const struct wacom_features wacom_features_0xCC = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1503 | { "Wacom Cintiq 21UX2", WACOM_PKGLEN_INTUOS, 87200, 65600, 2047, |
| 1504 | 63, WACOM_21UX2, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1505 | static const struct wacom_features wacom_features_0x90 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1506 | { "Wacom ISDv4 90", WACOM_PKGLEN_GRAPHIRE, 26202, 16325, 255, |
| 1507 | 0, TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1508 | static const struct wacom_features wacom_features_0x93 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1509 | { "Wacom ISDv4 93", WACOM_PKGLEN_GRAPHIRE, 26202, 16325, 255, |
| 1510 | 0, TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Ping Cheng | 11d0cf8 | 2011-06-27 12:57:58 -0700 | [diff] [blame] | 1511 | static const struct wacom_features wacom_features_0x97 = |
| 1512 | { "Wacom ISDv4 97", WACOM_PKGLEN_GRAPHIRE, 26202, 16325, 511, |
| 1513 | 0, TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1514 | static const struct wacom_features wacom_features_0x9A = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1515 | { "Wacom ISDv4 9A", WACOM_PKGLEN_GRAPHIRE, 26202, 16325, 255, |
| 1516 | 0, TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1517 | static const struct wacom_features wacom_features_0x9F = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1518 | { "Wacom ISDv4 9F", WACOM_PKGLEN_GRAPHIRE, 26202, 16325, 255, |
| 1519 | 0, TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1520 | static const struct wacom_features wacom_features_0xE2 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1521 | { "Wacom ISDv4 E2", WACOM_PKGLEN_TPC2FG, 26202, 16325, 255, |
| 1522 | 0, TABLETPC2FG, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1523 | static const struct wacom_features wacom_features_0xE3 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1524 | { "Wacom ISDv4 E3", WACOM_PKGLEN_TPC2FG, 26202, 16325, 255, |
| 1525 | 0, TABLETPC2FG, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Manoj Iyer | 26fcd2a | 2011-03-31 22:39:43 -0700 | [diff] [blame] | 1526 | static const struct wacom_features wacom_features_0xE6 = |
| 1527 | { "Wacom ISDv4 E6", WACOM_PKGLEN_TPC2FG, 27760, 15694, 255, |
| 1528 | 0, TABLETPC2FG, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1529 | static const struct wacom_features wacom_features_0x47 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1530 | { "Wacom Intuos2 6x8", WACOM_PKGLEN_INTUOS, 20320, 16240, 1023, |
| 1531 | 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Ping Cheng | 7b824bb | 2011-03-26 21:16:04 -0700 | [diff] [blame] | 1532 | static const struct wacom_features wacom_features_0xD0 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1533 | { "Wacom Bamboo 2FG", WACOM_PKGLEN_BBFUN, 14720, 9200, 1023, |
Chris Bagwell | c18c2ce | 2011-10-10 08:52:13 -0700 | [diff] [blame] | 1534 | 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Ping Cheng | 7b824bb | 2011-03-26 21:16:04 -0700 | [diff] [blame] | 1535 | static const struct wacom_features wacom_features_0xD1 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1536 | { "Wacom Bamboo 2FG 4x5", WACOM_PKGLEN_BBFUN, 14720, 9200, 1023, |
Chris Bagwell | c18c2ce | 2011-10-10 08:52:13 -0700 | [diff] [blame] | 1537 | 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Ping Cheng | 7b824bb | 2011-03-26 21:16:04 -0700 | [diff] [blame] | 1538 | static const struct wacom_features wacom_features_0xD2 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1539 | { "Wacom Bamboo Craft", WACOM_PKGLEN_BBFUN, 14720, 9200, 1023, |
Chris Bagwell | c18c2ce | 2011-10-10 08:52:13 -0700 | [diff] [blame] | 1540 | 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Ping Cheng | 7b824bb | 2011-03-26 21:16:04 -0700 | [diff] [blame] | 1541 | static const struct wacom_features wacom_features_0xD3 = |
Chris Bagwell | ae92756 | 2011-10-10 08:52:32 -0700 | [diff] [blame] | 1542 | { "Wacom Bamboo 2FG 6x8", WACOM_PKGLEN_BBFUN, 21648, 13700, 1023, |
Chris Bagwell | c18c2ce | 2011-10-10 08:52:13 -0700 | [diff] [blame] | 1543 | 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Kevin Granade | 57a7872 | 2010-12-10 23:04:02 -0800 | [diff] [blame] | 1544 | static const struct wacom_features wacom_features_0xD4 = |
Ping Cheng | a001a8f | 2011-06-27 12:57:58 -0700 | [diff] [blame] | 1545 | { "Wacom Bamboo Pen", WACOM_PKGLEN_BBFUN, 14720, 9200, 1023, |
Chris Bagwell | c18c2ce | 2011-10-10 08:52:13 -0700 | [diff] [blame] | 1546 | 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Gerard Braad | 18adad1 | 2011-08-16 00:17:56 -0700 | [diff] [blame] | 1547 | static const struct wacom_features wacom_features_0xD5 = |
Chris Bagwell | ae92756 | 2011-10-10 08:52:32 -0700 | [diff] [blame] | 1548 | { "Wacom Bamboo Pen 6x8", WACOM_PKGLEN_BBFUN, 21648, 13700, 1023, |
Chris Bagwell | c18c2ce | 2011-10-10 08:52:13 -0700 | [diff] [blame] | 1549 | 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Ping Cheng | 7b824bb | 2011-03-26 21:16:04 -0700 | [diff] [blame] | 1550 | static const struct wacom_features wacom_features_0xD6 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1551 | { "Wacom BambooPT 2FG 4x5", WACOM_PKGLEN_BBFUN, 14720, 9200, 1023, |
Chris Bagwell | c18c2ce | 2011-10-10 08:52:13 -0700 | [diff] [blame] | 1552 | 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Ping Cheng | 7b824bb | 2011-03-26 21:16:04 -0700 | [diff] [blame] | 1553 | static const struct wacom_features wacom_features_0xD7 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1554 | { "Wacom BambooPT 2FG Small", WACOM_PKGLEN_BBFUN, 14720, 9200, 1023, |
Chris Bagwell | c18c2ce | 2011-10-10 08:52:13 -0700 | [diff] [blame] | 1555 | 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Ping Cheng | 7b824bb | 2011-03-26 21:16:04 -0700 | [diff] [blame] | 1556 | static const struct wacom_features wacom_features_0xD8 = |
Chris Bagwell | ae92756 | 2011-10-10 08:52:32 -0700 | [diff] [blame] | 1557 | { "Wacom Bamboo Comic 2FG", WACOM_PKGLEN_BBFUN, 21648, 13700, 1023, |
Chris Bagwell | c18c2ce | 2011-10-10 08:52:13 -0700 | [diff] [blame] | 1558 | 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Ping Cheng | 7b824bb | 2011-03-26 21:16:04 -0700 | [diff] [blame] | 1559 | static const struct wacom_features wacom_features_0xDA = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1560 | { "Wacom Bamboo 2FG 4x5 SE", WACOM_PKGLEN_BBFUN, 14720, 9200, 1023, |
Chris Bagwell | c18c2ce | 2011-10-10 08:52:13 -0700 | [diff] [blame] | 1561 | 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
David Foley | 47d0923 | 2010-12-07 21:05:59 -0800 | [diff] [blame] | 1562 | static struct wacom_features wacom_features_0xDB = |
Chris Bagwell | ae92756 | 2011-10-10 08:52:32 -0700 | [diff] [blame] | 1563 | { "Wacom Bamboo 2FG 6x8 SE", WACOM_PKGLEN_BBFUN, 21648, 13700, 1023, |
Chris Bagwell | c18c2ce | 2011-10-10 08:52:13 -0700 | [diff] [blame] | 1564 | 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Chris Bagwell | 73149ab | 2011-10-26 22:34:21 -0700 | [diff] [blame] | 1565 | static const struct wacom_features wacom_features_0xDD = |
| 1566 | { "Wacom Bamboo Connect", WACOM_PKGLEN_BBPEN, 14720, 9200, 1023, |
| 1567 | 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
| 1568 | static const struct wacom_features wacom_features_0xDE = |
| 1569 | { "Wacom Bamboo 16FG 4x5", WACOM_PKGLEN_BBPEN, 14720, 9200, 1023, |
| 1570 | 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
| 1571 | static const struct wacom_features wacom_features_0xDF = |
| 1572 | { "Wacom Bamboo 16FG 6x8", WACOM_PKGLEN_BBPEN, 21648, 13700, 1023, |
| 1573 | 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Ajay Ramaswamy | 7b4b306 | 2010-12-23 01:19:39 -0800 | [diff] [blame] | 1574 | static const struct wacom_features wacom_features_0x6004 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1575 | { "ISD-V4", WACOM_PKGLEN_GRAPHIRE, 12800, 8000, 255, |
| 1576 | 0, TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 1577 | |
| 1578 | #define USB_DEVICE_WACOM(prod) \ |
| 1579 | USB_DEVICE(USB_VENDOR_ID_WACOM, prod), \ |
| 1580 | .driver_info = (kernel_ulong_t)&wacom_features_##prod |
| 1581 | |
Aristeu Rozanski | 1483f55 | 2011-06-22 01:17:17 -0700 | [diff] [blame] | 1582 | #define USB_DEVICE_DETAILED(prod, class, sub, proto) \ |
| 1583 | USB_DEVICE_AND_INTERFACE_INFO(USB_VENDOR_ID_WACOM, prod, class, \ |
| 1584 | sub, proto), \ |
| 1585 | .driver_info = (kernel_ulong_t)&wacom_features_##prod |
| 1586 | |
Ajay Ramaswamy | 7b4b306 | 2010-12-23 01:19:39 -0800 | [diff] [blame] | 1587 | #define USB_DEVICE_LENOVO(prod) \ |
| 1588 | USB_DEVICE(USB_VENDOR_ID_LENOVO, prod), \ |
| 1589 | .driver_info = (kernel_ulong_t)&wacom_features_##prod |
| 1590 | |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 1591 | const struct usb_device_id wacom_ids[] = { |
| 1592 | { USB_DEVICE_WACOM(0x00) }, |
| 1593 | { USB_DEVICE_WACOM(0x10) }, |
| 1594 | { USB_DEVICE_WACOM(0x11) }, |
| 1595 | { USB_DEVICE_WACOM(0x12) }, |
| 1596 | { USB_DEVICE_WACOM(0x13) }, |
| 1597 | { USB_DEVICE_WACOM(0x14) }, |
| 1598 | { USB_DEVICE_WACOM(0x15) }, |
| 1599 | { USB_DEVICE_WACOM(0x16) }, |
| 1600 | { USB_DEVICE_WACOM(0x17) }, |
| 1601 | { USB_DEVICE_WACOM(0x18) }, |
| 1602 | { USB_DEVICE_WACOM(0x19) }, |
| 1603 | { USB_DEVICE_WACOM(0x60) }, |
| 1604 | { USB_DEVICE_WACOM(0x61) }, |
| 1605 | { USB_DEVICE_WACOM(0x62) }, |
| 1606 | { USB_DEVICE_WACOM(0x63) }, |
| 1607 | { USB_DEVICE_WACOM(0x64) }, |
| 1608 | { USB_DEVICE_WACOM(0x65) }, |
| 1609 | { USB_DEVICE_WACOM(0x69) }, |
Ping Cheng | 11d0cf8 | 2011-06-27 12:57:58 -0700 | [diff] [blame] | 1610 | { USB_DEVICE_WACOM(0x6A) }, |
| 1611 | { USB_DEVICE_WACOM(0x6B) }, |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 1612 | { USB_DEVICE_WACOM(0x20) }, |
| 1613 | { USB_DEVICE_WACOM(0x21) }, |
| 1614 | { USB_DEVICE_WACOM(0x22) }, |
| 1615 | { USB_DEVICE_WACOM(0x23) }, |
| 1616 | { USB_DEVICE_WACOM(0x24) }, |
| 1617 | { USB_DEVICE_WACOM(0x30) }, |
| 1618 | { USB_DEVICE_WACOM(0x31) }, |
| 1619 | { USB_DEVICE_WACOM(0x32) }, |
| 1620 | { USB_DEVICE_WACOM(0x33) }, |
| 1621 | { USB_DEVICE_WACOM(0x34) }, |
| 1622 | { USB_DEVICE_WACOM(0x35) }, |
| 1623 | { USB_DEVICE_WACOM(0x37) }, |
| 1624 | { USB_DEVICE_WACOM(0x38) }, |
| 1625 | { USB_DEVICE_WACOM(0x39) }, |
| 1626 | { USB_DEVICE_WACOM(0xC4) }, |
| 1627 | { USB_DEVICE_WACOM(0xC0) }, |
| 1628 | { USB_DEVICE_WACOM(0xC2) }, |
| 1629 | { USB_DEVICE_WACOM(0x03) }, |
| 1630 | { USB_DEVICE_WACOM(0x41) }, |
| 1631 | { USB_DEVICE_WACOM(0x42) }, |
| 1632 | { USB_DEVICE_WACOM(0x43) }, |
| 1633 | { USB_DEVICE_WACOM(0x44) }, |
| 1634 | { USB_DEVICE_WACOM(0x45) }, |
| 1635 | { USB_DEVICE_WACOM(0xB0) }, |
| 1636 | { USB_DEVICE_WACOM(0xB1) }, |
| 1637 | { USB_DEVICE_WACOM(0xB2) }, |
| 1638 | { USB_DEVICE_WACOM(0xB3) }, |
| 1639 | { USB_DEVICE_WACOM(0xB4) }, |
| 1640 | { USB_DEVICE_WACOM(0xB5) }, |
| 1641 | { USB_DEVICE_WACOM(0xB7) }, |
| 1642 | { USB_DEVICE_WACOM(0xB8) }, |
| 1643 | { USB_DEVICE_WACOM(0xB9) }, |
| 1644 | { USB_DEVICE_WACOM(0xBA) }, |
| 1645 | { USB_DEVICE_WACOM(0xBB) }, |
Ping Cheng | 3a4b4aa | 2010-06-03 22:10:21 -0700 | [diff] [blame] | 1646 | { USB_DEVICE_WACOM(0xBC) }, |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 1647 | { USB_DEVICE_WACOM(0x3F) }, |
| 1648 | { USB_DEVICE_WACOM(0xC5) }, |
| 1649 | { USB_DEVICE_WACOM(0xC6) }, |
| 1650 | { USB_DEVICE_WACOM(0xC7) }, |
Aristeu Rozanski | 1483f55 | 2011-06-22 01:17:17 -0700 | [diff] [blame] | 1651 | /* |
| 1652 | * DTU-2231 has two interfaces on the same configuration, |
| 1653 | * only one is used. |
| 1654 | */ |
| 1655 | { USB_DEVICE_DETAILED(0xCE, USB_CLASS_HID, |
| 1656 | USB_INTERFACE_SUBCLASS_BOOT, |
| 1657 | USB_INTERFACE_PROTOCOL_MOUSE) }, |
Henrik Rydberg | cb734c0 | 2010-09-05 12:53:16 -0700 | [diff] [blame] | 1658 | { USB_DEVICE_WACOM(0xD0) }, |
Chris Bagwell | 2aaacb1 | 2010-09-12 00:11:35 -0700 | [diff] [blame] | 1659 | { USB_DEVICE_WACOM(0xD1) }, |
| 1660 | { USB_DEVICE_WACOM(0xD2) }, |
| 1661 | { USB_DEVICE_WACOM(0xD3) }, |
Kevin Granade | 57a7872 | 2010-12-10 23:04:02 -0800 | [diff] [blame] | 1662 | { USB_DEVICE_WACOM(0xD4) }, |
Gerard Braad | 18adad1 | 2011-08-16 00:17:56 -0700 | [diff] [blame] | 1663 | { USB_DEVICE_WACOM(0xD5) }, |
Ping Cheng | d38acb4 | 2011-01-24 09:32:50 -0800 | [diff] [blame] | 1664 | { USB_DEVICE_WACOM(0xD6) }, |
| 1665 | { USB_DEVICE_WACOM(0xD7) }, |
David Foley | a318e6b | 2010-11-30 23:45:46 -0800 | [diff] [blame] | 1666 | { USB_DEVICE_WACOM(0xD8) }, |
| 1667 | { USB_DEVICE_WACOM(0xDA) }, |
David Foley | 47d0923 | 2010-12-07 21:05:59 -0800 | [diff] [blame] | 1668 | { USB_DEVICE_WACOM(0xDB) }, |
Chris Bagwell | 73149ab | 2011-10-26 22:34:21 -0700 | [diff] [blame] | 1669 | { USB_DEVICE_WACOM(0xDD) }, |
| 1670 | { USB_DEVICE_WACOM(0xDE) }, |
| 1671 | { USB_DEVICE_WACOM(0xDF) }, |
Ping Cheng | c8f2edc | 2010-06-28 01:10:51 -0700 | [diff] [blame] | 1672 | { USB_DEVICE_WACOM(0xF0) }, |
Ping Cheng | 3a4b4aa | 2010-06-03 22:10:21 -0700 | [diff] [blame] | 1673 | { USB_DEVICE_WACOM(0xCC) }, |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 1674 | { USB_DEVICE_WACOM(0x90) }, |
| 1675 | { USB_DEVICE_WACOM(0x93) }, |
Ping Cheng | 11d0cf8 | 2011-06-27 12:57:58 -0700 | [diff] [blame] | 1676 | { USB_DEVICE_WACOM(0x97) }, |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 1677 | { USB_DEVICE_WACOM(0x9A) }, |
| 1678 | { USB_DEVICE_WACOM(0x9F) }, |
| 1679 | { USB_DEVICE_WACOM(0xE2) }, |
| 1680 | { USB_DEVICE_WACOM(0xE3) }, |
Manoj Iyer | 26fcd2a | 2011-03-31 22:39:43 -0700 | [diff] [blame] | 1681 | { USB_DEVICE_WACOM(0xE6) }, |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 1682 | { USB_DEVICE_WACOM(0x47) }, |
Ajay Ramaswamy | 7b4b306 | 2010-12-23 01:19:39 -0800 | [diff] [blame] | 1683 | { USB_DEVICE_LENOVO(0x6004) }, |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 1684 | { } |
| 1685 | }; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 1686 | MODULE_DEVICE_TABLE(usb, wacom_ids); |