blob: 37888c3f39bae200a68553c0e87985b3a0fd3f59 [file] [log] [blame]
Ping Cheng3bea7332006-07-13 18:01:36 -07001/*
Dmitry Torokhov4104d132007-05-07 16:16:29 -04002 * drivers/input/tablet/wacom_sys.c
Ping Cheng3bea7332006-07-13 18:01:36 -07003 *
Ping Cheng232f5692009-12-15 00:35:24 -08004 * USB Wacom tablet support - system specific code
Ping Cheng3bea7332006-07-13 18:01:36 -07005 */
6
7/*
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 */
13
Ping Cheng3bea7332006-07-13 18:01:36 -070014#include "wacom_wac.h"
Dmitry Torokhov51269fe2010-03-19 22:18:15 -070015#include "wacom.h"
Benjamin Tissoiresf54bc612014-07-24 12:52:00 -070016#include <linux/hid.h>
Ping Cheng3bea7332006-07-13 18:01:36 -070017
Ping Chenga417ea42011-08-16 00:17:56 -070018#define WAC_MSG_RETRIES 5
Ping Cheng3bea7332006-07-13 18:01:36 -070019
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -070020#define WAC_CMD_LED_CONTROL 0x20
21#define WAC_CMD_ICON_START 0x21
22#define WAC_CMD_ICON_XFER 0x23
23#define WAC_CMD_RETRIES 10
24
Benjamin Tissoires27b20a92014-07-24 12:56:22 -070025static int wacom_get_report(struct hid_device *hdev, u8 type, u8 id,
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -070026 void *buf, size_t size, unsigned int retries)
Ping Cheng3bea7332006-07-13 18:01:36 -070027{
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -070028 int retval;
29
30 do {
Benjamin Tissoires27b20a92014-07-24 12:56:22 -070031 retval = hid_hw_raw_request(hdev, id, buf, size, type,
32 HID_REQ_GET_REPORT);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -070033 } while ((retval == -ETIMEDOUT || retval == -EPIPE) && --retries);
34
35 return retval;
Ping Cheng3bea7332006-07-13 18:01:36 -070036}
37
Benjamin Tissoires27b20a92014-07-24 12:56:22 -070038static int wacom_set_report(struct hid_device *hdev, u8 type, u8 id,
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -070039 void *buf, size_t size, unsigned int retries)
Ping Cheng3bea7332006-07-13 18:01:36 -070040{
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -070041 int retval;
42
43 do {
Benjamin Tissoires27b20a92014-07-24 12:56:22 -070044 retval = hid_hw_raw_request(hdev, id, buf, size, type,
45 HID_REQ_SET_REPORT);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -070046 } while ((retval == -ETIMEDOUT || retval == -EPIPE) && --retries);
47
48 return retval;
Ping Cheng3bea7332006-07-13 18:01:36 -070049}
50
Benjamin Tissoires29b47392014-07-24 12:52:23 -070051static int wacom_raw_event(struct hid_device *hdev, struct hid_report *report,
52 u8 *raw_data, int size)
Ping Cheng3bea7332006-07-13 18:01:36 -070053{
Benjamin Tissoires29b47392014-07-24 12:52:23 -070054 struct wacom *wacom = hid_get_drvdata(hdev);
Ping Cheng3bea7332006-07-13 18:01:36 -070055
Benjamin Tissoires29b47392014-07-24 12:52:23 -070056 if (size > WACOM_PKGLEN_MAX)
57 return 1;
Ping Cheng3bea7332006-07-13 18:01:36 -070058
Benjamin Tissoires29b47392014-07-24 12:52:23 -070059 memcpy(wacom->wacom_wac.data, raw_data, size);
Ping Cheng3bea7332006-07-13 18:01:36 -070060
Benjamin Tissoires29b47392014-07-24 12:52:23 -070061 wacom_wac_irq(&wacom->wacom_wac, size);
62
63 return 0;
Ping Cheng3bea7332006-07-13 18:01:36 -070064}
65
Ping Cheng3bea7332006-07-13 18:01:36 -070066static int wacom_open(struct input_dev *dev)
67{
Dmitry Torokhov7791bda2007-04-12 01:34:39 -040068 struct wacom *wacom = input_get_drvdata(dev);
Benjamin Tissoires29b47392014-07-24 12:52:23 -070069 int retval;
Ping Cheng3bea7332006-07-13 18:01:36 -070070
Oliver Neukume7224092008-04-15 01:31:57 -040071 mutex_lock(&wacom->lock);
Benjamin Tissoires29b47392014-07-24 12:52:23 -070072 retval = hid_hw_open(wacom->hdev);
Oliver Neukume7224092008-04-15 01:31:57 -040073 mutex_unlock(&wacom->lock);
Benjamin Tissoires29b47392014-07-24 12:52:23 -070074
Dmitry Torokhovf6cd3782010-10-04 21:46:11 -070075 return retval;
Ping Cheng3bea7332006-07-13 18:01:36 -070076}
77
78static void wacom_close(struct input_dev *dev)
79{
Dmitry Torokhov7791bda2007-04-12 01:34:39 -040080 struct wacom *wacom = input_get_drvdata(dev);
Ping Cheng3bea7332006-07-13 18:01:36 -070081
Oliver Neukume7224092008-04-15 01:31:57 -040082 mutex_lock(&wacom->lock);
Benjamin Tissoires29b47392014-07-24 12:52:23 -070083 hid_hw_close(wacom->hdev);
Oliver Neukume7224092008-04-15 01:31:57 -040084 mutex_unlock(&wacom->lock);
Ping Cheng3bea7332006-07-13 18:01:36 -070085}
86
Chris Bagwell16bf2882012-03-25 23:26:20 -070087/*
Benjamin Tissoires198fdee2014-07-24 13:03:05 -070088 * Calculate the resolution of the X or Y axis using hidinput_calc_abs_res.
Jason Gerecke115d5e12012-10-03 17:24:32 -070089 */
90static int wacom_calc_hid_res(int logical_extents, int physical_extents,
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -070091 unsigned unit, int exponent)
Jason Gerecke115d5e12012-10-03 17:24:32 -070092{
Benjamin Tissoires198fdee2014-07-24 13:03:05 -070093 struct hid_field field = {
94 .logical_maximum = logical_extents,
95 .physical_maximum = physical_extents,
96 .unit = unit,
97 .unit_exponent = exponent,
98 };
Jason Gerecke115d5e12012-10-03 17:24:32 -070099
Benjamin Tissoires198fdee2014-07-24 13:03:05 -0700100 return hidinput_calc_abs_res(&field, ABS_X);
Jason Gerecke115d5e12012-10-03 17:24:32 -0700101}
102
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700103static void wacom_feature_mapping(struct hid_device *hdev,
104 struct hid_field *field, struct hid_usage *usage)
Chris Bagwell41343612011-10-26 22:32:52 -0700105{
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700106 struct wacom *wacom = hid_get_drvdata(hdev);
107 struct wacom_features *features = &wacom->wacom_wac.features;
Chris Bagwell41343612011-10-26 22:32:52 -0700108
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700109 switch (usage->hid) {
110 case HID_DG_CONTACTMAX:
111 /* leave touch_max as is if predefined */
112 if (!features->touch_max)
113 features->touch_max = field->value[0];
114 break;
Ping Chengf393ee22012-04-29 21:09:17 -0700115 }
116}
117
Chris Bagwell428f8582011-10-26 22:26:59 -0700118/*
119 * Interface Descriptor of wacom devices can be incomplete and
120 * inconsistent so wacom_features table is used to store stylus
121 * device's packet lengths, various maximum values, and tablet
122 * resolution based on product ID's.
123 *
124 * For devices that contain 2 interfaces, wacom_features table is
125 * inaccurate for the touch interface. Since the Interface Descriptor
126 * for touch interfaces has pretty complete data, this function exists
127 * to query tablet for this missing information instead of hard coding in
128 * an additional table.
129 *
130 * A typical Interface Descriptor for a stylus will contain a
131 * boot mouse application collection that is not of interest and this
132 * function will ignore it.
133 *
134 * It also contains a digitizer application collection that also is not
135 * of interest since any information it contains would be duplicate
136 * of what is in wacom_features. Usually it defines a report of an array
137 * of bytes that could be used as max length of the stylus packet returned.
138 * If it happens to define a Digitizer-Stylus Physical Collection then
139 * the X and Y logical values contain valid data but it is ignored.
140 *
141 * A typical Interface Descriptor for a touch interface will contain a
142 * Digitizer-Finger Physical Collection which will define both logical
143 * X/Y maximum as well as the physical size of tablet. Since touch
144 * interfaces haven't supported pressure or distance, this is enough
145 * information to override invalid values in the wacom_features table.
Chris Bagwell41343612011-10-26 22:32:52 -0700146 *
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700147 * Intuos5 touch interface and 3rd gen Bamboo Touch do not contain useful
148 * data. We deal with them after returning from this function.
Chris Bagwell428f8582011-10-26 22:26:59 -0700149 */
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700150static void wacom_usage_mapping(struct hid_device *hdev,
151 struct hid_field *field, struct hid_usage *usage)
152{
153 struct wacom *wacom = hid_get_drvdata(hdev);
154 struct wacom_features *features = &wacom->wacom_wac.features;
155 bool finger = (field->logical == HID_DG_FINGER) ||
156 (field->physical == HID_DG_FINGER);
157 bool pen = (field->logical == HID_DG_STYLUS) ||
158 (field->physical == HID_DG_STYLUS);
159
160 /*
161 * Requiring Stylus Usage will ignore boot mouse
162 * X/Y values and some cases of invalid Digitizer X/Y
163 * values commonly reported.
164 */
165 if (!pen && !finger)
166 return;
167
168 if (finger && !features->touch_max)
169 /* touch device at least supports one touch point */
170 features->touch_max = 1;
171
172 switch (usage->hid) {
173 case HID_GD_X:
174 features->x_max = field->logical_maximum;
175 if (finger) {
176 features->device_type = BTN_TOOL_FINGER;
177 features->x_phy = field->physical_maximum;
178 if (features->type != BAMBOO_PT) {
179 features->unit = field->unit;
180 features->unitExpo = field->unit_exponent;
181 }
182 } else {
183 features->device_type = BTN_TOOL_PEN;
184 }
185 break;
186 case HID_GD_Y:
187 features->y_max = field->logical_maximum;
188 if (finger) {
189 features->y_phy = field->physical_maximum;
190 if (features->type != BAMBOO_PT) {
191 features->unit = field->unit;
192 features->unitExpo = field->unit_exponent;
193 }
194 }
195 break;
196 case HID_DG_TIPPRESSURE:
197 if (pen)
198 features->pressure_max = field->logical_maximum;
199 break;
200 }
201}
202
203static void wacom_parse_hid(struct hid_device *hdev,
Ping Chengec67bbe2009-12-15 00:35:24 -0800204 struct wacom_features *features)
Ping Cheng545f4e92008-11-24 11:44:27 -0500205{
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700206 struct hid_report_enum *rep_enum;
207 struct hid_report *hreport;
208 int i, j;
Ping Cheng545f4e92008-11-24 11:44:27 -0500209
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700210 /* check features first */
211 rep_enum = &hdev->report_enum[HID_FEATURE_REPORT];
212 list_for_each_entry(hreport, &rep_enum->report_list, list) {
213 for (i = 0; i < hreport->maxfield; i++) {
214 /* Ignore if report count is out of bounds. */
215 if (hreport->field[i]->report_count < 1)
216 continue;
Ping Cheng545f4e92008-11-24 11:44:27 -0500217
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700218 for (j = 0; j < hreport->field[i]->maxusage; j++) {
219 wacom_feature_mapping(hdev, hreport->field[i],
220 hreport->field[i]->usage + j);
Ping Cheng545f4e92008-11-24 11:44:27 -0500221 }
Ping Cheng545f4e92008-11-24 11:44:27 -0500222 }
223 }
224
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700225 /* now check the input usages */
226 rep_enum = &hdev->report_enum[HID_INPUT_REPORT];
227 list_for_each_entry(hreport, &rep_enum->report_list, list) {
228
229 if (!hreport->maxfield)
230 continue;
231
232 for (i = 0; i < hreport->maxfield; i++)
233 for (j = 0; j < hreport->field[i]->maxusage; j++)
234 wacom_usage_mapping(hdev, hreport->field[i],
235 hreport->field[i]->usage + j);
236 }
Ping Cheng545f4e92008-11-24 11:44:27 -0500237}
238
Benjamin Tissoires27b20a92014-07-24 12:56:22 -0700239static int wacom_set_device_mode(struct hid_device *hdev, int report_id,
240 int length, int mode)
Dmitry Torokhov3b7307c2009-08-20 21:41:04 -0700241{
242 unsigned char *rep_data;
Jason Gereckefe494bc2012-10-03 17:25:35 -0700243 int error = -ENOMEM, limit = 0;
Dmitry Torokhov3b7307c2009-08-20 21:41:04 -0700244
Jason Gereckefe494bc2012-10-03 17:25:35 -0700245 rep_data = kzalloc(length, GFP_KERNEL);
Dmitry Torokhov3b7307c2009-08-20 21:41:04 -0700246 if (!rep_data)
Ping Chengec67bbe2009-12-15 00:35:24 -0800247 return error;
Dmitry Torokhov3b7307c2009-08-20 21:41:04 -0700248
Jason Gereckefe494bc2012-10-03 17:25:35 -0700249 do {
Chris Bagwell9937c022013-01-23 19:37:34 -0800250 rep_data[0] = report_id;
251 rep_data[1] = mode;
252
Benjamin Tissoires27b20a92014-07-24 12:56:22 -0700253 error = wacom_set_report(hdev, HID_FEATURE_REPORT,
Jason Gereckefe494bc2012-10-03 17:25:35 -0700254 report_id, rep_data, length, 1);
Benjamin Tissoires3cb83152014-07-24 12:47:47 -0700255 if (error >= 0)
Benjamin Tissoires27b20a92014-07-24 12:56:22 -0700256 error = wacom_get_report(hdev, HID_FEATURE_REPORT,
Benjamin Tissoires3cb83152014-07-24 12:47:47 -0700257 report_id, rep_data, length, 1);
Jason Gereckefe494bc2012-10-03 17:25:35 -0700258 } while ((error < 0 || rep_data[1] != mode) && limit++ < WAC_MSG_RETRIES);
Dmitry Torokhov3b7307c2009-08-20 21:41:04 -0700259
260 kfree(rep_data);
261
262 return error < 0 ? error : 0;
263}
264
Jason Gereckefe494bc2012-10-03 17:25:35 -0700265/*
266 * Switch the tablet into its most-capable mode. Wacom tablets are
267 * typically configured to power-up in a mode which sends mouse-like
268 * reports to the OS. To get absolute position, pressure data, etc.
269 * from the tablet, it is necessary to switch the tablet out of this
270 * mode and into one which sends the full range of tablet data.
271 */
Benjamin Tissoires27b20a92014-07-24 12:56:22 -0700272static int wacom_query_tablet_data(struct hid_device *hdev,
273 struct wacom_features *features)
Jason Gereckefe494bc2012-10-03 17:25:35 -0700274{
275 if (features->device_type == BTN_TOOL_FINGER) {
276 if (features->type > TABLETPC) {
277 /* MT Tablet PC touch */
Benjamin Tissoires27b20a92014-07-24 12:56:22 -0700278 return wacom_set_device_mode(hdev, 3, 4, 4);
Jason Gereckefe494bc2012-10-03 17:25:35 -0700279 }
Jason Gerecke36d3c512013-09-20 09:47:35 -0700280 else if (features->type == WACOM_24HDT || features->type == CINTIQ_HYBRID) {
Benjamin Tissoires27b20a92014-07-24 12:56:22 -0700281 return wacom_set_device_mode(hdev, 18, 3, 2);
Jason Gereckeb1e42792012-10-21 00:38:04 -0700282 }
Jason Gereckefe494bc2012-10-03 17:25:35 -0700283 } else if (features->device_type == BTN_TOOL_PEN) {
284 if (features->type <= BAMBOO_PT && features->type != WIRELESS) {
Benjamin Tissoires27b20a92014-07-24 12:56:22 -0700285 return wacom_set_device_mode(hdev, 2, 2, 2);
Jason Gereckefe494bc2012-10-03 17:25:35 -0700286 }
287 }
288
289 return 0;
290}
291
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700292static void wacom_retrieve_hid_descriptor(struct hid_device *hdev,
Ping Cheng19635182012-04-29 21:09:18 -0700293 struct wacom_features *features)
Ping Chengec67bbe2009-12-15 00:35:24 -0800294{
Benjamin Tissoires27b20a92014-07-24 12:56:22 -0700295 struct wacom *wacom = hid_get_drvdata(hdev);
296 struct usb_interface *intf = wacom->intf;
Ping Chengec67bbe2009-12-15 00:35:24 -0800297
Henrik Rydbergfed87e62010-09-05 12:25:11 -0700298 /* default features */
Ping Chengec67bbe2009-12-15 00:35:24 -0800299 features->device_type = BTN_TOOL_PEN;
Henrik Rydbergfed87e62010-09-05 12:25:11 -0700300 features->x_fuzz = 4;
301 features->y_fuzz = 4;
302 features->pressure_fuzz = 0;
303 features->distance_fuzz = 0;
Ping Chengec67bbe2009-12-15 00:35:24 -0800304
Chris Bagwelld3825d52012-03-25 23:26:11 -0700305 /*
306 * The wireless device HID is basic and layout conflicts with
307 * other tablets (monitor and touch interface can look like pen).
308 * Skip the query for this type and modify defaults based on
309 * interface number.
310 */
311 if (features->type == WIRELESS) {
312 if (intf->cur_altsetting->desc.bInterfaceNumber == 0) {
313 features->device_type = 0;
314 } else if (intf->cur_altsetting->desc.bInterfaceNumber == 2) {
Ping Chengadad0042012-06-28 16:48:17 -0700315 features->device_type = BTN_TOOL_FINGER;
Chris Bagwelld3825d52012-03-25 23:26:11 -0700316 features->pktlen = WACOM_PKGLEN_BBTOUCH3;
317 }
318 }
319
Ping Cheng19635182012-04-29 21:09:18 -0700320 /* only devices that support touch need to retrieve the info */
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700321 if (features->type < BAMBOO_PT)
322 return;
Ping Chengec67bbe2009-12-15 00:35:24 -0800323
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700324 wacom_parse_hid(hdev, features);
Ping Chengec67bbe2009-12-15 00:35:24 -0800325}
326
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700327struct wacom_hdev_data {
Ping Cheng4492eff2010-03-19 22:18:15 -0700328 struct list_head list;
329 struct kref kref;
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700330 struct hid_device *dev;
Ping Cheng4492eff2010-03-19 22:18:15 -0700331 struct wacom_shared shared;
332};
333
334static LIST_HEAD(wacom_udev_list);
335static DEFINE_MUTEX(wacom_udev_list_lock);
336
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700337static bool wacom_are_sibling(struct hid_device *hdev,
338 struct hid_device *sibling)
Jason Gereckeaea2bf62012-10-21 00:38:03 -0700339{
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700340 struct wacom *wacom = hid_get_drvdata(hdev);
341 struct wacom_features *features = &wacom->wacom_wac.features;
342 int vid = features->oVid;
343 int pid = features->oPid;
344 int n1,n2;
Jason Gereckeaea2bf62012-10-21 00:38:03 -0700345
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700346 if (vid == 0 && pid == 0) {
347 vid = hdev->vendor;
348 pid = hdev->product;
Jason Gereckeaea2bf62012-10-21 00:38:03 -0700349 }
350
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700351 if (vid != sibling->vendor || pid != sibling->product)
352 return false;
353
354 /* Compare the physical path. */
355 n1 = strrchr(hdev->phys, '.') - hdev->phys;
356 n2 = strrchr(sibling->phys, '.') - sibling->phys;
357 if (n1 != n2 || n1 <= 0 || n2 <= 0)
358 return false;
359
360 return !strncmp(hdev->phys, sibling->phys, n1);
Jason Gereckeaea2bf62012-10-21 00:38:03 -0700361}
362
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700363static struct wacom_hdev_data *wacom_get_hdev_data(struct hid_device *hdev)
Ping Cheng4492eff2010-03-19 22:18:15 -0700364{
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700365 struct wacom_hdev_data *data;
Ping Cheng4492eff2010-03-19 22:18:15 -0700366
367 list_for_each_entry(data, &wacom_udev_list, list) {
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700368 if (wacom_are_sibling(hdev, data->dev)) {
Ping Cheng4492eff2010-03-19 22:18:15 -0700369 kref_get(&data->kref);
370 return data;
371 }
372 }
373
374 return NULL;
375}
376
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700377static int wacom_add_shared_data(struct hid_device *hdev)
Ping Cheng4492eff2010-03-19 22:18:15 -0700378{
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700379 struct wacom *wacom = hid_get_drvdata(hdev);
380 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
381 struct wacom_hdev_data *data;
Ping Cheng4492eff2010-03-19 22:18:15 -0700382 int retval = 0;
383
384 mutex_lock(&wacom_udev_list_lock);
385
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700386 data = wacom_get_hdev_data(hdev);
Ping Cheng4492eff2010-03-19 22:18:15 -0700387 if (!data) {
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700388 data = kzalloc(sizeof(struct wacom_hdev_data), GFP_KERNEL);
Ping Cheng4492eff2010-03-19 22:18:15 -0700389 if (!data) {
390 retval = -ENOMEM;
391 goto out;
392 }
393
394 kref_init(&data->kref);
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700395 data->dev = hdev;
Ping Cheng4492eff2010-03-19 22:18:15 -0700396 list_add_tail(&data->list, &wacom_udev_list);
397 }
398
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700399 wacom_wac->shared = &data->shared;
Ping Cheng4492eff2010-03-19 22:18:15 -0700400
401out:
402 mutex_unlock(&wacom_udev_list_lock);
403 return retval;
404}
405
406static void wacom_release_shared_data(struct kref *kref)
407{
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700408 struct wacom_hdev_data *data =
409 container_of(kref, struct wacom_hdev_data, kref);
Ping Cheng4492eff2010-03-19 22:18:15 -0700410
411 mutex_lock(&wacom_udev_list_lock);
412 list_del(&data->list);
413 mutex_unlock(&wacom_udev_list_lock);
414
415 kfree(data);
416}
417
418static void wacom_remove_shared_data(struct wacom_wac *wacom)
419{
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700420 struct wacom_hdev_data *data;
Ping Cheng4492eff2010-03-19 22:18:15 -0700421
422 if (wacom->shared) {
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700423 data = container_of(wacom->shared, struct wacom_hdev_data, shared);
Ping Cheng4492eff2010-03-19 22:18:15 -0700424 kref_put(&data->kref, wacom_release_shared_data);
425 wacom->shared = NULL;
426 }
427}
428
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700429static int wacom_led_control(struct wacom *wacom)
430{
431 unsigned char *buf;
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700432 int retval;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700433
434 buf = kzalloc(9, GFP_KERNEL);
435 if (!buf)
436 return -ENOMEM;
437
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700438 if (wacom->wacom_wac.features.type >= INTUOS5S &&
Ping Cheng9a35c412013-09-20 09:51:56 -0700439 wacom->wacom_wac.features.type <= INTUOSPL) {
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700440 /*
441 * Touch Ring and crop mark LED luminance may take on
442 * one of four values:
443 * 0 = Low; 1 = Medium; 2 = High; 3 = Off
444 */
445 int ring_led = wacom->led.select[0] & 0x03;
446 int ring_lum = (((wacom->led.llv & 0x60) >> 5) - 1) & 0x03;
447 int crop_lum = 0;
Ping Cheng09e7d942011-10-04 23:51:14 -0700448
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700449 buf[0] = WAC_CMD_LED_CONTROL;
450 buf[1] = (crop_lum << 4) | (ring_lum << 2) | (ring_led);
451 }
452 else {
453 int led = wacom->led.select[0] | 0x4;
Ping Cheng09e7d942011-10-04 23:51:14 -0700454
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700455 if (wacom->wacom_wac.features.type == WACOM_21UX2 ||
456 wacom->wacom_wac.features.type == WACOM_24HD)
457 led |= (wacom->led.select[1] << 4) | 0x40;
458
459 buf[0] = WAC_CMD_LED_CONTROL;
460 buf[1] = led;
461 buf[2] = wacom->led.llv;
462 buf[3] = wacom->led.hlv;
463 buf[4] = wacom->led.img_lum;
464 }
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700465
Benjamin Tissoires27b20a92014-07-24 12:56:22 -0700466 retval = wacom_set_report(wacom->hdev, HID_FEATURE_REPORT,
467 WAC_CMD_LED_CONTROL, buf, 9, WAC_CMD_RETRIES);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700468 kfree(buf);
469
470 return retval;
471}
472
473static int wacom_led_putimage(struct wacom *wacom, int button_id, const void *img)
474{
475 unsigned char *buf;
476 int i, retval;
477
478 buf = kzalloc(259, GFP_KERNEL);
479 if (!buf)
480 return -ENOMEM;
481
482 /* Send 'start' command */
483 buf[0] = WAC_CMD_ICON_START;
484 buf[1] = 1;
Benjamin Tissoires27b20a92014-07-24 12:56:22 -0700485 retval = wacom_set_report(wacom->hdev, HID_FEATURE_REPORT,
486 WAC_CMD_ICON_START, buf, 2, WAC_CMD_RETRIES);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700487 if (retval < 0)
488 goto out;
489
490 buf[0] = WAC_CMD_ICON_XFER;
491 buf[1] = button_id & 0x07;
492 for (i = 0; i < 4; i++) {
493 buf[2] = i;
494 memcpy(buf + 3, img + i * 256, 256);
495
Benjamin Tissoires27b20a92014-07-24 12:56:22 -0700496 retval = wacom_set_report(wacom->hdev, HID_FEATURE_REPORT,
497 WAC_CMD_ICON_XFER,
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700498 buf, 259, WAC_CMD_RETRIES);
499 if (retval < 0)
500 break;
501 }
502
503 /* Send 'stop' */
504 buf[0] = WAC_CMD_ICON_START;
505 buf[1] = 0;
Benjamin Tissoires27b20a92014-07-24 12:56:22 -0700506 wacom_set_report(wacom->hdev, HID_FEATURE_REPORT, WAC_CMD_ICON_START,
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700507 buf, 2, WAC_CMD_RETRIES);
508
509out:
510 kfree(buf);
511 return retval;
512}
513
Ping Cheng09e7d942011-10-04 23:51:14 -0700514static ssize_t wacom_led_select_store(struct device *dev, int set_id,
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700515 const char *buf, size_t count)
516{
Benjamin Tissoiresc31a4082014-07-24 12:59:45 -0700517 struct hid_device *hdev = container_of(dev, struct hid_device, dev);
Benjamin Tissoires29b47392014-07-24 12:52:23 -0700518 struct wacom *wacom = hid_get_drvdata(hdev);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700519 unsigned int id;
520 int err;
521
522 err = kstrtouint(buf, 10, &id);
523 if (err)
524 return err;
525
526 mutex_lock(&wacom->lock);
527
Ping Cheng09e7d942011-10-04 23:51:14 -0700528 wacom->led.select[set_id] = id & 0x3;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700529 err = wacom_led_control(wacom);
530
531 mutex_unlock(&wacom->lock);
532
533 return err < 0 ? err : count;
534}
535
Ping Cheng09e7d942011-10-04 23:51:14 -0700536#define DEVICE_LED_SELECT_ATTR(SET_ID) \
537static ssize_t wacom_led##SET_ID##_select_store(struct device *dev, \
538 struct device_attribute *attr, const char *buf, size_t count) \
539{ \
540 return wacom_led_select_store(dev, SET_ID, buf, count); \
541} \
Ping Cheng04c59ab2011-10-04 23:51:49 -0700542static ssize_t wacom_led##SET_ID##_select_show(struct device *dev, \
543 struct device_attribute *attr, char *buf) \
544{ \
Benjamin Tissoiresc31a4082014-07-24 12:59:45 -0700545 struct hid_device *hdev = container_of(dev, struct hid_device, dev);\
Benjamin Tissoires29b47392014-07-24 12:52:23 -0700546 struct wacom *wacom = hid_get_drvdata(hdev); \
Ping Cheng04c59ab2011-10-04 23:51:49 -0700547 return snprintf(buf, 2, "%d\n", wacom->led.select[SET_ID]); \
548} \
549static DEVICE_ATTR(status_led##SET_ID##_select, S_IWUSR | S_IRUSR, \
550 wacom_led##SET_ID##_select_show, \
Ping Cheng09e7d942011-10-04 23:51:14 -0700551 wacom_led##SET_ID##_select_store)
552
553DEVICE_LED_SELECT_ATTR(0);
554DEVICE_LED_SELECT_ATTR(1);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700555
556static ssize_t wacom_luminance_store(struct wacom *wacom, u8 *dest,
557 const char *buf, size_t count)
558{
559 unsigned int value;
560 int err;
561
562 err = kstrtouint(buf, 10, &value);
563 if (err)
564 return err;
565
566 mutex_lock(&wacom->lock);
567
568 *dest = value & 0x7f;
569 err = wacom_led_control(wacom);
570
571 mutex_unlock(&wacom->lock);
572
573 return err < 0 ? err : count;
574}
575
576#define DEVICE_LUMINANCE_ATTR(name, field) \
577static ssize_t wacom_##name##_luminance_store(struct device *dev, \
578 struct device_attribute *attr, const char *buf, size_t count) \
579{ \
Benjamin Tissoiresc31a4082014-07-24 12:59:45 -0700580 struct hid_device *hdev = container_of(dev, struct hid_device, dev);\
Benjamin Tissoires29b47392014-07-24 12:52:23 -0700581 struct wacom *wacom = hid_get_drvdata(hdev); \
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700582 \
583 return wacom_luminance_store(wacom, &wacom->led.field, \
584 buf, count); \
585} \
586static DEVICE_ATTR(name##_luminance, S_IWUSR, \
587 NULL, wacom_##name##_luminance_store)
588
589DEVICE_LUMINANCE_ATTR(status0, llv);
590DEVICE_LUMINANCE_ATTR(status1, hlv);
591DEVICE_LUMINANCE_ATTR(buttons, img_lum);
592
593static ssize_t wacom_button_image_store(struct device *dev, int button_id,
594 const char *buf, size_t count)
595{
Benjamin Tissoiresc31a4082014-07-24 12:59:45 -0700596 struct hid_device *hdev = container_of(dev, struct hid_device, dev);
Benjamin Tissoires29b47392014-07-24 12:52:23 -0700597 struct wacom *wacom = hid_get_drvdata(hdev);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700598 int err;
599
600 if (count != 1024)
601 return -EINVAL;
602
603 mutex_lock(&wacom->lock);
604
605 err = wacom_led_putimage(wacom, button_id, buf);
606
607 mutex_unlock(&wacom->lock);
608
609 return err < 0 ? err : count;
610}
611
612#define DEVICE_BTNIMG_ATTR(BUTTON_ID) \
613static ssize_t wacom_btnimg##BUTTON_ID##_store(struct device *dev, \
614 struct device_attribute *attr, const char *buf, size_t count) \
615{ \
616 return wacom_button_image_store(dev, BUTTON_ID, buf, count); \
617} \
618static DEVICE_ATTR(button##BUTTON_ID##_rawimg, S_IWUSR, \
619 NULL, wacom_btnimg##BUTTON_ID##_store)
620
621DEVICE_BTNIMG_ATTR(0);
622DEVICE_BTNIMG_ATTR(1);
623DEVICE_BTNIMG_ATTR(2);
624DEVICE_BTNIMG_ATTR(3);
625DEVICE_BTNIMG_ATTR(4);
626DEVICE_BTNIMG_ATTR(5);
627DEVICE_BTNIMG_ATTR(6);
628DEVICE_BTNIMG_ATTR(7);
629
Ping Cheng09e7d942011-10-04 23:51:14 -0700630static struct attribute *cintiq_led_attrs[] = {
631 &dev_attr_status_led0_select.attr,
632 &dev_attr_status_led1_select.attr,
633 NULL
634};
635
636static struct attribute_group cintiq_led_attr_group = {
637 .name = "wacom_led",
638 .attrs = cintiq_led_attrs,
639};
640
641static struct attribute *intuos4_led_attrs[] = {
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700642 &dev_attr_status0_luminance.attr,
643 &dev_attr_status1_luminance.attr,
Ping Cheng09e7d942011-10-04 23:51:14 -0700644 &dev_attr_status_led0_select.attr,
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700645 &dev_attr_buttons_luminance.attr,
646 &dev_attr_button0_rawimg.attr,
647 &dev_attr_button1_rawimg.attr,
648 &dev_attr_button2_rawimg.attr,
649 &dev_attr_button3_rawimg.attr,
650 &dev_attr_button4_rawimg.attr,
651 &dev_attr_button5_rawimg.attr,
652 &dev_attr_button6_rawimg.attr,
653 &dev_attr_button7_rawimg.attr,
654 NULL
655};
656
Ping Cheng09e7d942011-10-04 23:51:14 -0700657static struct attribute_group intuos4_led_attr_group = {
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700658 .name = "wacom_led",
Ping Cheng09e7d942011-10-04 23:51:14 -0700659 .attrs = intuos4_led_attrs,
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700660};
661
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700662static struct attribute *intuos5_led_attrs[] = {
663 &dev_attr_status0_luminance.attr,
664 &dev_attr_status_led0_select.attr,
665 NULL
666};
667
668static struct attribute_group intuos5_led_attr_group = {
669 .name = "wacom_led",
670 .attrs = intuos5_led_attrs,
671};
672
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700673static int wacom_initialize_leds(struct wacom *wacom)
674{
675 int error;
676
Ping Cheng09e7d942011-10-04 23:51:14 -0700677 /* Initialize default values */
678 switch (wacom->wacom_wac.features.type) {
Jason Gereckea19fc982012-06-12 00:27:53 -0700679 case INTUOS4S:
Ping Cheng09e7d942011-10-04 23:51:14 -0700680 case INTUOS4:
681 case INTUOS4L:
682 wacom->led.select[0] = 0;
683 wacom->led.select[1] = 0;
Ping Chengf4fa9a62011-10-04 23:49:42 -0700684 wacom->led.llv = 10;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700685 wacom->led.hlv = 20;
686 wacom->led.img_lum = 10;
Benjamin Tissoiresc31a4082014-07-24 12:59:45 -0700687 error = sysfs_create_group(&wacom->hdev->dev.kobj,
Ping Cheng09e7d942011-10-04 23:51:14 -0700688 &intuos4_led_attr_group);
689 break;
690
Jason Gerecke246835f2011-12-12 00:12:04 -0800691 case WACOM_24HD:
Ping Cheng09e7d942011-10-04 23:51:14 -0700692 case WACOM_21UX2:
693 wacom->led.select[0] = 0;
694 wacom->led.select[1] = 0;
695 wacom->led.llv = 0;
696 wacom->led.hlv = 0;
697 wacom->led.img_lum = 0;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700698
Benjamin Tissoiresc31a4082014-07-24 12:59:45 -0700699 error = sysfs_create_group(&wacom->hdev->dev.kobj,
Ping Cheng09e7d942011-10-04 23:51:14 -0700700 &cintiq_led_attr_group);
701 break;
702
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700703 case INTUOS5S:
704 case INTUOS5:
705 case INTUOS5L:
Ping Cheng9a35c412013-09-20 09:51:56 -0700706 case INTUOSPS:
707 case INTUOSPM:
708 case INTUOSPL:
Ping Chengc2b0c272013-09-20 09:50:14 -0700709 if (wacom->wacom_wac.features.device_type == BTN_TOOL_PEN) {
710 wacom->led.select[0] = 0;
711 wacom->led.select[1] = 0;
712 wacom->led.llv = 32;
713 wacom->led.hlv = 0;
714 wacom->led.img_lum = 0;
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700715
Benjamin Tissoiresc31a4082014-07-24 12:59:45 -0700716 error = sysfs_create_group(&wacom->hdev->dev.kobj,
Ping Chengc2b0c272013-09-20 09:50:14 -0700717 &intuos5_led_attr_group);
718 } else
719 return 0;
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700720 break;
721
Ping Cheng09e7d942011-10-04 23:51:14 -0700722 default:
723 return 0;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700724 }
725
Ping Cheng09e7d942011-10-04 23:51:14 -0700726 if (error) {
Benjamin Tissoiresc31a4082014-07-24 12:59:45 -0700727 hid_err(wacom->hdev,
Ping Cheng09e7d942011-10-04 23:51:14 -0700728 "cannot create sysfs group err: %d\n", error);
729 return error;
730 }
731 wacom_led_control(wacom);
Benjamin Tissoiresc757cba2014-07-24 13:16:17 -0700732 wacom->led_initialized = true;
Ping Cheng09e7d942011-10-04 23:51:14 -0700733
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700734 return 0;
735}
736
737static void wacom_destroy_leds(struct wacom *wacom)
738{
Benjamin Tissoiresc757cba2014-07-24 13:16:17 -0700739 if (!wacom->led_initialized)
740 return;
741
742 wacom->led_initialized = false;
743
Ping Cheng09e7d942011-10-04 23:51:14 -0700744 switch (wacom->wacom_wac.features.type) {
Jason Gereckea19fc982012-06-12 00:27:53 -0700745 case INTUOS4S:
Ping Cheng09e7d942011-10-04 23:51:14 -0700746 case INTUOS4:
747 case INTUOS4L:
Benjamin Tissoiresc31a4082014-07-24 12:59:45 -0700748 sysfs_remove_group(&wacom->hdev->dev.kobj,
Ping Cheng09e7d942011-10-04 23:51:14 -0700749 &intuos4_led_attr_group);
750 break;
751
Jason Gerecke246835f2011-12-12 00:12:04 -0800752 case WACOM_24HD:
Ping Cheng09e7d942011-10-04 23:51:14 -0700753 case WACOM_21UX2:
Benjamin Tissoiresc31a4082014-07-24 12:59:45 -0700754 sysfs_remove_group(&wacom->hdev->dev.kobj,
Ping Cheng09e7d942011-10-04 23:51:14 -0700755 &cintiq_led_attr_group);
756 break;
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700757
758 case INTUOS5S:
759 case INTUOS5:
760 case INTUOS5L:
Ping Cheng9a35c412013-09-20 09:51:56 -0700761 case INTUOSPS:
762 case INTUOSPM:
763 case INTUOSPL:
Ping Chengc2b0c272013-09-20 09:50:14 -0700764 if (wacom->wacom_wac.features.device_type == BTN_TOOL_PEN)
Benjamin Tissoiresc31a4082014-07-24 12:59:45 -0700765 sysfs_remove_group(&wacom->hdev->dev.kobj,
Ping Chengc2b0c272013-09-20 09:50:14 -0700766 &intuos5_led_attr_group);
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700767 break;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700768 }
769}
770
Chris Bagwella1d552c2012-03-25 23:26:30 -0700771static enum power_supply_property wacom_battery_props[] = {
Benjamin Tissoiresac8d1012014-07-25 17:29:48 -0700772 POWER_SUPPLY_PROP_STATUS,
Bastien Nocera6e2a6e82013-10-15 23:33:00 -0700773 POWER_SUPPLY_PROP_SCOPE,
Chris Bagwella1d552c2012-03-25 23:26:30 -0700774 POWER_SUPPLY_PROP_CAPACITY
775};
776
Benjamin Tissoires7dbd2292014-07-25 17:32:41 -0700777static enum power_supply_property wacom_ac_props[] = {
778 POWER_SUPPLY_PROP_PRESENT,
779 POWER_SUPPLY_PROP_ONLINE,
780 POWER_SUPPLY_PROP_SCOPE,
781};
782
Chris Bagwella1d552c2012-03-25 23:26:30 -0700783static int wacom_battery_get_property(struct power_supply *psy,
784 enum power_supply_property psp,
785 union power_supply_propval *val)
786{
787 struct wacom *wacom = container_of(psy, struct wacom, battery);
788 int ret = 0;
789
790 switch (psp) {
Bastien Nocera6e2a6e82013-10-15 23:33:00 -0700791 case POWER_SUPPLY_PROP_SCOPE:
792 val->intval = POWER_SUPPLY_SCOPE_DEVICE;
793 break;
Chris Bagwella1d552c2012-03-25 23:26:30 -0700794 case POWER_SUPPLY_PROP_CAPACITY:
795 val->intval =
Benjamin Tissoiresac8d1012014-07-25 17:29:48 -0700796 wacom->wacom_wac.battery_capacity;
797 break;
798 case POWER_SUPPLY_PROP_STATUS:
799 if (wacom->wacom_wac.bat_charging)
800 val->intval = POWER_SUPPLY_STATUS_CHARGING;
801 else if (wacom->wacom_wac.battery_capacity == 100 &&
802 wacom->wacom_wac.ps_connected)
803 val->intval = POWER_SUPPLY_STATUS_FULL;
804 else
805 val->intval = POWER_SUPPLY_STATUS_DISCHARGING;
Chris Bagwella1d552c2012-03-25 23:26:30 -0700806 break;
807 default:
808 ret = -EINVAL;
809 break;
810 }
811
812 return ret;
813}
814
Benjamin Tissoires7dbd2292014-07-25 17:32:41 -0700815static int wacom_ac_get_property(struct power_supply *psy,
816 enum power_supply_property psp,
817 union power_supply_propval *val)
818{
819 struct wacom *wacom = container_of(psy, struct wacom, ac);
820 int ret = 0;
821
822 switch (psp) {
823 case POWER_SUPPLY_PROP_PRESENT:
824 /* fall through */
825 case POWER_SUPPLY_PROP_ONLINE:
826 val->intval = wacom->wacom_wac.ps_connected;
827 break;
828 case POWER_SUPPLY_PROP_SCOPE:
829 val->intval = POWER_SUPPLY_SCOPE_DEVICE;
830 break;
831 default:
832 ret = -EINVAL;
833 break;
834 }
835 return ret;
836}
837
Chris Bagwella1d552c2012-03-25 23:26:30 -0700838static int wacom_initialize_battery(struct wacom *wacom)
839{
Benjamin Tissoiresd70420b2014-07-25 17:31:51 -0700840 static atomic_t battery_no = ATOMIC_INIT(0);
Benjamin Tissoires7dbd2292014-07-25 17:32:41 -0700841 int error;
Benjamin Tissoiresd70420b2014-07-25 17:31:51 -0700842 unsigned long n;
Chris Bagwella1d552c2012-03-25 23:26:30 -0700843
Benjamin Tissoiresac8d1012014-07-25 17:29:48 -0700844 if (wacom->wacom_wac.features.quirks & WACOM_QUIRK_BATTERY) {
Benjamin Tissoiresd70420b2014-07-25 17:31:51 -0700845 n = atomic_inc_return(&battery_no) - 1;
Benjamin Tissoires7dbd2292014-07-25 17:32:41 -0700846
Chris Bagwella1d552c2012-03-25 23:26:30 -0700847 wacom->battery.properties = wacom_battery_props;
848 wacom->battery.num_properties = ARRAY_SIZE(wacom_battery_props);
849 wacom->battery.get_property = wacom_battery_get_property;
Benjamin Tissoiresd70420b2014-07-25 17:31:51 -0700850 sprintf(wacom->wacom_wac.bat_name, "wacom_battery_%ld", n);
851 wacom->battery.name = wacom->wacom_wac.bat_name;
Chris Bagwella1d552c2012-03-25 23:26:30 -0700852 wacom->battery.type = POWER_SUPPLY_TYPE_BATTERY;
853 wacom->battery.use_for_apm = 0;
854
Benjamin Tissoires7dbd2292014-07-25 17:32:41 -0700855 wacom->ac.properties = wacom_ac_props;
856 wacom->ac.num_properties = ARRAY_SIZE(wacom_ac_props);
857 wacom->ac.get_property = wacom_ac_get_property;
858 sprintf(wacom->wacom_wac.ac_name, "wacom_ac_%ld", n);
859 wacom->ac.name = wacom->wacom_wac.ac_name;
860 wacom->ac.type = POWER_SUPPLY_TYPE_MAINS;
861 wacom->ac.use_for_apm = 0;
862
Benjamin Tissoiresdd3181a2014-07-24 13:01:40 -0700863 error = power_supply_register(&wacom->hdev->dev,
Chris Bagwella1d552c2012-03-25 23:26:30 -0700864 &wacom->battery);
Benjamin Tissoires7dbd2292014-07-25 17:32:41 -0700865 if (error)
866 return error;
Chris Bagwellb7af2bb2012-06-12 00:25:23 -0700867
Benjamin Tissoires7dbd2292014-07-25 17:32:41 -0700868 power_supply_powers(&wacom->battery, &wacom->hdev->dev);
869
870 error = power_supply_register(&wacom->hdev->dev, &wacom->ac);
871 if (error) {
872 power_supply_unregister(&wacom->battery);
873 return error;
874 }
875
876 power_supply_powers(&wacom->ac, &wacom->hdev->dev);
Chris Bagwella1d552c2012-03-25 23:26:30 -0700877 }
878
Benjamin Tissoires7dbd2292014-07-25 17:32:41 -0700879 return 0;
Chris Bagwella1d552c2012-03-25 23:26:30 -0700880}
881
882static void wacom_destroy_battery(struct wacom *wacom)
883{
Benjamin Tissoiresac8d1012014-07-25 17:29:48 -0700884 if ((wacom->wacom_wac.features.quirks & WACOM_QUIRK_BATTERY) &&
885 wacom->battery.dev) {
Chris Bagwella1d552c2012-03-25 23:26:30 -0700886 power_supply_unregister(&wacom->battery);
Chris Bagwellb7af2bb2012-06-12 00:25:23 -0700887 wacom->battery.dev = NULL;
Benjamin Tissoires7dbd2292014-07-25 17:32:41 -0700888 power_supply_unregister(&wacom->ac);
889 wacom->ac.dev = NULL;
Chris Bagwellb7af2bb2012-06-12 00:25:23 -0700890 }
Chris Bagwella1d552c2012-03-25 23:26:30 -0700891}
892
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -0700893static struct input_dev *wacom_allocate_input(struct wacom *wacom)
Chris Bagwell3aac0ef2012-03-25 23:25:45 -0700894{
895 struct input_dev *input_dev;
Benjamin Tissoiresb6c79f22014-07-24 13:00:03 -0700896 struct hid_device *hdev = wacom->hdev;
Chris Bagwell3aac0ef2012-03-25 23:25:45 -0700897 struct wacom_wac *wacom_wac = &(wacom->wacom_wac);
Chris Bagwell3aac0ef2012-03-25 23:25:45 -0700898
899 input_dev = input_allocate_device();
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -0700900 if (!input_dev)
901 return NULL;
Chris Bagwell3aac0ef2012-03-25 23:25:45 -0700902
903 input_dev->name = wacom_wac->name;
Benjamin Tissoiresb6c79f22014-07-24 13:00:03 -0700904 input_dev->phys = hdev->phys;
905 input_dev->dev.parent = &hdev->dev;
Chris Bagwell3aac0ef2012-03-25 23:25:45 -0700906 input_dev->open = wacom_open;
907 input_dev->close = wacom_close;
Benjamin Tissoiresb6c79f22014-07-24 13:00:03 -0700908 input_dev->uniq = hdev->uniq;
909 input_dev->id.bustype = hdev->bus;
910 input_dev->id.vendor = hdev->vendor;
911 input_dev->id.product = hdev->product;
912 input_dev->id.version = hdev->version;
Chris Bagwell3aac0ef2012-03-25 23:25:45 -0700913 input_set_drvdata(input_dev, wacom);
914
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -0700915 return input_dev;
916}
917
Benjamin Tissoires008f4d92014-07-24 12:51:26 -0700918static void wacom_unregister_inputs(struct wacom *wacom)
919{
920 if (wacom->wacom_wac.input)
921 input_unregister_device(wacom->wacom_wac.input);
922 if (wacom->wacom_wac.pad_input)
923 input_unregister_device(wacom->wacom_wac.pad_input);
924 wacom->wacom_wac.input = NULL;
925 wacom->wacom_wac.pad_input = NULL;
926}
927
928static int wacom_register_inputs(struct wacom *wacom)
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -0700929{
930 struct input_dev *input_dev, *pad_input_dev;
931 struct wacom_wac *wacom_wac = &(wacom->wacom_wac);
932 int error;
933
934 input_dev = wacom_allocate_input(wacom);
935 pad_input_dev = wacom_allocate_input(wacom);
936 if (!input_dev || !pad_input_dev) {
937 error = -ENOMEM;
938 goto fail1;
939 }
940
Chris Bagwell3aac0ef2012-03-25 23:25:45 -0700941 wacom_wac->input = input_dev;
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -0700942 wacom_wac->pad_input = pad_input_dev;
943 wacom_wac->pad_input->name = wacom_wac->pad_name;
944
Ping Cheng19635182012-04-29 21:09:18 -0700945 error = wacom_setup_input_capabilities(input_dev, wacom_wac);
946 if (error)
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -0700947 goto fail2;
Chris Bagwell3aac0ef2012-03-25 23:25:45 -0700948
949 error = input_register_device(input_dev);
Ping Cheng19635182012-04-29 21:09:18 -0700950 if (error)
951 goto fail2;
Chris Bagwell3aac0ef2012-03-25 23:25:45 -0700952
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -0700953 error = wacom_setup_pad_input_capabilities(pad_input_dev, wacom_wac);
954 if (error) {
955 /* no pad in use on this interface */
956 input_free_device(pad_input_dev);
957 wacom_wac->pad_input = NULL;
958 pad_input_dev = NULL;
959 } else {
960 error = input_register_device(pad_input_dev);
961 if (error)
962 goto fail3;
963 }
964
Ping Cheng19635182012-04-29 21:09:18 -0700965 return 0;
966
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -0700967fail3:
968 input_unregister_device(input_dev);
969 input_dev = NULL;
Ping Cheng19635182012-04-29 21:09:18 -0700970fail2:
Ping Cheng19635182012-04-29 21:09:18 -0700971 wacom_wac->input = NULL;
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -0700972 wacom_wac->pad_input = NULL;
Ping Cheng19635182012-04-29 21:09:18 -0700973fail1:
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -0700974 if (input_dev)
975 input_free_device(input_dev);
976 if (pad_input_dev)
977 input_free_device(pad_input_dev);
Chris Bagwell3aac0ef2012-03-25 23:25:45 -0700978 return error;
979}
980
Chris Bagwell16bf2882012-03-25 23:26:20 -0700981static void wacom_wireless_work(struct work_struct *work)
982{
983 struct wacom *wacom = container_of(work, struct wacom, work);
984 struct usb_device *usbdev = wacom->usbdev;
985 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
Benjamin Tissoires29b47392014-07-24 12:52:23 -0700986 struct hid_device *hdev1, *hdev2;
Chris Bagwellb7af2bb2012-06-12 00:25:23 -0700987 struct wacom *wacom1, *wacom2;
988 struct wacom_wac *wacom_wac1, *wacom_wac2;
989 int error;
Chris Bagwell16bf2882012-03-25 23:26:20 -0700990
991 /*
992 * Regardless if this is a disconnect or a new tablet,
Chris Bagwellb7af2bb2012-06-12 00:25:23 -0700993 * remove any existing input and battery devices.
Chris Bagwell16bf2882012-03-25 23:26:20 -0700994 */
995
Chris Bagwellb7af2bb2012-06-12 00:25:23 -0700996 wacom_destroy_battery(wacom);
997
Chris Bagwell16bf2882012-03-25 23:26:20 -0700998 /* Stylus interface */
Benjamin Tissoires29b47392014-07-24 12:52:23 -0700999 hdev1 = usb_get_intfdata(usbdev->config->interface[1]);
1000 wacom1 = hid_get_drvdata(hdev1);
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001001 wacom_wac1 = &(wacom1->wacom_wac);
Benjamin Tissoires008f4d92014-07-24 12:51:26 -07001002 wacom_unregister_inputs(wacom1);
Chris Bagwell16bf2882012-03-25 23:26:20 -07001003
1004 /* Touch interface */
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001005 hdev2 = usb_get_intfdata(usbdev->config->interface[2]);
1006 wacom2 = hid_get_drvdata(hdev2);
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001007 wacom_wac2 = &(wacom2->wacom_wac);
Benjamin Tissoires008f4d92014-07-24 12:51:26 -07001008 wacom_unregister_inputs(wacom2);
Chris Bagwell16bf2882012-03-25 23:26:20 -07001009
1010 if (wacom_wac->pid == 0) {
Benjamin Tissoirese2114ce2014-07-24 13:01:56 -07001011 hid_info(wacom->hdev, "wireless tablet disconnected\n");
Benjamin Tissoiresac8d1012014-07-25 17:29:48 -07001012 wacom_wac1->shared->type = 0;
Chris Bagwell16bf2882012-03-25 23:26:20 -07001013 } else {
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001014 const struct hid_device_id *id = wacom_ids;
Chris Bagwell16bf2882012-03-25 23:26:20 -07001015
Benjamin Tissoirese2114ce2014-07-24 13:01:56 -07001016 hid_info(wacom->hdev, "wireless tablet connected with PID %x\n",
Dmitry Torokhoveb71d1b2012-05-02 00:13:38 -07001017 wacom_wac->pid);
Chris Bagwell16bf2882012-03-25 23:26:20 -07001018
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001019 while (id->bus) {
1020 if (id->vendor == USB_VENDOR_ID_WACOM &&
1021 id->product == wacom_wac->pid)
Chris Bagwell16bf2882012-03-25 23:26:20 -07001022 break;
1023 id++;
1024 }
1025
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001026 if (!id->bus) {
Benjamin Tissoirese2114ce2014-07-24 13:01:56 -07001027 hid_info(wacom->hdev, "ignoring unknown PID.\n");
Chris Bagwell16bf2882012-03-25 23:26:20 -07001028 return;
1029 }
1030
1031 /* Stylus interface */
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001032 wacom_wac1->features =
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001033 *((struct wacom_features *)id->driver_data);
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001034 wacom_wac1->features.device_type = BTN_TOOL_PEN;
Ping Cheng57bcfce2013-10-15 23:44:00 -07001035 snprintf(wacom_wac1->name, WACOM_NAME_MAX, "%s (WL) Pen",
1036 wacom_wac1->features.name);
Benjamin Tissoires008f4d92014-07-24 12:51:26 -07001037 snprintf(wacom_wac1->pad_name, WACOM_NAME_MAX, "%s (WL) Pad",
1038 wacom_wac1->features.name);
Ping Cheng961794a2013-12-05 12:54:53 -08001039 wacom_wac1->shared->touch_max = wacom_wac1->features.touch_max;
1040 wacom_wac1->shared->type = wacom_wac1->features.type;
Benjamin Tissoires008f4d92014-07-24 12:51:26 -07001041 error = wacom_register_inputs(wacom1);
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001042 if (error)
Ping Cheng57bcfce2013-10-15 23:44:00 -07001043 goto fail;
Chris Bagwell16bf2882012-03-25 23:26:20 -07001044
1045 /* Touch interface */
Ping Chengb5fd2a32013-11-25 18:44:55 -08001046 if (wacom_wac1->features.touch_max ||
1047 wacom_wac1->features.type == INTUOSHT) {
Ping Cheng57bcfce2013-10-15 23:44:00 -07001048 wacom_wac2->features =
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001049 *((struct wacom_features *)id->driver_data);
Ping Cheng57bcfce2013-10-15 23:44:00 -07001050 wacom_wac2->features.pktlen = WACOM_PKGLEN_BBTOUCH3;
1051 wacom_wac2->features.device_type = BTN_TOOL_FINGER;
1052 wacom_wac2->features.x_max = wacom_wac2->features.y_max = 4096;
1053 if (wacom_wac2->features.touch_max)
1054 snprintf(wacom_wac2->name, WACOM_NAME_MAX,
1055 "%s (WL) Finger",wacom_wac2->features.name);
1056 else
1057 snprintf(wacom_wac2->name, WACOM_NAME_MAX,
1058 "%s (WL) Pad",wacom_wac2->features.name);
Benjamin Tissoires008f4d92014-07-24 12:51:26 -07001059 snprintf(wacom_wac2->pad_name, WACOM_NAME_MAX,
1060 "%s (WL) Pad", wacom_wac2->features.name);
1061 error = wacom_register_inputs(wacom2);
Ping Cheng57bcfce2013-10-15 23:44:00 -07001062 if (error)
1063 goto fail;
Ping Cheng961794a2013-12-05 12:54:53 -08001064
1065 if (wacom_wac1->features.type == INTUOSHT &&
1066 wacom_wac1->features.touch_max)
1067 wacom_wac->shared->touch_input = wacom_wac2->input;
Ping Cheng57bcfce2013-10-15 23:44:00 -07001068 }
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001069
1070 error = wacom_initialize_battery(wacom);
1071 if (error)
Ping Cheng57bcfce2013-10-15 23:44:00 -07001072 goto fail;
Chris Bagwell16bf2882012-03-25 23:26:20 -07001073 }
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001074
1075 return;
1076
Ping Cheng57bcfce2013-10-15 23:44:00 -07001077fail:
Benjamin Tissoires008f4d92014-07-24 12:51:26 -07001078 wacom_unregister_inputs(wacom1);
1079 wacom_unregister_inputs(wacom2);
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001080 return;
Chris Bagwell16bf2882012-03-25 23:26:20 -07001081}
1082
Ping Cheng401d7d12013-07-28 00:38:54 -07001083/*
1084 * Not all devices report physical dimensions from HID.
1085 * Compute the default from hardcoded logical dimension
1086 * and resolution before driver overwrites them.
1087 */
1088static void wacom_set_default_phy(struct wacom_features *features)
1089{
1090 if (features->x_resolution) {
1091 features->x_phy = (features->x_max * 100) /
1092 features->x_resolution;
1093 features->y_phy = (features->y_max * 100) /
1094 features->y_resolution;
1095 }
1096}
1097
1098static void wacom_calculate_res(struct wacom_features *features)
1099{
1100 features->x_resolution = wacom_calc_hid_res(features->x_max,
1101 features->x_phy,
1102 features->unit,
1103 features->unitExpo);
1104 features->y_resolution = wacom_calc_hid_res(features->y_max,
1105 features->y_phy,
1106 features->unit,
1107 features->unitExpo);
1108}
1109
Benjamin Tissoires01c846f2014-07-24 12:59:11 -07001110static int wacom_hid_report_len(struct hid_report *report)
1111{
1112 /* equivalent to DIV_ROUND_UP(report->size, 8) + !!(report->id > 0) */
1113 return ((report->size - 1) >> 3) + 1 + (report->id > 0);
1114}
1115
1116static size_t wacom_compute_pktlen(struct hid_device *hdev)
1117{
1118 struct hid_report_enum *report_enum;
1119 struct hid_report *report;
1120 size_t size = 0;
1121
1122 report_enum = hdev->report_enum + HID_INPUT_REPORT;
1123
1124 list_for_each_entry(report, &report_enum->report_list, list) {
1125 size_t report_size = wacom_hid_report_len(report);
1126 if (report_size > size)
1127 size = report_size;
1128 }
1129
1130 return size;
1131}
1132
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001133static int wacom_probe(struct hid_device *hdev,
1134 const struct hid_device_id *id)
Ping Cheng3bea7332006-07-13 18:01:36 -07001135{
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001136 struct usb_interface *intf = to_usb_interface(hdev->dev.parent);
Ping Cheng3bea7332006-07-13 18:01:36 -07001137 struct usb_device *dev = interface_to_usbdev(intf);
Ping Cheng3bea7332006-07-13 18:01:36 -07001138 struct wacom *wacom;
1139 struct wacom_wac *wacom_wac;
Jason Childse33da8a2010-02-17 22:38:31 -08001140 struct wacom_features *features;
Jason Childse33da8a2010-02-17 22:38:31 -08001141 int error;
Ping Cheng3bea7332006-07-13 18:01:36 -07001142
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001143 if (!id->driver_data)
Bastian Blankb036f6f2010-02-10 23:06:23 -08001144 return -EINVAL;
1145
Ping Cheng3bea7332006-07-13 18:01:36 -07001146 wacom = kzalloc(sizeof(struct wacom), GFP_KERNEL);
Dan Carpenterf1823942012-03-29 22:38:11 -07001147 if (!wacom)
1148 return -ENOMEM;
Ping Cheng3bea7332006-07-13 18:01:36 -07001149
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001150 hid_set_drvdata(hdev, wacom);
1151 wacom->hdev = hdev;
1152
Benjamin Tissoiresba9a3542014-07-24 12:58:45 -07001153 /* ask for the report descriptor to be loaded by HID */
1154 error = hid_parse(hdev);
1155 if (error) {
1156 hid_err(hdev, "parse failed\n");
1157 goto fail1;
1158 }
1159
Dmitry Torokhov51269fe2010-03-19 22:18:15 -07001160 wacom_wac = &wacom->wacom_wac;
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001161 wacom_wac->features = *((struct wacom_features *)id->driver_data);
Jason Childse33da8a2010-02-17 22:38:31 -08001162 features = &wacom_wac->features;
Benjamin Tissoires01c846f2014-07-24 12:59:11 -07001163 features->pktlen = wacom_compute_pktlen(hdev);
Jason Childse33da8a2010-02-17 22:38:31 -08001164 if (features->pktlen > WACOM_PKGLEN_MAX) {
1165 error = -EINVAL;
Ping Cheng3bea7332006-07-13 18:01:36 -07001166 goto fail1;
Jason Childse33da8a2010-02-17 22:38:31 -08001167 }
1168
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001169 if (features->check_for_hid_type && features->hid_type != hdev->type) {
1170 error = -ENODEV;
Jason Childse33da8a2010-02-17 22:38:31 -08001171 goto fail1;
1172 }
Ping Cheng3bea7332006-07-13 18:01:36 -07001173
Ping Cheng3bea7332006-07-13 18:01:36 -07001174 wacom->usbdev = dev;
Oliver Neukume7224092008-04-15 01:31:57 -04001175 wacom->intf = intf;
1176 mutex_init(&wacom->lock);
Chris Bagwell16bf2882012-03-25 23:26:20 -07001177 INIT_WORK(&wacom->work, wacom_wireless_work);
Ping Cheng3bea7332006-07-13 18:01:36 -07001178
Ping Cheng401d7d12013-07-28 00:38:54 -07001179 /* set the default size in case we do not get them from hid */
1180 wacom_set_default_phy(features);
1181
Ping Chengf393ee22012-04-29 21:09:17 -07001182 /* Retrieve the physical and logical size for touch devices */
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -07001183 wacom_retrieve_hid_descriptor(hdev, features);
Ping Cheng545f4e92008-11-24 11:44:27 -05001184
Jason Gereckeae584ca2012-04-03 15:50:40 -07001185 /*
1186 * Intuos5 has no useful data about its touch interface in its
Benjamin Tissoires01c846f2014-07-24 12:59:11 -07001187 * HID descriptor. If this is the touch interface (PacketSize
Jason Gereckeae584ca2012-04-03 15:50:40 -07001188 * of WACOM_PKGLEN_BBTOUCH3), override the table values.
1189 */
Ping Chengb5fd2a32013-11-25 18:44:55 -08001190 if (features->type >= INTUOS5S && features->type <= INTUOSHT) {
Benjamin Tissoires01c846f2014-07-24 12:59:11 -07001191 if (features->pktlen == WACOM_PKGLEN_BBTOUCH3) {
Jason Gereckeae584ca2012-04-03 15:50:40 -07001192 features->device_type = BTN_TOOL_FINGER;
Jason Gereckeae584ca2012-04-03 15:50:40 -07001193
Jason Gereckeae584ca2012-04-03 15:50:40 -07001194 features->x_max = 4096;
1195 features->y_max = 4096;
1196 } else {
1197 features->device_type = BTN_TOOL_PEN;
1198 }
1199 }
1200
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -07001201 /*
1202 * Same thing for Bamboo 3rd gen.
1203 */
1204 if ((features->type == BAMBOO_PT) &&
1205 (features->pktlen == WACOM_PKGLEN_BBTOUCH3) &&
1206 (features->device_type == BTN_TOOL_PEN)) {
1207 features->device_type = BTN_TOOL_FINGER;
1208
1209 features->x_max = 4096;
1210 features->y_max = 4096;
1211 }
1212
Henrik Rydbergbc73dd32010-09-05 12:26:16 -07001213 wacom_setup_device_quirks(features);
1214
Ping Cheng401d7d12013-07-28 00:38:54 -07001215 /* set unit to "100th of a mm" for devices not reported by HID */
1216 if (!features->unit) {
1217 features->unit = 0x11;
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -07001218 features->unitExpo = -3;
Ping Cheng401d7d12013-07-28 00:38:54 -07001219 }
1220 wacom_calculate_res(features);
1221
Ping Cheng49b764a2010-02-20 00:53:49 -08001222 strlcpy(wacom_wac->name, features->name, sizeof(wacom_wac->name));
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07001223 snprintf(wacom_wac->pad_name, sizeof(wacom_wac->pad_name),
1224 "%s Pad", features->name);
Ping Cheng49b764a2010-02-20 00:53:49 -08001225
Henrik Rydbergbc73dd32010-09-05 12:26:16 -07001226 if (features->quirks & WACOM_QUIRK_MULTI_INPUT) {
Ping Cheng49b764a2010-02-20 00:53:49 -08001227 /* Append the device type to the name */
Ping Cheng57bcfce2013-10-15 23:44:00 -07001228 if (features->device_type != BTN_TOOL_FINGER)
1229 strlcat(wacom_wac->name, " Pen", WACOM_NAME_MAX);
1230 else if (features->touch_max)
1231 strlcat(wacom_wac->name, " Finger", WACOM_NAME_MAX);
1232 else
1233 strlcat(wacom_wac->name, " Pad", WACOM_NAME_MAX);
Ping Cheng4492eff2010-03-19 22:18:15 -07001234
Benjamin Tissoires4451e082014-07-24 13:01:05 -07001235 error = wacom_add_shared_data(hdev);
Ping Cheng4492eff2010-03-19 22:18:15 -07001236 if (error)
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001237 goto fail1;
Ping Cheng49b764a2010-02-20 00:53:49 -08001238 }
1239
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001240 error = wacom_initialize_leds(wacom);
Dmitry Torokhov50141862007-04-12 01:33:39 -04001241 if (error)
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001242 goto fail2;
Ping Cheng3bea7332006-07-13 18:01:36 -07001243
Chris Bagwelld3825d52012-03-25 23:26:11 -07001244 if (!(features->quirks & WACOM_QUIRK_NO_INPUT)) {
Benjamin Tissoires008f4d92014-07-24 12:51:26 -07001245 error = wacom_register_inputs(wacom);
Chris Bagwelld3825d52012-03-25 23:26:11 -07001246 if (error)
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001247 goto fail3;
Chris Bagwelld3825d52012-03-25 23:26:11 -07001248 }
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001249
Ping Chengec67bbe2009-12-15 00:35:24 -08001250 /* Note that if query fails it is not a hard failure */
Benjamin Tissoires27b20a92014-07-24 12:56:22 -07001251 wacom_query_tablet_data(hdev, features);
Ping Cheng3bea7332006-07-13 18:01:36 -07001252
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001253 /* Regular HID work starts now */
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001254 error = hid_hw_start(hdev, HID_CONNECT_HIDRAW);
1255 if (error) {
1256 hid_err(hdev, "hw start failed\n");
1257 goto fail4;
1258 }
1259
1260 if (features->quirks & WACOM_QUIRK_MONITOR)
1261 error = hid_hw_open(hdev);
1262
Ping Cheng961794a2013-12-05 12:54:53 -08001263 if (wacom_wac->features.type == INTUOSHT && wacom_wac->features.touch_max) {
1264 if (wacom_wac->features.device_type == BTN_TOOL_FINGER)
1265 wacom_wac->shared->touch_input = wacom_wac->input;
1266 }
1267
Ping Cheng3bea7332006-07-13 18:01:36 -07001268 return 0;
1269
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001270 fail4: wacom_unregister_inputs(wacom);
1271 fail3: wacom_destroy_leds(wacom);
1272 fail2: wacom_remove_shared_data(wacom_wac);
Chris Bagwell3aac0ef2012-03-25 23:25:45 -07001273 fail1: kfree(wacom);
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001274 hid_set_drvdata(hdev, NULL);
Dmitry Torokhov50141862007-04-12 01:33:39 -04001275 return error;
Ping Cheng3bea7332006-07-13 18:01:36 -07001276}
1277
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001278static void wacom_remove(struct hid_device *hdev)
Ping Cheng3bea7332006-07-13 18:01:36 -07001279{
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001280 struct wacom *wacom = hid_get_drvdata(hdev);
Ping Cheng3bea7332006-07-13 18:01:36 -07001281
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001282 hid_hw_stop(hdev);
Oliver Neukume7224092008-04-15 01:31:57 -04001283
Chris Bagwell16bf2882012-03-25 23:26:20 -07001284 cancel_work_sync(&wacom->work);
Benjamin Tissoires008f4d92014-07-24 12:51:26 -07001285 wacom_unregister_inputs(wacom);
Chris Bagwella1d552c2012-03-25 23:26:30 -07001286 wacom_destroy_battery(wacom);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001287 wacom_destroy_leds(wacom);
Dmitry Torokhov51269fe2010-03-19 22:18:15 -07001288 wacom_remove_shared_data(&wacom->wacom_wac);
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001289
1290 hid_set_drvdata(hdev, NULL);
Oliver Neukume7224092008-04-15 01:31:57 -04001291 kfree(wacom);
1292}
1293
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001294static int wacom_resume(struct hid_device *hdev)
Oliver Neukume7224092008-04-15 01:31:57 -04001295{
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001296 struct wacom *wacom = hid_get_drvdata(hdev);
1297 struct wacom_features *features = &wacom->wacom_wac.features;
Oliver Neukume7224092008-04-15 01:31:57 -04001298
1299 mutex_lock(&wacom->lock);
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001300
1301 /* switch to wacom mode first */
Benjamin Tissoires27b20a92014-07-24 12:56:22 -07001302 wacom_query_tablet_data(hdev, features);
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001303 wacom_led_control(wacom);
1304
Oliver Neukume7224092008-04-15 01:31:57 -04001305 mutex_unlock(&wacom->lock);
1306
1307 return 0;
1308}
1309
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001310static int wacom_reset_resume(struct hid_device *hdev)
Oliver Neukume7224092008-04-15 01:31:57 -04001311{
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001312 return wacom_resume(hdev);
Oliver Neukume7224092008-04-15 01:31:57 -04001313}
1314
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001315static struct hid_driver wacom_driver = {
Ping Cheng3bea7332006-07-13 18:01:36 -07001316 .name = "wacom",
Bastian Blankb036f6f2010-02-10 23:06:23 -08001317 .id_table = wacom_ids,
Ping Cheng3bea7332006-07-13 18:01:36 -07001318 .probe = wacom_probe,
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001319 .remove = wacom_remove,
1320#ifdef CONFIG_PM
Oliver Neukume7224092008-04-15 01:31:57 -04001321 .resume = wacom_resume,
1322 .reset_resume = wacom_reset_resume,
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001323#endif
1324 .raw_event = wacom_raw_event,
Ping Cheng3bea7332006-07-13 18:01:36 -07001325};
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001326module_hid_driver(wacom_driver);