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) 2008 Jiri Slaby <jirislaby@gmail.com>
9 * Copyright (c) 2006 Andrew Zabolotny <zap@homelink.ru>
10 * Copyright (c) 2009 Bastien Nocera <hadess@hadess.net>
11 * Copyright (c) 2011 Przemysław Firszt <przemo@firszt.eu>
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 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
23 #include <linux/device.h>
24 #include <linux/hid.h>
25 #include <linux/module.h>
26 #include <linux/leds.h>
27 #include <linux/slab.h>
28 #include <linux/power_supply.h>
32 #define PAD_DEVICE_ID 0x0F
34 #define WAC_CMD_LED_CONTROL 0x20
35 #define WAC_CMD_ICON_START_STOP 0x21
36 #define WAC_CMD_ICON_TRANSFER 0x26
45 unsigned char high_speed
;
46 __u8 battery_capacity
;
50 struct power_supply battery
;
51 struct power_supply ac
;
53 struct led_classdev
*leds
[4];
56 /*percent of battery capacity for Graphire
57 8th value means AC online and show 100% capacity */
58 static unsigned short batcap_gr
[8] = { 1, 15, 25, 35, 50, 70, 100, 100 };
59 /*percent of battery capacity for Intuos4 WL, AC has a separate bit*/
60 static unsigned short batcap_i4
[8] = { 1, 15, 30, 45, 60, 70, 85, 100 };
62 static enum power_supply_property wacom_battery_props
[] = {
63 POWER_SUPPLY_PROP_PRESENT
,
64 POWER_SUPPLY_PROP_CAPACITY
,
65 POWER_SUPPLY_PROP_SCOPE
,
66 POWER_SUPPLY_PROP_STATUS
,
69 static enum power_supply_property wacom_ac_props
[] = {
70 POWER_SUPPLY_PROP_PRESENT
,
71 POWER_SUPPLY_PROP_ONLINE
,
72 POWER_SUPPLY_PROP_SCOPE
,
75 static void wacom_scramble(__u8
*image
)
86 for (x
= 0; x
< 32; x
++) {
87 for (y
= 0; y
< 8; y
++)
88 buf
[(8 * x
) + (7 - y
)] = image
[(8 * x
) + y
];
91 /* Change 76543210 into GECA6420 as required by Intuos4 WL
94 for (x
= 0; x
< 4; x
++) {
95 for (y
= 0; y
< 4; y
++) {
96 for (z
= 0; z
< 8; z
++) {
100 i
= (x
<< 6) + (y
<< 4) + z
;
103 for (w
= 0; w
< 8; w
++) {
111 i
= (x
<< 6) + (y
<< 4) + (z
<< 1);
113 image
[i
+1] = (0xFF00 & r
) >> 8;
119 static void wacom_set_image(struct hid_device
*hdev
, const char *image
,
126 for (i
= 0; i
< 256; i
++)
129 rep_data
[0] = WAC_CMD_ICON_START_STOP
;
131 ret
= hdev
->hid_output_raw_report(hdev
, rep_data
, 2,
136 rep_data
[0] = WAC_CMD_ICON_TRANSFER
;
137 rep_data
[1] = icon_no
& 0x07;
141 for (i
= 0; i
< 4; i
++) {
142 for (j
= 0; j
< 64; j
++)
143 rep_data
[j
+ 3] = p
[(i
<< 6) + j
];
146 ret
= hdev
->hid_output_raw_report(hdev
, rep_data
, 67,
150 rep_data
[0] = WAC_CMD_ICON_START_STOP
;
153 ret
= hdev
->hid_output_raw_report(hdev
, rep_data
, 2,
160 static void wacom_leds_set_brightness(struct led_classdev
*led_dev
,
161 enum led_brightness value
)
163 struct device
*dev
= led_dev
->dev
->parent
;
164 struct hid_device
*hdev
;
165 struct wacom_data
*wdata
;
170 hdev
= container_of(dev
, struct hid_device
, dev
);
171 wdata
= hid_get_drvdata(hdev
);
172 for (i
= 0; i
< 4; ++i
) {
173 if (wdata
->leds
[i
] == led_dev
)
174 wdata
->led_selector
= i
;
177 led
= wdata
->led_selector
| 0x04;
178 buf
= kzalloc(9, GFP_KERNEL
);
180 buf
[0] = WAC_CMD_LED_CONTROL
;
184 /* use fixed brightness for OLEDs */
186 hdev
->hid_output_raw_report(hdev
, buf
, 9, HID_FEATURE_REPORT
);
193 static enum led_brightness
wacom_leds_get_brightness(struct led_classdev
*led_dev
)
195 struct wacom_data
*wdata
;
196 struct device
*dev
= led_dev
->dev
->parent
;
200 wdata
= hid_get_drvdata(container_of(dev
, struct hid_device
, dev
));
202 for (i
= 0; i
< 4; ++i
) {
203 if (wdata
->leds
[i
] == led_dev
) {
204 value
= wdata
->leds
[i
]->brightness
;
213 static int wacom_initialize_leds(struct hid_device
*hdev
)
215 struct wacom_data
*wdata
= hid_get_drvdata(hdev
);
216 struct led_classdev
*led
;
217 struct device
*dev
= &hdev
->dev
;
218 size_t namesz
= strlen(dev_name(dev
)) + 12;
222 wdata
->led_selector
= 0;
224 for (i
= 0; i
< 4; i
++) {
225 led
= kzalloc(sizeof(struct led_classdev
) + namesz
, GFP_KERNEL
);
228 "can't allocate memory for LED selector\n");
233 name
= (void *)&led
[1];
234 snprintf(name
, namesz
, "%s:selector:%d", dev_name(dev
), i
);
237 led
->max_brightness
= 127;
238 led
->brightness_get
= wacom_leds_get_brightness
;
239 led
->brightness_set
= wacom_leds_set_brightness
;
241 wdata
->leds
[i
] = led
;
243 ret
= led_classdev_register(dev
, wdata
->leds
[i
]);
246 wdata
->leds
[i
] = NULL
;
248 hid_warn(hdev
, "can't register LED\n");
257 static void wacom_destroy_leds(struct hid_device
*hdev
)
259 struct wacom_data
*wdata
= hid_get_drvdata(hdev
);
260 struct led_classdev
*led
;
263 for (i
= 0; i
< 4; ++i
) {
264 if (wdata
->leds
[i
]) {
265 led
= wdata
->leds
[i
];
266 wdata
->leds
[i
] = NULL
;
267 led_classdev_unregister(led
);
274 static int wacom_battery_get_property(struct power_supply
*psy
,
275 enum power_supply_property psp
,
276 union power_supply_propval
*val
)
278 struct wacom_data
*wdata
= container_of(psy
,
279 struct wacom_data
, battery
);
283 case POWER_SUPPLY_PROP_PRESENT
:
286 case POWER_SUPPLY_PROP_SCOPE
:
287 val
->intval
= POWER_SUPPLY_SCOPE_DEVICE
;
289 case POWER_SUPPLY_PROP_CAPACITY
:
290 val
->intval
= wdata
->battery_capacity
;
292 case POWER_SUPPLY_PROP_STATUS
:
293 if (wdata
->bat_charging
)
294 val
->intval
= POWER_SUPPLY_STATUS_CHARGING
;
296 if (wdata
->battery_capacity
== 100 && wdata
->ps_connected
)
297 val
->intval
= POWER_SUPPLY_STATUS_FULL
;
299 val
->intval
= POWER_SUPPLY_STATUS_DISCHARGING
;
308 static int wacom_ac_get_property(struct power_supply
*psy
,
309 enum power_supply_property psp
,
310 union power_supply_propval
*val
)
312 struct wacom_data
*wdata
= container_of(psy
, struct wacom_data
, ac
);
316 case POWER_SUPPLY_PROP_PRESENT
:
318 case POWER_SUPPLY_PROP_ONLINE
:
319 val
->intval
= wdata
->ps_connected
;
321 case POWER_SUPPLY_PROP_SCOPE
:
322 val
->intval
= POWER_SUPPLY_SCOPE_DEVICE
;
331 static void wacom_set_features(struct hid_device
*hdev
, u8 speed
)
333 struct wacom_data
*wdata
= hid_get_drvdata(hdev
);
337 switch (hdev
->product
) {
338 case USB_DEVICE_ID_WACOM_GRAPHIRE_BLUETOOTH
:
339 rep_data
[0] = 0x03 ; rep_data
[1] = 0x00;
342 ret
= hdev
->hid_output_raw_report(hdev
, rep_data
, 2,
344 } while (ret
< 0 && limit
-- > 0);
355 ret
= hdev
->hid_output_raw_report(hdev
,
356 rep_data
, 2, HID_FEATURE_REPORT
);
357 } while (ret
< 0 && limit
-- > 0);
360 wdata
->high_speed
= speed
;
366 * Note that if the raw queries fail, it's not a hard failure
367 * and it is safe to continue
369 hid_warn(hdev
, "failed to poke device, command %d, err %d\n",
372 case USB_DEVICE_ID_WACOM_INTUOS4_BLUETOOTH
:
374 wdata
->features
&= ~0x20;
376 wdata
->features
|= 0x20;
379 rep_data
[1] = wdata
->features
;
381 ret
= hdev
->hid_output_raw_report(hdev
, rep_data
, 2,
384 wdata
->high_speed
= speed
;
391 static ssize_t
wacom_show_speed(struct device
*dev
,
392 struct device_attribute
395 struct wacom_data
*wdata
= dev_get_drvdata(dev
);
397 return snprintf(buf
, PAGE_SIZE
, "%i\n", wdata
->high_speed
);
400 static ssize_t
wacom_store_speed(struct device
*dev
,
401 struct device_attribute
*attr
,
402 const char *buf
, size_t count
)
404 struct hid_device
*hdev
= container_of(dev
, struct hid_device
, dev
);
407 if (sscanf(buf
, "%1d", &new_speed
) != 1)
410 if (new_speed
== 0 || new_speed
== 1) {
411 wacom_set_features(hdev
, new_speed
);
412 return strnlen(buf
, PAGE_SIZE
);
417 static DEVICE_ATTR(speed
, S_IRUGO
| S_IWUSR
| S_IWGRP
,
418 wacom_show_speed
, wacom_store_speed
);
420 #define WACOM_STORE(OLED_ID) \
421 static ssize_t wacom_oled##OLED_ID##_store(struct device *dev, \
422 struct device_attribute *attr, \
423 const char *buf, size_t count) \
425 struct hid_device *hdev = container_of(dev, struct hid_device, \
431 wacom_set_image(hdev, buf, OLED_ID); \
436 static DEVICE_ATTR(oled##OLED_ID##_img, S_IWUSR | S_IWGRP, NULL, \
437 wacom_oled##OLED_ID##_store)
448 static int wacom_gr_parse_report(struct hid_device
*hdev
,
449 struct wacom_data
*wdata
,
450 struct input_dev
*input
, unsigned char *data
)
455 /* Get X & Y positions */
456 x
= le16_to_cpu(*(__le16
*) &data
[2]);
457 y
= le16_to_cpu(*(__le16
*) &data
[4]);
459 /* Get current tool identifier */
460 if (data
[1] & 0x90) { /* If pen is in the in/active area */
461 switch ((data
[1] >> 5) & 3) {
467 tool
= BTN_TOOL_RUBBER
;
470 case 2: /* Mouse with wheel */
471 case 3: /* Mouse without wheel */
472 tool
= BTN_TOOL_MOUSE
;
476 /* Reset tool if out of active tablet area */
477 if (!(data
[1] & 0x10))
481 /* If tool changed, notify input subsystem */
482 if (wdata
->tool
!= tool
) {
484 /* Completely reset old tool state */
485 if (wdata
->tool
== BTN_TOOL_MOUSE
) {
486 input_report_key(input
, BTN_LEFT
, 0);
487 input_report_key(input
, BTN_RIGHT
, 0);
488 input_report_key(input
, BTN_MIDDLE
, 0);
489 input_report_abs(input
, ABS_DISTANCE
,
490 input_abs_get_max(input
, ABS_DISTANCE
));
492 input_report_key(input
, BTN_TOUCH
, 0);
493 input_report_key(input
, BTN_STYLUS
, 0);
494 input_report_key(input
, BTN_STYLUS2
, 0);
495 input_report_abs(input
, ABS_PRESSURE
, 0);
497 input_report_key(input
, wdata
->tool
, 0);
502 input_report_key(input
, tool
, 1);
506 input_report_abs(input
, ABS_X
, x
);
507 input_report_abs(input
, ABS_Y
, y
);
509 switch ((data
[1] >> 5) & 3) {
510 case 2: /* Mouse with wheel */
511 input_report_key(input
, BTN_MIDDLE
, data
[1] & 0x04);
512 rw
= (data
[6] & 0x01) ? -1 :
513 (data
[6] & 0x02) ? 1 : 0;
514 input_report_rel(input
, REL_WHEEL
, rw
);
517 case 3: /* Mouse without wheel */
518 input_report_key(input
, BTN_LEFT
, data
[1] & 0x01);
519 input_report_key(input
, BTN_RIGHT
, data
[1] & 0x02);
520 /* Compute distance between mouse and tablet */
521 rw
= 44 - (data
[6] >> 2);
526 input_report_abs(input
, ABS_DISTANCE
, rw
);
530 input_report_abs(input
, ABS_PRESSURE
,
531 data
[6] | (((__u16
) (data
[1] & 0x08)) << 5));
532 input_report_key(input
, BTN_TOUCH
, data
[1] & 0x01);
533 input_report_key(input
, BTN_STYLUS
, data
[1] & 0x02);
534 input_report_key(input
, BTN_STYLUS2
, (tool
== BTN_TOOL_PEN
) && data
[1] & 0x04);
541 /* Report the state of the two buttons at the top of the tablet
542 * as two extra fingerpad keys (buttons 4 & 5). */
544 if (rw
!= wdata
->butstate
) {
545 wdata
->butstate
= rw
;
546 input_report_key(input
, BTN_0
, rw
& 0x02);
547 input_report_key(input
, BTN_1
, rw
& 0x01);
548 input_report_key(input
, BTN_TOOL_FINGER
, 0xf0);
549 input_event(input
, EV_MSC
, MSC_SERIAL
, 0xf0);
553 /* Store current battery capacity and power supply state*/
554 rw
= (data
[7] >> 2 & 0x07);
555 if (rw
!= wdata
->power_raw
) {
556 wdata
->power_raw
= rw
;
557 wdata
->battery_capacity
= batcap_gr
[rw
];
559 wdata
->ps_connected
= 1;
561 wdata
->ps_connected
= 0;
566 static void wacom_i4_parse_button_report(struct wacom_data
*wdata
,
567 struct input_dev
*input
, unsigned char *data
)
573 new_whlstate
= data
[1];
574 if (new_whlstate
!= wdata
->whlstate
) {
575 wdata
->whlstate
= new_whlstate
;
576 if (new_whlstate
& 0x80) {
577 input_report_key(input
, BTN_TOUCH
, 1);
578 input_report_abs(input
, ABS_WHEEL
, (new_whlstate
& 0x7f));
579 input_report_key(input
, BTN_TOOL_FINGER
, 1);
581 input_report_key(input
, BTN_TOUCH
, 0);
582 input_report_abs(input
, ABS_WHEEL
, 0);
583 input_report_key(input
, BTN_TOOL_FINGER
, 0);
588 new_butstate
= (data
[3] << 1) | (data
[2] & 0x01);
589 if (new_butstate
!= wdata
->butstate
) {
590 wdata
->butstate
= new_butstate
;
591 input_report_key(input
, BTN_0
, new_butstate
& 0x001);
592 input_report_key(input
, BTN_1
, new_butstate
& 0x002);
593 input_report_key(input
, BTN_2
, new_butstate
& 0x004);
594 input_report_key(input
, BTN_3
, new_butstate
& 0x008);
595 input_report_key(input
, BTN_4
, new_butstate
& 0x010);
596 input_report_key(input
, BTN_5
, new_butstate
& 0x020);
597 input_report_key(input
, BTN_6
, new_butstate
& 0x040);
598 input_report_key(input
, BTN_7
, new_butstate
& 0x080);
599 input_report_key(input
, BTN_8
, new_butstate
& 0x100);
600 input_report_key(input
, BTN_TOOL_FINGER
, 1);
605 input_report_abs(input
, ABS_MISC
, PAD_DEVICE_ID
);
606 input_event(input
, EV_MSC
, MSC_SERIAL
, 0xffffffff);
611 static void wacom_i4_parse_pen_report(struct wacom_data
*wdata
,
612 struct input_dev
*input
, unsigned char *data
)
614 __u16 x
, y
, pressure
;
619 case 0x80: /* Out of proximity report */
620 input_report_key(input
, BTN_TOUCH
, 0);
621 input_report_abs(input
, ABS_PRESSURE
, 0);
622 input_report_key(input
, BTN_STYLUS
, 0);
623 input_report_key(input
, BTN_STYLUS2
, 0);
624 input_report_key(input
, wdata
->tool
, 0);
625 input_report_abs(input
, ABS_MISC
, 0);
626 input_event(input
, EV_MSC
, MSC_SERIAL
, wdata
->serial
);
630 case 0xC2: /* Tool report */
631 wdata
->id
= ((data
[2] << 4) | (data
[3] >> 4) |
632 ((data
[7] & 0x0f) << 20) |
633 ((data
[8] & 0xf0) << 12));
634 wdata
->serial
= ((data
[3] & 0x0f) << 28) +
635 (data
[4] << 20) + (data
[5] << 12) +
636 (data
[6] << 4) + (data
[7] >> 4);
640 wdata
->tool
= BTN_TOOL_PEN
;
643 wdata
->tool
= BTN_TOOL_RUBBER
;
647 default: /* Position/pressure report */
648 x
= data
[2] << 9 | data
[3] << 1 | ((data
[9] & 0x02) >> 1);
649 y
= data
[4] << 9 | data
[5] << 1 | (data
[9] & 0x01);
650 pressure
= (data
[6] << 3) | ((data
[7] & 0xC0) >> 5)
652 distance
= (data
[9] >> 2) & 0x3f;
653 tilt_x
= ((data
[7] << 1) & 0x7e) | (data
[8] >> 7);
654 tilt_y
= data
[8] & 0x7f;
656 input_report_key(input
, BTN_TOUCH
, pressure
> 1);
658 input_report_key(input
, BTN_STYLUS
, data
[1] & 0x02);
659 input_report_key(input
, BTN_STYLUS2
, data
[1] & 0x04);
660 input_report_key(input
, wdata
->tool
, 1);
661 input_report_abs(input
, ABS_X
, x
);
662 input_report_abs(input
, ABS_Y
, y
);
663 input_report_abs(input
, ABS_PRESSURE
, pressure
);
664 input_report_abs(input
, ABS_DISTANCE
, distance
);
665 input_report_abs(input
, ABS_TILT_X
, tilt_x
);
666 input_report_abs(input
, ABS_TILT_Y
, tilt_y
);
667 input_report_abs(input
, ABS_MISC
, wdata
->id
);
668 input_event(input
, EV_MSC
, MSC_SERIAL
, wdata
->serial
);
669 input_report_key(input
, wdata
->tool
, 1);
677 static void wacom_i4_parse_report(struct hid_device
*hdev
,
678 struct wacom_data
*wdata
,
679 struct input_dev
*input
, unsigned char *data
)
682 case 0x00: /* Empty report */
684 case 0x02: /* Pen report */
685 wacom_i4_parse_pen_report(wdata
, input
, data
);
687 case 0x03: /* Features Report */
688 wdata
->features
= data
[2];
690 case 0x0C: /* Button report */
691 wacom_i4_parse_button_report(wdata
, input
, data
);
694 hid_err(hdev
, "Unknown report: %d,%d\n", data
[0], data
[1]);
699 static int wacom_raw_event(struct hid_device
*hdev
, struct hid_report
*report
,
700 u8
*raw_data
, int size
)
702 struct wacom_data
*wdata
= hid_get_drvdata(hdev
);
703 struct hid_input
*hidinput
;
704 struct input_dev
*input
;
705 unsigned char *data
= (unsigned char *) raw_data
;
709 if (!(hdev
->claimed
& HID_CLAIMED_INPUT
))
712 hidinput
= list_entry(hdev
->inputs
.next
, struct hid_input
, list
);
713 input
= hidinput
->input
;
715 switch (hdev
->product
) {
716 case USB_DEVICE_ID_WACOM_GRAPHIRE_BLUETOOTH
:
717 if (data
[0] == 0x03) {
718 return wacom_gr_parse_report(hdev
, wdata
, input
, data
);
720 hid_err(hdev
, "Unknown report: %d,%d size:%d\n",
721 data
[0], data
[1], size
);
725 case USB_DEVICE_ID_WACOM_INTUOS4_BLUETOOTH
:
730 wacom_i4_parse_report(hdev
, wdata
, input
, data
+ i
);
734 wacom_i4_parse_report(hdev
, wdata
, input
, data
+ i
);
736 wacom_i4_parse_report(hdev
, wdata
, input
, data
+ i
);
737 power_raw
= data
[i
+10];
738 if (power_raw
!= wdata
->power_raw
) {
739 wdata
->power_raw
= power_raw
;
740 wdata
->battery_capacity
= batcap_i4
[power_raw
& 0x07];
741 wdata
->bat_charging
= (power_raw
& 0x08) ? 1 : 0;
742 wdata
->ps_connected
= (power_raw
& 0x10) ? 1 : 0;
747 hid_err(hdev
, "Unknown report: %d,%d size:%d\n",
748 data
[0], data
[1], size
);
755 static int wacom_input_mapped(struct hid_device
*hdev
, struct hid_input
*hi
,
756 struct hid_field
*field
, struct hid_usage
*usage
, unsigned long **bit
,
759 struct input_dev
*input
= hi
->input
;
761 __set_bit(INPUT_PROP_POINTER
, input
->propbit
);
764 input
->evbit
[0] |= BIT(EV_KEY
) | BIT(EV_ABS
) | BIT(EV_REL
);
766 __set_bit(REL_WHEEL
, input
->relbit
);
768 __set_bit(BTN_TOOL_PEN
, input
->keybit
);
769 __set_bit(BTN_TOUCH
, input
->keybit
);
770 __set_bit(BTN_STYLUS
, input
->keybit
);
771 __set_bit(BTN_STYLUS2
, input
->keybit
);
772 __set_bit(BTN_LEFT
, input
->keybit
);
773 __set_bit(BTN_RIGHT
, input
->keybit
);
774 __set_bit(BTN_MIDDLE
, input
->keybit
);
777 input_set_capability(input
, EV_MSC
, MSC_SERIAL
);
779 __set_bit(BTN_0
, input
->keybit
);
780 __set_bit(BTN_1
, input
->keybit
);
781 __set_bit(BTN_TOOL_FINGER
, input
->keybit
);
783 /* Distance, rubber and mouse */
784 __set_bit(BTN_TOOL_RUBBER
, input
->keybit
);
785 __set_bit(BTN_TOOL_MOUSE
, input
->keybit
);
787 switch (hdev
->product
) {
788 case USB_DEVICE_ID_WACOM_GRAPHIRE_BLUETOOTH
:
789 input_set_abs_params(input
, ABS_X
, 0, 16704, 4, 0);
790 input_set_abs_params(input
, ABS_Y
, 0, 12064, 4, 0);
791 input_set_abs_params(input
, ABS_PRESSURE
, 0, 511, 0, 0);
792 input_set_abs_params(input
, ABS_DISTANCE
, 0, 32, 0, 0);
794 case USB_DEVICE_ID_WACOM_INTUOS4_BLUETOOTH
:
795 __set_bit(ABS_WHEEL
, input
->absbit
);
796 __set_bit(ABS_MISC
, input
->absbit
);
797 __set_bit(BTN_2
, input
->keybit
);
798 __set_bit(BTN_3
, input
->keybit
);
799 __set_bit(BTN_4
, input
->keybit
);
800 __set_bit(BTN_5
, input
->keybit
);
801 __set_bit(BTN_6
, input
->keybit
);
802 __set_bit(BTN_7
, input
->keybit
);
803 __set_bit(BTN_8
, input
->keybit
);
804 input_set_abs_params(input
, ABS_WHEEL
, 0, 71, 0, 0);
805 input_set_abs_params(input
, ABS_X
, 0, 40640, 4, 0);
806 input_set_abs_params(input
, ABS_Y
, 0, 25400, 4, 0);
807 input_set_abs_params(input
, ABS_PRESSURE
, 0, 2047, 0, 0);
808 input_set_abs_params(input
, ABS_DISTANCE
, 0, 63, 0, 0);
809 input_set_abs_params(input
, ABS_TILT_X
, 0, 127, 0, 0);
810 input_set_abs_params(input
, ABS_TILT_Y
, 0, 127, 0, 0);
817 static int wacom_probe(struct hid_device
*hdev
,
818 const struct hid_device_id
*id
)
820 struct wacom_data
*wdata
;
823 wdata
= kzalloc(sizeof(*wdata
), GFP_KERNEL
);
825 hid_err(hdev
, "can't alloc wacom descriptor\n");
829 hid_set_drvdata(hdev
, wdata
);
831 /* Parse the HID report now */
832 ret
= hid_parse(hdev
);
834 hid_err(hdev
, "parse failed\n");
838 ret
= hid_hw_start(hdev
, HID_CONNECT_DEFAULT
);
840 hid_err(hdev
, "hw start failed\n");
844 ret
= device_create_file(&hdev
->dev
, &dev_attr_speed
);
847 "can't create sysfs speed attribute err: %d\n", ret
);
849 #define OLED_INIT(OLED_ID) \
851 ret = device_create_file(&hdev->dev, \
852 &dev_attr_oled##OLED_ID##_img); \
855 "can't create sysfs oled attribute, err: %d\n", ret);\
868 wacom_set_features(hdev
, 1);
870 if (hdev
->product
== USB_DEVICE_ID_WACOM_INTUOS4_BLUETOOTH
) {
871 sprintf(hdev
->name
, "%s", "Wacom Intuos4 WL");
872 ret
= wacom_initialize_leds(hdev
);
875 "can't create led attribute, err: %d\n", ret
);
878 wdata
->battery
.properties
= wacom_battery_props
;
879 wdata
->battery
.num_properties
= ARRAY_SIZE(wacom_battery_props
);
880 wdata
->battery
.get_property
= wacom_battery_get_property
;
881 wdata
->battery
.name
= "wacom_battery";
882 wdata
->battery
.type
= POWER_SUPPLY_TYPE_BATTERY
;
883 wdata
->battery
.use_for_apm
= 0;
886 ret
= power_supply_register(&hdev
->dev
, &wdata
->battery
);
888 hid_err(hdev
, "can't create sysfs battery attribute, err: %d\n",
893 power_supply_powers(&wdata
->battery
, &hdev
->dev
);
895 wdata
->ac
.properties
= wacom_ac_props
;
896 wdata
->ac
.num_properties
= ARRAY_SIZE(wacom_ac_props
);
897 wdata
->ac
.get_property
= wacom_ac_get_property
;
898 wdata
->ac
.name
= "wacom_ac";
899 wdata
->ac
.type
= POWER_SUPPLY_TYPE_MAINS
;
900 wdata
->ac
.use_for_apm
= 0;
902 ret
= power_supply_register(&hdev
->dev
, &wdata
->ac
);
905 "can't create ac battery attribute, err: %d\n", ret
);
909 power_supply_powers(&wdata
->ac
, &hdev
->dev
);
913 power_supply_unregister(&wdata
->battery
);
915 wacom_destroy_leds(hdev
);
916 device_remove_file(&hdev
->dev
, &dev_attr_oled0_img
);
917 device_remove_file(&hdev
->dev
, &dev_attr_oled1_img
);
918 device_remove_file(&hdev
->dev
, &dev_attr_oled2_img
);
919 device_remove_file(&hdev
->dev
, &dev_attr_oled3_img
);
920 device_remove_file(&hdev
->dev
, &dev_attr_oled4_img
);
921 device_remove_file(&hdev
->dev
, &dev_attr_oled5_img
);
922 device_remove_file(&hdev
->dev
, &dev_attr_oled6_img
);
923 device_remove_file(&hdev
->dev
, &dev_attr_oled7_img
);
924 device_remove_file(&hdev
->dev
, &dev_attr_speed
);
931 static void wacom_remove(struct hid_device
*hdev
)
933 struct wacom_data
*wdata
= hid_get_drvdata(hdev
);
935 wacom_destroy_leds(hdev
);
936 device_remove_file(&hdev
->dev
, &dev_attr_oled0_img
);
937 device_remove_file(&hdev
->dev
, &dev_attr_oled1_img
);
938 device_remove_file(&hdev
->dev
, &dev_attr_oled2_img
);
939 device_remove_file(&hdev
->dev
, &dev_attr_oled3_img
);
940 device_remove_file(&hdev
->dev
, &dev_attr_oled4_img
);
941 device_remove_file(&hdev
->dev
, &dev_attr_oled5_img
);
942 device_remove_file(&hdev
->dev
, &dev_attr_oled6_img
);
943 device_remove_file(&hdev
->dev
, &dev_attr_oled7_img
);
944 device_remove_file(&hdev
->dev
, &dev_attr_speed
);
947 power_supply_unregister(&wdata
->battery
);
948 power_supply_unregister(&wdata
->ac
);
949 kfree(hid_get_drvdata(hdev
));
952 static const struct hid_device_id wacom_devices
[] = {
953 { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_WACOM
, USB_DEVICE_ID_WACOM_GRAPHIRE_BLUETOOTH
) },
954 { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_WACOM
, USB_DEVICE_ID_WACOM_INTUOS4_BLUETOOTH
) },
958 MODULE_DEVICE_TABLE(hid
, wacom_devices
);
960 static struct hid_driver wacom_driver
= {
962 .id_table
= wacom_devices
,
963 .probe
= wacom_probe
,
964 .remove
= wacom_remove
,
965 .raw_event
= wacom_raw_event
,
966 .input_mapped
= wacom_input_mapped
,
968 module_hid_driver(wacom_driver
);
970 MODULE_DESCRIPTION("Driver for Wacom Graphire Bluetooth and Wacom Intuos4 WL");
971 MODULE_LICENSE("GPL");