blob: 088da86f050807c5846f0054a6c30da4228260fa [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
115 * byte0 0 0 0 0 0 0 1 0
116 * 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
137 * byte0 0 0 0 0 0 1 0 0
138 * 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 */
267#define AIPTEK_MOUSE_LEFT_BUTTON 0x01
268#define AIPTEK_MOUSE_RIGHT_BUTTON 0x02
269#define AIPTEK_MOUSE_MIDDLE_BUTTON 0x04
270
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
332/*
333 * Permit easy lookup of keyboard events to send, versus
334 * the bitmap which comes from the tablet. This hides the
335 * issue that the F_keys are not sequentially numbered.
336 */
Arjan van de Ven4c4c9432005-11-29 09:43:42 +0100337static const int macroKeyEvents[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 KEY_ESC, KEY_F1, KEY_F2, KEY_F3, KEY_F4, KEY_F5,
339 KEY_F6, KEY_F7, KEY_F8, KEY_F9, KEY_F10, KEY_F11,
340 KEY_F12, KEY_F13, KEY_F14, KEY_F15, KEY_F16, KEY_F17,
341 KEY_F18, KEY_F19, KEY_F20, KEY_F21, KEY_F22, KEY_F23,
342 KEY_F24, KEY_STOP, KEY_AGAIN, KEY_PROPS, KEY_UNDO,
343 KEY_FRONT, KEY_COPY, KEY_OPEN, KEY_PASTE, 0
344};
345
346/***********************************************************************
347 * Relative reports deliver values in 2's complement format to
348 * deal with negative offsets.
349 */
350static int aiptek_convert_from_2s_complement(unsigned char c)
351{
352 int ret;
353 unsigned char b = c;
354 int negate = 0;
355
356 if ((b & 0x80) != 0) {
357 b = ~b;
358 b--;
359 negate = 1;
360 }
361 ret = b;
362 ret = (negate == 1) ? -ret : ret;
363 return ret;
364}
365
366/***********************************************************************
367 * aiptek_irq can receive one of six potential reports.
368 * The documentation for each is in the body of the function.
369 *
370 * The tablet reports on several attributes per invocation of
371 * aiptek_irq. Because the Linux Input Event system allows the
372 * transmission of ONE attribute per input_report_xxx() call,
373 * collation has to be done on the other end to reconstitute
374 * a complete tablet report. Further, the number of Input Event reports
375 * submitted varies, depending on what USB report type, and circumstance.
376 * To deal with this, EV_MSC is used to indicate an 'end-of-report'
377 * message. This has been an undocumented convention understood by the kernel
378 * tablet driver and clients such as gpm and XFree86's tablet drivers.
379 *
380 * Of the information received from the tablet, the one piece I
381 * cannot transmit is the proximity bit (without resorting to an EV_MSC
382 * convention above.) I therefore have taken over REL_MISC and ABS_MISC
383 * (for relative and absolute reports, respectively) for communicating
384 * Proximity. Why two events? I thought it interesting to know if the
Steven Cole093cf722005-05-03 19:07:24 -0600385 * Proximity event occurred while the tablet was in absolute or relative
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 * mode.
387 *
388 * Other tablets use the notion of a certain minimum stylus pressure
389 * to infer proximity. While that could have been done, that is yet
390 * another 'by convention' behavior, the documentation for which
391 * would be spread between two (or more) pieces of software.
392 *
393 * EV_MSC usage was terminated for this purpose in Linux 2.5.x, and
394 * replaced with the input_sync() method (which emits EV_SYN.)
395 */
396
David Howells7d12e782006-10-05 14:55:46 +0100397static void aiptek_irq(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398{
399 struct aiptek *aiptek = urb->context;
400 unsigned char *data = aiptek->data;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500401 struct input_dev *inputdev = aiptek->inputdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 int jitterable = 0;
403 int retval, macro, x, y, z, left, right, middle, p, dv, tip, bs, pck;
404
405 switch (urb->status) {
406 case 0:
407 /* Success */
408 break;
409
410 case -ECONNRESET:
411 case -ENOENT:
412 case -ESHUTDOWN:
413 /* This urb is terminated, clean up */
414 dbg("%s - urb shutting down with status: %d",
415 __FUNCTION__, urb->status);
416 return;
417
418 default:
419 dbg("%s - nonzero urb status received: %d",
420 __FUNCTION__, urb->status);
421 goto exit;
422 }
423
424 /* See if we are in a delay loop -- throw out report if true.
425 */
426 if (aiptek->inDelay == 1 && time_after(aiptek->endDelay, jiffies)) {
427 goto exit;
428 }
429
430 aiptek->inDelay = 0;
431 aiptek->eventCount++;
432
433 /* Report 1 delivers relative coordinates with either a stylus
434 * or the mouse. You do not know, however, which input
435 * tool generated the event.
436 */
437 if (data[0] == 1) {
438 if (aiptek->curSetting.coordinateMode ==
439 AIPTEK_COORDINATE_ABSOLUTE_MODE) {
440 aiptek->diagnostic =
441 AIPTEK_DIAGNOSTIC_SENDING_RELATIVE_IN_ABSOLUTE;
442 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 x = aiptek_convert_from_2s_complement(data[2]);
444 y = aiptek_convert_from_2s_complement(data[3]);
445
446 /* jitterable keeps track of whether any button has been pressed.
447 * We're also using it to remap the physical mouse button mask
448 * to pseudo-settings. (We don't specifically care about it's
449 * value after moving/transposing mouse button bitmasks, except
450 * that a non-zero value indicates that one or more
451 * mouse button was pressed.)
452 */
453 jitterable = data[5] & 0x07;
454
455 left = (data[5] & aiptek->curSetting.mouseButtonLeft) != 0 ? 1 : 0;
456 right = (data[5] & aiptek->curSetting.mouseButtonRight) != 0 ? 1 : 0;
457 middle = (data[5] & aiptek->curSetting.mouseButtonMiddle) != 0 ? 1 : 0;
458
459 input_report_key(inputdev, BTN_LEFT, left);
460 input_report_key(inputdev, BTN_MIDDLE, middle);
461 input_report_key(inputdev, BTN_RIGHT, right);
462 input_report_rel(inputdev, REL_X, x);
463 input_report_rel(inputdev, REL_Y, y);
464 input_report_rel(inputdev, REL_MISC, 1 | AIPTEK_REPORT_TOOL_UNKNOWN);
465
466 /* Wheel support is in the form of a single-event
467 * firing.
468 */
469 if (aiptek->curSetting.wheel != AIPTEK_WHEEL_DISABLE) {
470 input_report_rel(inputdev, REL_WHEEL,
471 aiptek->curSetting.wheel);
472 aiptek->curSetting.wheel = AIPTEK_WHEEL_DISABLE;
473 }
474 input_sync(inputdev);
475 }
476 }
477 /* Report 2 is delivered only by the stylus, and delivers
478 * absolute coordinates.
479 */
480 else if (data[0] == 2) {
481 if (aiptek->curSetting.coordinateMode == AIPTEK_COORDINATE_RELATIVE_MODE) {
482 aiptek->diagnostic = AIPTEK_DIAGNOSTIC_SENDING_ABSOLUTE_IN_RELATIVE;
483 } else if (!AIPTEK_POINTER_ALLOW_STYLUS_MODE
484 (aiptek->curSetting.pointerMode)) {
485 aiptek->diagnostic = AIPTEK_DIAGNOSTIC_TOOL_DISALLOWED;
486 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 x = le16_to_cpu(get_unaligned((__le16 *) (data + 1)));
488 y = le16_to_cpu(get_unaligned((__le16 *) (data + 3)));
489 z = le16_to_cpu(get_unaligned((__le16 *) (data + 6)));
490
491 p = (data[5] & 0x01) != 0 ? 1 : 0;
492 dv = (data[5] & 0x02) != 0 ? 1 : 0;
493 tip = (data[5] & 0x04) != 0 ? 1 : 0;
494
495 /* Use jitterable to re-arrange button masks
496 */
497 jitterable = data[5] & 0x18;
498
499 bs = (data[5] & aiptek->curSetting.stylusButtonLower) != 0 ? 1 : 0;
500 pck = (data[5] & aiptek->curSetting.stylusButtonUpper) != 0 ? 1 : 0;
501
502 /* dv indicates 'data valid' (e.g., the tablet is in sync
503 * and has delivered a "correct" report) We will ignore
504 * all 'bad' reports...
505 */
506 if (dv != 0) {
507 /* If we've not already sent a tool_button_?? code, do
508 * so now. Then set FIRED_BIT so it won't be resent unless
509 * the user forces FIRED_BIT off.
510 */
511 if (TOOL_BUTTON_FIRED
512 (aiptek->curSetting.toolMode) == 0) {
513 input_report_key(inputdev,
514 TOOL_BUTTON(aiptek->curSetting.toolMode),
515 1);
516 aiptek->curSetting.toolMode |= TOOL_BUTTON_FIRED_BIT;
517 }
518
519 if (p != 0) {
520 input_report_abs(inputdev, ABS_X, x);
521 input_report_abs(inputdev, ABS_Y, y);
522 input_report_abs(inputdev, ABS_PRESSURE, z);
523
524 input_report_key(inputdev, BTN_TOUCH, tip);
525 input_report_key(inputdev, BTN_STYLUS, bs);
526 input_report_key(inputdev, BTN_STYLUS2, pck);
527
528 if (aiptek->curSetting.xTilt !=
529 AIPTEK_TILT_DISABLE) {
530 input_report_abs(inputdev,
531 ABS_TILT_X,
532 aiptek->curSetting.xTilt);
533 }
534 if (aiptek->curSetting.yTilt != AIPTEK_TILT_DISABLE) {
535 input_report_abs(inputdev,
536 ABS_TILT_Y,
537 aiptek->curSetting.yTilt);
538 }
539
540 /* Wheel support is in the form of a single-event
541 * firing.
542 */
543 if (aiptek->curSetting.wheel !=
544 AIPTEK_WHEEL_DISABLE) {
545 input_report_abs(inputdev,
546 ABS_WHEEL,
547 aiptek->curSetting.wheel);
548 aiptek->curSetting.wheel = AIPTEK_WHEEL_DISABLE;
549 }
550 }
551 input_report_abs(inputdev, ABS_MISC, p | AIPTEK_REPORT_TOOL_STYLUS);
552 input_sync(inputdev);
553 }
554 }
555 }
556 /* Report 3's come from the mouse in absolute mode.
557 */
558 else if (data[0] == 3) {
559 if (aiptek->curSetting.coordinateMode == AIPTEK_COORDINATE_RELATIVE_MODE) {
560 aiptek->diagnostic = AIPTEK_DIAGNOSTIC_SENDING_ABSOLUTE_IN_RELATIVE;
561 } else if (!AIPTEK_POINTER_ALLOW_MOUSE_MODE
562 (aiptek->curSetting.pointerMode)) {
563 aiptek->diagnostic = AIPTEK_DIAGNOSTIC_TOOL_DISALLOWED;
564 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 x = le16_to_cpu(get_unaligned((__le16 *) (data + 1)));
566 y = le16_to_cpu(get_unaligned((__le16 *) (data + 3)));
567
568 jitterable = data[5] & 0x1c;
569
570 p = (data[5] & 0x01) != 0 ? 1 : 0;
571 dv = (data[5] & 0x02) != 0 ? 1 : 0;
572 left = (data[5] & aiptek->curSetting.mouseButtonLeft) != 0 ? 1 : 0;
573 right = (data[5] & aiptek->curSetting.mouseButtonRight) != 0 ? 1 : 0;
574 middle = (data[5] & aiptek->curSetting.mouseButtonMiddle) != 0 ? 1 : 0;
575
576 if (dv != 0) {
577 /* If we've not already sent a tool_button_?? code, do
578 * so now. Then set FIRED_BIT so it won't be resent unless
579 * the user forces FIRED_BIT off.
580 */
581 if (TOOL_BUTTON_FIRED
582 (aiptek->curSetting.toolMode) == 0) {
583 input_report_key(inputdev,
584 TOOL_BUTTON(aiptek->curSetting.toolMode),
585 1);
586 aiptek->curSetting.toolMode |= TOOL_BUTTON_FIRED_BIT;
587 }
588
589 if (p != 0) {
590 input_report_abs(inputdev, ABS_X, x);
591 input_report_abs(inputdev, ABS_Y, y);
592
593 input_report_key(inputdev, BTN_LEFT, left);
594 input_report_key(inputdev, BTN_MIDDLE, middle);
595 input_report_key(inputdev, BTN_RIGHT, right);
596
597 /* Wheel support is in the form of a single-event
598 * firing.
599 */
600 if (aiptek->curSetting.wheel != AIPTEK_WHEEL_DISABLE) {
601 input_report_abs(inputdev,
602 ABS_WHEEL,
603 aiptek->curSetting.wheel);
604 aiptek->curSetting.wheel = AIPTEK_WHEEL_DISABLE;
605 }
606 }
607 input_report_rel(inputdev, REL_MISC, p | AIPTEK_REPORT_TOOL_MOUSE);
608 input_sync(inputdev);
609 }
610 }
611 }
612 /* Report 4s come from the macro keys when pressed by stylus
613 */
614 else if (data[0] == 4) {
615 jitterable = data[1] & 0x18;
616
617 p = (data[1] & 0x01) != 0 ? 1 : 0;
618 dv = (data[1] & 0x02) != 0 ? 1 : 0;
619 tip = (data[1] & 0x04) != 0 ? 1 : 0;
620 bs = (data[1] & aiptek->curSetting.stylusButtonLower) != 0 ? 1 : 0;
621 pck = (data[1] & aiptek->curSetting.stylusButtonUpper) != 0 ? 1 : 0;
622
623 macro = data[3];
624 z = le16_to_cpu(get_unaligned((__le16 *) (data + 4)));
625
626 if (dv != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 /* If we've not already sent a tool_button_?? code, do
628 * so now. Then set FIRED_BIT so it won't be resent unless
629 * the user forces FIRED_BIT off.
630 */
631 if (TOOL_BUTTON_FIRED(aiptek->curSetting.toolMode) == 0) {
632 input_report_key(inputdev,
633 TOOL_BUTTON(aiptek->curSetting.toolMode),
634 1);
635 aiptek->curSetting.toolMode |= TOOL_BUTTON_FIRED_BIT;
636 }
637
638 if (p != 0) {
639 input_report_key(inputdev, BTN_TOUCH, tip);
640 input_report_key(inputdev, BTN_STYLUS, bs);
641 input_report_key(inputdev, BTN_STYLUS2, pck);
642 input_report_abs(inputdev, ABS_PRESSURE, z);
643 }
644
645 /* For safety, we're sending key 'break' codes for the
646 * neighboring macro keys.
647 */
648 if (macro > 0) {
649 input_report_key(inputdev,
650 macroKeyEvents[macro - 1], 0);
651 }
652 if (macro < 25) {
653 input_report_key(inputdev,
654 macroKeyEvents[macro + 1], 0);
655 }
656 input_report_key(inputdev, macroKeyEvents[macro], p);
657 input_report_abs(inputdev, ABS_MISC,
658 p | AIPTEK_REPORT_TOOL_STYLUS);
659 input_sync(inputdev);
660 }
661 }
662 /* Report 5s come from the macro keys when pressed by mouse
663 */
664 else if (data[0] == 5) {
665 jitterable = data[1] & 0x1c;
666
667 p = (data[1] & 0x01) != 0 ? 1 : 0;
668 dv = (data[1] & 0x02) != 0 ? 1 : 0;
669 left = (data[1]& aiptek->curSetting.mouseButtonLeft) != 0 ? 1 : 0;
670 right = (data[1] & aiptek->curSetting.mouseButtonRight) != 0 ? 1 : 0;
671 middle = (data[1] & aiptek->curSetting.mouseButtonMiddle) != 0 ? 1 : 0;
672 macro = data[3];
673
674 if (dv != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 /* If we've not already sent a tool_button_?? code, do
676 * so now. Then set FIRED_BIT so it won't be resent unless
677 * the user forces FIRED_BIT off.
678 */
679 if (TOOL_BUTTON_FIRED(aiptek->curSetting.toolMode) == 0) {
680 input_report_key(inputdev,
681 TOOL_BUTTON(aiptek->curSetting.toolMode),
682 1);
683 aiptek->curSetting.toolMode |= TOOL_BUTTON_FIRED_BIT;
684 }
685
686 if (p != 0) {
687 input_report_key(inputdev, BTN_LEFT, left);
688 input_report_key(inputdev, BTN_MIDDLE, middle);
689 input_report_key(inputdev, BTN_RIGHT, right);
690 }
691
692 /* For safety, we're sending key 'break' codes for the
693 * neighboring macro keys.
694 */
695 if (macro > 0) {
696 input_report_key(inputdev,
697 macroKeyEvents[macro - 1], 0);
698 }
699 if (macro < 25) {
700 input_report_key(inputdev,
701 macroKeyEvents[macro + 1], 0);
702 }
703
704 input_report_key(inputdev, macroKeyEvents[macro], 1);
705 input_report_rel(inputdev, ABS_MISC,
706 p | AIPTEK_REPORT_TOOL_MOUSE);
707 input_sync(inputdev);
708 }
709 }
710 /* We have no idea which tool can generate a report 6. Theoretically,
711 * neither need to, having been given reports 4 & 5 for such use.
712 * However, report 6 is the 'official-looking' report for macroKeys;
713 * reports 4 & 5 supposively are used to support unnamed, unknown
714 * hat switches (which just so happen to be the macroKeys.)
715 */
716 else if (data[0] == 6) {
717 macro = le16_to_cpu(get_unaligned((__le16 *) (data + 1)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 if (macro > 0) {
719 input_report_key(inputdev, macroKeyEvents[macro - 1],
720 0);
721 }
722 if (macro < 25) {
723 input_report_key(inputdev, macroKeyEvents[macro + 1],
724 0);
725 }
726
727 /* If we've not already sent a tool_button_?? code, do
728 * so now. Then set FIRED_BIT so it won't be resent unless
729 * the user forces FIRED_BIT off.
730 */
731 if (TOOL_BUTTON_FIRED(aiptek->curSetting.toolMode) == 0) {
732 input_report_key(inputdev,
733 TOOL_BUTTON(aiptek->curSetting.
734 toolMode), 1);
735 aiptek->curSetting.toolMode |= TOOL_BUTTON_FIRED_BIT;
736 }
737
738 input_report_key(inputdev, macroKeyEvents[macro], 1);
739 input_report_abs(inputdev, ABS_MISC,
740 1 | AIPTEK_REPORT_TOOL_UNKNOWN);
741 input_sync(inputdev);
742 } else {
743 dbg("Unknown report %d", data[0]);
744 }
745
746 /* Jitter may occur when the user presses a button on the stlyus
747 * or the mouse. What we do to prevent that is wait 'x' milliseconds
748 * following a 'jitterable' event, which should give the hand some time
749 * stabilize itself.
750 *
751 * We just introduced aiptek->previousJitterable to carry forth the
752 * notion that jitter occurs when the button state changes from on to off:
753 * a person drawing, holding a button down is not subject to jittering.
754 * With that in mind, changing from upper button depressed to lower button
755 * WILL transition through a jitter delay.
756 */
757
758 if (aiptek->previousJitterable != jitterable &&
759 aiptek->curSetting.jitterDelay != 0 && aiptek->inDelay != 1) {
760 aiptek->endDelay = jiffies +
761 ((aiptek->curSetting.jitterDelay * HZ) / 1000);
762 aiptek->inDelay = 1;
763 }
764 aiptek->previousJitterable = jitterable;
765
766exit:
767 retval = usb_submit_urb(urb, GFP_ATOMIC);
768 if (retval != 0) {
769 err("%s - usb_submit_urb failed with result %d",
770 __FUNCTION__, retval);
771 }
772}
773
774/***********************************************************************
775 * These are the USB id's known so far. We do not identify them to
776 * specific Aiptek model numbers, because there has been overlaps,
777 * use, and reuse of id's in existing models. Certain models have
778 * been known to use more than one ID, indicative perhaps of
Dmitry Torokhov05f091a2005-05-29 02:29:01 -0500779 * manufacturing revisions. In any event, we consider these
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 * IDs to not be model-specific nor unique.
781 */
782static const struct usb_device_id aiptek_ids[] = {
783 {USB_DEVICE(USB_VENDOR_ID_AIPTEK, 0x01)},
784 {USB_DEVICE(USB_VENDOR_ID_AIPTEK, 0x10)},
785 {USB_DEVICE(USB_VENDOR_ID_AIPTEK, 0x20)},
786 {USB_DEVICE(USB_VENDOR_ID_AIPTEK, 0x21)},
787 {USB_DEVICE(USB_VENDOR_ID_AIPTEK, 0x22)},
788 {USB_DEVICE(USB_VENDOR_ID_AIPTEK, 0x23)},
789 {USB_DEVICE(USB_VENDOR_ID_AIPTEK, 0x24)},
790 {}
791};
792
793MODULE_DEVICE_TABLE(usb, aiptek_ids);
794
795/***********************************************************************
796 * Open an instance of the tablet driver.
797 */
798static int aiptek_open(struct input_dev *inputdev)
799{
Dmitry Torokhov7791bda2007-04-12 01:34:39 -0400800 struct aiptek *aiptek = input_get_drvdata(inputdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 aiptek->urb->dev = aiptek->usbdev;
Dmitry Torokhov65cde542005-05-29 02:29:38 -0500803 if (usb_submit_urb(aiptek->urb, GFP_KERNEL) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
806 return 0;
807}
808
809/***********************************************************************
810 * Close an instance of the tablet driver.
811 */
812static void aiptek_close(struct input_dev *inputdev)
813{
Dmitry Torokhov7791bda2007-04-12 01:34:39 -0400814 struct aiptek *aiptek = input_get_drvdata(inputdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
Dmitry Torokhov65cde542005-05-29 02:29:38 -0500816 usb_kill_urb(aiptek->urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817}
818
819/***********************************************************************
Dmitry Torokhov05f091a2005-05-29 02:29:01 -0500820 * aiptek_set_report and aiptek_get_report() are borrowed from Linux 2.4.x,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 * where they were known as usb_set_report and usb_get_report.
822 */
823static int
824aiptek_set_report(struct aiptek *aiptek,
825 unsigned char report_type,
826 unsigned char report_id, void *buffer, int size)
827{
828 return usb_control_msg(aiptek->usbdev,
829 usb_sndctrlpipe(aiptek->usbdev, 0),
830 USB_REQ_SET_REPORT,
831 USB_TYPE_CLASS | USB_RECIP_INTERFACE |
832 USB_DIR_OUT, (report_type << 8) + report_id,
833 aiptek->ifnum, buffer, size, 5000);
834}
835
836static int
837aiptek_get_report(struct aiptek *aiptek,
838 unsigned char report_type,
839 unsigned char report_id, void *buffer, int size)
840{
841 return usb_control_msg(aiptek->usbdev,
842 usb_rcvctrlpipe(aiptek->usbdev, 0),
843 USB_REQ_GET_REPORT,
844 USB_TYPE_CLASS | USB_RECIP_INTERFACE |
845 USB_DIR_IN, (report_type << 8) + report_id,
846 aiptek->ifnum, buffer, size, 5000);
847}
848
849/***********************************************************************
850 * Send a command to the tablet.
851 */
852static int
853aiptek_command(struct aiptek *aiptek, unsigned char command, unsigned char data)
854{
855 const int sizeof_buf = 3 * sizeof(u8);
856 int ret;
857 u8 *buf;
858
859 buf = kmalloc(sizeof_buf, GFP_KERNEL);
860 if (!buf)
861 return -ENOMEM;
862
863 buf[0] = 2;
864 buf[1] = command;
865 buf[2] = data;
866
867 if ((ret =
868 aiptek_set_report(aiptek, 3, 2, buf, sizeof_buf)) != sizeof_buf) {
869 dbg("aiptek_program: failed, tried to send: 0x%02x 0x%02x",
870 command, data);
871 }
872 kfree(buf);
873 return ret < 0 ? ret : 0;
874}
875
876/***********************************************************************
877 * Retrieve information from the tablet. Querying info is defined as first
878 * sending the {command,data} sequence as a command, followed by a wait
879 * (aka, "programmaticDelay") and then a "read" request.
880 */
881static int
882aiptek_query(struct aiptek *aiptek, unsigned char command, unsigned char data)
883{
884 const int sizeof_buf = 3 * sizeof(u8);
885 int ret;
886 u8 *buf;
887
888 buf = kmalloc(sizeof_buf, GFP_KERNEL);
889 if (!buf)
890 return -ENOMEM;
891
892 buf[0] = 2;
893 buf[1] = command;
894 buf[2] = data;
895
896 if (aiptek_command(aiptek, command, data) != 0) {
897 kfree(buf);
898 return -EIO;
899 }
900 msleep(aiptek->curSetting.programmableDelay);
901
902 if ((ret =
903 aiptek_get_report(aiptek, 3, 2, buf, sizeof_buf)) != sizeof_buf) {
904 dbg("aiptek_query failed: returned 0x%02x 0x%02x 0x%02x",
905 buf[0], buf[1], buf[2]);
906 ret = -EIO;
907 } else {
908 ret = le16_to_cpu(get_unaligned((__le16 *) (buf + 1)));
909 }
910 kfree(buf);
911 return ret;
912}
913
914/***********************************************************************
915 * Program the tablet into either absolute or relative mode.
916 * We also get information about the tablet's size.
917 */
918static int aiptek_program_tablet(struct aiptek *aiptek)
919{
920 int ret;
921 /* Execute Resolution500LPI */
922 if ((ret = aiptek_command(aiptek, 0x18, 0x04)) < 0)
923 return ret;
924
925 /* Query getModelCode */
926 if ((ret = aiptek_query(aiptek, 0x02, 0x00)) < 0)
927 return ret;
928 aiptek->features.modelCode = ret & 0xff;
929
930 /* Query getODMCode */
931 if ((ret = aiptek_query(aiptek, 0x03, 0x00)) < 0)
932 return ret;
933 aiptek->features.odmCode = ret;
934
935 /* Query getFirmwareCode */
936 if ((ret = aiptek_query(aiptek, 0x04, 0x00)) < 0)
937 return ret;
938 aiptek->features.firmwareCode = ret;
939
940 /* Query getXextension */
941 if ((ret = aiptek_query(aiptek, 0x01, 0x00)) < 0)
942 return ret;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500943 aiptek->inputdev->absmin[ABS_X] = 0;
944 aiptek->inputdev->absmax[ABS_X] = ret - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
946 /* Query getYextension */
947 if ((ret = aiptek_query(aiptek, 0x01, 0x01)) < 0)
948 return ret;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500949 aiptek->inputdev->absmin[ABS_Y] = 0;
950 aiptek->inputdev->absmax[ABS_Y] = ret - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
952 /* Query getPressureLevels */
953 if ((ret = aiptek_query(aiptek, 0x08, 0x00)) < 0)
954 return ret;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500955 aiptek->inputdev->absmin[ABS_PRESSURE] = 0;
956 aiptek->inputdev->absmax[ABS_PRESSURE] = ret - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957
958 /* Depending on whether we are in absolute or relative mode, we will
959 * do a switchToTablet(absolute) or switchToMouse(relative) command.
960 */
961 if (aiptek->curSetting.coordinateMode ==
962 AIPTEK_COORDINATE_ABSOLUTE_MODE) {
963 /* Execute switchToTablet */
964 if ((ret = aiptek_command(aiptek, 0x10, 0x01)) < 0) {
965 return ret;
966 }
967 } else {
968 /* Execute switchToMouse */
969 if ((ret = aiptek_command(aiptek, 0x10, 0x00)) < 0) {
970 return ret;
971 }
972 }
973
974 /* Enable the macro keys */
975 if ((ret = aiptek_command(aiptek, 0x11, 0x02)) < 0)
976 return ret;
977#if 0
978 /* Execute FilterOn */
979 if ((ret = aiptek_command(aiptek, 0x17, 0x00)) < 0)
980 return ret;
981#endif
982
983 /* Execute AutoGainOn */
984 if ((ret = aiptek_command(aiptek, 0x12, 0xff)) < 0)
985 return ret;
986
987 /* Reset the eventCount, so we track events from last (re)programming
988 */
989 aiptek->diagnostic = AIPTEK_DIAGNOSTIC_NA;
990 aiptek->eventCount = 0;
991
992 return 0;
993}
994
995/***********************************************************************
996 * Sysfs functions. Sysfs prefers that individually-tunable parameters
997 * exist in their separate pseudo-files. Summary data that is immutable
998 * may exist in a singular file so long as you don't define a writeable
999 * interface.
1000 */
1001
1002/***********************************************************************
1003 * support the 'size' file -- display support
1004 */
Yani Ioannou060b8842005-05-17 06:44:04 -04001005static ssize_t show_tabletSize(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006{
1007 struct aiptek *aiptek = dev_get_drvdata(dev);
1008
1009 if (aiptek == NULL)
1010 return 0;
1011
1012 return snprintf(buf, PAGE_SIZE, "%dx%d\n",
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001013 aiptek->inputdev->absmax[ABS_X] + 1,
1014 aiptek->inputdev->absmax[ABS_Y] + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015}
1016
1017/* These structs define the sysfs files, param #1 is the name of the
1018 * file, param 2 is the file permissions, param 3 & 4 are to the
1019 * output generator and input parser routines. Absence of a routine is
1020 * permitted -- it only means can't either 'cat' the file, or send data
1021 * to it.
1022 */
1023static DEVICE_ATTR(size, S_IRUGO, show_tabletSize, NULL);
1024
1025/***********************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 * support routines for the 'pointer_mode' file. Note that this file
1027 * both displays current setting and allows reprogramming.
1028 */
Yani Ioannou060b8842005-05-17 06:44:04 -04001029static ssize_t show_tabletPointerMode(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030{
1031 struct aiptek *aiptek = dev_get_drvdata(dev);
1032 char *s;
1033
1034 if (aiptek == NULL)
1035 return 0;
1036
1037 switch (aiptek->curSetting.pointerMode) {
1038 case AIPTEK_POINTER_ONLY_STYLUS_MODE:
1039 s = "stylus";
1040 break;
1041
1042 case AIPTEK_POINTER_ONLY_MOUSE_MODE:
1043 s = "mouse";
1044 break;
1045
1046 case AIPTEK_POINTER_EITHER_MODE:
1047 s = "either";
1048 break;
1049
1050 default:
1051 s = "unknown";
1052 break;
1053 }
1054 return snprintf(buf, PAGE_SIZE, "%s\n", s);
1055}
1056
1057static ssize_t
Yani Ioannou060b8842005-05-17 06:44:04 -04001058store_tabletPointerMode(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059{
1060 struct aiptek *aiptek = dev_get_drvdata(dev);
1061 if (aiptek == NULL)
1062 return 0;
1063
1064 if (strcmp(buf, "stylus") == 0) {
1065 aiptek->newSetting.pointerMode =
1066 AIPTEK_POINTER_ONLY_STYLUS_MODE;
1067 } else if (strcmp(buf, "mouse") == 0) {
1068 aiptek->newSetting.pointerMode = AIPTEK_POINTER_ONLY_MOUSE_MODE;
1069 } else if (strcmp(buf, "either") == 0) {
1070 aiptek->newSetting.pointerMode = AIPTEK_POINTER_EITHER_MODE;
1071 }
1072 return count;
1073}
1074
1075static DEVICE_ATTR(pointer_mode,
1076 S_IRUGO | S_IWUGO,
1077 show_tabletPointerMode, store_tabletPointerMode);
1078
1079/***********************************************************************
1080 * support routines for the 'coordinate_mode' file. Note that this file
1081 * both displays current setting and allows reprogramming.
1082 */
Yani Ioannou060b8842005-05-17 06:44:04 -04001083static ssize_t show_tabletCoordinateMode(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084{
1085 struct aiptek *aiptek = dev_get_drvdata(dev);
1086 char *s;
1087
1088 if (aiptek == NULL)
1089 return 0;
1090
1091 switch (aiptek->curSetting.coordinateMode) {
1092 case AIPTEK_COORDINATE_ABSOLUTE_MODE:
1093 s = "absolute";
1094 break;
1095
1096 case AIPTEK_COORDINATE_RELATIVE_MODE:
1097 s = "relative";
1098 break;
1099
1100 default:
1101 s = "unknown";
1102 break;
1103 }
1104 return snprintf(buf, PAGE_SIZE, "%s\n", s);
1105}
1106
1107static ssize_t
Yani Ioannou060b8842005-05-17 06:44:04 -04001108store_tabletCoordinateMode(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109{
1110 struct aiptek *aiptek = dev_get_drvdata(dev);
1111 if (aiptek == NULL)
1112 return 0;
1113
1114 if (strcmp(buf, "absolute") == 0) {
1115 aiptek->newSetting.pointerMode =
1116 AIPTEK_COORDINATE_ABSOLUTE_MODE;
1117 } else if (strcmp(buf, "relative") == 0) {
1118 aiptek->newSetting.pointerMode =
1119 AIPTEK_COORDINATE_RELATIVE_MODE;
1120 }
1121 return count;
1122}
1123
1124static DEVICE_ATTR(coordinate_mode,
1125 S_IRUGO | S_IWUGO,
1126 show_tabletCoordinateMode, store_tabletCoordinateMode);
1127
1128/***********************************************************************
1129 * support routines for the 'tool_mode' file. Note that this file
1130 * both displays current setting and allows reprogramming.
1131 */
Yani Ioannou060b8842005-05-17 06:44:04 -04001132static ssize_t show_tabletToolMode(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133{
1134 struct aiptek *aiptek = dev_get_drvdata(dev);
1135 char *s;
1136
1137 if (aiptek == NULL)
1138 return 0;
1139
1140 switch (TOOL_BUTTON(aiptek->curSetting.toolMode)) {
1141 case AIPTEK_TOOL_BUTTON_MOUSE_MODE:
1142 s = "mouse";
1143 break;
1144
1145 case AIPTEK_TOOL_BUTTON_ERASER_MODE:
1146 s = "eraser";
1147 break;
1148
1149 case AIPTEK_TOOL_BUTTON_PENCIL_MODE:
1150 s = "pencil";
1151 break;
1152
1153 case AIPTEK_TOOL_BUTTON_PEN_MODE:
1154 s = "pen";
1155 break;
1156
1157 case AIPTEK_TOOL_BUTTON_BRUSH_MODE:
1158 s = "brush";
1159 break;
1160
1161 case AIPTEK_TOOL_BUTTON_AIRBRUSH_MODE:
1162 s = "airbrush";
1163 break;
1164
1165 case AIPTEK_TOOL_BUTTON_LENS_MODE:
1166 s = "lens";
1167 break;
1168
1169 default:
1170 s = "unknown";
1171 break;
1172 }
1173 return snprintf(buf, PAGE_SIZE, "%s\n", s);
1174}
1175
1176static ssize_t
Yani Ioannou060b8842005-05-17 06:44:04 -04001177store_tabletToolMode(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178{
1179 struct aiptek *aiptek = dev_get_drvdata(dev);
1180 if (aiptek == NULL)
1181 return 0;
1182
1183 if (strcmp(buf, "mouse") == 0) {
1184 aiptek->newSetting.toolMode = AIPTEK_TOOL_BUTTON_MOUSE_MODE;
1185 } else if (strcmp(buf, "eraser") == 0) {
1186 aiptek->newSetting.toolMode = AIPTEK_TOOL_BUTTON_ERASER_MODE;
1187 } else if (strcmp(buf, "pencil") == 0) {
1188 aiptek->newSetting.toolMode = AIPTEK_TOOL_BUTTON_PENCIL_MODE;
1189 } else if (strcmp(buf, "pen") == 0) {
1190 aiptek->newSetting.toolMode = AIPTEK_TOOL_BUTTON_PEN_MODE;
1191 } else if (strcmp(buf, "brush") == 0) {
1192 aiptek->newSetting.toolMode = AIPTEK_TOOL_BUTTON_BRUSH_MODE;
1193 } else if (strcmp(buf, "airbrush") == 0) {
1194 aiptek->newSetting.toolMode = AIPTEK_TOOL_BUTTON_AIRBRUSH_MODE;
1195 } else if (strcmp(buf, "lens") == 0) {
1196 aiptek->newSetting.toolMode = AIPTEK_TOOL_BUTTON_LENS_MODE;
1197 }
1198
1199 return count;
1200}
1201
1202static DEVICE_ATTR(tool_mode,
1203 S_IRUGO | S_IWUGO,
1204 show_tabletToolMode, store_tabletToolMode);
1205
1206/***********************************************************************
1207 * support routines for the 'xtilt' file. Note that this file
1208 * both displays current setting and allows reprogramming.
1209 */
Yani Ioannou060b8842005-05-17 06:44:04 -04001210static ssize_t show_tabletXtilt(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211{
1212 struct aiptek *aiptek = dev_get_drvdata(dev);
1213
1214 if (aiptek == NULL)
1215 return 0;
1216
1217 if (aiptek->curSetting.xTilt == AIPTEK_TILT_DISABLE) {
1218 return snprintf(buf, PAGE_SIZE, "disable\n");
1219 } else {
1220 return snprintf(buf, PAGE_SIZE, "%d\n",
1221 aiptek->curSetting.xTilt);
1222 }
1223}
1224
1225static ssize_t
Yani Ioannou060b8842005-05-17 06:44:04 -04001226store_tabletXtilt(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227{
1228 struct aiptek *aiptek = dev_get_drvdata(dev);
1229 int x;
1230
1231 if (aiptek == NULL)
1232 return 0;
1233
1234 if (strcmp(buf, "disable") == 0) {
1235 aiptek->newSetting.xTilt = AIPTEK_TILT_DISABLE;
1236 } else {
1237 x = (int)simple_strtol(buf, NULL, 10);
1238 if (x >= AIPTEK_TILT_MIN && x <= AIPTEK_TILT_MAX) {
1239 aiptek->newSetting.xTilt = x;
1240 }
1241 }
1242 return count;
1243}
1244
1245static DEVICE_ATTR(xtilt,
1246 S_IRUGO | S_IWUGO, show_tabletXtilt, store_tabletXtilt);
1247
1248/***********************************************************************
1249 * support routines for the 'ytilt' 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_tabletYtilt(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
1256 if (aiptek == NULL)
1257 return 0;
1258
1259 if (aiptek->curSetting.yTilt == AIPTEK_TILT_DISABLE) {
1260 return snprintf(buf, PAGE_SIZE, "disable\n");
1261 } else {
1262 return snprintf(buf, PAGE_SIZE, "%d\n",
1263 aiptek->curSetting.yTilt);
1264 }
1265}
1266
1267static ssize_t
Yani Ioannou060b8842005-05-17 06:44:04 -04001268store_tabletYtilt(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269{
1270 struct aiptek *aiptek = dev_get_drvdata(dev);
1271 int y;
1272
1273 if (aiptek == NULL)
1274 return 0;
1275
1276 if (strcmp(buf, "disable") == 0) {
1277 aiptek->newSetting.yTilt = AIPTEK_TILT_DISABLE;
1278 } else {
1279 y = (int)simple_strtol(buf, NULL, 10);
1280 if (y >= AIPTEK_TILT_MIN && y <= AIPTEK_TILT_MAX) {
1281 aiptek->newSetting.yTilt = y;
1282 }
1283 }
1284 return count;
1285}
1286
1287static DEVICE_ATTR(ytilt,
1288 S_IRUGO | S_IWUGO, show_tabletYtilt, store_tabletYtilt);
1289
1290/***********************************************************************
1291 * support routines for the 'jitter' file. Note that this file
1292 * both displays current setting and allows reprogramming.
1293 */
Yani Ioannou060b8842005-05-17 06:44:04 -04001294static ssize_t show_tabletJitterDelay(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295{
1296 struct aiptek *aiptek = dev_get_drvdata(dev);
1297
1298 if (aiptek == NULL)
1299 return 0;
1300
1301 return snprintf(buf, PAGE_SIZE, "%d\n", aiptek->curSetting.jitterDelay);
1302}
1303
1304static ssize_t
Yani Ioannou060b8842005-05-17 06:44:04 -04001305store_tabletJitterDelay(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306{
1307 struct aiptek *aiptek = dev_get_drvdata(dev);
1308
1309 if (aiptek == NULL)
1310 return 0;
1311
1312 aiptek->newSetting.jitterDelay = (int)simple_strtol(buf, NULL, 10);
1313 return count;
1314}
1315
1316static DEVICE_ATTR(jitter,
1317 S_IRUGO | S_IWUGO,
1318 show_tabletJitterDelay, store_tabletJitterDelay);
1319
1320/***********************************************************************
1321 * support routines for the 'delay' file. Note that this file
1322 * both displays current setting and allows reprogramming.
1323 */
Yani Ioannou060b8842005-05-17 06:44:04 -04001324static ssize_t show_tabletProgrammableDelay(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325{
1326 struct aiptek *aiptek = dev_get_drvdata(dev);
1327
1328 if (aiptek == NULL)
1329 return 0;
1330
1331 return snprintf(buf, PAGE_SIZE, "%d\n",
1332 aiptek->curSetting.programmableDelay);
1333}
1334
1335static ssize_t
Yani Ioannou060b8842005-05-17 06:44:04 -04001336store_tabletProgrammableDelay(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337{
1338 struct aiptek *aiptek = dev_get_drvdata(dev);
1339
1340 if (aiptek == NULL)
1341 return 0;
1342
1343 aiptek->newSetting.programmableDelay = (int)simple_strtol(buf, NULL, 10);
1344 return count;
1345}
1346
1347static DEVICE_ATTR(delay,
1348 S_IRUGO | S_IWUGO,
1349 show_tabletProgrammableDelay, store_tabletProgrammableDelay);
1350
1351/***********************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 * support routines for the 'event_count' file. Note that this file
1353 * only displays current setting.
1354 */
Yani Ioannou060b8842005-05-17 06:44:04 -04001355static ssize_t show_tabletEventsReceived(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356{
1357 struct aiptek *aiptek = dev_get_drvdata(dev);
1358
1359 if (aiptek == NULL)
1360 return 0;
1361
1362 return snprintf(buf, PAGE_SIZE, "%ld\n", aiptek->eventCount);
1363}
1364
1365static DEVICE_ATTR(event_count, S_IRUGO, show_tabletEventsReceived, NULL);
1366
1367/***********************************************************************
1368 * support routines for the 'diagnostic' file. Note that this file
1369 * only displays current setting.
1370 */
Yani Ioannou060b8842005-05-17 06:44:04 -04001371static ssize_t show_tabletDiagnosticMessage(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372{
1373 struct aiptek *aiptek = dev_get_drvdata(dev);
1374 char *retMsg;
1375
1376 if (aiptek == NULL)
1377 return 0;
1378
1379 switch (aiptek->diagnostic) {
1380 case AIPTEK_DIAGNOSTIC_NA:
1381 retMsg = "no errors\n";
1382 break;
1383
1384 case AIPTEK_DIAGNOSTIC_SENDING_RELATIVE_IN_ABSOLUTE:
1385 retMsg = "Error: receiving relative reports\n";
1386 break;
1387
1388 case AIPTEK_DIAGNOSTIC_SENDING_ABSOLUTE_IN_RELATIVE:
1389 retMsg = "Error: receiving absolute reports\n";
1390 break;
1391
1392 case AIPTEK_DIAGNOSTIC_TOOL_DISALLOWED:
1393 if (aiptek->curSetting.pointerMode ==
1394 AIPTEK_POINTER_ONLY_MOUSE_MODE) {
1395 retMsg = "Error: receiving stylus reports\n";
1396 } else {
1397 retMsg = "Error: receiving mouse reports\n";
1398 }
1399 break;
1400
1401 default:
1402 return 0;
1403 }
1404 return snprintf(buf, PAGE_SIZE, retMsg);
1405}
1406
1407static DEVICE_ATTR(diagnostic, S_IRUGO, show_tabletDiagnosticMessage, NULL);
1408
1409/***********************************************************************
1410 * support routines for the 'stylus_upper' file. Note that this file
1411 * both displays current setting and allows for setting changing.
1412 */
Yani Ioannou060b8842005-05-17 06:44:04 -04001413static ssize_t show_tabletStylusUpper(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414{
1415 struct aiptek *aiptek = dev_get_drvdata(dev);
1416 char *s;
1417
1418 if (aiptek == NULL)
1419 return 0;
1420
1421 switch (aiptek->curSetting.stylusButtonUpper) {
1422 case AIPTEK_STYLUS_UPPER_BUTTON:
1423 s = "upper";
1424 break;
1425
1426 case AIPTEK_STYLUS_LOWER_BUTTON:
1427 s = "lower";
1428 break;
1429
1430 default:
1431 s = "unknown";
1432 break;
1433 }
1434 return snprintf(buf, PAGE_SIZE, "%s\n", s);
1435}
1436
1437static ssize_t
Yani Ioannou060b8842005-05-17 06:44:04 -04001438store_tabletStylusUpper(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439{
1440 struct aiptek *aiptek = dev_get_drvdata(dev);
1441
1442 if (aiptek == NULL)
1443 return 0;
1444
1445 if (strcmp(buf, "upper") == 0) {
1446 aiptek->newSetting.stylusButtonUpper =
1447 AIPTEK_STYLUS_UPPER_BUTTON;
1448 } else if (strcmp(buf, "lower") == 0) {
1449 aiptek->newSetting.stylusButtonUpper =
1450 AIPTEK_STYLUS_LOWER_BUTTON;
1451 }
1452 return count;
1453}
1454
1455static DEVICE_ATTR(stylus_upper,
1456 S_IRUGO | S_IWUGO,
1457 show_tabletStylusUpper, store_tabletStylusUpper);
1458
1459/***********************************************************************
1460 * support routines for the 'stylus_lower' file. Note that this file
1461 * both displays current setting and allows for setting changing.
1462 */
Yani Ioannou060b8842005-05-17 06:44:04 -04001463static ssize_t show_tabletStylusLower(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464{
1465 struct aiptek *aiptek = dev_get_drvdata(dev);
1466 char *s;
1467
1468 if (aiptek == NULL)
1469 return 0;
1470
1471 switch (aiptek->curSetting.stylusButtonLower) {
1472 case AIPTEK_STYLUS_UPPER_BUTTON:
1473 s = "upper";
1474 break;
1475
1476 case AIPTEK_STYLUS_LOWER_BUTTON:
1477 s = "lower";
1478 break;
1479
1480 default:
1481 s = "unknown";
1482 break;
1483 }
1484 return snprintf(buf, PAGE_SIZE, "%s\n", s);
1485}
1486
1487static ssize_t
Yani Ioannou060b8842005-05-17 06:44:04 -04001488store_tabletStylusLower(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489{
1490 struct aiptek *aiptek = dev_get_drvdata(dev);
1491
1492 if (aiptek == NULL)
1493 return 0;
1494
1495 if (strcmp(buf, "upper") == 0) {
1496 aiptek->newSetting.stylusButtonLower =
1497 AIPTEK_STYLUS_UPPER_BUTTON;
1498 } else if (strcmp(buf, "lower") == 0) {
1499 aiptek->newSetting.stylusButtonLower =
1500 AIPTEK_STYLUS_LOWER_BUTTON;
1501 }
1502 return count;
1503}
1504
1505static DEVICE_ATTR(stylus_lower,
1506 S_IRUGO | S_IWUGO,
1507 show_tabletStylusLower, store_tabletStylusLower);
1508
1509/***********************************************************************
1510 * support routines for the 'mouse_left' file. Note that this file
1511 * both displays current setting and allows for setting changing.
1512 */
Yani Ioannou060b8842005-05-17 06:44:04 -04001513static ssize_t show_tabletMouseLeft(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514{
1515 struct aiptek *aiptek = dev_get_drvdata(dev);
1516 char *s;
1517
1518 if (aiptek == NULL)
1519 return 0;
1520
1521 switch (aiptek->curSetting.mouseButtonLeft) {
1522 case AIPTEK_MOUSE_LEFT_BUTTON:
1523 s = "left";
1524 break;
1525
1526 case AIPTEK_MOUSE_MIDDLE_BUTTON:
1527 s = "middle";
1528 break;
1529
1530 case AIPTEK_MOUSE_RIGHT_BUTTON:
1531 s = "right";
1532 break;
1533
1534 default:
1535 s = "unknown";
1536 break;
1537 }
1538 return snprintf(buf, PAGE_SIZE, "%s\n", s);
1539}
1540
1541static ssize_t
Yani Ioannou060b8842005-05-17 06:44:04 -04001542store_tabletMouseLeft(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543{
1544 struct aiptek *aiptek = dev_get_drvdata(dev);
1545
1546 if (aiptek == NULL)
1547 return 0;
1548
1549 if (strcmp(buf, "left") == 0) {
1550 aiptek->newSetting.mouseButtonLeft = AIPTEK_MOUSE_LEFT_BUTTON;
1551 } else if (strcmp(buf, "middle") == 0) {
1552 aiptek->newSetting.mouseButtonLeft = AIPTEK_MOUSE_MIDDLE_BUTTON;
1553 } else if (strcmp(buf, "right") == 0) {
1554 aiptek->newSetting.mouseButtonLeft = AIPTEK_MOUSE_RIGHT_BUTTON;
1555 }
1556 return count;
1557}
1558
1559static DEVICE_ATTR(mouse_left,
1560 S_IRUGO | S_IWUGO,
1561 show_tabletMouseLeft, store_tabletMouseLeft);
1562
1563/***********************************************************************
1564 * support routines for the 'mouse_middle' file. Note that this file
1565 * both displays current setting and allows for setting changing.
1566 */
Yani Ioannou060b8842005-05-17 06:44:04 -04001567static ssize_t show_tabletMouseMiddle(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568{
1569 struct aiptek *aiptek = dev_get_drvdata(dev);
1570 char *s;
1571
1572 if (aiptek == NULL)
1573 return 0;
1574
1575 switch (aiptek->curSetting.mouseButtonMiddle) {
1576 case AIPTEK_MOUSE_LEFT_BUTTON:
1577 s = "left";
1578 break;
1579
1580 case AIPTEK_MOUSE_MIDDLE_BUTTON:
1581 s = "middle";
1582 break;
1583
1584 case AIPTEK_MOUSE_RIGHT_BUTTON:
1585 s = "right";
1586 break;
1587
1588 default:
1589 s = "unknown";
1590 break;
1591 }
1592 return snprintf(buf, PAGE_SIZE, "%s\n", s);
1593}
1594
1595static ssize_t
Yani Ioannou060b8842005-05-17 06:44:04 -04001596store_tabletMouseMiddle(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597{
1598 struct aiptek *aiptek = dev_get_drvdata(dev);
1599
1600 if (aiptek == NULL)
1601 return 0;
1602
1603 if (strcmp(buf, "left") == 0) {
1604 aiptek->newSetting.mouseButtonMiddle = AIPTEK_MOUSE_LEFT_BUTTON;
1605 } else if (strcmp(buf, "middle") == 0) {
1606 aiptek->newSetting.mouseButtonMiddle =
1607 AIPTEK_MOUSE_MIDDLE_BUTTON;
1608 } else if (strcmp(buf, "right") == 0) {
1609 aiptek->newSetting.mouseButtonMiddle =
1610 AIPTEK_MOUSE_RIGHT_BUTTON;
1611 }
1612 return count;
1613}
1614
1615static DEVICE_ATTR(mouse_middle,
1616 S_IRUGO | S_IWUGO,
1617 show_tabletMouseMiddle, store_tabletMouseMiddle);
1618
1619/***********************************************************************
1620 * support routines for the 'mouse_right' file. Note that this file
1621 * both displays current setting and allows for setting changing.
1622 */
Yani Ioannou060b8842005-05-17 06:44:04 -04001623static ssize_t show_tabletMouseRight(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624{
1625 struct aiptek *aiptek = dev_get_drvdata(dev);
1626 char *s;
1627
1628 if (aiptek == NULL)
1629 return 0;
1630
1631 switch (aiptek->curSetting.mouseButtonRight) {
1632 case AIPTEK_MOUSE_LEFT_BUTTON:
1633 s = "left";
1634 break;
1635
1636 case AIPTEK_MOUSE_MIDDLE_BUTTON:
1637 s = "middle";
1638 break;
1639
1640 case AIPTEK_MOUSE_RIGHT_BUTTON:
1641 s = "right";
1642 break;
1643
1644 default:
1645 s = "unknown";
1646 break;
1647 }
1648 return snprintf(buf, PAGE_SIZE, "%s\n", s);
1649}
1650
1651static ssize_t
Yani Ioannou060b8842005-05-17 06:44:04 -04001652store_tabletMouseRight(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653{
1654 struct aiptek *aiptek = dev_get_drvdata(dev);
1655
1656 if (aiptek == NULL)
1657 return 0;
1658
1659 if (strcmp(buf, "left") == 0) {
1660 aiptek->newSetting.mouseButtonRight = AIPTEK_MOUSE_LEFT_BUTTON;
1661 } else if (strcmp(buf, "middle") == 0) {
1662 aiptek->newSetting.mouseButtonRight =
1663 AIPTEK_MOUSE_MIDDLE_BUTTON;
1664 } else if (strcmp(buf, "right") == 0) {
1665 aiptek->newSetting.mouseButtonRight = AIPTEK_MOUSE_RIGHT_BUTTON;
1666 }
1667 return count;
1668}
1669
1670static DEVICE_ATTR(mouse_right,
1671 S_IRUGO | S_IWUGO,
1672 show_tabletMouseRight, store_tabletMouseRight);
1673
1674/***********************************************************************
1675 * support routines for the 'wheel' file. Note that this file
1676 * both displays current setting and allows for setting changing.
1677 */
Yani Ioannou060b8842005-05-17 06:44:04 -04001678static ssize_t show_tabletWheel(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679{
1680 struct aiptek *aiptek = dev_get_drvdata(dev);
1681
1682 if (aiptek == NULL)
1683 return 0;
1684
1685 if (aiptek->curSetting.wheel == AIPTEK_WHEEL_DISABLE) {
1686 return snprintf(buf, PAGE_SIZE, "disable\n");
1687 } else {
1688 return snprintf(buf, PAGE_SIZE, "%d\n",
1689 aiptek->curSetting.wheel);
1690 }
1691}
1692
1693static ssize_t
Yani Ioannou060b8842005-05-17 06:44:04 -04001694store_tabletWheel(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695{
1696 struct aiptek *aiptek = dev_get_drvdata(dev);
1697
1698 if (aiptek == NULL)
1699 return 0;
1700
1701 aiptek->newSetting.wheel = (int)simple_strtol(buf, NULL, 10);
1702 return count;
1703}
1704
1705static DEVICE_ATTR(wheel,
1706 S_IRUGO | S_IWUGO, show_tabletWheel, store_tabletWheel);
1707
1708/***********************************************************************
1709 * support routines for the 'execute' file. Note that this file
1710 * both displays current setting and allows for setting changing.
1711 */
Yani Ioannou060b8842005-05-17 06:44:04 -04001712static ssize_t show_tabletExecute(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713{
1714 struct aiptek *aiptek = dev_get_drvdata(dev);
1715
1716 if (aiptek == NULL)
1717 return 0;
1718
1719 /* There is nothing useful to display, so a one-line manual
1720 * is in order...
1721 */
1722 return snprintf(buf, PAGE_SIZE,
1723 "Write anything to this file to program your tablet.\n");
1724}
1725
1726static ssize_t
Yani Ioannou060b8842005-05-17 06:44:04 -04001727store_tabletExecute(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728{
1729 struct aiptek *aiptek = dev_get_drvdata(dev);
1730
1731 if (aiptek == NULL)
1732 return 0;
1733
1734 /* We do not care what you write to this file. Merely the action
1735 * of writing to this file triggers a tablet reprogramming.
1736 */
1737 memcpy(&aiptek->curSetting, &aiptek->newSetting,
1738 sizeof(struct aiptek_settings));
1739
1740 if (aiptek_program_tablet(aiptek) < 0)
1741 return -EIO;
1742
1743 return count;
1744}
1745
1746static DEVICE_ATTR(execute,
1747 S_IRUGO | S_IWUGO, show_tabletExecute, store_tabletExecute);
1748
1749/***********************************************************************
1750 * support routines for the 'odm_code' file. Note that this file
1751 * only displays current setting.
1752 */
Yani Ioannou060b8842005-05-17 06:44:04 -04001753static ssize_t show_tabletODMCode(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754{
1755 struct aiptek *aiptek = dev_get_drvdata(dev);
1756
1757 if (aiptek == NULL)
1758 return 0;
1759
1760 return snprintf(buf, PAGE_SIZE, "0x%04x\n", aiptek->features.odmCode);
1761}
1762
1763static DEVICE_ATTR(odm_code, S_IRUGO, show_tabletODMCode, NULL);
1764
1765/***********************************************************************
1766 * support routines for the 'model_code' file. Note that this file
1767 * only displays current setting.
1768 */
Yani Ioannou060b8842005-05-17 06:44:04 -04001769static ssize_t show_tabletModelCode(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770{
1771 struct aiptek *aiptek = dev_get_drvdata(dev);
1772
1773 if (aiptek == NULL)
1774 return 0;
1775
1776 return snprintf(buf, PAGE_SIZE, "0x%04x\n", aiptek->features.modelCode);
1777}
1778
1779static DEVICE_ATTR(model_code, S_IRUGO, show_tabletModelCode, NULL);
1780
1781/***********************************************************************
1782 * support routines for the 'firmware_code' file. Note that this file
1783 * only displays current setting.
1784 */
Yani Ioannou060b8842005-05-17 06:44:04 -04001785static ssize_t show_firmwareCode(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786{
1787 struct aiptek *aiptek = dev_get_drvdata(dev);
1788
1789 if (aiptek == NULL)
1790 return 0;
1791
1792 return snprintf(buf, PAGE_SIZE, "%04x\n",
1793 aiptek->features.firmwareCode);
1794}
1795
1796static DEVICE_ATTR(firmware_code, S_IRUGO, show_firmwareCode, NULL);
1797
Dmitry Torokhovb087e1f2007-05-21 00:17:37 -04001798static struct attribute *aiptek_attributes[] = {
1799 &dev_attr_size.attr,
1800 &dev_attr_pointer_mode.attr,
1801 &dev_attr_coordinate_mode.attr,
1802 &dev_attr_tool_mode.attr,
1803 &dev_attr_xtilt.attr,
1804 &dev_attr_ytilt.attr,
1805 &dev_attr_jitter.attr,
1806 &dev_attr_delay.attr,
1807 &dev_attr_event_count.attr,
1808 &dev_attr_diagnostic.attr,
1809 &dev_attr_odm_code.attr,
1810 &dev_attr_model_code.attr,
1811 &dev_attr_firmware_code.attr,
1812 &dev_attr_stylus_lower.attr,
1813 &dev_attr_stylus_upper.attr,
1814 &dev_attr_mouse_left.attr,
1815 &dev_attr_mouse_middle.attr,
1816 &dev_attr_mouse_right.attr,
1817 &dev_attr_wheel.attr,
1818 &dev_attr_execute.attr,
1819 NULL
1820};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821
Dmitry Torokhovb087e1f2007-05-21 00:17:37 -04001822static struct attribute_group aiptek_attribute_group = {
1823 .attrs = aiptek_attributes,
1824};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825
1826/***********************************************************************
1827 * This routine is called when a tablet has been identified. It basically
1828 * sets up the tablet and the driver's internal structures.
1829 */
1830static int
1831aiptek_probe(struct usb_interface *intf, const struct usb_device_id *id)
1832{
1833 struct usb_device *usbdev = interface_to_usbdev(intf);
1834 struct usb_endpoint_descriptor *endpoint;
1835 struct aiptek *aiptek;
1836 struct input_dev *inputdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 int i;
1838 int speeds[] = { 0,
1839 AIPTEK_PROGRAMMABLE_DELAY_50,
1840 AIPTEK_PROGRAMMABLE_DELAY_400,
1841 AIPTEK_PROGRAMMABLE_DELAY_25,
1842 AIPTEK_PROGRAMMABLE_DELAY_100,
1843 AIPTEK_PROGRAMMABLE_DELAY_200,
1844 AIPTEK_PROGRAMMABLE_DELAY_300
1845 };
Dmitry Torokhov50141862007-04-12 01:33:39 -04001846 int err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847
1848 /* programmableDelay is where the command-line specified
1849 * delay is kept. We make it the first element of speeds[],
1850 * so therefore, your override speed is tried first, then the
1851 * remainder. Note that the default value of 400ms will be tried
1852 * if you do not specify any command line parameter.
1853 */
1854 speeds[0] = programmableDelay;
1855
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001856 aiptek = kzalloc(sizeof(struct aiptek), GFP_KERNEL);
1857 inputdev = input_allocate_device();
1858 if (!aiptek || !inputdev)
1859 goto fail1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860
1861 aiptek->data = usb_buffer_alloc(usbdev, AIPTEK_PACKET_LENGTH,
Christoph Lameter54e6ecb2006-12-06 20:33:16 -08001862 GFP_ATOMIC, &aiptek->data_dma);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001863 if (!aiptek->data)
1864 goto fail1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865
1866 aiptek->urb = usb_alloc_urb(0, GFP_KERNEL);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001867 if (!aiptek->urb)
1868 goto fail2;
1869
1870 aiptek->inputdev = inputdev;
1871 aiptek->usbdev = usbdev;
1872 aiptek->ifnum = intf->altsetting[0].desc.bInterfaceNumber;
1873 aiptek->inDelay = 0;
1874 aiptek->endDelay = 0;
1875 aiptek->previousJitterable = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876
1877 /* Set up the curSettings struct. Said struct contains the current
1878 * programmable parameters. The newSetting struct contains changes
1879 * the user makes to the settings via the sysfs interface. Those
1880 * changes are not "committed" to curSettings until the user
1881 * writes to the sysfs/.../execute file.
1882 */
1883 aiptek->curSetting.pointerMode = AIPTEK_POINTER_EITHER_MODE;
1884 aiptek->curSetting.coordinateMode = AIPTEK_COORDINATE_ABSOLUTE_MODE;
1885 aiptek->curSetting.toolMode = AIPTEK_TOOL_BUTTON_PEN_MODE;
1886 aiptek->curSetting.xTilt = AIPTEK_TILT_DISABLE;
1887 aiptek->curSetting.yTilt = AIPTEK_TILT_DISABLE;
1888 aiptek->curSetting.mouseButtonLeft = AIPTEK_MOUSE_LEFT_BUTTON;
1889 aiptek->curSetting.mouseButtonMiddle = AIPTEK_MOUSE_MIDDLE_BUTTON;
1890 aiptek->curSetting.mouseButtonRight = AIPTEK_MOUSE_RIGHT_BUTTON;
1891 aiptek->curSetting.stylusButtonUpper = AIPTEK_STYLUS_UPPER_BUTTON;
1892 aiptek->curSetting.stylusButtonLower = AIPTEK_STYLUS_LOWER_BUTTON;
1893 aiptek->curSetting.jitterDelay = jitterDelay;
1894 aiptek->curSetting.programmableDelay = programmableDelay;
1895
1896 /* Both structs should have equivalent settings
1897 */
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001898 aiptek->newSetting = aiptek->curSetting;
1899
1900 /* Determine the usb devices' physical path.
1901 * Asketh not why we always pretend we're using "../input0",
1902 * but I suspect this will have to be refactored one
1903 * day if a single USB device can be a keyboard & a mouse
1904 * & a tablet, and the inputX number actually will tell
1905 * us something...
1906 */
1907 usb_make_path(usbdev, aiptek->features.usbPath,
1908 sizeof(aiptek->features.usbPath));
1909 strlcat(aiptek->features.usbPath, "/input0",
1910 sizeof(aiptek->features.usbPath));
1911
1912 /* Set up client data, pointers to open and close routines
1913 * for the input device.
1914 */
1915 inputdev->name = "Aiptek";
1916 inputdev->phys = aiptek->features.usbPath;
1917 usb_to_input_id(usbdev, &inputdev->id);
Dmitry Torokhovc0f82d52007-04-12 01:35:03 -04001918 inputdev->dev.parent = &intf->dev;
Dmitry Torokhov7791bda2007-04-12 01:34:39 -04001919
1920 input_set_drvdata(inputdev, aiptek);
1921
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001922 inputdev->open = aiptek_open;
1923 inputdev->close = aiptek_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924
1925 /* Now program the capacities of the tablet, in terms of being
1926 * an input device.
1927 */
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001928 inputdev->evbit[0] |= BIT(EV_KEY)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 | BIT(EV_ABS)
1930 | BIT(EV_REL)
1931 | BIT(EV_MSC);
1932
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001933 inputdev->absbit[0] |= BIT(ABS_MISC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001935 inputdev->relbit[0] |=
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 (BIT(REL_X) | BIT(REL_Y) | BIT(REL_WHEEL) | BIT(REL_MISC));
1937
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001938 inputdev->keybit[LONG(BTN_LEFT)] |=
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 (BIT(BTN_LEFT) | BIT(BTN_RIGHT) | BIT(BTN_MIDDLE));
1940
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001941 inputdev->keybit[LONG(BTN_DIGI)] |=
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 (BIT(BTN_TOOL_PEN) |
1943 BIT(BTN_TOOL_RUBBER) |
1944 BIT(BTN_TOOL_PENCIL) |
1945 BIT(BTN_TOOL_AIRBRUSH) |
1946 BIT(BTN_TOOL_BRUSH) |
1947 BIT(BTN_TOOL_MOUSE) |
1948 BIT(BTN_TOOL_LENS) |
1949 BIT(BTN_TOUCH) | BIT(BTN_STYLUS) | BIT(BTN_STYLUS2));
1950
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001951 inputdev->mscbit[0] = BIT(MSC_SERIAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952
1953 /* Programming the tablet macro keys needs to be done with a for loop
1954 * as the keycodes are discontiguous.
1955 */
Tobias Klauser52950ed2005-12-11 16:20:08 +01001956 for (i = 0; i < ARRAY_SIZE(macroKeyEvents); ++i)
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001957 set_bit(macroKeyEvents[i], inputdev->keybit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001959 /*
1960 * Program the input device coordinate capacities. We do not yet
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 * know what maximum X, Y, and Z values are, so we're putting fake
1962 * values in. Later, we'll ask the tablet to put in the correct
1963 * values.
1964 */
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001965 input_set_abs_params(inputdev, ABS_X, 0, 2999, 0, 0);
Riccardo Magliocchettif873e3e2005-12-28 20:44:48 -05001966 input_set_abs_params(inputdev, ABS_Y, 0, 2249, 0, 0);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001967 input_set_abs_params(inputdev, ABS_PRESSURE, 0, 511, 0, 0);
1968 input_set_abs_params(inputdev, ABS_TILT_X, AIPTEK_TILT_MIN, AIPTEK_TILT_MAX, 0, 0);
1969 input_set_abs_params(inputdev, ABS_TILT_Y, AIPTEK_TILT_MIN, AIPTEK_TILT_MAX, 0, 0);
1970 input_set_abs_params(inputdev, ABS_WHEEL, AIPTEK_WHEEL_MIN, AIPTEK_WHEEL_MAX - 1, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971
1972 endpoint = &intf->altsetting[0].endpoint[0].desc;
1973
1974 /* Go set up our URB, which is called when the tablet receives
1975 * input.
1976 */
1977 usb_fill_int_urb(aiptek->urb,
1978 aiptek->usbdev,
1979 usb_rcvintpipe(aiptek->usbdev,
1980 endpoint->bEndpointAddress),
1981 aiptek->data, 8, aiptek_irq, aiptek,
1982 endpoint->bInterval);
1983
1984 aiptek->urb->transfer_dma = aiptek->data_dma;
1985 aiptek->urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
1986
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 /* Program the tablet. This sets the tablet up in the mode
1988 * specified in newSetting, and also queries the tablet's
1989 * physical capacities.
1990 *
1991 * Sanity check: if a tablet doesn't like the slow programmatic
1992 * delay, we often get sizes of 0x0. Let's use that as an indicator
1993 * to try faster delays, up to 25 ms. If that logic fails, well, you'll
1994 * have to explain to us how your tablet thinks it's 0x0, and yet that's
1995 * not an error :-)
1996 */
1997
Tobias Klauser52950ed2005-12-11 16:20:08 +01001998 for (i = 0; i < ARRAY_SIZE(speeds); ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 aiptek->curSetting.programmableDelay = speeds[i];
2000 (void)aiptek_program_tablet(aiptek);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05002001 if (aiptek->inputdev->absmax[ABS_X] > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 info("input: Aiptek using %d ms programming speed\n",
2003 aiptek->curSetting.programmableDelay);
2004 break;
2005 }
2006 }
2007
2008 /* Associate this driver's struct with the usb interface.
2009 */
2010 usb_set_intfdata(intf, aiptek);
2011
2012 /* Set up the sysfs files
2013 */
Dmitry Torokhovb087e1f2007-05-21 00:17:37 -04002014 err = sysfs_create_group(&intf->dev.kobj, &aiptek_attribute_group);
2015 if (err)
2016 goto fail3;
2017
2018 /* Register the tablet as an Input Device
2019 */
2020 err = input_register_device(aiptek->inputdev);
2021 if (err)
2022 goto fail4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 return 0;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05002025
Dmitry Torokhovb087e1f2007-05-21 00:17:37 -04002026 fail4: sysfs_remove_group(&intf->dev.kobj, &aiptek_attribute_group);
2027 fail3: usb_free_urb(aiptek->urb);
Dmitry Torokhov50141862007-04-12 01:33:39 -04002028 fail2: usb_buffer_free(usbdev, AIPTEK_PACKET_LENGTH, aiptek->data,
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05002029 aiptek->data_dma);
Dmitry Torokhovb087e1f2007-05-21 00:17:37 -04002030 fail1: usb_set_intfdata(intf, NULL);
2031 input_free_device(inputdev);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05002032 kfree(aiptek);
Dmitry Torokhov50141862007-04-12 01:33:39 -04002033 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034}
2035
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036/***********************************************************************
2037 * Deal with tablet disconnecting from the system.
2038 */
2039static void aiptek_disconnect(struct usb_interface *intf)
2040{
2041 struct aiptek *aiptek = usb_get_intfdata(intf);
2042
2043 /* Disassociate driver's struct with usb interface
2044 */
2045 usb_set_intfdata(intf, NULL);
2046 if (aiptek != NULL) {
2047 /* Free & unhook everything from the system.
2048 */
2049 usb_kill_urb(aiptek->urb);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05002050 input_unregister_device(aiptek->inputdev);
Dmitry Torokhovb087e1f2007-05-21 00:17:37 -04002051 sysfs_remove_group(&intf->dev.kobj, &aiptek_attribute_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 usb_free_urb(aiptek->urb);
2053 usb_buffer_free(interface_to_usbdev(intf),
2054 AIPTEK_PACKET_LENGTH,
2055 aiptek->data, aiptek->data_dma);
2056 kfree(aiptek);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 }
2058}
2059
Dmitry Torokhov50141862007-04-12 01:33:39 -04002060static struct usb_driver aiptek_driver = {
2061 .name = "aiptek",
2062 .probe = aiptek_probe,
2063 .disconnect = aiptek_disconnect,
2064 .id_table = aiptek_ids,
2065};
2066
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067static int __init aiptek_init(void)
2068{
2069 int result = usb_register(&aiptek_driver);
2070 if (result == 0) {
2071 info(DRIVER_VERSION ": " DRIVER_AUTHOR);
2072 info(DRIVER_DESC);
2073 }
2074 return result;
2075}
2076
2077static void __exit aiptek_exit(void)
2078{
2079 usb_deregister(&aiptek_driver);
2080}
2081
2082MODULE_AUTHOR(DRIVER_AUTHOR);
2083MODULE_DESCRIPTION(DRIVER_DESC);
2084MODULE_LICENSE("GPL");
2085
2086module_param(programmableDelay, int, 0);
2087MODULE_PARM_DESC(programmableDelay, "delay used during tablet programming");
2088module_param(jitterDelay, int, 0);
2089MODULE_PARM_DESC(jitterDelay, "stylus/mouse settlement delay");
2090
2091module_init(aiptek_init);
2092module_exit(aiptek_exit);