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) || |
Jason Gerecke | 9fee619 | 2012-04-03 15:47:22 -0700 | [diff] [blame^] | 455 | (features->type >= INTUOS5S && features->type <= INTUOS5L) || |
Jason Gerecke | 803296b | 2011-12-12 00:11:45 -0800 | [diff] [blame] | 456 | features->type == WACOM_21UX2 || features->type == WACOM_24HD) { |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 457 | t = (t << 1) | (data[1] & 1); |
Aristeu Rozanski | ca047fe | 2010-10-10 14:12:33 -0700 | [diff] [blame] | 458 | } |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 459 | input_report_abs(input, ABS_PRESSURE, t); |
| 460 | input_report_abs(input, ABS_TILT_X, |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 461 | ((data[7] << 1) & 0x7e) | (data[8] >> 7)); |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 462 | input_report_abs(input, ABS_TILT_Y, data[8] & 0x7f); |
| 463 | input_report_key(input, BTN_STYLUS, data[1] & 2); |
| 464 | input_report_key(input, BTN_STYLUS2, data[1] & 4); |
| 465 | input_report_key(input, BTN_TOUCH, t > 10); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 466 | } |
| 467 | |
| 468 | /* airbrush second packet */ |
| 469 | if ((data[1] & 0xbc) == 0xb4) { |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 470 | input_report_abs(input, ABS_WHEEL, |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 471 | (data[6] << 2) | ((data[7] >> 6) & 3)); |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 472 | input_report_abs(input, ABS_TILT_X, |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 473 | ((data[7] << 1) & 0x7e) | (data[8] >> 7)); |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 474 | input_report_abs(input, ABS_TILT_Y, data[8] & 0x7f); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 475 | } |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 476 | } |
| 477 | |
Dmitry Torokhov | 95dd3b3 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 478 | static int wacom_intuos_irq(struct wacom_wac *wacom) |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 479 | { |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 480 | struct wacom_features *features = &wacom->features; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 481 | unsigned char *data = wacom->data; |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 482 | struct input_dev *input = wacom->input; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 483 | unsigned int t; |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 484 | int idx = 0, result; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 485 | |
Ping Cheng | cad7470 | 2009-12-15 00:35:25 -0800 | [diff] [blame] | 486 | if (data[0] != WACOM_REPORT_PENABLED && data[0] != WACOM_REPORT_INTUOSREAD |
| 487 | && data[0] != WACOM_REPORT_INTUOSWRITE && data[0] != WACOM_REPORT_INTUOSPAD) { |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 488 | dbg("wacom_intuos_irq: received unknown report #%d", data[0]); |
| 489 | return 0; |
| 490 | } |
| 491 | |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 492 | /* tool number */ |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 493 | if (features->type == INTUOS) |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 494 | idx = data[1] & 0x01; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 495 | |
| 496 | /* pad packets. Works as a second tool and is always in prox */ |
Ping Cheng | cad7470 | 2009-12-15 00:35:25 -0800 | [diff] [blame] | 497 | if (data[0] == WACOM_REPORT_INTUOSPAD) { |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 498 | if (features->type >= INTUOS4S && features->type <= INTUOS4L) { |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 499 | input_report_key(input, BTN_0, (data[2] & 0x01)); |
| 500 | input_report_key(input, BTN_1, (data[3] & 0x01)); |
| 501 | input_report_key(input, BTN_2, (data[3] & 0x02)); |
| 502 | input_report_key(input, BTN_3, (data[3] & 0x04)); |
| 503 | input_report_key(input, BTN_4, (data[3] & 0x08)); |
| 504 | input_report_key(input, BTN_5, (data[3] & 0x10)); |
| 505 | input_report_key(input, BTN_6, (data[3] & 0x20)); |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 506 | if (data[1] & 0x80) { |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 507 | input_report_abs(input, ABS_WHEEL, (data[1] & 0x7f)); |
Ping Cheng | a862952 | 2009-06-02 16:59:58 -0700 | [diff] [blame] | 508 | } else { |
| 509 | /* Out of proximity, clear wheel value. */ |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 510 | input_report_abs(input, ABS_WHEEL, 0); |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 511 | } |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 512 | if (features->type != INTUOS4S) { |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 513 | input_report_key(input, BTN_7, (data[3] & 0x40)); |
| 514 | input_report_key(input, BTN_8, (data[3] & 0x80)); |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 515 | } |
| 516 | if (data[1] | (data[2] & 0x01) | data[3]) { |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 517 | input_report_key(input, wacom->tool[1], 1); |
| 518 | input_report_abs(input, ABS_MISC, PAD_DEVICE_ID); |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 519 | } else { |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 520 | input_report_key(input, wacom->tool[1], 0); |
| 521 | input_report_abs(input, ABS_MISC, 0); |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 522 | } |
Jason Gerecke | 803296b | 2011-12-12 00:11:45 -0800 | [diff] [blame] | 523 | } else if (features->type == WACOM_24HD) { |
| 524 | input_report_key(input, BTN_0, (data[6] & 0x01)); |
| 525 | input_report_key(input, BTN_1, (data[6] & 0x02)); |
| 526 | input_report_key(input, BTN_2, (data[6] & 0x04)); |
| 527 | input_report_key(input, BTN_3, (data[6] & 0x08)); |
| 528 | input_report_key(input, BTN_4, (data[6] & 0x10)); |
| 529 | input_report_key(input, BTN_5, (data[6] & 0x20)); |
| 530 | input_report_key(input, BTN_6, (data[6] & 0x40)); |
| 531 | input_report_key(input, BTN_7, (data[6] & 0x80)); |
| 532 | input_report_key(input, BTN_8, (data[8] & 0x01)); |
| 533 | input_report_key(input, BTN_9, (data[8] & 0x02)); |
| 534 | input_report_key(input, BTN_A, (data[8] & 0x04)); |
| 535 | input_report_key(input, BTN_B, (data[8] & 0x08)); |
| 536 | input_report_key(input, BTN_C, (data[8] & 0x10)); |
| 537 | input_report_key(input, BTN_X, (data[8] & 0x20)); |
| 538 | input_report_key(input, BTN_Y, (data[8] & 0x40)); |
| 539 | input_report_key(input, BTN_Z, (data[8] & 0x80)); |
| 540 | |
| 541 | /* |
| 542 | * Three "buttons" are available on the 24HD which are |
| 543 | * physically implemented as a touchstrip. Each button |
| 544 | * is approximately 3 bits wide with a 2 bit spacing. |
| 545 | * The raw touchstrip bits are stored at: |
| 546 | * ((data[3] & 0x1f) << 8) | data[4]) |
| 547 | */ |
| 548 | input_report_key(input, KEY_PROG1, data[4] & 0x07); |
| 549 | input_report_key(input, KEY_PROG2, data[4] & 0xE0); |
| 550 | input_report_key(input, KEY_PROG3, data[3] & 0x1C); |
| 551 | |
| 552 | if (data[1] & 0x80) { |
| 553 | input_report_abs(input, ABS_WHEEL, (data[1] & 0x7f)); |
| 554 | } else { |
| 555 | /* Out of proximity, clear wheel value. */ |
| 556 | input_report_abs(input, ABS_WHEEL, 0); |
| 557 | } |
| 558 | |
| 559 | if (data[2] & 0x80) { |
| 560 | input_report_abs(input, ABS_THROTTLE, (data[2] & 0x7f)); |
| 561 | } else { |
| 562 | /* Out of proximity, clear second wheel value. */ |
| 563 | input_report_abs(input, ABS_THROTTLE, 0); |
| 564 | } |
| 565 | |
| 566 | if (data[1] | data[2] | (data[3] & 0x1f) | data[4] | data[6] | data[8]) { |
| 567 | input_report_key(input, wacom->tool[1], 1); |
| 568 | input_report_abs(input, ABS_MISC, PAD_DEVICE_ID); |
| 569 | } else { |
| 570 | input_report_key(input, wacom->tool[1], 0); |
| 571 | input_report_abs(input, ABS_MISC, 0); |
| 572 | } |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 573 | } else { |
Ping Cheng | 3a4b4aa | 2010-06-03 22:10:21 -0700 | [diff] [blame] | 574 | if (features->type == WACOM_21UX2) { |
| 575 | input_report_key(input, BTN_0, (data[5] & 0x01)); |
| 576 | input_report_key(input, BTN_1, (data[6] & 0x01)); |
| 577 | input_report_key(input, BTN_2, (data[6] & 0x02)); |
| 578 | input_report_key(input, BTN_3, (data[6] & 0x04)); |
| 579 | input_report_key(input, BTN_4, (data[6] & 0x08)); |
| 580 | input_report_key(input, BTN_5, (data[6] & 0x10)); |
| 581 | input_report_key(input, BTN_6, (data[6] & 0x20)); |
| 582 | input_report_key(input, BTN_7, (data[6] & 0x40)); |
| 583 | input_report_key(input, BTN_8, (data[6] & 0x80)); |
| 584 | input_report_key(input, BTN_9, (data[7] & 0x01)); |
| 585 | input_report_key(input, BTN_A, (data[8] & 0x01)); |
| 586 | input_report_key(input, BTN_B, (data[8] & 0x02)); |
| 587 | input_report_key(input, BTN_C, (data[8] & 0x04)); |
| 588 | input_report_key(input, BTN_X, (data[8] & 0x08)); |
| 589 | input_report_key(input, BTN_Y, (data[8] & 0x10)); |
| 590 | input_report_key(input, BTN_Z, (data[8] & 0x20)); |
| 591 | input_report_key(input, BTN_BASE, (data[8] & 0x40)); |
| 592 | input_report_key(input, BTN_BASE2, (data[8] & 0x80)); |
| 593 | } else { |
| 594 | input_report_key(input, BTN_0, (data[5] & 0x01)); |
| 595 | input_report_key(input, BTN_1, (data[5] & 0x02)); |
| 596 | input_report_key(input, BTN_2, (data[5] & 0x04)); |
| 597 | input_report_key(input, BTN_3, (data[5] & 0x08)); |
| 598 | input_report_key(input, BTN_4, (data[6] & 0x01)); |
| 599 | input_report_key(input, BTN_5, (data[6] & 0x02)); |
| 600 | input_report_key(input, BTN_6, (data[6] & 0x04)); |
| 601 | input_report_key(input, BTN_7, (data[6] & 0x08)); |
| 602 | input_report_key(input, BTN_8, (data[5] & 0x10)); |
| 603 | input_report_key(input, BTN_9, (data[6] & 0x10)); |
| 604 | } |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 605 | input_report_abs(input, ABS_RX, ((data[1] & 0x1f) << 8) | data[2]); |
| 606 | input_report_abs(input, ABS_RY, ((data[3] & 0x1f) << 8) | data[4]); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 607 | |
Ping Cheng | 493630b | 2010-06-22 11:21:34 -0700 | [diff] [blame] | 608 | if ((data[5] & 0x1f) | data[6] | (data[1] & 0x1f) | |
Ping Cheng | 3a4b4aa | 2010-06-03 22:10:21 -0700 | [diff] [blame] | 609 | data[2] | (data[3] & 0x1f) | data[4] | data[8] | |
| 610 | (data[7] & 0x01)) { |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 611 | input_report_key(input, wacom->tool[1], 1); |
| 612 | input_report_abs(input, ABS_MISC, PAD_DEVICE_ID); |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 613 | } else { |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 614 | input_report_key(input, wacom->tool[1], 0); |
| 615 | input_report_abs(input, ABS_MISC, 0); |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 616 | } |
| 617 | } |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 618 | input_event(input, EV_MSC, MSC_SERIAL, 0xffffffff); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 619 | return 1; |
| 620 | } |
| 621 | |
| 622 | /* process in/out prox events */ |
Dmitry Torokhov | 95dd3b3 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 623 | result = wacom_intuos_inout(wacom); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 624 | if (result) |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 625 | return result - 1; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 626 | |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 627 | /* don't proceed if we don't know the ID */ |
| 628 | if (!wacom->id[idx]) |
| 629 | return 0; |
| 630 | |
| 631 | /* Only large Intuos support Lense Cursor */ |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 632 | if (wacom->tool[idx] == BTN_TOOL_LENS && |
| 633 | (features->type == INTUOS3 || |
| 634 | features->type == INTUOS3S || |
| 635 | features->type == INTUOS4 || |
Jason Gerecke | 9fee619 | 2012-04-03 15:47:22 -0700 | [diff] [blame^] | 636 | features->type == INTUOS4S || |
| 637 | features->type == INTUOS5 || |
| 638 | features->type == INTUOS5S)) { |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 639 | |
Ping Cheng | 80d4e8e | 2007-02-23 12:22:48 -0800 | [diff] [blame] | 640 | return 0; |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 641 | } |
Ping Cheng | 80d4e8e | 2007-02-23 12:22:48 -0800 | [diff] [blame] | 642 | |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 643 | /* Cintiq doesn't send data when RDY bit isn't set */ |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 644 | if (features->type == CINTIQ && !(data[1] & 0x40)) |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 645 | return 0; |
| 646 | |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 647 | if (features->type >= INTUOS3S) { |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 648 | input_report_abs(input, ABS_X, (data[2] << 9) | (data[3] << 1) | ((data[9] >> 1) & 1)); |
| 649 | input_report_abs(input, ABS_Y, (data[4] << 9) | (data[5] << 1) | (data[9] & 1)); |
| 650 | input_report_abs(input, ABS_DISTANCE, ((data[9] >> 2) & 0x3f)); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 651 | } else { |
Dmitry Torokhov | 252f776 | 2010-03-19 22:33:38 -0700 | [diff] [blame] | 652 | input_report_abs(input, ABS_X, be16_to_cpup((__be16 *)&data[2])); |
| 653 | input_report_abs(input, ABS_Y, be16_to_cpup((__be16 *)&data[4])); |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 654 | input_report_abs(input, ABS_DISTANCE, ((data[9] >> 3) & 0x1f)); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 655 | } |
| 656 | |
| 657 | /* process general packets */ |
Dmitry Torokhov | 95dd3b3 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 658 | wacom_intuos_general(wacom); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 659 | |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 660 | /* 4D mouse, 2D mouse, marker pen rotation, tilt mouse, or Lens cursor packets */ |
| 661 | 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] | 662 | |
| 663 | if (data[1] & 0x02) { |
| 664 | /* Rotation packet */ |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 665 | if (features->type >= INTUOS3S) { |
Ping Cheng | 0e1763f | 2008-03-13 16:46:46 -0400 | [diff] [blame] | 666 | /* I3 marker pen rotation */ |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 667 | t = (data[6] << 3) | ((data[7] >> 5) & 7); |
| 668 | t = (data[7] & 0x20) ? ((t > 900) ? ((t-1) / 2 - 1350) : |
| 669 | ((t-1) / 2 + 450)) : (450 - t / 2) ; |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 670 | input_report_abs(input, ABS_Z, t); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 671 | } else { |
| 672 | /* 4D mouse rotation packet */ |
| 673 | t = (data[6] << 3) | ((data[7] >> 5) & 7); |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 674 | input_report_abs(input, ABS_RZ, (data[7] & 0x20) ? |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 675 | ((t - 1) / 2) : -t / 2); |
| 676 | } |
| 677 | |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 678 | } else if (!(data[1] & 0x10) && features->type < INTUOS3S) { |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 679 | /* 4D mouse packet */ |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 680 | input_report_key(input, BTN_LEFT, data[8] & 0x01); |
| 681 | input_report_key(input, BTN_MIDDLE, data[8] & 0x02); |
| 682 | input_report_key(input, BTN_RIGHT, data[8] & 0x04); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 683 | |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 684 | input_report_key(input, BTN_SIDE, data[8] & 0x20); |
| 685 | input_report_key(input, BTN_EXTRA, data[8] & 0x10); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 686 | t = (data[6] << 2) | ((data[7] >> 6) & 3); |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 687 | input_report_abs(input, ABS_THROTTLE, (data[8] & 0x08) ? -t : t); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 688 | |
| 689 | } else if (wacom->tool[idx] == BTN_TOOL_MOUSE) { |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 690 | /* I4 mouse */ |
Jason Gerecke | 9fee619 | 2012-04-03 15:47:22 -0700 | [diff] [blame^] | 691 | if ((features->type >= INTUOS4S && features->type <= INTUOS4L) || |
| 692 | (features->type >= INTUOS5S && features->type <= INTUOS5L)) { |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 693 | input_report_key(input, BTN_LEFT, data[6] & 0x01); |
| 694 | input_report_key(input, BTN_MIDDLE, data[6] & 0x02); |
| 695 | input_report_key(input, BTN_RIGHT, data[6] & 0x04); |
| 696 | input_report_rel(input, REL_WHEEL, ((data[7] & 0x80) >> 7) |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 697 | - ((data[7] & 0x40) >> 6)); |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 698 | input_report_key(input, BTN_SIDE, data[6] & 0x08); |
| 699 | input_report_key(input, BTN_EXTRA, data[6] & 0x10); |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 700 | |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 701 | input_report_abs(input, ABS_TILT_X, |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 702 | ((data[7] << 1) & 0x7e) | (data[8] >> 7)); |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 703 | input_report_abs(input, ABS_TILT_Y, data[8] & 0x7f); |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 704 | } else { |
| 705 | /* 2D mouse packet */ |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 706 | input_report_key(input, BTN_LEFT, data[8] & 0x04); |
| 707 | input_report_key(input, BTN_MIDDLE, data[8] & 0x08); |
| 708 | input_report_key(input, BTN_RIGHT, data[8] & 0x10); |
| 709 | input_report_rel(input, REL_WHEEL, (data[8] & 0x01) |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 710 | - ((data[8] & 0x02) >> 1)); |
| 711 | |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 712 | /* I3 2D mouse side buttons */ |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 713 | if (features->type >= INTUOS3S && features->type <= INTUOS3L) { |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 714 | input_report_key(input, BTN_SIDE, data[8] & 0x40); |
| 715 | input_report_key(input, BTN_EXTRA, data[8] & 0x20); |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 716 | } |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 717 | } |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 718 | } else if ((features->type < INTUOS3S || features->type == INTUOS3L || |
Jason Gerecke | 9fee619 | 2012-04-03 15:47:22 -0700 | [diff] [blame^] | 719 | features->type == INTUOS4L || features->type == INTUOS5L) && |
Ping Cheng | 6f660f1 | 2009-05-08 18:30:33 -0700 | [diff] [blame] | 720 | wacom->tool[idx] == BTN_TOOL_LENS) { |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 721 | /* Lens cursor packets */ |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 722 | input_report_key(input, BTN_LEFT, data[8] & 0x01); |
| 723 | input_report_key(input, BTN_MIDDLE, data[8] & 0x02); |
| 724 | input_report_key(input, BTN_RIGHT, data[8] & 0x04); |
| 725 | input_report_key(input, BTN_SIDE, data[8] & 0x10); |
| 726 | input_report_key(input, BTN_EXTRA, data[8] & 0x08); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 727 | } |
| 728 | } |
| 729 | |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 730 | input_report_abs(input, ABS_MISC, wacom->id[idx]); /* report tool id */ |
| 731 | input_report_key(input, wacom->tool[idx], 1); |
| 732 | input_event(input, EV_MSC, MSC_SERIAL, wacom->serial[idx]); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 733 | return 1; |
| 734 | } |
| 735 | |
Ping Cheng | 84eb5aa | 2011-03-12 20:35:18 -0800 | [diff] [blame] | 736 | static int wacom_tpc_mt_touch(struct wacom_wac *wacom) |
| 737 | { |
| 738 | struct input_dev *input = wacom->input; |
| 739 | unsigned char *data = wacom->data; |
| 740 | int contact_with_no_pen_down_count = 0; |
| 741 | int i; |
| 742 | |
| 743 | for (i = 0; i < 2; i++) { |
| 744 | int p = data[1] & (1 << i); |
| 745 | bool touch = p && !wacom->shared->stylus_in_proximity; |
| 746 | |
| 747 | input_mt_slot(input, i); |
| 748 | input_mt_report_slot_state(input, MT_TOOL_FINGER, touch); |
| 749 | if (touch) { |
| 750 | int x = le16_to_cpup((__le16 *)&data[i * 2 + 2]) & 0x7fff; |
| 751 | int y = le16_to_cpup((__le16 *)&data[i * 2 + 6]) & 0x7fff; |
| 752 | |
| 753 | input_report_abs(input, ABS_MT_POSITION_X, x); |
| 754 | input_report_abs(input, ABS_MT_POSITION_Y, y); |
| 755 | contact_with_no_pen_down_count++; |
| 756 | } |
| 757 | } |
| 758 | |
| 759 | /* keep touch state for pen event */ |
| 760 | wacom->shared->touch_down = (contact_with_no_pen_down_count > 0); |
| 761 | |
| 762 | input_mt_report_pointer_emulation(input, true); |
| 763 | |
| 764 | return 1; |
| 765 | } |
| 766 | |
Ping Cheng | a43c7c5 | 2011-03-12 20:34:42 -0800 | [diff] [blame] | 767 | 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] | 768 | { |
| 769 | char *data = wacom->data; |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 770 | struct input_dev *input = wacom->input; |
Ping Cheng | a43c7c5 | 2011-03-12 20:34:42 -0800 | [diff] [blame] | 771 | bool prox; |
| 772 | int x = 0, y = 0; |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 773 | |
Ping Cheng | a43c7c5 | 2011-03-12 20:34:42 -0800 | [diff] [blame] | 774 | if (!wacom->shared->stylus_in_proximity) { |
| 775 | if (len == WACOM_PKGLEN_TPC1FG) { |
| 776 | prox = data[0] & 0x01; |
| 777 | x = get_unaligned_le16(&data[1]); |
| 778 | y = get_unaligned_le16(&data[3]); |
| 779 | } else { /* with capacity */ |
| 780 | prox = data[1] & 0x01; |
| 781 | x = le16_to_cpup((__le16 *)&data[2]); |
| 782 | y = le16_to_cpup((__le16 *)&data[4]); |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 783 | } |
Ping Cheng | a43c7c5 | 2011-03-12 20:34:42 -0800 | [diff] [blame] | 784 | } else |
| 785 | /* force touch out when pen is in prox */ |
| 786 | prox = 0; |
| 787 | |
| 788 | if (prox) { |
| 789 | input_report_abs(input, ABS_X, x); |
| 790 | input_report_abs(input, ABS_Y, y); |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 791 | } |
Ping Cheng | a43c7c5 | 2011-03-12 20:34:42 -0800 | [diff] [blame] | 792 | input_report_key(input, BTN_TOUCH, prox); |
| 793 | |
| 794 | /* keep touch state for pen events */ |
| 795 | wacom->shared->touch_down = prox; |
| 796 | |
| 797 | return 1; |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 798 | } |
| 799 | |
Ping Cheng | 8aa9a9a | 2011-03-12 20:34:11 -0800 | [diff] [blame] | 800 | static int wacom_tpc_pen(struct wacom_wac *wacom) |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 801 | { |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 802 | struct wacom_features *features = &wacom->features; |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 803 | char *data = wacom->data; |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 804 | struct input_dev *input = wacom->input; |
Ping Cheng | a43c7c5 | 2011-03-12 20:34:42 -0800 | [diff] [blame] | 805 | int pressure; |
| 806 | bool prox = data[1] & 0x20; |
Ping Cheng | 8aa9a9a | 2011-03-12 20:34:11 -0800 | [diff] [blame] | 807 | |
Ping Cheng | a43c7c5 | 2011-03-12 20:34:42 -0800 | [diff] [blame] | 808 | if (!wacom->shared->stylus_in_proximity) /* first in prox */ |
Ping Cheng | 8aa9a9a | 2011-03-12 20:34:11 -0800 | [diff] [blame] | 809 | /* Going into proximity select tool */ |
| 810 | wacom->tool[0] = (data[1] & 0x0c) ? BTN_TOOL_RUBBER : BTN_TOOL_PEN; |
Ping Cheng | 8aa9a9a | 2011-03-12 20:34:11 -0800 | [diff] [blame] | 811 | |
Ping Cheng | a43c7c5 | 2011-03-12 20:34:42 -0800 | [diff] [blame] | 812 | /* keep pen state for touch events */ |
| 813 | wacom->shared->stylus_in_proximity = prox; |
Ping Cheng | 8aa9a9a | 2011-03-12 20:34:11 -0800 | [diff] [blame] | 814 | |
Ping Cheng | a43c7c5 | 2011-03-12 20:34:42 -0800 | [diff] [blame] | 815 | /* send pen events only when touch is up or forced out */ |
| 816 | if (!wacom->shared->touch_down) { |
| 817 | input_report_key(input, BTN_STYLUS, data[1] & 0x02); |
| 818 | input_report_key(input, BTN_STYLUS2, data[1] & 0x10); |
| 819 | input_report_abs(input, ABS_X, le16_to_cpup((__le16 *)&data[2])); |
| 820 | input_report_abs(input, ABS_Y, le16_to_cpup((__le16 *)&data[4])); |
| 821 | pressure = ((data[7] & 0x01) << 8) | data[6]; |
| 822 | if (pressure < 0) |
| 823 | pressure = features->pressure_max + pressure + 1; |
| 824 | input_report_abs(input, ABS_PRESSURE, pressure); |
| 825 | input_report_key(input, BTN_TOUCH, data[1] & 0x05); |
| 826 | input_report_key(input, wacom->tool[0], prox); |
| 827 | return 1; |
| 828 | } |
| 829 | |
| 830 | return 0; |
Ping Cheng | 8aa9a9a | 2011-03-12 20:34:11 -0800 | [diff] [blame] | 831 | } |
| 832 | |
| 833 | static int wacom_tpc_irq(struct wacom_wac *wacom, size_t len) |
| 834 | { |
| 835 | char *data = wacom->data; |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 836 | |
| 837 | dbg("wacom_tpc_irq: received report #%d", data[0]); |
| 838 | |
Ping Cheng | 31175a8 | 2012-01-31 00:07:33 -0800 | [diff] [blame] | 839 | switch (len) { |
| 840 | case WACOM_PKGLEN_TPC1FG: |
| 841 | return wacom_tpc_single_touch(wacom, len); |
| 842 | |
| 843 | case WACOM_PKGLEN_TPC2FG: |
| 844 | return wacom_tpc_mt_touch(wacom); |
| 845 | |
| 846 | default: |
| 847 | switch (data[0]) { |
| 848 | case WACOM_REPORT_TPC1FG: |
| 849 | case WACOM_REPORT_TPCHID: |
| 850 | case WACOM_REPORT_TPCST: |
| 851 | return wacom_tpc_single_touch(wacom, len); |
| 852 | |
| 853 | case WACOM_REPORT_PENABLED: |
| 854 | return wacom_tpc_pen(wacom); |
| 855 | } |
| 856 | } |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 857 | |
Ping Cheng | 8aa9a9a | 2011-03-12 20:34:11 -0800 | [diff] [blame] | 858 | return 0; |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 859 | } |
| 860 | |
Chris Bagwell | e1d38e4 | 2010-09-12 00:09:27 -0700 | [diff] [blame] | 861 | static int wacom_bpt_touch(struct wacom_wac *wacom) |
Henrik Rydberg | cb734c0 | 2010-09-05 12:53:16 -0700 | [diff] [blame] | 862 | { |
Henrik Rydberg | f4ccbef | 2010-09-05 12:57:13 -0700 | [diff] [blame] | 863 | struct wacom_features *features = &wacom->features; |
Henrik Rydberg | cb734c0 | 2010-09-05 12:53:16 -0700 | [diff] [blame] | 864 | struct input_dev *input = wacom->input; |
| 865 | unsigned char *data = wacom->data; |
Henrik Rydberg | cb734c0 | 2010-09-05 12:53:16 -0700 | [diff] [blame] | 866 | int i; |
| 867 | |
Chris Bagwell | 5a6c865 | 2011-11-07 19:52:42 -0800 | [diff] [blame] | 868 | if (data[0] != 0x02) |
| 869 | return 0; |
| 870 | |
Henrik Rydberg | cb734c0 | 2010-09-05 12:53:16 -0700 | [diff] [blame] | 871 | for (i = 0; i < 2; i++) { |
Chris Bagwell | 8f90686 | 2011-09-09 13:38:10 -0700 | [diff] [blame] | 872 | int offset = (data[1] & 0x80) ? (8 * i) : (9 * i); |
| 873 | bool touch = data[offset + 3] & 0x80; |
Henrik Rydberg | c5f4dec | 2010-12-15 13:50:34 +0100 | [diff] [blame] | 874 | |
Chris Bagwell | 33d5f71 | 2010-09-12 00:12:28 -0700 | [diff] [blame] | 875 | /* |
| 876 | * Touch events need to be disabled while stylus is |
| 877 | * in proximity because user's hand is resting on touchpad |
| 878 | * and sending unwanted events. User expects tablet buttons |
| 879 | * to continue working though. |
| 880 | */ |
Chris Bagwell | 8f90686 | 2011-09-09 13:38:10 -0700 | [diff] [blame] | 881 | touch = touch && !wacom->shared->stylus_in_proximity; |
| 882 | |
| 883 | input_mt_slot(input, i); |
| 884 | input_mt_report_slot_state(input, MT_TOOL_FINGER, touch); |
Henrik Rydberg | c5f4dec | 2010-12-15 13:50:34 +0100 | [diff] [blame] | 885 | if (touch) { |
Chris Bagwell | 8f90686 | 2011-09-09 13:38:10 -0700 | [diff] [blame] | 886 | int x = get_unaligned_be16(&data[offset + 3]) & 0x7ff; |
| 887 | int y = get_unaligned_be16(&data[offset + 5]) & 0x7ff; |
Henrik Rydberg | f4ccbef | 2010-09-05 12:57:13 -0700 | [diff] [blame] | 888 | if (features->quirks & WACOM_QUIRK_BBTOUCH_LOWRES) { |
| 889 | x <<= 5; |
| 890 | y <<= 5; |
| 891 | } |
Henrik Rydberg | cb734c0 | 2010-09-05 12:53:16 -0700 | [diff] [blame] | 892 | input_report_abs(input, ABS_MT_POSITION_X, x); |
| 893 | input_report_abs(input, ABS_MT_POSITION_Y, y); |
Henrik Rydberg | cb734c0 | 2010-09-05 12:53:16 -0700 | [diff] [blame] | 894 | } |
Henrik Rydberg | cb734c0 | 2010-09-05 12:53:16 -0700 | [diff] [blame] | 895 | } |
| 896 | |
Henrik Rydberg | c5f4dec | 2010-12-15 13:50:34 +0100 | [diff] [blame] | 897 | input_mt_report_pointer_emulation(input, true); |
Henrik Rydberg | cb734c0 | 2010-09-05 12:53:16 -0700 | [diff] [blame] | 898 | |
| 899 | input_report_key(input, BTN_LEFT, (data[1] & 0x08) != 0); |
| 900 | input_report_key(input, BTN_FORWARD, (data[1] & 0x04) != 0); |
| 901 | input_report_key(input, BTN_BACK, (data[1] & 0x02) != 0); |
| 902 | input_report_key(input, BTN_RIGHT, (data[1] & 0x01) != 0); |
| 903 | |
| 904 | input_sync(input); |
| 905 | |
| 906 | return 0; |
| 907 | } |
| 908 | |
Chris Bagwell | 73149ab | 2011-10-26 22:34:21 -0700 | [diff] [blame] | 909 | static void wacom_bpt3_touch_msg(struct wacom_wac *wacom, unsigned char *data) |
| 910 | { |
| 911 | struct input_dev *input = wacom->input; |
| 912 | int slot_id = data[0] - 2; /* data[0] is between 2 and 17 */ |
| 913 | bool touch = data[1] & 0x80; |
| 914 | |
| 915 | touch = touch && !wacom->shared->stylus_in_proximity; |
| 916 | |
| 917 | input_mt_slot(input, slot_id); |
| 918 | input_mt_report_slot_state(input, MT_TOOL_FINGER, touch); |
| 919 | |
| 920 | if (touch) { |
| 921 | int x = (data[2] << 4) | (data[4] >> 4); |
| 922 | int y = (data[3] << 4) | (data[4] & 0x0f); |
| 923 | int w = data[6]; |
| 924 | |
| 925 | input_report_abs(input, ABS_MT_POSITION_X, x); |
| 926 | input_report_abs(input, ABS_MT_POSITION_Y, y); |
| 927 | input_report_abs(input, ABS_MT_TOUCH_MAJOR, w); |
| 928 | } |
| 929 | } |
| 930 | |
| 931 | static void wacom_bpt3_button_msg(struct wacom_wac *wacom, unsigned char *data) |
| 932 | { |
| 933 | struct input_dev *input = wacom->input; |
| 934 | |
| 935 | input_report_key(input, BTN_LEFT, (data[1] & 0x08) != 0); |
| 936 | input_report_key(input, BTN_FORWARD, (data[1] & 0x04) != 0); |
| 937 | input_report_key(input, BTN_BACK, (data[1] & 0x02) != 0); |
| 938 | input_report_key(input, BTN_RIGHT, (data[1] & 0x01) != 0); |
| 939 | } |
| 940 | |
| 941 | static int wacom_bpt3_touch(struct wacom_wac *wacom) |
| 942 | { |
| 943 | struct input_dev *input = wacom->input; |
| 944 | unsigned char *data = wacom->data; |
| 945 | int count = data[1] & 0x03; |
| 946 | int i; |
| 947 | |
Chris Bagwell | 5a6c865 | 2011-11-07 19:52:42 -0800 | [diff] [blame] | 948 | if (data[0] != 0x02) |
| 949 | return 0; |
| 950 | |
Chris Bagwell | 73149ab | 2011-10-26 22:34:21 -0700 | [diff] [blame] | 951 | /* data has up to 7 fixed sized 8-byte messages starting at data[2] */ |
| 952 | for (i = 0; i < count; i++) { |
| 953 | int offset = (8 * i) + 2; |
| 954 | int msg_id = data[offset]; |
| 955 | |
| 956 | if (msg_id >= 2 && msg_id <= 17) |
| 957 | wacom_bpt3_touch_msg(wacom, data + offset); |
| 958 | else if (msg_id == 128) |
| 959 | wacom_bpt3_button_msg(wacom, data + offset); |
| 960 | |
| 961 | } |
| 962 | |
| 963 | input_mt_report_pointer_emulation(input, true); |
| 964 | |
| 965 | input_sync(input); |
| 966 | |
| 967 | return 0; |
| 968 | } |
| 969 | |
Chris Bagwell | 2aaacb1 | 2010-09-12 00:11:35 -0700 | [diff] [blame] | 970 | static int wacom_bpt_pen(struct wacom_wac *wacom) |
| 971 | { |
| 972 | struct input_dev *input = wacom->input; |
| 973 | unsigned char *data = wacom->data; |
| 974 | int prox = 0, x = 0, y = 0, p = 0, d = 0, pen = 0, btn1 = 0, btn2 = 0; |
| 975 | |
Chris Bagwell | 5a6c865 | 2011-11-07 19:52:42 -0800 | [diff] [blame] | 976 | if (data[0] != 0x02) |
| 977 | return 0; |
| 978 | |
Chris Bagwell | c598141 | 2011-10-26 22:28:34 -0700 | [diff] [blame] | 979 | prox = (data[1] & 0x20) == 0x20; |
Chris Bagwell | 2aaacb1 | 2010-09-12 00:11:35 -0700 | [diff] [blame] | 980 | |
| 981 | /* |
| 982 | * All reports shared between PEN and RUBBER tool must be |
| 983 | * forced to a known starting value (zero) when transitioning to |
| 984 | * out-of-prox. |
| 985 | * |
| 986 | * If not reset then, to userspace, it will look like lost events |
| 987 | * if new tool comes in-prox with same values as previous tool sent. |
| 988 | * |
| 989 | * Hardware does report zero in most out-of-prox cases but not all. |
| 990 | */ |
| 991 | if (prox) { |
| 992 | if (!wacom->shared->stylus_in_proximity) { |
| 993 | if (data[1] & 0x08) { |
| 994 | wacom->tool[0] = BTN_TOOL_RUBBER; |
| 995 | wacom->id[0] = ERASER_DEVICE_ID; |
| 996 | } else { |
| 997 | wacom->tool[0] = BTN_TOOL_PEN; |
| 998 | wacom->id[0] = STYLUS_DEVICE_ID; |
| 999 | } |
| 1000 | wacom->shared->stylus_in_proximity = true; |
| 1001 | } |
| 1002 | x = le16_to_cpup((__le16 *)&data[2]); |
| 1003 | y = le16_to_cpup((__le16 *)&data[4]); |
| 1004 | p = le16_to_cpup((__le16 *)&data[6]); |
Chris Bagwell | c18c2ce | 2011-10-10 08:52:13 -0700 | [diff] [blame] | 1005 | /* |
| 1006 | * Convert distance from out prox to distance from tablet. |
| 1007 | * distance will be greater than distance_max once |
| 1008 | * touching and applying pressure; do not report negative |
| 1009 | * distance. |
| 1010 | */ |
| 1011 | if (data[8] <= wacom->features.distance_max) |
| 1012 | d = wacom->features.distance_max - data[8]; |
| 1013 | |
Chris Bagwell | 2aaacb1 | 2010-09-12 00:11:35 -0700 | [diff] [blame] | 1014 | pen = data[1] & 0x01; |
| 1015 | btn1 = data[1] & 0x02; |
| 1016 | btn2 = data[1] & 0x04; |
| 1017 | } |
| 1018 | |
| 1019 | input_report_key(input, BTN_TOUCH, pen); |
| 1020 | input_report_key(input, BTN_STYLUS, btn1); |
| 1021 | input_report_key(input, BTN_STYLUS2, btn2); |
| 1022 | |
| 1023 | input_report_abs(input, ABS_X, x); |
| 1024 | input_report_abs(input, ABS_Y, y); |
| 1025 | input_report_abs(input, ABS_PRESSURE, p); |
| 1026 | input_report_abs(input, ABS_DISTANCE, d); |
| 1027 | |
| 1028 | if (!prox) { |
| 1029 | wacom->id[0] = 0; |
| 1030 | wacom->shared->stylus_in_proximity = false; |
| 1031 | } |
| 1032 | |
| 1033 | input_report_key(input, wacom->tool[0], prox); /* PEN or RUBBER */ |
| 1034 | input_report_abs(input, ABS_MISC, wacom->id[0]); /* TOOL ID */ |
| 1035 | |
| 1036 | return 1; |
| 1037 | } |
| 1038 | |
Chris Bagwell | e1d38e4 | 2010-09-12 00:09:27 -0700 | [diff] [blame] | 1039 | static int wacom_bpt_irq(struct wacom_wac *wacom, size_t len) |
| 1040 | { |
| 1041 | if (len == WACOM_PKGLEN_BBTOUCH) |
| 1042 | return wacom_bpt_touch(wacom); |
Chris Bagwell | 73149ab | 2011-10-26 22:34:21 -0700 | [diff] [blame] | 1043 | else if (len == WACOM_PKGLEN_BBTOUCH3) |
| 1044 | return wacom_bpt3_touch(wacom); |
| 1045 | else if (len == WACOM_PKGLEN_BBFUN || len == WACOM_PKGLEN_BBPEN) |
Chris Bagwell | 2aaacb1 | 2010-09-12 00:11:35 -0700 | [diff] [blame] | 1046 | return wacom_bpt_pen(wacom); |
Chris Bagwell | e1d38e4 | 2010-09-12 00:09:27 -0700 | [diff] [blame] | 1047 | |
| 1048 | return 0; |
| 1049 | } |
| 1050 | |
Chris Bagwell | d3825d5 | 2012-03-25 23:26:11 -0700 | [diff] [blame] | 1051 | static int wacom_wireless_irq(struct wacom_wac *wacom, size_t len) |
| 1052 | { |
Chris Bagwell | 16bf288 | 2012-03-25 23:26:20 -0700 | [diff] [blame] | 1053 | unsigned char *data = wacom->data; |
| 1054 | int connected; |
| 1055 | |
| 1056 | if (len != WACOM_PKGLEN_WIRELESS || data[0] != 0x80) |
Chris Bagwell | d3825d5 | 2012-03-25 23:26:11 -0700 | [diff] [blame] | 1057 | return 0; |
| 1058 | |
Chris Bagwell | 16bf288 | 2012-03-25 23:26:20 -0700 | [diff] [blame] | 1059 | connected = data[1] & 0x01; |
| 1060 | if (connected) { |
Chris Bagwell | a1d552c | 2012-03-25 23:26:30 -0700 | [diff] [blame] | 1061 | int pid, battery; |
Chris Bagwell | 16bf288 | 2012-03-25 23:26:20 -0700 | [diff] [blame] | 1062 | |
| 1063 | pid = get_unaligned_be16(&data[6]); |
Chris Bagwell | a1d552c | 2012-03-25 23:26:30 -0700 | [diff] [blame] | 1064 | battery = data[5] & 0x3f; |
Chris Bagwell | 16bf288 | 2012-03-25 23:26:20 -0700 | [diff] [blame] | 1065 | if (wacom->pid != pid) { |
| 1066 | wacom->pid = pid; |
| 1067 | wacom_schedule_work(wacom); |
| 1068 | } |
Chris Bagwell | a1d552c | 2012-03-25 23:26:30 -0700 | [diff] [blame] | 1069 | wacom->battery_capacity = battery; |
Chris Bagwell | 16bf288 | 2012-03-25 23:26:20 -0700 | [diff] [blame] | 1070 | } else if (wacom->pid != 0) { |
| 1071 | /* disconnected while previously connected */ |
| 1072 | wacom->pid = 0; |
| 1073 | wacom_schedule_work(wacom); |
Chris Bagwell | a1d552c | 2012-03-25 23:26:30 -0700 | [diff] [blame] | 1074 | wacom->battery_capacity = 0; |
Chris Bagwell | 16bf288 | 2012-03-25 23:26:20 -0700 | [diff] [blame] | 1075 | } |
| 1076 | |
Chris Bagwell | d3825d5 | 2012-03-25 23:26:11 -0700 | [diff] [blame] | 1077 | return 0; |
| 1078 | } |
| 1079 | |
Dmitry Torokhov | 95dd3b3 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1080 | void wacom_wac_irq(struct wacom_wac *wacom_wac, size_t len) |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 1081 | { |
Dmitry Torokhov | 95dd3b3 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1082 | bool sync; |
| 1083 | |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 1084 | switch (wacom_wac->features.type) { |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1085 | case PENPARTNER: |
Dmitry Torokhov | 95dd3b3 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1086 | sync = wacom_penpartner_irq(wacom_wac); |
| 1087 | break; |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 1088 | |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1089 | case PL: |
Dmitry Torokhov | 95dd3b3 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1090 | sync = wacom_pl_irq(wacom_wac); |
| 1091 | break; |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 1092 | |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1093 | case WACOM_G4: |
| 1094 | case GRAPHIRE: |
| 1095 | case WACOM_MO: |
Dmitry Torokhov | 95dd3b3 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1096 | sync = wacom_graphire_irq(wacom_wac); |
| 1097 | break; |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 1098 | |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1099 | case PTU: |
Dmitry Torokhov | 95dd3b3 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1100 | sync = wacom_ptu_irq(wacom_wac); |
| 1101 | break; |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 1102 | |
Ping Cheng | c8f2edc | 2010-06-28 01:10:51 -0700 | [diff] [blame] | 1103 | case DTU: |
| 1104 | sync = wacom_dtu_irq(wacom_wac); |
| 1105 | break; |
| 1106 | |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1107 | case INTUOS: |
| 1108 | case INTUOS3S: |
| 1109 | case INTUOS3: |
| 1110 | case INTUOS3L: |
| 1111 | case INTUOS4S: |
| 1112 | case INTUOS4: |
| 1113 | case INTUOS4L: |
Jason Gerecke | 9fee619 | 2012-04-03 15:47:22 -0700 | [diff] [blame^] | 1114 | case INTUOS5S: |
| 1115 | case INTUOS5: |
| 1116 | case INTUOS5L: |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1117 | case CINTIQ: |
| 1118 | case WACOM_BEE: |
Ping Cheng | 3a4b4aa | 2010-06-03 22:10:21 -0700 | [diff] [blame] | 1119 | case WACOM_21UX2: |
Jason Gerecke | 803296b | 2011-12-12 00:11:45 -0800 | [diff] [blame] | 1120 | case WACOM_24HD: |
Dmitry Torokhov | 95dd3b3 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1121 | sync = wacom_intuos_irq(wacom_wac); |
| 1122 | break; |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 1123 | |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1124 | case TABLETPC: |
| 1125 | case TABLETPC2FG: |
Dmitry Torokhov | 95dd3b3 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1126 | sync = wacom_tpc_irq(wacom_wac, len); |
| 1127 | break; |
Ping Cheng | 545f4e9 | 2008-11-24 11:44:27 -0500 | [diff] [blame] | 1128 | |
Henrik Rydberg | cb734c0 | 2010-09-05 12:53:16 -0700 | [diff] [blame] | 1129 | case BAMBOO_PT: |
| 1130 | sync = wacom_bpt_irq(wacom_wac, len); |
| 1131 | break; |
| 1132 | |
Chris Bagwell | d3825d5 | 2012-03-25 23:26:11 -0700 | [diff] [blame] | 1133 | case WIRELESS: |
| 1134 | sync = wacom_wireless_irq(wacom_wac, len); |
| 1135 | break; |
| 1136 | |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1137 | default: |
Dmitry Torokhov | 95dd3b3 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1138 | sync = false; |
| 1139 | break; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 1140 | } |
Dmitry Torokhov | 95dd3b3 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1141 | |
| 1142 | if (sync) |
| 1143 | input_sync(wacom_wac->input); |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 1144 | } |
| 1145 | |
Ping Cheng | 6521d0b | 2010-10-24 21:53:40 -0700 | [diff] [blame] | 1146 | static void wacom_setup_cintiq(struct wacom_wac *wacom_wac) |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 1147 | { |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1148 | struct input_dev *input_dev = wacom_wac->input; |
| 1149 | |
| 1150 | input_set_capability(input_dev, EV_MSC, MSC_SERIAL); |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1151 | |
| 1152 | __set_bit(BTN_TOOL_RUBBER, input_dev->keybit); |
| 1153 | __set_bit(BTN_TOOL_PEN, input_dev->keybit); |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1154 | __set_bit(BTN_TOOL_BRUSH, input_dev->keybit); |
| 1155 | __set_bit(BTN_TOOL_PENCIL, input_dev->keybit); |
| 1156 | __set_bit(BTN_TOOL_AIRBRUSH, input_dev->keybit); |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1157 | __set_bit(BTN_STYLUS, input_dev->keybit); |
| 1158 | __set_bit(BTN_STYLUS2, input_dev->keybit); |
| 1159 | |
| 1160 | input_set_abs_params(input_dev, ABS_DISTANCE, |
| 1161 | 0, wacom_wac->features.distance_max, 0, 0); |
| 1162 | input_set_abs_params(input_dev, ABS_WHEEL, 0, 1023, 0, 0); |
| 1163 | input_set_abs_params(input_dev, ABS_TILT_X, 0, 127, 0, 0); |
| 1164 | 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] | 1165 | } |
| 1166 | |
| 1167 | static void wacom_setup_intuos(struct wacom_wac *wacom_wac) |
| 1168 | { |
| 1169 | struct input_dev *input_dev = wacom_wac->input; |
| 1170 | |
| 1171 | input_set_capability(input_dev, EV_REL, REL_WHEEL); |
| 1172 | |
| 1173 | wacom_setup_cintiq(wacom_wac); |
| 1174 | |
| 1175 | __set_bit(BTN_LEFT, input_dev->keybit); |
| 1176 | __set_bit(BTN_RIGHT, input_dev->keybit); |
| 1177 | __set_bit(BTN_MIDDLE, input_dev->keybit); |
| 1178 | __set_bit(BTN_SIDE, input_dev->keybit); |
| 1179 | __set_bit(BTN_EXTRA, input_dev->keybit); |
| 1180 | __set_bit(BTN_TOOL_MOUSE, input_dev->keybit); |
| 1181 | __set_bit(BTN_TOOL_LENS, input_dev->keybit); |
| 1182 | |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1183 | input_set_abs_params(input_dev, ABS_RZ, -900, 899, 0, 0); |
| 1184 | input_set_abs_params(input_dev, ABS_THROTTLE, -1023, 1023, 0, 0); |
| 1185 | } |
| 1186 | |
Henrik Rydberg | bc73dd3 | 2010-09-05 12:26:16 -0700 | [diff] [blame] | 1187 | void wacom_setup_device_quirks(struct wacom_features *features) |
| 1188 | { |
| 1189 | |
| 1190 | /* touch device found but size is not defined. use default */ |
Ping Cheng | 84eb5aa | 2011-03-12 20:35:18 -0800 | [diff] [blame] | 1191 | if (features->device_type == BTN_TOOL_FINGER && !features->x_max) { |
Henrik Rydberg | bc73dd3 | 2010-09-05 12:26:16 -0700 | [diff] [blame] | 1192 | features->x_max = 1023; |
| 1193 | features->y_max = 1023; |
| 1194 | } |
| 1195 | |
| 1196 | /* these device have multiple inputs */ |
| 1197 | if (features->type == TABLETPC || features->type == TABLETPC2FG || |
Chris Bagwell | d3825d5 | 2012-03-25 23:26:11 -0700 | [diff] [blame] | 1198 | features->type == BAMBOO_PT || features->type == WIRELESS) |
Henrik Rydberg | bc73dd3 | 2010-09-05 12:26:16 -0700 | [diff] [blame] | 1199 | features->quirks |= WACOM_QUIRK_MULTI_INPUT; |
Henrik Rydberg | cb734c0 | 2010-09-05 12:53:16 -0700 | [diff] [blame] | 1200 | |
Chris Bagwell | 73149ab | 2011-10-26 22:34:21 -0700 | [diff] [blame] | 1201 | /* quirk for bamboo touch with 2 low res touches */ |
Henrik Rydberg | cb734c0 | 2010-09-05 12:53:16 -0700 | [diff] [blame] | 1202 | if (features->type == BAMBOO_PT && |
Chris Bagwell | 73149ab | 2011-10-26 22:34:21 -0700 | [diff] [blame] | 1203 | features->pktlen == WACOM_PKGLEN_BBTOUCH) { |
Henrik Rydberg | f4ccbef | 2010-09-05 12:57:13 -0700 | [diff] [blame] | 1204 | features->x_max <<= 5; |
| 1205 | features->y_max <<= 5; |
| 1206 | features->x_fuzz <<= 5; |
| 1207 | features->y_fuzz <<= 5; |
Henrik Rydberg | f4ccbef | 2010-09-05 12:57:13 -0700 | [diff] [blame] | 1208 | features->quirks |= WACOM_QUIRK_BBTOUCH_LOWRES; |
Henrik Rydberg | cb734c0 | 2010-09-05 12:53:16 -0700 | [diff] [blame] | 1209 | } |
Chris Bagwell | d3825d5 | 2012-03-25 23:26:11 -0700 | [diff] [blame] | 1210 | |
| 1211 | if (features->type == WIRELESS) { |
| 1212 | |
| 1213 | /* monitor never has input and pen/touch have delayed create */ |
| 1214 | features->quirks |= WACOM_QUIRK_NO_INPUT; |
| 1215 | |
| 1216 | /* must be monitor interface if no device_type set */ |
| 1217 | if (!features->device_type) |
| 1218 | features->quirks |= WACOM_QUIRK_MONITOR; |
| 1219 | } |
Henrik Rydberg | bc73dd3 | 2010-09-05 12:26:16 -0700 | [diff] [blame] | 1220 | } |
| 1221 | |
Ping Cheng | 409550f | 2011-01-25 18:03:13 -0800 | [diff] [blame] | 1222 | static unsigned int wacom_calculate_touch_res(unsigned int logical_max, |
| 1223 | unsigned int physical_max) |
| 1224 | { |
| 1225 | /* Touch physical dimensions are in 100th of mm */ |
| 1226 | return (logical_max * 100) / physical_max; |
| 1227 | } |
| 1228 | |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1229 | void wacom_setup_input_capabilities(struct input_dev *input_dev, |
| 1230 | struct wacom_wac *wacom_wac) |
| 1231 | { |
| 1232 | struct wacom_features *features = &wacom_wac->features; |
| 1233 | int i; |
| 1234 | |
| 1235 | input_dev->evbit[0] |= BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS); |
| 1236 | |
| 1237 | __set_bit(BTN_TOUCH, input_dev->keybit); |
| 1238 | |
Henrik Rydberg | fed87e6 | 2010-09-05 12:25:11 -0700 | [diff] [blame] | 1239 | input_set_abs_params(input_dev, ABS_X, 0, features->x_max, |
| 1240 | features->x_fuzz, 0); |
| 1241 | input_set_abs_params(input_dev, ABS_Y, 0, features->y_max, |
| 1242 | features->y_fuzz, 0); |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1243 | |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1244 | if (features->device_type == BTN_TOOL_PEN) { |
Ping Cheng | cfb7d55 | 2011-08-26 23:10:02 -0700 | [diff] [blame] | 1245 | input_set_abs_params(input_dev, ABS_PRESSURE, 0, features->pressure_max, |
| 1246 | features->pressure_fuzz, 0); |
| 1247 | |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1248 | /* penabled devices have fixed resolution for each model */ |
| 1249 | input_abs_set_res(input_dev, ABS_X, features->x_resolution); |
| 1250 | input_abs_set_res(input_dev, ABS_Y, features->y_resolution); |
| 1251 | } else { |
| 1252 | input_abs_set_res(input_dev, ABS_X, |
| 1253 | wacom_calculate_touch_res(features->x_max, |
| 1254 | features->x_phy)); |
| 1255 | input_abs_set_res(input_dev, ABS_Y, |
| 1256 | wacom_calculate_touch_res(features->y_max, |
| 1257 | features->y_phy)); |
| 1258 | } |
| 1259 | |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1260 | __set_bit(ABS_MISC, input_dev->absbit); |
| 1261 | |
Jason Childs | e33da8a | 2010-02-17 22:38:31 -0800 | [diff] [blame] | 1262 | switch (wacom_wac->features.type) { |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1263 | case WACOM_MO: |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1264 | input_set_abs_params(input_dev, ABS_WHEEL, 0, 71, 0, 0); |
| 1265 | /* fall through */ |
Ping Cheng | ec67bbe | 2009-12-15 00:35:24 -0800 | [diff] [blame] | 1266 | |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1267 | case WACOM_G4: |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1268 | input_set_capability(input_dev, EV_MSC, MSC_SERIAL); |
| 1269 | |
Ping Cheng | 0bd10ef | 2011-07-06 18:05:42 -0700 | [diff] [blame] | 1270 | __set_bit(BTN_BACK, input_dev->keybit); |
| 1271 | __set_bit(BTN_FORWARD, input_dev->keybit); |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1272 | /* fall through */ |
| 1273 | |
| 1274 | case GRAPHIRE: |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1275 | input_set_capability(input_dev, EV_REL, REL_WHEEL); |
| 1276 | |
| 1277 | __set_bit(BTN_LEFT, input_dev->keybit); |
| 1278 | __set_bit(BTN_RIGHT, input_dev->keybit); |
| 1279 | __set_bit(BTN_MIDDLE, input_dev->keybit); |
| 1280 | |
| 1281 | __set_bit(BTN_TOOL_RUBBER, input_dev->keybit); |
| 1282 | __set_bit(BTN_TOOL_PEN, input_dev->keybit); |
| 1283 | __set_bit(BTN_TOOL_MOUSE, input_dev->keybit); |
| 1284 | __set_bit(BTN_STYLUS, input_dev->keybit); |
| 1285 | __set_bit(BTN_STYLUS2, input_dev->keybit); |
Jason Gerecke | 3512069 | 2011-09-08 09:38:14 -0700 | [diff] [blame] | 1286 | |
| 1287 | __set_bit(INPUT_PROP_POINTER, input_dev->propbit); |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1288 | break; |
| 1289 | |
Jason Gerecke | 803296b | 2011-12-12 00:11:45 -0800 | [diff] [blame] | 1290 | case WACOM_24HD: |
| 1291 | __set_bit(BTN_A, input_dev->keybit); |
| 1292 | __set_bit(BTN_B, input_dev->keybit); |
| 1293 | __set_bit(BTN_C, input_dev->keybit); |
| 1294 | __set_bit(BTN_X, input_dev->keybit); |
| 1295 | __set_bit(BTN_Y, input_dev->keybit); |
| 1296 | __set_bit(BTN_Z, input_dev->keybit); |
| 1297 | |
| 1298 | for (i = 0; i < 10; i++) |
| 1299 | __set_bit(BTN_0 + i, input_dev->keybit); |
| 1300 | |
| 1301 | __set_bit(KEY_PROG1, input_dev->keybit); |
| 1302 | __set_bit(KEY_PROG2, input_dev->keybit); |
| 1303 | __set_bit(KEY_PROG3, input_dev->keybit); |
| 1304 | |
| 1305 | input_set_abs_params(input_dev, ABS_Z, -900, 899, 0, 0); |
| 1306 | input_set_abs_params(input_dev, ABS_THROTTLE, 0, 71, 0, 0); |
| 1307 | wacom_setup_cintiq(wacom_wac); |
| 1308 | break; |
| 1309 | |
Ping Cheng | 3a4b4aa | 2010-06-03 22:10:21 -0700 | [diff] [blame] | 1310 | case WACOM_21UX2: |
| 1311 | __set_bit(BTN_A, input_dev->keybit); |
| 1312 | __set_bit(BTN_B, input_dev->keybit); |
| 1313 | __set_bit(BTN_C, input_dev->keybit); |
| 1314 | __set_bit(BTN_X, input_dev->keybit); |
| 1315 | __set_bit(BTN_Y, input_dev->keybit); |
| 1316 | __set_bit(BTN_Z, input_dev->keybit); |
| 1317 | __set_bit(BTN_BASE, input_dev->keybit); |
| 1318 | __set_bit(BTN_BASE2, input_dev->keybit); |
| 1319 | /* fall through */ |
| 1320 | |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1321 | case WACOM_BEE: |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1322 | __set_bit(BTN_8, input_dev->keybit); |
| 1323 | __set_bit(BTN_9, input_dev->keybit); |
| 1324 | /* fall through */ |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1325 | |
Ping Cheng | 6521d0b | 2010-10-24 21:53:40 -0700 | [diff] [blame] | 1326 | case CINTIQ: |
| 1327 | for (i = 0; i < 8; i++) |
| 1328 | __set_bit(BTN_0 + i, input_dev->keybit); |
Ping Cheng | 6521d0b | 2010-10-24 21:53:40 -0700 | [diff] [blame] | 1329 | |
Jason Gerecke | d6069da | 2011-10-04 22:50:45 -0700 | [diff] [blame] | 1330 | input_set_abs_params(input_dev, ABS_RX, 0, 4096, 0, 0); |
| 1331 | input_set_abs_params(input_dev, ABS_RY, 0, 4096, 0, 0); |
Ping Cheng | 6521d0b | 2010-10-24 21:53:40 -0700 | [diff] [blame] | 1332 | input_set_abs_params(input_dev, ABS_Z, -900, 899, 0, 0); |
Jason Gerecke | 3512069 | 2011-09-08 09:38:14 -0700 | [diff] [blame] | 1333 | |
| 1334 | __set_bit(INPUT_PROP_DIRECT, input_dev->propbit); |
| 1335 | |
Ping Cheng | 6521d0b | 2010-10-24 21:53:40 -0700 | [diff] [blame] | 1336 | wacom_setup_cintiq(wacom_wac); |
| 1337 | break; |
| 1338 | |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1339 | case INTUOS3: |
| 1340 | case INTUOS3L: |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1341 | __set_bit(BTN_4, input_dev->keybit); |
| 1342 | __set_bit(BTN_5, input_dev->keybit); |
| 1343 | __set_bit(BTN_6, input_dev->keybit); |
| 1344 | __set_bit(BTN_7, input_dev->keybit); |
| 1345 | |
| 1346 | input_set_abs_params(input_dev, ABS_RY, 0, 4096, 0, 0); |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1347 | /* fall through */ |
| 1348 | |
| 1349 | case INTUOS3S: |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1350 | __set_bit(BTN_0, input_dev->keybit); |
| 1351 | __set_bit(BTN_1, input_dev->keybit); |
| 1352 | __set_bit(BTN_2, input_dev->keybit); |
| 1353 | __set_bit(BTN_3, input_dev->keybit); |
| 1354 | |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1355 | input_set_abs_params(input_dev, ABS_RX, 0, 4096, 0, 0); |
| 1356 | input_set_abs_params(input_dev, ABS_Z, -900, 899, 0, 0); |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1357 | /* fall through */ |
| 1358 | |
| 1359 | case INTUOS: |
Jason Gerecke | 3512069 | 2011-09-08 09:38:14 -0700 | [diff] [blame] | 1360 | __set_bit(INPUT_PROP_POINTER, input_dev->propbit); |
| 1361 | |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1362 | wacom_setup_intuos(wacom_wac); |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1363 | break; |
| 1364 | |
Jason Gerecke | 9fee619 | 2012-04-03 15:47:22 -0700 | [diff] [blame^] | 1365 | case INTUOS5: |
| 1366 | case INTUOS5L: |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1367 | case INTUOS4: |
| 1368 | case INTUOS4L: |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1369 | __set_bit(BTN_7, input_dev->keybit); |
| 1370 | __set_bit(BTN_8, input_dev->keybit); |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1371 | /* fall through */ |
| 1372 | |
Jason Gerecke | 9fee619 | 2012-04-03 15:47:22 -0700 | [diff] [blame^] | 1373 | case INTUOS5S: |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1374 | case INTUOS4S: |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1375 | for (i = 0; i < 7; i++) |
| 1376 | __set_bit(BTN_0 + i, input_dev->keybit); |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1377 | |
| 1378 | input_set_abs_params(input_dev, ABS_Z, -900, 899, 0, 0); |
| 1379 | wacom_setup_intuos(wacom_wac); |
Jason Gerecke | 3512069 | 2011-09-08 09:38:14 -0700 | [diff] [blame] | 1380 | |
| 1381 | __set_bit(INPUT_PROP_POINTER, input_dev->propbit); |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1382 | break; |
| 1383 | |
| 1384 | case TABLETPC2FG: |
Ping Cheng | 8b4a0c1 | 2012-01-31 00:07:33 -0800 | [diff] [blame] | 1385 | if (features->device_type == BTN_TOOL_FINGER) { |
Ping Cheng | 84eb5aa | 2011-03-12 20:35:18 -0800 | [diff] [blame] | 1386 | |
| 1387 | input_mt_init_slots(input_dev, 2); |
| 1388 | input_set_abs_params(input_dev, ABS_MT_TOOL_TYPE, |
| 1389 | 0, MT_TOOL_MAX, 0, 0); |
| 1390 | input_set_abs_params(input_dev, ABS_MT_POSITION_X, |
| 1391 | 0, features->x_max, 0, 0); |
| 1392 | input_set_abs_params(input_dev, ABS_MT_POSITION_Y, |
| 1393 | 0, features->y_max, 0, 0); |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1394 | } |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1395 | /* fall through */ |
| 1396 | |
| 1397 | case TABLETPC: |
Ping Cheng | a43c7c5 | 2011-03-12 20:34:42 -0800 | [diff] [blame] | 1398 | __clear_bit(ABS_MISC, input_dev->absbit); |
| 1399 | |
Jason Gerecke | 3512069 | 2011-09-08 09:38:14 -0700 | [diff] [blame] | 1400 | __set_bit(INPUT_PROP_DIRECT, input_dev->propbit); |
| 1401 | |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1402 | if (features->device_type != BTN_TOOL_PEN) |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1403 | break; /* no need to process stylus stuff */ |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1404 | |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1405 | /* fall through */ |
| 1406 | |
| 1407 | case PL: |
Ping Cheng | c8f2edc | 2010-06-28 01:10:51 -0700 | [diff] [blame] | 1408 | case DTU: |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1409 | __set_bit(BTN_TOOL_PEN, input_dev->keybit); |
Jason Gerecke | 3512069 | 2011-09-08 09:38:14 -0700 | [diff] [blame] | 1410 | __set_bit(BTN_TOOL_RUBBER, input_dev->keybit); |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1411 | __set_bit(BTN_STYLUS, input_dev->keybit); |
| 1412 | __set_bit(BTN_STYLUS2, input_dev->keybit); |
Jason Gerecke | 3512069 | 2011-09-08 09:38:14 -0700 | [diff] [blame] | 1413 | |
| 1414 | __set_bit(INPUT_PROP_DIRECT, input_dev->propbit); |
| 1415 | break; |
| 1416 | |
| 1417 | case PTU: |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1418 | __set_bit(BTN_STYLUS2, input_dev->keybit); |
| 1419 | /* fall through */ |
| 1420 | |
| 1421 | case PENPARTNER: |
Jason Gerecke | 1fab84a | 2011-08-26 23:18:22 -0700 | [diff] [blame] | 1422 | __set_bit(BTN_TOOL_PEN, input_dev->keybit); |
Dmitry Torokhov | 8da23fc | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1423 | __set_bit(BTN_TOOL_RUBBER, input_dev->keybit); |
Jason Gerecke | 1fab84a | 2011-08-26 23:18:22 -0700 | [diff] [blame] | 1424 | __set_bit(BTN_STYLUS, input_dev->keybit); |
Jason Gerecke | 3512069 | 2011-09-08 09:38:14 -0700 | [diff] [blame] | 1425 | |
| 1426 | __set_bit(INPUT_PROP_POINTER, input_dev->propbit); |
Dmitry Torokhov | 73a97f4 | 2010-03-19 22:18:15 -0700 | [diff] [blame] | 1427 | break; |
Henrik Rydberg | cb734c0 | 2010-09-05 12:53:16 -0700 | [diff] [blame] | 1428 | |
| 1429 | case BAMBOO_PT: |
| 1430 | __clear_bit(ABS_MISC, input_dev->absbit); |
| 1431 | |
Jason Gerecke | 3512069 | 2011-09-08 09:38:14 -0700 | [diff] [blame] | 1432 | __set_bit(INPUT_PROP_POINTER, input_dev->propbit); |
| 1433 | |
Ping Cheng | 8b4a0c1 | 2012-01-31 00:07:33 -0800 | [diff] [blame] | 1434 | if (features->device_type == BTN_TOOL_FINGER) { |
Henrik Rydberg | cb734c0 | 2010-09-05 12:53:16 -0700 | [diff] [blame] | 1435 | __set_bit(BTN_LEFT, input_dev->keybit); |
| 1436 | __set_bit(BTN_FORWARD, input_dev->keybit); |
| 1437 | __set_bit(BTN_BACK, input_dev->keybit); |
| 1438 | __set_bit(BTN_RIGHT, input_dev->keybit); |
| 1439 | |
| 1440 | __set_bit(BTN_TOOL_FINGER, input_dev->keybit); |
| 1441 | __set_bit(BTN_TOOL_DOUBLETAP, input_dev->keybit); |
| 1442 | |
Chris Bagwell | 73149ab | 2011-10-26 22:34:21 -0700 | [diff] [blame] | 1443 | if (features->pktlen == WACOM_PKGLEN_BBTOUCH3) { |
| 1444 | __set_bit(BTN_TOOL_TRIPLETAP, |
| 1445 | input_dev->keybit); |
| 1446 | __set_bit(BTN_TOOL_QUADTAP, |
| 1447 | input_dev->keybit); |
| 1448 | |
| 1449 | input_mt_init_slots(input_dev, 16); |
| 1450 | |
| 1451 | input_set_abs_params(input_dev, |
| 1452 | ABS_MT_TOUCH_MAJOR, |
| 1453 | 0, 255, 0, 0); |
| 1454 | } else { |
| 1455 | input_mt_init_slots(input_dev, 2); |
| 1456 | } |
| 1457 | |
Henrik Rydberg | cb734c0 | 2010-09-05 12:53:16 -0700 | [diff] [blame] | 1458 | input_set_abs_params(input_dev, ABS_MT_POSITION_X, |
| 1459 | 0, features->x_max, |
| 1460 | features->x_fuzz, 0); |
| 1461 | input_set_abs_params(input_dev, ABS_MT_POSITION_Y, |
| 1462 | 0, features->y_max, |
| 1463 | features->y_fuzz, 0); |
Chris Bagwell | 2aaacb1 | 2010-09-12 00:11:35 -0700 | [diff] [blame] | 1464 | } else if (features->device_type == BTN_TOOL_PEN) { |
| 1465 | __set_bit(BTN_TOOL_RUBBER, input_dev->keybit); |
| 1466 | __set_bit(BTN_TOOL_PEN, input_dev->keybit); |
| 1467 | __set_bit(BTN_STYLUS, input_dev->keybit); |
| 1468 | __set_bit(BTN_STYLUS2, input_dev->keybit); |
Chris Bagwell | c18c2ce | 2011-10-10 08:52:13 -0700 | [diff] [blame] | 1469 | input_set_abs_params(input_dev, ABS_DISTANCE, 0, |
| 1470 | features->distance_max, |
| 1471 | 0, 0); |
Henrik Rydberg | cb734c0 | 2010-09-05 12:53:16 -0700 | [diff] [blame] | 1472 | } |
| 1473 | break; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 1474 | } |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 1475 | } |
| 1476 | |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1477 | static const struct wacom_features wacom_features_0x00 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1478 | { "Wacom Penpartner", WACOM_PKGLEN_PENPRTN, 5040, 3780, 255, |
| 1479 | 0, PENPARTNER, WACOM_PENPRTN_RES, WACOM_PENPRTN_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1480 | static const struct wacom_features wacom_features_0x10 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1481 | { "Wacom Graphire", WACOM_PKGLEN_GRAPHIRE, 10206, 7422, 511, |
| 1482 | 63, GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1483 | static const struct wacom_features wacom_features_0x11 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1484 | { "Wacom Graphire2 4x5", WACOM_PKGLEN_GRAPHIRE, 10206, 7422, 511, |
| 1485 | 63, GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1486 | static const struct wacom_features wacom_features_0x12 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1487 | { "Wacom Graphire2 5x7", WACOM_PKGLEN_GRAPHIRE, 13918, 10206, 511, |
| 1488 | 63, GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1489 | static const struct wacom_features wacom_features_0x13 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1490 | { "Wacom Graphire3", WACOM_PKGLEN_GRAPHIRE, 10208, 7424, 511, |
| 1491 | 63, GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1492 | static const struct wacom_features wacom_features_0x14 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1493 | { "Wacom Graphire3 6x8", WACOM_PKGLEN_GRAPHIRE, 16704, 12064, 511, |
| 1494 | 63, GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1495 | static const struct wacom_features wacom_features_0x15 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1496 | { "Wacom Graphire4 4x5", WACOM_PKGLEN_GRAPHIRE, 10208, 7424, 511, |
| 1497 | 63, WACOM_G4, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1498 | static const struct wacom_features wacom_features_0x16 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1499 | { "Wacom Graphire4 6x8", WACOM_PKGLEN_GRAPHIRE, 16704, 12064, 511, |
| 1500 | 63, WACOM_G4, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1501 | static const struct wacom_features wacom_features_0x17 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1502 | { "Wacom BambooFun 4x5", WACOM_PKGLEN_BBFUN, 14760, 9225, 511, |
| 1503 | 63, WACOM_MO, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1504 | static const struct wacom_features wacom_features_0x18 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1505 | { "Wacom BambooFun 6x8", WACOM_PKGLEN_BBFUN, 21648, 13530, 511, |
| 1506 | 63, WACOM_MO, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1507 | static const struct wacom_features wacom_features_0x19 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1508 | { "Wacom Bamboo1 Medium", WACOM_PKGLEN_GRAPHIRE, 16704, 12064, 511, |
| 1509 | 63, GRAPHIRE, WACOM_GRAPHIRE_RES, WACOM_GRAPHIRE_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1510 | static const struct wacom_features wacom_features_0x60 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1511 | { "Wacom Volito", WACOM_PKGLEN_GRAPHIRE, 5104, 3712, 511, |
| 1512 | 63, GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1513 | static const struct wacom_features wacom_features_0x61 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1514 | { "Wacom PenStation2", WACOM_PKGLEN_GRAPHIRE, 3250, 2320, 255, |
| 1515 | 63, GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1516 | static const struct wacom_features wacom_features_0x62 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1517 | { "Wacom Volito2 4x5", WACOM_PKGLEN_GRAPHIRE, 5104, 3712, 511, |
| 1518 | 63, GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1519 | static const struct wacom_features wacom_features_0x63 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1520 | { "Wacom Volito2 2x3", WACOM_PKGLEN_GRAPHIRE, 3248, 2320, 511, |
| 1521 | 63, GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1522 | static const struct wacom_features wacom_features_0x64 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1523 | { "Wacom PenPartner2", WACOM_PKGLEN_GRAPHIRE, 3250, 2320, 511, |
| 1524 | 63, GRAPHIRE, WACOM_VOLITO_RES, WACOM_VOLITO_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1525 | static const struct wacom_features wacom_features_0x65 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1526 | { "Wacom Bamboo", WACOM_PKGLEN_BBFUN, 14760, 9225, 511, |
| 1527 | 63, WACOM_MO, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1528 | static const struct wacom_features wacom_features_0x69 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1529 | { "Wacom Bamboo1", WACOM_PKGLEN_GRAPHIRE, 5104, 3712, 511, |
| 1530 | 63, GRAPHIRE, WACOM_PENPRTN_RES, WACOM_PENPRTN_RES }; |
Ping Cheng | 11d0cf8 | 2011-06-27 12:57:58 -0700 | [diff] [blame] | 1531 | static const struct wacom_features wacom_features_0x6A = |
| 1532 | { "Wacom Bamboo1 4x6", WACOM_PKGLEN_GRAPHIRE, 14760, 9225, 1023, |
| 1533 | 63, GRAPHIRE, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
| 1534 | static const struct wacom_features wacom_features_0x6B = |
| 1535 | { "Wacom Bamboo1 5x8", WACOM_PKGLEN_GRAPHIRE, 21648, 13530, 1023, |
| 1536 | 63, GRAPHIRE, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1537 | static const struct wacom_features wacom_features_0x20 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1538 | { "Wacom Intuos 4x5", WACOM_PKGLEN_INTUOS, 12700, 10600, 1023, |
| 1539 | 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1540 | static const struct wacom_features wacom_features_0x21 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1541 | { "Wacom Intuos 6x8", WACOM_PKGLEN_INTUOS, 20320, 16240, 1023, |
| 1542 | 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1543 | static const struct wacom_features wacom_features_0x22 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1544 | { "Wacom Intuos 9x12", WACOM_PKGLEN_INTUOS, 30480, 24060, 1023, |
| 1545 | 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1546 | static const struct wacom_features wacom_features_0x23 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1547 | { "Wacom Intuos 12x12", WACOM_PKGLEN_INTUOS, 30480, 31680, 1023, |
| 1548 | 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1549 | static const struct wacom_features wacom_features_0x24 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1550 | { "Wacom Intuos 12x18", WACOM_PKGLEN_INTUOS, 45720, 31680, 1023, |
| 1551 | 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1552 | static const struct wacom_features wacom_features_0x30 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1553 | { "Wacom PL400", WACOM_PKGLEN_GRAPHIRE, 5408, 4056, 255, |
| 1554 | 0, PL, WACOM_PL_RES, WACOM_PL_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1555 | static const struct wacom_features wacom_features_0x31 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1556 | { "Wacom PL500", WACOM_PKGLEN_GRAPHIRE, 6144, 4608, 255, |
| 1557 | 0, PL, WACOM_PL_RES, WACOM_PL_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1558 | static const struct wacom_features wacom_features_0x32 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1559 | { "Wacom PL600", WACOM_PKGLEN_GRAPHIRE, 6126, 4604, 255, |
| 1560 | 0, PL, WACOM_PL_RES, WACOM_PL_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1561 | static const struct wacom_features wacom_features_0x33 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1562 | { "Wacom PL600SX", WACOM_PKGLEN_GRAPHIRE, 6260, 5016, 255, |
| 1563 | 0, PL, WACOM_PL_RES, WACOM_PL_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1564 | static const struct wacom_features wacom_features_0x34 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1565 | { "Wacom PL550", WACOM_PKGLEN_GRAPHIRE, 6144, 4608, 511, |
| 1566 | 0, PL, WACOM_PL_RES, WACOM_PL_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1567 | static const struct wacom_features wacom_features_0x35 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1568 | { "Wacom PL800", WACOM_PKGLEN_GRAPHIRE, 7220, 5780, 511, |
| 1569 | 0, PL, WACOM_PL_RES, WACOM_PL_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1570 | static const struct wacom_features wacom_features_0x37 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1571 | { "Wacom PL700", WACOM_PKGLEN_GRAPHIRE, 6758, 5406, 511, |
| 1572 | 0, PL, WACOM_PL_RES, WACOM_PL_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1573 | static const struct wacom_features wacom_features_0x38 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1574 | { "Wacom PL510", WACOM_PKGLEN_GRAPHIRE, 6282, 4762, 511, |
| 1575 | 0, PL, WACOM_PL_RES, WACOM_PL_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1576 | static const struct wacom_features wacom_features_0x39 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1577 | { "Wacom DTU710", WACOM_PKGLEN_GRAPHIRE, 34080, 27660, 511, |
| 1578 | 0, PL, WACOM_PL_RES, WACOM_PL_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1579 | static const struct wacom_features wacom_features_0xC4 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1580 | { "Wacom DTF521", WACOM_PKGLEN_GRAPHIRE, 6282, 4762, 511, |
| 1581 | 0, PL, WACOM_PL_RES, WACOM_PL_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1582 | static const struct wacom_features wacom_features_0xC0 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1583 | { "Wacom DTF720", WACOM_PKGLEN_GRAPHIRE, 6858, 5506, 511, |
| 1584 | 0, PL, WACOM_PL_RES, WACOM_PL_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1585 | static const struct wacom_features wacom_features_0xC2 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1586 | { "Wacom DTF720a", WACOM_PKGLEN_GRAPHIRE, 6858, 5506, 511, |
| 1587 | 0, PL, WACOM_PL_RES, WACOM_PL_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1588 | static const struct wacom_features wacom_features_0x03 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1589 | { "Wacom Cintiq Partner", WACOM_PKGLEN_GRAPHIRE, 20480, 15360, 511, |
| 1590 | 0, PTU, WACOM_PL_RES, WACOM_PL_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1591 | static const struct wacom_features wacom_features_0x41 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1592 | { "Wacom Intuos2 4x5", WACOM_PKGLEN_INTUOS, 12700, 10600, 1023, |
| 1593 | 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1594 | static const struct wacom_features wacom_features_0x42 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1595 | { "Wacom Intuos2 6x8", WACOM_PKGLEN_INTUOS, 20320, 16240, 1023, |
| 1596 | 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1597 | static const struct wacom_features wacom_features_0x43 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1598 | { "Wacom Intuos2 9x12", WACOM_PKGLEN_INTUOS, 30480, 24060, 1023, |
| 1599 | 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1600 | static const struct wacom_features wacom_features_0x44 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1601 | { "Wacom Intuos2 12x12", WACOM_PKGLEN_INTUOS, 30480, 31680, 1023, |
| 1602 | 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1603 | static const struct wacom_features wacom_features_0x45 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1604 | { "Wacom Intuos2 12x18", WACOM_PKGLEN_INTUOS, 45720, 31680, 1023, |
| 1605 | 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1606 | static const struct wacom_features wacom_features_0xB0 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1607 | { "Wacom Intuos3 4x5", WACOM_PKGLEN_INTUOS, 25400, 20320, 1023, |
| 1608 | 63, INTUOS3S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1609 | static const struct wacom_features wacom_features_0xB1 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1610 | { "Wacom Intuos3 6x8", WACOM_PKGLEN_INTUOS, 40640, 30480, 1023, |
| 1611 | 63, INTUOS3, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1612 | static const struct wacom_features wacom_features_0xB2 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1613 | { "Wacom Intuos3 9x12", WACOM_PKGLEN_INTUOS, 60960, 45720, 1023, |
| 1614 | 63, INTUOS3, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1615 | static const struct wacom_features wacom_features_0xB3 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1616 | { "Wacom Intuos3 12x12", WACOM_PKGLEN_INTUOS, 60960, 60960, 1023, |
| 1617 | 63, INTUOS3L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1618 | static const struct wacom_features wacom_features_0xB4 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1619 | { "Wacom Intuos3 12x19", WACOM_PKGLEN_INTUOS, 97536, 60960, 1023, |
| 1620 | 63, INTUOS3L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1621 | static const struct wacom_features wacom_features_0xB5 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1622 | { "Wacom Intuos3 6x11", WACOM_PKGLEN_INTUOS, 54204, 31750, 1023, |
| 1623 | 63, INTUOS3, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1624 | static const struct wacom_features wacom_features_0xB7 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1625 | { "Wacom Intuos3 4x6", WACOM_PKGLEN_INTUOS, 31496, 19685, 1023, |
| 1626 | 63, INTUOS3S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1627 | static const struct wacom_features wacom_features_0xB8 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1628 | { "Wacom Intuos4 4x6", WACOM_PKGLEN_INTUOS, 31496, 19685, 2047, |
| 1629 | 63, INTUOS4S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1630 | static const struct wacom_features wacom_features_0xB9 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1631 | { "Wacom Intuos4 6x9", WACOM_PKGLEN_INTUOS, 44704, 27940, 2047, |
| 1632 | 63, INTUOS4, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1633 | static const struct wacom_features wacom_features_0xBA = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1634 | { "Wacom Intuos4 8x13", WACOM_PKGLEN_INTUOS, 65024, 40640, 2047, |
| 1635 | 63, INTUOS4L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1636 | static const struct wacom_features wacom_features_0xBB = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1637 | { "Wacom Intuos4 12x19", WACOM_PKGLEN_INTUOS, 97536, 60960, 2047, |
| 1638 | 63, INTUOS4L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES }; |
Ping Cheng | 3a4b4aa | 2010-06-03 22:10:21 -0700 | [diff] [blame] | 1639 | static const struct wacom_features wacom_features_0xBC = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1640 | { "Wacom Intuos4 WL", WACOM_PKGLEN_INTUOS, 40840, 25400, 2047, |
| 1641 | 63, INTUOS4, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES }; |
Jason Gerecke | 9fee619 | 2012-04-03 15:47:22 -0700 | [diff] [blame^] | 1642 | static const struct wacom_features wacom_features_0x26 = |
| 1643 | { "Wacom Intuos5 touch S", WACOM_PKGLEN_INTUOS, 31496, 19685, 2047, |
| 1644 | 63, INTUOS5S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES }; |
| 1645 | static const struct wacom_features wacom_features_0x27 = |
| 1646 | { "Wacom Intuos5 touch M", WACOM_PKGLEN_INTUOS, 44704, 27940, 2047, |
| 1647 | 63, INTUOS5, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES }; |
| 1648 | static const struct wacom_features wacom_features_0x28 = |
| 1649 | { "Wacom Intuos5 touch L", WACOM_PKGLEN_INTUOS, 65024, 40640, 2047, |
| 1650 | 63, INTUOS5L, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES }; |
| 1651 | static const struct wacom_features wacom_features_0x29 = |
| 1652 | { "Wacom Intuos5 S", WACOM_PKGLEN_INTUOS, 31496, 19685, 2047, |
| 1653 | 63, INTUOS5S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES }; |
| 1654 | static const struct wacom_features wacom_features_0x2A = |
| 1655 | { "Wacom Intuos5 M", WACOM_PKGLEN_INTUOS, 44704, 27940, 2047, |
| 1656 | 63, INTUOS5, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES }; |
Jason Gerecke | 803296b | 2011-12-12 00:11:45 -0800 | [diff] [blame] | 1657 | static const struct wacom_features wacom_features_0xF4 = |
| 1658 | { "Wacom Cintiq 24HD", WACOM_PKGLEN_INTUOS, 104480, 65600, 2047, |
| 1659 | 63, WACOM_24HD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1660 | static const struct wacom_features wacom_features_0x3F = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1661 | { "Wacom Cintiq 21UX", WACOM_PKGLEN_INTUOS, 87200, 65600, 1023, |
| 1662 | 63, CINTIQ, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1663 | static const struct wacom_features wacom_features_0xC5 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1664 | { "Wacom Cintiq 20WSX", WACOM_PKGLEN_INTUOS, 86680, 54180, 1023, |
| 1665 | 63, WACOM_BEE, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1666 | static const struct wacom_features wacom_features_0xC6 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1667 | { "Wacom Cintiq 12WX", WACOM_PKGLEN_INTUOS, 53020, 33440, 1023, |
| 1668 | 63, WACOM_BEE, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1669 | static const struct wacom_features wacom_features_0xC7 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1670 | { "Wacom DTU1931", WACOM_PKGLEN_GRAPHIRE, 37832, 30305, 511, |
| 1671 | 0, PL, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Ping Cheng | c8f2edc | 2010-06-28 01:10:51 -0700 | [diff] [blame] | 1672 | static const struct wacom_features wacom_features_0xCE = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1673 | { "Wacom DTU2231", WACOM_PKGLEN_GRAPHIRE, 47864, 27011, 511, |
| 1674 | 0, DTU, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Ping Cheng | c8f2edc | 2010-06-28 01:10:51 -0700 | [diff] [blame] | 1675 | static const struct wacom_features wacom_features_0xF0 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1676 | { "Wacom DTU1631", WACOM_PKGLEN_GRAPHIRE, 34623, 19553, 511, |
| 1677 | 0, DTU, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Ping Cheng | 3a4b4aa | 2010-06-03 22:10:21 -0700 | [diff] [blame] | 1678 | static const struct wacom_features wacom_features_0xCC = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1679 | { "Wacom Cintiq 21UX2", WACOM_PKGLEN_INTUOS, 87200, 65600, 2047, |
| 1680 | 63, WACOM_21UX2, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1681 | static const struct wacom_features wacom_features_0x90 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1682 | { "Wacom ISDv4 90", WACOM_PKGLEN_GRAPHIRE, 26202, 16325, 255, |
| 1683 | 0, TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1684 | static const struct wacom_features wacom_features_0x93 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1685 | { "Wacom ISDv4 93", WACOM_PKGLEN_GRAPHIRE, 26202, 16325, 255, |
| 1686 | 0, TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Ping Cheng | 11d0cf8 | 2011-06-27 12:57:58 -0700 | [diff] [blame] | 1687 | static const struct wacom_features wacom_features_0x97 = |
| 1688 | { "Wacom ISDv4 97", WACOM_PKGLEN_GRAPHIRE, 26202, 16325, 511, |
| 1689 | 0, TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1690 | static const struct wacom_features wacom_features_0x9A = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1691 | { "Wacom ISDv4 9A", WACOM_PKGLEN_GRAPHIRE, 26202, 16325, 255, |
| 1692 | 0, TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1693 | static const struct wacom_features wacom_features_0x9F = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1694 | { "Wacom ISDv4 9F", WACOM_PKGLEN_GRAPHIRE, 26202, 16325, 255, |
| 1695 | 0, TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1696 | static const struct wacom_features wacom_features_0xE2 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1697 | { "Wacom ISDv4 E2", WACOM_PKGLEN_TPC2FG, 26202, 16325, 255, |
| 1698 | 0, TABLETPC2FG, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1699 | static const struct wacom_features wacom_features_0xE3 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1700 | { "Wacom ISDv4 E3", WACOM_PKGLEN_TPC2FG, 26202, 16325, 255, |
| 1701 | 0, TABLETPC2FG, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Manoj Iyer | 26fcd2a | 2011-03-31 22:39:43 -0700 | [diff] [blame] | 1702 | static const struct wacom_features wacom_features_0xE6 = |
| 1703 | { "Wacom ISDv4 E6", WACOM_PKGLEN_TPC2FG, 27760, 15694, 255, |
| 1704 | 0, TABLETPC2FG, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Chris Bagwell | 0d0e306 | 2011-12-11 23:50:59 -0800 | [diff] [blame] | 1705 | static const struct wacom_features wacom_features_0xEC = |
| 1706 | { "Wacom ISDv4 EC", WACOM_PKGLEN_GRAPHIRE, 25710, 14500, 255, |
| 1707 | 0, TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Dmitry Torokhov | e87a344 | 2010-02-18 01:51:47 -0800 | [diff] [blame] | 1708 | static const struct wacom_features wacom_features_0x47 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1709 | { "Wacom Intuos2 6x8", WACOM_PKGLEN_INTUOS, 20320, 16240, 1023, |
| 1710 | 31, INTUOS, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Chris Bagwell | d3825d5 | 2012-03-25 23:26:11 -0700 | [diff] [blame] | 1711 | static const struct wacom_features wacom_features_0x84 = |
| 1712 | { "Wacom Wireless Receiver", WACOM_PKGLEN_WIRELESS, 0, 0, 0, |
| 1713 | 0, WIRELESS, 0, 0 }; |
Ping Cheng | 7b824bb | 2011-03-26 21:16:04 -0700 | [diff] [blame] | 1714 | static const struct wacom_features wacom_features_0xD0 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1715 | { "Wacom Bamboo 2FG", WACOM_PKGLEN_BBFUN, 14720, 9200, 1023, |
Chris Bagwell | c18c2ce | 2011-10-10 08:52:13 -0700 | [diff] [blame] | 1716 | 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Ping Cheng | 7b824bb | 2011-03-26 21:16:04 -0700 | [diff] [blame] | 1717 | static const struct wacom_features wacom_features_0xD1 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1718 | { "Wacom Bamboo 2FG 4x5", WACOM_PKGLEN_BBFUN, 14720, 9200, 1023, |
Chris Bagwell | c18c2ce | 2011-10-10 08:52:13 -0700 | [diff] [blame] | 1719 | 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Ping Cheng | 7b824bb | 2011-03-26 21:16:04 -0700 | [diff] [blame] | 1720 | static const struct wacom_features wacom_features_0xD2 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1721 | { "Wacom Bamboo Craft", WACOM_PKGLEN_BBFUN, 14720, 9200, 1023, |
Chris Bagwell | c18c2ce | 2011-10-10 08:52:13 -0700 | [diff] [blame] | 1722 | 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Ping Cheng | 7b824bb | 2011-03-26 21:16:04 -0700 | [diff] [blame] | 1723 | static const struct wacom_features wacom_features_0xD3 = |
Chris Bagwell | ae92756 | 2011-10-10 08:52:32 -0700 | [diff] [blame] | 1724 | { "Wacom Bamboo 2FG 6x8", WACOM_PKGLEN_BBFUN, 21648, 13700, 1023, |
Chris Bagwell | c18c2ce | 2011-10-10 08:52:13 -0700 | [diff] [blame] | 1725 | 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Kevin Granade | 57a7872 | 2010-12-10 23:04:02 -0800 | [diff] [blame] | 1726 | static const struct wacom_features wacom_features_0xD4 = |
Ping Cheng | a001a8f | 2011-06-27 12:57:58 -0700 | [diff] [blame] | 1727 | { "Wacom Bamboo Pen", WACOM_PKGLEN_BBFUN, 14720, 9200, 1023, |
Chris Bagwell | c18c2ce | 2011-10-10 08:52:13 -0700 | [diff] [blame] | 1728 | 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Gerard Braad | 18adad1 | 2011-08-16 00:17:56 -0700 | [diff] [blame] | 1729 | static const struct wacom_features wacom_features_0xD5 = |
Chris Bagwell | ae92756 | 2011-10-10 08:52:32 -0700 | [diff] [blame] | 1730 | { "Wacom Bamboo Pen 6x8", WACOM_PKGLEN_BBFUN, 21648, 13700, 1023, |
Chris Bagwell | c18c2ce | 2011-10-10 08:52:13 -0700 | [diff] [blame] | 1731 | 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Ping Cheng | 7b824bb | 2011-03-26 21:16:04 -0700 | [diff] [blame] | 1732 | static const struct wacom_features wacom_features_0xD6 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1733 | { "Wacom BambooPT 2FG 4x5", WACOM_PKGLEN_BBFUN, 14720, 9200, 1023, |
Chris Bagwell | c18c2ce | 2011-10-10 08:52:13 -0700 | [diff] [blame] | 1734 | 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Ping Cheng | 7b824bb | 2011-03-26 21:16:04 -0700 | [diff] [blame] | 1735 | static const struct wacom_features wacom_features_0xD7 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1736 | { "Wacom BambooPT 2FG Small", WACOM_PKGLEN_BBFUN, 14720, 9200, 1023, |
Chris Bagwell | c18c2ce | 2011-10-10 08:52:13 -0700 | [diff] [blame] | 1737 | 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Ping Cheng | 7b824bb | 2011-03-26 21:16:04 -0700 | [diff] [blame] | 1738 | static const struct wacom_features wacom_features_0xD8 = |
Chris Bagwell | ae92756 | 2011-10-10 08:52:32 -0700 | [diff] [blame] | 1739 | { "Wacom Bamboo Comic 2FG", WACOM_PKGLEN_BBFUN, 21648, 13700, 1023, |
Chris Bagwell | c18c2ce | 2011-10-10 08:52:13 -0700 | [diff] [blame] | 1740 | 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Ping Cheng | 7b824bb | 2011-03-26 21:16:04 -0700 | [diff] [blame] | 1741 | static const struct wacom_features wacom_features_0xDA = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1742 | { "Wacom Bamboo 2FG 4x5 SE", WACOM_PKGLEN_BBFUN, 14720, 9200, 1023, |
Chris Bagwell | c18c2ce | 2011-10-10 08:52:13 -0700 | [diff] [blame] | 1743 | 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
David Foley | 47d0923 | 2010-12-07 21:05:59 -0800 | [diff] [blame] | 1744 | static struct wacom_features wacom_features_0xDB = |
Chris Bagwell | ae92756 | 2011-10-10 08:52:32 -0700 | [diff] [blame] | 1745 | { "Wacom Bamboo 2FG 6x8 SE", WACOM_PKGLEN_BBFUN, 21648, 13700, 1023, |
Chris Bagwell | c18c2ce | 2011-10-10 08:52:13 -0700 | [diff] [blame] | 1746 | 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Chris Bagwell | 73149ab | 2011-10-26 22:34:21 -0700 | [diff] [blame] | 1747 | static const struct wacom_features wacom_features_0xDD = |
| 1748 | { "Wacom Bamboo Connect", WACOM_PKGLEN_BBPEN, 14720, 9200, 1023, |
| 1749 | 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
| 1750 | static const struct wacom_features wacom_features_0xDE = |
| 1751 | { "Wacom Bamboo 16FG 4x5", WACOM_PKGLEN_BBPEN, 14720, 9200, 1023, |
| 1752 | 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
| 1753 | static const struct wacom_features wacom_features_0xDF = |
| 1754 | { "Wacom Bamboo 16FG 6x8", WACOM_PKGLEN_BBPEN, 21648, 13700, 1023, |
| 1755 | 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Ajay Ramaswamy | 7b4b306 | 2010-12-23 01:19:39 -0800 | [diff] [blame] | 1756 | static const struct wacom_features wacom_features_0x6004 = |
Ping Cheng | e35fb8c | 2011-03-26 21:16:05 -0700 | [diff] [blame] | 1757 | { "ISD-V4", WACOM_PKGLEN_GRAPHIRE, 12800, 8000, 255, |
| 1758 | 0, TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 1759 | |
| 1760 | #define USB_DEVICE_WACOM(prod) \ |
| 1761 | USB_DEVICE(USB_VENDOR_ID_WACOM, prod), \ |
| 1762 | .driver_info = (kernel_ulong_t)&wacom_features_##prod |
| 1763 | |
Aristeu Rozanski | 1483f55 | 2011-06-22 01:17:17 -0700 | [diff] [blame] | 1764 | #define USB_DEVICE_DETAILED(prod, class, sub, proto) \ |
| 1765 | USB_DEVICE_AND_INTERFACE_INFO(USB_VENDOR_ID_WACOM, prod, class, \ |
| 1766 | sub, proto), \ |
| 1767 | .driver_info = (kernel_ulong_t)&wacom_features_##prod |
| 1768 | |
Ajay Ramaswamy | 7b4b306 | 2010-12-23 01:19:39 -0800 | [diff] [blame] | 1769 | #define USB_DEVICE_LENOVO(prod) \ |
| 1770 | USB_DEVICE(USB_VENDOR_ID_LENOVO, prod), \ |
| 1771 | .driver_info = (kernel_ulong_t)&wacom_features_##prod |
| 1772 | |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 1773 | const struct usb_device_id wacom_ids[] = { |
| 1774 | { USB_DEVICE_WACOM(0x00) }, |
| 1775 | { USB_DEVICE_WACOM(0x10) }, |
| 1776 | { USB_DEVICE_WACOM(0x11) }, |
| 1777 | { USB_DEVICE_WACOM(0x12) }, |
| 1778 | { USB_DEVICE_WACOM(0x13) }, |
| 1779 | { USB_DEVICE_WACOM(0x14) }, |
| 1780 | { USB_DEVICE_WACOM(0x15) }, |
| 1781 | { USB_DEVICE_WACOM(0x16) }, |
| 1782 | { USB_DEVICE_WACOM(0x17) }, |
| 1783 | { USB_DEVICE_WACOM(0x18) }, |
| 1784 | { USB_DEVICE_WACOM(0x19) }, |
| 1785 | { USB_DEVICE_WACOM(0x60) }, |
| 1786 | { USB_DEVICE_WACOM(0x61) }, |
| 1787 | { USB_DEVICE_WACOM(0x62) }, |
| 1788 | { USB_DEVICE_WACOM(0x63) }, |
| 1789 | { USB_DEVICE_WACOM(0x64) }, |
| 1790 | { USB_DEVICE_WACOM(0x65) }, |
| 1791 | { USB_DEVICE_WACOM(0x69) }, |
Ping Cheng | 11d0cf8 | 2011-06-27 12:57:58 -0700 | [diff] [blame] | 1792 | { USB_DEVICE_WACOM(0x6A) }, |
| 1793 | { USB_DEVICE_WACOM(0x6B) }, |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 1794 | { USB_DEVICE_WACOM(0x20) }, |
| 1795 | { USB_DEVICE_WACOM(0x21) }, |
| 1796 | { USB_DEVICE_WACOM(0x22) }, |
| 1797 | { USB_DEVICE_WACOM(0x23) }, |
| 1798 | { USB_DEVICE_WACOM(0x24) }, |
| 1799 | { USB_DEVICE_WACOM(0x30) }, |
| 1800 | { USB_DEVICE_WACOM(0x31) }, |
| 1801 | { USB_DEVICE_WACOM(0x32) }, |
| 1802 | { USB_DEVICE_WACOM(0x33) }, |
| 1803 | { USB_DEVICE_WACOM(0x34) }, |
| 1804 | { USB_DEVICE_WACOM(0x35) }, |
| 1805 | { USB_DEVICE_WACOM(0x37) }, |
| 1806 | { USB_DEVICE_WACOM(0x38) }, |
| 1807 | { USB_DEVICE_WACOM(0x39) }, |
| 1808 | { USB_DEVICE_WACOM(0xC4) }, |
| 1809 | { USB_DEVICE_WACOM(0xC0) }, |
| 1810 | { USB_DEVICE_WACOM(0xC2) }, |
| 1811 | { USB_DEVICE_WACOM(0x03) }, |
| 1812 | { USB_DEVICE_WACOM(0x41) }, |
| 1813 | { USB_DEVICE_WACOM(0x42) }, |
| 1814 | { USB_DEVICE_WACOM(0x43) }, |
| 1815 | { USB_DEVICE_WACOM(0x44) }, |
| 1816 | { USB_DEVICE_WACOM(0x45) }, |
| 1817 | { USB_DEVICE_WACOM(0xB0) }, |
| 1818 | { USB_DEVICE_WACOM(0xB1) }, |
| 1819 | { USB_DEVICE_WACOM(0xB2) }, |
| 1820 | { USB_DEVICE_WACOM(0xB3) }, |
| 1821 | { USB_DEVICE_WACOM(0xB4) }, |
| 1822 | { USB_DEVICE_WACOM(0xB5) }, |
| 1823 | { USB_DEVICE_WACOM(0xB7) }, |
| 1824 | { USB_DEVICE_WACOM(0xB8) }, |
| 1825 | { USB_DEVICE_WACOM(0xB9) }, |
| 1826 | { USB_DEVICE_WACOM(0xBA) }, |
| 1827 | { USB_DEVICE_WACOM(0xBB) }, |
Ping Cheng | 3a4b4aa | 2010-06-03 22:10:21 -0700 | [diff] [blame] | 1828 | { USB_DEVICE_WACOM(0xBC) }, |
Jason Gerecke | 9fee619 | 2012-04-03 15:47:22 -0700 | [diff] [blame^] | 1829 | { USB_DEVICE_WACOM(0x26) }, |
| 1830 | { USB_DEVICE_WACOM(0x27) }, |
| 1831 | { USB_DEVICE_WACOM(0x28) }, |
| 1832 | { USB_DEVICE_WACOM(0x29) }, |
| 1833 | { USB_DEVICE_WACOM(0x2A) }, |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 1834 | { USB_DEVICE_WACOM(0x3F) }, |
| 1835 | { USB_DEVICE_WACOM(0xC5) }, |
| 1836 | { USB_DEVICE_WACOM(0xC6) }, |
| 1837 | { USB_DEVICE_WACOM(0xC7) }, |
Aristeu Rozanski | 1483f55 | 2011-06-22 01:17:17 -0700 | [diff] [blame] | 1838 | /* |
| 1839 | * DTU-2231 has two interfaces on the same configuration, |
| 1840 | * only one is used. |
| 1841 | */ |
| 1842 | { USB_DEVICE_DETAILED(0xCE, USB_CLASS_HID, |
| 1843 | USB_INTERFACE_SUBCLASS_BOOT, |
| 1844 | USB_INTERFACE_PROTOCOL_MOUSE) }, |
Chris Bagwell | d3825d5 | 2012-03-25 23:26:11 -0700 | [diff] [blame] | 1845 | { USB_DEVICE_WACOM(0x84) }, |
Henrik Rydberg | cb734c0 | 2010-09-05 12:53:16 -0700 | [diff] [blame] | 1846 | { USB_DEVICE_WACOM(0xD0) }, |
Chris Bagwell | 2aaacb1 | 2010-09-12 00:11:35 -0700 | [diff] [blame] | 1847 | { USB_DEVICE_WACOM(0xD1) }, |
| 1848 | { USB_DEVICE_WACOM(0xD2) }, |
| 1849 | { USB_DEVICE_WACOM(0xD3) }, |
Kevin Granade | 57a7872 | 2010-12-10 23:04:02 -0800 | [diff] [blame] | 1850 | { USB_DEVICE_WACOM(0xD4) }, |
Gerard Braad | 18adad1 | 2011-08-16 00:17:56 -0700 | [diff] [blame] | 1851 | { USB_DEVICE_WACOM(0xD5) }, |
Ping Cheng | d38acb4 | 2011-01-24 09:32:50 -0800 | [diff] [blame] | 1852 | { USB_DEVICE_WACOM(0xD6) }, |
| 1853 | { USB_DEVICE_WACOM(0xD7) }, |
David Foley | a318e6b | 2010-11-30 23:45:46 -0800 | [diff] [blame] | 1854 | { USB_DEVICE_WACOM(0xD8) }, |
| 1855 | { USB_DEVICE_WACOM(0xDA) }, |
David Foley | 47d0923 | 2010-12-07 21:05:59 -0800 | [diff] [blame] | 1856 | { USB_DEVICE_WACOM(0xDB) }, |
Chris Bagwell | 73149ab | 2011-10-26 22:34:21 -0700 | [diff] [blame] | 1857 | { USB_DEVICE_WACOM(0xDD) }, |
| 1858 | { USB_DEVICE_WACOM(0xDE) }, |
| 1859 | { USB_DEVICE_WACOM(0xDF) }, |
Ping Cheng | c8f2edc | 2010-06-28 01:10:51 -0700 | [diff] [blame] | 1860 | { USB_DEVICE_WACOM(0xF0) }, |
Ping Cheng | 3a4b4aa | 2010-06-03 22:10:21 -0700 | [diff] [blame] | 1861 | { USB_DEVICE_WACOM(0xCC) }, |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 1862 | { USB_DEVICE_WACOM(0x90) }, |
| 1863 | { USB_DEVICE_WACOM(0x93) }, |
Ping Cheng | 11d0cf8 | 2011-06-27 12:57:58 -0700 | [diff] [blame] | 1864 | { USB_DEVICE_WACOM(0x97) }, |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 1865 | { USB_DEVICE_WACOM(0x9A) }, |
| 1866 | { USB_DEVICE_WACOM(0x9F) }, |
| 1867 | { USB_DEVICE_WACOM(0xE2) }, |
| 1868 | { USB_DEVICE_WACOM(0xE3) }, |
Manoj Iyer | 26fcd2a | 2011-03-31 22:39:43 -0700 | [diff] [blame] | 1869 | { USB_DEVICE_WACOM(0xE6) }, |
Chris Bagwell | 0d0e306 | 2011-12-11 23:50:59 -0800 | [diff] [blame] | 1870 | { USB_DEVICE_WACOM(0xEC) }, |
Bastian Blank | b036f6f | 2010-02-10 23:06:23 -0800 | [diff] [blame] | 1871 | { USB_DEVICE_WACOM(0x47) }, |
Jason Gerecke | 803296b | 2011-12-12 00:11:45 -0800 | [diff] [blame] | 1872 | { USB_DEVICE_WACOM(0xF4) }, |
Ajay Ramaswamy | 7b4b306 | 2010-12-23 01:19:39 -0800 | [diff] [blame] | 1873 | { USB_DEVICE_LENOVO(0x6004) }, |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 1874 | { } |
| 1875 | }; |
Ping Cheng | 3bea733 | 2006-07-13 18:01:36 -0700 | [diff] [blame] | 1876 | MODULE_DEVICE_TABLE(usb, wacom_ids); |