blob: c7db623682de046e4a122778ca5322760f7f0636 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Native support for the Aiptek HyperPen USB Tablets
3 * (4000U/5000U/6000U/8000U/12000U)
Dmitry Torokhov05f091a2005-05-29 02:29:01 -05004 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Copyright (c) 2001 Chris Atenasio <chris@crud.net>
6 * Copyright (c) 2002-2004 Bryan W. Headley <bwheadley@earthlink.net>
7 *
8 * based on wacom.c by
9 * Vojtech Pavlik <vojtech@suse.cz>
10 * Andreas Bach Aaen <abach@stofanet.dk>
11 * Clifford Wolf <clifford@clifford.at>
12 * Sam Mosel <sam.mosel@computer.org>
13 * James E. Blair <corvus@gnu.org>
14 * Daniel Egger <egger@suse.de>
15 *
16 * Many thanks to Oliver Kuechemann for his support.
17 *
18 * ChangeLog:
19 * v0.1 - Initial release
20 * v0.2 - Hack to get around fake event 28's. (Bryan W. Headley)
21 * v0.3 - Make URB dynamic (Bryan W. Headley, Jun-8-2002)
22 * Released to Linux 2.4.19 and 2.5.x
23 * v0.4 - Rewrote substantial portions of the code to deal with
24 * corrected control sequences, timing, dynamic configuration,
25 * support of 6000U - 12000U, procfs, and macro key support
26 * (Jan-1-2003 - Feb-5-2003, Bryan W. Headley)
27 * v1.0 - Added support for diagnostic messages, count of messages
28 * received from URB - Mar-8-2003, Bryan W. Headley
29 * v1.1 - added support for tablet resolution, changed DV and proximity
30 * some corrections - Jun-22-2003, martin schneebacher
31 * - Added support for the sysfs interface, deprecating the
32 * procfs interface for 2.5.x kernel. Also added support for
33 * Wheel command. Bryan W. Headley July-15-2003.
Dmitry Torokhov05f091a2005-05-29 02:29:01 -050034 * v1.2 - Reworked jitter timer as a kernel thread.
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 * Bryan W. Headley November-28-2003/Jan-10-2004.
36 * v1.3 - Repaired issue of kernel thread going nuts on single-processor
37 * machines, introduced programmableDelay as a command line
38 * parameter. Feb 7 2004, Bryan W. Headley.
39 * v1.4 - Re-wire jitter so it does not require a thread. Courtesy of
40 * Rene van Paassen. Added reporting of physical pointer device
41 * (e.g., stylus, mouse in reports 2, 3, 4, 5. We don't know
42 * for reports 1, 6.)
43 * what physical device reports for reports 1, 6.) Also enabled
44 * MOUSE and LENS tool button modes. Renamed "rubber" to "eraser".
45 * Feb 20, 2004, Bryan W. Headley.
46 * v1.5 - Added previousJitterable, so we don't do jitter delay when the
47 * user is holding a button down for periods of time.
48 *
49 * NOTE:
50 * This kernel driver is augmented by the "Aiptek" XFree86 input
51 * driver for your X server, as well as the Gaiptek GUI Front-end
Dmitry Torokhov05f091a2005-05-29 02:29:01 -050052 * "Tablet Manager".
53 * These three products are highly interactive with one another,
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 * so therefore it's easier to document them all as one subsystem.
Dmitry Torokhov05f091a2005-05-29 02:29:01 -050055 * Please visit the project's "home page", located at,
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 * http://aiptektablet.sourceforge.net.
57 *
58 * This program is free software; you can redistribute it and/or modify
59 * it under the terms of the GNU General Public License as published by
60 * the Free Software Foundation; either version 2 of the License, or
61 * (at your option) any later version.
62 *
63 * This program is distributed in the hope that it will be useful,
64 * but WITHOUT ANY WARRANTY; without even the implied warranty of
65 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
66 * GNU General Public License for more details.
67 *
68 * You should have received a copy of the GNU General Public License
69 * along with this program; if not, write to the Free Software
70 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
71 */
72
73#include <linux/jiffies.h>
74#include <linux/kernel.h>
75#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070076#include <linux/module.h>
77#include <linux/init.h>
David Brownellae0dadc2006-06-13 10:04:34 -070078#include <linux/usb/input.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070079#include <asm/uaccess.h>
80#include <asm/unaligned.h>
81
82/*
83 * Version Information
84 */
85#define DRIVER_VERSION "v1.5 (May-15-2004)"
86#define DRIVER_AUTHOR "Bryan W. Headley/Chris Atenasio"
87#define DRIVER_DESC "Aiptek HyperPen USB Tablet Driver (Linux 2.6.x)"
88
89/*
90 * Aiptek status packet:
91 *
92 * (returned as Report 1 - relative coordinates from mouse and stylus)
93 *
94 * bit7 bit6 bit5 bit4 bit3 bit2 bit1 bit0
95 * byte0 0 0 0 0 0 0 0 1
96 * byte1 0 0 0 0 0 BS2 BS Tip
97 * byte2 X7 X6 X5 X4 X3 X2 X1 X0
98 * byte3 Y7 Y6 Y5 Y4 Y3 Y2 Y1 Y0
99 *
100 * (returned as Report 2 - absolute coordinates from the stylus)
101 *
102 * bit7 bit6 bit5 bit4 bit3 bit2 bit1 bit0
103 * byte0 0 0 0 0 0 0 1 0
104 * byte1 X7 X6 X5 X4 X3 X2 X1 X0
105 * byte2 X15 X14 X13 X12 X11 X10 X9 X8
106 * byte3 Y7 Y6 Y5 Y4 Y3 Y2 Y1 Y0
107 * byte4 Y15 Y14 Y13 Y12 Y11 Y10 Y9 Y8
108 * byte5 * * * BS2 BS1 Tip IR DV
109 * byte6 P7 P6 P5 P4 P3 P2 P1 P0
110 * byte7 P15 P14 P13 P12 P11 P10 P9 P8
111 *
112 * (returned as Report 3 - absolute coordinates from the mouse)
113 *
114 * bit7 bit6 bit5 bit4 bit3 bit2 bit1 bit0
Rene van Paassen2fe57412007-05-21 00:18:24 -0400115 * byte0 0 0 0 0 0 0 1 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 * byte1 X7 X6 X5 X4 X3 X2 X1 X0
117 * byte2 X15 X14 X13 X12 X11 X10 X9 X8
118 * byte3 Y7 Y6 Y5 Y4 Y3 Y2 Y1 Y0
119 * byte4 Y15 Y14 Y13 Y12 Y11 Y10 Y9 Y8
120 * byte5 * * * BS2 BS1 Tip IR DV
121 * byte6 P7 P6 P5 P4 P3 P2 P1 P0
122 * byte7 P15 P14 P13 P12 P11 P10 P9 P8
123 *
124 * (returned as Report 4 - macrokeys from the stylus)
125 *
126 * bit7 bit6 bit5 bit4 bit3 bit2 bit1 bit0
127 * byte0 0 0 0 0 0 1 0 0
128 * byte1 0 0 0 BS2 BS Tip IR DV
129 * byte2 0 0 0 0 0 0 1 0
130 * byte3 0 0 0 K4 K3 K2 K1 K0
131 * byte4 P7 P6 P5 P4 P3 P2 P1 P0
132 * byte5 P15 P14 P13 P12 P11 P10 P9 P8
133 *
134 * (returned as Report 5 - macrokeys from the mouse)
135 *
136 * bit7 bit6 bit5 bit4 bit3 bit2 bit1 bit0
Rene van Paassen2fe57412007-05-21 00:18:24 -0400137 * byte0 0 0 0 0 0 1 0 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 * byte1 0 0 0 BS2 BS Tip IR DV
139 * byte2 0 0 0 0 0 0 1 0
140 * byte3 0 0 0 K4 K3 K2 K1 K0
141 * byte4 P7 P6 P5 P4 P3 P2 P1 P0
142 * byte5 P15 P14 P13 P12 P11 P10 P9 P8
143 *
144 * IR: In Range = Proximity on
145 * DV = Data Valid
146 * BS = Barrel Switch (as in, macro keys)
147 * BS2 also referred to as Tablet Pick
148 *
149 * Command Summary:
150 *
151 * Use report_type CONTROL (3)
152 * Use report_id 2
153 *
154 * Command/Data Description Return Bytes Return Value
155 * 0x10/0x00 SwitchToMouse 0
156 * 0x10/0x01 SwitchToTablet 0
Dmitry Torokhov05f091a2005-05-29 02:29:01 -0500157 * 0x18/0x04 SetResolution 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 * 0x12/0xFF AutoGainOn 0
159 * 0x17/0x00 FilterOn 0
160 * 0x01/0x00 GetXExtension 2 MaxX
161 * 0x01/0x01 GetYExtension 2 MaxY
162 * 0x02/0x00 GetModelCode 2 ModelCode = LOBYTE
163 * 0x03/0x00 GetODMCode 2 ODMCode
164 * 0x08/0x00 GetPressureLevels 2 =512
165 * 0x04/0x00 GetFirmwareVersion 2 Firmware Version
166 * 0x11/0x02 EnableMacroKeys 0
167 *
168 * To initialize the tablet:
169 *
170 * (1) Send Resolution500LPI (Command)
171 * (2) Query for Model code (Option Report)
172 * (3) Query for ODM code (Option Report)
173 * (4) Query for firmware (Option Report)
174 * (5) Query for GetXExtension (Option Report)
175 * (6) Query for GetYExtension (Option Report)
176 * (7) Query for GetPressureLevels (Option Report)
177 * (8) SwitchToTablet for Absolute coordinates, or
178 * SwitchToMouse for Relative coordinates (Command)
179 * (9) EnableMacroKeys (Command)
180 * (10) FilterOn (Command)
181 * (11) AutoGainOn (Command)
182 *
183 * (Step 9 can be omitted, but you'll then have no function keys.)
184 */
185
186#define USB_VENDOR_ID_AIPTEK 0x08ca
187#define USB_REQ_GET_REPORT 0x01
188#define USB_REQ_SET_REPORT 0x09
189
190 /* PointerMode codes
191 */
192#define AIPTEK_POINTER_ONLY_MOUSE_MODE 0
193#define AIPTEK_POINTER_ONLY_STYLUS_MODE 1
194#define AIPTEK_POINTER_EITHER_MODE 2
195
196#define AIPTEK_POINTER_ALLOW_MOUSE_MODE(a) \
197 (a == AIPTEK_POINTER_ONLY_MOUSE_MODE || \
198 a == AIPTEK_POINTER_EITHER_MODE)
199#define AIPTEK_POINTER_ALLOW_STYLUS_MODE(a) \
200 (a == AIPTEK_POINTER_ONLY_STYLUS_MODE || \
201 a == AIPTEK_POINTER_EITHER_MODE)
202
203 /* CoordinateMode code
204 */
205#define AIPTEK_COORDINATE_RELATIVE_MODE 0
206#define AIPTEK_COORDINATE_ABSOLUTE_MODE 1
207
208 /* XTilt and YTilt values
209 */
210#define AIPTEK_TILT_MIN (-128)
211#define AIPTEK_TILT_MAX 127
212#define AIPTEK_TILT_DISABLE (-10101)
213
214 /* Wheel values
215 */
216#define AIPTEK_WHEEL_MIN 0
217#define AIPTEK_WHEEL_MAX 1024
218#define AIPTEK_WHEEL_DISABLE (-10101)
219
220 /* ToolCode values, which BTW are 0x140 .. 0x14f
221 * We have things set up such that if TOOL_BUTTON_FIRED_BIT is
222 * not set, we'll send one instance of AIPTEK_TOOL_BUTTON_xxx.
223 *
224 * Whenever the user resets the value, TOOL_BUTTON_FIRED_BIT will
225 * get reset.
226 */
227#define TOOL_BUTTON(x) ((x) & 0x14f)
228#define TOOL_BUTTON_FIRED(x) ((x) & 0x200)
229#define TOOL_BUTTON_FIRED_BIT 0x200
230 /* toolMode codes
231 */
232#define AIPTEK_TOOL_BUTTON_PEN_MODE BTN_TOOL_PEN
233#define AIPTEK_TOOL_BUTTON_PEN_MODE BTN_TOOL_PEN
234#define AIPTEK_TOOL_BUTTON_PENCIL_MODE BTN_TOOL_PENCIL
235#define AIPTEK_TOOL_BUTTON_BRUSH_MODE BTN_TOOL_BRUSH
236#define AIPTEK_TOOL_BUTTON_AIRBRUSH_MODE BTN_TOOL_AIRBRUSH
237#define AIPTEK_TOOL_BUTTON_ERASER_MODE BTN_TOOL_RUBBER
238#define AIPTEK_TOOL_BUTTON_MOUSE_MODE BTN_TOOL_MOUSE
239#define AIPTEK_TOOL_BUTTON_LENS_MODE BTN_TOOL_LENS
240
241 /* Diagnostic message codes
242 */
243#define AIPTEK_DIAGNOSTIC_NA 0
244#define AIPTEK_DIAGNOSTIC_SENDING_RELATIVE_IN_ABSOLUTE 1
245#define AIPTEK_DIAGNOSTIC_SENDING_ABSOLUTE_IN_RELATIVE 2
246#define AIPTEK_DIAGNOSTIC_TOOL_DISALLOWED 3
247
Dmitry Torokhov05f091a2005-05-29 02:29:01 -0500248 /* Time to wait (in ms) to help mask hand jittering
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 * when pressing the stylus buttons.
250 */
251#define AIPTEK_JITTER_DELAY_DEFAULT 50
252
253 /* Time to wait (in ms) in-between sending the tablet
254 * a command and beginning the process of reading the return
255 * sequence from the tablet.
256 */
257#define AIPTEK_PROGRAMMABLE_DELAY_25 25
258#define AIPTEK_PROGRAMMABLE_DELAY_50 50
259#define AIPTEK_PROGRAMMABLE_DELAY_100 100
260#define AIPTEK_PROGRAMMABLE_DELAY_200 200
261#define AIPTEK_PROGRAMMABLE_DELAY_300 300
262#define AIPTEK_PROGRAMMABLE_DELAY_400 400
263#define AIPTEK_PROGRAMMABLE_DELAY_DEFAULT AIPTEK_PROGRAMMABLE_DELAY_400
264
265 /* Mouse button programming
266 */
Rene van Paassence0982e2007-05-21 00:31:45 -0400267#define AIPTEK_MOUSE_LEFT_BUTTON 0x04
268#define AIPTEK_MOUSE_RIGHT_BUTTON 0x08
269#define AIPTEK_MOUSE_MIDDLE_BUTTON 0x10
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
271 /* Stylus button programming
272 */
273#define AIPTEK_STYLUS_LOWER_BUTTON 0x08
274#define AIPTEK_STYLUS_UPPER_BUTTON 0x10
275
276 /* Length of incoming packet from the tablet
277 */
278#define AIPTEK_PACKET_LENGTH 8
279
280 /* We report in EV_MISC both the proximity and
281 * whether the report came from the stylus, tablet mouse
282 * or "unknown" -- Unknown when the tablet is in relative
283 * mode, because we only get report 1's.
284 */
285#define AIPTEK_REPORT_TOOL_UNKNOWN 0x10
286#define AIPTEK_REPORT_TOOL_STYLUS 0x20
287#define AIPTEK_REPORT_TOOL_MOUSE 0x40
288
289static int programmableDelay = AIPTEK_PROGRAMMABLE_DELAY_DEFAULT;
290static int jitterDelay = AIPTEK_JITTER_DELAY_DEFAULT;
291
292struct aiptek_features {
293 int odmCode; /* Tablet manufacturer code */
294 int modelCode; /* Tablet model code (not unique) */
295 int firmwareCode; /* prom/eeprom version */
296 char usbPath[64 + 1]; /* device's physical usb path */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297};
298
299struct aiptek_settings {
300 int pointerMode; /* stylus-, mouse-only or either */
301 int coordinateMode; /* absolute/relative coords */
302 int toolMode; /* pen, pencil, brush, etc. tool */
303 int xTilt; /* synthetic xTilt amount */
304 int yTilt; /* synthetic yTilt amount */
305 int wheel; /* synthetic wheel amount */
306 int stylusButtonUpper; /* stylus upper btn delivers... */
307 int stylusButtonLower; /* stylus lower btn delivers... */
308 int mouseButtonLeft; /* mouse left btn delivers... */
309 int mouseButtonMiddle; /* mouse middle btn delivers... */
310 int mouseButtonRight; /* mouse right btn delivers... */
311 int programmableDelay; /* delay for tablet programming */
312 int jitterDelay; /* delay for hand jittering */
313};
314
315struct aiptek {
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500316 struct input_dev *inputdev; /* input device struct */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 struct usb_device *usbdev; /* usb device struct */
318 struct urb *urb; /* urb for incoming reports */
319 dma_addr_t data_dma; /* our dma stuffage */
320 struct aiptek_features features; /* tablet's array of features */
321 struct aiptek_settings curSetting; /* tablet's current programmable */
322 struct aiptek_settings newSetting; /* ... and new param settings */
323 unsigned int ifnum; /* interface number for IO */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 int diagnostic; /* tablet diagnostic codes */
325 unsigned long eventCount; /* event count */
326 int inDelay; /* jitter: in jitter delay? */
327 unsigned long endDelay; /* jitter: time when delay ends */
328 int previousJitterable; /* jitterable prev value */
329 unsigned char *data; /* incoming packet data */
330};
331
Rene van Paassen1a54f492007-05-21 00:31:55 -0400332static const int eventTypes[] = {
333 EV_KEY, EV_ABS, EV_REL, EV_MSC,
334};
335
336static const int absEvents[] = {
337 ABS_X, ABS_Y, ABS_PRESSURE, ABS_TILT_X, ABS_TILT_Y,
338 ABS_WHEEL, ABS_MISC,
339};
340
341static const int relEvents[] = {
342 REL_X, REL_Y, REL_WHEEL,
343};
344
Dmitry Torokhov33936fa2007-05-21 00:18:15 -0400345static const int buttonEvents[] = {
346 BTN_LEFT, BTN_RIGHT, BTN_MIDDLE,
347 BTN_TOOL_PEN, BTN_TOOL_RUBBER, BTN_TOOL_PENCIL, BTN_TOOL_AIRBRUSH,
348 BTN_TOOL_BRUSH, BTN_TOOL_MOUSE, BTN_TOOL_LENS, BTN_TOUCH,
349 BTN_STYLUS, BTN_STYLUS2,
350};
351
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352/*
353 * Permit easy lookup of keyboard events to send, versus
354 * the bitmap which comes from the tablet. This hides the
355 * issue that the F_keys are not sequentially numbered.
356 */
Arjan van de Ven4c4c9432005-11-29 09:43:42 +0100357static const int macroKeyEvents[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 KEY_ESC, KEY_F1, KEY_F2, KEY_F3, KEY_F4, KEY_F5,
359 KEY_F6, KEY_F7, KEY_F8, KEY_F9, KEY_F10, KEY_F11,
360 KEY_F12, KEY_F13, KEY_F14, KEY_F15, KEY_F16, KEY_F17,
361 KEY_F18, KEY_F19, KEY_F20, KEY_F21, KEY_F22, KEY_F23,
362 KEY_F24, KEY_STOP, KEY_AGAIN, KEY_PROPS, KEY_UNDO,
363 KEY_FRONT, KEY_COPY, KEY_OPEN, KEY_PASTE, 0
364};
365
366/***********************************************************************
Dmitry Torokhovcd438a52007-05-21 00:17:57 -0400367 * Map values to strings and back. Every map shoudl have the following
368 * as its last element: { NULL, AIPTEK_INVALID_VALUE }.
369 */
370#define AIPTEK_INVALID_VALUE -1
371
372struct aiptek_map {
373 const char *string;
374 int value;
375};
376
377static int map_str_to_val(const struct aiptek_map *map, const char *str, size_t count)
378{
379 const struct aiptek_map *p;
380
381 for (p = map; p->string; p++)
382 if (!strncmp(str, p->string, count))
383 return p->value;
384
385 return AIPTEK_INVALID_VALUE;
386}
387
388static const char *map_val_to_str(const struct aiptek_map *map, int val)
389{
390 const struct aiptek_map *p;
391
392 for (p = map; p->value != AIPTEK_INVALID_VALUE; p++)
393 if (val == p->value)
394 return p->string;
395
396 return "unknown";
397}
398
399/***********************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 * aiptek_irq can receive one of six potential reports.
401 * The documentation for each is in the body of the function.
402 *
403 * The tablet reports on several attributes per invocation of
404 * aiptek_irq. Because the Linux Input Event system allows the
405 * transmission of ONE attribute per input_report_xxx() call,
406 * collation has to be done on the other end to reconstitute
407 * a complete tablet report. Further, the number of Input Event reports
408 * submitted varies, depending on what USB report type, and circumstance.
409 * To deal with this, EV_MSC is used to indicate an 'end-of-report'
410 * message. This has been an undocumented convention understood by the kernel
411 * tablet driver and clients such as gpm and XFree86's tablet drivers.
412 *
413 * Of the information received from the tablet, the one piece I
414 * cannot transmit is the proximity bit (without resorting to an EV_MSC
415 * convention above.) I therefore have taken over REL_MISC and ABS_MISC
416 * (for relative and absolute reports, respectively) for communicating
417 * Proximity. Why two events? I thought it interesting to know if the
Steven Cole093cf722005-05-03 19:07:24 -0600418 * Proximity event occurred while the tablet was in absolute or relative
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 * mode.
Rene van Paassenda9fda42007-05-21 00:32:03 -0400420 * Update: REL_MISC proved not to be such a good idea. With REL_MISC you
421 * get an event transmitted each time. ABS_MISC works better, since it
422 * can be set and re-set. Thus, only using ABS_MISC from now on.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 *
424 * Other tablets use the notion of a certain minimum stylus pressure
425 * to infer proximity. While that could have been done, that is yet
426 * another 'by convention' behavior, the documentation for which
427 * would be spread between two (or more) pieces of software.
428 *
429 * EV_MSC usage was terminated for this purpose in Linux 2.5.x, and
430 * replaced with the input_sync() method (which emits EV_SYN.)
431 */
432
David Howells7d12e782006-10-05 14:55:46 +0100433static void aiptek_irq(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434{
435 struct aiptek *aiptek = urb->context;
436 unsigned char *data = aiptek->data;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500437 struct input_dev *inputdev = aiptek->inputdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 int jitterable = 0;
439 int retval, macro, x, y, z, left, right, middle, p, dv, tip, bs, pck;
440
441 switch (urb->status) {
442 case 0:
443 /* Success */
444 break;
445
446 case -ECONNRESET:
447 case -ENOENT:
448 case -ESHUTDOWN:
449 /* This urb is terminated, clean up */
450 dbg("%s - urb shutting down with status: %d",
451 __FUNCTION__, urb->status);
452 return;
453
454 default:
455 dbg("%s - nonzero urb status received: %d",
456 __FUNCTION__, urb->status);
457 goto exit;
458 }
459
460 /* See if we are in a delay loop -- throw out report if true.
461 */
462 if (aiptek->inDelay == 1 && time_after(aiptek->endDelay, jiffies)) {
463 goto exit;
464 }
465
466 aiptek->inDelay = 0;
467 aiptek->eventCount++;
468
469 /* Report 1 delivers relative coordinates with either a stylus
470 * or the mouse. You do not know, however, which input
471 * tool generated the event.
472 */
473 if (data[0] == 1) {
474 if (aiptek->curSetting.coordinateMode ==
475 AIPTEK_COORDINATE_ABSOLUTE_MODE) {
476 aiptek->diagnostic =
477 AIPTEK_DIAGNOSTIC_SENDING_RELATIVE_IN_ABSOLUTE;
478 } else {
Dmitry Torokhov37767b62007-05-21 00:18:08 -0400479 x = (signed char) data[2];
480 y = (signed char) data[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
482 /* jitterable keeps track of whether any button has been pressed.
483 * We're also using it to remap the physical mouse button mask
484 * to pseudo-settings. (We don't specifically care about it's
485 * value after moving/transposing mouse button bitmasks, except
486 * that a non-zero value indicates that one or more
487 * mouse button was pressed.)
488 */
Mark Vytlacil0038cae2007-05-21 00:31:50 -0400489 jitterable = data[1] & 0x07;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
Mark Vytlacil0038cae2007-05-21 00:31:50 -0400491 left = (data[1] & aiptek->curSetting.mouseButtonLeft >> 2) != 0 ? 1 : 0;
492 right = (data[1] & aiptek->curSetting.mouseButtonRight >> 2) != 0 ? 1 : 0;
493 middle = (data[1] & aiptek->curSetting.mouseButtonMiddle >> 2) != 0 ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
495 input_report_key(inputdev, BTN_LEFT, left);
496 input_report_key(inputdev, BTN_MIDDLE, middle);
497 input_report_key(inputdev, BTN_RIGHT, right);
Mark Vytlacil0038cae2007-05-21 00:31:50 -0400498
499 input_report_abs(inputdev, ABS_MISC,
500 1 | AIPTEK_REPORT_TOOL_UNKNOWN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 input_report_rel(inputdev, REL_X, x);
502 input_report_rel(inputdev, REL_Y, y);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
504 /* Wheel support is in the form of a single-event
505 * firing.
506 */
507 if (aiptek->curSetting.wheel != AIPTEK_WHEEL_DISABLE) {
508 input_report_rel(inputdev, REL_WHEEL,
509 aiptek->curSetting.wheel);
510 aiptek->curSetting.wheel = AIPTEK_WHEEL_DISABLE;
511 }
512 input_sync(inputdev);
513 }
514 }
515 /* Report 2 is delivered only by the stylus, and delivers
516 * absolute coordinates.
517 */
518 else if (data[0] == 2) {
519 if (aiptek->curSetting.coordinateMode == AIPTEK_COORDINATE_RELATIVE_MODE) {
520 aiptek->diagnostic = AIPTEK_DIAGNOSTIC_SENDING_ABSOLUTE_IN_RELATIVE;
521 } else if (!AIPTEK_POINTER_ALLOW_STYLUS_MODE
522 (aiptek->curSetting.pointerMode)) {
523 aiptek->diagnostic = AIPTEK_DIAGNOSTIC_TOOL_DISALLOWED;
524 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 x = le16_to_cpu(get_unaligned((__le16 *) (data + 1)));
526 y = le16_to_cpu(get_unaligned((__le16 *) (data + 3)));
527 z = le16_to_cpu(get_unaligned((__le16 *) (data + 6)));
528
Rene van Paassenfe981f22007-05-21 00:31:24 -0400529 dv = (data[5] & 0x01) != 0 ? 1 : 0;
530 p = (data[5] & 0x02) != 0 ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 tip = (data[5] & 0x04) != 0 ? 1 : 0;
532
533 /* Use jitterable to re-arrange button masks
534 */
535 jitterable = data[5] & 0x18;
536
537 bs = (data[5] & aiptek->curSetting.stylusButtonLower) != 0 ? 1 : 0;
538 pck = (data[5] & aiptek->curSetting.stylusButtonUpper) != 0 ? 1 : 0;
539
540 /* dv indicates 'data valid' (e.g., the tablet is in sync
541 * and has delivered a "correct" report) We will ignore
542 * all 'bad' reports...
543 */
544 if (dv != 0) {
545 /* If we've not already sent a tool_button_?? code, do
546 * so now. Then set FIRED_BIT so it won't be resent unless
547 * the user forces FIRED_BIT off.
548 */
549 if (TOOL_BUTTON_FIRED
550 (aiptek->curSetting.toolMode) == 0) {
551 input_report_key(inputdev,
552 TOOL_BUTTON(aiptek->curSetting.toolMode),
553 1);
554 aiptek->curSetting.toolMode |= TOOL_BUTTON_FIRED_BIT;
555 }
556
557 if (p != 0) {
558 input_report_abs(inputdev, ABS_X, x);
559 input_report_abs(inputdev, ABS_Y, y);
560 input_report_abs(inputdev, ABS_PRESSURE, z);
561
562 input_report_key(inputdev, BTN_TOUCH, tip);
563 input_report_key(inputdev, BTN_STYLUS, bs);
564 input_report_key(inputdev, BTN_STYLUS2, pck);
565
566 if (aiptek->curSetting.xTilt !=
567 AIPTEK_TILT_DISABLE) {
568 input_report_abs(inputdev,
569 ABS_TILT_X,
570 aiptek->curSetting.xTilt);
571 }
572 if (aiptek->curSetting.yTilt != AIPTEK_TILT_DISABLE) {
573 input_report_abs(inputdev,
574 ABS_TILT_Y,
575 aiptek->curSetting.yTilt);
576 }
577
578 /* Wheel support is in the form of a single-event
579 * firing.
580 */
581 if (aiptek->curSetting.wheel !=
582 AIPTEK_WHEEL_DISABLE) {
583 input_report_abs(inputdev,
584 ABS_WHEEL,
585 aiptek->curSetting.wheel);
586 aiptek->curSetting.wheel = AIPTEK_WHEEL_DISABLE;
587 }
588 }
589 input_report_abs(inputdev, ABS_MISC, p | AIPTEK_REPORT_TOOL_STYLUS);
590 input_sync(inputdev);
591 }
592 }
593 }
594 /* Report 3's come from the mouse in absolute mode.
595 */
596 else if (data[0] == 3) {
597 if (aiptek->curSetting.coordinateMode == AIPTEK_COORDINATE_RELATIVE_MODE) {
598 aiptek->diagnostic = AIPTEK_DIAGNOSTIC_SENDING_ABSOLUTE_IN_RELATIVE;
599 } else if (!AIPTEK_POINTER_ALLOW_MOUSE_MODE
600 (aiptek->curSetting.pointerMode)) {
601 aiptek->diagnostic = AIPTEK_DIAGNOSTIC_TOOL_DISALLOWED;
602 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 x = le16_to_cpu(get_unaligned((__le16 *) (data + 1)));
604 y = le16_to_cpu(get_unaligned((__le16 *) (data + 3)));
605
606 jitterable = data[5] & 0x1c;
607
Rene van Paassenfe981f22007-05-21 00:31:24 -0400608 dv = (data[5] & 0x01) != 0 ? 1 : 0;
609 p = (data[5] & 0x02) != 0 ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 left = (data[5] & aiptek->curSetting.mouseButtonLeft) != 0 ? 1 : 0;
611 right = (data[5] & aiptek->curSetting.mouseButtonRight) != 0 ? 1 : 0;
612 middle = (data[5] & aiptek->curSetting.mouseButtonMiddle) != 0 ? 1 : 0;
613
614 if (dv != 0) {
615 /* If we've not already sent a tool_button_?? code, do
616 * so now. Then set FIRED_BIT so it won't be resent unless
617 * the user forces FIRED_BIT off.
618 */
619 if (TOOL_BUTTON_FIRED
620 (aiptek->curSetting.toolMode) == 0) {
621 input_report_key(inputdev,
622 TOOL_BUTTON(aiptek->curSetting.toolMode),
623 1);
624 aiptek->curSetting.toolMode |= TOOL_BUTTON_FIRED_BIT;
625 }
626
627 if (p != 0) {
628 input_report_abs(inputdev, ABS_X, x);
629 input_report_abs(inputdev, ABS_Y, y);
630
631 input_report_key(inputdev, BTN_LEFT, left);
632 input_report_key(inputdev, BTN_MIDDLE, middle);
633 input_report_key(inputdev, BTN_RIGHT, right);
634
635 /* Wheel support is in the form of a single-event
636 * firing.
637 */
638 if (aiptek->curSetting.wheel != AIPTEK_WHEEL_DISABLE) {
639 input_report_abs(inputdev,
640 ABS_WHEEL,
641 aiptek->curSetting.wheel);
642 aiptek->curSetting.wheel = AIPTEK_WHEEL_DISABLE;
643 }
644 }
Rene van Paassenda9fda42007-05-21 00:32:03 -0400645 input_report_abs(inputdev, ABS_MISC, p | AIPTEK_REPORT_TOOL_MOUSE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 input_sync(inputdev);
647 }
648 }
649 }
650 /* Report 4s come from the macro keys when pressed by stylus
651 */
652 else if (data[0] == 4) {
653 jitterable = data[1] & 0x18;
654
Rene van Paassenfe981f22007-05-21 00:31:24 -0400655 dv = (data[1] & 0x01) != 0 ? 1 : 0;
656 p = (data[1] & 0x02) != 0 ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 tip = (data[1] & 0x04) != 0 ? 1 : 0;
658 bs = (data[1] & aiptek->curSetting.stylusButtonLower) != 0 ? 1 : 0;
659 pck = (data[1] & aiptek->curSetting.stylusButtonUpper) != 0 ? 1 : 0;
660
661 macro = data[3];
662 z = le16_to_cpu(get_unaligned((__le16 *) (data + 4)));
663
664 if (dv != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 /* If we've not already sent a tool_button_?? code, do
666 * so now. Then set FIRED_BIT so it won't be resent unless
667 * the user forces FIRED_BIT off.
668 */
669 if (TOOL_BUTTON_FIRED(aiptek->curSetting.toolMode) == 0) {
670 input_report_key(inputdev,
671 TOOL_BUTTON(aiptek->curSetting.toolMode),
672 1);
673 aiptek->curSetting.toolMode |= TOOL_BUTTON_FIRED_BIT;
674 }
675
676 if (p != 0) {
677 input_report_key(inputdev, BTN_TOUCH, tip);
678 input_report_key(inputdev, BTN_STYLUS, bs);
679 input_report_key(inputdev, BTN_STYLUS2, pck);
680 input_report_abs(inputdev, ABS_PRESSURE, z);
681 }
682
683 /* For safety, we're sending key 'break' codes for the
684 * neighboring macro keys.
685 */
686 if (macro > 0) {
687 input_report_key(inputdev,
688 macroKeyEvents[macro - 1], 0);
689 }
690 if (macro < 25) {
691 input_report_key(inputdev,
692 macroKeyEvents[macro + 1], 0);
693 }
694 input_report_key(inputdev, macroKeyEvents[macro], p);
695 input_report_abs(inputdev, ABS_MISC,
696 p | AIPTEK_REPORT_TOOL_STYLUS);
697 input_sync(inputdev);
698 }
699 }
700 /* Report 5s come from the macro keys when pressed by mouse
701 */
702 else if (data[0] == 5) {
703 jitterable = data[1] & 0x1c;
704
Rene van Paassenfe981f22007-05-21 00:31:24 -0400705 dv = (data[1] & 0x01) != 0 ? 1 : 0;
706 p = (data[1] & 0x02) != 0 ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 left = (data[1]& aiptek->curSetting.mouseButtonLeft) != 0 ? 1 : 0;
708 right = (data[1] & aiptek->curSetting.mouseButtonRight) != 0 ? 1 : 0;
709 middle = (data[1] & aiptek->curSetting.mouseButtonMiddle) != 0 ? 1 : 0;
710 macro = data[3];
711
712 if (dv != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 /* If we've not already sent a tool_button_?? code, do
714 * so now. Then set FIRED_BIT so it won't be resent unless
715 * the user forces FIRED_BIT off.
716 */
717 if (TOOL_BUTTON_FIRED(aiptek->curSetting.toolMode) == 0) {
718 input_report_key(inputdev,
719 TOOL_BUTTON(aiptek->curSetting.toolMode),
720 1);
721 aiptek->curSetting.toolMode |= TOOL_BUTTON_FIRED_BIT;
722 }
723
724 if (p != 0) {
725 input_report_key(inputdev, BTN_LEFT, left);
726 input_report_key(inputdev, BTN_MIDDLE, middle);
727 input_report_key(inputdev, BTN_RIGHT, right);
728 }
729
730 /* For safety, we're sending key 'break' codes for the
731 * neighboring macro keys.
732 */
733 if (macro > 0) {
734 input_report_key(inputdev,
735 macroKeyEvents[macro - 1], 0);
736 }
737 if (macro < 25) {
738 input_report_key(inputdev,
739 macroKeyEvents[macro + 1], 0);
740 }
741
742 input_report_key(inputdev, macroKeyEvents[macro], 1);
743 input_report_rel(inputdev, ABS_MISC,
744 p | AIPTEK_REPORT_TOOL_MOUSE);
745 input_sync(inputdev);
746 }
747 }
748 /* We have no idea which tool can generate a report 6. Theoretically,
749 * neither need to, having been given reports 4 & 5 for such use.
750 * However, report 6 is the 'official-looking' report for macroKeys;
751 * reports 4 & 5 supposively are used to support unnamed, unknown
752 * hat switches (which just so happen to be the macroKeys.)
753 */
754 else if (data[0] == 6) {
755 macro = le16_to_cpu(get_unaligned((__le16 *) (data + 1)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 if (macro > 0) {
757 input_report_key(inputdev, macroKeyEvents[macro - 1],
758 0);
759 }
760 if (macro < 25) {
761 input_report_key(inputdev, macroKeyEvents[macro + 1],
762 0);
763 }
764
765 /* If we've not already sent a tool_button_?? code, do
766 * so now. Then set FIRED_BIT so it won't be resent unless
767 * the user forces FIRED_BIT off.
768 */
769 if (TOOL_BUTTON_FIRED(aiptek->curSetting.toolMode) == 0) {
770 input_report_key(inputdev,
771 TOOL_BUTTON(aiptek->curSetting.
772 toolMode), 1);
773 aiptek->curSetting.toolMode |= TOOL_BUTTON_FIRED_BIT;
774 }
775
776 input_report_key(inputdev, macroKeyEvents[macro], 1);
777 input_report_abs(inputdev, ABS_MISC,
778 1 | AIPTEK_REPORT_TOOL_UNKNOWN);
779 input_sync(inputdev);
780 } else {
781 dbg("Unknown report %d", data[0]);
782 }
783
784 /* Jitter may occur when the user presses a button on the stlyus
785 * or the mouse. What we do to prevent that is wait 'x' milliseconds
786 * following a 'jitterable' event, which should give the hand some time
787 * stabilize itself.
788 *
789 * We just introduced aiptek->previousJitterable to carry forth the
790 * notion that jitter occurs when the button state changes from on to off:
791 * a person drawing, holding a button down is not subject to jittering.
792 * With that in mind, changing from upper button depressed to lower button
793 * WILL transition through a jitter delay.
794 */
795
796 if (aiptek->previousJitterable != jitterable &&
797 aiptek->curSetting.jitterDelay != 0 && aiptek->inDelay != 1) {
798 aiptek->endDelay = jiffies +
799 ((aiptek->curSetting.jitterDelay * HZ) / 1000);
800 aiptek->inDelay = 1;
801 }
802 aiptek->previousJitterable = jitterable;
803
804exit:
805 retval = usb_submit_urb(urb, GFP_ATOMIC);
806 if (retval != 0) {
807 err("%s - usb_submit_urb failed with result %d",
808 __FUNCTION__, retval);
809 }
810}
811
812/***********************************************************************
813 * These are the USB id's known so far. We do not identify them to
814 * specific Aiptek model numbers, because there has been overlaps,
815 * use, and reuse of id's in existing models. Certain models have
816 * been known to use more than one ID, indicative perhaps of
Dmitry Torokhov05f091a2005-05-29 02:29:01 -0500817 * manufacturing revisions. In any event, we consider these
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 * IDs to not be model-specific nor unique.
819 */
820static const struct usb_device_id aiptek_ids[] = {
821 {USB_DEVICE(USB_VENDOR_ID_AIPTEK, 0x01)},
822 {USB_DEVICE(USB_VENDOR_ID_AIPTEK, 0x10)},
823 {USB_DEVICE(USB_VENDOR_ID_AIPTEK, 0x20)},
824 {USB_DEVICE(USB_VENDOR_ID_AIPTEK, 0x21)},
825 {USB_DEVICE(USB_VENDOR_ID_AIPTEK, 0x22)},
826 {USB_DEVICE(USB_VENDOR_ID_AIPTEK, 0x23)},
827 {USB_DEVICE(USB_VENDOR_ID_AIPTEK, 0x24)},
828 {}
829};
830
831MODULE_DEVICE_TABLE(usb, aiptek_ids);
832
833/***********************************************************************
834 * Open an instance of the tablet driver.
835 */
836static int aiptek_open(struct input_dev *inputdev)
837{
Dmitry Torokhov7791bda2007-04-12 01:34:39 -0400838 struct aiptek *aiptek = input_get_drvdata(inputdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 aiptek->urb->dev = aiptek->usbdev;
Dmitry Torokhov65cde542005-05-29 02:29:38 -0500841 if (usb_submit_urb(aiptek->urb, GFP_KERNEL) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
844 return 0;
845}
846
847/***********************************************************************
848 * Close an instance of the tablet driver.
849 */
850static void aiptek_close(struct input_dev *inputdev)
851{
Dmitry Torokhov7791bda2007-04-12 01:34:39 -0400852 struct aiptek *aiptek = input_get_drvdata(inputdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
Dmitry Torokhov65cde542005-05-29 02:29:38 -0500854 usb_kill_urb(aiptek->urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855}
856
857/***********************************************************************
Dmitry Torokhov05f091a2005-05-29 02:29:01 -0500858 * aiptek_set_report and aiptek_get_report() are borrowed from Linux 2.4.x,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 * where they were known as usb_set_report and usb_get_report.
860 */
861static int
862aiptek_set_report(struct aiptek *aiptek,
863 unsigned char report_type,
864 unsigned char report_id, void *buffer, int size)
865{
866 return usb_control_msg(aiptek->usbdev,
867 usb_sndctrlpipe(aiptek->usbdev, 0),
868 USB_REQ_SET_REPORT,
869 USB_TYPE_CLASS | USB_RECIP_INTERFACE |
870 USB_DIR_OUT, (report_type << 8) + report_id,
871 aiptek->ifnum, buffer, size, 5000);
872}
873
874static int
875aiptek_get_report(struct aiptek *aiptek,
876 unsigned char report_type,
877 unsigned char report_id, void *buffer, int size)
878{
879 return usb_control_msg(aiptek->usbdev,
880 usb_rcvctrlpipe(aiptek->usbdev, 0),
881 USB_REQ_GET_REPORT,
882 USB_TYPE_CLASS | USB_RECIP_INTERFACE |
883 USB_DIR_IN, (report_type << 8) + report_id,
884 aiptek->ifnum, buffer, size, 5000);
885}
886
887/***********************************************************************
888 * Send a command to the tablet.
889 */
890static int
891aiptek_command(struct aiptek *aiptek, unsigned char command, unsigned char data)
892{
893 const int sizeof_buf = 3 * sizeof(u8);
894 int ret;
895 u8 *buf;
896
897 buf = kmalloc(sizeof_buf, GFP_KERNEL);
898 if (!buf)
899 return -ENOMEM;
900
901 buf[0] = 2;
902 buf[1] = command;
903 buf[2] = data;
904
905 if ((ret =
906 aiptek_set_report(aiptek, 3, 2, buf, sizeof_buf)) != sizeof_buf) {
907 dbg("aiptek_program: failed, tried to send: 0x%02x 0x%02x",
908 command, data);
909 }
910 kfree(buf);
911 return ret < 0 ? ret : 0;
912}
913
914/***********************************************************************
915 * Retrieve information from the tablet. Querying info is defined as first
916 * sending the {command,data} sequence as a command, followed by a wait
917 * (aka, "programmaticDelay") and then a "read" request.
918 */
919static int
920aiptek_query(struct aiptek *aiptek, unsigned char command, unsigned char data)
921{
922 const int sizeof_buf = 3 * sizeof(u8);
923 int ret;
924 u8 *buf;
925
926 buf = kmalloc(sizeof_buf, GFP_KERNEL);
927 if (!buf)
928 return -ENOMEM;
929
930 buf[0] = 2;
931 buf[1] = command;
932 buf[2] = data;
933
934 if (aiptek_command(aiptek, command, data) != 0) {
935 kfree(buf);
936 return -EIO;
937 }
938 msleep(aiptek->curSetting.programmableDelay);
939
940 if ((ret =
941 aiptek_get_report(aiptek, 3, 2, buf, sizeof_buf)) != sizeof_buf) {
942 dbg("aiptek_query failed: returned 0x%02x 0x%02x 0x%02x",
943 buf[0], buf[1], buf[2]);
944 ret = -EIO;
945 } else {
946 ret = le16_to_cpu(get_unaligned((__le16 *) (buf + 1)));
947 }
948 kfree(buf);
949 return ret;
950}
951
952/***********************************************************************
953 * Program the tablet into either absolute or relative mode.
954 * We also get information about the tablet's size.
955 */
956static int aiptek_program_tablet(struct aiptek *aiptek)
957{
958 int ret;
959 /* Execute Resolution500LPI */
960 if ((ret = aiptek_command(aiptek, 0x18, 0x04)) < 0)
961 return ret;
962
963 /* Query getModelCode */
964 if ((ret = aiptek_query(aiptek, 0x02, 0x00)) < 0)
965 return ret;
966 aiptek->features.modelCode = ret & 0xff;
967
968 /* Query getODMCode */
969 if ((ret = aiptek_query(aiptek, 0x03, 0x00)) < 0)
970 return ret;
971 aiptek->features.odmCode = ret;
972
973 /* Query getFirmwareCode */
974 if ((ret = aiptek_query(aiptek, 0x04, 0x00)) < 0)
975 return ret;
976 aiptek->features.firmwareCode = ret;
977
978 /* Query getXextension */
979 if ((ret = aiptek_query(aiptek, 0x01, 0x00)) < 0)
980 return ret;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500981 aiptek->inputdev->absmin[ABS_X] = 0;
982 aiptek->inputdev->absmax[ABS_X] = ret - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
984 /* Query getYextension */
985 if ((ret = aiptek_query(aiptek, 0x01, 0x01)) < 0)
986 return ret;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500987 aiptek->inputdev->absmin[ABS_Y] = 0;
988 aiptek->inputdev->absmax[ABS_Y] = ret - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
990 /* Query getPressureLevels */
991 if ((ret = aiptek_query(aiptek, 0x08, 0x00)) < 0)
992 return ret;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500993 aiptek->inputdev->absmin[ABS_PRESSURE] = 0;
994 aiptek->inputdev->absmax[ABS_PRESSURE] = ret - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
996 /* Depending on whether we are in absolute or relative mode, we will
997 * do a switchToTablet(absolute) or switchToMouse(relative) command.
998 */
999 if (aiptek->curSetting.coordinateMode ==
1000 AIPTEK_COORDINATE_ABSOLUTE_MODE) {
1001 /* Execute switchToTablet */
1002 if ((ret = aiptek_command(aiptek, 0x10, 0x01)) < 0) {
1003 return ret;
1004 }
1005 } else {
1006 /* Execute switchToMouse */
1007 if ((ret = aiptek_command(aiptek, 0x10, 0x00)) < 0) {
1008 return ret;
1009 }
1010 }
1011
1012 /* Enable the macro keys */
1013 if ((ret = aiptek_command(aiptek, 0x11, 0x02)) < 0)
1014 return ret;
1015#if 0
1016 /* Execute FilterOn */
1017 if ((ret = aiptek_command(aiptek, 0x17, 0x00)) < 0)
1018 return ret;
1019#endif
1020
1021 /* Execute AutoGainOn */
1022 if ((ret = aiptek_command(aiptek, 0x12, 0xff)) < 0)
1023 return ret;
1024
1025 /* Reset the eventCount, so we track events from last (re)programming
1026 */
1027 aiptek->diagnostic = AIPTEK_DIAGNOSTIC_NA;
1028 aiptek->eventCount = 0;
1029
1030 return 0;
1031}
1032
1033/***********************************************************************
1034 * Sysfs functions. Sysfs prefers that individually-tunable parameters
1035 * exist in their separate pseudo-files. Summary data that is immutable
1036 * may exist in a singular file so long as you don't define a writeable
1037 * interface.
1038 */
1039
1040/***********************************************************************
1041 * support the 'size' file -- display support
1042 */
Yani Ioannou060b8842005-05-17 06:44:04 -04001043static ssize_t show_tabletSize(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044{
1045 struct aiptek *aiptek = dev_get_drvdata(dev);
1046
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 return snprintf(buf, PAGE_SIZE, "%dx%d\n",
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001048 aiptek->inputdev->absmax[ABS_X] + 1,
1049 aiptek->inputdev->absmax[ABS_Y] + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050}
1051
1052/* These structs define the sysfs files, param #1 is the name of the
1053 * file, param 2 is the file permissions, param 3 & 4 are to the
1054 * output generator and input parser routines. Absence of a routine is
1055 * permitted -- it only means can't either 'cat' the file, or send data
1056 * to it.
1057 */
1058static DEVICE_ATTR(size, S_IRUGO, show_tabletSize, NULL);
1059
1060/***********************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 * support routines for the 'pointer_mode' file. Note that this file
1062 * both displays current setting and allows reprogramming.
1063 */
Dmitry Torokhovcd438a52007-05-21 00:17:57 -04001064static struct aiptek_map pointer_mode_map[] = {
1065 { "stylus", AIPTEK_POINTER_ONLY_STYLUS_MODE },
1066 { "mouse", AIPTEK_POINTER_ONLY_MOUSE_MODE },
1067 { "either", AIPTEK_POINTER_EITHER_MODE },
1068 { NULL, AIPTEK_INVALID_VALUE }
1069};
1070
Yani Ioannou060b8842005-05-17 06:44:04 -04001071static ssize_t show_tabletPointerMode(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072{
1073 struct aiptek *aiptek = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
Dmitry Torokhovcd438a52007-05-21 00:17:57 -04001075 return snprintf(buf, PAGE_SIZE, "%s\n",
1076 map_val_to_str(pointer_mode_map,
1077 aiptek->curSetting.pointerMode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078}
1079
1080static ssize_t
Yani Ioannou060b8842005-05-17 06:44:04 -04001081store_tabletPointerMode(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082{
1083 struct aiptek *aiptek = dev_get_drvdata(dev);
Dmitry Torokhovcd438a52007-05-21 00:17:57 -04001084 int new_mode = map_str_to_val(pointer_mode_map, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085
Dmitry Torokhovcd438a52007-05-21 00:17:57 -04001086 if (new_mode == AIPTEK_INVALID_VALUE)
1087 return -EINVAL;
1088
1089 aiptek->newSetting.pointerMode = new_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 return count;
1091}
1092
1093static DEVICE_ATTR(pointer_mode,
1094 S_IRUGO | S_IWUGO,
1095 show_tabletPointerMode, store_tabletPointerMode);
1096
1097/***********************************************************************
1098 * support routines for the 'coordinate_mode' file. Note that this file
1099 * both displays current setting and allows reprogramming.
1100 */
Dmitry Torokhovcd438a52007-05-21 00:17:57 -04001101
1102static struct aiptek_map coordinate_mode_map[] = {
1103 { "absolute", AIPTEK_COORDINATE_ABSOLUTE_MODE },
1104 { "relative", AIPTEK_COORDINATE_RELATIVE_MODE },
1105 { NULL, AIPTEK_INVALID_VALUE }
1106};
1107
Yani Ioannou060b8842005-05-17 06:44:04 -04001108static ssize_t show_tabletCoordinateMode(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109{
1110 struct aiptek *aiptek = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
Dmitry Torokhovcd438a52007-05-21 00:17:57 -04001112 return snprintf(buf, PAGE_SIZE, "%s\n",
1113 map_val_to_str(coordinate_mode_map,
1114 aiptek->curSetting.coordinateMode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115}
1116
1117static ssize_t
Yani Ioannou060b8842005-05-17 06:44:04 -04001118store_tabletCoordinateMode(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119{
1120 struct aiptek *aiptek = dev_get_drvdata(dev);
Dmitry Torokhovcd438a52007-05-21 00:17:57 -04001121 int new_mode = map_str_to_val(coordinate_mode_map, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
Dmitry Torokhovcd438a52007-05-21 00:17:57 -04001123 if (new_mode == AIPTEK_INVALID_VALUE)
1124 return -EINVAL;
1125
1126 aiptek->newSetting.coordinateMode = new_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 return count;
1128}
1129
1130static DEVICE_ATTR(coordinate_mode,
1131 S_IRUGO | S_IWUGO,
1132 show_tabletCoordinateMode, store_tabletCoordinateMode);
1133
1134/***********************************************************************
1135 * support routines for the 'tool_mode' file. Note that this file
1136 * both displays current setting and allows reprogramming.
1137 */
Dmitry Torokhovcd438a52007-05-21 00:17:57 -04001138
1139static struct aiptek_map tool_mode_map[] = {
1140 { "mouse", AIPTEK_TOOL_BUTTON_MOUSE_MODE },
1141 { "eraser", AIPTEK_TOOL_BUTTON_ERASER_MODE },
1142 { "pencil", AIPTEK_TOOL_BUTTON_PENCIL_MODE },
1143 { "pen", AIPTEK_TOOL_BUTTON_PEN_MODE },
1144 { "brush", AIPTEK_TOOL_BUTTON_BRUSH_MODE },
1145 { "airbrush", AIPTEK_TOOL_BUTTON_AIRBRUSH_MODE },
1146 { "lens", AIPTEK_TOOL_BUTTON_LENS_MODE },
1147 { NULL, AIPTEK_INVALID_VALUE }
1148};
1149
Yani Ioannou060b8842005-05-17 06:44:04 -04001150static ssize_t show_tabletToolMode(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151{
1152 struct aiptek *aiptek = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153
Dmitry Torokhovcd438a52007-05-21 00:17:57 -04001154 return snprintf(buf, PAGE_SIZE, "%s\n",
1155 map_val_to_str(tool_mode_map,
1156 aiptek->curSetting.toolMode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157}
1158
1159static ssize_t
Yani Ioannou060b8842005-05-17 06:44:04 -04001160store_tabletToolMode(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161{
1162 struct aiptek *aiptek = dev_get_drvdata(dev);
Dmitry Torokhovcd438a52007-05-21 00:17:57 -04001163 int new_mode = map_str_to_val(tool_mode_map, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
Dmitry Torokhovcd438a52007-05-21 00:17:57 -04001165 if (new_mode == AIPTEK_INVALID_VALUE)
1166 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167
Dmitry Torokhovcd438a52007-05-21 00:17:57 -04001168 aiptek->newSetting.toolMode = new_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 return count;
1170}
1171
1172static DEVICE_ATTR(tool_mode,
1173 S_IRUGO | S_IWUGO,
1174 show_tabletToolMode, store_tabletToolMode);
1175
1176/***********************************************************************
1177 * support routines for the 'xtilt' file. Note that this file
1178 * both displays current setting and allows reprogramming.
1179 */
Yani Ioannou060b8842005-05-17 06:44:04 -04001180static ssize_t show_tabletXtilt(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181{
1182 struct aiptek *aiptek = dev_get_drvdata(dev);
1183
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 if (aiptek->curSetting.xTilt == AIPTEK_TILT_DISABLE) {
1185 return snprintf(buf, PAGE_SIZE, "disable\n");
1186 } else {
1187 return snprintf(buf, PAGE_SIZE, "%d\n",
1188 aiptek->curSetting.xTilt);
1189 }
1190}
1191
1192static ssize_t
Yani Ioannou060b8842005-05-17 06:44:04 -04001193store_tabletXtilt(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194{
1195 struct aiptek *aiptek = dev_get_drvdata(dev);
1196 int x;
1197
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 if (strcmp(buf, "disable") == 0) {
1199 aiptek->newSetting.xTilt = AIPTEK_TILT_DISABLE;
1200 } else {
1201 x = (int)simple_strtol(buf, NULL, 10);
1202 if (x >= AIPTEK_TILT_MIN && x <= AIPTEK_TILT_MAX) {
1203 aiptek->newSetting.xTilt = x;
1204 }
1205 }
1206 return count;
1207}
1208
1209static DEVICE_ATTR(xtilt,
1210 S_IRUGO | S_IWUGO, show_tabletXtilt, store_tabletXtilt);
1211
1212/***********************************************************************
1213 * support routines for the 'ytilt' file. Note that this file
1214 * both displays current setting and allows reprogramming.
1215 */
Yani Ioannou060b8842005-05-17 06:44:04 -04001216static ssize_t show_tabletYtilt(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217{
1218 struct aiptek *aiptek = dev_get_drvdata(dev);
1219
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 if (aiptek->curSetting.yTilt == AIPTEK_TILT_DISABLE) {
1221 return snprintf(buf, PAGE_SIZE, "disable\n");
1222 } else {
1223 return snprintf(buf, PAGE_SIZE, "%d\n",
1224 aiptek->curSetting.yTilt);
1225 }
1226}
1227
1228static ssize_t
Yani Ioannou060b8842005-05-17 06:44:04 -04001229store_tabletYtilt(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230{
1231 struct aiptek *aiptek = dev_get_drvdata(dev);
1232 int y;
1233
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 if (strcmp(buf, "disable") == 0) {
1235 aiptek->newSetting.yTilt = AIPTEK_TILT_DISABLE;
1236 } else {
1237 y = (int)simple_strtol(buf, NULL, 10);
1238 if (y >= AIPTEK_TILT_MIN && y <= AIPTEK_TILT_MAX) {
1239 aiptek->newSetting.yTilt = y;
1240 }
1241 }
1242 return count;
1243}
1244
1245static DEVICE_ATTR(ytilt,
1246 S_IRUGO | S_IWUGO, show_tabletYtilt, store_tabletYtilt);
1247
1248/***********************************************************************
1249 * support routines for the 'jitter' file. Note that this file
1250 * both displays current setting and allows reprogramming.
1251 */
Yani Ioannou060b8842005-05-17 06:44:04 -04001252static ssize_t show_tabletJitterDelay(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253{
1254 struct aiptek *aiptek = dev_get_drvdata(dev);
1255
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 return snprintf(buf, PAGE_SIZE, "%d\n", aiptek->curSetting.jitterDelay);
1257}
1258
1259static ssize_t
Yani Ioannou060b8842005-05-17 06:44:04 -04001260store_tabletJitterDelay(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261{
1262 struct aiptek *aiptek = dev_get_drvdata(dev);
1263
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 aiptek->newSetting.jitterDelay = (int)simple_strtol(buf, NULL, 10);
1265 return count;
1266}
1267
1268static DEVICE_ATTR(jitter,
1269 S_IRUGO | S_IWUGO,
1270 show_tabletJitterDelay, store_tabletJitterDelay);
1271
1272/***********************************************************************
1273 * support routines for the 'delay' file. Note that this file
1274 * both displays current setting and allows reprogramming.
1275 */
Yani Ioannou060b8842005-05-17 06:44:04 -04001276static ssize_t show_tabletProgrammableDelay(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277{
1278 struct aiptek *aiptek = dev_get_drvdata(dev);
1279
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 return snprintf(buf, PAGE_SIZE, "%d\n",
1281 aiptek->curSetting.programmableDelay);
1282}
1283
1284static ssize_t
Yani Ioannou060b8842005-05-17 06:44:04 -04001285store_tabletProgrammableDelay(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286{
1287 struct aiptek *aiptek = dev_get_drvdata(dev);
1288
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 aiptek->newSetting.programmableDelay = (int)simple_strtol(buf, NULL, 10);
1290 return count;
1291}
1292
1293static DEVICE_ATTR(delay,
1294 S_IRUGO | S_IWUGO,
1295 show_tabletProgrammableDelay, store_tabletProgrammableDelay);
1296
1297/***********************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 * support routines for the 'event_count' file. Note that this file
1299 * only displays current setting.
1300 */
Yani Ioannou060b8842005-05-17 06:44:04 -04001301static ssize_t show_tabletEventsReceived(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302{
1303 struct aiptek *aiptek = dev_get_drvdata(dev);
1304
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 return snprintf(buf, PAGE_SIZE, "%ld\n", aiptek->eventCount);
1306}
1307
1308static DEVICE_ATTR(event_count, S_IRUGO, show_tabletEventsReceived, NULL);
1309
1310/***********************************************************************
1311 * support routines for the 'diagnostic' file. Note that this file
1312 * only displays current setting.
1313 */
Yani Ioannou060b8842005-05-17 06:44:04 -04001314static ssize_t show_tabletDiagnosticMessage(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315{
1316 struct aiptek *aiptek = dev_get_drvdata(dev);
1317 char *retMsg;
1318
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 switch (aiptek->diagnostic) {
1320 case AIPTEK_DIAGNOSTIC_NA:
1321 retMsg = "no errors\n";
1322 break;
1323
1324 case AIPTEK_DIAGNOSTIC_SENDING_RELATIVE_IN_ABSOLUTE:
1325 retMsg = "Error: receiving relative reports\n";
1326 break;
1327
1328 case AIPTEK_DIAGNOSTIC_SENDING_ABSOLUTE_IN_RELATIVE:
1329 retMsg = "Error: receiving absolute reports\n";
1330 break;
1331
1332 case AIPTEK_DIAGNOSTIC_TOOL_DISALLOWED:
1333 if (aiptek->curSetting.pointerMode ==
1334 AIPTEK_POINTER_ONLY_MOUSE_MODE) {
1335 retMsg = "Error: receiving stylus reports\n";
1336 } else {
1337 retMsg = "Error: receiving mouse reports\n";
1338 }
1339 break;
1340
1341 default:
1342 return 0;
1343 }
1344 return snprintf(buf, PAGE_SIZE, retMsg);
1345}
1346
1347static DEVICE_ATTR(diagnostic, S_IRUGO, show_tabletDiagnosticMessage, NULL);
1348
1349/***********************************************************************
1350 * support routines for the 'stylus_upper' file. Note that this file
1351 * both displays current setting and allows for setting changing.
1352 */
Dmitry Torokhovcd438a52007-05-21 00:17:57 -04001353
1354static struct aiptek_map stylus_button_map[] = {
1355 { "upper", AIPTEK_STYLUS_UPPER_BUTTON },
1356 { "lower", AIPTEK_STYLUS_LOWER_BUTTON },
1357 { NULL, AIPTEK_INVALID_VALUE }
1358};
1359
Yani Ioannou060b8842005-05-17 06:44:04 -04001360static ssize_t show_tabletStylusUpper(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361{
1362 struct aiptek *aiptek = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363
Dmitry Torokhovcd438a52007-05-21 00:17:57 -04001364 return snprintf(buf, PAGE_SIZE, "%s\n",
1365 map_val_to_str(stylus_button_map,
1366 aiptek->curSetting.stylusButtonUpper));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367}
1368
1369static ssize_t
Yani Ioannou060b8842005-05-17 06:44:04 -04001370store_tabletStylusUpper(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371{
1372 struct aiptek *aiptek = dev_get_drvdata(dev);
Dmitry Torokhovcd438a52007-05-21 00:17:57 -04001373 int new_button = map_str_to_val(stylus_button_map, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374
Dmitry Torokhovcd438a52007-05-21 00:17:57 -04001375 if (new_button == AIPTEK_INVALID_VALUE)
1376 return -EINVAL;
1377
1378 aiptek->newSetting.stylusButtonUpper = new_button;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 return count;
1380}
1381
1382static DEVICE_ATTR(stylus_upper,
1383 S_IRUGO | S_IWUGO,
1384 show_tabletStylusUpper, store_tabletStylusUpper);
1385
1386/***********************************************************************
1387 * support routines for the 'stylus_lower' file. Note that this file
1388 * both displays current setting and allows for setting changing.
1389 */
Dmitry Torokhovcd438a52007-05-21 00:17:57 -04001390
Yani Ioannou060b8842005-05-17 06:44:04 -04001391static ssize_t show_tabletStylusLower(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392{
1393 struct aiptek *aiptek = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394
Dmitry Torokhovcd438a52007-05-21 00:17:57 -04001395 return snprintf(buf, PAGE_SIZE, "%s\n",
1396 map_val_to_str(stylus_button_map,
1397 aiptek->curSetting.stylusButtonLower));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398}
1399
1400static ssize_t
Yani Ioannou060b8842005-05-17 06:44:04 -04001401store_tabletStylusLower(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402{
1403 struct aiptek *aiptek = dev_get_drvdata(dev);
Dmitry Torokhovcd438a52007-05-21 00:17:57 -04001404 int new_button = map_str_to_val(stylus_button_map, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405
Dmitry Torokhovcd438a52007-05-21 00:17:57 -04001406 if (new_button == AIPTEK_INVALID_VALUE)
1407 return -EINVAL;
1408
1409 aiptek->newSetting.stylusButtonLower = new_button;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 return count;
1411}
1412
1413static DEVICE_ATTR(stylus_lower,
1414 S_IRUGO | S_IWUGO,
1415 show_tabletStylusLower, store_tabletStylusLower);
1416
1417/***********************************************************************
1418 * support routines for the 'mouse_left' file. Note that this file
1419 * both displays current setting and allows for setting changing.
1420 */
Dmitry Torokhovcd438a52007-05-21 00:17:57 -04001421
1422static struct aiptek_map mouse_button_map[] = {
1423 { "left", AIPTEK_MOUSE_LEFT_BUTTON },
1424 { "middle", AIPTEK_MOUSE_MIDDLE_BUTTON },
1425 { "right", AIPTEK_MOUSE_RIGHT_BUTTON },
1426 { NULL, AIPTEK_INVALID_VALUE }
1427};
1428
Yani Ioannou060b8842005-05-17 06:44:04 -04001429static ssize_t show_tabletMouseLeft(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430{
1431 struct aiptek *aiptek = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432
Dmitry Torokhovcd438a52007-05-21 00:17:57 -04001433 return snprintf(buf, PAGE_SIZE, "%s\n",
1434 map_val_to_str(mouse_button_map,
1435 aiptek->curSetting.mouseButtonLeft));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436}
1437
1438static ssize_t
Yani Ioannou060b8842005-05-17 06:44:04 -04001439store_tabletMouseLeft(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440{
1441 struct aiptek *aiptek = dev_get_drvdata(dev);
Dmitry Torokhovcd438a52007-05-21 00:17:57 -04001442 int new_button = map_str_to_val(mouse_button_map, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443
Dmitry Torokhovcd438a52007-05-21 00:17:57 -04001444 if (new_button == AIPTEK_INVALID_VALUE)
1445 return -EINVAL;
1446
1447 aiptek->newSetting.mouseButtonLeft = new_button;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 return count;
1449}
1450
1451static DEVICE_ATTR(mouse_left,
1452 S_IRUGO | S_IWUGO,
1453 show_tabletMouseLeft, store_tabletMouseLeft);
1454
1455/***********************************************************************
1456 * support routines for the 'mouse_middle' file. Note that this file
1457 * both displays current setting and allows for setting changing.
1458 */
Yani Ioannou060b8842005-05-17 06:44:04 -04001459static ssize_t show_tabletMouseMiddle(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460{
1461 struct aiptek *aiptek = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462
Dmitry Torokhovcd438a52007-05-21 00:17:57 -04001463 return snprintf(buf, PAGE_SIZE, "%s\n",
1464 map_val_to_str(mouse_button_map,
1465 aiptek->curSetting.mouseButtonMiddle));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466}
1467
1468static ssize_t
Yani Ioannou060b8842005-05-17 06:44:04 -04001469store_tabletMouseMiddle(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470{
1471 struct aiptek *aiptek = dev_get_drvdata(dev);
Dmitry Torokhovcd438a52007-05-21 00:17:57 -04001472 int new_button = map_str_to_val(mouse_button_map, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473
Dmitry Torokhovcd438a52007-05-21 00:17:57 -04001474 if (new_button == AIPTEK_INVALID_VALUE)
1475 return -EINVAL;
1476
1477 aiptek->newSetting.mouseButtonMiddle = new_button;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 return count;
1479}
1480
1481static DEVICE_ATTR(mouse_middle,
1482 S_IRUGO | S_IWUGO,
1483 show_tabletMouseMiddle, store_tabletMouseMiddle);
1484
1485/***********************************************************************
1486 * support routines for the 'mouse_right' file. Note that this file
1487 * both displays current setting and allows for setting changing.
1488 */
Yani Ioannou060b8842005-05-17 06:44:04 -04001489static ssize_t show_tabletMouseRight(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490{
1491 struct aiptek *aiptek = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492
Dmitry Torokhovcd438a52007-05-21 00:17:57 -04001493 return snprintf(buf, PAGE_SIZE, "%s\n",
1494 map_val_to_str(mouse_button_map,
1495 aiptek->curSetting.mouseButtonRight));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496}
1497
1498static ssize_t
Yani Ioannou060b8842005-05-17 06:44:04 -04001499store_tabletMouseRight(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500{
1501 struct aiptek *aiptek = dev_get_drvdata(dev);
Dmitry Torokhovcd438a52007-05-21 00:17:57 -04001502 int new_button = map_str_to_val(mouse_button_map, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503
Dmitry Torokhovcd438a52007-05-21 00:17:57 -04001504 if (new_button == AIPTEK_INVALID_VALUE)
1505 return -EINVAL;
1506
1507 aiptek->newSetting.mouseButtonRight = new_button;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 return count;
1509}
1510
1511static DEVICE_ATTR(mouse_right,
1512 S_IRUGO | S_IWUGO,
1513 show_tabletMouseRight, store_tabletMouseRight);
1514
1515/***********************************************************************
1516 * support routines for the 'wheel' file. Note that this file
1517 * both displays current setting and allows for setting changing.
1518 */
Yani Ioannou060b8842005-05-17 06:44:04 -04001519static ssize_t show_tabletWheel(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520{
1521 struct aiptek *aiptek = dev_get_drvdata(dev);
1522
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 if (aiptek->curSetting.wheel == AIPTEK_WHEEL_DISABLE) {
1524 return snprintf(buf, PAGE_SIZE, "disable\n");
1525 } else {
1526 return snprintf(buf, PAGE_SIZE, "%d\n",
1527 aiptek->curSetting.wheel);
1528 }
1529}
1530
1531static ssize_t
Yani Ioannou060b8842005-05-17 06:44:04 -04001532store_tabletWheel(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533{
1534 struct aiptek *aiptek = dev_get_drvdata(dev);
1535
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 aiptek->newSetting.wheel = (int)simple_strtol(buf, NULL, 10);
1537 return count;
1538}
1539
1540static DEVICE_ATTR(wheel,
1541 S_IRUGO | S_IWUGO, show_tabletWheel, store_tabletWheel);
1542
1543/***********************************************************************
1544 * support routines for the 'execute' file. Note that this file
1545 * both displays current setting and allows for setting changing.
1546 */
Yani Ioannou060b8842005-05-17 06:44:04 -04001547static ssize_t show_tabletExecute(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 /* There is nothing useful to display, so a one-line manual
1550 * is in order...
1551 */
1552 return snprintf(buf, PAGE_SIZE,
1553 "Write anything to this file to program your tablet.\n");
1554}
1555
1556static ssize_t
Yani Ioannou060b8842005-05-17 06:44:04 -04001557store_tabletExecute(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558{
1559 struct aiptek *aiptek = dev_get_drvdata(dev);
1560
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 /* We do not care what you write to this file. Merely the action
1562 * of writing to this file triggers a tablet reprogramming.
1563 */
1564 memcpy(&aiptek->curSetting, &aiptek->newSetting,
1565 sizeof(struct aiptek_settings));
1566
1567 if (aiptek_program_tablet(aiptek) < 0)
1568 return -EIO;
1569
1570 return count;
1571}
1572
1573static DEVICE_ATTR(execute,
1574 S_IRUGO | S_IWUGO, show_tabletExecute, store_tabletExecute);
1575
1576/***********************************************************************
1577 * support routines for the 'odm_code' file. Note that this file
1578 * only displays current setting.
1579 */
Yani Ioannou060b8842005-05-17 06:44:04 -04001580static ssize_t show_tabletODMCode(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581{
1582 struct aiptek *aiptek = dev_get_drvdata(dev);
1583
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 return snprintf(buf, PAGE_SIZE, "0x%04x\n", aiptek->features.odmCode);
1585}
1586
1587static DEVICE_ATTR(odm_code, S_IRUGO, show_tabletODMCode, NULL);
1588
1589/***********************************************************************
1590 * support routines for the 'model_code' file. Note that this file
1591 * only displays current setting.
1592 */
Yani Ioannou060b8842005-05-17 06:44:04 -04001593static ssize_t show_tabletModelCode(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594{
1595 struct aiptek *aiptek = dev_get_drvdata(dev);
1596
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 return snprintf(buf, PAGE_SIZE, "0x%04x\n", aiptek->features.modelCode);
1598}
1599
1600static DEVICE_ATTR(model_code, S_IRUGO, show_tabletModelCode, NULL);
1601
1602/***********************************************************************
1603 * support routines for the 'firmware_code' file. Note that this file
1604 * only displays current setting.
1605 */
Yani Ioannou060b8842005-05-17 06:44:04 -04001606static ssize_t show_firmwareCode(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607{
1608 struct aiptek *aiptek = dev_get_drvdata(dev);
1609
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 return snprintf(buf, PAGE_SIZE, "%04x\n",
1611 aiptek->features.firmwareCode);
1612}
1613
1614static DEVICE_ATTR(firmware_code, S_IRUGO, show_firmwareCode, NULL);
1615
Dmitry Torokhovb087e1f2007-05-21 00:17:37 -04001616static struct attribute *aiptek_attributes[] = {
1617 &dev_attr_size.attr,
1618 &dev_attr_pointer_mode.attr,
1619 &dev_attr_coordinate_mode.attr,
1620 &dev_attr_tool_mode.attr,
1621 &dev_attr_xtilt.attr,
1622 &dev_attr_ytilt.attr,
1623 &dev_attr_jitter.attr,
1624 &dev_attr_delay.attr,
1625 &dev_attr_event_count.attr,
1626 &dev_attr_diagnostic.attr,
1627 &dev_attr_odm_code.attr,
1628 &dev_attr_model_code.attr,
1629 &dev_attr_firmware_code.attr,
1630 &dev_attr_stylus_lower.attr,
1631 &dev_attr_stylus_upper.attr,
1632 &dev_attr_mouse_left.attr,
1633 &dev_attr_mouse_middle.attr,
1634 &dev_attr_mouse_right.attr,
1635 &dev_attr_wheel.attr,
1636 &dev_attr_execute.attr,
1637 NULL
1638};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639
Dmitry Torokhovb087e1f2007-05-21 00:17:37 -04001640static struct attribute_group aiptek_attribute_group = {
1641 .attrs = aiptek_attributes,
1642};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643
1644/***********************************************************************
1645 * This routine is called when a tablet has been identified. It basically
1646 * sets up the tablet and the driver's internal structures.
1647 */
1648static int
1649aiptek_probe(struct usb_interface *intf, const struct usb_device_id *id)
1650{
1651 struct usb_device *usbdev = interface_to_usbdev(intf);
1652 struct usb_endpoint_descriptor *endpoint;
1653 struct aiptek *aiptek;
1654 struct input_dev *inputdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 int i;
1656 int speeds[] = { 0,
1657 AIPTEK_PROGRAMMABLE_DELAY_50,
1658 AIPTEK_PROGRAMMABLE_DELAY_400,
1659 AIPTEK_PROGRAMMABLE_DELAY_25,
1660 AIPTEK_PROGRAMMABLE_DELAY_100,
1661 AIPTEK_PROGRAMMABLE_DELAY_200,
1662 AIPTEK_PROGRAMMABLE_DELAY_300
1663 };
Dmitry Torokhov50141862007-04-12 01:33:39 -04001664 int err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665
1666 /* programmableDelay is where the command-line specified
1667 * delay is kept. We make it the first element of speeds[],
1668 * so therefore, your override speed is tried first, then the
1669 * remainder. Note that the default value of 400ms will be tried
1670 * if you do not specify any command line parameter.
1671 */
1672 speeds[0] = programmableDelay;
1673
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001674 aiptek = kzalloc(sizeof(struct aiptek), GFP_KERNEL);
1675 inputdev = input_allocate_device();
Rene van Paassen6125a402007-05-21 00:31:59 -04001676 if (!aiptek || !inputdev) {
1677 warn("aiptek: cannot allocate memory or input device");
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001678 goto fail1;
Rene van Paassen6125a402007-05-21 00:31:59 -04001679 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680
1681 aiptek->data = usb_buffer_alloc(usbdev, AIPTEK_PACKET_LENGTH,
Christoph Lameter54e6ecb2006-12-06 20:33:16 -08001682 GFP_ATOMIC, &aiptek->data_dma);
Rene van Paassen6125a402007-05-21 00:31:59 -04001683 if (!aiptek->data) {
1684 warn("aiptek: cannot allocate usb buffer");
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001685 goto fail1;
Rene van Paassen6125a402007-05-21 00:31:59 -04001686 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687
1688 aiptek->urb = usb_alloc_urb(0, GFP_KERNEL);
Rene van Paassen6125a402007-05-21 00:31:59 -04001689 if (!aiptek->urb) {
1690 warn("aiptek: cannot allocate urb");
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001691 goto fail2;
Rene van Paassen6125a402007-05-21 00:31:59 -04001692 }
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001693
1694 aiptek->inputdev = inputdev;
1695 aiptek->usbdev = usbdev;
1696 aiptek->ifnum = intf->altsetting[0].desc.bInterfaceNumber;
1697 aiptek->inDelay = 0;
1698 aiptek->endDelay = 0;
1699 aiptek->previousJitterable = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700
1701 /* Set up the curSettings struct. Said struct contains the current
1702 * programmable parameters. The newSetting struct contains changes
1703 * the user makes to the settings via the sysfs interface. Those
1704 * changes are not "committed" to curSettings until the user
1705 * writes to the sysfs/.../execute file.
1706 */
1707 aiptek->curSetting.pointerMode = AIPTEK_POINTER_EITHER_MODE;
1708 aiptek->curSetting.coordinateMode = AIPTEK_COORDINATE_ABSOLUTE_MODE;
1709 aiptek->curSetting.toolMode = AIPTEK_TOOL_BUTTON_PEN_MODE;
1710 aiptek->curSetting.xTilt = AIPTEK_TILT_DISABLE;
1711 aiptek->curSetting.yTilt = AIPTEK_TILT_DISABLE;
1712 aiptek->curSetting.mouseButtonLeft = AIPTEK_MOUSE_LEFT_BUTTON;
1713 aiptek->curSetting.mouseButtonMiddle = AIPTEK_MOUSE_MIDDLE_BUTTON;
1714 aiptek->curSetting.mouseButtonRight = AIPTEK_MOUSE_RIGHT_BUTTON;
1715 aiptek->curSetting.stylusButtonUpper = AIPTEK_STYLUS_UPPER_BUTTON;
1716 aiptek->curSetting.stylusButtonLower = AIPTEK_STYLUS_LOWER_BUTTON;
1717 aiptek->curSetting.jitterDelay = jitterDelay;
1718 aiptek->curSetting.programmableDelay = programmableDelay;
1719
1720 /* Both structs should have equivalent settings
1721 */
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001722 aiptek->newSetting = aiptek->curSetting;
1723
1724 /* Determine the usb devices' physical path.
1725 * Asketh not why we always pretend we're using "../input0",
1726 * but I suspect this will have to be refactored one
1727 * day if a single USB device can be a keyboard & a mouse
1728 * & a tablet, and the inputX number actually will tell
1729 * us something...
1730 */
1731 usb_make_path(usbdev, aiptek->features.usbPath,
1732 sizeof(aiptek->features.usbPath));
1733 strlcat(aiptek->features.usbPath, "/input0",
1734 sizeof(aiptek->features.usbPath));
1735
1736 /* Set up client data, pointers to open and close routines
1737 * for the input device.
1738 */
1739 inputdev->name = "Aiptek";
1740 inputdev->phys = aiptek->features.usbPath;
1741 usb_to_input_id(usbdev, &inputdev->id);
Dmitry Torokhovc0f82d52007-04-12 01:35:03 -04001742 inputdev->dev.parent = &intf->dev;
Dmitry Torokhov7791bda2007-04-12 01:34:39 -04001743
1744 input_set_drvdata(inputdev, aiptek);
1745
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001746 inputdev->open = aiptek_open;
1747 inputdev->close = aiptek_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748
1749 /* Now program the capacities of the tablet, in terms of being
1750 * an input device.
1751 */
Rene van Paassen1a54f492007-05-21 00:31:55 -04001752 for (i = 0; i < ARRAY_SIZE(eventTypes); ++i)
1753 __set_bit(eventTypes[i], inputdev->evbit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754
Rene van Paassen1a54f492007-05-21 00:31:55 -04001755 for (i = 0; i < ARRAY_SIZE(absEvents); ++i)
1756 __set_bit(absEvents[i], inputdev->absbit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757
Rene van Paassen1a54f492007-05-21 00:31:55 -04001758 for (i = 0; i < ARRAY_SIZE(relEvents); ++i)
1759 __set_bit(relEvents[i], inputdev->relbit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760
Rene van Paassen1a54f492007-05-21 00:31:55 -04001761 __set_bit(MSC_SERIAL, inputdev->mscbit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762
Dmitry Torokhov33936fa2007-05-21 00:18:15 -04001763 /* Set up key and button codes */
1764 for (i = 0; i < ARRAY_SIZE(buttonEvents); ++i)
1765 __set_bit(buttonEvents[i], inputdev->keybit);
1766
Tobias Klauser52950ed2005-12-11 16:20:08 +01001767 for (i = 0; i < ARRAY_SIZE(macroKeyEvents); ++i)
Dmitry Torokhov33936fa2007-05-21 00:18:15 -04001768 __set_bit(macroKeyEvents[i], inputdev->keybit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001770 /*
1771 * Program the input device coordinate capacities. We do not yet
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 * know what maximum X, Y, and Z values are, so we're putting fake
1773 * values in. Later, we'll ask the tablet to put in the correct
1774 * values.
1775 */
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001776 input_set_abs_params(inputdev, ABS_X, 0, 2999, 0, 0);
Riccardo Magliocchettif873e3e2005-12-28 20:44:48 -05001777 input_set_abs_params(inputdev, ABS_Y, 0, 2249, 0, 0);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001778 input_set_abs_params(inputdev, ABS_PRESSURE, 0, 511, 0, 0);
1779 input_set_abs_params(inputdev, ABS_TILT_X, AIPTEK_TILT_MIN, AIPTEK_TILT_MAX, 0, 0);
1780 input_set_abs_params(inputdev, ABS_TILT_Y, AIPTEK_TILT_MIN, AIPTEK_TILT_MAX, 0, 0);
1781 input_set_abs_params(inputdev, ABS_WHEEL, AIPTEK_WHEEL_MIN, AIPTEK_WHEEL_MAX - 1, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782
1783 endpoint = &intf->altsetting[0].endpoint[0].desc;
1784
1785 /* Go set up our URB, which is called when the tablet receives
1786 * input.
1787 */
1788 usb_fill_int_urb(aiptek->urb,
1789 aiptek->usbdev,
1790 usb_rcvintpipe(aiptek->usbdev,
1791 endpoint->bEndpointAddress),
1792 aiptek->data, 8, aiptek_irq, aiptek,
1793 endpoint->bInterval);
1794
1795 aiptek->urb->transfer_dma = aiptek->data_dma;
1796 aiptek->urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
1797
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 /* Program the tablet. This sets the tablet up in the mode
1799 * specified in newSetting, and also queries the tablet's
1800 * physical capacities.
1801 *
1802 * Sanity check: if a tablet doesn't like the slow programmatic
1803 * delay, we often get sizes of 0x0. Let's use that as an indicator
1804 * to try faster delays, up to 25 ms. If that logic fails, well, you'll
1805 * have to explain to us how your tablet thinks it's 0x0, and yet that's
1806 * not an error :-)
1807 */
1808
Tobias Klauser52950ed2005-12-11 16:20:08 +01001809 for (i = 0; i < ARRAY_SIZE(speeds); ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 aiptek->curSetting.programmableDelay = speeds[i];
1811 (void)aiptek_program_tablet(aiptek);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001812 if (aiptek->inputdev->absmax[ABS_X] > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 info("input: Aiptek using %d ms programming speed\n",
1814 aiptek->curSetting.programmableDelay);
1815 break;
1816 }
1817 }
1818
Rene van Paassen6125a402007-05-21 00:31:59 -04001819 /* Murphy says that some day someone will have a tablet that fails the
1820 above test. That's you, Frederic Rodrigo */
1821 if (i == ARRAY_SIZE(speeds)) {
1822 info("input: Aiptek tried all speeds, no sane response");
1823 goto fail2;
1824 }
1825
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 /* Associate this driver's struct with the usb interface.
1827 */
1828 usb_set_intfdata(intf, aiptek);
1829
1830 /* Set up the sysfs files
1831 */
Dmitry Torokhovb087e1f2007-05-21 00:17:37 -04001832 err = sysfs_create_group(&intf->dev.kobj, &aiptek_attribute_group);
Rene van Paassen6125a402007-05-21 00:31:59 -04001833 if (err) {
1834 warn("aiptek: cannot create sysfs group err: %d", err);
Dmitry Torokhovb087e1f2007-05-21 00:17:37 -04001835 goto fail3;
Rene van Paassen6125a402007-05-21 00:31:59 -04001836 }
Dmitry Torokhovb087e1f2007-05-21 00:17:37 -04001837
1838 /* Register the tablet as an Input Device
1839 */
1840 err = input_register_device(aiptek->inputdev);
Rene van Paassen6125a402007-05-21 00:31:59 -04001841 if (err) {
1842 warn("aiptek: input_register_device returned err: %d", err);
Dmitry Torokhovb087e1f2007-05-21 00:17:37 -04001843 goto fail4;
Rene van Paassen6125a402007-05-21 00:31:59 -04001844 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 return 0;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001846
Dmitry Torokhovb087e1f2007-05-21 00:17:37 -04001847 fail4: sysfs_remove_group(&intf->dev.kobj, &aiptek_attribute_group);
1848 fail3: usb_free_urb(aiptek->urb);
Dmitry Torokhov50141862007-04-12 01:33:39 -04001849 fail2: usb_buffer_free(usbdev, AIPTEK_PACKET_LENGTH, aiptek->data,
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001850 aiptek->data_dma);
Dmitry Torokhovb087e1f2007-05-21 00:17:37 -04001851 fail1: usb_set_intfdata(intf, NULL);
1852 input_free_device(inputdev);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001853 kfree(aiptek);
Dmitry Torokhov50141862007-04-12 01:33:39 -04001854 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855}
1856
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857/***********************************************************************
1858 * Deal with tablet disconnecting from the system.
1859 */
1860static void aiptek_disconnect(struct usb_interface *intf)
1861{
1862 struct aiptek *aiptek = usb_get_intfdata(intf);
1863
1864 /* Disassociate driver's struct with usb interface
1865 */
1866 usb_set_intfdata(intf, NULL);
1867 if (aiptek != NULL) {
1868 /* Free & unhook everything from the system.
1869 */
1870 usb_kill_urb(aiptek->urb);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001871 input_unregister_device(aiptek->inputdev);
Dmitry Torokhovb087e1f2007-05-21 00:17:37 -04001872 sysfs_remove_group(&intf->dev.kobj, &aiptek_attribute_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 usb_free_urb(aiptek->urb);
1874 usb_buffer_free(interface_to_usbdev(intf),
1875 AIPTEK_PACKET_LENGTH,
1876 aiptek->data, aiptek->data_dma);
1877 kfree(aiptek);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 }
1879}
1880
Dmitry Torokhov50141862007-04-12 01:33:39 -04001881static struct usb_driver aiptek_driver = {
1882 .name = "aiptek",
1883 .probe = aiptek_probe,
1884 .disconnect = aiptek_disconnect,
1885 .id_table = aiptek_ids,
1886};
1887
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888static int __init aiptek_init(void)
1889{
1890 int result = usb_register(&aiptek_driver);
1891 if (result == 0) {
1892 info(DRIVER_VERSION ": " DRIVER_AUTHOR);
1893 info(DRIVER_DESC);
1894 }
1895 return result;
1896}
1897
1898static void __exit aiptek_exit(void)
1899{
1900 usb_deregister(&aiptek_driver);
1901}
1902
1903MODULE_AUTHOR(DRIVER_AUTHOR);
1904MODULE_DESCRIPTION(DRIVER_DESC);
1905MODULE_LICENSE("GPL");
1906
1907module_param(programmableDelay, int, 0);
1908MODULE_PARM_DESC(programmableDelay, "delay used during tablet programming");
1909module_param(jitterDelay, int, 0);
1910MODULE_PARM_DESC(jitterDelay, "stylus/mouse settlement delay");
1911
1912module_init(aiptek_init);
1913module_exit(aiptek_exit);