blob: 339a0e2d2f862e4428a4f845e97116c95be074fb [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 */
Greg Kroah-Hartman27c25972012-05-04 15:33:09 -0700107 struct usb_interface *intf; /* the usb interface for this device */
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700108 struct urb *urbinfo; /* urb for incoming reports */
109 dma_addr_t buf_dma; /* dma addr of the data buffer*/
110 unsigned char * buffer; /* databuffer for reports */
111
112 char usbpath[PATHLENGTH];
113 int openCount;
114
115 /* Information pulled from Report Descriptor */
116 u32 usage;
117 u32 min_X;
118 u32 max_X;
119 u32 min_Y;
120 u32 max_Y;
121 s8 mintilt_X;
122 s8 maxtilt_X;
123 s8 mintilt_Y;
124 s8 maxtilt_Y;
125 u32 maxpressure;
126 u32 minpressure;
127};
128
129
130
131/* Code for parsing the HID REPORT DESCRIPTOR */
132
133/* From HID1.11 spec */
134struct hid_descriptor
135{
136 struct usb_descriptor_header header;
137 __le16 bcdHID;
138 u8 bCountryCode;
139 u8 bNumDescriptors;
140 u8 bDescriptorType;
141 __le16 wDescriptorLength;
142} __attribute__ ((packed));
143
144
145#define HID_DESCRIPTOR_SIZE 9
146#define HID_DEVICE_TYPE 33
147#define REPORT_DEVICE_TYPE 34
148
149
150#define PREF_TAG(x) ((x)>>4)
151#define PREF_TYPE(x) ((x>>2)&0x03)
152#define PREF_SIZE(x) ((x)&0x03)
153
154#define TYPE_MAIN 0
155#define TYPE_GLOBAL 1
156#define TYPE_LOCAL 2
157#define TYPE_RESERVED 3
158
159#define TAG_MAIN_INPUT 0x8
160#define TAG_MAIN_OUTPUT 0x9
161#define TAG_MAIN_FEATURE 0xB
162#define TAG_MAIN_COL_START 0xA
163#define TAG_MAIN_COL_END 0xC
164
165#define TAG_GLOB_USAGE 0
166#define TAG_GLOB_LOG_MIN 1
167#define TAG_GLOB_LOG_MAX 2
168#define TAG_GLOB_PHYS_MIN 3
169#define TAG_GLOB_PHYS_MAX 4
170#define TAG_GLOB_UNIT_EXP 5
171#define TAG_GLOB_UNIT 6
172#define TAG_GLOB_REPORT_SZ 7
173#define TAG_GLOB_REPORT_ID 8
174#define TAG_GLOB_REPORT_CNT 9
175#define TAG_GLOB_PUSH 10
176#define TAG_GLOB_POP 11
177
178#define TAG_GLOB_MAX 12
179
180#define DIGITIZER_USAGE_TIP_PRESSURE 0x30
181#define DIGITIZER_USAGE_TILT_X 0x3D
182#define DIGITIZER_USAGE_TILT_Y 0x3E
183
184
185/*
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700186 * This is an abbreviated parser for the HID Report Descriptor. We
187 * know what devices we are talking to, so this is by no means meant
188 * to be generic. We can make some safe assumptions:
189 *
190 * - We know there are no LONG tags, all short
191 * - We know that we have no MAIN Feature and MAIN Output items
192 * - We know what the IRQ reports are supposed to look like.
193 *
194 * The main purpose of this is to use the HID report desc to figure
195 * out the mins and maxs of the fields in the IRQ reports. The IRQ
196 * reports for 400/401 change slightly if the max X is bigger than 64K.
197 *
198 */
199static void parse_hid_report_descriptor(struct gtco *device, char * report,
200 int length)
201{
Greg Kroah-Hartman27c25972012-05-04 15:33:09 -0700202 struct device *ddev = &device->intf->dev;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400203 int x, i = 0;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700204
205 /* Tag primitive vars */
206 __u8 prefix;
207 __u8 size;
208 __u8 tag;
209 __u8 type;
210 __u8 data = 0;
211 __u16 data16 = 0;
212 __u32 data32 = 0;
213
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700214 /* For parsing logic */
215 int inputnum = 0;
216 __u32 usage = 0;
217
218 /* Global Values, indexed by TAG */
219 __u32 globalval[TAG_GLOB_MAX];
220 __u32 oldval[TAG_GLOB_MAX];
221
222 /* Debug stuff */
Dmitry Torokhovbc95f362007-05-01 00:24:54 -0400223 char maintype = 'x';
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700224 char globtype[12];
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400225 int indent = 0;
226 char indentstr[10] = "";
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700227
228
Greg Kroah-Hartmanc6f880a2012-05-01 21:33:16 -0700229 dev_dbg(ddev, "======>>>>>>PARSE<<<<<<======\n");
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700230
231 /* Walk this report and pull out the info we need */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400232 while (i < length) {
Dmitry Torokhov52f65e32017-10-23 16:46:00 -0700233 prefix = report[i++];
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700234
235 /* Determine data size and save the data in the proper variable */
Dmitry Torokhov52f65e32017-10-23 16:46:00 -0700236 size = (1U << PREF_SIZE(prefix)) >> 1;
237 if (i + size > length) {
238 dev_err(ddev,
239 "Not enough data (need %d, have %d)\n",
240 i + size, length);
241 break;
242 }
243
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400244 switch (size) {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700245 case 1:
246 data = report[i];
247 break;
248 case 2:
Harvey Harrison858ad082008-04-29 01:03:34 -0700249 data16 = get_unaligned_le16(&report[i]);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700250 break;
Dmitry Torokhov52f65e32017-10-23 16:46:00 -0700251 case 4:
Harvey Harrison858ad082008-04-29 01:03:34 -0700252 data32 = get_unaligned_le32(&report[i]);
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400253 break;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700254 }
255
256 /* Skip size of data */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400257 i += size;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700258
259 /* What we do depends on the tag type */
260 tag = PREF_TAG(prefix);
261 type = PREF_TYPE(prefix);
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400262 switch (type) {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700263 case TYPE_MAIN:
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400264 strcpy(globtype, "");
265 switch (tag) {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700266
267 case TAG_MAIN_INPUT:
268 /*
269 * The INPUT MAIN tag signifies this is
270 * information from a report. We need to
271 * figure out what it is and store the
272 * min/max values
273 */
274
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400275 maintype = 'I';
276 if (data == 2)
277 strcpy(globtype, "Variable");
278 else if (data == 3)
279 strcpy(globtype, "Var|Const");
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700280
Greg Kroah-Hartmanc6f880a2012-05-01 21:33:16 -0700281 dev_dbg(ddev, "::::: Saving Report: %d input #%d Max: 0x%X(%d) Min:0x%X(%d) of %d bits\n",
282 globalval[TAG_GLOB_REPORT_ID], inputnum,
283 globalval[TAG_GLOB_LOG_MAX], globalval[TAG_GLOB_LOG_MAX],
284 globalval[TAG_GLOB_LOG_MIN], globalval[TAG_GLOB_LOG_MIN],
285 globalval[TAG_GLOB_REPORT_SZ] * globalval[TAG_GLOB_REPORT_CNT]);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700286
287
288 /*
289 We can assume that the first two input items
290 are always the X and Y coordinates. After
291 that, we look for everything else by
292 local usage value
293 */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400294 switch (inputnum) {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700295 case 0: /* X coord */
Greg Kroah-Hartmanc6f880a2012-05-01 21:33:16 -0700296 dev_dbg(ddev, "GER: X Usage: 0x%x\n", usage);
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400297 if (device->max_X == 0) {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700298 device->max_X = globalval[TAG_GLOB_LOG_MAX];
299 device->min_X = globalval[TAG_GLOB_LOG_MIN];
300 }
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700301 break;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400302
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700303 case 1: /* Y coord */
Greg Kroah-Hartmanc6f880a2012-05-01 21:33:16 -0700304 dev_dbg(ddev, "GER: Y Usage: 0x%x\n", usage);
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400305 if (device->max_Y == 0) {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700306 device->max_Y = globalval[TAG_GLOB_LOG_MAX];
307 device->min_Y = globalval[TAG_GLOB_LOG_MIN];
308 }
309 break;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400310
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700311 default:
312 /* Tilt X */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400313 if (usage == DIGITIZER_USAGE_TILT_X) {
314 if (device->maxtilt_X == 0) {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700315 device->maxtilt_X = globalval[TAG_GLOB_LOG_MAX];
316 device->mintilt_X = globalval[TAG_GLOB_LOG_MIN];
317 }
318 }
319
320 /* Tilt Y */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400321 if (usage == DIGITIZER_USAGE_TILT_Y) {
322 if (device->maxtilt_Y == 0) {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700323 device->maxtilt_Y = globalval[TAG_GLOB_LOG_MAX];
324 device->mintilt_Y = globalval[TAG_GLOB_LOG_MIN];
325 }
326 }
327
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700328 /* Pressure */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400329 if (usage == DIGITIZER_USAGE_TIP_PRESSURE) {
330 if (device->maxpressure == 0) {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700331 device->maxpressure = globalval[TAG_GLOB_LOG_MAX];
332 device->minpressure = globalval[TAG_GLOB_LOG_MIN];
333 }
334 }
335
336 break;
337 }
338
339 inputnum++;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700340 break;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400341
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700342 case TAG_MAIN_OUTPUT:
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400343 maintype = 'O';
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700344 break;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700345
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400346 case TAG_MAIN_FEATURE:
347 maintype = 'F';
348 break;
349
350 case TAG_MAIN_COL_START:
351 maintype = 'S';
352
353 if (data == 0) {
Greg Kroah-Hartmanc6f880a2012-05-01 21:33:16 -0700354 dev_dbg(ddev, "======>>>>>> Physical\n");
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400355 strcpy(globtype, "Physical");
356 } else
Greg Kroah-Hartmanc6f880a2012-05-01 21:33:16 -0700357 dev_dbg(ddev, "======>>>>>>\n");
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700358
359 /* Indent the debug output */
360 indent++;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400361 for (x = 0; x < indent; x++)
362 indentstr[x] = '-';
363 indentstr[x] = 0;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700364
365 /* Save global tags */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400366 for (x = 0; x < TAG_GLOB_MAX; x++)
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700367 oldval[x] = globalval[x];
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700368
369 break;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400370
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700371 case TAG_MAIN_COL_END:
Greg Kroah-Hartmanc6f880a2012-05-01 21:33:16 -0700372 dev_dbg(ddev, "<<<<<<======\n");
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400373 maintype = 'E';
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700374 indent--;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400375 for (x = 0; x < indent; x++)
376 indentstr[x] = '-';
377 indentstr[x] = 0;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700378
379 /* Copy global tags back */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400380 for (x = 0; x < TAG_GLOB_MAX; x++)
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700381 globalval[x] = oldval[x];
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700382
383 break;
384 }
385
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400386 switch (size) {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700387 case 1:
Greg Kroah-Hartmanc6f880a2012-05-01 21:33:16 -0700388 dev_dbg(ddev, "%sMAINTAG:(%d) %c SIZE: %d Data: %s 0x%x\n",
389 indentstr, tag, maintype, size, globtype, data);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700390 break;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400391
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700392 case 2:
Greg Kroah-Hartmanc6f880a2012-05-01 21:33:16 -0700393 dev_dbg(ddev, "%sMAINTAG:(%d) %c SIZE: %d Data: %s 0x%x\n",
394 indentstr, tag, maintype, size, globtype, data16);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700395 break;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400396
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700397 case 4:
Greg Kroah-Hartmanc6f880a2012-05-01 21:33:16 -0700398 dev_dbg(ddev, "%sMAINTAG:(%d) %c SIZE: %d Data: %s 0x%x\n",
399 indentstr, tag, maintype, size, globtype, data32);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700400 break;
401 }
402 break;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400403
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700404 case TYPE_GLOBAL:
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400405 switch (tag) {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700406 case TAG_GLOB_USAGE:
407 /*
408 * First time we hit the global usage tag,
409 * it should tell us the type of device
410 */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400411 if (device->usage == 0)
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700412 device->usage = data;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400413
414 strcpy(globtype, "USAGE");
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700415 break;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400416
417 case TAG_GLOB_LOG_MIN:
418 strcpy(globtype, "LOG_MIN");
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700419 break;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400420
421 case TAG_GLOB_LOG_MAX:
422 strcpy(globtype, "LOG_MAX");
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700423 break;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400424
425 case TAG_GLOB_PHYS_MIN:
426 strcpy(globtype, "PHYS_MIN");
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700427 break;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400428
429 case TAG_GLOB_PHYS_MAX:
430 strcpy(globtype, "PHYS_MAX");
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700431 break;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400432
433 case TAG_GLOB_UNIT_EXP:
434 strcpy(globtype, "EXP");
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700435 break;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400436
437 case TAG_GLOB_UNIT:
438 strcpy(globtype, "UNIT");
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700439 break;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400440
441 case TAG_GLOB_REPORT_SZ:
442 strcpy(globtype, "REPORT_SZ");
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700443 break;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400444
445 case TAG_GLOB_REPORT_ID:
446 strcpy(globtype, "REPORT_ID");
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700447 /* New report, restart numbering */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400448 inputnum = 0;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700449 break;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400450
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700451 case TAG_GLOB_REPORT_CNT:
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400452 strcpy(globtype, "REPORT_CNT");
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700453 break;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400454
455 case TAG_GLOB_PUSH:
456 strcpy(globtype, "PUSH");
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700457 break;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400458
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700459 case TAG_GLOB_POP:
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400460 strcpy(globtype, "POP");
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700461 break;
462 }
463
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700464 /* Check to make sure we have a good tag number
465 so we don't overflow array */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400466 if (tag < TAG_GLOB_MAX) {
467 switch (size) {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700468 case 1:
Greg Kroah-Hartmanc6f880a2012-05-01 21:33:16 -0700469 dev_dbg(ddev, "%sGLOBALTAG:%s(%d) SIZE: %d Data: 0x%x\n",
470 indentstr, globtype, tag, size, data);
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400471 globalval[tag] = data;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700472 break;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400473
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700474 case 2:
Greg Kroah-Hartmanc6f880a2012-05-01 21:33:16 -0700475 dev_dbg(ddev, "%sGLOBALTAG:%s(%d) SIZE: %d Data: 0x%x\n",
476 indentstr, globtype, tag, size, data16);
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400477 globalval[tag] = data16;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700478 break;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400479
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700480 case 4:
Greg Kroah-Hartmanc6f880a2012-05-01 21:33:16 -0700481 dev_dbg(ddev, "%sGLOBALTAG:%s(%d) SIZE: %d Data: 0x%x\n",
482 indentstr, globtype, tag, size, data32);
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400483 globalval[tag] = data32;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700484 break;
485 }
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400486 } else {
Greg Kroah-Hartmanc6f880a2012-05-01 21:33:16 -0700487 dev_dbg(ddev, "%sGLOBALTAG: ILLEGAL TAG:%d SIZE: %d\n",
488 indentstr, tag, size);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700489 }
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700490 break;
491
492 case TYPE_LOCAL:
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400493 switch (tag) {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700494 case TAG_GLOB_USAGE:
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400495 strcpy(globtype, "USAGE");
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700496 /* Always 1 byte */
497 usage = data;
498 break;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400499
500 case TAG_GLOB_LOG_MIN:
501 strcpy(globtype, "MIN");
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700502 break;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400503
504 case TAG_GLOB_LOG_MAX:
505 strcpy(globtype, "MAX");
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700506 break;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400507
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700508 default:
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400509 strcpy(globtype, "UNKNOWN");
510 break;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700511 }
512
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400513 switch (size) {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700514 case 1:
Greg Kroah-Hartmanc6f880a2012-05-01 21:33:16 -0700515 dev_dbg(ddev, "%sLOCALTAG:(%d) %s SIZE: %d Data: 0x%x\n",
516 indentstr, tag, globtype, size, data);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700517 break;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400518
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700519 case 2:
Greg Kroah-Hartmanc6f880a2012-05-01 21:33:16 -0700520 dev_dbg(ddev, "%sLOCALTAG:(%d) %s SIZE: %d Data: 0x%x\n",
521 indentstr, tag, globtype, size, data16);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700522 break;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400523
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700524 case 4:
Greg Kroah-Hartmanc6f880a2012-05-01 21:33:16 -0700525 dev_dbg(ddev, "%sLOCALTAG:(%d) %s SIZE: %d Data: 0x%x\n",
526 indentstr, tag, globtype, size, data32);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700527 break;
528 }
529
530 break;
531 }
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700532 }
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700533}
534
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700535/* INPUT DRIVER Routines */
536
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700537/*
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400538 * Called when opening the input device. This will submit the URB to
539 * the usb system so we start getting reports
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700540 */
541static int gtco_input_open(struct input_dev *inputdev)
542{
Dmitry Torokhov7791bda2007-04-12 01:34:39 -0400543 struct gtco *device = input_get_drvdata(inputdev);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700544
Oliver Neukumed752e5d2016-03-31 11:01:07 -0700545 device->urbinfo->dev = interface_to_usbdev(device->intf);
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400546 if (usb_submit_urb(device->urbinfo, GFP_KERNEL))
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700547 return -EIO;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400548
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700549 return 0;
550}
551
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400552/*
553 * Called when closing the input device. This will unlink the URB
554 */
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700555static void gtco_input_close(struct input_dev *inputdev)
556{
Dmitry Torokhov7791bda2007-04-12 01:34:39 -0400557 struct gtco *device = input_get_drvdata(inputdev);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700558
559 usb_kill_urb(device->urbinfo);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700560}
561
562
563/*
564 * Setup input device capabilities. Tell the input system what this
565 * device is capable of generating.
566 *
567 * This information is based on what is read from the HID report and
568 * placed in the struct gtco structure
569 *
570 */
Dmitry Torokhov7791bda2007-04-12 01:34:39 -0400571static void gtco_setup_caps(struct input_dev *inputdev)
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700572{
Dmitry Torokhov7791bda2007-04-12 01:34:39 -0400573 struct gtco *device = input_get_drvdata(inputdev);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700574
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700575 /* Which events */
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700576 inputdev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS) |
577 BIT_MASK(EV_MSC);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700578
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700579 /* Misc event menu block */
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700580 inputdev->mscbit[0] = BIT_MASK(MSC_SCAN) | BIT_MASK(MSC_SERIAL) |
581 BIT_MASK(MSC_RAW);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700582
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700583 /* Absolute values based on HID report info */
584 input_set_abs_params(inputdev, ABS_X, device->min_X, device->max_X,
585 0, 0);
586 input_set_abs_params(inputdev, ABS_Y, device->min_Y, device->max_Y,
587 0, 0);
588
589 /* Proximity */
590 input_set_abs_params(inputdev, ABS_DISTANCE, 0, 1, 0, 0);
591
592 /* Tilt & pressure */
593 input_set_abs_params(inputdev, ABS_TILT_X, device->mintilt_X,
594 device->maxtilt_X, 0, 0);
595 input_set_abs_params(inputdev, ABS_TILT_Y, device->mintilt_Y,
596 device->maxtilt_Y, 0, 0);
597 input_set_abs_params(inputdev, ABS_PRESSURE, device->minpressure,
598 device->maxpressure, 0, 0);
599
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700600 /* Transducer */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400601 input_set_abs_params(inputdev, ABS_MISC, 0, 0xFF, 0, 0);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700602}
603
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700604/* USB Routines */
605
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700606/*
607 * URB callback routine. Called when we get IRQ reports from the
608 * digitizer.
609 *
610 * This bridges the USB and input device worlds. It generates events
611 * on the input device based on the USB reports.
612 */
613static void gtco_urb_callback(struct urb *urbinfo)
614{
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400615 struct gtco *device = urbinfo->context;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700616 struct input_dev *inputdev;
617 int rc;
618 u32 val = 0;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700619 char le_buffer[2];
620
621 inputdev = device->inputdevice;
622
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700623 /* Was callback OK? */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400624 if (urbinfo->status == -ECONNRESET ||
625 urbinfo->status == -ENOENT ||
626 urbinfo->status == -ESHUTDOWN) {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700627
628 /* Shutdown is occurring. Return and don't queue up any more */
629 return;
630 }
631
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400632 if (urbinfo->status != 0) {
633 /*
634 * Some unknown error. Hopefully temporary. Just go and
635 * requeue an URB
636 */
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700637 goto resubmit;
638 }
639
640 /*
641 * Good URB, now process
642 */
643
644 /* PID dependent when we interpret the report */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400645 if (inputdev->id.product == PID_1000 ||
646 inputdev->id.product == PID_1001 ||
647 inputdev->id.product == PID_1002) {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700648
649 /*
650 * Switch on the report ID
651 * Conveniently, the reports have more information, the higher
652 * the report number. We can just fall through the case
653 * statements if we start with the highest number report
654 */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400655 switch (device->buffer[0]) {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700656 case 5:
657 /* Pressure is 9 bits */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400658 val = ((u16)(device->buffer[8]) << 1);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700659 val |= (u16)(device->buffer[7] >> 7);
660 input_report_abs(inputdev, ABS_PRESSURE,
661 device->buffer[8]);
662
663 /* Mask out the Y tilt value used for pressure */
664 device->buffer[7] = (u8)((device->buffer[7]) & 0x7F);
665
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700666 /* Fall thru */
667 case 4:
668 /* Tilt */
Martin Kepplinger8d212822015-01-23 16:40:53 -0800669 input_report_abs(inputdev, ABS_TILT_X,
670 sign_extend32(device->buffer[6], 6));
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700671
Martin Kepplinger8d212822015-01-23 16:40:53 -0800672 input_report_abs(inputdev, ABS_TILT_Y,
673 sign_extend32(device->buffer[7], 6));
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700674
675 /* Fall thru */
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700676 case 2:
677 case 3:
678 /* Convert buttons, only 5 bits possible */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400679 val = (device->buffer[5]) & MASK_BUTTON;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700680
681 /* We don't apply any meaning to the bitmask,
682 just report */
683 input_event(inputdev, EV_MSC, MSC_SERIAL, val);
684
685 /* Fall thru */
686 case 1:
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700687 /* All reports have X and Y coords in the same place */
Harvey Harrison858ad082008-04-29 01:03:34 -0700688 val = get_unaligned_le16(&device->buffer[1]);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700689 input_report_abs(inputdev, ABS_X, val);
690
Harvey Harrison858ad082008-04-29 01:03:34 -0700691 val = get_unaligned_le16(&device->buffer[3]);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700692 input_report_abs(inputdev, ABS_Y, val);
693
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700694 /* Ditto for proximity bit */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400695 val = device->buffer[5] & MASK_INRANGE ? 1 : 0;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700696 input_report_abs(inputdev, ABS_DISTANCE, val);
697
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700698 /* Report 1 is an exception to how we handle buttons */
699 /* Buttons are an index, not a bitmask */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400700 if (device->buffer[0] == 1) {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700701
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400702 /*
703 * Convert buttons, 5 bit index
704 * Report value of index set as one,
705 * the rest as 0
706 */
707 val = device->buffer[5] & MASK_BUTTON;
Greg Kroah-Hartman27c25972012-05-04 15:33:09 -0700708 dev_dbg(&device->intf->dev,
Greg Kroah-Hartmanc6f880a2012-05-01 21:33:16 -0700709 "======>>>>>>REPORT 1: val 0x%X(%d)\n",
710 val, val);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700711
712 /*
713 * We don't apply any meaning to the button
714 * index, just report it
715 */
716 input_event(inputdev, EV_MSC, MSC_SERIAL, val);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700717 }
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700718 break;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400719
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700720 case 7:
721 /* Menu blocks */
722 input_event(inputdev, EV_MSC, MSC_SCAN,
723 device->buffer[1]);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700724 break;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700725 }
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700726 }
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400727
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700728 /* Other pid class */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400729 if (inputdev->id.product == PID_400 ||
730 inputdev->id.product == PID_401) {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700731
732 /* Report 2 */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400733 if (device->buffer[0] == 2) {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700734 /* Menu blocks */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400735 input_event(inputdev, EV_MSC, MSC_SCAN, device->buffer[1]);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700736 }
737
738 /* Report 1 */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400739 if (device->buffer[0] == 1) {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700740 char buttonbyte;
741
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700742 /* IF X max > 64K, we still a bit from the y report */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400743 if (device->max_X > 0x10000) {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700744
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400745 val = (u16)(((u16)(device->buffer[2] << 8)) | (u8)device->buffer[1]);
746 val |= (u32)(((u8)device->buffer[3] & 0x1) << 16);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700747
748 input_report_abs(inputdev, ABS_X, val);
749
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400750 le_buffer[0] = (u8)((u8)(device->buffer[3]) >> 1);
751 le_buffer[0] |= (u8)((device->buffer[3] & 0x1) << 7);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700752
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400753 le_buffer[1] = (u8)(device->buffer[4] >> 1);
754 le_buffer[1] |= (u8)((device->buffer[5] & 0x1) << 7);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700755
Harvey Harrison858ad082008-04-29 01:03:34 -0700756 val = get_unaligned_le16(le_buffer);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700757 input_report_abs(inputdev, ABS_Y, val);
758
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700759 /*
760 * Shift the button byte right by one to
761 * make it look like the standard report
762 */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400763 buttonbyte = device->buffer[5] >> 1;
764 } else {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700765
Harvey Harrison858ad082008-04-29 01:03:34 -0700766 val = get_unaligned_le16(&device->buffer[1]);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700767 input_report_abs(inputdev, ABS_X, val);
768
Harvey Harrison858ad082008-04-29 01:03:34 -0700769 val = get_unaligned_le16(&device->buffer[3]);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700770 input_report_abs(inputdev, ABS_Y, val);
771
772 buttonbyte = device->buffer[5];
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700773 }
774
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700775 /* BUTTONS and PROXIMITY */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400776 val = buttonbyte & MASK_INRANGE ? 1 : 0;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700777 input_report_abs(inputdev, ABS_DISTANCE, val);
778
779 /* Convert buttons, only 4 bits possible */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400780 val = buttonbyte & 0x0F;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700781#ifdef USE_BUTTONS
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400782 for (i = 0; i < 5; i++)
783 input_report_key(inputdev, BTN_DIGI + i, val & (1 << i));
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700784#else
785 /* We don't apply any meaning to the bitmask, just report */
786 input_event(inputdev, EV_MSC, MSC_SERIAL, val);
787#endif
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400788
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700789 /* TRANSDUCER */
790 input_report_abs(inputdev, ABS_MISC, device->buffer[6]);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700791 }
792 }
793
794 /* Everybody gets report ID's */
795 input_event(inputdev, EV_MSC, MSC_RAW, device->buffer[0]);
796
797 /* Sync it up */
798 input_sync(inputdev);
799
800 resubmit:
801 rc = usb_submit_urb(urbinfo, GFP_ATOMIC);
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400802 if (rc != 0)
Greg Kroah-Hartman27c25972012-05-04 15:33:09 -0700803 dev_err(&device->intf->dev,
Greg Kroah-Hartman3bd95972012-04-25 14:48:39 -0700804 "usb_submit_urb failed rc=0x%x\n", rc);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700805}
806
807/*
808 * The probe routine. This is called when the kernel find the matching USB
809 * vendor/product. We do the following:
810 *
811 * - Allocate mem for a local structure to manage the device
812 * - Request a HID Report Descriptor from the device and parse it to
813 * find out the device parameters
814 * - Create an input device and assign it attributes
815 * - Allocate an URB so the device can talk to us when the input
816 * queue is open
817 */
818static int gtco_probe(struct usb_interface *usbinterface,
819 const struct usb_device_id *id)
820{
821
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400822 struct gtco *gtco;
823 struct input_dev *input_dev;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700824 struct hid_descriptor *hid_desc;
Dmitry Torokhov501a5252008-05-30 10:40:28 -0400825 char *report;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400826 int result = 0, retry;
827 int error;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700828 struct usb_endpoint_descriptor *endpoint;
Oliver Neukumed752e5d2016-03-31 11:01:07 -0700829 struct usb_device *udev = interface_to_usbdev(usbinterface);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700830
831 /* Allocate memory for device structure */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400832 gtco = kzalloc(sizeof(struct gtco), GFP_KERNEL);
833 input_dev = input_allocate_device();
834 if (!gtco || !input_dev) {
Greg Kroah-Hartman3bd95972012-04-25 14:48:39 -0700835 dev_err(&usbinterface->dev, "No more memory\n");
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400836 error = -ENOMEM;
837 goto err_free_devs;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700838 }
839
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400840 /* Set pointer to the input device */
841 gtco->inputdevice = input_dev;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700842
843 /* Save interface information */
Greg Kroah-Hartman27c25972012-05-04 15:33:09 -0700844 gtco->intf = usbinterface;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700845
846 /* Allocate some data for incoming reports */
Oliver Neukumed752e5d2016-03-31 11:01:07 -0700847 gtco->buffer = usb_alloc_coherent(udev, REPORT_MAX_SIZE,
Daniel Mack997ea582010-04-12 13:17:25 +0200848 GFP_KERNEL, &gtco->buf_dma);
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400849 if (!gtco->buffer) {
Greg Kroah-Hartman3bd95972012-04-25 14:48:39 -0700850 dev_err(&usbinterface->dev, "No more memory for us buffers\n");
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400851 error = -ENOMEM;
852 goto err_free_devs;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700853 }
854
855 /* Allocate URB for reports */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400856 gtco->urbinfo = usb_alloc_urb(0, GFP_KERNEL);
857 if (!gtco->urbinfo) {
Greg Kroah-Hartman3bd95972012-04-25 14:48:39 -0700858 dev_err(&usbinterface->dev, "Failed to allocate URB\n");
Julia Lawallf4bc95d2008-07-03 12:10:58 -0400859 error = -ENOMEM;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400860 goto err_free_buf;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700861 }
862
Vladis Dronov162f98d2016-03-31 10:53:42 -0700863 /* Sanity check that a device has an endpoint */
864 if (usbinterface->altsetting[0].desc.bNumEndpoints < 1) {
865 dev_err(&usbinterface->dev,
866 "Invalid number of endpoints\n");
867 error = -EINVAL;
868 goto err_free_urb;
869 }
870
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700871 /*
872 * The endpoint is always altsetting 0, we know this since we know
873 * this device only has one interrupt endpoint
874 */
875 endpoint = &usbinterface->altsetting[0].endpoint[0].desc;
876
877 /* Some debug */
Greg Kroah-Hartmanc6f880a2012-05-01 21:33:16 -0700878 dev_dbg(&usbinterface->dev, "gtco # interfaces: %d\n", usbinterface->num_altsetting);
879 dev_dbg(&usbinterface->dev, "num endpoints: %d\n", usbinterface->cur_altsetting->desc.bNumEndpoints);
880 dev_dbg(&usbinterface->dev, "interface class: %d\n", usbinterface->cur_altsetting->desc.bInterfaceClass);
881 dev_dbg(&usbinterface->dev, "endpoint: attribute:0x%x type:0x%x\n", endpoint->bmAttributes, endpoint->bDescriptorType);
Julia Lawalle941da32008-12-30 01:09:02 -0800882 if (usb_endpoint_xfer_int(endpoint))
Greg Kroah-Hartmanc6f880a2012-05-01 21:33:16 -0700883 dev_dbg(&usbinterface->dev, "endpoint: we have interrupt endpoint\n");
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700884
Greg Kroah-Hartmanc6f880a2012-05-01 21:33:16 -0700885 dev_dbg(&usbinterface->dev, "endpoint extra len:%d\n", usbinterface->altsetting[0].extralen);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700886
887 /*
888 * Find the HID descriptor so we can find out the size of the
889 * HID report descriptor
890 */
891 if (usb_get_extra_descriptor(usbinterface->cur_altsetting,
Vladis Dronov162f98d2016-03-31 10:53:42 -0700892 HID_DEVICE_TYPE, &hid_desc) != 0) {
Greg Kroah-Hartman3bd95972012-04-25 14:48:39 -0700893 dev_err(&usbinterface->dev,
894 "Can't retrieve exta USB descriptor to get hid report descriptor length\n");
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400895 error = -EIO;
896 goto err_free_urb;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700897 }
898
Greg Kroah-Hartmanc6f880a2012-05-01 21:33:16 -0700899 dev_dbg(&usbinterface->dev,
900 "Extra descriptor success: type:%d len:%d\n",
901 hid_desc->bDescriptorType, hid_desc->wDescriptorLength);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700902
Al Viro6b8588f2008-04-28 07:00:26 +0100903 report = kzalloc(le16_to_cpu(hid_desc->wDescriptorLength), GFP_KERNEL);
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400904 if (!report) {
Greg Kroah-Hartman3bd95972012-04-25 14:48:39 -0700905 dev_err(&usbinterface->dev, "No more memory for report\n");
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400906 error = -ENOMEM;
907 goto err_free_urb;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700908 }
909
910 /* Couple of tries to get reply */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400911 for (retry = 0; retry < 3; retry++) {
Oliver Neukumed752e5d2016-03-31 11:01:07 -0700912 result = usb_control_msg(udev,
913 usb_rcvctrlpipe(udev, 0),
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700914 USB_REQ_GET_DESCRIPTOR,
915 USB_RECIP_INTERFACE | USB_DIR_IN,
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400916 REPORT_DEVICE_TYPE << 8,
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700917 0, /* interface */
918 report,
Al Viro6b8588f2008-04-28 07:00:26 +0100919 le16_to_cpu(hid_desc->wDescriptorLength),
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700920 5000); /* 5 secs */
921
Greg Kroah-Hartmanc6f880a2012-05-01 21:33:16 -0700922 dev_dbg(&usbinterface->dev, "usb_control_msg result: %d\n", result);
Dmitry Torokhov501a5252008-05-30 10:40:28 -0400923 if (result == le16_to_cpu(hid_desc->wDescriptorLength)) {
924 parse_hid_report_descriptor(gtco, report, result);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700925 break;
Dmitry Torokhov501a5252008-05-30 10:40:28 -0400926 }
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700927 }
928
Dmitry Torokhov501a5252008-05-30 10:40:28 -0400929 kfree(report);
930
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700931 /* If we didn't get the report, fail */
Al Viro6b8588f2008-04-28 07:00:26 +0100932 if (result != le16_to_cpu(hid_desc->wDescriptorLength)) {
Greg Kroah-Hartman3bd95972012-04-25 14:48:39 -0700933 dev_err(&usbinterface->dev,
934 "Failed to get HID Report Descriptor of size: %d\n",
935 hid_desc->wDescriptorLength);
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400936 error = -EIO;
937 goto err_free_urb;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700938 }
939
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700940 /* Create a device file node */
Oliver Neukumed752e5d2016-03-31 11:01:07 -0700941 usb_make_path(udev, gtco->usbpath, sizeof(gtco->usbpath));
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400942 strlcat(gtco->usbpath, "/input0", sizeof(gtco->usbpath));
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700943
944 /* Set Input device functions */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400945 input_dev->open = gtco_input_open;
946 input_dev->close = gtco_input_close;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700947
948 /* Set input device information */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400949 input_dev->name = "GTCO_CalComp";
950 input_dev->phys = gtco->usbpath;
Dmitry Torokhov7791bda2007-04-12 01:34:39 -0400951
952 input_set_drvdata(input_dev, gtco);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700953
954 /* Now set up all the input device capabilities */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400955 gtco_setup_caps(input_dev);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700956
957 /* Set input device required ID information */
Oliver Neukumed752e5d2016-03-31 11:01:07 -0700958 usb_to_input_id(udev, &input_dev->id);
Dmitry Torokhovc0f82d52007-04-12 01:35:03 -0400959 input_dev->dev.parent = &usbinterface->dev;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700960
961 /* Setup the URB, it will be posted later on open of input device */
962 endpoint = &usbinterface->altsetting[0].endpoint[0].desc;
963
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400964 usb_fill_int_urb(gtco->urbinfo,
Oliver Neukumed752e5d2016-03-31 11:01:07 -0700965 udev,
966 usb_rcvintpipe(udev,
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700967 endpoint->bEndpointAddress),
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400968 gtco->buffer,
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700969 REPORT_MAX_SIZE,
970 gtco_urb_callback,
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400971 gtco,
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700972 endpoint->bInterval);
973
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400974 gtco->urbinfo->transfer_dma = gtco->buf_dma;
975 gtco->urbinfo->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700976
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400977 /* Save gtco pointer in USB interface gtco */
978 usb_set_intfdata(usbinterface, gtco);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700979
980 /* All done, now register the input device */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400981 error = input_register_device(input_dev);
982 if (error)
983 goto err_free_urb;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700984
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700985 return 0;
986
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400987 err_free_urb:
988 usb_free_urb(gtco->urbinfo);
989 err_free_buf:
Oliver Neukumed752e5d2016-03-31 11:01:07 -0700990 usb_free_coherent(udev, REPORT_MAX_SIZE,
Daniel Mack997ea582010-04-12 13:17:25 +0200991 gtco->buffer, gtco->buf_dma);
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400992 err_free_devs:
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400993 input_free_device(input_dev);
994 kfree(gtco);
995 return error;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700996}
997
998/*
999 * This function is a standard USB function called when the USB device
1000 * is disconnected. We will get rid of the URV, de-register the input
1001 * device, and free up allocated memory
1002 */
1003static void gtco_disconnect(struct usb_interface *interface)
1004{
Jeremy Robersona19ceb52007-01-18 08:10:25 -07001005 /* Grab private device ptr */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -04001006 struct gtco *gtco = usb_get_intfdata(interface);
Oliver Neukumed752e5d2016-03-31 11:01:07 -07001007 struct usb_device *udev = interface_to_usbdev(interface);
Jeremy Robersona19ceb52007-01-18 08:10:25 -07001008
1009 /* Now reverse all the registration stuff */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -04001010 if (gtco) {
1011 input_unregister_device(gtco->inputdevice);
1012 usb_kill_urb(gtco->urbinfo);
1013 usb_free_urb(gtco->urbinfo);
Oliver Neukumed752e5d2016-03-31 11:01:07 -07001014 usb_free_coherent(udev, REPORT_MAX_SIZE,
Daniel Mack997ea582010-04-12 13:17:25 +02001015 gtco->buffer, gtco->buf_dma);
Dmitry Torokhov1b726a02007-04-12 01:33:00 -04001016 kfree(gtco);
Jeremy Robersona19ceb52007-01-18 08:10:25 -07001017 }
1018
Greg Kroah-Hartman899ef6e2008-08-18 13:21:04 -07001019 dev_info(&interface->dev, "gtco driver disconnected\n");
Jeremy Robersona19ceb52007-01-18 08:10:25 -07001020}
1021
Jeremy Robersona19ceb52007-01-18 08:10:25 -07001022/* STANDARD MODULE LOAD ROUTINES */
1023
1024static struct usb_driver gtco_driverinfo_table = {
Dmitry Torokhov1b726a02007-04-12 01:33:00 -04001025 .name = "gtco",
1026 .id_table = gtco_usbid_table,
1027 .probe = gtco_probe,
1028 .disconnect = gtco_disconnect,
Jeremy Robersona19ceb52007-01-18 08:10:25 -07001029};
Dmitry Torokhov1b726a02007-04-12 01:33:00 -04001030
Greg Kroah-Hartman08642e72011-11-18 09:48:31 -08001031module_usb_driver(gtco_driverinfo_table);
Jeremy Robersona19ceb52007-01-18 08:10:25 -07001032
Dmitry Torokhov32a676f2009-04-17 20:12:35 -07001033MODULE_DESCRIPTION("GTCO digitizer USB driver");
Jeremy Robersona19ceb52007-01-18 08:10:25 -07001034MODULE_LICENSE("GPL");