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" |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 17 | |
| 18 | static int wacom_penpartner_irq(struct wacom_wac *wacom, void *wcombo) |
| 19 | { |
| 20 | unsigned char *data = wacom->data; |
| 21 | |
| 22 | switch (data[0]) { |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame^] | 23 | case 1: |
| 24 | if (data[5] & 0x80) { |
| 25 | wacom->tool[0] = (data[5] & 0x20) ? BTN_TOOL_RUBBER : BTN_TOOL_PEN; |
| 26 | wacom->id[0] = (data[5] & 0x20) ? ERASER_DEVICE_ID : STYLUS_DEVICE_ID; |
| 27 | wacom_report_key(wcombo, wacom->tool[0], 1); |
| 28 | wacom_report_abs(wcombo, ABS_MISC, wacom->id[0]); /* report tool id */ |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 29 | wacom_report_abs(wcombo, ABS_X, wacom_le16_to_cpu(&data[1])); |
| 30 | wacom_report_abs(wcombo, ABS_Y, wacom_le16_to_cpu(&data[3])); |
| 31 | wacom_report_abs(wcombo, ABS_PRESSURE, (signed char)data[6] + 127); |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame^] | 32 | wacom_report_key(wcombo, BTN_TOUCH, ((signed char)data[6] > -127)); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 33 | wacom_report_key(wcombo, BTN_STYLUS, (data[5] & 0x40)); |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame^] | 34 | } else { |
| 35 | wacom_report_key(wcombo, wacom->tool[0], 0); |
| 36 | wacom_report_abs(wcombo, ABS_MISC, 0); /* report tool id */ |
| 37 | wacom_report_abs(wcombo, ABS_PRESSURE, -1); |
| 38 | wacom_report_key(wcombo, BTN_TOUCH, 0); |
| 39 | } |
| 40 | break; |
| 41 | case 2: |
| 42 | wacom_report_key(wcombo, BTN_TOOL_PEN, 1); |
| 43 | wacom_report_abs(wcombo, ABS_MISC, STYLUS_DEVICE_ID); /* report tool id */ |
| 44 | wacom_report_abs(wcombo, ABS_X, wacom_le16_to_cpu(&data[1])); |
| 45 | wacom_report_abs(wcombo, ABS_Y, wacom_le16_to_cpu(&data[3])); |
| 46 | wacom_report_abs(wcombo, ABS_PRESSURE, (signed char)data[6] + 127); |
| 47 | wacom_report_key(wcombo, BTN_TOUCH, ((signed char)data[6] > -80) && !(data[5] & 0x20)); |
| 48 | wacom_report_key(wcombo, BTN_STYLUS, (data[5] & 0x40)); |
| 49 | break; |
| 50 | default: |
| 51 | printk(KERN_INFO "wacom_penpartner_irq: received unknown report #%d\n", data[0]); |
| 52 | return 0; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 53 | } |
| 54 | return 1; |
| 55 | } |
| 56 | |
| 57 | static int wacom_pl_irq(struct wacom_wac *wacom, void *wcombo) |
| 58 | { |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 59 | struct wacom_features *features = &wacom->features; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 60 | unsigned char *data = wacom->data; |
Ping Cheng | e34b9d2 | 2008-05-05 11:36:41 -0400 | [diff] [blame] | 61 | int prox, pressure; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 62 | |
Ping Cheng | cad7470 | 2009-12-15 00:35:25 -0800 | [diff] [blame] | 63 | if (data[0] != WACOM_REPORT_PENABLED) { |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 64 | dbg("wacom_pl_irq: received unknown report #%d", data[0]); |
| 65 | return 0; |
| 66 | } |
| 67 | |
| 68 | prox = data[1] & 0x40; |
| 69 | |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 70 | if (prox) { |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 71 | wacom->id[0] = ERASER_DEVICE_ID; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 72 | pressure = (signed char)((data[7] << 1) | ((data[4] >> 2) & 1)); |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 73 | if (features->pressure_max > 255) |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 74 | pressure = (pressure << 1) | ((data[4] >> 6) & 1); |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 75 | pressure += (features->pressure_max + 1) / 2; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 76 | |
| 77 | /* |
| 78 | * if going from out of proximity into proximity select between the eraser |
| 79 | * and the pen based on the state of the stylus2 button, choose eraser if |
| 80 | * pressed else choose pen. if not a proximity change from out to in, send |
| 81 | * an out of proximity for previous tool then a in for new tool. |
| 82 | */ |
| 83 | if (!wacom->tool[0]) { |
| 84 | /* Eraser bit set for DTF */ |
| 85 | if (data[1] & 0x10) |
| 86 | wacom->tool[1] = BTN_TOOL_RUBBER; |
| 87 | else |
| 88 | /* Going into proximity select tool */ |
| 89 | wacom->tool[1] = (data[4] & 0x20) ? BTN_TOOL_RUBBER : BTN_TOOL_PEN; |
| 90 | } else { |
| 91 | /* was entered with stylus2 pressed */ |
| 92 | if (wacom->tool[1] == BTN_TOOL_RUBBER && !(data[4] & 0x20)) { |
| 93 | /* report out proximity for previous tool */ |
| 94 | wacom_report_key(wcombo, wacom->tool[1], 0); |
| 95 | wacom_input_sync(wcombo); |
| 96 | wacom->tool[1] = BTN_TOOL_PEN; |
| 97 | return 0; |
| 98 | } |
| 99 | } |
| 100 | if (wacom->tool[1] != BTN_TOOL_RUBBER) { |
| 101 | /* Unknown tool selected default to pen tool */ |
| 102 | wacom->tool[1] = BTN_TOOL_PEN; |
Ping Cheng | e34b9d2 | 2008-05-05 11:36:41 -0400 | [diff] [blame] | 103 | wacom->id[0] = STYLUS_DEVICE_ID; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 104 | } |
| 105 | wacom_report_key(wcombo, wacom->tool[1], prox); /* report in proximity for tool */ |
Ping Cheng | e34b9d2 | 2008-05-05 11:36:41 -0400 | [diff] [blame] | 106 | wacom_report_abs(wcombo, ABS_MISC, wacom->id[0]); /* report tool id */ |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 107 | wacom_report_abs(wcombo, ABS_X, data[3] | (data[2] << 7) | ((data[1] & 0x03) << 14)); |
| 108 | wacom_report_abs(wcombo, ABS_Y, data[6] | (data[5] << 7) | ((data[4] & 0x03) << 14)); |
| 109 | wacom_report_abs(wcombo, ABS_PRESSURE, pressure); |
| 110 | |
| 111 | wacom_report_key(wcombo, BTN_TOUCH, data[4] & 0x08); |
| 112 | wacom_report_key(wcombo, BTN_STYLUS, data[4] & 0x10); |
| 113 | /* Only allow the stylus2 button to be reported for the pen tool. */ |
| 114 | wacom_report_key(wcombo, BTN_STYLUS2, (wacom->tool[1] == BTN_TOOL_PEN) && (data[4] & 0x20)); |
| 115 | } else { |
| 116 | /* report proximity-out of a (valid) tool */ |
| 117 | if (wacom->tool[1] != BTN_TOOL_RUBBER) { |
| 118 | /* Unknown tool selected default to pen tool */ |
| 119 | wacom->tool[1] = BTN_TOOL_PEN; |
| 120 | } |
| 121 | wacom_report_key(wcombo, wacom->tool[1], prox); |
| 122 | } |
| 123 | |
| 124 | wacom->tool[0] = prox; /* Save proximity state */ |
| 125 | return 1; |
| 126 | } |
| 127 | |
| 128 | static int wacom_ptu_irq(struct wacom_wac *wacom, void *wcombo) |
| 129 | { |
| 130 | unsigned char *data = wacom->data; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 131 | |
Ping Cheng | cad7470 | 2009-12-15 00:35:25 -0800 | [diff] [blame] | 132 | if (data[0] != WACOM_REPORT_PENABLED) { |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 133 | printk(KERN_INFO "wacom_ptu_irq: received unknown report #%d\n", data[0]); |
| 134 | return 0; |
| 135 | } |
| 136 | |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 137 | if (data[1] & 0x04) { |
| 138 | wacom_report_key(wcombo, BTN_TOOL_RUBBER, data[1] & 0x20); |
| 139 | wacom_report_key(wcombo, BTN_TOUCH, data[1] & 0x08); |
Ping Cheng | e34b9d2 | 2008-05-05 11:36:41 -0400 | [diff] [blame] | 140 | wacom->id[0] = ERASER_DEVICE_ID; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 141 | } else { |
| 142 | wacom_report_key(wcombo, BTN_TOOL_PEN, data[1] & 0x20); |
| 143 | wacom_report_key(wcombo, BTN_TOUCH, data[1] & 0x01); |
Ping Cheng | e34b9d2 | 2008-05-05 11:36:41 -0400 | [diff] [blame] | 144 | wacom->id[0] = STYLUS_DEVICE_ID; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 145 | } |
Ping Cheng | e34b9d2 | 2008-05-05 11:36:41 -0400 | [diff] [blame] | 146 | wacom_report_abs(wcombo, ABS_MISC, wacom->id[0]); /* report tool id */ |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 147 | wacom_report_abs(wcombo, ABS_X, wacom_le16_to_cpu(&data[2])); |
| 148 | wacom_report_abs(wcombo, ABS_Y, wacom_le16_to_cpu(&data[4])); |
| 149 | wacom_report_abs(wcombo, ABS_PRESSURE, wacom_le16_to_cpu(&data[6])); |
| 150 | wacom_report_key(wcombo, BTN_STYLUS, data[1] & 0x02); |
| 151 | wacom_report_key(wcombo, BTN_STYLUS2, data[1] & 0x10); |
| 152 | return 1; |
| 153 | } |
| 154 | |
| 155 | static int wacom_graphire_irq(struct wacom_wac *wacom, void *wcombo) |
| 156 | { |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 157 | struct wacom_features *features = &wacom->features; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 158 | unsigned char *data = wacom->data; |
Ping Cheng | 3b57ca0 | 2010-03-04 21:50:59 -0800 | [diff] [blame] | 159 | int x, y, prox; |
| 160 | int rw = 0; |
| 161 | int retval = 0; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 162 | |
Ping Cheng | cad7470 | 2009-12-15 00:35:25 -0800 | [diff] [blame] | 163 | if (data[0] != WACOM_REPORT_PENABLED) { |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 164 | dbg("wacom_graphire_irq: received unknown report #%d", data[0]); |
Ping Cheng | 3b57ca0 | 2010-03-04 21:50:59 -0800 | [diff] [blame] | 165 | goto exit; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 166 | } |
| 167 | |
Ping Cheng | 3b57ca0 | 2010-03-04 21:50:59 -0800 | [diff] [blame] | 168 | prox = data[1] & 0x80; |
| 169 | if (prox || wacom->id[0]) { |
| 170 | if (prox) { |
| 171 | switch ((data[1] >> 5) & 3) { |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 172 | |
| 173 | case 0: /* Pen */ |
| 174 | wacom->tool[0] = BTN_TOOL_PEN; |
Ping Cheng | e34b9d2 | 2008-05-05 11:36:41 -0400 | [diff] [blame] | 175 | wacom->id[0] = STYLUS_DEVICE_ID; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 176 | break; |
| 177 | |
| 178 | case 1: /* Rubber */ |
| 179 | wacom->tool[0] = BTN_TOOL_RUBBER; |
Ping Cheng | e34b9d2 | 2008-05-05 11:36:41 -0400 | [diff] [blame] | 180 | wacom->id[0] = ERASER_DEVICE_ID; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 181 | break; |
| 182 | |
| 183 | case 2: /* Mouse with wheel */ |
| 184 | wacom_report_key(wcombo, BTN_MIDDLE, data[1] & 0x04); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 185 | /* fall through */ |
| 186 | |
| 187 | case 3: /* Mouse without wheel */ |
| 188 | wacom->tool[0] = BTN_TOOL_MOUSE; |
Ping Cheng | e34b9d2 | 2008-05-05 11:36:41 -0400 | [diff] [blame] | 189 | wacom->id[0] = CURSOR_DEVICE_ID; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 190 | break; |
Ping Cheng | 3b57ca0 | 2010-03-04 21:50:59 -0800 | [diff] [blame] | 191 | } |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 192 | } |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 193 | x = wacom_le16_to_cpu(&data[2]); |
| 194 | y = wacom_le16_to_cpu(&data[4]); |
| 195 | wacom_report_abs(wcombo, ABS_X, x); |
| 196 | wacom_report_abs(wcombo, ABS_Y, y); |
| 197 | if (wacom->tool[0] != BTN_TOOL_MOUSE) { |
| 198 | wacom_report_abs(wcombo, ABS_PRESSURE, data[6] | ((data[7] & 0x01) << 8)); |
| 199 | wacom_report_key(wcombo, BTN_TOUCH, data[1] & 0x01); |
| 200 | wacom_report_key(wcombo, BTN_STYLUS, data[1] & 0x02); |
| 201 | wacom_report_key(wcombo, BTN_STYLUS2, data[1] & 0x04); |
Dmitry Torokhov | afb567e | 2010-04-13 23:08:58 -0700 | [diff] [blame] | 202 | } else { |
Ping Cheng | 3b57ca0 | 2010-03-04 21:50:59 -0800 | [diff] [blame] | 203 | wacom_report_key(wcombo, BTN_LEFT, data[1] & 0x01); |
| 204 | wacom_report_key(wcombo, BTN_RIGHT, data[1] & 0x02); |
| 205 | if (features->type == WACOM_G4 || |
| 206 | features->type == WACOM_MO) { |
| 207 | wacom_report_abs(wcombo, ABS_DISTANCE, data[6] & 0x3f); |
| 208 | rw = (signed)(data[7] & 0x04) - (data[7] & 0x03); |
| 209 | } else { |
| 210 | wacom_report_abs(wcombo, ABS_DISTANCE, data[7] & 0x3f); |
| 211 | rw = -(signed)data[6]; |
| 212 | } |
| 213 | wacom_report_rel(wcombo, REL_WHEEL, rw); |
Dmitry Torokhov | afb567e | 2010-04-13 23:08:58 -0700 | [diff] [blame] | 214 | } |
Ping Cheng | 3b57ca0 | 2010-03-04 21:50:59 -0800 | [diff] [blame] | 215 | |
| 216 | if (!prox) |
| 217 | wacom->id[0] = 0; |
| 218 | wacom_report_abs(wcombo, ABS_MISC, wacom->id[0]); /* report tool id */ |
| 219 | wacom_report_key(wcombo, wacom->tool[0], prox); |
| 220 | wacom_input_sync(wcombo); /* sync last event */ |
Ping Cheng | 80d4e8e | 2007-02-23 12:22:48 -0800 | [diff] [blame] | 221 | } |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 222 | |
| 223 | /* send pad data */ |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 224 | switch (features->type) { |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame^] | 225 | case WACOM_G4: |
Ping Cheng | 3b57ca0 | 2010-03-04 21:50:59 -0800 | [diff] [blame] | 226 | prox = data[7] & 0xf8; |
| 227 | if (prox || wacom->id[1]) { |
Ping Cheng | e34b9d2 | 2008-05-05 11:36:41 -0400 | [diff] [blame] | 228 | wacom->id[1] = PAD_DEVICE_ID; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 229 | wacom_report_key(wcombo, BTN_0, (data[7] & 0x40)); |
| 230 | wacom_report_key(wcombo, BTN_4, (data[7] & 0x80)); |
| 231 | rw = ((data[7] & 0x18) >> 3) - ((data[7] & 0x20) >> 3); |
| 232 | wacom_report_rel(wcombo, REL_WHEEL, rw); |
| 233 | wacom_report_key(wcombo, BTN_TOOL_FINGER, 0xf0); |
Ping Cheng | e34b9d2 | 2008-05-05 11:36:41 -0400 | [diff] [blame] | 234 | wacom_report_abs(wcombo, ABS_MISC, wacom->id[1]); |
Ping Cheng | 3b57ca0 | 2010-03-04 21:50:59 -0800 | [diff] [blame] | 235 | if (!prox) |
| 236 | wacom->id[1] = 0; |
| 237 | wacom_report_abs(wcombo, ABS_MISC, wacom->id[1]); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 238 | wacom_input_event(wcombo, EV_MSC, MSC_SERIAL, 0xf0); |
| 239 | } |
Ping Cheng | 3b57ca0 | 2010-03-04 21:50:59 -0800 | [diff] [blame] | 240 | retval = 1; |
Ping Cheng | 7ecfbfd | 2007-06-14 23:32:48 -0400 | [diff] [blame] | 241 | break; |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame^] | 242 | |
| 243 | case WACOM_MO: |
Ping Cheng | 3b57ca0 | 2010-03-04 21:50:59 -0800 | [diff] [blame] | 244 | prox = (data[7] & 0xf8) || data[8]; |
| 245 | if (prox || wacom->id[1]) { |
Ping Cheng | e34b9d2 | 2008-05-05 11:36:41 -0400 | [diff] [blame] | 246 | wacom->id[1] = PAD_DEVICE_ID; |
Ping Cheng | 7ecfbfd | 2007-06-14 23:32:48 -0400 | [diff] [blame] | 247 | wacom_report_key(wcombo, BTN_0, (data[7] & 0x08)); |
| 248 | wacom_report_key(wcombo, BTN_1, (data[7] & 0x20)); |
| 249 | wacom_report_key(wcombo, BTN_4, (data[7] & 0x10)); |
| 250 | wacom_report_key(wcombo, BTN_5, (data[7] & 0x40)); |
| 251 | wacom_report_abs(wcombo, ABS_WHEEL, (data[8] & 0x7f)); |
| 252 | wacom_report_key(wcombo, BTN_TOOL_FINGER, 0xf0); |
Ping Cheng | 3b57ca0 | 2010-03-04 21:50:59 -0800 | [diff] [blame] | 253 | if (!prox) |
| 254 | wacom->id[1] = 0; |
Ping Cheng | e34b9d2 | 2008-05-05 11:36:41 -0400 | [diff] [blame] | 255 | wacom_report_abs(wcombo, ABS_MISC, wacom->id[1]); |
Ping Cheng | 7ecfbfd | 2007-06-14 23:32:48 -0400 | [diff] [blame] | 256 | wacom_input_event(wcombo, EV_MSC, MSC_SERIAL, 0xf0); |
Ping Cheng | 7ecfbfd | 2007-06-14 23:32:48 -0400 | [diff] [blame] | 257 | } |
Ping Cheng | 3b57ca0 | 2010-03-04 21:50:59 -0800 | [diff] [blame] | 258 | retval = 1; |
Ping Cheng | 7ecfbfd | 2007-06-14 23:32:48 -0400 | [diff] [blame] | 259 | break; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 260 | } |
Ping Cheng | 3b57ca0 | 2010-03-04 21:50:59 -0800 | [diff] [blame] | 261 | exit: |
| 262 | return retval; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 263 | } |
| 264 | |
| 265 | static int wacom_intuos_inout(struct wacom_wac *wacom, void *wcombo) |
| 266 | { |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 267 | struct wacom_features *features = &wacom->features; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 268 | unsigned char *data = wacom->data; |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 269 | int idx = 0; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 270 | |
| 271 | /* tool number */ |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 272 | if (features->type == INTUOS) |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 273 | idx = data[1] & 0x01; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 274 | |
| 275 | /* Enter report */ |
| 276 | if ((data[1] & 0xfc) == 0xc0) { |
| 277 | /* serial number of the tool */ |
| 278 | wacom->serial[idx] = ((data[3] & 0x0f) << 28) + |
| 279 | (data[4] << 20) + (data[5] << 12) + |
| 280 | (data[6] << 4) + (data[7] >> 4); |
| 281 | |
| 282 | wacom->id[idx] = (data[2] << 4) | (data[3] >> 4); |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame^] | 283 | |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 284 | switch (wacom->id[idx]) { |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame^] | 285 | case 0x812: /* Inking pen */ |
| 286 | case 0x801: /* Intuos3 Inking pen */ |
| 287 | case 0x20802: /* Intuos4 Classic Pen */ |
| 288 | case 0x012: |
| 289 | wacom->tool[idx] = BTN_TOOL_PENCIL; |
| 290 | break; |
| 291 | |
| 292 | case 0x822: /* Pen */ |
| 293 | case 0x842: |
| 294 | case 0x852: |
| 295 | case 0x823: /* Intuos3 Grip Pen */ |
| 296 | case 0x813: /* Intuos3 Classic Pen */ |
| 297 | case 0x885: /* Intuos3 Marker Pen */ |
| 298 | case 0x802: /* Intuos4 Grip Pen Eraser */ |
| 299 | case 0x804: /* Intuos4 Marker Pen */ |
| 300 | case 0x40802: /* Intuos4 Classic Pen */ |
| 301 | case 0x022: |
| 302 | wacom->tool[idx] = BTN_TOOL_PEN; |
| 303 | break; |
| 304 | |
| 305 | case 0x832: /* Stroke pen */ |
| 306 | case 0x032: |
| 307 | wacom->tool[idx] = BTN_TOOL_BRUSH; |
| 308 | break; |
| 309 | |
| 310 | case 0x007: /* Mouse 4D and 2D */ |
| 311 | case 0x09c: |
| 312 | case 0x094: |
| 313 | case 0x017: /* Intuos3 2D Mouse */ |
| 314 | case 0x806: /* Intuos4 Mouse */ |
| 315 | wacom->tool[idx] = BTN_TOOL_MOUSE; |
| 316 | break; |
| 317 | |
| 318 | case 0x096: /* Lens cursor */ |
| 319 | case 0x097: /* Intuos3 Lens cursor */ |
| 320 | case 0x006: /* Intuos4 Lens cursor */ |
| 321 | wacom->tool[idx] = BTN_TOOL_LENS; |
| 322 | break; |
| 323 | |
| 324 | case 0x82a: /* Eraser */ |
| 325 | case 0x85a: |
| 326 | case 0x91a: |
| 327 | case 0xd1a: |
| 328 | case 0x0fa: |
| 329 | case 0x82b: /* Intuos3 Grip Pen Eraser */ |
| 330 | case 0x81b: /* Intuos3 Classic Pen Eraser */ |
| 331 | case 0x91b: /* Intuos3 Airbrush Eraser */ |
| 332 | case 0x80c: /* Intuos4 Marker Pen Eraser */ |
| 333 | case 0x80a: /* Intuos4 Grip Pen Eraser */ |
| 334 | case 0x4080a: /* Intuos4 Classic Pen Eraser */ |
| 335 | case 0x90a: /* Intuos4 Airbrush Eraser */ |
| 336 | wacom->tool[idx] = BTN_TOOL_RUBBER; |
| 337 | break; |
| 338 | |
| 339 | case 0xd12: |
| 340 | case 0x912: |
| 341 | case 0x112: |
| 342 | case 0x913: /* Intuos3 Airbrush */ |
| 343 | case 0x902: /* Intuos4 Airbrush */ |
| 344 | wacom->tool[idx] = BTN_TOOL_AIRBRUSH; |
| 345 | break; |
| 346 | |
| 347 | default: /* Unknown tool */ |
| 348 | wacom->tool[idx] = BTN_TOOL_PEN; |
| 349 | break; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 350 | } |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 351 | return 1; |
| 352 | } |
| 353 | |
| 354 | /* Exit report */ |
| 355 | if ((data[1] & 0xfe) == 0x80) { |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 356 | /* |
| 357 | * Reset all states otherwise we lose the initial states |
| 358 | * when in-prox next time |
| 359 | */ |
Ping Cheng | 80d4e8e | 2007-02-23 12:22:48 -0800 | [diff] [blame] | 360 | wacom_report_abs(wcombo, ABS_X, 0); |
| 361 | wacom_report_abs(wcombo, ABS_Y, 0); |
| 362 | wacom_report_abs(wcombo, ABS_DISTANCE, 0); |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 363 | wacom_report_abs(wcombo, ABS_TILT_X, 0); |
| 364 | wacom_report_abs(wcombo, ABS_TILT_Y, 0); |
Ping Cheng | 80d4e8e | 2007-02-23 12:22:48 -0800 | [diff] [blame] | 365 | if (wacom->tool[idx] >= BTN_TOOL_MOUSE) { |
| 366 | wacom_report_key(wcombo, BTN_LEFT, 0); |
| 367 | wacom_report_key(wcombo, BTN_MIDDLE, 0); |
| 368 | wacom_report_key(wcombo, BTN_RIGHT, 0); |
| 369 | wacom_report_key(wcombo, BTN_SIDE, 0); |
| 370 | wacom_report_key(wcombo, BTN_EXTRA, 0); |
| 371 | wacom_report_abs(wcombo, ABS_THROTTLE, 0); |
| 372 | wacom_report_abs(wcombo, ABS_RZ, 0); |
Ping Cheng | 7ecfbfd | 2007-06-14 23:32:48 -0400 | [diff] [blame] | 373 | } else { |
Ping Cheng | 80d4e8e | 2007-02-23 12:22:48 -0800 | [diff] [blame] | 374 | wacom_report_abs(wcombo, ABS_PRESSURE, 0); |
Ping Cheng | 80d4e8e | 2007-02-23 12:22:48 -0800 | [diff] [blame] | 375 | wacom_report_key(wcombo, BTN_STYLUS, 0); |
| 376 | wacom_report_key(wcombo, BTN_STYLUS2, 0); |
| 377 | wacom_report_key(wcombo, BTN_TOUCH, 0); |
| 378 | wacom_report_abs(wcombo, ABS_WHEEL, 0); |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 379 | if (features->type >= INTUOS3S) |
Ping Cheng | c413ec4 | 2009-06-28 22:50:58 -0700 | [diff] [blame] | 380 | wacom_report_abs(wcombo, ABS_Z, 0); |
Ping Cheng | 8d32e3a | 2006-09-26 13:34:47 -0700 | [diff] [blame] | 381 | } |
Ping Cheng | 80d4e8e | 2007-02-23 12:22:48 -0800 | [diff] [blame] | 382 | wacom_report_key(wcombo, wacom->tool[idx], 0); |
| 383 | wacom_report_abs(wcombo, ABS_MISC, 0); /* reset tool id */ |
| 384 | wacom_input_event(wcombo, EV_MSC, MSC_SERIAL, wacom->serial[idx]); |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 385 | wacom->id[idx] = 0; |
Ping Cheng | 80d4e8e | 2007-02-23 12:22:48 -0800 | [diff] [blame] | 386 | return 2; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 387 | } |
| 388 | return 0; |
| 389 | } |
| 390 | |
| 391 | static void wacom_intuos_general(struct wacom_wac *wacom, void *wcombo) |
| 392 | { |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 393 | struct wacom_features *features = &wacom->features; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 394 | unsigned char *data = wacom->data; |
| 395 | unsigned int t; |
| 396 | |
| 397 | /* general pen packet */ |
| 398 | if ((data[1] & 0xb8) == 0xa0) { |
| 399 | t = (data[6] << 2) | ((data[7] >> 6) & 3); |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 400 | if (features->type >= INTUOS4S && features->type <= INTUOS4L) |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 401 | t = (t << 1) | (data[1] & 1); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 402 | wacom_report_abs(wcombo, ABS_PRESSURE, t); |
| 403 | wacom_report_abs(wcombo, ABS_TILT_X, |
| 404 | ((data[7] << 1) & 0x7e) | (data[8] >> 7)); |
| 405 | wacom_report_abs(wcombo, ABS_TILT_Y, data[8] & 0x7f); |
| 406 | wacom_report_key(wcombo, BTN_STYLUS, data[1] & 2); |
| 407 | wacom_report_key(wcombo, BTN_STYLUS2, data[1] & 4); |
| 408 | wacom_report_key(wcombo, BTN_TOUCH, t > 10); |
| 409 | } |
| 410 | |
| 411 | /* airbrush second packet */ |
| 412 | if ((data[1] & 0xbc) == 0xb4) { |
| 413 | wacom_report_abs(wcombo, ABS_WHEEL, |
| 414 | (data[6] << 2) | ((data[7] >> 6) & 3)); |
| 415 | wacom_report_abs(wcombo, ABS_TILT_X, |
| 416 | ((data[7] << 1) & 0x7e) | (data[8] >> 7)); |
| 417 | wacom_report_abs(wcombo, ABS_TILT_Y, data[8] & 0x7f); |
| 418 | } |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 419 | } |
| 420 | |
| 421 | static int wacom_intuos_irq(struct wacom_wac *wacom, void *wcombo) |
| 422 | { |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 423 | struct wacom_features *features = &wacom->features; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 424 | unsigned char *data = wacom->data; |
| 425 | unsigned int t; |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 426 | int idx = 0, result; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 427 | |
Ping Cheng | cad7470 | 2009-12-15 00:35:25 -0800 | [diff] [blame] | 428 | if (data[0] != WACOM_REPORT_PENABLED && data[0] != WACOM_REPORT_INTUOSREAD |
| 429 | && data[0] != WACOM_REPORT_INTUOSWRITE && data[0] != WACOM_REPORT_INTUOSPAD) { |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 430 | dbg("wacom_intuos_irq: received unknown report #%d", data[0]); |
| 431 | return 0; |
| 432 | } |
| 433 | |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 434 | /* tool number */ |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 435 | if (features->type == INTUOS) |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 436 | idx = data[1] & 0x01; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 437 | |
| 438 | /* pad packets. Works as a second tool and is always in prox */ |
Ping Cheng | cad7470 | 2009-12-15 00:35:25 -0800 | [diff] [blame] | 439 | if (data[0] == WACOM_REPORT_INTUOSPAD) { |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 440 | /* initiate the pad as a device */ |
| 441 | if (wacom->tool[1] != BTN_TOOL_FINGER) |
| 442 | wacom->tool[1] = BTN_TOOL_FINGER; |
| 443 | |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 444 | if (features->type >= INTUOS4S && features->type <= INTUOS4L) { |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 445 | wacom_report_key(wcombo, BTN_0, (data[2] & 0x01)); |
| 446 | wacom_report_key(wcombo, BTN_1, (data[3] & 0x01)); |
| 447 | wacom_report_key(wcombo, BTN_2, (data[3] & 0x02)); |
| 448 | wacom_report_key(wcombo, BTN_3, (data[3] & 0x04)); |
| 449 | wacom_report_key(wcombo, BTN_4, (data[3] & 0x08)); |
| 450 | wacom_report_key(wcombo, BTN_5, (data[3] & 0x10)); |
| 451 | wacom_report_key(wcombo, BTN_6, (data[3] & 0x20)); |
| 452 | if (data[1] & 0x80) { |
| 453 | wacom_report_abs(wcombo, ABS_WHEEL, (data[1] & 0x7f)); |
Ping Cheng | a862952 | 2009-06-02 16:59:58 -0700 | [diff] [blame] | 454 | } else { |
| 455 | /* Out of proximity, clear wheel value. */ |
| 456 | wacom_report_abs(wcombo, ABS_WHEEL, 0); |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 457 | } |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 458 | if (features->type != INTUOS4S) { |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 459 | wacom_report_key(wcombo, BTN_7, (data[3] & 0x40)); |
| 460 | wacom_report_key(wcombo, BTN_8, (data[3] & 0x80)); |
| 461 | } |
| 462 | if (data[1] | (data[2] & 0x01) | data[3]) { |
| 463 | wacom_report_key(wcombo, wacom->tool[1], 1); |
| 464 | wacom_report_abs(wcombo, ABS_MISC, PAD_DEVICE_ID); |
| 465 | } else { |
| 466 | wacom_report_key(wcombo, wacom->tool[1], 0); |
| 467 | wacom_report_abs(wcombo, ABS_MISC, 0); |
| 468 | } |
| 469 | } else { |
| 470 | wacom_report_key(wcombo, BTN_0, (data[5] & 0x01)); |
| 471 | wacom_report_key(wcombo, BTN_1, (data[5] & 0x02)); |
| 472 | wacom_report_key(wcombo, BTN_2, (data[5] & 0x04)); |
| 473 | wacom_report_key(wcombo, BTN_3, (data[5] & 0x08)); |
| 474 | wacom_report_key(wcombo, BTN_4, (data[6] & 0x01)); |
| 475 | wacom_report_key(wcombo, BTN_5, (data[6] & 0x02)); |
| 476 | wacom_report_key(wcombo, BTN_6, (data[6] & 0x04)); |
| 477 | wacom_report_key(wcombo, BTN_7, (data[6] & 0x08)); |
| 478 | wacom_report_key(wcombo, BTN_8, (data[5] & 0x10)); |
| 479 | wacom_report_key(wcombo, BTN_9, (data[6] & 0x10)); |
| 480 | wacom_report_abs(wcombo, ABS_RX, ((data[1] & 0x1f) << 8) | data[2]); |
| 481 | wacom_report_abs(wcombo, ABS_RY, ((data[3] & 0x1f) << 8) | data[4]); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 482 | |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 483 | if ((data[5] & 0x1f) | (data[6] & 0x1f) | (data[1] & 0x1f) | |
| 484 | data[2] | (data[3] & 0x1f) | data[4]) { |
| 485 | wacom_report_key(wcombo, wacom->tool[1], 1); |
| 486 | wacom_report_abs(wcombo, ABS_MISC, PAD_DEVICE_ID); |
| 487 | } else { |
| 488 | wacom_report_key(wcombo, wacom->tool[1], 0); |
| 489 | wacom_report_abs(wcombo, ABS_MISC, 0); |
| 490 | } |
| 491 | } |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 492 | wacom_input_event(wcombo, EV_MSC, MSC_SERIAL, 0xffffffff); |
| 493 | return 1; |
| 494 | } |
| 495 | |
| 496 | /* process in/out prox events */ |
| 497 | result = wacom_intuos_inout(wacom, wcombo); |
| 498 | if (result) |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame^] | 499 | return result - 1; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 500 | |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 501 | /* don't proceed if we don't know the ID */ |
| 502 | if (!wacom->id[idx]) |
| 503 | return 0; |
| 504 | |
| 505 | /* Only large Intuos support Lense Cursor */ |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 506 | if (wacom->tool[idx] == BTN_TOOL_LENS && |
| 507 | (features->type == INTUOS3 || |
| 508 | features->type == INTUOS3S || |
| 509 | features->type == INTUOS4 || |
| 510 | features->type == INTUOS4S)) { |
| 511 | |
Ping Cheng | 80d4e8e | 2007-02-23 12:22:48 -0800 | [diff] [blame] | 512 | return 0; |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 513 | } |
Ping Cheng | 80d4e8e | 2007-02-23 12:22:48 -0800 | [diff] [blame] | 514 | |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 515 | /* Cintiq doesn't send data when RDY bit isn't set */ |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 516 | if (features->type == CINTIQ && !(data[1] & 0x40)) |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 517 | return 0; |
| 518 | |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 519 | if (features->type >= INTUOS3S) { |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 520 | wacom_report_abs(wcombo, ABS_X, (data[2] << 9) | (data[3] << 1) | ((data[9] >> 1) & 1)); |
| 521 | wacom_report_abs(wcombo, ABS_Y, (data[4] << 9) | (data[5] << 1) | (data[9] & 1)); |
| 522 | wacom_report_abs(wcombo, ABS_DISTANCE, ((data[9] >> 2) & 0x3f)); |
| 523 | } else { |
| 524 | wacom_report_abs(wcombo, ABS_X, wacom_be16_to_cpu(&data[2])); |
| 525 | wacom_report_abs(wcombo, ABS_Y, wacom_be16_to_cpu(&data[4])); |
| 526 | wacom_report_abs(wcombo, ABS_DISTANCE, ((data[9] >> 3) & 0x1f)); |
| 527 | } |
| 528 | |
| 529 | /* process general packets */ |
| 530 | wacom_intuos_general(wacom, wcombo); |
| 531 | |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 532 | /* 4D mouse, 2D mouse, marker pen rotation, tilt mouse, or Lens cursor packets */ |
| 533 | 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] | 534 | |
| 535 | if (data[1] & 0x02) { |
| 536 | /* Rotation packet */ |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 537 | if (features->type >= INTUOS3S) { |
Ping Cheng | 0e1763f | 2008-03-13 16:46:46 -0400 | [diff] [blame] | 538 | /* I3 marker pen rotation */ |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 539 | t = (data[6] << 3) | ((data[7] >> 5) & 7); |
| 540 | t = (data[7] & 0x20) ? ((t > 900) ? ((t-1) / 2 - 1350) : |
| 541 | ((t-1) / 2 + 450)) : (450 - t / 2) ; |
Ping Cheng | 0e1763f | 2008-03-13 16:46:46 -0400 | [diff] [blame] | 542 | wacom_report_abs(wcombo, ABS_Z, t); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 543 | } else { |
| 544 | /* 4D mouse rotation packet */ |
| 545 | t = (data[6] << 3) | ((data[7] >> 5) & 7); |
| 546 | wacom_report_abs(wcombo, ABS_RZ, (data[7] & 0x20) ? |
| 547 | ((t - 1) / 2) : -t / 2); |
| 548 | } |
| 549 | |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 550 | } else if (!(data[1] & 0x10) && features->type < INTUOS3S) { |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 551 | /* 4D mouse packet */ |
| 552 | wacom_report_key(wcombo, BTN_LEFT, data[8] & 0x01); |
| 553 | wacom_report_key(wcombo, BTN_MIDDLE, data[8] & 0x02); |
| 554 | wacom_report_key(wcombo, BTN_RIGHT, data[8] & 0x04); |
| 555 | |
| 556 | wacom_report_key(wcombo, BTN_SIDE, data[8] & 0x20); |
| 557 | wacom_report_key(wcombo, BTN_EXTRA, data[8] & 0x10); |
| 558 | t = (data[6] << 2) | ((data[7] >> 6) & 3); |
| 559 | wacom_report_abs(wcombo, ABS_THROTTLE, (data[8] & 0x08) ? -t : t); |
| 560 | |
| 561 | } else if (wacom->tool[idx] == BTN_TOOL_MOUSE) { |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 562 | /* I4 mouse */ |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 563 | if (features->type >= INTUOS4S && features->type <= INTUOS4L) { |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 564 | wacom_report_key(wcombo, BTN_LEFT, data[6] & 0x01); |
| 565 | wacom_report_key(wcombo, BTN_MIDDLE, data[6] & 0x02); |
| 566 | wacom_report_key(wcombo, BTN_RIGHT, data[6] & 0x04); |
| 567 | wacom_report_rel(wcombo, REL_WHEEL, ((data[7] & 0x80) >> 7) |
| 568 | - ((data[7] & 0x40) >> 6)); |
| 569 | wacom_report_key(wcombo, BTN_SIDE, data[6] & 0x08); |
| 570 | wacom_report_key(wcombo, BTN_EXTRA, data[6] & 0x10); |
| 571 | |
| 572 | wacom_report_abs(wcombo, ABS_TILT_X, |
| 573 | ((data[7] << 1) & 0x7e) | (data[8] >> 7)); |
| 574 | wacom_report_abs(wcombo, ABS_TILT_Y, data[8] & 0x7f); |
| 575 | } else { |
| 576 | /* 2D mouse packet */ |
| 577 | wacom_report_key(wcombo, BTN_LEFT, data[8] & 0x04); |
| 578 | wacom_report_key(wcombo, BTN_MIDDLE, data[8] & 0x08); |
| 579 | wacom_report_key(wcombo, BTN_RIGHT, data[8] & 0x10); |
| 580 | wacom_report_rel(wcombo, REL_WHEEL, (data[8] & 0x01) |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 581 | - ((data[8] & 0x02) >> 1)); |
| 582 | |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 583 | /* I3 2D mouse side buttons */ |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 584 | if (features->type >= INTUOS3S && features->type <= INTUOS3L) { |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 585 | wacom_report_key(wcombo, BTN_SIDE, data[8] & 0x40); |
| 586 | wacom_report_key(wcombo, BTN_EXTRA, data[8] & 0x20); |
| 587 | } |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 588 | } |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 589 | } else if ((features->type < INTUOS3S || features->type == INTUOS3L || |
| 590 | features->type == INTUOS4L) && |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 591 | wacom->tool[idx] == BTN_TOOL_LENS) { |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 592 | /* Lens cursor packets */ |
| 593 | wacom_report_key(wcombo, BTN_LEFT, data[8] & 0x01); |
| 594 | wacom_report_key(wcombo, BTN_MIDDLE, data[8] & 0x02); |
| 595 | wacom_report_key(wcombo, BTN_RIGHT, data[8] & 0x04); |
| 596 | wacom_report_key(wcombo, BTN_SIDE, data[8] & 0x10); |
| 597 | wacom_report_key(wcombo, BTN_EXTRA, data[8] & 0x08); |
| 598 | } |
| 599 | } |
| 600 | |
| 601 | wacom_report_abs(wcombo, ABS_MISC, wacom->id[idx]); /* report tool id */ |
| 602 | wacom_report_key(wcombo, wacom->tool[idx], 1); |
| 603 | wacom_input_event(wcombo, EV_MSC, MSC_SERIAL, wacom->serial[idx]); |
| 604 | return 1; |
| 605 | } |
| 606 | |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 607 | |
| 608 | static void wacom_tpc_finger_in(struct wacom_wac *wacom, void *wcombo, char *data, int idx) |
| 609 | { |
| 610 | wacom_report_abs(wcombo, ABS_X, |
Ping Cheng | 3b57ca0 | 2010-03-04 21:50:59 -0800 | [diff] [blame] | 611 | data[2 + idx * 2] | ((data[3 + idx * 2] & 0x7f) << 8)); |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 612 | wacom_report_abs(wcombo, ABS_Y, |
Ping Cheng | 3b57ca0 | 2010-03-04 21:50:59 -0800 | [diff] [blame] | 613 | data[6 + idx * 2] | ((data[7 + idx * 2] & 0x7f) << 8)); |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 614 | wacom_report_abs(wcombo, ABS_MISC, wacom->id[0]); |
| 615 | wacom_report_key(wcombo, wacom->tool[idx], 1); |
| 616 | if (idx) |
| 617 | wacom_input_event(wcombo, EV_MSC, MSC_SERIAL, 0xf0); |
| 618 | else |
| 619 | wacom_report_key(wcombo, BTN_TOUCH, 1); |
| 620 | } |
| 621 | |
| 622 | static void wacom_tpc_touch_out(struct wacom_wac *wacom, void *wcombo, int idx) |
| 623 | { |
| 624 | wacom_report_abs(wcombo, ABS_X, 0); |
| 625 | wacom_report_abs(wcombo, ABS_Y, 0); |
| 626 | wacom_report_abs(wcombo, ABS_MISC, 0); |
| 627 | wacom_report_key(wcombo, wacom->tool[idx], 0); |
| 628 | if (idx) |
| 629 | wacom_input_event(wcombo, EV_MSC, MSC_SERIAL, 0xf0); |
| 630 | else |
| 631 | wacom_report_key(wcombo, BTN_TOUCH, 0); |
| 632 | return; |
| 633 | } |
| 634 | |
| 635 | static void wacom_tpc_touch_in(struct wacom_wac *wacom, void *wcombo) |
| 636 | { |
| 637 | char *data = wacom->data; |
| 638 | struct urb *urb = ((struct wacom_combo *)wcombo)->urb; |
| 639 | static int firstFinger = 0; |
| 640 | static int secondFinger = 0; |
| 641 | |
| 642 | wacom->tool[0] = BTN_TOOL_DOUBLETAP; |
| 643 | wacom->id[0] = TOUCH_DEVICE_ID; |
| 644 | wacom->tool[1] = BTN_TOOL_TRIPLETAP; |
| 645 | |
| 646 | if (urb->actual_length != WACOM_PKGLEN_TPC1FG) { |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame^] | 647 | |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 648 | switch (data[0]) { |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 649 | |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame^] | 650 | case WACOM_REPORT_TPC1FG: |
| 651 | wacom_report_abs(wcombo, ABS_X, wacom_le16_to_cpu(&data[2])); |
| 652 | wacom_report_abs(wcombo, ABS_Y, wacom_le16_to_cpu(&data[4])); |
| 653 | wacom_report_abs(wcombo, ABS_PRESSURE, wacom_le16_to_cpu(&data[6])); |
| 654 | wacom_report_key(wcombo, BTN_TOUCH, wacom_le16_to_cpu(&data[6])); |
| 655 | wacom_report_abs(wcombo, ABS_MISC, wacom->id[0]); |
| 656 | wacom_report_key(wcombo, wacom->tool[0], 1); |
| 657 | break; |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 658 | |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame^] | 659 | case WACOM_REPORT_TPC2FG: |
| 660 | /* keep this byte to send proper out-prox event */ |
| 661 | wacom->id[1] = data[1] & 0x03; |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 662 | |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame^] | 663 | if (data[1] & 0x01) { |
| 664 | wacom_tpc_finger_in(wacom, wcombo, data, 0); |
| 665 | firstFinger = 1; |
| 666 | } else if (firstFinger) { |
| 667 | wacom_tpc_touch_out(wacom, wcombo, 0); |
| 668 | } |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 669 | |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame^] | 670 | if (data[1] & 0x02) { |
| 671 | /* sync first finger data */ |
| 672 | if (firstFinger) |
| 673 | wacom_input_sync(wcombo); |
| 674 | |
| 675 | wacom_tpc_finger_in(wacom, wcombo, data, 1); |
| 676 | secondFinger = 1; |
| 677 | } else if (secondFinger) { |
| 678 | /* sync first finger data */ |
| 679 | if (firstFinger) |
| 680 | wacom_input_sync(wcombo); |
| 681 | |
| 682 | wacom_tpc_touch_out(wacom, wcombo, 1); |
| 683 | secondFinger = 0; |
| 684 | } |
| 685 | if (!(data[1] & 0x01)) |
| 686 | firstFinger = 0; |
| 687 | break; |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 688 | } |
| 689 | } else { |
| 690 | wacom_report_abs(wcombo, ABS_X, wacom_le16_to_cpu(&data[1])); |
| 691 | wacom_report_abs(wcombo, ABS_Y, wacom_le16_to_cpu(&data[3])); |
| 692 | wacom_report_key(wcombo, BTN_TOUCH, 1); |
| 693 | wacom_report_abs(wcombo, ABS_MISC, wacom->id[0]); |
| 694 | wacom_report_key(wcombo, wacom->tool[0], 1); |
| 695 | } |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 696 | } |
| 697 | |
Roel Kluin | 0de048a | 2008-12-20 05:19:43 -0500 | [diff] [blame] | 698 | static int wacom_tpc_irq(struct wacom_wac *wacom, void *wcombo) |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 699 | { |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 700 | struct wacom_features *features = &wacom->features; |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 701 | char *data = wacom->data; |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 702 | int prox = 0, pressure, idx = -1; |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 703 | struct urb *urb = ((struct wacom_combo *)wcombo)->urb; |
| 704 | |
| 705 | dbg("wacom_tpc_irq: received report #%d", data[0]); |
| 706 | |
Ping Cheng | cad7470 | 2009-12-15 00:35:25 -0800 | [diff] [blame] | 707 | if (urb->actual_length == WACOM_PKGLEN_TPC1FG || /* single touch */ |
| 708 | data[0] == WACOM_REPORT_TPC1FG || /* single touch */ |
| 709 | data[0] == WACOM_REPORT_TPC2FG) { /* 2FG touch */ |
Ping Cheng | ee54500 | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 710 | if (urb->actual_length == WACOM_PKGLEN_TPC1FG) { /* with touch */ |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 711 | prox = data[0] & 0x01; |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 712 | } else { /* with capacity */ |
Ping Cheng | cad7470 | 2009-12-15 00:35:25 -0800 | [diff] [blame] | 713 | if (data[0] == WACOM_REPORT_TPC1FG) |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 714 | /* single touch */ |
| 715 | prox = data[1] & 0x01; |
| 716 | else |
| 717 | /* 2FG touch data */ |
| 718 | prox = data[1] & 0x03; |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 719 | } |
| 720 | |
Ping Cheng | 4492eff | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 721 | if (!wacom->shared->stylus_in_proximity) { |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 722 | if (prox) { |
Ping Cheng | 4492eff | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 723 | wacom_tpc_touch_in(wacom, wcombo); |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 724 | } else { |
Ping Cheng | cad7470 | 2009-12-15 00:35:25 -0800 | [diff] [blame] | 725 | if (data[0] == WACOM_REPORT_TPC2FG) { |
Ping Cheng | 4492eff | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 726 | /* 2FGT out-prox */ |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 727 | idx = (wacom->id[1] & 0x01) - 1; |
| 728 | if (idx == 0) { |
| 729 | wacom_tpc_touch_out(wacom, wcombo, idx); |
| 730 | /* sync first finger event */ |
| 731 | if (wacom->id[1] & 0x02) |
| 732 | wacom_input_sync(wcombo); |
| 733 | } |
| 734 | idx = (wacom->id[1] & 0x02) - 1; |
| 735 | if (idx == 1) |
| 736 | wacom_tpc_touch_out(wacom, wcombo, idx); |
Ping Cheng | 4492eff | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 737 | } else { |
| 738 | /* one finger touch */ |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 739 | wacom_tpc_touch_out(wacom, wcombo, 0); |
Ping Cheng | 4492eff | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 740 | } |
| 741 | wacom->id[0] = 0; |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 742 | } |
Ping Cheng | 4492eff | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 743 | } else if (wacom->id[0]) { /* force touch out-prox */ |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 744 | wacom_tpc_touch_out(wacom, wcombo, 0); |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 745 | } |
Ping Cheng | 4492eff | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 746 | return 1; |
Ping Cheng | cad7470 | 2009-12-15 00:35:25 -0800 | [diff] [blame] | 747 | } else if (data[0] == WACOM_REPORT_PENABLED) { /* Penabled */ |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 748 | prox = data[1] & 0x20; |
| 749 | |
Ping Cheng | 3b57ca0 | 2010-03-04 21:50:59 -0800 | [diff] [blame] | 750 | if (!wacom->id[0]) { /* first in prox */ |
| 751 | /* Going into proximity select tool */ |
| 752 | wacom->tool[0] = (data[1] & 0x0c) ? BTN_TOOL_RUBBER : BTN_TOOL_PEN; |
| 753 | if (wacom->tool[0] == BTN_TOOL_PEN) |
| 754 | wacom->id[0] = STYLUS_DEVICE_ID; |
| 755 | else |
| 756 | wacom->id[0] = ERASER_DEVICE_ID; |
Ping Cheng | 4492eff | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 757 | |
| 758 | wacom->shared->stylus_in_proximity = true; |
Ping Cheng | 3b57ca0 | 2010-03-04 21:50:59 -0800 | [diff] [blame] | 759 | } |
| 760 | wacom_report_key(wcombo, BTN_STYLUS, data[1] & 0x02); |
| 761 | wacom_report_key(wcombo, BTN_STYLUS2, data[1] & 0x10); |
| 762 | wacom_report_abs(wcombo, ABS_X, wacom_le16_to_cpu(&data[2])); |
| 763 | wacom_report_abs(wcombo, ABS_Y, wacom_le16_to_cpu(&data[4])); |
| 764 | pressure = ((data[7] & 0x01) << 8) | data[6]; |
| 765 | if (pressure < 0) |
| 766 | pressure = features->pressure_max + pressure + 1; |
| 767 | wacom_report_abs(wcombo, ABS_PRESSURE, pressure); |
| 768 | wacom_report_key(wcombo, BTN_TOUCH, data[1] & 0x05); |
| 769 | if (!prox) { /* out-prox */ |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 770 | wacom->id[0] = 0; |
Ping Cheng | 4492eff | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 771 | wacom->shared->stylus_in_proximity = false; |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 772 | } |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 773 | wacom_report_key(wcombo, wacom->tool[0], prox); |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 774 | wacom_report_abs(wcombo, ABS_MISC, wacom->id[0]); |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 775 | return 1; |
| 776 | } |
| 777 | return 0; |
| 778 | } |
| 779 | |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 780 | int wacom_wac_irq(struct wacom_wac *wacom_wac, void *wcombo) |
| 781 | { |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 782 | switch (wacom_wac->features.type) { |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame^] | 783 | case PENPARTNER: |
| 784 | return wacom_penpartner_irq(wacom_wac, wcombo); |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 785 | |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame^] | 786 | case PL: |
| 787 | return wacom_pl_irq(wacom_wac, wcombo); |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 788 | |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame^] | 789 | case WACOM_G4: |
| 790 | case GRAPHIRE: |
| 791 | case WACOM_MO: |
| 792 | return wacom_graphire_irq(wacom_wac, wcombo); |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 793 | |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame^] | 794 | case PTU: |
| 795 | return wacom_ptu_irq(wacom_wac, wcombo); |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 796 | |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame^] | 797 | case INTUOS: |
| 798 | case INTUOS3S: |
| 799 | case INTUOS3: |
| 800 | case INTUOS3L: |
| 801 | case INTUOS4S: |
| 802 | case INTUOS4: |
| 803 | case INTUOS4L: |
| 804 | case CINTIQ: |
| 805 | case WACOM_BEE: |
| 806 | return wacom_intuos_irq(wacom_wac, wcombo); |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 807 | |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame^] | 808 | case TABLETPC: |
| 809 | case TABLETPC2FG: |
| 810 | return wacom_tpc_irq(wacom_wac, wcombo); |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 811 | |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame^] | 812 | default: |
| 813 | return 0; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 814 | } |
| 815 | return 0; |
| 816 | } |
| 817 | |
| 818 | void wacom_init_input_dev(struct input_dev *input_dev, struct wacom_wac *wacom_wac) |
| 819 | { |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 820 | switch (wacom_wac->features.type) { |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame^] | 821 | case WACOM_MO: |
| 822 | input_dev_mo(input_dev, wacom_wac); |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 823 | |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame^] | 824 | case WACOM_G4: |
| 825 | input_dev_g4(input_dev, wacom_wac); |
| 826 | /* fall through */ |
| 827 | |
| 828 | case GRAPHIRE: |
| 829 | input_dev_g(input_dev, wacom_wac); |
| 830 | break; |
| 831 | |
| 832 | case WACOM_BEE: |
| 833 | input_dev_bee(input_dev, wacom_wac); |
| 834 | |
| 835 | case INTUOS3: |
| 836 | case INTUOS3L: |
| 837 | case CINTIQ: |
| 838 | input_dev_i3(input_dev, wacom_wac); |
| 839 | /* fall through */ |
| 840 | |
| 841 | case INTUOS3S: |
| 842 | input_dev_i3s(input_dev, wacom_wac); |
| 843 | /* fall through */ |
| 844 | |
| 845 | case INTUOS: |
| 846 | input_dev_i(input_dev, wacom_wac); |
| 847 | break; |
| 848 | |
| 849 | case INTUOS4: |
| 850 | case INTUOS4L: |
| 851 | input_dev_i4(input_dev, wacom_wac); |
| 852 | /* fall through */ |
| 853 | |
| 854 | case INTUOS4S: |
| 855 | input_dev_i4s(input_dev, wacom_wac); |
| 856 | input_dev_i(input_dev, wacom_wac); |
| 857 | break; |
| 858 | |
| 859 | case TABLETPC2FG: |
| 860 | input_dev_tpc2fg(input_dev, wacom_wac); |
| 861 | /* fall through */ |
| 862 | |
| 863 | case TABLETPC: |
| 864 | input_dev_tpc(input_dev, wacom_wac); |
| 865 | if (wacom_wac->features.device_type != BTN_TOOL_PEN) |
| 866 | break; /* no need to process stylus stuff */ |
| 867 | /* fall through */ |
| 868 | |
| 869 | case PL: |
| 870 | case PTU: |
| 871 | input_dev_pl(input_dev, wacom_wac); |
| 872 | /* fall through */ |
| 873 | |
| 874 | case PENPARTNER: |
| 875 | input_dev_pt(input_dev, wacom_wac); |
| 876 | break; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 877 | } |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 878 | } |
| 879 | |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 880 | static const struct wacom_features wacom_features_0x00 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 881 | { "Wacom Penpartner", WACOM_PKGLEN_PENPRTN, 5040, 3780, 255, 0, PENPARTNER }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 882 | static const struct wacom_features wacom_features_0x10 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 883 | { "Wacom Graphire", WACOM_PKGLEN_GRAPHIRE, 10206, 7422, 511, 63, GRAPHIRE }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 884 | static const struct wacom_features wacom_features_0x11 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 885 | { "Wacom Graphire2 4x5", WACOM_PKGLEN_GRAPHIRE, 10206, 7422, 511, 63, GRAPHIRE }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 886 | static const struct wacom_features wacom_features_0x12 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 887 | { "Wacom Graphire2 5x7", WACOM_PKGLEN_GRAPHIRE, 13918, 10206, 511, 63, GRAPHIRE }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 888 | static const struct wacom_features wacom_features_0x13 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 889 | { "Wacom Graphire3", WACOM_PKGLEN_GRAPHIRE, 10208, 7424, 511, 63, GRAPHIRE }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 890 | static const struct wacom_features wacom_features_0x14 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 891 | { "Wacom Graphire3 6x8", WACOM_PKGLEN_GRAPHIRE, 16704, 12064, 511, 63, GRAPHIRE }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 892 | static const struct wacom_features wacom_features_0x15 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 893 | { "Wacom Graphire4 4x5", WACOM_PKGLEN_GRAPHIRE, 10208, 7424, 511, 63, WACOM_G4 }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 894 | static const struct wacom_features wacom_features_0x16 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 895 | { "Wacom Graphire4 6x8", WACOM_PKGLEN_GRAPHIRE, 16704, 12064, 511, 63, WACOM_G4 }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 896 | static const struct wacom_features wacom_features_0x17 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 897 | { "Wacom BambooFun 4x5", WACOM_PKGLEN_BBFUN, 14760, 9225, 511, 63, WACOM_MO }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 898 | static const struct wacom_features wacom_features_0x18 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 899 | { "Wacom BambooFun 6x8", WACOM_PKGLEN_BBFUN, 21648, 13530, 511, 63, WACOM_MO }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 900 | static const struct wacom_features wacom_features_0x19 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 901 | { "Wacom Bamboo1 Medium", WACOM_PKGLEN_GRAPHIRE, 16704, 12064, 511, 63, GRAPHIRE }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 902 | static const struct wacom_features wacom_features_0x60 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 903 | { "Wacom Volito", WACOM_PKGLEN_GRAPHIRE, 5104, 3712, 511, 63, GRAPHIRE }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 904 | static const struct wacom_features wacom_features_0x61 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 905 | { "Wacom PenStation2", WACOM_PKGLEN_GRAPHIRE, 3250, 2320, 255, 63, GRAPHIRE }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 906 | static const struct wacom_features wacom_features_0x62 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 907 | { "Wacom Volito2 4x5", WACOM_PKGLEN_GRAPHIRE, 5104, 3712, 511, 63, GRAPHIRE }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 908 | static const struct wacom_features wacom_features_0x63 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 909 | { "Wacom Volito2 2x3", WACOM_PKGLEN_GRAPHIRE, 3248, 2320, 511, 63, GRAPHIRE }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 910 | static const struct wacom_features wacom_features_0x64 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 911 | { "Wacom PenPartner2", WACOM_PKGLEN_GRAPHIRE, 3250, 2320, 511, 63, GRAPHIRE }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 912 | static const struct wacom_features wacom_features_0x65 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 913 | { "Wacom Bamboo", WACOM_PKGLEN_BBFUN, 14760, 9225, 511, 63, WACOM_MO }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 914 | static const struct wacom_features wacom_features_0x69 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 915 | { "Wacom Bamboo1", WACOM_PKGLEN_GRAPHIRE, 5104, 3712, 511, 63, GRAPHIRE }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 916 | static const struct wacom_features wacom_features_0x20 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 917 | { "Wacom Intuos 4x5", WACOM_PKGLEN_INTUOS, 12700, 10600, 1023, 31, INTUOS }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 918 | static const struct wacom_features wacom_features_0x21 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 919 | { "Wacom Intuos 6x8", WACOM_PKGLEN_INTUOS, 20320, 16240, 1023, 31, INTUOS }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 920 | static const struct wacom_features wacom_features_0x22 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 921 | { "Wacom Intuos 9x12", WACOM_PKGLEN_INTUOS, 30480, 24060, 1023, 31, INTUOS }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 922 | static const struct wacom_features wacom_features_0x23 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 923 | { "Wacom Intuos 12x12", WACOM_PKGLEN_INTUOS, 30480, 31680, 1023, 31, INTUOS }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 924 | static const struct wacom_features wacom_features_0x24 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 925 | { "Wacom Intuos 12x18", WACOM_PKGLEN_INTUOS, 45720, 31680, 1023, 31, INTUOS }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 926 | static const struct wacom_features wacom_features_0x30 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 927 | { "Wacom PL400", WACOM_PKGLEN_GRAPHIRE, 5408, 4056, 255, 0, PL }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 928 | static const struct wacom_features wacom_features_0x31 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 929 | { "Wacom PL500", WACOM_PKGLEN_GRAPHIRE, 6144, 4608, 255, 0, PL }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 930 | static const struct wacom_features wacom_features_0x32 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 931 | { "Wacom PL600", WACOM_PKGLEN_GRAPHIRE, 6126, 4604, 255, 0, PL }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 932 | static const struct wacom_features wacom_features_0x33 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 933 | { "Wacom PL600SX", WACOM_PKGLEN_GRAPHIRE, 6260, 5016, 255, 0, PL }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 934 | static const struct wacom_features wacom_features_0x34 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 935 | { "Wacom PL550", WACOM_PKGLEN_GRAPHIRE, 6144, 4608, 511, 0, PL }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 936 | static const struct wacom_features wacom_features_0x35 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 937 | { "Wacom PL800", WACOM_PKGLEN_GRAPHIRE, 7220, 5780, 511, 0, PL }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 938 | static const struct wacom_features wacom_features_0x37 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 939 | { "Wacom PL700", WACOM_PKGLEN_GRAPHIRE, 6758, 5406, 511, 0, PL }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 940 | static const struct wacom_features wacom_features_0x38 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 941 | { "Wacom PL510", WACOM_PKGLEN_GRAPHIRE, 6282, 4762, 511, 0, PL }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 942 | static const struct wacom_features wacom_features_0x39 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 943 | { "Wacom DTU710", WACOM_PKGLEN_GRAPHIRE, 34080, 27660, 511, 0, PL }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 944 | static const struct wacom_features wacom_features_0xC4 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 945 | { "Wacom DTF521", WACOM_PKGLEN_GRAPHIRE, 6282, 4762, 511, 0, PL }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 946 | static const struct wacom_features wacom_features_0xC0 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 947 | { "Wacom DTF720", WACOM_PKGLEN_GRAPHIRE, 6858, 5506, 511, 0, PL }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 948 | static const struct wacom_features wacom_features_0xC2 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 949 | { "Wacom DTF720a", WACOM_PKGLEN_GRAPHIRE, 6858, 5506, 511, 0, PL }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 950 | static const struct wacom_features wacom_features_0x03 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 951 | { "Wacom Cintiq Partner", WACOM_PKGLEN_GRAPHIRE, 20480, 15360, 511, 0, PTU }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 952 | static const struct wacom_features wacom_features_0x41 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 953 | { "Wacom Intuos2 4x5", WACOM_PKGLEN_INTUOS, 12700, 10600, 1023, 31, INTUOS }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 954 | static const struct wacom_features wacom_features_0x42 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 955 | { "Wacom Intuos2 6x8", WACOM_PKGLEN_INTUOS, 20320, 16240, 1023, 31, INTUOS }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 956 | static const struct wacom_features wacom_features_0x43 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 957 | { "Wacom Intuos2 9x12", WACOM_PKGLEN_INTUOS, 30480, 24060, 1023, 31, INTUOS }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 958 | static const struct wacom_features wacom_features_0x44 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 959 | { "Wacom Intuos2 12x12", WACOM_PKGLEN_INTUOS, 30480, 31680, 1023, 31, INTUOS }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 960 | static const struct wacom_features wacom_features_0x45 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 961 | { "Wacom Intuos2 12x18", WACOM_PKGLEN_INTUOS, 45720, 31680, 1023, 31, INTUOS }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 962 | static const struct wacom_features wacom_features_0xB0 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 963 | { "Wacom Intuos3 4x5", WACOM_PKGLEN_INTUOS, 25400, 20320, 1023, 63, INTUOS3S }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 964 | static const struct wacom_features wacom_features_0xB1 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 965 | { "Wacom Intuos3 6x8", WACOM_PKGLEN_INTUOS, 40640, 30480, 1023, 63, INTUOS3 }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 966 | static const struct wacom_features wacom_features_0xB2 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 967 | { "Wacom Intuos3 9x12", WACOM_PKGLEN_INTUOS, 60960, 45720, 1023, 63, INTUOS3 }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 968 | static const struct wacom_features wacom_features_0xB3 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 969 | { "Wacom Intuos3 12x12", WACOM_PKGLEN_INTUOS, 60960, 60960, 1023, 63, INTUOS3L }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 970 | static const struct wacom_features wacom_features_0xB4 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 971 | { "Wacom Intuos3 12x19", WACOM_PKGLEN_INTUOS, 97536, 60960, 1023, 63, INTUOS3L }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 972 | static const struct wacom_features wacom_features_0xB5 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 973 | { "Wacom Intuos3 6x11", WACOM_PKGLEN_INTUOS, 54204, 31750, 1023, 63, INTUOS3 }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 974 | static const struct wacom_features wacom_features_0xB7 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 975 | { "Wacom Intuos3 4x6", WACOM_PKGLEN_INTUOS, 31496, 19685, 1023, 63, INTUOS3S }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 976 | static const struct wacom_features wacom_features_0xB8 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 977 | { "Wacom Intuos4 4x6", WACOM_PKGLEN_INTUOS, 31496, 19685, 2047, 63, INTUOS4S }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 978 | static const struct wacom_features wacom_features_0xB9 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 979 | { "Wacom Intuos4 6x9", WACOM_PKGLEN_INTUOS, 44704, 27940, 2047, 63, INTUOS4 }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 980 | static const struct wacom_features wacom_features_0xBA = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 981 | { "Wacom Intuos4 8x13", WACOM_PKGLEN_INTUOS, 65024, 40640, 2047, 63, INTUOS4L }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 982 | static const struct wacom_features wacom_features_0xBB = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 983 | { "Wacom Intuos4 12x19", WACOM_PKGLEN_INTUOS, 97536, 60960, 2047, 63, INTUOS4L }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 984 | static const struct wacom_features wacom_features_0x3F = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 985 | { "Wacom Cintiq 21UX", WACOM_PKGLEN_INTUOS, 87200, 65600, 1023, 63, CINTIQ }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 986 | static const struct wacom_features wacom_features_0xC5 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 987 | { "Wacom Cintiq 20WSX", WACOM_PKGLEN_INTUOS, 86680, 54180, 1023, 63, WACOM_BEE }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 988 | static const struct wacom_features wacom_features_0xC6 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 989 | { "Wacom Cintiq 12WX", WACOM_PKGLEN_INTUOS, 53020, 33440, 1023, 63, WACOM_BEE }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 990 | static const struct wacom_features wacom_features_0xC7 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 991 | { "Wacom DTU1931", WACOM_PKGLEN_GRAPHIRE, 37832, 30305, 511, 0, PL }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 992 | static const struct wacom_features wacom_features_0x90 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 993 | { "Wacom ISDv4 90", WACOM_PKGLEN_GRAPHIRE, 26202, 16325, 255, 0, TABLETPC }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 994 | static const struct wacom_features wacom_features_0x93 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 995 | { "Wacom ISDv4 93", WACOM_PKGLEN_GRAPHIRE, 26202, 16325, 255, 0, TABLETPC }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 996 | static const struct wacom_features wacom_features_0x9A = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 997 | { "Wacom ISDv4 9A", WACOM_PKGLEN_GRAPHIRE, 26202, 16325, 255, 0, TABLETPC }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 998 | static const struct wacom_features wacom_features_0x9F = |
Ping Cheng | 57e413d | 2010-03-01 23:50:24 -0800 | [diff] [blame] | 999 | { "Wacom ISDv4 9F", WACOM_PKGLEN_GRAPHIRE, 26202, 16325, 255, 0, TABLETPC }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1000 | static const struct wacom_features wacom_features_0xE2 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 1001 | { "Wacom ISDv4 E2", WACOM_PKGLEN_TPC2FG, 26202, 16325, 255, 0, TABLETPC2FG }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1002 | static const struct wacom_features wacom_features_0xE3 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 1003 | { "Wacom ISDv4 E3", WACOM_PKGLEN_TPC2FG, 26202, 16325, 255, 0, TABLETPC2FG }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1004 | static const struct wacom_features wacom_features_0x47 = |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 1005 | { "Wacom Intuos2 6x8", WACOM_PKGLEN_INTUOS, 20320, 16240, 1023, 31, INTUOS }; |
| 1006 | |
| 1007 | #define USB_DEVICE_WACOM(prod) \ |
| 1008 | USB_DEVICE(USB_VENDOR_ID_WACOM, prod), \ |
| 1009 | .driver_info = (kernel_ulong_t)&wacom_features_##prod |
| 1010 | |
| 1011 | const struct usb_device_id wacom_ids[] = { |
| 1012 | { USB_DEVICE_WACOM(0x00) }, |
| 1013 | { USB_DEVICE_WACOM(0x10) }, |
| 1014 | { USB_DEVICE_WACOM(0x11) }, |
| 1015 | { USB_DEVICE_WACOM(0x12) }, |
| 1016 | { USB_DEVICE_WACOM(0x13) }, |
| 1017 | { USB_DEVICE_WACOM(0x14) }, |
| 1018 | { USB_DEVICE_WACOM(0x15) }, |
| 1019 | { USB_DEVICE_WACOM(0x16) }, |
| 1020 | { USB_DEVICE_WACOM(0x17) }, |
| 1021 | { USB_DEVICE_WACOM(0x18) }, |
| 1022 | { USB_DEVICE_WACOM(0x19) }, |
| 1023 | { USB_DEVICE_WACOM(0x60) }, |
| 1024 | { USB_DEVICE_WACOM(0x61) }, |
| 1025 | { USB_DEVICE_WACOM(0x62) }, |
| 1026 | { USB_DEVICE_WACOM(0x63) }, |
| 1027 | { USB_DEVICE_WACOM(0x64) }, |
| 1028 | { USB_DEVICE_WACOM(0x65) }, |
| 1029 | { USB_DEVICE_WACOM(0x69) }, |
| 1030 | { USB_DEVICE_WACOM(0x20) }, |
| 1031 | { USB_DEVICE_WACOM(0x21) }, |
| 1032 | { USB_DEVICE_WACOM(0x22) }, |
| 1033 | { USB_DEVICE_WACOM(0x23) }, |
| 1034 | { USB_DEVICE_WACOM(0x24) }, |
| 1035 | { USB_DEVICE_WACOM(0x30) }, |
| 1036 | { USB_DEVICE_WACOM(0x31) }, |
| 1037 | { USB_DEVICE_WACOM(0x32) }, |
| 1038 | { USB_DEVICE_WACOM(0x33) }, |
| 1039 | { USB_DEVICE_WACOM(0x34) }, |
| 1040 | { USB_DEVICE_WACOM(0x35) }, |
| 1041 | { USB_DEVICE_WACOM(0x37) }, |
| 1042 | { USB_DEVICE_WACOM(0x38) }, |
| 1043 | { USB_DEVICE_WACOM(0x39) }, |
| 1044 | { USB_DEVICE_WACOM(0xC4) }, |
| 1045 | { USB_DEVICE_WACOM(0xC0) }, |
| 1046 | { USB_DEVICE_WACOM(0xC2) }, |
| 1047 | { USB_DEVICE_WACOM(0x03) }, |
| 1048 | { USB_DEVICE_WACOM(0x41) }, |
| 1049 | { USB_DEVICE_WACOM(0x42) }, |
| 1050 | { USB_DEVICE_WACOM(0x43) }, |
| 1051 | { USB_DEVICE_WACOM(0x44) }, |
| 1052 | { USB_DEVICE_WACOM(0x45) }, |
| 1053 | { USB_DEVICE_WACOM(0xB0) }, |
| 1054 | { USB_DEVICE_WACOM(0xB1) }, |
| 1055 | { USB_DEVICE_WACOM(0xB2) }, |
| 1056 | { USB_DEVICE_WACOM(0xB3) }, |
| 1057 | { USB_DEVICE_WACOM(0xB4) }, |
| 1058 | { USB_DEVICE_WACOM(0xB5) }, |
| 1059 | { USB_DEVICE_WACOM(0xB7) }, |
| 1060 | { USB_DEVICE_WACOM(0xB8) }, |
| 1061 | { USB_DEVICE_WACOM(0xB9) }, |
| 1062 | { USB_DEVICE_WACOM(0xBA) }, |
| 1063 | { USB_DEVICE_WACOM(0xBB) }, |
| 1064 | { USB_DEVICE_WACOM(0x3F) }, |
| 1065 | { USB_DEVICE_WACOM(0xC5) }, |
| 1066 | { USB_DEVICE_WACOM(0xC6) }, |
| 1067 | { USB_DEVICE_WACOM(0xC7) }, |
| 1068 | { USB_DEVICE_WACOM(0x90) }, |
| 1069 | { USB_DEVICE_WACOM(0x93) }, |
| 1070 | { USB_DEVICE_WACOM(0x9A) }, |
| 1071 | { USB_DEVICE_WACOM(0x9F) }, |
| 1072 | { USB_DEVICE_WACOM(0xE2) }, |
| 1073 | { USB_DEVICE_WACOM(0xE3) }, |
| 1074 | { USB_DEVICE_WACOM(0x47) }, |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 1075 | { } |
| 1076 | }; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 1077 | MODULE_DEVICE_TABLE(usb, wacom_ids); |