blob: 3a7f3a4a439635064a4e8ca78e1e7860b9072a47 [file] [log] [blame]
Jeremy Robersona19ceb52007-01-18 08:10:25 -07001/* -*- linux-c -*-
2
3GTCO digitizer USB driver
4
Jeremy Robersona19ceb52007-01-18 08:10:25 -07005TO CHECK: Is pressure done right on report 5?
6
7Copyright (C) 2006 GTCO CalComp
8
9This program is free software; you can redistribute it and/or
10modify it under the terms of the GNU General Public License
11as published by the Free Software Foundation; version 2
12of the License.
13
14This program is distributed in the hope that it will be useful,
15but WITHOUT ANY WARRANTY; without even the implied warranty of
16MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17GNU General Public License for more details.
18
19You should have received a copy of the GNU General Public License
20along with this program; if not, write to the Free Software
21Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22
23Permission to use, copy, modify, distribute, and sell this software and its
24documentation for any purpose is hereby granted without fee, provided that
25the above copyright notice appear in all copies and that both that
26copyright notice and this permission notice appear in supporting
27documentation, and that the name of GTCO-CalComp not be used in advertising
28or publicity pertaining to distribution of the software without specific,
29written prior permission. GTCO-CalComp makes no representations about the
30suitability of this software for any purpose. It is provided "as is"
31without express or implied warranty.
32
33GTCO-CALCOMP DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
34INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
35EVENT SHALL GTCO-CALCOMP BE LIABLE FOR ANY SPECIAL, INDIRECT OR
36CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
37DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
38TORTIOUS ACTIONS, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
39PERFORMANCE OF THIS SOFTWARE.
40
41GTCO CalComp, Inc.
427125 Riverwood Drive
43Columbia, MD 21046
44
45Jeremy Roberson jroberson@gtcocalcomp.com
46Scott Hill shill@gtcocalcomp.com
47*/
48
49
50
51/*#define DEBUG*/
52
53#include <linux/kernel.h>
54#include <linux/module.h>
55#include <linux/errno.h>
Jeremy Robersona19ceb52007-01-18 08:10:25 -070056#include <linux/slab.h>
57#include <linux/input.h>
58#include <linux/usb.h>
59#include <asm/uaccess.h>
60#include <asm/unaligned.h>
61#include <asm/byteorder.h>
Martin Kepplinger8d212822015-01-23 16:40:53 -080062#include <linux/bitops.h>
Jeremy Robersona19ceb52007-01-18 08:10:25 -070063
Jeremy Robersona19ceb52007-01-18 08:10:25 -070064#include <linux/usb/input.h>
65
66/* Version with a Major number of 2 is for kernel inclusion only. */
67#define GTCO_VERSION "2.00.0006"
68
69
70/* MACROS */
71
72#define VENDOR_ID_GTCO 0x078C
73#define PID_400 0x400
74#define PID_401 0x401
75#define PID_1000 0x1000
76#define PID_1001 0x1001
77#define PID_1002 0x1002
78
79/* Max size of a single report */
80#define REPORT_MAX_SIZE 10
81
82
83/* Bitmask whether pen is in range */
84#define MASK_INRANGE 0x20
85#define MASK_BUTTON 0x01F
86
87#define PATHLENGTH 64
88
89/* DATA STRUCTURES */
90
91/* Device table */
Márton Németh9cb3ce52010-01-10 23:59:05 -080092static const struct usb_device_id gtco_usbid_table[] = {
Jeremy Robersona19ceb52007-01-18 08:10:25 -070093 { USB_DEVICE(VENDOR_ID_GTCO, PID_400) },
94 { USB_DEVICE(VENDOR_ID_GTCO, PID_401) },
95 { USB_DEVICE(VENDOR_ID_GTCO, PID_1000) },
96 { USB_DEVICE(VENDOR_ID_GTCO, PID_1001) },
97 { USB_DEVICE(VENDOR_ID_GTCO, PID_1002) },
98 { }
99};
100MODULE_DEVICE_TABLE (usb, gtco_usbid_table);
101
102
103/* Structure to hold all of our device specific stuff */
104struct gtco {
105
106 struct input_dev *inputdevice; /* input device struct pointer */
107 struct usb_device *usbdev; /* the usb device for this device */
Greg Kroah-Hartman27c25972012-05-04 15:33:09 -0700108 struct usb_interface *intf; /* the usb interface for this device */
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700109 struct urb *urbinfo; /* urb for incoming reports */
110 dma_addr_t buf_dma; /* dma addr of the data buffer*/
111 unsigned char * buffer; /* databuffer for reports */
112
113 char usbpath[PATHLENGTH];
114 int openCount;
115
116 /* Information pulled from Report Descriptor */
117 u32 usage;
118 u32 min_X;
119 u32 max_X;
120 u32 min_Y;
121 u32 max_Y;
122 s8 mintilt_X;
123 s8 maxtilt_X;
124 s8 mintilt_Y;
125 s8 maxtilt_Y;
126 u32 maxpressure;
127 u32 minpressure;
128};
129
130
131
132/* Code for parsing the HID REPORT DESCRIPTOR */
133
134/* From HID1.11 spec */
135struct hid_descriptor
136{
137 struct usb_descriptor_header header;
138 __le16 bcdHID;
139 u8 bCountryCode;
140 u8 bNumDescriptors;
141 u8 bDescriptorType;
142 __le16 wDescriptorLength;
143} __attribute__ ((packed));
144
145
146#define HID_DESCRIPTOR_SIZE 9
147#define HID_DEVICE_TYPE 33
148#define REPORT_DEVICE_TYPE 34
149
150
151#define PREF_TAG(x) ((x)>>4)
152#define PREF_TYPE(x) ((x>>2)&0x03)
153#define PREF_SIZE(x) ((x)&0x03)
154
155#define TYPE_MAIN 0
156#define TYPE_GLOBAL 1
157#define TYPE_LOCAL 2
158#define TYPE_RESERVED 3
159
160#define TAG_MAIN_INPUT 0x8
161#define TAG_MAIN_OUTPUT 0x9
162#define TAG_MAIN_FEATURE 0xB
163#define TAG_MAIN_COL_START 0xA
164#define TAG_MAIN_COL_END 0xC
165
166#define TAG_GLOB_USAGE 0
167#define TAG_GLOB_LOG_MIN 1
168#define TAG_GLOB_LOG_MAX 2
169#define TAG_GLOB_PHYS_MIN 3
170#define TAG_GLOB_PHYS_MAX 4
171#define TAG_GLOB_UNIT_EXP 5
172#define TAG_GLOB_UNIT 6
173#define TAG_GLOB_REPORT_SZ 7
174#define TAG_GLOB_REPORT_ID 8
175#define TAG_GLOB_REPORT_CNT 9
176#define TAG_GLOB_PUSH 10
177#define TAG_GLOB_POP 11
178
179#define TAG_GLOB_MAX 12
180
181#define DIGITIZER_USAGE_TIP_PRESSURE 0x30
182#define DIGITIZER_USAGE_TILT_X 0x3D
183#define DIGITIZER_USAGE_TILT_Y 0x3E
184
185
186/*
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700187 * This is an abbreviated parser for the HID Report Descriptor. We
188 * know what devices we are talking to, so this is by no means meant
189 * to be generic. We can make some safe assumptions:
190 *
191 * - We know there are no LONG tags, all short
192 * - We know that we have no MAIN Feature and MAIN Output items
193 * - We know what the IRQ reports are supposed to look like.
194 *
195 * The main purpose of this is to use the HID report desc to figure
196 * out the mins and maxs of the fields in the IRQ reports. The IRQ
197 * reports for 400/401 change slightly if the max X is bigger than 64K.
198 *
199 */
200static void parse_hid_report_descriptor(struct gtco *device, char * report,
201 int length)
202{
Greg Kroah-Hartman27c25972012-05-04 15:33:09 -0700203 struct device *ddev = &device->intf->dev;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400204 int x, i = 0;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700205
206 /* Tag primitive vars */
207 __u8 prefix;
208 __u8 size;
209 __u8 tag;
210 __u8 type;
211 __u8 data = 0;
212 __u16 data16 = 0;
213 __u32 data32 = 0;
214
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700215 /* For parsing logic */
216 int inputnum = 0;
217 __u32 usage = 0;
218
219 /* Global Values, indexed by TAG */
220 __u32 globalval[TAG_GLOB_MAX];
221 __u32 oldval[TAG_GLOB_MAX];
222
223 /* Debug stuff */
Dmitry Torokhovbc95f362007-05-01 00:24:54 -0400224 char maintype = 'x';
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700225 char globtype[12];
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400226 int indent = 0;
227 char indentstr[10] = "";
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700228
229
Greg Kroah-Hartmanc6f880a2012-05-01 21:33:16 -0700230 dev_dbg(ddev, "======>>>>>>PARSE<<<<<<======\n");
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700231
232 /* Walk this report and pull out the info we need */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400233 while (i < length) {
234 prefix = report[i];
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700235
236 /* Skip over prefix */
237 i++;
238
239 /* Determine data size and save the data in the proper variable */
240 size = PREF_SIZE(prefix);
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400241 switch (size) {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700242 case 1:
243 data = report[i];
244 break;
245 case 2:
Harvey Harrison858ad082008-04-29 01:03:34 -0700246 data16 = get_unaligned_le16(&report[i]);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700247 break;
248 case 3:
249 size = 4;
Harvey Harrison858ad082008-04-29 01:03:34 -0700250 data32 = get_unaligned_le32(&report[i]);
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400251 break;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700252 }
253
254 /* Skip size of data */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400255 i += size;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700256
257 /* What we do depends on the tag type */
258 tag = PREF_TAG(prefix);
259 type = PREF_TYPE(prefix);
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400260 switch (type) {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700261 case TYPE_MAIN:
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400262 strcpy(globtype, "");
263 switch (tag) {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700264
265 case TAG_MAIN_INPUT:
266 /*
267 * The INPUT MAIN tag signifies this is
268 * information from a report. We need to
269 * figure out what it is and store the
270 * min/max values
271 */
272
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400273 maintype = 'I';
274 if (data == 2)
275 strcpy(globtype, "Variable");
276 else if (data == 3)
277 strcpy(globtype, "Var|Const");
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700278
Greg Kroah-Hartmanc6f880a2012-05-01 21:33:16 -0700279 dev_dbg(ddev, "::::: Saving Report: %d input #%d Max: 0x%X(%d) Min:0x%X(%d) of %d bits\n",
280 globalval[TAG_GLOB_REPORT_ID], inputnum,
281 globalval[TAG_GLOB_LOG_MAX], globalval[TAG_GLOB_LOG_MAX],
282 globalval[TAG_GLOB_LOG_MIN], globalval[TAG_GLOB_LOG_MIN],
283 globalval[TAG_GLOB_REPORT_SZ] * globalval[TAG_GLOB_REPORT_CNT]);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700284
285
286 /*
287 We can assume that the first two input items
288 are always the X and Y coordinates. After
289 that, we look for everything else by
290 local usage value
291 */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400292 switch (inputnum) {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700293 case 0: /* X coord */
Greg Kroah-Hartmanc6f880a2012-05-01 21:33:16 -0700294 dev_dbg(ddev, "GER: X Usage: 0x%x\n", usage);
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400295 if (device->max_X == 0) {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700296 device->max_X = globalval[TAG_GLOB_LOG_MAX];
297 device->min_X = globalval[TAG_GLOB_LOG_MIN];
298 }
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700299 break;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400300
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700301 case 1: /* Y coord */
Greg Kroah-Hartmanc6f880a2012-05-01 21:33:16 -0700302 dev_dbg(ddev, "GER: Y Usage: 0x%x\n", usage);
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400303 if (device->max_Y == 0) {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700304 device->max_Y = globalval[TAG_GLOB_LOG_MAX];
305 device->min_Y = globalval[TAG_GLOB_LOG_MIN];
306 }
307 break;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400308
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700309 default:
310 /* Tilt X */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400311 if (usage == DIGITIZER_USAGE_TILT_X) {
312 if (device->maxtilt_X == 0) {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700313 device->maxtilt_X = globalval[TAG_GLOB_LOG_MAX];
314 device->mintilt_X = globalval[TAG_GLOB_LOG_MIN];
315 }
316 }
317
318 /* Tilt Y */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400319 if (usage == DIGITIZER_USAGE_TILT_Y) {
320 if (device->maxtilt_Y == 0) {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700321 device->maxtilt_Y = globalval[TAG_GLOB_LOG_MAX];
322 device->mintilt_Y = globalval[TAG_GLOB_LOG_MIN];
323 }
324 }
325
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700326 /* Pressure */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400327 if (usage == DIGITIZER_USAGE_TIP_PRESSURE) {
328 if (device->maxpressure == 0) {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700329 device->maxpressure = globalval[TAG_GLOB_LOG_MAX];
330 device->minpressure = globalval[TAG_GLOB_LOG_MIN];
331 }
332 }
333
334 break;
335 }
336
337 inputnum++;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700338 break;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400339
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700340 case TAG_MAIN_OUTPUT:
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400341 maintype = 'O';
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700342 break;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700343
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400344 case TAG_MAIN_FEATURE:
345 maintype = 'F';
346 break;
347
348 case TAG_MAIN_COL_START:
349 maintype = 'S';
350
351 if (data == 0) {
Greg Kroah-Hartmanc6f880a2012-05-01 21:33:16 -0700352 dev_dbg(ddev, "======>>>>>> Physical\n");
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400353 strcpy(globtype, "Physical");
354 } else
Greg Kroah-Hartmanc6f880a2012-05-01 21:33:16 -0700355 dev_dbg(ddev, "======>>>>>>\n");
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700356
357 /* Indent the debug output */
358 indent++;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400359 for (x = 0; x < indent; x++)
360 indentstr[x] = '-';
361 indentstr[x] = 0;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700362
363 /* Save global tags */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400364 for (x = 0; x < TAG_GLOB_MAX; x++)
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700365 oldval[x] = globalval[x];
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700366
367 break;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400368
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700369 case TAG_MAIN_COL_END:
Greg Kroah-Hartmanc6f880a2012-05-01 21:33:16 -0700370 dev_dbg(ddev, "<<<<<<======\n");
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400371 maintype = 'E';
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700372 indent--;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400373 for (x = 0; x < indent; x++)
374 indentstr[x] = '-';
375 indentstr[x] = 0;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700376
377 /* Copy global tags back */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400378 for (x = 0; x < TAG_GLOB_MAX; x++)
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700379 globalval[x] = oldval[x];
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700380
381 break;
382 }
383
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400384 switch (size) {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700385 case 1:
Greg Kroah-Hartmanc6f880a2012-05-01 21:33:16 -0700386 dev_dbg(ddev, "%sMAINTAG:(%d) %c SIZE: %d Data: %s 0x%x\n",
387 indentstr, tag, maintype, size, globtype, data);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700388 break;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400389
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700390 case 2:
Greg Kroah-Hartmanc6f880a2012-05-01 21:33:16 -0700391 dev_dbg(ddev, "%sMAINTAG:(%d) %c SIZE: %d Data: %s 0x%x\n",
392 indentstr, tag, maintype, size, globtype, data16);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700393 break;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400394
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700395 case 4:
Greg Kroah-Hartmanc6f880a2012-05-01 21:33:16 -0700396 dev_dbg(ddev, "%sMAINTAG:(%d) %c SIZE: %d Data: %s 0x%x\n",
397 indentstr, tag, maintype, size, globtype, data32);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700398 break;
399 }
400 break;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400401
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700402 case TYPE_GLOBAL:
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400403 switch (tag) {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700404 case TAG_GLOB_USAGE:
405 /*
406 * First time we hit the global usage tag,
407 * it should tell us the type of device
408 */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400409 if (device->usage == 0)
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700410 device->usage = data;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400411
412 strcpy(globtype, "USAGE");
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700413 break;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400414
415 case TAG_GLOB_LOG_MIN:
416 strcpy(globtype, "LOG_MIN");
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700417 break;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400418
419 case TAG_GLOB_LOG_MAX:
420 strcpy(globtype, "LOG_MAX");
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700421 break;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400422
423 case TAG_GLOB_PHYS_MIN:
424 strcpy(globtype, "PHYS_MIN");
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700425 break;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400426
427 case TAG_GLOB_PHYS_MAX:
428 strcpy(globtype, "PHYS_MAX");
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700429 break;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400430
431 case TAG_GLOB_UNIT_EXP:
432 strcpy(globtype, "EXP");
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700433 break;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400434
435 case TAG_GLOB_UNIT:
436 strcpy(globtype, "UNIT");
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700437 break;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400438
439 case TAG_GLOB_REPORT_SZ:
440 strcpy(globtype, "REPORT_SZ");
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700441 break;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400442
443 case TAG_GLOB_REPORT_ID:
444 strcpy(globtype, "REPORT_ID");
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700445 /* New report, restart numbering */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400446 inputnum = 0;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700447 break;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400448
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700449 case TAG_GLOB_REPORT_CNT:
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400450 strcpy(globtype, "REPORT_CNT");
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700451 break;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400452
453 case TAG_GLOB_PUSH:
454 strcpy(globtype, "PUSH");
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700455 break;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400456
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700457 case TAG_GLOB_POP:
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400458 strcpy(globtype, "POP");
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700459 break;
460 }
461
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700462 /* Check to make sure we have a good tag number
463 so we don't overflow array */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400464 if (tag < TAG_GLOB_MAX) {
465 switch (size) {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700466 case 1:
Greg Kroah-Hartmanc6f880a2012-05-01 21:33:16 -0700467 dev_dbg(ddev, "%sGLOBALTAG:%s(%d) SIZE: %d Data: 0x%x\n",
468 indentstr, globtype, tag, size, data);
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400469 globalval[tag] = data;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700470 break;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400471
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700472 case 2:
Greg Kroah-Hartmanc6f880a2012-05-01 21:33:16 -0700473 dev_dbg(ddev, "%sGLOBALTAG:%s(%d) SIZE: %d Data: 0x%x\n",
474 indentstr, globtype, tag, size, data16);
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400475 globalval[tag] = data16;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700476 break;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400477
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700478 case 4:
Greg Kroah-Hartmanc6f880a2012-05-01 21:33:16 -0700479 dev_dbg(ddev, "%sGLOBALTAG:%s(%d) SIZE: %d Data: 0x%x\n",
480 indentstr, globtype, tag, size, data32);
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400481 globalval[tag] = data32;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700482 break;
483 }
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400484 } else {
Greg Kroah-Hartmanc6f880a2012-05-01 21:33:16 -0700485 dev_dbg(ddev, "%sGLOBALTAG: ILLEGAL TAG:%d SIZE: %d\n",
486 indentstr, tag, size);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700487 }
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700488 break;
489
490 case TYPE_LOCAL:
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400491 switch (tag) {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700492 case TAG_GLOB_USAGE:
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400493 strcpy(globtype, "USAGE");
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700494 /* Always 1 byte */
495 usage = data;
496 break;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400497
498 case TAG_GLOB_LOG_MIN:
499 strcpy(globtype, "MIN");
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700500 break;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400501
502 case TAG_GLOB_LOG_MAX:
503 strcpy(globtype, "MAX");
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700504 break;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400505
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700506 default:
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400507 strcpy(globtype, "UNKNOWN");
508 break;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700509 }
510
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400511 switch (size) {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700512 case 1:
Greg Kroah-Hartmanc6f880a2012-05-01 21:33:16 -0700513 dev_dbg(ddev, "%sLOCALTAG:(%d) %s SIZE: %d Data: 0x%x\n",
514 indentstr, tag, globtype, size, data);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700515 break;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400516
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700517 case 2:
Greg Kroah-Hartmanc6f880a2012-05-01 21:33:16 -0700518 dev_dbg(ddev, "%sLOCALTAG:(%d) %s SIZE: %d Data: 0x%x\n",
519 indentstr, tag, globtype, size, data16);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700520 break;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400521
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700522 case 4:
Greg Kroah-Hartmanc6f880a2012-05-01 21:33:16 -0700523 dev_dbg(ddev, "%sLOCALTAG:(%d) %s SIZE: %d Data: 0x%x\n",
524 indentstr, tag, globtype, size, data32);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700525 break;
526 }
527
528 break;
529 }
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700530 }
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700531}
532
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700533/* INPUT DRIVER Routines */
534
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700535/*
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400536 * Called when opening the input device. This will submit the URB to
537 * the usb system so we start getting reports
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700538 */
539static int gtco_input_open(struct input_dev *inputdev)
540{
Dmitry Torokhov7791bda2007-04-12 01:34:39 -0400541 struct gtco *device = input_get_drvdata(inputdev);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700542
543 device->urbinfo->dev = device->usbdev;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400544 if (usb_submit_urb(device->urbinfo, GFP_KERNEL))
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700545 return -EIO;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400546
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700547 return 0;
548}
549
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400550/*
551 * Called when closing the input device. This will unlink the URB
552 */
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700553static void gtco_input_close(struct input_dev *inputdev)
554{
Dmitry Torokhov7791bda2007-04-12 01:34:39 -0400555 struct gtco *device = input_get_drvdata(inputdev);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700556
557 usb_kill_urb(device->urbinfo);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700558}
559
560
561/*
562 * Setup input device capabilities. Tell the input system what this
563 * device is capable of generating.
564 *
565 * This information is based on what is read from the HID report and
566 * placed in the struct gtco structure
567 *
568 */
Dmitry Torokhov7791bda2007-04-12 01:34:39 -0400569static void gtco_setup_caps(struct input_dev *inputdev)
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700570{
Dmitry Torokhov7791bda2007-04-12 01:34:39 -0400571 struct gtco *device = input_get_drvdata(inputdev);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700572
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700573 /* Which events */
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700574 inputdev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS) |
575 BIT_MASK(EV_MSC);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700576
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700577 /* Misc event menu block */
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700578 inputdev->mscbit[0] = BIT_MASK(MSC_SCAN) | BIT_MASK(MSC_SERIAL) |
579 BIT_MASK(MSC_RAW);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700580
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700581 /* Absolute values based on HID report info */
582 input_set_abs_params(inputdev, ABS_X, device->min_X, device->max_X,
583 0, 0);
584 input_set_abs_params(inputdev, ABS_Y, device->min_Y, device->max_Y,
585 0, 0);
586
587 /* Proximity */
588 input_set_abs_params(inputdev, ABS_DISTANCE, 0, 1, 0, 0);
589
590 /* Tilt & pressure */
591 input_set_abs_params(inputdev, ABS_TILT_X, device->mintilt_X,
592 device->maxtilt_X, 0, 0);
593 input_set_abs_params(inputdev, ABS_TILT_Y, device->mintilt_Y,
594 device->maxtilt_Y, 0, 0);
595 input_set_abs_params(inputdev, ABS_PRESSURE, device->minpressure,
596 device->maxpressure, 0, 0);
597
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700598 /* Transducer */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400599 input_set_abs_params(inputdev, ABS_MISC, 0, 0xFF, 0, 0);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700600}
601
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700602/* USB Routines */
603
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700604/*
605 * URB callback routine. Called when we get IRQ reports from the
606 * digitizer.
607 *
608 * This bridges the USB and input device worlds. It generates events
609 * on the input device based on the USB reports.
610 */
611static void gtco_urb_callback(struct urb *urbinfo)
612{
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400613 struct gtco *device = urbinfo->context;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700614 struct input_dev *inputdev;
615 int rc;
616 u32 val = 0;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700617 char le_buffer[2];
618
619 inputdev = device->inputdevice;
620
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700621 /* Was callback OK? */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400622 if (urbinfo->status == -ECONNRESET ||
623 urbinfo->status == -ENOENT ||
624 urbinfo->status == -ESHUTDOWN) {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700625
626 /* Shutdown is occurring. Return and don't queue up any more */
627 return;
628 }
629
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400630 if (urbinfo->status != 0) {
631 /*
632 * Some unknown error. Hopefully temporary. Just go and
633 * requeue an URB
634 */
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700635 goto resubmit;
636 }
637
638 /*
639 * Good URB, now process
640 */
641
642 /* PID dependent when we interpret the report */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400643 if (inputdev->id.product == PID_1000 ||
644 inputdev->id.product == PID_1001 ||
645 inputdev->id.product == PID_1002) {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700646
647 /*
648 * Switch on the report ID
649 * Conveniently, the reports have more information, the higher
650 * the report number. We can just fall through the case
651 * statements if we start with the highest number report
652 */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400653 switch (device->buffer[0]) {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700654 case 5:
655 /* Pressure is 9 bits */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400656 val = ((u16)(device->buffer[8]) << 1);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700657 val |= (u16)(device->buffer[7] >> 7);
658 input_report_abs(inputdev, ABS_PRESSURE,
659 device->buffer[8]);
660
661 /* Mask out the Y tilt value used for pressure */
662 device->buffer[7] = (u8)((device->buffer[7]) & 0x7F);
663
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700664 /* Fall thru */
665 case 4:
666 /* Tilt */
Martin Kepplinger8d212822015-01-23 16:40:53 -0800667 input_report_abs(inputdev, ABS_TILT_X,
668 sign_extend32(device->buffer[6], 6));
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700669
Martin Kepplinger8d212822015-01-23 16:40:53 -0800670 input_report_abs(inputdev, ABS_TILT_Y,
671 sign_extend32(device->buffer[7], 6));
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700672
673 /* Fall thru */
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700674 case 2:
675 case 3:
676 /* Convert buttons, only 5 bits possible */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400677 val = (device->buffer[5]) & MASK_BUTTON;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700678
679 /* We don't apply any meaning to the bitmask,
680 just report */
681 input_event(inputdev, EV_MSC, MSC_SERIAL, val);
682
683 /* Fall thru */
684 case 1:
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700685 /* All reports have X and Y coords in the same place */
Harvey Harrison858ad082008-04-29 01:03:34 -0700686 val = get_unaligned_le16(&device->buffer[1]);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700687 input_report_abs(inputdev, ABS_X, val);
688
Harvey Harrison858ad082008-04-29 01:03:34 -0700689 val = get_unaligned_le16(&device->buffer[3]);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700690 input_report_abs(inputdev, ABS_Y, val);
691
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700692 /* Ditto for proximity bit */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400693 val = device->buffer[5] & MASK_INRANGE ? 1 : 0;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700694 input_report_abs(inputdev, ABS_DISTANCE, val);
695
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700696 /* Report 1 is an exception to how we handle buttons */
697 /* Buttons are an index, not a bitmask */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400698 if (device->buffer[0] == 1) {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700699
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400700 /*
701 * Convert buttons, 5 bit index
702 * Report value of index set as one,
703 * the rest as 0
704 */
705 val = device->buffer[5] & MASK_BUTTON;
Greg Kroah-Hartman27c25972012-05-04 15:33:09 -0700706 dev_dbg(&device->intf->dev,
Greg Kroah-Hartmanc6f880a2012-05-01 21:33:16 -0700707 "======>>>>>>REPORT 1: val 0x%X(%d)\n",
708 val, val);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700709
710 /*
711 * We don't apply any meaning to the button
712 * index, just report it
713 */
714 input_event(inputdev, EV_MSC, MSC_SERIAL, val);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700715 }
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700716 break;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400717
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700718 case 7:
719 /* Menu blocks */
720 input_event(inputdev, EV_MSC, MSC_SCAN,
721 device->buffer[1]);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700722 break;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700723 }
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700724 }
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400725
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700726 /* Other pid class */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400727 if (inputdev->id.product == PID_400 ||
728 inputdev->id.product == PID_401) {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700729
730 /* Report 2 */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400731 if (device->buffer[0] == 2) {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700732 /* Menu blocks */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400733 input_event(inputdev, EV_MSC, MSC_SCAN, device->buffer[1]);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700734 }
735
736 /* Report 1 */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400737 if (device->buffer[0] == 1) {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700738 char buttonbyte;
739
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700740 /* IF X max > 64K, we still a bit from the y report */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400741 if (device->max_X > 0x10000) {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700742
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400743 val = (u16)(((u16)(device->buffer[2] << 8)) | (u8)device->buffer[1]);
744 val |= (u32)(((u8)device->buffer[3] & 0x1) << 16);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700745
746 input_report_abs(inputdev, ABS_X, val);
747
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400748 le_buffer[0] = (u8)((u8)(device->buffer[3]) >> 1);
749 le_buffer[0] |= (u8)((device->buffer[3] & 0x1) << 7);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700750
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400751 le_buffer[1] = (u8)(device->buffer[4] >> 1);
752 le_buffer[1] |= (u8)((device->buffer[5] & 0x1) << 7);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700753
Harvey Harrison858ad082008-04-29 01:03:34 -0700754 val = get_unaligned_le16(le_buffer);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700755 input_report_abs(inputdev, ABS_Y, val);
756
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700757 /*
758 * Shift the button byte right by one to
759 * make it look like the standard report
760 */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400761 buttonbyte = device->buffer[5] >> 1;
762 } else {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700763
Harvey Harrison858ad082008-04-29 01:03:34 -0700764 val = get_unaligned_le16(&device->buffer[1]);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700765 input_report_abs(inputdev, ABS_X, val);
766
Harvey Harrison858ad082008-04-29 01:03:34 -0700767 val = get_unaligned_le16(&device->buffer[3]);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700768 input_report_abs(inputdev, ABS_Y, val);
769
770 buttonbyte = device->buffer[5];
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700771 }
772
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700773 /* BUTTONS and PROXIMITY */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400774 val = buttonbyte & MASK_INRANGE ? 1 : 0;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700775 input_report_abs(inputdev, ABS_DISTANCE, val);
776
777 /* Convert buttons, only 4 bits possible */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400778 val = buttonbyte & 0x0F;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700779#ifdef USE_BUTTONS
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400780 for (i = 0; i < 5; i++)
781 input_report_key(inputdev, BTN_DIGI + i, val & (1 << i));
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700782#else
783 /* We don't apply any meaning to the bitmask, just report */
784 input_event(inputdev, EV_MSC, MSC_SERIAL, val);
785#endif
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400786
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700787 /* TRANSDUCER */
788 input_report_abs(inputdev, ABS_MISC, device->buffer[6]);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700789 }
790 }
791
792 /* Everybody gets report ID's */
793 input_event(inputdev, EV_MSC, MSC_RAW, device->buffer[0]);
794
795 /* Sync it up */
796 input_sync(inputdev);
797
798 resubmit:
799 rc = usb_submit_urb(urbinfo, GFP_ATOMIC);
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400800 if (rc != 0)
Greg Kroah-Hartman27c25972012-05-04 15:33:09 -0700801 dev_err(&device->intf->dev,
Greg Kroah-Hartman3bd95972012-04-25 14:48:39 -0700802 "usb_submit_urb failed rc=0x%x\n", rc);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700803}
804
805/*
806 * The probe routine. This is called when the kernel find the matching USB
807 * vendor/product. We do the following:
808 *
809 * - Allocate mem for a local structure to manage the device
810 * - Request a HID Report Descriptor from the device and parse it to
811 * find out the device parameters
812 * - Create an input device and assign it attributes
813 * - Allocate an URB so the device can talk to us when the input
814 * queue is open
815 */
816static int gtco_probe(struct usb_interface *usbinterface,
817 const struct usb_device_id *id)
818{
819
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400820 struct gtco *gtco;
821 struct input_dev *input_dev;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700822 struct hid_descriptor *hid_desc;
Dmitry Torokhov501a5252008-05-30 10:40:28 -0400823 char *report;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400824 int result = 0, retry;
825 int error;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700826 struct usb_endpoint_descriptor *endpoint;
827
828 /* Allocate memory for device structure */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400829 gtco = kzalloc(sizeof(struct gtco), GFP_KERNEL);
830 input_dev = input_allocate_device();
831 if (!gtco || !input_dev) {
Greg Kroah-Hartman3bd95972012-04-25 14:48:39 -0700832 dev_err(&usbinterface->dev, "No more memory\n");
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400833 error = -ENOMEM;
834 goto err_free_devs;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700835 }
836
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400837 /* Set pointer to the input device */
838 gtco->inputdevice = input_dev;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700839
840 /* Save interface information */
Alexey Khoroshilov1f906f82014-01-27 12:25:47 -0800841 gtco->usbdev = interface_to_usbdev(usbinterface);
Greg Kroah-Hartman27c25972012-05-04 15:33:09 -0700842 gtco->intf = usbinterface;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700843
844 /* Allocate some data for incoming reports */
Daniel Mack997ea582010-04-12 13:17:25 +0200845 gtco->buffer = usb_alloc_coherent(gtco->usbdev, REPORT_MAX_SIZE,
846 GFP_KERNEL, &gtco->buf_dma);
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400847 if (!gtco->buffer) {
Greg Kroah-Hartman3bd95972012-04-25 14:48:39 -0700848 dev_err(&usbinterface->dev, "No more memory for us buffers\n");
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400849 error = -ENOMEM;
850 goto err_free_devs;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700851 }
852
853 /* Allocate URB for reports */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400854 gtco->urbinfo = usb_alloc_urb(0, GFP_KERNEL);
855 if (!gtco->urbinfo) {
Greg Kroah-Hartman3bd95972012-04-25 14:48:39 -0700856 dev_err(&usbinterface->dev, "Failed to allocate URB\n");
Julia Lawallf4bc95d2008-07-03 12:10:58 -0400857 error = -ENOMEM;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400858 goto err_free_buf;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700859 }
860
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700861 /*
862 * The endpoint is always altsetting 0, we know this since we know
863 * this device only has one interrupt endpoint
864 */
865 endpoint = &usbinterface->altsetting[0].endpoint[0].desc;
866
867 /* Some debug */
Greg Kroah-Hartmanc6f880a2012-05-01 21:33:16 -0700868 dev_dbg(&usbinterface->dev, "gtco # interfaces: %d\n", usbinterface->num_altsetting);
869 dev_dbg(&usbinterface->dev, "num endpoints: %d\n", usbinterface->cur_altsetting->desc.bNumEndpoints);
870 dev_dbg(&usbinterface->dev, "interface class: %d\n", usbinterface->cur_altsetting->desc.bInterfaceClass);
871 dev_dbg(&usbinterface->dev, "endpoint: attribute:0x%x type:0x%x\n", endpoint->bmAttributes, endpoint->bDescriptorType);
Julia Lawalle941da32008-12-30 01:09:02 -0800872 if (usb_endpoint_xfer_int(endpoint))
Greg Kroah-Hartmanc6f880a2012-05-01 21:33:16 -0700873 dev_dbg(&usbinterface->dev, "endpoint: we have interrupt endpoint\n");
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700874
Greg Kroah-Hartmanc6f880a2012-05-01 21:33:16 -0700875 dev_dbg(&usbinterface->dev, "endpoint extra len:%d\n", usbinterface->altsetting[0].extralen);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700876
877 /*
878 * Find the HID descriptor so we can find out the size of the
879 * HID report descriptor
880 */
881 if (usb_get_extra_descriptor(usbinterface->cur_altsetting,
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400882 HID_DEVICE_TYPE, &hid_desc) != 0){
Greg Kroah-Hartman3bd95972012-04-25 14:48:39 -0700883 dev_err(&usbinterface->dev,
884 "Can't retrieve exta USB descriptor to get hid report descriptor length\n");
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400885 error = -EIO;
886 goto err_free_urb;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700887 }
888
Greg Kroah-Hartmanc6f880a2012-05-01 21:33:16 -0700889 dev_dbg(&usbinterface->dev,
890 "Extra descriptor success: type:%d len:%d\n",
891 hid_desc->bDescriptorType, hid_desc->wDescriptorLength);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700892
Al Viro6b8588f2008-04-28 07:00:26 +0100893 report = kzalloc(le16_to_cpu(hid_desc->wDescriptorLength), GFP_KERNEL);
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400894 if (!report) {
Greg Kroah-Hartman3bd95972012-04-25 14:48:39 -0700895 dev_err(&usbinterface->dev, "No more memory for report\n");
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400896 error = -ENOMEM;
897 goto err_free_urb;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700898 }
899
900 /* Couple of tries to get reply */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400901 for (retry = 0; retry < 3; retry++) {
902 result = usb_control_msg(gtco->usbdev,
903 usb_rcvctrlpipe(gtco->usbdev, 0),
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700904 USB_REQ_GET_DESCRIPTOR,
905 USB_RECIP_INTERFACE | USB_DIR_IN,
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400906 REPORT_DEVICE_TYPE << 8,
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700907 0, /* interface */
908 report,
Al Viro6b8588f2008-04-28 07:00:26 +0100909 le16_to_cpu(hid_desc->wDescriptorLength),
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700910 5000); /* 5 secs */
911
Greg Kroah-Hartmanc6f880a2012-05-01 21:33:16 -0700912 dev_dbg(&usbinterface->dev, "usb_control_msg result: %d\n", result);
Dmitry Torokhov501a5252008-05-30 10:40:28 -0400913 if (result == le16_to_cpu(hid_desc->wDescriptorLength)) {
914 parse_hid_report_descriptor(gtco, report, result);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700915 break;
Dmitry Torokhov501a5252008-05-30 10:40:28 -0400916 }
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700917 }
918
Dmitry Torokhov501a5252008-05-30 10:40:28 -0400919 kfree(report);
920
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700921 /* If we didn't get the report, fail */
Al Viro6b8588f2008-04-28 07:00:26 +0100922 if (result != le16_to_cpu(hid_desc->wDescriptorLength)) {
Greg Kroah-Hartman3bd95972012-04-25 14:48:39 -0700923 dev_err(&usbinterface->dev,
924 "Failed to get HID Report Descriptor of size: %d\n",
925 hid_desc->wDescriptorLength);
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400926 error = -EIO;
927 goto err_free_urb;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700928 }
929
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700930 /* Create a device file node */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400931 usb_make_path(gtco->usbdev, gtco->usbpath, sizeof(gtco->usbpath));
932 strlcat(gtco->usbpath, "/input0", sizeof(gtco->usbpath));
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700933
934 /* Set Input device functions */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400935 input_dev->open = gtco_input_open;
936 input_dev->close = gtco_input_close;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700937
938 /* Set input device information */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400939 input_dev->name = "GTCO_CalComp";
940 input_dev->phys = gtco->usbpath;
Dmitry Torokhov7791bda2007-04-12 01:34:39 -0400941
942 input_set_drvdata(input_dev, gtco);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700943
944 /* Now set up all the input device capabilities */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400945 gtco_setup_caps(input_dev);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700946
947 /* Set input device required ID information */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400948 usb_to_input_id(gtco->usbdev, &input_dev->id);
Dmitry Torokhovc0f82d52007-04-12 01:35:03 -0400949 input_dev->dev.parent = &usbinterface->dev;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700950
951 /* Setup the URB, it will be posted later on open of input device */
952 endpoint = &usbinterface->altsetting[0].endpoint[0].desc;
953
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400954 usb_fill_int_urb(gtco->urbinfo,
955 gtco->usbdev,
956 usb_rcvintpipe(gtco->usbdev,
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700957 endpoint->bEndpointAddress),
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400958 gtco->buffer,
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700959 REPORT_MAX_SIZE,
960 gtco_urb_callback,
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400961 gtco,
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700962 endpoint->bInterval);
963
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400964 gtco->urbinfo->transfer_dma = gtco->buf_dma;
965 gtco->urbinfo->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700966
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400967 /* Save gtco pointer in USB interface gtco */
968 usb_set_intfdata(usbinterface, gtco);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700969
970 /* All done, now register the input device */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400971 error = input_register_device(input_dev);
972 if (error)
973 goto err_free_urb;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700974
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700975 return 0;
976
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400977 err_free_urb:
978 usb_free_urb(gtco->urbinfo);
979 err_free_buf:
Daniel Mack997ea582010-04-12 13:17:25 +0200980 usb_free_coherent(gtco->usbdev, REPORT_MAX_SIZE,
981 gtco->buffer, gtco->buf_dma);
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400982 err_free_devs:
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400983 input_free_device(input_dev);
984 kfree(gtco);
985 return error;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700986}
987
988/*
989 * This function is a standard USB function called when the USB device
990 * is disconnected. We will get rid of the URV, de-register the input
991 * device, and free up allocated memory
992 */
993static void gtco_disconnect(struct usb_interface *interface)
994{
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700995 /* Grab private device ptr */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400996 struct gtco *gtco = usb_get_intfdata(interface);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700997
998 /* Now reverse all the registration stuff */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400999 if (gtco) {
1000 input_unregister_device(gtco->inputdevice);
1001 usb_kill_urb(gtco->urbinfo);
1002 usb_free_urb(gtco->urbinfo);
Daniel Mack997ea582010-04-12 13:17:25 +02001003 usb_free_coherent(gtco->usbdev, REPORT_MAX_SIZE,
1004 gtco->buffer, gtco->buf_dma);
Dmitry Torokhov1b726a02007-04-12 01:33:00 -04001005 kfree(gtco);
Jeremy Robersona19ceb52007-01-18 08:10:25 -07001006 }
1007
Greg Kroah-Hartman899ef6e2008-08-18 13:21:04 -07001008 dev_info(&interface->dev, "gtco driver disconnected\n");
Jeremy Robersona19ceb52007-01-18 08:10:25 -07001009}
1010
Jeremy Robersona19ceb52007-01-18 08:10:25 -07001011/* STANDARD MODULE LOAD ROUTINES */
1012
1013static struct usb_driver gtco_driverinfo_table = {
Dmitry Torokhov1b726a02007-04-12 01:33:00 -04001014 .name = "gtco",
1015 .id_table = gtco_usbid_table,
1016 .probe = gtco_probe,
1017 .disconnect = gtco_disconnect,
Jeremy Robersona19ceb52007-01-18 08:10:25 -07001018};
Dmitry Torokhov1b726a02007-04-12 01:33:00 -04001019
Greg Kroah-Hartman08642e72011-11-18 09:48:31 -08001020module_usb_driver(gtco_driverinfo_table);
Jeremy Robersona19ceb52007-01-18 08:10:25 -07001021
Dmitry Torokhov32a676f2009-04-17 20:12:35 -07001022MODULE_DESCRIPTION("GTCO digitizer USB driver");
Jeremy Robersona19ceb52007-01-18 08:10:25 -07001023MODULE_LICENSE("GPL");