blob: b9b7a98bc5a5b49a450d46b4a94fcc6f8037ee89 [file] [log] [blame]
Jeremy Robersona19ceb52007-01-18 08:10:25 -07001/* -*- linux-c -*-
2
3GTCO digitizer USB driver
4
5Use the err(), dbg() and info() macros from usb.h for system logging
6
7TO CHECK: Is pressure done right on report 5?
8
9Copyright (C) 2006 GTCO CalComp
10
11This program is free software; you can redistribute it and/or
12modify it under the terms of the GNU General Public License
13as published by the Free Software Foundation; version 2
14of the License.
15
16This program is distributed in the hope that it will be useful,
17but WITHOUT ANY WARRANTY; without even the implied warranty of
18MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19GNU General Public License for more details.
20
21You should have received a copy of the GNU General Public License
22along with this program; if not, write to the Free Software
23Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
24
25Permission to use, copy, modify, distribute, and sell this software and its
26documentation for any purpose is hereby granted without fee, provided that
27the above copyright notice appear in all copies and that both that
28copyright notice and this permission notice appear in supporting
29documentation, and that the name of GTCO-CalComp not be used in advertising
30or publicity pertaining to distribution of the software without specific,
31written prior permission. GTCO-CalComp makes no representations about the
32suitability of this software for any purpose. It is provided "as is"
33without express or implied warranty.
34
35GTCO-CALCOMP DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
36INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
37EVENT SHALL GTCO-CALCOMP BE LIABLE FOR ANY SPECIAL, INDIRECT OR
38CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
39DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
40TORTIOUS ACTIONS, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
41PERFORMANCE OF THIS SOFTWARE.
42
43GTCO CalComp, Inc.
447125 Riverwood Drive
45Columbia, MD 21046
46
47Jeremy Roberson jroberson@gtcocalcomp.com
48Scott Hill shill@gtcocalcomp.com
49*/
50
51
52
53/*#define DEBUG*/
54
55#include <linux/kernel.h>
56#include <linux/module.h>
57#include <linux/errno.h>
58#include <linux/init.h>
59#include <linux/slab.h>
60#include <linux/input.h>
61#include <linux/usb.h>
62#include <asm/uaccess.h>
63#include <asm/unaligned.h>
64#include <asm/byteorder.h>
65
66
67#include <linux/version.h>
68#include <linux/usb/input.h>
69
70/* Version with a Major number of 2 is for kernel inclusion only. */
71#define GTCO_VERSION "2.00.0006"
72
73
74/* MACROS */
75
76#define VENDOR_ID_GTCO 0x078C
77#define PID_400 0x400
78#define PID_401 0x401
79#define PID_1000 0x1000
80#define PID_1001 0x1001
81#define PID_1002 0x1002
82
83/* Max size of a single report */
84#define REPORT_MAX_SIZE 10
85
86
87/* Bitmask whether pen is in range */
88#define MASK_INRANGE 0x20
89#define MASK_BUTTON 0x01F
90
91#define PATHLENGTH 64
92
93/* DATA STRUCTURES */
94
95/* Device table */
96static struct usb_device_id gtco_usbid_table [] = {
97 { USB_DEVICE(VENDOR_ID_GTCO, PID_400) },
98 { USB_DEVICE(VENDOR_ID_GTCO, PID_401) },
99 { USB_DEVICE(VENDOR_ID_GTCO, PID_1000) },
100 { USB_DEVICE(VENDOR_ID_GTCO, PID_1001) },
101 { USB_DEVICE(VENDOR_ID_GTCO, PID_1002) },
102 { }
103};
104MODULE_DEVICE_TABLE (usb, gtco_usbid_table);
105
106
107/* Structure to hold all of our device specific stuff */
108struct gtco {
109
110 struct input_dev *inputdevice; /* input device struct pointer */
111 struct usb_device *usbdev; /* the usb device for this device */
112 struct urb *urbinfo; /* urb for incoming reports */
113 dma_addr_t buf_dma; /* dma addr of the data buffer*/
114 unsigned char * buffer; /* databuffer for reports */
115
116 char usbpath[PATHLENGTH];
117 int openCount;
118
119 /* Information pulled from Report Descriptor */
120 u32 usage;
121 u32 min_X;
122 u32 max_X;
123 u32 min_Y;
124 u32 max_Y;
125 s8 mintilt_X;
126 s8 maxtilt_X;
127 s8 mintilt_Y;
128 s8 maxtilt_Y;
129 u32 maxpressure;
130 u32 minpressure;
131};
132
133
134
135/* Code for parsing the HID REPORT DESCRIPTOR */
136
137/* From HID1.11 spec */
138struct hid_descriptor
139{
140 struct usb_descriptor_header header;
141 __le16 bcdHID;
142 u8 bCountryCode;
143 u8 bNumDescriptors;
144 u8 bDescriptorType;
145 __le16 wDescriptorLength;
146} __attribute__ ((packed));
147
148
149#define HID_DESCRIPTOR_SIZE 9
150#define HID_DEVICE_TYPE 33
151#define REPORT_DEVICE_TYPE 34
152
153
154#define PREF_TAG(x) ((x)>>4)
155#define PREF_TYPE(x) ((x>>2)&0x03)
156#define PREF_SIZE(x) ((x)&0x03)
157
158#define TYPE_MAIN 0
159#define TYPE_GLOBAL 1
160#define TYPE_LOCAL 2
161#define TYPE_RESERVED 3
162
163#define TAG_MAIN_INPUT 0x8
164#define TAG_MAIN_OUTPUT 0x9
165#define TAG_MAIN_FEATURE 0xB
166#define TAG_MAIN_COL_START 0xA
167#define TAG_MAIN_COL_END 0xC
168
169#define TAG_GLOB_USAGE 0
170#define TAG_GLOB_LOG_MIN 1
171#define TAG_GLOB_LOG_MAX 2
172#define TAG_GLOB_PHYS_MIN 3
173#define TAG_GLOB_PHYS_MAX 4
174#define TAG_GLOB_UNIT_EXP 5
175#define TAG_GLOB_UNIT 6
176#define TAG_GLOB_REPORT_SZ 7
177#define TAG_GLOB_REPORT_ID 8
178#define TAG_GLOB_REPORT_CNT 9
179#define TAG_GLOB_PUSH 10
180#define TAG_GLOB_POP 11
181
182#define TAG_GLOB_MAX 12
183
184#define DIGITIZER_USAGE_TIP_PRESSURE 0x30
185#define DIGITIZER_USAGE_TILT_X 0x3D
186#define DIGITIZER_USAGE_TILT_Y 0x3E
187
188
189/*
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700190 * This is an abbreviated parser for the HID Report Descriptor. We
191 * know what devices we are talking to, so this is by no means meant
192 * to be generic. We can make some safe assumptions:
193 *
194 * - We know there are no LONG tags, all short
195 * - We know that we have no MAIN Feature and MAIN Output items
196 * - We know what the IRQ reports are supposed to look like.
197 *
198 * The main purpose of this is to use the HID report desc to figure
199 * out the mins and maxs of the fields in the IRQ reports. The IRQ
200 * reports for 400/401 change slightly if the max X is bigger than 64K.
201 *
202 */
203static void parse_hid_report_descriptor(struct gtco *device, char * report,
204 int length)
205{
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400206 int x, i = 0;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700207
208 /* Tag primitive vars */
209 __u8 prefix;
210 __u8 size;
211 __u8 tag;
212 __u8 type;
213 __u8 data = 0;
214 __u16 data16 = 0;
215 __u32 data32 = 0;
216
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700217 /* For parsing logic */
218 int inputnum = 0;
219 __u32 usage = 0;
220
221 /* Global Values, indexed by TAG */
222 __u32 globalval[TAG_GLOB_MAX];
223 __u32 oldval[TAG_GLOB_MAX];
224
225 /* Debug stuff */
Dmitry Torokhovbc95f362007-05-01 00:24:54 -0400226 char maintype = 'x';
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700227 char globtype[12];
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400228 int indent = 0;
229 char indentstr[10] = "";
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700230
231
232 dbg("======>>>>>>PARSE<<<<<<======");
233
234 /* Walk this report and pull out the info we need */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400235 while (i < length) {
236 prefix = report[i];
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700237
238 /* Skip over prefix */
239 i++;
240
241 /* Determine data size and save the data in the proper variable */
242 size = PREF_SIZE(prefix);
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400243 switch (size) {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700244 case 1:
245 data = report[i];
246 break;
247 case 2:
Harvey Harrison858ad082008-04-29 01:03:34 -0700248 data16 = get_unaligned_le16(&report[i]);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700249 break;
250 case 3:
251 size = 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
281 dbg("::::: Saving Report: %d input #%d Max: 0x%X(%d) Min:0x%X(%d) of %d bits",
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400282 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 */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400296 dbg("GER: X Usage: 0x%x", usage);
297 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 */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400304 dbg("GER: Y Usage: 0x%x", usage);
305 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) {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700354 dbg("======>>>>>> Physical");
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400355 strcpy(globtype, "Physical");
356 } else
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700357 dbg("======>>>>>>");
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:
372 dbg("<<<<<<======");
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:
388 dbg("%sMAINTAG:(%d) %c SIZE: %d Data: %s 0x%x",
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400389 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:
393 dbg("%sMAINTAG:(%d) %c SIZE: %d Data: %s 0x%x",
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400394 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:
398 dbg("%sMAINTAG:(%d) %c SIZE: %d Data: %s 0x%x",
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400399 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:
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400469 dbg("%sGLOBALTAG:%s(%d) SIZE: %d Data: 0x%x",
470 indentstr, globtype, tag, size, data);
471 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:
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400475 dbg("%sGLOBALTAG:%s(%d) SIZE: %d Data: 0x%x",
476 indentstr, globtype, tag, size, data16);
477 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:
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400481 dbg("%sGLOBALTAG:%s(%d) SIZE: %d Data: 0x%x",
482 indentstr, globtype, tag, size, data32);
483 globalval[tag] = data32;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700484 break;
485 }
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400486 } else {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700487 dbg("%sGLOBALTAG: ILLEGAL TAG:%d SIZE: %d ",
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400488 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:
515 dbg("%sLOCALTAG:(%d) %s SIZE: %d Data: 0x%x",
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400516 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:
520 dbg("%sLOCALTAG:(%d) %s SIZE: %d Data: 0x%x",
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400521 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:
525 dbg("%sLOCALTAG:(%d) %s SIZE: %d Data: 0x%x",
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400526 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
545 device->urbinfo->dev = device->usbdev;
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;
619 s8 valsigned = 0;
620 char le_buffer[2];
621
622 inputdev = device->inputdevice;
623
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700624 /* Was callback OK? */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400625 if (urbinfo->status == -ECONNRESET ||
626 urbinfo->status == -ENOENT ||
627 urbinfo->status == -ESHUTDOWN) {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700628
629 /* Shutdown is occurring. Return and don't queue up any more */
630 return;
631 }
632
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400633 if (urbinfo->status != 0) {
634 /*
635 * Some unknown error. Hopefully temporary. Just go and
636 * requeue an URB
637 */
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700638 goto resubmit;
639 }
640
641 /*
642 * Good URB, now process
643 */
644
645 /* PID dependent when we interpret the report */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400646 if (inputdev->id.product == PID_1000 ||
647 inputdev->id.product == PID_1001 ||
648 inputdev->id.product == PID_1002) {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700649
650 /*
651 * Switch on the report ID
652 * Conveniently, the reports have more information, the higher
653 * the report number. We can just fall through the case
654 * statements if we start with the highest number report
655 */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400656 switch (device->buffer[0]) {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700657 case 5:
658 /* Pressure is 9 bits */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400659 val = ((u16)(device->buffer[8]) << 1);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700660 val |= (u16)(device->buffer[7] >> 7);
661 input_report_abs(inputdev, ABS_PRESSURE,
662 device->buffer[8]);
663
664 /* Mask out the Y tilt value used for pressure */
665 device->buffer[7] = (u8)((device->buffer[7]) & 0x7F);
666
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700667 /* Fall thru */
668 case 4:
669 /* Tilt */
670
671 /* Sign extend these 7 bit numbers. */
672 if (device->buffer[6] & 0x40)
673 device->buffer[6] |= 0x80;
674
675 if (device->buffer[7] & 0x40)
676 device->buffer[7] |= 0x80;
677
678
679 valsigned = (device->buffer[6]);
680 input_report_abs(inputdev, ABS_TILT_X, (s32)valsigned);
681
682 valsigned = (device->buffer[7]);
683 input_report_abs(inputdev, ABS_TILT_Y, (s32)valsigned);
684
685 /* Fall thru */
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700686 case 2:
687 case 3:
688 /* Convert buttons, only 5 bits possible */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400689 val = (device->buffer[5]) & MASK_BUTTON;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700690
691 /* We don't apply any meaning to the bitmask,
692 just report */
693 input_event(inputdev, EV_MSC, MSC_SERIAL, val);
694
695 /* Fall thru */
696 case 1:
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700697 /* All reports have X and Y coords in the same place */
Harvey Harrison858ad082008-04-29 01:03:34 -0700698 val = get_unaligned_le16(&device->buffer[1]);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700699 input_report_abs(inputdev, ABS_X, val);
700
Harvey Harrison858ad082008-04-29 01:03:34 -0700701 val = get_unaligned_le16(&device->buffer[3]);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700702 input_report_abs(inputdev, ABS_Y, val);
703
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700704 /* Ditto for proximity bit */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400705 val = device->buffer[5] & MASK_INRANGE ? 1 : 0;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700706 input_report_abs(inputdev, ABS_DISTANCE, val);
707
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700708 /* Report 1 is an exception to how we handle buttons */
709 /* Buttons are an index, not a bitmask */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400710 if (device->buffer[0] == 1) {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700711
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400712 /*
713 * Convert buttons, 5 bit index
714 * Report value of index set as one,
715 * the rest as 0
716 */
717 val = device->buffer[5] & MASK_BUTTON;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700718 dbg("======>>>>>>REPORT 1: val 0x%X(%d)",
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400719 val, val);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700720
721 /*
722 * We don't apply any meaning to the button
723 * index, just report it
724 */
725 input_event(inputdev, EV_MSC, MSC_SERIAL, val);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700726 }
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700727 break;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400728
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700729 case 7:
730 /* Menu blocks */
731 input_event(inputdev, EV_MSC, MSC_SCAN,
732 device->buffer[1]);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700733 break;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700734 }
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700735 }
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400736
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700737 /* Other pid class */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400738 if (inputdev->id.product == PID_400 ||
739 inputdev->id.product == PID_401) {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700740
741 /* Report 2 */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400742 if (device->buffer[0] == 2) {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700743 /* Menu blocks */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400744 input_event(inputdev, EV_MSC, MSC_SCAN, device->buffer[1]);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700745 }
746
747 /* Report 1 */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400748 if (device->buffer[0] == 1) {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700749 char buttonbyte;
750
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700751 /* IF X max > 64K, we still a bit from the y report */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400752 if (device->max_X > 0x10000) {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700753
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400754 val = (u16)(((u16)(device->buffer[2] << 8)) | (u8)device->buffer[1]);
755 val |= (u32)(((u8)device->buffer[3] & 0x1) << 16);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700756
757 input_report_abs(inputdev, ABS_X, val);
758
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400759 le_buffer[0] = (u8)((u8)(device->buffer[3]) >> 1);
760 le_buffer[0] |= (u8)((device->buffer[3] & 0x1) << 7);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700761
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400762 le_buffer[1] = (u8)(device->buffer[4] >> 1);
763 le_buffer[1] |= (u8)((device->buffer[5] & 0x1) << 7);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700764
Harvey Harrison858ad082008-04-29 01:03:34 -0700765 val = get_unaligned_le16(le_buffer);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700766 input_report_abs(inputdev, ABS_Y, val);
767
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700768 /*
769 * Shift the button byte right by one to
770 * make it look like the standard report
771 */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400772 buttonbyte = device->buffer[5] >> 1;
773 } else {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700774
Harvey Harrison858ad082008-04-29 01:03:34 -0700775 val = get_unaligned_le16(&device->buffer[1]);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700776 input_report_abs(inputdev, ABS_X, val);
777
Harvey Harrison858ad082008-04-29 01:03:34 -0700778 val = get_unaligned_le16(&device->buffer[3]);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700779 input_report_abs(inputdev, ABS_Y, val);
780
781 buttonbyte = device->buffer[5];
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700782 }
783
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700784 /* BUTTONS and PROXIMITY */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400785 val = buttonbyte & MASK_INRANGE ? 1 : 0;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700786 input_report_abs(inputdev, ABS_DISTANCE, val);
787
788 /* Convert buttons, only 4 bits possible */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400789 val = buttonbyte & 0x0F;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700790#ifdef USE_BUTTONS
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400791 for (i = 0; i < 5; i++)
792 input_report_key(inputdev, BTN_DIGI + i, val & (1 << i));
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700793#else
794 /* We don't apply any meaning to the bitmask, just report */
795 input_event(inputdev, EV_MSC, MSC_SERIAL, val);
796#endif
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400797
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700798 /* TRANSDUCER */
799 input_report_abs(inputdev, ABS_MISC, device->buffer[6]);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700800 }
801 }
802
803 /* Everybody gets report ID's */
804 input_event(inputdev, EV_MSC, MSC_RAW, device->buffer[0]);
805
806 /* Sync it up */
807 input_sync(inputdev);
808
809 resubmit:
810 rc = usb_submit_urb(urbinfo, GFP_ATOMIC);
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400811 if (rc != 0)
812 err("usb_submit_urb failed rc=0x%x", rc);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700813}
814
815/*
816 * The probe routine. This is called when the kernel find the matching USB
817 * vendor/product. We do the following:
818 *
819 * - Allocate mem for a local structure to manage the device
820 * - Request a HID Report Descriptor from the device and parse it to
821 * find out the device parameters
822 * - Create an input device and assign it attributes
823 * - Allocate an URB so the device can talk to us when the input
824 * queue is open
825 */
826static int gtco_probe(struct usb_interface *usbinterface,
827 const struct usb_device_id *id)
828{
829
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400830 struct gtco *gtco;
831 struct input_dev *input_dev;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700832 struct hid_descriptor *hid_desc;
Dmitry Torokhov501a5252008-05-30 10:40:28 -0400833 char *report;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400834 int result = 0, retry;
835 int error;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700836 struct usb_endpoint_descriptor *endpoint;
837
838 /* Allocate memory for device structure */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400839 gtco = kzalloc(sizeof(struct gtco), GFP_KERNEL);
840 input_dev = input_allocate_device();
841 if (!gtco || !input_dev) {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700842 err("No more memory");
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400843 error = -ENOMEM;
844 goto err_free_devs;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700845 }
846
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400847 /* Set pointer to the input device */
848 gtco->inputdevice = input_dev;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700849
850 /* Save interface information */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400851 gtco->usbdev = usb_get_dev(interface_to_usbdev(usbinterface));
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700852
853 /* Allocate some data for incoming reports */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400854 gtco->buffer = usb_buffer_alloc(gtco->usbdev, REPORT_MAX_SIZE,
855 GFP_KERNEL, &gtco->buf_dma);
856 if (!gtco->buffer) {
857 err("No more memory for us buffers");
858 error = -ENOMEM;
859 goto err_free_devs;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700860 }
861
862 /* Allocate URB for reports */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400863 gtco->urbinfo = usb_alloc_urb(0, GFP_KERNEL);
864 if (!gtco->urbinfo) {
865 err("Failed to allocate URB");
Julia Lawallf4bc95d2008-07-03 12:10:58 -0400866 error = -ENOMEM;
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400867 goto err_free_buf;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700868 }
869
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700870 /*
871 * The endpoint is always altsetting 0, we know this since we know
872 * this device only has one interrupt endpoint
873 */
874 endpoint = &usbinterface->altsetting[0].endpoint[0].desc;
875
876 /* Some debug */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400877 dbg("gtco # interfaces: %d", usbinterface->num_altsetting);
878 dbg("num endpoints: %d", usbinterface->cur_altsetting->desc.bNumEndpoints);
879 dbg("interface class: %d", usbinterface->cur_altsetting->desc.bInterfaceClass);
880 dbg("endpoint: attribute:0x%x type:0x%x", endpoint->bmAttributes, endpoint->bDescriptorType);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700881 if ((endpoint->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) == USB_ENDPOINT_XFER_INT)
882 dbg("endpoint: we have interrupt endpoint\n");
883
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400884 dbg("endpoint extra len:%d ", usbinterface->altsetting[0].extralen);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700885
886 /*
887 * Find the HID descriptor so we can find out the size of the
888 * HID report descriptor
889 */
890 if (usb_get_extra_descriptor(usbinterface->cur_altsetting,
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400891 HID_DEVICE_TYPE, &hid_desc) != 0){
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700892 err("Can't retrieve exta USB descriptor to get hid report descriptor length");
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400893 error = -EIO;
894 goto err_free_urb;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700895 }
896
897 dbg("Extra descriptor success: type:%d len:%d",
898 hid_desc->bDescriptorType, hid_desc->wDescriptorLength);
899
Al Viro6b8588f2008-04-28 07:00:26 +0100900 report = kzalloc(le16_to_cpu(hid_desc->wDescriptorLength), GFP_KERNEL);
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400901 if (!report) {
902 err("No more memory for report");
903 error = -ENOMEM;
904 goto err_free_urb;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700905 }
906
907 /* Couple of tries to get reply */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400908 for (retry = 0; retry < 3; retry++) {
909 result = usb_control_msg(gtco->usbdev,
910 usb_rcvctrlpipe(gtco->usbdev, 0),
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700911 USB_REQ_GET_DESCRIPTOR,
912 USB_RECIP_INTERFACE | USB_DIR_IN,
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400913 REPORT_DEVICE_TYPE << 8,
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700914 0, /* interface */
915 report,
Al Viro6b8588f2008-04-28 07:00:26 +0100916 le16_to_cpu(hid_desc->wDescriptorLength),
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700917 5000); /* 5 secs */
918
Dmitry Torokhov501a5252008-05-30 10:40:28 -0400919 dbg("usb_control_msg result: %d", result);
920 if (result == le16_to_cpu(hid_desc->wDescriptorLength)) {
921 parse_hid_report_descriptor(gtco, report, result);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700922 break;
Dmitry Torokhov501a5252008-05-30 10:40:28 -0400923 }
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700924 }
925
Dmitry Torokhov501a5252008-05-30 10:40:28 -0400926 kfree(report);
927
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700928 /* If we didn't get the report, fail */
Al Viro6b8588f2008-04-28 07:00:26 +0100929 if (result != le16_to_cpu(hid_desc->wDescriptorLength)) {
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700930 err("Failed to get HID Report Descriptor of size: %d",
931 hid_desc->wDescriptorLength);
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400932 error = -EIO;
933 goto err_free_urb;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700934 }
935
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700936 /* Create a device file node */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400937 usb_make_path(gtco->usbdev, gtco->usbpath, sizeof(gtco->usbpath));
938 strlcat(gtco->usbpath, "/input0", sizeof(gtco->usbpath));
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700939
940 /* Set Input device functions */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400941 input_dev->open = gtco_input_open;
942 input_dev->close = gtco_input_close;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700943
944 /* Set input device information */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400945 input_dev->name = "GTCO_CalComp";
946 input_dev->phys = gtco->usbpath;
Dmitry Torokhov7791bda2007-04-12 01:34:39 -0400947
948 input_set_drvdata(input_dev, gtco);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700949
950 /* Now set up all the input device capabilities */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400951 gtco_setup_caps(input_dev);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700952
953 /* Set input device required ID information */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400954 usb_to_input_id(gtco->usbdev, &input_dev->id);
Dmitry Torokhovc0f82d52007-04-12 01:35:03 -0400955 input_dev->dev.parent = &usbinterface->dev;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700956
957 /* Setup the URB, it will be posted later on open of input device */
958 endpoint = &usbinterface->altsetting[0].endpoint[0].desc;
959
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400960 usb_fill_int_urb(gtco->urbinfo,
961 gtco->usbdev,
962 usb_rcvintpipe(gtco->usbdev,
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700963 endpoint->bEndpointAddress),
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400964 gtco->buffer,
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700965 REPORT_MAX_SIZE,
966 gtco_urb_callback,
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400967 gtco,
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700968 endpoint->bInterval);
969
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400970 gtco->urbinfo->transfer_dma = gtco->buf_dma;
971 gtco->urbinfo->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700972
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400973 /* Save gtco pointer in USB interface gtco */
974 usb_set_intfdata(usbinterface, gtco);
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700975
976 /* All done, now register the input device */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400977 error = input_register_device(input_dev);
978 if (error)
979 goto err_free_urb;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700980
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700981 return 0;
982
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400983 err_free_urb:
984 usb_free_urb(gtco->urbinfo);
985 err_free_buf:
986 usb_buffer_free(gtco->usbdev, REPORT_MAX_SIZE,
987 gtco->buffer, gtco->buf_dma);
988 err_free_devs:
Dmitry Torokhov1b726a02007-04-12 01:33:00 -0400989 input_free_device(input_dev);
990 kfree(gtco);
991 return error;
Jeremy Robersona19ceb52007-01-18 08:10:25 -0700992}
993
994/*
995 * This function is a standard USB function called when the USB device
996 * is disconnected. We will get rid of the URV, de-register the input
997 * device, and free up allocated memory
998 */
999static void gtco_disconnect(struct usb_interface *interface)
1000{
Jeremy Robersona19ceb52007-01-18 08:10:25 -07001001 /* Grab private device ptr */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -04001002 struct gtco *gtco = usb_get_intfdata(interface);
Jeremy Robersona19ceb52007-01-18 08:10:25 -07001003
1004 /* Now reverse all the registration stuff */
Dmitry Torokhov1b726a02007-04-12 01:33:00 -04001005 if (gtco) {
1006 input_unregister_device(gtco->inputdevice);
1007 usb_kill_urb(gtco->urbinfo);
1008 usb_free_urb(gtco->urbinfo);
1009 usb_buffer_free(gtco->usbdev, REPORT_MAX_SIZE,
1010 gtco->buffer, gtco->buf_dma);
1011 kfree(gtco);
Jeremy Robersona19ceb52007-01-18 08:10:25 -07001012 }
1013
1014 info("gtco driver disconnected");
1015}
1016
Jeremy Robersona19ceb52007-01-18 08:10:25 -07001017/* STANDARD MODULE LOAD ROUTINES */
1018
1019static struct usb_driver gtco_driverinfo_table = {
Dmitry Torokhov1b726a02007-04-12 01:33:00 -04001020 .name = "gtco",
1021 .id_table = gtco_usbid_table,
1022 .probe = gtco_probe,
1023 .disconnect = gtco_disconnect,
Jeremy Robersona19ceb52007-01-18 08:10:25 -07001024};
Dmitry Torokhov1b726a02007-04-12 01:33:00 -04001025
Jeremy Robersona19ceb52007-01-18 08:10:25 -07001026/*
1027 * Register this module with the USB subsystem
1028 */
1029static int __init gtco_init(void)
1030{
Dmitry Torokhov1b726a02007-04-12 01:33:00 -04001031 int error;
1032
1033 error = usb_register(&gtco_driverinfo_table);
1034 if (error) {
1035 err("usb_register() failed rc=0x%x", error);
1036 return error;
Jeremy Robersona19ceb52007-01-18 08:10:25 -07001037 }
Dmitry Torokhov1b726a02007-04-12 01:33:00 -04001038
1039 printk("GTCO usb driver version: %s", GTCO_VERSION);
1040 return 0;
Jeremy Robersona19ceb52007-01-18 08:10:25 -07001041}
1042
1043/*
1044 * Deregister this module with the USB subsystem
1045 */
1046static void __exit gtco_exit(void)
1047{
1048 usb_deregister(&gtco_driverinfo_table);
1049}
1050
Dmitry Torokhov1b726a02007-04-12 01:33:00 -04001051module_init(gtco_init);
1052module_exit(gtco_exit);
Jeremy Robersona19ceb52007-01-18 08:10:25 -07001053
1054MODULE_LICENSE("GPL");