wacom.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:14k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * $Id: wacom.c,v 1.22 2001/04/26 11:26:09 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.  */
  43. /*
  44.  * This program is free software; you can redistribute it and/or modify
  45.  * it under the terms of the GNU General Public License as published by
  46.  * the Free Software Foundation; either version 2 of the License, or
  47.  * (at your option) any later version.
  48.  *
  49.  * This program is distributed in the hope that it will be useful,
  50.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  51.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  52.  * GNU General Public License for more details.
  53.  *
  54.  * You should have received a copy of the GNU General Public License
  55.  * along with this program; if not, write to the Free Software
  56.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  57.  *
  58.  * Should you need to contact me, the author, you can do so either by
  59.  * e-mail - mail your message to <vojtech@suse.cz>, or by paper mail:
  60.  * Vojtech Pavlik, Ucitelska 1576, Prague 8, 182 00 Czech Republic
  61.  */
  62. #include <linux/kernel.h>
  63. #include <linux/slab.h>
  64. #include <linux/input.h>
  65. #include <linux/module.h>
  66. #include <linux/init.h>
  67. #include <linux/usb.h>
  68. /*
  69.  * Version Information
  70.  */
  71. #define DRIVER_VERSION "v1.21"
  72. #define DRIVER_AUTHOR "Vojtech Pavlik <vojtech@suse.cz>"
  73. #define DRIVER_DESC "USB Wacom Graphire and Wacom Intuos tablet driver"
  74. MODULE_AUTHOR( DRIVER_AUTHOR );
  75. MODULE_DESCRIPTION( DRIVER_DESC );
  76. MODULE_LICENSE("GPL");
  77. #define USB_VENDOR_ID_WACOM 0x056a
  78. struct wacom_features {
  79. char *name;
  80. int pktlen;
  81. int x_max;
  82. int y_max;
  83. int pressure_max;
  84. int distance_max;
  85. void (*irq)(struct urb *urb);
  86. unsigned long evbit;
  87. unsigned long absbit;
  88. unsigned long relbit;
  89. unsigned long btnbit;
  90. unsigned long digibit;
  91. };
  92. struct wacom {
  93. signed char data[10];
  94. struct input_dev dev;
  95. struct usb_device *usbdev;
  96. struct urb irq;
  97. struct wacom_features *features;
  98. int tool[2];
  99. int open;
  100. int x, y;
  101. __u32 serial[2];
  102. };
  103. static void wacom_pl_irq(struct urb *urb)
  104. {
  105. struct wacom *wacom = urb->context;
  106. unsigned char *data = wacom->data;
  107. struct input_dev *dev = &wacom->dev;
  108. int prox;
  109. if (urb->status) return;
  110. if (data[0] != 2)
  111. dbg("received unknown report #%d", data[0]);
  112. prox = data[1] & 0x20;
  113. input_report_key(dev, BTN_TOOL_PEN, prox);
  114. if (prox) {
  115. int pressure = (data[4] & 0x04) >> 2 | ((__u32)(data[7] & 0x7f) << 1);
  116. input_report_abs(dev, ABS_X, data[3] | ((__u32)data[2] << 8) | ((__u32)(data[1] & 0x03) << 16));
  117. input_report_abs(dev, ABS_Y, data[6] | ((__u32)data[5] << 8) | ((__u32)(data[4] & 0x03) << 8));
  118. input_report_abs(dev, ABS_PRESSURE, (data[7] & 0x80) ? (255 - pressure) : (pressure + 255));
  119. input_report_key(dev, BTN_TOUCH, data[4] & 0x08);
  120. input_report_key(dev, BTN_STYLUS, data[4] & 0x10);
  121. input_report_key(dev, BTN_STYLUS2, data[4] & 0x20);
  122. }
  123. input_event(dev, EV_MSC, MSC_SERIAL, 0);
  124. }
  125. static void wacom_graphire_irq(struct urb *urb)
  126. {
  127. struct wacom *wacom = urb->context;
  128. unsigned char *data = wacom->data;
  129. struct input_dev *dev = &wacom->dev;
  130. int x, y;
  131. if (urb->status) return;
  132. if (data[0] != 2)
  133. dbg("received unknown report #%d", data[0]);
  134. x = data[2] | ((__u32)data[3] << 8);
  135. y = data[4] | ((__u32)data[5] << 8);
  136. switch ((data[1] >> 5) & 3) {
  137. case 0: /* Pen */
  138. input_report_key(dev, BTN_TOOL_PEN, data[1] & 0x80);
  139. break;
  140. case 1: /* Rubber */
  141. input_report_key(dev, BTN_TOOL_RUBBER, data[1] & 0x80);
  142. break;
  143. case 2: /* Mouse */
  144. input_report_key(dev, BTN_TOOL_MOUSE, data[7] > 24);
  145. input_report_key(dev, BTN_LEFT, data[1] & 0x01);
  146. input_report_key(dev, BTN_RIGHT, data[1] & 0x02);
  147. input_report_key(dev, BTN_MIDDLE, data[1] & 0x04);
  148. input_report_abs(dev, ABS_DISTANCE, data[7]);
  149. input_report_rel(dev, REL_WHEEL, (signed char) data[6]);
  150. input_report_abs(dev, ABS_X, x);
  151. input_report_abs(dev, ABS_Y, y);
  152. input_event(dev, EV_MSC, MSC_SERIAL, data[1] & 0x01);
  153. return;
  154. }
  155. if (data[1] & 0x80) {
  156. input_report_abs(dev, ABS_X, wacom->x = x);
  157. input_report_abs(dev, ABS_Y, wacom->y = y);
  158. }
  159. input_report_abs(dev, ABS_PRESSURE, data[6] | ((__u32)data[7] << 8));
  160. input_report_key(dev, BTN_TOUCH, data[1] & 0x01);
  161. input_report_key(dev, BTN_STYLUS, data[1] & 0x02);
  162. input_report_key(dev, BTN_STYLUS2, data[1] & 0x04);
  163. input_event(dev, EV_MSC, MSC_SERIAL, data[1] & 0x01);
  164. }
  165. static void wacom_intuos_irq(struct urb *urb)
  166. {
  167. struct wacom *wacom = urb->context;
  168. unsigned char *data = wacom->data;
  169. struct input_dev *dev = &wacom->dev;
  170. unsigned int t;
  171. int idx;
  172. if (urb->status) return;
  173. if (data[0] != 2)
  174. dbg("received unknown report #%d", data[0]);
  175. /* tool number */
  176. idx = data[1] & 0x01;
  177. if ((data[1] & 0xfc) == 0xc0) { /* Enter report */
  178. wacom->serial[idx] = ((__u32)(data[3] & 0x0f) << 4) + /* serial number of the tool */
  179. ((__u32)data[4] << 16) + ((__u32)data[5] << 12) +
  180. ((__u32)data[6] << 4) + (data[7] >> 4);
  181. switch (((__u32)data[2] << 4) | (data[3] >> 4)) {
  182. case 0x832:
  183. case 0x012: wacom->tool[idx] = BTN_TOOL_PENCIL; break; /* Inking pen */
  184. case 0x822:
  185. case 0x022: wacom->tool[idx] = BTN_TOOL_PEN; break; /* Pen */
  186. case 0x812:
  187. case 0x032: wacom->tool[idx] = BTN_TOOL_BRUSH; break; /* Stroke pen */
  188.         case 0x09c:
  189. case 0x094: wacom->tool[idx] = BTN_TOOL_MOUSE; break; /* Mouse 4D */
  190. case 0x096: wacom->tool[idx] = BTN_TOOL_LENS; break; /* Lens cursor */
  191. case 0x82a:
  192.         case 0x91a:
  193. case 0x0fa: wacom->tool[idx] = BTN_TOOL_RUBBER; break; /* Eraser */
  194. case 0x112: wacom->tool[idx] = BTN_TOOL_AIRBRUSH; break; /* Airbrush */
  195. default:    wacom->tool[idx] = BTN_TOOL_PEN; break; /* Unknown tool */
  196. }
  197. input_report_key(dev, wacom->tool[idx], 1);
  198. input_event(dev, EV_MSC, MSC_SERIAL, wacom->serial[idx]);
  199. return;
  200. }
  201. if ((data[1] & 0xfe) == 0x80) { /* Exit report */
  202. input_report_key(dev, wacom->tool[idx], 0);
  203. input_event(dev, EV_MSC, MSC_SERIAL, wacom->serial[idx]);
  204. return;
  205. }
  206. input_report_abs(dev, ABS_X, ((__u32)data[2] << 8) | data[3]);
  207. input_report_abs(dev, ABS_Y, ((__u32)data[4] << 8) | data[5]);
  208. input_report_abs(dev, ABS_DISTANCE, data[9] >> 4);
  209. if ((data[1] & 0xb8) == 0xa0) { /* general pen packet */
  210. input_report_abs(dev, ABS_PRESSURE, t = ((__u32)data[6] << 2) | ((data[7] >> 6) & 3));
  211. input_report_abs(dev, ABS_TILT_X, ((data[7] << 1) & 0x7e) | (data[8] >> 7));
  212. input_report_abs(dev, ABS_TILT_Y, data[8] & 0x7f);
  213. input_report_key(dev, BTN_STYLUS, data[1] & 2);
  214. input_report_key(dev, BTN_STYLUS2, data[1] & 4);
  215. input_report_key(dev, BTN_TOUCH, t > 10);
  216. }
  217. if ((data[1] & 0xbc) == 0xb4) { /* airbrush second packet */
  218. input_report_abs(dev, ABS_WHEEL, ((__u32)data[6] << 2) | ((data[7] >> 6) & 3));
  219. input_report_abs(dev, ABS_TILT_X, ((data[7] << 1) & 0x7e) | (data[8] >> 7));
  220. input_report_abs(dev, ABS_TILT_Y, data[8] & 0x7f);
  221. }
  222. if ((data[1] & 0xbc) == 0xa8 || (data[1] & 0xbe) == 0xb0) { /* 4D mouse or Lens cursor packets */
  223. if (data[1] & 0x02) { /* Rotation packet */
  224. input_report_abs(dev, ABS_RZ, (data[7] & 0x20) ?
  225.  ((__u32)data[6] << 2) | ((data[7] >> 6) & 3):
  226.  (-(((__u32)data[6] << 2) | ((data[7] >> 6) & 3))) - 1);
  227. } else {
  228. input_report_key(dev, BTN_LEFT,   data[8] & 0x01);
  229. input_report_key(dev, BTN_MIDDLE, data[8] & 0x02);
  230. input_report_key(dev, BTN_RIGHT,  data[8] & 0x04);
  231.   if ((data[1] & 0x10) == 0) { /* 4D mouse packets */
  232. input_report_key(dev, BTN_SIDE,   data[8] & 0x20);
  233. input_report_key(dev, BTN_EXTRA,  data[8] & 0x10);
  234. input_report_abs(dev, ABS_THROTTLE,  (data[8] & 0x08) ?
  235.  ((__u32)data[6] << 2) | ((data[7] >> 6) & 3) :
  236.  -((__u32)data[6] << 2) | ((data[7] >> 6) & 3));
  237. } else { /* Lens cursor packets */
  238. input_report_key(dev, BTN_SIDE,   data[8] & 0x10);
  239. input_report_key(dev, BTN_EXTRA,  data[8] & 0x08);
  240. }
  241. }
  242. }
  243. input_event(dev, EV_MSC, MSC_SERIAL, wacom->serial[idx]);
  244. }
  245. #define WACOM_INTUOS_TOOLS (BIT(BTN_TOOL_BRUSH) | BIT(BTN_TOOL_PENCIL) | BIT(BTN_TOOL_AIRBRUSH) | BIT(BTN_TOOL_LENS))
  246. #define WACOM_INTUOS_BUTTONS (BIT(BTN_SIDE) | BIT(BTN_EXTRA))
  247. #define WACOM_INTUOS_ABS (BIT(ABS_TILT_X) | BIT(ABS_TILT_Y) | BIT(ABS_RZ) | BIT(ABS_THROTTLE))
  248. struct wacom_features wacom_features[] = {
  249. { "Wacom Graphire",      8, 10206,  7422,  511, 32, wacom_graphire_irq,
  250. BIT(EV_REL), 0, BIT(REL_WHEEL), 0 },
  251. { "Wacom Intuos 4x5",   10, 12700, 10360, 1023, 15, wacom_intuos_irq,
  252. 0, WACOM_INTUOS_ABS, 0, WACOM_INTUOS_BUTTONS, WACOM_INTUOS_TOOLS },
  253. { "Wacom Intuos 6x8",   10, 20320, 15040, 1023, 15, wacom_intuos_irq,
  254. 0, WACOM_INTUOS_ABS, 0, WACOM_INTUOS_BUTTONS, WACOM_INTUOS_TOOLS },
  255. { "Wacom Intuos 9x12",  10, 30480, 23060, 1023, 15, wacom_intuos_irq,
  256. 0, WACOM_INTUOS_ABS, 0, WACOM_INTUOS_BUTTONS, WACOM_INTUOS_TOOLS },
  257. { "Wacom Intuos 12x12", 10, 30480, 30480, 1023, 15, wacom_intuos_irq,
  258. 0, WACOM_INTUOS_ABS, 0, WACOM_INTUOS_BUTTONS, WACOM_INTUOS_TOOLS },
  259. { "Wacom Intuos 12x18", 10, 47720, 30480, 1023, 15, wacom_intuos_irq,
  260. 0, WACOM_INTUOS_ABS, 0, WACOM_INTUOS_BUTTONS, WACOM_INTUOS_TOOLS },
  261. { "Wacom PL500",        8,  12328, 9256,   511, 32, wacom_pl_irq,
  262. 0,  0, 0, 0 },
  263. { NULL , 0 }
  264. };
  265. struct usb_device_id wacom_ids[] = {
  266. { USB_DEVICE(USB_VENDOR_ID_WACOM, 0x10), driver_info: 0 },
  267. { USB_DEVICE(USB_VENDOR_ID_WACOM, 0x20), driver_info: 1 },
  268. { USB_DEVICE(USB_VENDOR_ID_WACOM, 0x21), driver_info: 2 },
  269. { USB_DEVICE(USB_VENDOR_ID_WACOM, 0x22), driver_info: 3 },
  270. { USB_DEVICE(USB_VENDOR_ID_WACOM, 0x23), driver_info: 4 },
  271. { USB_DEVICE(USB_VENDOR_ID_WACOM, 0x24), driver_info: 5 },
  272. { USB_DEVICE(USB_VENDOR_ID_WACOM, 0x31), driver_info: 6 },
  273. { }
  274. };
  275. MODULE_DEVICE_TABLE(usb, wacom_ids);
  276. static int wacom_open(struct input_dev *dev)
  277. {
  278. struct wacom *wacom = dev->private;
  279. if (wacom->open++)
  280. return 0;
  281. wacom->irq.dev = wacom->usbdev;
  282. if (usb_submit_urb(&wacom->irq))
  283. return -EIO;
  284. return 0;
  285. }
  286. static void wacom_close(struct input_dev *dev)
  287. {
  288. struct wacom *wacom = dev->private;
  289. if (!--wacom->open)
  290. usb_unlink_urb(&wacom->irq);
  291. }
  292. static void *wacom_probe(struct usb_device *dev, unsigned int ifnum, const struct usb_device_id *id)
  293. {
  294. struct usb_endpoint_descriptor *endpoint;
  295. struct wacom *wacom;
  296. if (!(wacom = kmalloc(sizeof(struct wacom), GFP_KERNEL))) return NULL;
  297. memset(wacom, 0, sizeof(struct wacom));
  298. wacom->features = wacom_features + id->driver_info;
  299. wacom->dev.evbit[0] |= BIT(EV_KEY) | BIT(EV_ABS) | BIT(EV_MSC) | wacom->features->evbit;
  300. wacom->dev.absbit[0] |= BIT(ABS_X) | BIT(ABS_Y) | BIT(ABS_PRESSURE) | BIT(ABS_DISTANCE) | BIT(ABS_WHEEL) | wacom->features->absbit;
  301. wacom->dev.relbit[0] |= wacom->features->relbit;
  302. wacom->dev.keybit[LONG(BTN_LEFT)] |= BIT(BTN_LEFT) | BIT(BTN_RIGHT) | BIT(BTN_MIDDLE) | wacom->features->btnbit;
  303. wacom->dev.keybit[LONG(BTN_DIGI)] |= BIT(BTN_TOOL_PEN) | BIT(BTN_TOOL_RUBBER) | BIT(BTN_TOOL_MOUSE) |
  304. BIT(BTN_TOUCH) | BIT(BTN_STYLUS) | BIT(BTN_STYLUS2) | wacom->features->digibit;
  305. wacom->dev.mscbit[0] |= BIT(MSC_SERIAL);
  306. wacom->dev.absmax[ABS_X] = wacom->features->x_max;
  307. wacom->dev.absmax[ABS_Y] = wacom->features->y_max;
  308. wacom->dev.absmax[ABS_PRESSURE] = wacom->features->pressure_max;
  309. wacom->dev.absmax[ABS_DISTANCE] = wacom->features->distance_max;
  310. wacom->dev.absmax[ABS_TILT_X] = 127;
  311. wacom->dev.absmax[ABS_TILT_Y] = 127;
  312. wacom->dev.absmax[ABS_WHEEL] = 1023;
  313. wacom->dev.absmin[ABS_RZ] = -900;
  314. wacom->dev.absmax[ABS_RZ] = 899;
  315. wacom->dev.absmin[ABS_THROTTLE] = -1023;
  316. wacom->dev.absmax[ABS_THROTTLE] = 1023;
  317. wacom->dev.absfuzz[ABS_X] = 4;
  318. wacom->dev.absfuzz[ABS_Y] = 4;
  319. wacom->dev.private = wacom;
  320. wacom->dev.open = wacom_open;
  321. wacom->dev.close = wacom_close;
  322. wacom->dev.name = wacom->features->name;
  323. wacom->dev.idbus = BUS_USB;
  324. wacom->dev.idvendor = dev->descriptor.idVendor;
  325. wacom->dev.idproduct = dev->descriptor.idProduct;
  326. wacom->dev.idversion = dev->descriptor.bcdDevice;
  327. wacom->usbdev = dev;
  328. endpoint = dev->config[0].interface[ifnum].altsetting[0].endpoint + 0;
  329. FILL_INT_URB(&wacom->irq, dev, usb_rcvintpipe(dev, endpoint->bEndpointAddress),
  330.      wacom->data, wacom->features->pktlen, wacom->features->irq, wacom, endpoint->bInterval);
  331. input_register_device(&wacom->dev);
  332. printk(KERN_INFO "input%d: %s on usb%d:%d.%dn",
  333.  wacom->dev.number, wacom->features->name, dev->bus->busnum, dev->devnum, ifnum);
  334. return wacom;
  335. }
  336. static void wacom_disconnect(struct usb_device *dev, void *ptr)
  337. {
  338. struct wacom *wacom = ptr;
  339. usb_unlink_urb(&wacom->irq);
  340. input_unregister_device(&wacom->dev);
  341. kfree(wacom);
  342. }
  343. static struct usb_driver wacom_driver = {
  344. name: "wacom",
  345. probe: wacom_probe,
  346. disconnect: wacom_disconnect,
  347. id_table: wacom_ids,
  348. };
  349. static int __init wacom_init(void)
  350. {
  351. usb_register(&wacom_driver);
  352. info(DRIVER_VERSION ":" DRIVER_DESC);
  353. return 0;
  354. }
  355. static void __exit wacom_exit(void)
  356. {
  357. usb_deregister(&wacom_driver);
  358. }
  359. module_init(wacom_init);
  360. module_exit(wacom_exit);