wacom.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:18k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * $Id: wacom.c,v 1.23 2001/05/29 12:57:18 vojtech Exp $
  3.  *
  4.  *  Copyright (c) 2000-2001 Vojtech Pavlik <vojtech@suse.cz>
  5.  *  Copyright (c) 2000 Andreas Bach Aaen <abach@stofanet.dk>
  6.  *  Copyright (c) 2000 Clifford Wolf <clifford@clifford.at>
  7.  *  Copyright (c) 2000 Sam Mosel <sam.mosel@computer.org>
  8.  *  Copyright (c) 2000 James E. Blair <corvus@gnu.org>
  9.  *  Copyright (c) 2000 Daniel Egger <egger@suse.de>
  10.  *  Copyright (c) 2001 Frederic Lepied <flepied@mandrakesoft.com>
  11.  *
  12.  *  USB Wacom Graphire and Wacom Intuos tablet support
  13.  *
  14.  *  Sponsored by SuSE
  15.  *
  16.  *  ChangeLog:
  17.  *      v0.1 (vp)  - Initial release
  18.  *      v0.2 (aba) - Support for all buttons / combinations
  19.  *      v0.3 (vp)  - Support for Intuos added
  20.  * v0.4 (sm)  - Support for more Intuos models, menustrip
  21.  * relative mode, proximity.
  22.  * v0.5 (vp)  - Big cleanup, nifty features removed,
  23.  *  they belong in userspace
  24.  * v1.8 (vp)  - Submit URB only when operating, moved to CVS,
  25.  * use input_report_key instead of report_btn and
  26.  * other cleanups
  27.  * v1.11 (vp) - Add URB ->dev setting for new kernels
  28.  * v1.11 (jb) - Add support for the 4D Mouse & Lens
  29.  * v1.12 (de) - Add support for two more inking pen IDs
  30.  * v1.14 (vp) - Use new USB device id probing scheme.
  31.  *      Fix Wacom Graphire mouse wheel
  32.  * v1.18 (vp) - Fix mouse wheel direction
  33.  *      Make mouse relative
  34.  *      v1.20 (fl) - Report tool id for Intuos devices
  35.  *                 - Multi tools support
  36.  *                 - Corrected Intuos protocol decoding (airbrush, 4D mouse, lens cursor...)
  37.  *                 - Add PL models support
  38.  *    - Fix Wacom Graphire mouse wheel again
  39.  * v1.21 (vp) - Removed protocol descriptions
  40.  *    - Added MISC_SERIAL for tool serial numbers
  41.  *       (gb) - Identify version on module load.
  42.  *    v1.21.1 (fl) - added Graphire2 support
  43.  *    v1.21.2 (fl) - added Intuos2 support
  44.  *                 - added all the PL ids
  45.  *    v1.21.3 (fl) - added another eraser id from Neil Okamoto
  46.  *                 - added smooth filter for Graphire from Peri Hankey
  47.  *                 - added PenPartner support from Olaf van Es
  48.  *                 - new tool ids from Ole Martin Bjoerndalen
  49.  */
  50. /*
  51.  * This program is free software; you can redistribute it and/or modify
  52.  * it under the terms of the GNU General Public License as published by
  53.  * the Free Software Foundation; either version 2 of the License, or
  54.  * (at your option) any later version.
  55.  *
  56.  * This program is distributed in the hope that it will be useful,
  57.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  58.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  59.  * GNU General Public License for more details.
  60.  *
  61.  * You should have received a copy of the GNU General Public License
  62.  * along with this program; if not, write to the Free Software
  63.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  64.  *
  65.  * Should you need to contact me, the author, you can do so either by
  66.  * e-mail - mail your message to <vojtech@suse.cz>, or by paper mail:
  67.  * Vojtech Pavlik, Ucitelska 1576, Prague 8, 182 00 Czech Republic
  68.  */
  69. #include <linux/kernel.h>
  70. #include <linux/slab.h>
  71. #include <linux/input.h>
  72. #include <linux/module.h>
  73. #include <linux/init.h>
  74. #include <linux/usb.h>
  75. /*
  76.  * Version Information
  77.  */
  78. #define DRIVER_VERSION "v1.21.3"
  79. #define DRIVER_AUTHOR "Vojtech Pavlik <vojtech@suse.cz>"
  80. #define DRIVER_DESC "USB Wacom Graphire and Wacom Intuos tablet driver"
  81. MODULE_AUTHOR( DRIVER_AUTHOR );
  82. MODULE_DESCRIPTION( DRIVER_DESC );
  83. MODULE_LICENSE("GPL");
  84. #define USB_VENDOR_ID_WACOM 0x056a
  85. struct wacom_features {
  86. char *name;
  87. int pktlen;
  88. int x_max;
  89. int y_max;
  90. int pressure_max;
  91. int distance_max;
  92. void (*irq)(struct urb *urb);
  93. unsigned long evbit;
  94. unsigned long absbit;
  95. unsigned long relbit;
  96. unsigned long btnbit;
  97. unsigned long digibit;
  98. };
  99. struct wacom {
  100. signed char data[10];
  101. struct input_dev dev;
  102. struct usb_device *usbdev;
  103. struct urb irq;
  104. struct wacom_features *features;
  105. int tool[2];
  106. int open;
  107. __u32 serial[2];
  108. };
  109. static void wacom_pl_irq(struct urb *urb)
  110. {
  111. struct wacom *wacom = urb->context;
  112. unsigned char *data = wacom->data;
  113. struct input_dev *dev = &wacom->dev;
  114. int prox;
  115. if (urb->status) return;
  116. if (data[0] != 2) {
  117. printk(KERN_ERR "wacom_pl_irq: received unknown report #%dn", data[0]);
  118. return;
  119. }
  120. prox = data[1] & 0x20;
  121. input_report_key(dev, BTN_TOOL_PEN, prox);
  122. if (prox) {
  123. int pressure = (data[4] & 0x04) >> 2 | ((__u32)(data[7] & 0x7f) << 1);
  124. input_report_abs(dev, ABS_X, data[3] | ((__u32)data[2] << 8) | ((__u32)(data[1] & 0x03) << 16));
  125. input_report_abs(dev, ABS_Y, data[6] | ((__u32)data[5] << 8) | ((__u32)(data[4] & 0x03) << 8));
  126. input_report_abs(dev, ABS_PRESSURE, (data[7] & 0x80) ? (255 - pressure) : (pressure + 255));
  127. input_report_key(dev, BTN_TOUCH, data[4] & 0x08);
  128. input_report_key(dev, BTN_STYLUS, data[4] & 0x10);
  129. input_report_key(dev, BTN_STYLUS2, data[4] & 0x20);
  130. }
  131. input_event(dev, EV_MSC, MSC_SERIAL, 0);
  132. }
  133. static void wacom_penpartner_irq(struct urb *urb)
  134. {
  135. struct wacom *wacom = urb->context;
  136. unsigned char *data = wacom->data;
  137. struct input_dev *dev = &wacom->dev;
  138. int x, y; 
  139. char pressure; 
  140. int leftmb;
  141. if (urb->status) return;
  142. x = data[2] << 8 | data[1];
  143. y = data[4] << 8 | data[3];
  144. pressure = data[6];
  145. leftmb = ((pressure > -80) && !(data[5] &20));
  146. input_report_key(dev, BTN_TOOL_PEN, 1);
  147. input_report_abs(dev, ABS_X, x);
  148. input_report_abs(dev, ABS_Y, y);
  149. input_report_abs(dev, ABS_PRESSURE, pressure+127);
  150. input_report_key(dev, BTN_LEFT, leftmb);
  151. input_report_key(dev, BTN_RIGHT, (data[5] & 0x40));
  152. input_event(dev, EV_MSC, MSC_SERIAL, leftmb);
  153. }
  154. static void wacom_graphire_irq(struct urb *urb)
  155. {
  156. struct wacom *wacom = urb->context;
  157. unsigned char *data = wacom->data;
  158. struct input_dev *dev = &wacom->dev;
  159. int x, y;
  160. if (urb->status) return;
  161. if (data[0] != 2) {
  162. printk(KERN_ERR "wacom_graphire_irq: received unknown report #%dn", data[0]);
  163. return;
  164. }
  165. x = data[2] | ((__u32)data[3] << 8);
  166. y = data[4] | ((__u32)data[5] << 8);
  167. switch ((data[1] >> 5) & 3) {
  168. case 0: /* Pen */
  169. input_report_key(dev, BTN_TOOL_PEN, data[1] & 0x80);
  170. break;
  171. case 1: /* Rubber */
  172. input_report_key(dev, BTN_TOOL_RUBBER, data[1] & 0x80);
  173. break;
  174. case 2: /* Mouse */
  175. input_report_key(dev, BTN_TOOL_MOUSE, data[7] > 24);
  176. input_report_key(dev, BTN_LEFT, data[1] & 0x01);
  177. input_report_key(dev, BTN_RIGHT, data[1] & 0x02);
  178. input_report_key(dev, BTN_MIDDLE, data[1] & 0x04);
  179. input_report_abs(dev, ABS_DISTANCE, data[7]);
  180. input_report_rel(dev, REL_WHEEL, (signed char) data[6]);
  181. input_report_abs(dev, ABS_X, x);
  182. input_report_abs(dev, ABS_Y, y);
  183. input_event(dev, EV_MSC, MSC_SERIAL, data[1] & 0x01);
  184. return;
  185. }
  186. if (data[1] & 0x80) {
  187. input_report_abs(dev, ABS_X, x);
  188. input_report_abs(dev, ABS_Y, y);
  189. }
  190. input_report_abs(dev, ABS_PRESSURE, data[6] | ((__u32)data[7] << 8));
  191. input_report_key(dev, BTN_TOUCH, data[1] & 0x01);
  192. input_report_key(dev, BTN_STYLUS, data[1] & 0x02);
  193. input_report_key(dev, BTN_STYLUS2, data[1] & 0x04);
  194. input_event(dev, EV_MSC, MSC_SERIAL, data[1] & 0x01);
  195. }
  196. static void wacom_intuos_irq(struct urb *urb)
  197. {
  198. struct wacom *wacom = urb->context;
  199. unsigned char *data = wacom->data;
  200. struct input_dev *dev = &wacom->dev;
  201. unsigned int t;
  202. int idx;
  203. if (urb->status) return;
  204. if (data[0] != 2) {
  205. printk(KERN_ERR "wacom_intuos_irq: received unknown report #%dn", data[0]);
  206. return;
  207. }
  208. /* tool number */
  209. idx = data[1] & 0x01;
  210. if ((data[1] & 0xfc) == 0xc0) { /* Enter report */
  211. wacom->serial[idx] = ((__u32)(data[3] & 0x0f) << 4) + /* serial number of the tool */
  212. ((__u32)data[4] << 16) + ((__u32)data[5] << 12) +
  213. ((__u32)data[6] << 4) + (data[7] >> 4);
  214. switch (((__u32)data[2] << 4) | (data[3] >> 4)) {
  215. case 0x832:
  216. case 0x012: wacom->tool[idx] = BTN_TOOL_PENCIL; break; /* Inking pen */
  217. case 0x822:
  218.         case 0x852:
  219. case 0x022: wacom->tool[idx] = BTN_TOOL_PEN; break; /* Pen */
  220. case 0x812:
  221. case 0x032: wacom->tool[idx] = BTN_TOOL_BRUSH; break; /* Stroke pen */
  222.         case 0x09c:
  223.         case 0x007:
  224. case 0x094: wacom->tool[idx] = BTN_TOOL_MOUSE; break; /* Mouse 4D */
  225. case 0x096: wacom->tool[idx] = BTN_TOOL_LENS; break; /* Lens cursor */
  226. case 0x82a:
  227.         case 0x85a:
  228.         case 0x91a:
  229. case 0x0fa: wacom->tool[idx] = BTN_TOOL_RUBBER; break; /* Eraser */
  230. case 0x112: wacom->tool[idx] = BTN_TOOL_AIRBRUSH; break; /* Airbrush */
  231. default:    wacom->tool[idx] = BTN_TOOL_PEN; break; /* Unknown tool */
  232. }
  233. input_report_key(dev, wacom->tool[idx], 1);
  234. input_event(dev, EV_MSC, MSC_SERIAL, wacom->serial[idx]);
  235. return;
  236. }
  237. if ((data[1] & 0xfe) == 0x80) { /* Exit report */
  238. input_report_key(dev, wacom->tool[idx], 0);
  239. input_event(dev, EV_MSC, MSC_SERIAL, wacom->serial[idx]);
  240. return;
  241. }
  242. input_report_abs(dev, ABS_X, ((__u32)data[2] << 8) | data[3]);
  243. input_report_abs(dev, ABS_Y, ((__u32)data[4] << 8) | data[5]);
  244. input_report_abs(dev, ABS_DISTANCE, data[9] >> 4);
  245. if ((data[1] & 0xb8) == 0xa0) { /* general pen packet */
  246. input_report_abs(dev, ABS_PRESSURE, t = ((__u32)data[6] << 2) | ((data[7] >> 6) & 3));
  247. input_report_abs(dev, ABS_TILT_X, ((data[7] << 1) & 0x7e) | (data[8] >> 7));
  248. input_report_abs(dev, ABS_TILT_Y, data[8] & 0x7f);
  249. input_report_key(dev, BTN_STYLUS, data[1] & 2);
  250. input_report_key(dev, BTN_STYLUS2, data[1] & 4);
  251. input_report_key(dev, BTN_TOUCH, t > 10);
  252. }
  253. if ((data[1] & 0xbc) == 0xb4) { /* airbrush second packet */
  254. input_report_abs(dev, ABS_WHEEL, ((__u32)data[6] << 2) | ((data[7] >> 6) & 3));
  255. input_report_abs(dev, ABS_TILT_X, ((data[7] << 1) & 0x7e) | (data[8] >> 7));
  256. input_report_abs(dev, ABS_TILT_Y, data[8] & 0x7f);
  257. }
  258. if ((data[1] & 0xbc) == 0xa8 || (data[1] & 0xbe) == 0xb0) { /* 4D mouse or Lens cursor packets */
  259. if (data[1] & 0x02) { /* Rotation packet */
  260. input_report_abs(dev, ABS_RZ, (data[7] & 0x20) ?
  261.  ((__u32)data[6] << 2) | ((data[7] >> 6) & 3):
  262.  (-(((__u32)data[6] << 2) | ((data[7] >> 6) & 3))) - 1);
  263. } else {
  264. input_report_key(dev, BTN_LEFT,   data[8] & 0x01);
  265. input_report_key(dev, BTN_MIDDLE, data[8] & 0x02);
  266. input_report_key(dev, BTN_RIGHT,  data[8] & 0x04);
  267.   if ((data[1] & 0x10) == 0) { /* 4D mouse packets */
  268. input_report_key(dev, BTN_SIDE,   data[8] & 0x20);
  269. input_report_key(dev, BTN_EXTRA,  data[8] & 0x10);
  270. input_report_abs(dev, ABS_THROTTLE,  (data[8] & 0x08) ?
  271.  ((__u32)data[6] << 2) | ((data[7] >> 6) & 3) :
  272.  -((__u32)data[6] << 2) | ((data[7] >> 6) & 3));
  273. } else { /* Lens cursor packets */
  274. input_report_key(dev, BTN_SIDE,   data[8] & 0x10);
  275. input_report_key(dev, BTN_EXTRA,  data[8] & 0x08);
  276. }
  277. }
  278. }
  279. input_event(dev, EV_MSC, MSC_SERIAL, wacom->serial[idx]);
  280. }
  281. #define WACOM_INTUOS_TOOLS (BIT(BTN_TOOL_BRUSH) | BIT(BTN_TOOL_PENCIL) | BIT(BTN_TOOL_AIRBRUSH) | BIT(BTN_TOOL_LENS))
  282. #define WACOM_INTUOS_BUTTONS (BIT(BTN_SIDE) | BIT(BTN_EXTRA))
  283. #define WACOM_INTUOS_ABS (BIT(ABS_TILT_X) | BIT(ABS_TILT_Y) | BIT(ABS_RZ) | BIT(ABS_THROTTLE))
  284. struct wacom_features wacom_features[] = {
  285. { "Wacom Penpartner",  7,  5040,  3780,  255, 32, wacom_penpartner_irq,
  286. 0, 0, 0, 0 },
  287. { "Wacom Graphire",      8, 10206,  7422,  511, 32, wacom_graphire_irq,
  288. BIT(EV_REL), 0, BIT(REL_WHEEL), 0 },
  289. { "Wacom Graphire2 4x5",     8, 10206,  7422,  511, 32, wacom_graphire_irq,
  290. BIT(EV_REL), 0, BIT(REL_WHEEL), 0 },
  291. { "Wacom Graphire2 5x7",     8, 10206,  7422,  511, 32, wacom_graphire_irq,
  292. BIT(EV_REL), 0, BIT(REL_WHEEL), 0 },
  293. { "Wacom Intuos 4x5",   10, 12700, 10360, 1023, 15, wacom_intuos_irq,
  294. 0, WACOM_INTUOS_ABS, 0, WACOM_INTUOS_BUTTONS, WACOM_INTUOS_TOOLS },
  295. { "Wacom Intuos 6x8",   10, 20320, 15040, 1023, 15, wacom_intuos_irq,
  296. 0, WACOM_INTUOS_ABS, 0, WACOM_INTUOS_BUTTONS, WACOM_INTUOS_TOOLS },
  297. { "Wacom Intuos 9x12",  10, 30480, 23060, 1023, 15, wacom_intuos_irq,
  298. 0, WACOM_INTUOS_ABS, 0, WACOM_INTUOS_BUTTONS, WACOM_INTUOS_TOOLS },
  299. { "Wacom Intuos 12x12", 10, 30480, 30480, 1023, 15, wacom_intuos_irq,
  300. 0, WACOM_INTUOS_ABS, 0, WACOM_INTUOS_BUTTONS, WACOM_INTUOS_TOOLS },
  301. { "Wacom Intuos 12x18", 10, 47720, 30480, 1023, 15, wacom_intuos_irq,
  302. 0, WACOM_INTUOS_ABS, 0, WACOM_INTUOS_BUTTONS, WACOM_INTUOS_TOOLS },
  303. { "Wacom PL400",        8,  12328, 9256,   511, 32, wacom_pl_irq,
  304. 0,  0, 0, 0 },
  305. { "Wacom PL500",        8,  12328, 9256,   511, 32, wacom_pl_irq,
  306. 0,  0, 0, 0 },
  307. { "Wacom PL600",        8,  12328, 9256,   511, 32, wacom_pl_irq,
  308. 0,  0, 0, 0 },
  309. { "Wacom PL600SX",        8,  12328, 9256,   511, 32, wacom_pl_irq,
  310. 0,  0, 0, 0 },
  311. { "Wacom PL550",        8,  12328, 9256,   511, 32, wacom_pl_irq,
  312. 0,  0, 0, 0 },
  313. { "Wacom PL800",        8,  12328, 9256,   511, 32, wacom_pl_irq,
  314. 0,  0, 0, 0 },
  315. { "Wacom Intuos2 4x5",   10, 12700, 10360, 1023, 15, wacom_intuos_irq,
  316. 0, WACOM_INTUOS_ABS, 0, WACOM_INTUOS_BUTTONS, WACOM_INTUOS_TOOLS },
  317. { "Wacom Intuos2 6x8",   10, 20320, 15040, 1023, 15, wacom_intuos_irq,
  318. 0, WACOM_INTUOS_ABS, 0, WACOM_INTUOS_BUTTONS, WACOM_INTUOS_TOOLS },
  319. { "Wacom Intuos2 9x12",  10, 30480, 23060, 1023, 15, wacom_intuos_irq,
  320. 0, WACOM_INTUOS_ABS, 0, WACOM_INTUOS_BUTTONS, WACOM_INTUOS_TOOLS },
  321. { "Wacom Intuos2 12x12", 10, 30480, 30480, 1023, 15, wacom_intuos_irq,
  322. 0, WACOM_INTUOS_ABS, 0, WACOM_INTUOS_BUTTONS, WACOM_INTUOS_TOOLS },
  323. { "Wacom Intuos2 12x18", 10, 47720, 30480, 1023, 15, wacom_intuos_irq,
  324. 0, WACOM_INTUOS_ABS, 0, WACOM_INTUOS_BUTTONS, WACOM_INTUOS_TOOLS },
  325. { NULL , 0 }
  326. };
  327. struct usb_device_id wacom_ids[] = {
  328. { USB_DEVICE(USB_VENDOR_ID_WACOM, 0x00), driver_info: 0 },
  329. { USB_DEVICE(USB_VENDOR_ID_WACOM, 0x10), driver_info: 1 },
  330. { USB_DEVICE(USB_VENDOR_ID_WACOM, 0x11), driver_info: 2 },
  331. { USB_DEVICE(USB_VENDOR_ID_WACOM, 0x12), driver_info: 3 },
  332. { USB_DEVICE(USB_VENDOR_ID_WACOM, 0x20), driver_info: 4 },
  333. { USB_DEVICE(USB_VENDOR_ID_WACOM, 0x21), driver_info: 5 },
  334. { USB_DEVICE(USB_VENDOR_ID_WACOM, 0x22), driver_info: 6 },
  335. { USB_DEVICE(USB_VENDOR_ID_WACOM, 0x23), driver_info: 7 },
  336. { USB_DEVICE(USB_VENDOR_ID_WACOM, 0x24), driver_info: 8 },
  337. { USB_DEVICE(USB_VENDOR_ID_WACOM, 0x30), driver_info: 9 },
  338. { USB_DEVICE(USB_VENDOR_ID_WACOM, 0x31), driver_info: 10 },
  339. { USB_DEVICE(USB_VENDOR_ID_WACOM, 0x32), driver_info: 11 },
  340. { USB_DEVICE(USB_VENDOR_ID_WACOM, 0x33), driver_info: 12 },
  341. { USB_DEVICE(USB_VENDOR_ID_WACOM, 0x34), driver_info: 13 },
  342. { USB_DEVICE(USB_VENDOR_ID_WACOM, 0x35), driver_info: 14 },
  343. { USB_DEVICE(USB_VENDOR_ID_WACOM, 0x41), driver_info: 15 },
  344. { USB_DEVICE(USB_VENDOR_ID_WACOM, 0x42), driver_info: 16 },
  345. { USB_DEVICE(USB_VENDOR_ID_WACOM, 0x43), driver_info: 17 },
  346. { USB_DEVICE(USB_VENDOR_ID_WACOM, 0x44), driver_info: 18 },
  347. { USB_DEVICE(USB_VENDOR_ID_WACOM, 0x45), driver_info: 19 },
  348. { }
  349. };
  350. MODULE_DEVICE_TABLE(usb, wacom_ids);
  351. static int wacom_open(struct input_dev *dev)
  352. {
  353. struct wacom *wacom = dev->private;
  354. if (wacom->open++)
  355. return 0;
  356. wacom->irq.dev = wacom->usbdev;
  357. if (usb_submit_urb(&wacom->irq))
  358. return -EIO;
  359. return 0;
  360. }
  361. static void wacom_close(struct input_dev *dev)
  362. {
  363. struct wacom *wacom = dev->private;
  364. if (!--wacom->open)
  365. usb_unlink_urb(&wacom->irq);
  366. }
  367. static void *wacom_probe(struct usb_device *dev, unsigned int ifnum, const struct usb_device_id *id)
  368. {
  369. struct usb_endpoint_descriptor *endpoint;
  370. struct wacom *wacom;
  371. char rep_data[2] = {0x02, 0x02};
  372. if (!(wacom = kmalloc(sizeof(struct wacom), GFP_KERNEL))) return NULL;
  373. memset(wacom, 0, sizeof(struct wacom));
  374. wacom->features = wacom_features + id->driver_info;
  375. wacom->dev.evbit[0] |= BIT(EV_KEY) | BIT(EV_ABS) | BIT(EV_MSC) | wacom->features->evbit;
  376. wacom->dev.absbit[0] |= BIT(ABS_X) | BIT(ABS_Y) | BIT(ABS_PRESSURE) | BIT(ABS_DISTANCE) | BIT(ABS_WHEEL) | wacom->features->absbit;
  377. wacom->dev.relbit[0] |= wacom->features->relbit;
  378. wacom->dev.keybit[LONG(BTN_LEFT)] |= BIT(BTN_LEFT) | BIT(BTN_RIGHT) | BIT(BTN_MIDDLE) | wacom->features->btnbit;
  379. wacom->dev.keybit[LONG(BTN_DIGI)] |= BIT(BTN_TOOL_PEN) | BIT(BTN_TOOL_RUBBER) | BIT(BTN_TOOL_MOUSE) |
  380. BIT(BTN_TOUCH) | BIT(BTN_STYLUS) | BIT(BTN_STYLUS2) | wacom->features->digibit;
  381. wacom->dev.mscbit[0] |= BIT(MSC_SERIAL);
  382. wacom->dev.absmax[ABS_X] = wacom->features->x_max;
  383. wacom->dev.absmax[ABS_Y] = wacom->features->y_max;
  384. wacom->dev.absmax[ABS_PRESSURE] = wacom->features->pressure_max;
  385. wacom->dev.absmax[ABS_DISTANCE] = wacom->features->distance_max;
  386. wacom->dev.absmax[ABS_TILT_X] = 127;
  387. wacom->dev.absmax[ABS_TILT_Y] = 127;
  388. wacom->dev.absmax[ABS_WHEEL] = 1023;
  389. wacom->dev.absmin[ABS_RZ] = -900;
  390. wacom->dev.absmax[ABS_RZ] = 899;
  391. wacom->dev.absmin[ABS_THROTTLE] = -1023;
  392. wacom->dev.absmax[ABS_THROTTLE] = 1023;
  393. wacom->dev.absfuzz[ABS_X] = 4;
  394. wacom->dev.absfuzz[ABS_Y] = 4;
  395. wacom->dev.private = wacom;
  396. wacom->dev.open = wacom_open;
  397. wacom->dev.close = wacom_close;
  398. wacom->dev.name = wacom->features->name;
  399. wacom->dev.idbus = BUS_USB;
  400. wacom->dev.idvendor = dev->descriptor.idVendor;
  401. wacom->dev.idproduct = dev->descriptor.idProduct;
  402. wacom->dev.idversion = dev->descriptor.bcdDevice;
  403. wacom->usbdev = dev;
  404. endpoint = dev->config[0].interface[ifnum].altsetting[0].endpoint + 0;
  405. usb_set_idle(dev, dev->config[0].interface[ifnum].altsetting[0].bInterfaceNumber, 0, 0);
  406. FILL_INT_URB(&wacom->irq, dev, usb_rcvintpipe(dev, endpoint->bEndpointAddress),
  407.      wacom->data, wacom->features->pktlen, wacom->features->irq, wacom, endpoint->bInterval);
  408. input_register_device(&wacom->dev);
  409. /* ask the tablet to report tablet data */
  410. usb_set_report(dev, ifnum, 3, 2, rep_data, 2);
  411. usb_set_report(dev, ifnum, 3, 5, rep_data, 0);
  412. usb_set_report(dev, ifnum, 3, 6, rep_data, 0);
  413. printk(KERN_INFO "input%d: %s on usb%d:%d.%dn",
  414.        wacom->dev.number, wacom->features->name, dev->bus->busnum, dev->devnum, ifnum);
  415. return wacom;
  416. }
  417. static void wacom_disconnect(struct usb_device *dev, void *ptr)
  418. {
  419. struct wacom *wacom = ptr;
  420. usb_unlink_urb(&wacom->irq);
  421. input_unregister_device(&wacom->dev);
  422. kfree(wacom);
  423. }
  424. static struct usb_driver wacom_driver = {
  425. name: "wacom",
  426. probe: wacom_probe,
  427. disconnect: wacom_disconnect,
  428. id_table: wacom_ids,
  429. };
  430. static int __init wacom_init(void)
  431. {
  432. usb_register(&wacom_driver);
  433. info(DRIVER_VERSION " " DRIVER_AUTHOR);
  434. info(DRIVER_DESC);
  435. return 0;
  436. }
  437. static void __exit wacom_exit(void)
  438. {
  439. usb_deregister(&wacom_driver);
  440. }
  441. module_init(wacom_init);
  442. module_exit(wacom_exit);