2 * Bluetooth Wacom Tablet support
4 * Copyright (c) 1999 Andreas Gal
5 * Copyright (c) 2000-2005 Vojtech Pavlik <vojtech@suse.cz>
6 * Copyright (c) 2005 Michael Haboustak <mike-@cinci.rr.com> for Concept2, Inc
7 * Copyright (c) 2006-2007 Jiri Kosina
8 * Copyright (c) 2007 Paul Walmsley
9 * Copyright (c) 2008 Jiri Slaby <jirislaby@gmail.com>
10 * Copyright (c) 2006 Andrew Zabolotny <zap@homelink.ru>
11 * Copyright (c) 2009 Bastien Nocera <hadess@hadess.net>
15 * This program is free software; you can redistribute it and/or modify it
16 * under the terms of the GNU General Public License as published by the Free
17 * Software Foundation; either version 2 of the License, or (at your option)
21 #include <linux/device.h>
22 #include <linux/hid.h>
23 #include <linux/module.h>
24 #include <linux/slab.h>
30 unsigned char butstate;
33 static int wacom_raw_event(struct hid_device *hdev, struct hid_report *report,
34 u8 *raw_data, int size)
36 struct wacom_data *wdata = hid_get_drvdata(hdev);
37 struct hid_input *hidinput;
38 struct input_dev *input;
39 unsigned char *data = (unsigned char *) raw_data;
42 if (!(hdev->claimed & HID_CLAIMED_INPUT))
46 hidinput = list_entry(hdev->inputs.next, struct hid_input, list);
47 input = hidinput->input;
49 /* Check if this is a tablet report */
53 /* Get X & Y positions */
54 x = le16_to_cpu(*(__le16 *) &data[2]);
55 y = le16_to_cpu(*(__le16 *) &data[4]);
57 /* Get current tool identifier */
58 if (data[1] & 0x90) { /* If pen is in the in/active area */
59 switch ((data[1] >> 5) & 3) {
65 tool = BTN_TOOL_RUBBER;
68 case 2: /* Mouse with wheel */
69 case 3: /* Mouse without wheel */
70 tool = BTN_TOOL_MOUSE;
74 /* Reset tool if out of active tablet area */
75 if (!(data[1] & 0x10))
79 /* If tool changed, notify input subsystem */
80 if (wdata->tool != tool) {
82 /* Completely reset old tool state */
83 if (wdata->tool == BTN_TOOL_MOUSE) {
84 input_report_key(input, BTN_LEFT, 0);
85 input_report_key(input, BTN_RIGHT, 0);
86 input_report_key(input, BTN_MIDDLE, 0);
87 input_report_abs(input, ABS_DISTANCE,
88 input->absmax[ABS_DISTANCE]);
90 input_report_key(input, BTN_TOUCH, 0);
91 input_report_key(input, BTN_STYLUS, 0);
92 input_report_key(input, BTN_STYLUS2, 0);
93 input_report_abs(input, ABS_PRESSURE, 0);
95 input_report_key(input, wdata->tool, 0);
100 input_report_key(input, tool, 1);
104 input_report_abs(input, ABS_X, x);
105 input_report_abs(input, ABS_Y, y);
107 switch ((data[1] >> 5) & 3) {
108 case 2: /* Mouse with wheel */
109 input_report_key(input, BTN_MIDDLE, data[1] & 0x04);
110 rw = (data[6] & 0x01) ? -1 :
111 (data[6] & 0x02) ? 1 : 0;
112 input_report_rel(input, REL_WHEEL, rw);
115 case 3: /* Mouse without wheel */
116 input_report_key(input, BTN_LEFT, data[1] & 0x01);
117 input_report_key(input, BTN_RIGHT, data[1] & 0x02);
118 /* Compute distance between mouse and tablet */
119 rw = 44 - (data[6] >> 2);
124 input_report_abs(input, ABS_DISTANCE, rw);
128 input_report_abs(input, ABS_PRESSURE,
129 data[6] | (((__u16) (data[1] & 0x08)) << 5));
130 input_report_key(input, BTN_TOUCH, data[1] & 0x01);
131 input_report_key(input, BTN_STYLUS, data[1] & 0x02);
132 input_report_key(input, BTN_STYLUS2, (tool == BTN_TOOL_PEN) && data[1] & 0x04);
139 /* Report the state of the two buttons at the top of the tablet
140 * as two extra fingerpad keys (buttons 4 & 5). */
142 if (rw != wdata->butstate) {
143 wdata->butstate = rw;
144 input_report_key(input, BTN_0, rw & 0x02);
145 input_report_key(input, BTN_1, rw & 0x01);
146 input_report_key(input, BTN_TOOL_FINGER, 0xf0);
147 input_event(input, EV_MSC, MSC_SERIAL, 0xf0);
154 static int wacom_probe(struct hid_device *hdev,
155 const struct hid_device_id *id)
157 struct hid_input *hidinput;
158 struct input_dev *input;
159 struct wacom_data *wdata;
164 wdata = kzalloc(sizeof(*wdata), GFP_KERNEL);
166 dev_err(&hdev->dev, "can't alloc wacom descriptor\n");
170 hid_set_drvdata(hdev, wdata);
172 /* Parse the HID report now */
173 ret = hid_parse(hdev);
175 dev_err(&hdev->dev, "parse failed\n");
179 ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT);
181 dev_err(&hdev->dev, "hw start failed\n");
186 * Note that if the raw queries fail, it's not a hard failure and it
187 * is safe to continue
190 /* Set Wacom mode2 */
191 rep_data[0] = 0x03; rep_data[1] = 0x00;
194 ret = hdev->hid_output_raw_report(hdev, rep_data, 2,
196 } while (ret < 0 && limit-- > 0);
198 dev_warn(&hdev->dev, "failed to poke device #1, %d\n", ret);
200 /* 0x06 - high reporting speed, 0x05 - low speed */
201 rep_data[0] = 0x06; rep_data[1] = 0x00;
204 ret = hdev->hid_output_raw_report(hdev, rep_data, 2,
206 } while (ret < 0 && limit-- > 0);
208 dev_warn(&hdev->dev, "failed to poke device #2, %d\n", ret);
210 hidinput = list_entry(hdev->inputs.next, struct hid_input, list);
211 input = hidinput->input;
214 input->evbit[0] |= BIT(EV_KEY) | BIT(EV_ABS) | BIT(EV_REL);
215 input->absbit[0] |= BIT(ABS_X) | BIT(ABS_Y) |
216 BIT(ABS_PRESSURE) | BIT(ABS_DISTANCE);
217 input->relbit[0] |= BIT(REL_WHEEL);
218 set_bit(BTN_TOOL_PEN, input->keybit);
219 set_bit(BTN_TOUCH, input->keybit);
220 set_bit(BTN_STYLUS, input->keybit);
221 set_bit(BTN_STYLUS2, input->keybit);
222 set_bit(BTN_LEFT, input->keybit);
223 set_bit(BTN_RIGHT, input->keybit);
224 set_bit(BTN_MIDDLE, input->keybit);
227 input->evbit[0] |= BIT(EV_MSC);
228 input->mscbit[0] |= BIT(MSC_SERIAL);
229 set_bit(BTN_0, input->keybit);
230 set_bit(BTN_1, input->keybit);
231 set_bit(BTN_TOOL_FINGER, input->keybit);
233 /* Distance, rubber and mouse */
234 input->absbit[0] |= BIT(ABS_DISTANCE);
235 set_bit(BTN_TOOL_RUBBER, input->keybit);
236 set_bit(BTN_TOOL_MOUSE, input->keybit);
238 input->absmax[ABS_PRESSURE] = 511;
239 input->absmax[ABS_DISTANCE] = 32;
241 input->absmax[ABS_X] = 16704;
242 input->absmax[ABS_Y] = 12064;
243 input->absfuzz[ABS_X] = 4;
244 input->absfuzz[ABS_Y] = 4;
252 static void wacom_remove(struct hid_device *hdev)
255 kfree(hid_get_drvdata(hdev));
258 static const struct hid_device_id wacom_devices[] = {
259 { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_WACOM, USB_DEVICE_ID_WACOM_GRAPHIRE_BLUETOOTH) },
263 MODULE_DEVICE_TABLE(hid, wacom_devices);
265 static struct hid_driver wacom_driver = {
267 .id_table = wacom_devices,
268 .probe = wacom_probe,
269 .remove = wacom_remove,
270 .raw_event = wacom_raw_event,
273 static int __init wacom_init(void)
277 ret = hid_register_driver(&wacom_driver);
279 printk(KERN_ERR "can't register wacom driver\n");
283 static void __exit wacom_exit(void)
285 hid_unregister_driver(&wacom_driver);
288 module_init(wacom_init);
289 module_exit(wacom_exit);
290 MODULE_LICENSE("GPL");