blob: 18154a5459b5f396c49c09ca49f67f2036dcda00 [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
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -0700265static int wacom_bt_query_tablet_data(struct hid_device *hdev, u8 speed,
266 struct wacom_features *features)
267{
268 return 0;
269}
270
Jason Gereckefe494bc2012-10-03 17:25:35 -0700271/*
272 * Switch the tablet into its most-capable mode. Wacom tablets are
273 * typically configured to power-up in a mode which sends mouse-like
274 * reports to the OS. To get absolute position, pressure data, etc.
275 * from the tablet, it is necessary to switch the tablet out of this
276 * mode and into one which sends the full range of tablet data.
277 */
Benjamin Tissoires27b20a92014-07-24 12:56:22 -0700278static int wacom_query_tablet_data(struct hid_device *hdev,
279 struct wacom_features *features)
Jason Gereckefe494bc2012-10-03 17:25:35 -0700280{
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -0700281 if (hdev->bus == BUS_BLUETOOTH)
282 return wacom_bt_query_tablet_data(hdev, 1, features);
283
Jason Gereckefe494bc2012-10-03 17:25:35 -0700284 if (features->device_type == BTN_TOOL_FINGER) {
285 if (features->type > TABLETPC) {
286 /* MT Tablet PC touch */
Benjamin Tissoires27b20a92014-07-24 12:56:22 -0700287 return wacom_set_device_mode(hdev, 3, 4, 4);
Jason Gereckefe494bc2012-10-03 17:25:35 -0700288 }
Jason Gerecke36d3c512013-09-20 09:47:35 -0700289 else if (features->type == WACOM_24HDT || features->type == CINTIQ_HYBRID) {
Benjamin Tissoires27b20a92014-07-24 12:56:22 -0700290 return wacom_set_device_mode(hdev, 18, 3, 2);
Jason Gereckeb1e42792012-10-21 00:38:04 -0700291 }
Jason Gereckefe494bc2012-10-03 17:25:35 -0700292 } else if (features->device_type == BTN_TOOL_PEN) {
293 if (features->type <= BAMBOO_PT && features->type != WIRELESS) {
Benjamin Tissoires27b20a92014-07-24 12:56:22 -0700294 return wacom_set_device_mode(hdev, 2, 2, 2);
Jason Gereckefe494bc2012-10-03 17:25:35 -0700295 }
296 }
297
298 return 0;
299}
300
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700301static void wacom_retrieve_hid_descriptor(struct hid_device *hdev,
Ping Cheng19635182012-04-29 21:09:18 -0700302 struct wacom_features *features)
Ping Chengec67bbe2009-12-15 00:35:24 -0800303{
Benjamin Tissoires27b20a92014-07-24 12:56:22 -0700304 struct wacom *wacom = hid_get_drvdata(hdev);
305 struct usb_interface *intf = wacom->intf;
Ping Chengec67bbe2009-12-15 00:35:24 -0800306
Henrik Rydbergfed87e62010-09-05 12:25:11 -0700307 /* default features */
Ping Chengec67bbe2009-12-15 00:35:24 -0800308 features->device_type = BTN_TOOL_PEN;
Henrik Rydbergfed87e62010-09-05 12:25:11 -0700309 features->x_fuzz = 4;
310 features->y_fuzz = 4;
311 features->pressure_fuzz = 0;
312 features->distance_fuzz = 0;
Ping Chengec67bbe2009-12-15 00:35:24 -0800313
Chris Bagwelld3825d52012-03-25 23:26:11 -0700314 /*
315 * The wireless device HID is basic and layout conflicts with
316 * other tablets (monitor and touch interface can look like pen).
317 * Skip the query for this type and modify defaults based on
318 * interface number.
319 */
320 if (features->type == WIRELESS) {
321 if (intf->cur_altsetting->desc.bInterfaceNumber == 0) {
322 features->device_type = 0;
323 } else if (intf->cur_altsetting->desc.bInterfaceNumber == 2) {
Ping Chengadad0042012-06-28 16:48:17 -0700324 features->device_type = BTN_TOOL_FINGER;
Chris Bagwelld3825d52012-03-25 23:26:11 -0700325 features->pktlen = WACOM_PKGLEN_BBTOUCH3;
326 }
327 }
328
Ping Cheng19635182012-04-29 21:09:18 -0700329 /* only devices that support touch need to retrieve the info */
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700330 if (features->type < BAMBOO_PT)
331 return;
Ping Chengec67bbe2009-12-15 00:35:24 -0800332
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -0700333 wacom_parse_hid(hdev, features);
Ping Chengec67bbe2009-12-15 00:35:24 -0800334}
335
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700336struct wacom_hdev_data {
Ping Cheng4492eff2010-03-19 22:18:15 -0700337 struct list_head list;
338 struct kref kref;
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700339 struct hid_device *dev;
Ping Cheng4492eff2010-03-19 22:18:15 -0700340 struct wacom_shared shared;
341};
342
343static LIST_HEAD(wacom_udev_list);
344static DEFINE_MUTEX(wacom_udev_list_lock);
345
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700346static bool wacom_are_sibling(struct hid_device *hdev,
347 struct hid_device *sibling)
Jason Gereckeaea2bf62012-10-21 00:38:03 -0700348{
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700349 struct wacom *wacom = hid_get_drvdata(hdev);
350 struct wacom_features *features = &wacom->wacom_wac.features;
351 int vid = features->oVid;
352 int pid = features->oPid;
353 int n1,n2;
Jason Gereckeaea2bf62012-10-21 00:38:03 -0700354
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700355 if (vid == 0 && pid == 0) {
356 vid = hdev->vendor;
357 pid = hdev->product;
Jason Gereckeaea2bf62012-10-21 00:38:03 -0700358 }
359
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700360 if (vid != sibling->vendor || pid != sibling->product)
361 return false;
362
363 /* Compare the physical path. */
364 n1 = strrchr(hdev->phys, '.') - hdev->phys;
365 n2 = strrchr(sibling->phys, '.') - sibling->phys;
366 if (n1 != n2 || n1 <= 0 || n2 <= 0)
367 return false;
368
369 return !strncmp(hdev->phys, sibling->phys, n1);
Jason Gereckeaea2bf62012-10-21 00:38:03 -0700370}
371
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700372static struct wacom_hdev_data *wacom_get_hdev_data(struct hid_device *hdev)
Ping Cheng4492eff2010-03-19 22:18:15 -0700373{
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700374 struct wacom_hdev_data *data;
Ping Cheng4492eff2010-03-19 22:18:15 -0700375
376 list_for_each_entry(data, &wacom_udev_list, list) {
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700377 if (wacom_are_sibling(hdev, data->dev)) {
Ping Cheng4492eff2010-03-19 22:18:15 -0700378 kref_get(&data->kref);
379 return data;
380 }
381 }
382
383 return NULL;
384}
385
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700386static int wacom_add_shared_data(struct hid_device *hdev)
Ping Cheng4492eff2010-03-19 22:18:15 -0700387{
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700388 struct wacom *wacom = hid_get_drvdata(hdev);
389 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
390 struct wacom_hdev_data *data;
Ping Cheng4492eff2010-03-19 22:18:15 -0700391 int retval = 0;
392
393 mutex_lock(&wacom_udev_list_lock);
394
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700395 data = wacom_get_hdev_data(hdev);
Ping Cheng4492eff2010-03-19 22:18:15 -0700396 if (!data) {
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700397 data = kzalloc(sizeof(struct wacom_hdev_data), GFP_KERNEL);
Ping Cheng4492eff2010-03-19 22:18:15 -0700398 if (!data) {
399 retval = -ENOMEM;
400 goto out;
401 }
402
403 kref_init(&data->kref);
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700404 data->dev = hdev;
Ping Cheng4492eff2010-03-19 22:18:15 -0700405 list_add_tail(&data->list, &wacom_udev_list);
406 }
407
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700408 wacom_wac->shared = &data->shared;
Ping Cheng4492eff2010-03-19 22:18:15 -0700409
410out:
411 mutex_unlock(&wacom_udev_list_lock);
412 return retval;
413}
414
415static void wacom_release_shared_data(struct kref *kref)
416{
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700417 struct wacom_hdev_data *data =
418 container_of(kref, struct wacom_hdev_data, kref);
Ping Cheng4492eff2010-03-19 22:18:15 -0700419
420 mutex_lock(&wacom_udev_list_lock);
421 list_del(&data->list);
422 mutex_unlock(&wacom_udev_list_lock);
423
424 kfree(data);
425}
426
427static void wacom_remove_shared_data(struct wacom_wac *wacom)
428{
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700429 struct wacom_hdev_data *data;
Ping Cheng4492eff2010-03-19 22:18:15 -0700430
431 if (wacom->shared) {
Benjamin Tissoires4451e082014-07-24 13:01:05 -0700432 data = container_of(wacom->shared, struct wacom_hdev_data, shared);
Ping Cheng4492eff2010-03-19 22:18:15 -0700433 kref_put(&data->kref, wacom_release_shared_data);
434 wacom->shared = NULL;
435 }
436}
437
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700438static int wacom_led_control(struct wacom *wacom)
439{
440 unsigned char *buf;
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700441 int retval;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700442
443 buf = kzalloc(9, GFP_KERNEL);
444 if (!buf)
445 return -ENOMEM;
446
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700447 if (wacom->wacom_wac.features.type >= INTUOS5S &&
Ping Cheng9a35c412013-09-20 09:51:56 -0700448 wacom->wacom_wac.features.type <= INTUOSPL) {
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700449 /*
450 * Touch Ring and crop mark LED luminance may take on
451 * one of four values:
452 * 0 = Low; 1 = Medium; 2 = High; 3 = Off
453 */
454 int ring_led = wacom->led.select[0] & 0x03;
455 int ring_lum = (((wacom->led.llv & 0x60) >> 5) - 1) & 0x03;
456 int crop_lum = 0;
Ping Cheng09e7d942011-10-04 23:51:14 -0700457
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700458 buf[0] = WAC_CMD_LED_CONTROL;
459 buf[1] = (crop_lum << 4) | (ring_lum << 2) | (ring_led);
460 }
461 else {
462 int led = wacom->led.select[0] | 0x4;
Ping Cheng09e7d942011-10-04 23:51:14 -0700463
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700464 if (wacom->wacom_wac.features.type == WACOM_21UX2 ||
465 wacom->wacom_wac.features.type == WACOM_24HD)
466 led |= (wacom->led.select[1] << 4) | 0x40;
467
468 buf[0] = WAC_CMD_LED_CONTROL;
469 buf[1] = led;
470 buf[2] = wacom->led.llv;
471 buf[3] = wacom->led.hlv;
472 buf[4] = wacom->led.img_lum;
473 }
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700474
Benjamin Tissoires27b20a92014-07-24 12:56:22 -0700475 retval = wacom_set_report(wacom->hdev, HID_FEATURE_REPORT,
476 WAC_CMD_LED_CONTROL, buf, 9, WAC_CMD_RETRIES);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700477 kfree(buf);
478
479 return retval;
480}
481
482static int wacom_led_putimage(struct wacom *wacom, int button_id, const void *img)
483{
484 unsigned char *buf;
485 int i, retval;
486
487 buf = kzalloc(259, GFP_KERNEL);
488 if (!buf)
489 return -ENOMEM;
490
491 /* Send 'start' command */
492 buf[0] = WAC_CMD_ICON_START;
493 buf[1] = 1;
Benjamin Tissoires27b20a92014-07-24 12:56:22 -0700494 retval = wacom_set_report(wacom->hdev, HID_FEATURE_REPORT,
495 WAC_CMD_ICON_START, buf, 2, WAC_CMD_RETRIES);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700496 if (retval < 0)
497 goto out;
498
499 buf[0] = WAC_CMD_ICON_XFER;
500 buf[1] = button_id & 0x07;
501 for (i = 0; i < 4; i++) {
502 buf[2] = i;
503 memcpy(buf + 3, img + i * 256, 256);
504
Benjamin Tissoires27b20a92014-07-24 12:56:22 -0700505 retval = wacom_set_report(wacom->hdev, HID_FEATURE_REPORT,
506 WAC_CMD_ICON_XFER,
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700507 buf, 259, WAC_CMD_RETRIES);
508 if (retval < 0)
509 break;
510 }
511
512 /* Send 'stop' */
513 buf[0] = WAC_CMD_ICON_START;
514 buf[1] = 0;
Benjamin Tissoires27b20a92014-07-24 12:56:22 -0700515 wacom_set_report(wacom->hdev, HID_FEATURE_REPORT, WAC_CMD_ICON_START,
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700516 buf, 2, WAC_CMD_RETRIES);
517
518out:
519 kfree(buf);
520 return retval;
521}
522
Ping Cheng09e7d942011-10-04 23:51:14 -0700523static ssize_t wacom_led_select_store(struct device *dev, int set_id,
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700524 const char *buf, size_t count)
525{
Benjamin Tissoiresc31a4082014-07-24 12:59:45 -0700526 struct hid_device *hdev = container_of(dev, struct hid_device, dev);
Benjamin Tissoires29b47392014-07-24 12:52:23 -0700527 struct wacom *wacom = hid_get_drvdata(hdev);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700528 unsigned int id;
529 int err;
530
531 err = kstrtouint(buf, 10, &id);
532 if (err)
533 return err;
534
535 mutex_lock(&wacom->lock);
536
Ping Cheng09e7d942011-10-04 23:51:14 -0700537 wacom->led.select[set_id] = id & 0x3;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700538 err = wacom_led_control(wacom);
539
540 mutex_unlock(&wacom->lock);
541
542 return err < 0 ? err : count;
543}
544
Ping Cheng09e7d942011-10-04 23:51:14 -0700545#define DEVICE_LED_SELECT_ATTR(SET_ID) \
546static ssize_t wacom_led##SET_ID##_select_store(struct device *dev, \
547 struct device_attribute *attr, const char *buf, size_t count) \
548{ \
549 return wacom_led_select_store(dev, SET_ID, buf, count); \
550} \
Ping Cheng04c59ab2011-10-04 23:51:49 -0700551static ssize_t wacom_led##SET_ID##_select_show(struct device *dev, \
552 struct device_attribute *attr, char *buf) \
553{ \
Benjamin Tissoiresc31a4082014-07-24 12:59:45 -0700554 struct hid_device *hdev = container_of(dev, struct hid_device, dev);\
Benjamin Tissoires29b47392014-07-24 12:52:23 -0700555 struct wacom *wacom = hid_get_drvdata(hdev); \
Ping Cheng04c59ab2011-10-04 23:51:49 -0700556 return snprintf(buf, 2, "%d\n", wacom->led.select[SET_ID]); \
557} \
558static DEVICE_ATTR(status_led##SET_ID##_select, S_IWUSR | S_IRUSR, \
559 wacom_led##SET_ID##_select_show, \
Ping Cheng09e7d942011-10-04 23:51:14 -0700560 wacom_led##SET_ID##_select_store)
561
562DEVICE_LED_SELECT_ATTR(0);
563DEVICE_LED_SELECT_ATTR(1);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700564
565static ssize_t wacom_luminance_store(struct wacom *wacom, u8 *dest,
566 const char *buf, size_t count)
567{
568 unsigned int value;
569 int err;
570
571 err = kstrtouint(buf, 10, &value);
572 if (err)
573 return err;
574
575 mutex_lock(&wacom->lock);
576
577 *dest = value & 0x7f;
578 err = wacom_led_control(wacom);
579
580 mutex_unlock(&wacom->lock);
581
582 return err < 0 ? err : count;
583}
584
585#define DEVICE_LUMINANCE_ATTR(name, field) \
586static ssize_t wacom_##name##_luminance_store(struct device *dev, \
587 struct device_attribute *attr, const char *buf, size_t count) \
588{ \
Benjamin Tissoiresc31a4082014-07-24 12:59:45 -0700589 struct hid_device *hdev = container_of(dev, struct hid_device, dev);\
Benjamin Tissoires29b47392014-07-24 12:52:23 -0700590 struct wacom *wacom = hid_get_drvdata(hdev); \
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700591 \
592 return wacom_luminance_store(wacom, &wacom->led.field, \
593 buf, count); \
594} \
595static DEVICE_ATTR(name##_luminance, S_IWUSR, \
596 NULL, wacom_##name##_luminance_store)
597
598DEVICE_LUMINANCE_ATTR(status0, llv);
599DEVICE_LUMINANCE_ATTR(status1, hlv);
600DEVICE_LUMINANCE_ATTR(buttons, img_lum);
601
602static ssize_t wacom_button_image_store(struct device *dev, int button_id,
603 const char *buf, size_t count)
604{
Benjamin Tissoiresc31a4082014-07-24 12:59:45 -0700605 struct hid_device *hdev = container_of(dev, struct hid_device, dev);
Benjamin Tissoires29b47392014-07-24 12:52:23 -0700606 struct wacom *wacom = hid_get_drvdata(hdev);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700607 int err;
608
609 if (count != 1024)
610 return -EINVAL;
611
612 mutex_lock(&wacom->lock);
613
614 err = wacom_led_putimage(wacom, button_id, buf);
615
616 mutex_unlock(&wacom->lock);
617
618 return err < 0 ? err : count;
619}
620
621#define DEVICE_BTNIMG_ATTR(BUTTON_ID) \
622static ssize_t wacom_btnimg##BUTTON_ID##_store(struct device *dev, \
623 struct device_attribute *attr, const char *buf, size_t count) \
624{ \
625 return wacom_button_image_store(dev, BUTTON_ID, buf, count); \
626} \
627static DEVICE_ATTR(button##BUTTON_ID##_rawimg, S_IWUSR, \
628 NULL, wacom_btnimg##BUTTON_ID##_store)
629
630DEVICE_BTNIMG_ATTR(0);
631DEVICE_BTNIMG_ATTR(1);
632DEVICE_BTNIMG_ATTR(2);
633DEVICE_BTNIMG_ATTR(3);
634DEVICE_BTNIMG_ATTR(4);
635DEVICE_BTNIMG_ATTR(5);
636DEVICE_BTNIMG_ATTR(6);
637DEVICE_BTNIMG_ATTR(7);
638
Ping Cheng09e7d942011-10-04 23:51:14 -0700639static struct attribute *cintiq_led_attrs[] = {
640 &dev_attr_status_led0_select.attr,
641 &dev_attr_status_led1_select.attr,
642 NULL
643};
644
645static struct attribute_group cintiq_led_attr_group = {
646 .name = "wacom_led",
647 .attrs = cintiq_led_attrs,
648};
649
650static struct attribute *intuos4_led_attrs[] = {
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700651 &dev_attr_status0_luminance.attr,
652 &dev_attr_status1_luminance.attr,
Ping Cheng09e7d942011-10-04 23:51:14 -0700653 &dev_attr_status_led0_select.attr,
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700654 &dev_attr_buttons_luminance.attr,
655 &dev_attr_button0_rawimg.attr,
656 &dev_attr_button1_rawimg.attr,
657 &dev_attr_button2_rawimg.attr,
658 &dev_attr_button3_rawimg.attr,
659 &dev_attr_button4_rawimg.attr,
660 &dev_attr_button5_rawimg.attr,
661 &dev_attr_button6_rawimg.attr,
662 &dev_attr_button7_rawimg.attr,
663 NULL
664};
665
Ping Cheng09e7d942011-10-04 23:51:14 -0700666static struct attribute_group intuos4_led_attr_group = {
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700667 .name = "wacom_led",
Ping Cheng09e7d942011-10-04 23:51:14 -0700668 .attrs = intuos4_led_attrs,
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700669};
670
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700671static struct attribute *intuos5_led_attrs[] = {
672 &dev_attr_status0_luminance.attr,
673 &dev_attr_status_led0_select.attr,
674 NULL
675};
676
677static struct attribute_group intuos5_led_attr_group = {
678 .name = "wacom_led",
679 .attrs = intuos5_led_attrs,
680};
681
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700682static int wacom_initialize_leds(struct wacom *wacom)
683{
684 int error;
685
Ping Cheng09e7d942011-10-04 23:51:14 -0700686 /* Initialize default values */
687 switch (wacom->wacom_wac.features.type) {
Jason Gereckea19fc982012-06-12 00:27:53 -0700688 case INTUOS4S:
Ping Cheng09e7d942011-10-04 23:51:14 -0700689 case INTUOS4:
690 case INTUOS4L:
691 wacom->led.select[0] = 0;
692 wacom->led.select[1] = 0;
Ping Chengf4fa9a62011-10-04 23:49:42 -0700693 wacom->led.llv = 10;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700694 wacom->led.hlv = 20;
695 wacom->led.img_lum = 10;
Benjamin Tissoiresc31a4082014-07-24 12:59:45 -0700696 error = sysfs_create_group(&wacom->hdev->dev.kobj,
Ping Cheng09e7d942011-10-04 23:51:14 -0700697 &intuos4_led_attr_group);
698 break;
699
Jason Gerecke246835f2011-12-12 00:12:04 -0800700 case WACOM_24HD:
Ping Cheng09e7d942011-10-04 23:51:14 -0700701 case WACOM_21UX2:
702 wacom->led.select[0] = 0;
703 wacom->led.select[1] = 0;
704 wacom->led.llv = 0;
705 wacom->led.hlv = 0;
706 wacom->led.img_lum = 0;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700707
Benjamin Tissoiresc31a4082014-07-24 12:59:45 -0700708 error = sysfs_create_group(&wacom->hdev->dev.kobj,
Ping Cheng09e7d942011-10-04 23:51:14 -0700709 &cintiq_led_attr_group);
710 break;
711
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700712 case INTUOS5S:
713 case INTUOS5:
714 case INTUOS5L:
Ping Cheng9a35c412013-09-20 09:51:56 -0700715 case INTUOSPS:
716 case INTUOSPM:
717 case INTUOSPL:
Ping Chengc2b0c272013-09-20 09:50:14 -0700718 if (wacom->wacom_wac.features.device_type == BTN_TOOL_PEN) {
719 wacom->led.select[0] = 0;
720 wacom->led.select[1] = 0;
721 wacom->led.llv = 32;
722 wacom->led.hlv = 0;
723 wacom->led.img_lum = 0;
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700724
Benjamin Tissoiresc31a4082014-07-24 12:59:45 -0700725 error = sysfs_create_group(&wacom->hdev->dev.kobj,
Ping Chengc2b0c272013-09-20 09:50:14 -0700726 &intuos5_led_attr_group);
727 } else
728 return 0;
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700729 break;
730
Ping Cheng09e7d942011-10-04 23:51:14 -0700731 default:
732 return 0;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700733 }
734
Ping Cheng09e7d942011-10-04 23:51:14 -0700735 if (error) {
Benjamin Tissoiresc31a4082014-07-24 12:59:45 -0700736 hid_err(wacom->hdev,
Ping Cheng09e7d942011-10-04 23:51:14 -0700737 "cannot create sysfs group err: %d\n", error);
738 return error;
739 }
740 wacom_led_control(wacom);
Benjamin Tissoiresc757cba2014-07-24 13:16:17 -0700741 wacom->led_initialized = true;
Ping Cheng09e7d942011-10-04 23:51:14 -0700742
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700743 return 0;
744}
745
746static void wacom_destroy_leds(struct wacom *wacom)
747{
Benjamin Tissoiresc757cba2014-07-24 13:16:17 -0700748 if (!wacom->led_initialized)
749 return;
750
751 wacom->led_initialized = false;
752
Ping Cheng09e7d942011-10-04 23:51:14 -0700753 switch (wacom->wacom_wac.features.type) {
Jason Gereckea19fc982012-06-12 00:27:53 -0700754 case INTUOS4S:
Ping Cheng09e7d942011-10-04 23:51:14 -0700755 case INTUOS4:
756 case INTUOS4L:
Benjamin Tissoiresc31a4082014-07-24 12:59:45 -0700757 sysfs_remove_group(&wacom->hdev->dev.kobj,
Ping Cheng09e7d942011-10-04 23:51:14 -0700758 &intuos4_led_attr_group);
759 break;
760
Jason Gerecke246835f2011-12-12 00:12:04 -0800761 case WACOM_24HD:
Ping Cheng09e7d942011-10-04 23:51:14 -0700762 case WACOM_21UX2:
Benjamin Tissoiresc31a4082014-07-24 12:59:45 -0700763 sysfs_remove_group(&wacom->hdev->dev.kobj,
Ping Cheng09e7d942011-10-04 23:51:14 -0700764 &cintiq_led_attr_group);
765 break;
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700766
767 case INTUOS5S:
768 case INTUOS5:
769 case INTUOS5L:
Ping Cheng9a35c412013-09-20 09:51:56 -0700770 case INTUOSPS:
771 case INTUOSPM:
772 case INTUOSPL:
Ping Chengc2b0c272013-09-20 09:50:14 -0700773 if (wacom->wacom_wac.features.device_type == BTN_TOOL_PEN)
Benjamin Tissoiresc31a4082014-07-24 12:59:45 -0700774 sysfs_remove_group(&wacom->hdev->dev.kobj,
Ping Chengc2b0c272013-09-20 09:50:14 -0700775 &intuos5_led_attr_group);
Jason Gerecke9b5b95d2012-04-03 15:50:37 -0700776 break;
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -0700777 }
778}
779
Chris Bagwella1d552c2012-03-25 23:26:30 -0700780static enum power_supply_property wacom_battery_props[] = {
Benjamin Tissoiresac8d1012014-07-25 17:29:48 -0700781 POWER_SUPPLY_PROP_STATUS,
Bastien Nocera6e2a6e82013-10-15 23:33:00 -0700782 POWER_SUPPLY_PROP_SCOPE,
Chris Bagwella1d552c2012-03-25 23:26:30 -0700783 POWER_SUPPLY_PROP_CAPACITY
784};
785
Benjamin Tissoires7dbd2292014-07-25 17:32:41 -0700786static enum power_supply_property wacom_ac_props[] = {
787 POWER_SUPPLY_PROP_PRESENT,
788 POWER_SUPPLY_PROP_ONLINE,
789 POWER_SUPPLY_PROP_SCOPE,
790};
791
Chris Bagwella1d552c2012-03-25 23:26:30 -0700792static int wacom_battery_get_property(struct power_supply *psy,
793 enum power_supply_property psp,
794 union power_supply_propval *val)
795{
796 struct wacom *wacom = container_of(psy, struct wacom, battery);
797 int ret = 0;
798
799 switch (psp) {
Bastien Nocera6e2a6e82013-10-15 23:33:00 -0700800 case POWER_SUPPLY_PROP_SCOPE:
801 val->intval = POWER_SUPPLY_SCOPE_DEVICE;
802 break;
Chris Bagwella1d552c2012-03-25 23:26:30 -0700803 case POWER_SUPPLY_PROP_CAPACITY:
804 val->intval =
Benjamin Tissoiresac8d1012014-07-25 17:29:48 -0700805 wacom->wacom_wac.battery_capacity;
806 break;
807 case POWER_SUPPLY_PROP_STATUS:
808 if (wacom->wacom_wac.bat_charging)
809 val->intval = POWER_SUPPLY_STATUS_CHARGING;
810 else if (wacom->wacom_wac.battery_capacity == 100 &&
811 wacom->wacom_wac.ps_connected)
812 val->intval = POWER_SUPPLY_STATUS_FULL;
813 else
814 val->intval = POWER_SUPPLY_STATUS_DISCHARGING;
Chris Bagwella1d552c2012-03-25 23:26:30 -0700815 break;
816 default:
817 ret = -EINVAL;
818 break;
819 }
820
821 return ret;
822}
823
Benjamin Tissoires7dbd2292014-07-25 17:32:41 -0700824static int wacom_ac_get_property(struct power_supply *psy,
825 enum power_supply_property psp,
826 union power_supply_propval *val)
827{
828 struct wacom *wacom = container_of(psy, struct wacom, ac);
829 int ret = 0;
830
831 switch (psp) {
832 case POWER_SUPPLY_PROP_PRESENT:
833 /* fall through */
834 case POWER_SUPPLY_PROP_ONLINE:
835 val->intval = wacom->wacom_wac.ps_connected;
836 break;
837 case POWER_SUPPLY_PROP_SCOPE:
838 val->intval = POWER_SUPPLY_SCOPE_DEVICE;
839 break;
840 default:
841 ret = -EINVAL;
842 break;
843 }
844 return ret;
845}
846
Chris Bagwella1d552c2012-03-25 23:26:30 -0700847static int wacom_initialize_battery(struct wacom *wacom)
848{
Benjamin Tissoiresd70420b92014-07-25 17:31:51 -0700849 static atomic_t battery_no = ATOMIC_INIT(0);
Benjamin Tissoires7dbd2292014-07-25 17:32:41 -0700850 int error;
Benjamin Tissoiresd70420b92014-07-25 17:31:51 -0700851 unsigned long n;
Chris Bagwella1d552c2012-03-25 23:26:30 -0700852
Benjamin Tissoiresac8d1012014-07-25 17:29:48 -0700853 if (wacom->wacom_wac.features.quirks & WACOM_QUIRK_BATTERY) {
Benjamin Tissoiresd70420b92014-07-25 17:31:51 -0700854 n = atomic_inc_return(&battery_no) - 1;
Benjamin Tissoires7dbd2292014-07-25 17:32:41 -0700855
Chris Bagwella1d552c2012-03-25 23:26:30 -0700856 wacom->battery.properties = wacom_battery_props;
857 wacom->battery.num_properties = ARRAY_SIZE(wacom_battery_props);
858 wacom->battery.get_property = wacom_battery_get_property;
Benjamin Tissoiresd70420b92014-07-25 17:31:51 -0700859 sprintf(wacom->wacom_wac.bat_name, "wacom_battery_%ld", n);
860 wacom->battery.name = wacom->wacom_wac.bat_name;
Chris Bagwella1d552c2012-03-25 23:26:30 -0700861 wacom->battery.type = POWER_SUPPLY_TYPE_BATTERY;
862 wacom->battery.use_for_apm = 0;
863
Benjamin Tissoires7dbd2292014-07-25 17:32:41 -0700864 wacom->ac.properties = wacom_ac_props;
865 wacom->ac.num_properties = ARRAY_SIZE(wacom_ac_props);
866 wacom->ac.get_property = wacom_ac_get_property;
867 sprintf(wacom->wacom_wac.ac_name, "wacom_ac_%ld", n);
868 wacom->ac.name = wacom->wacom_wac.ac_name;
869 wacom->ac.type = POWER_SUPPLY_TYPE_MAINS;
870 wacom->ac.use_for_apm = 0;
871
Benjamin Tissoiresdd3181a2014-07-24 13:01:40 -0700872 error = power_supply_register(&wacom->hdev->dev,
Chris Bagwella1d552c2012-03-25 23:26:30 -0700873 &wacom->battery);
Benjamin Tissoires7dbd2292014-07-25 17:32:41 -0700874 if (error)
875 return error;
Chris Bagwellb7af2bb2012-06-12 00:25:23 -0700876
Benjamin Tissoires7dbd2292014-07-25 17:32:41 -0700877 power_supply_powers(&wacom->battery, &wacom->hdev->dev);
878
879 error = power_supply_register(&wacom->hdev->dev, &wacom->ac);
880 if (error) {
881 power_supply_unregister(&wacom->battery);
882 return error;
883 }
884
885 power_supply_powers(&wacom->ac, &wacom->hdev->dev);
Chris Bagwella1d552c2012-03-25 23:26:30 -0700886 }
887
Benjamin Tissoires7dbd2292014-07-25 17:32:41 -0700888 return 0;
Chris Bagwella1d552c2012-03-25 23:26:30 -0700889}
890
891static void wacom_destroy_battery(struct wacom *wacom)
892{
Benjamin Tissoiresac8d1012014-07-25 17:29:48 -0700893 if ((wacom->wacom_wac.features.quirks & WACOM_QUIRK_BATTERY) &&
894 wacom->battery.dev) {
Chris Bagwella1d552c2012-03-25 23:26:30 -0700895 power_supply_unregister(&wacom->battery);
Chris Bagwellb7af2bb2012-06-12 00:25:23 -0700896 wacom->battery.dev = NULL;
Benjamin Tissoires7dbd2292014-07-25 17:32:41 -0700897 power_supply_unregister(&wacom->ac);
898 wacom->ac.dev = NULL;
Chris Bagwellb7af2bb2012-06-12 00:25:23 -0700899 }
Chris Bagwella1d552c2012-03-25 23:26:30 -0700900}
901
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -0700902static ssize_t wacom_show_speed(struct device *dev,
903 struct device_attribute
904 *attr, char *buf)
905{
906 struct hid_device *hdev = container_of(dev, struct hid_device, dev);
907 struct wacom *wacom = hid_get_drvdata(hdev);
908
909 return snprintf(buf, PAGE_SIZE, "%i\n", wacom->wacom_wac.bt_high_speed);
910}
911
912static ssize_t wacom_store_speed(struct device *dev,
913 struct device_attribute *attr,
914 const char *buf, size_t count)
915{
916 struct hid_device *hdev = container_of(dev, struct hid_device, dev);
917 struct wacom *wacom = hid_get_drvdata(hdev);
918 u8 new_speed;
919
920 if (kstrtou8(buf, 0, &new_speed))
921 return -EINVAL;
922
923 if (new_speed != 0 && new_speed != 1)
924 return -EINVAL;
925
926 wacom_bt_query_tablet_data(hdev, new_speed, &wacom->wacom_wac.features);
927
928 return count;
929}
930
931static DEVICE_ATTR(speed, S_IRUGO | S_IWUSR | S_IWGRP,
932 wacom_show_speed, wacom_store_speed);
933
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -0700934static struct input_dev *wacom_allocate_input(struct wacom *wacom)
Chris Bagwell3aac0ef2012-03-25 23:25:45 -0700935{
936 struct input_dev *input_dev;
Benjamin Tissoiresb6c79f22014-07-24 13:00:03 -0700937 struct hid_device *hdev = wacom->hdev;
Chris Bagwell3aac0ef2012-03-25 23:25:45 -0700938 struct wacom_wac *wacom_wac = &(wacom->wacom_wac);
Chris Bagwell3aac0ef2012-03-25 23:25:45 -0700939
940 input_dev = input_allocate_device();
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -0700941 if (!input_dev)
942 return NULL;
Chris Bagwell3aac0ef2012-03-25 23:25:45 -0700943
944 input_dev->name = wacom_wac->name;
Benjamin Tissoiresb6c79f22014-07-24 13:00:03 -0700945 input_dev->phys = hdev->phys;
946 input_dev->dev.parent = &hdev->dev;
Chris Bagwell3aac0ef2012-03-25 23:25:45 -0700947 input_dev->open = wacom_open;
948 input_dev->close = wacom_close;
Benjamin Tissoiresb6c79f22014-07-24 13:00:03 -0700949 input_dev->uniq = hdev->uniq;
950 input_dev->id.bustype = hdev->bus;
951 input_dev->id.vendor = hdev->vendor;
952 input_dev->id.product = hdev->product;
953 input_dev->id.version = hdev->version;
Chris Bagwell3aac0ef2012-03-25 23:25:45 -0700954 input_set_drvdata(input_dev, wacom);
955
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -0700956 return input_dev;
957}
958
Benjamin Tissoires008f4d92014-07-24 12:51:26 -0700959static void wacom_unregister_inputs(struct wacom *wacom)
960{
961 if (wacom->wacom_wac.input)
962 input_unregister_device(wacom->wacom_wac.input);
963 if (wacom->wacom_wac.pad_input)
964 input_unregister_device(wacom->wacom_wac.pad_input);
965 wacom->wacom_wac.input = NULL;
966 wacom->wacom_wac.pad_input = NULL;
967}
968
969static int wacom_register_inputs(struct wacom *wacom)
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -0700970{
971 struct input_dev *input_dev, *pad_input_dev;
972 struct wacom_wac *wacom_wac = &(wacom->wacom_wac);
973 int error;
974
975 input_dev = wacom_allocate_input(wacom);
976 pad_input_dev = wacom_allocate_input(wacom);
977 if (!input_dev || !pad_input_dev) {
978 error = -ENOMEM;
979 goto fail1;
980 }
981
Chris Bagwell3aac0ef2012-03-25 23:25:45 -0700982 wacom_wac->input = input_dev;
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -0700983 wacom_wac->pad_input = pad_input_dev;
984 wacom_wac->pad_input->name = wacom_wac->pad_name;
985
Ping Cheng19635182012-04-29 21:09:18 -0700986 error = wacom_setup_input_capabilities(input_dev, wacom_wac);
987 if (error)
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -0700988 goto fail2;
Chris Bagwell3aac0ef2012-03-25 23:25:45 -0700989
990 error = input_register_device(input_dev);
Ping Cheng19635182012-04-29 21:09:18 -0700991 if (error)
992 goto fail2;
Chris Bagwell3aac0ef2012-03-25 23:25:45 -0700993
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -0700994 error = wacom_setup_pad_input_capabilities(pad_input_dev, wacom_wac);
995 if (error) {
996 /* no pad in use on this interface */
997 input_free_device(pad_input_dev);
998 wacom_wac->pad_input = NULL;
999 pad_input_dev = NULL;
1000 } else {
1001 error = input_register_device(pad_input_dev);
1002 if (error)
1003 goto fail3;
1004 }
1005
Ping Cheng19635182012-04-29 21:09:18 -07001006 return 0;
1007
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07001008fail3:
1009 input_unregister_device(input_dev);
1010 input_dev = NULL;
Ping Cheng19635182012-04-29 21:09:18 -07001011fail2:
Ping Cheng19635182012-04-29 21:09:18 -07001012 wacom_wac->input = NULL;
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07001013 wacom_wac->pad_input = NULL;
Ping Cheng19635182012-04-29 21:09:18 -07001014fail1:
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07001015 if (input_dev)
1016 input_free_device(input_dev);
1017 if (pad_input_dev)
1018 input_free_device(pad_input_dev);
Chris Bagwell3aac0ef2012-03-25 23:25:45 -07001019 return error;
1020}
1021
Chris Bagwell16bf2882012-03-25 23:26:20 -07001022static void wacom_wireless_work(struct work_struct *work)
1023{
1024 struct wacom *wacom = container_of(work, struct wacom, work);
1025 struct usb_device *usbdev = wacom->usbdev;
1026 struct wacom_wac *wacom_wac = &wacom->wacom_wac;
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001027 struct hid_device *hdev1, *hdev2;
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001028 struct wacom *wacom1, *wacom2;
1029 struct wacom_wac *wacom_wac1, *wacom_wac2;
1030 int error;
Chris Bagwell16bf2882012-03-25 23:26:20 -07001031
1032 /*
1033 * Regardless if this is a disconnect or a new tablet,
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001034 * remove any existing input and battery devices.
Chris Bagwell16bf2882012-03-25 23:26:20 -07001035 */
1036
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001037 wacom_destroy_battery(wacom);
1038
Chris Bagwell16bf2882012-03-25 23:26:20 -07001039 /* Stylus interface */
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001040 hdev1 = usb_get_intfdata(usbdev->config->interface[1]);
1041 wacom1 = hid_get_drvdata(hdev1);
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001042 wacom_wac1 = &(wacom1->wacom_wac);
Benjamin Tissoires008f4d92014-07-24 12:51:26 -07001043 wacom_unregister_inputs(wacom1);
Chris Bagwell16bf2882012-03-25 23:26:20 -07001044
1045 /* Touch interface */
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001046 hdev2 = usb_get_intfdata(usbdev->config->interface[2]);
1047 wacom2 = hid_get_drvdata(hdev2);
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001048 wacom_wac2 = &(wacom2->wacom_wac);
Benjamin Tissoires008f4d92014-07-24 12:51:26 -07001049 wacom_unregister_inputs(wacom2);
Chris Bagwell16bf2882012-03-25 23:26:20 -07001050
1051 if (wacom_wac->pid == 0) {
Benjamin Tissoirese2114ce2014-07-24 13:01:56 -07001052 hid_info(wacom->hdev, "wireless tablet disconnected\n");
Benjamin Tissoiresac8d1012014-07-25 17:29:48 -07001053 wacom_wac1->shared->type = 0;
Chris Bagwell16bf2882012-03-25 23:26:20 -07001054 } else {
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001055 const struct hid_device_id *id = wacom_ids;
Chris Bagwell16bf2882012-03-25 23:26:20 -07001056
Benjamin Tissoirese2114ce2014-07-24 13:01:56 -07001057 hid_info(wacom->hdev, "wireless tablet connected with PID %x\n",
Dmitry Torokhoveb71d1b2012-05-02 00:13:38 -07001058 wacom_wac->pid);
Chris Bagwell16bf2882012-03-25 23:26:20 -07001059
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001060 while (id->bus) {
1061 if (id->vendor == USB_VENDOR_ID_WACOM &&
1062 id->product == wacom_wac->pid)
Chris Bagwell16bf2882012-03-25 23:26:20 -07001063 break;
1064 id++;
1065 }
1066
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001067 if (!id->bus) {
Benjamin Tissoirese2114ce2014-07-24 13:01:56 -07001068 hid_info(wacom->hdev, "ignoring unknown PID.\n");
Chris Bagwell16bf2882012-03-25 23:26:20 -07001069 return;
1070 }
1071
1072 /* Stylus interface */
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001073 wacom_wac1->features =
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001074 *((struct wacom_features *)id->driver_data);
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001075 wacom_wac1->features.device_type = BTN_TOOL_PEN;
Ping Cheng57bcfce2013-10-15 23:44:00 -07001076 snprintf(wacom_wac1->name, WACOM_NAME_MAX, "%s (WL) Pen",
1077 wacom_wac1->features.name);
Benjamin Tissoires008f4d92014-07-24 12:51:26 -07001078 snprintf(wacom_wac1->pad_name, WACOM_NAME_MAX, "%s (WL) Pad",
1079 wacom_wac1->features.name);
Ping Cheng961794a2013-12-05 12:54:53 -08001080 wacom_wac1->shared->touch_max = wacom_wac1->features.touch_max;
1081 wacom_wac1->shared->type = wacom_wac1->features.type;
Benjamin Tissoires008f4d92014-07-24 12:51:26 -07001082 error = wacom_register_inputs(wacom1);
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001083 if (error)
Ping Cheng57bcfce2013-10-15 23:44:00 -07001084 goto fail;
Chris Bagwell16bf2882012-03-25 23:26:20 -07001085
1086 /* Touch interface */
Ping Chengb5fd2a32013-11-25 18:44:55 -08001087 if (wacom_wac1->features.touch_max ||
1088 wacom_wac1->features.type == INTUOSHT) {
Ping Cheng57bcfce2013-10-15 23:44:00 -07001089 wacom_wac2->features =
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001090 *((struct wacom_features *)id->driver_data);
Ping Cheng57bcfce2013-10-15 23:44:00 -07001091 wacom_wac2->features.pktlen = WACOM_PKGLEN_BBTOUCH3;
1092 wacom_wac2->features.device_type = BTN_TOOL_FINGER;
1093 wacom_wac2->features.x_max = wacom_wac2->features.y_max = 4096;
1094 if (wacom_wac2->features.touch_max)
1095 snprintf(wacom_wac2->name, WACOM_NAME_MAX,
1096 "%s (WL) Finger",wacom_wac2->features.name);
1097 else
1098 snprintf(wacom_wac2->name, WACOM_NAME_MAX,
1099 "%s (WL) Pad",wacom_wac2->features.name);
Benjamin Tissoires008f4d92014-07-24 12:51:26 -07001100 snprintf(wacom_wac2->pad_name, WACOM_NAME_MAX,
1101 "%s (WL) Pad", wacom_wac2->features.name);
1102 error = wacom_register_inputs(wacom2);
Ping Cheng57bcfce2013-10-15 23:44:00 -07001103 if (error)
1104 goto fail;
Ping Cheng961794a2013-12-05 12:54:53 -08001105
1106 if (wacom_wac1->features.type == INTUOSHT &&
1107 wacom_wac1->features.touch_max)
1108 wacom_wac->shared->touch_input = wacom_wac2->input;
Ping Cheng57bcfce2013-10-15 23:44:00 -07001109 }
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001110
1111 error = wacom_initialize_battery(wacom);
1112 if (error)
Ping Cheng57bcfce2013-10-15 23:44:00 -07001113 goto fail;
Chris Bagwell16bf2882012-03-25 23:26:20 -07001114 }
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001115
1116 return;
1117
Ping Cheng57bcfce2013-10-15 23:44:00 -07001118fail:
Benjamin Tissoires008f4d92014-07-24 12:51:26 -07001119 wacom_unregister_inputs(wacom1);
1120 wacom_unregister_inputs(wacom2);
Chris Bagwellb7af2bb2012-06-12 00:25:23 -07001121 return;
Chris Bagwell16bf2882012-03-25 23:26:20 -07001122}
1123
Ping Cheng401d7d12013-07-28 00:38:54 -07001124/*
1125 * Not all devices report physical dimensions from HID.
1126 * Compute the default from hardcoded logical dimension
1127 * and resolution before driver overwrites them.
1128 */
1129static void wacom_set_default_phy(struct wacom_features *features)
1130{
1131 if (features->x_resolution) {
1132 features->x_phy = (features->x_max * 100) /
1133 features->x_resolution;
1134 features->y_phy = (features->y_max * 100) /
1135 features->y_resolution;
1136 }
1137}
1138
1139static void wacom_calculate_res(struct wacom_features *features)
1140{
1141 features->x_resolution = wacom_calc_hid_res(features->x_max,
1142 features->x_phy,
1143 features->unit,
1144 features->unitExpo);
1145 features->y_resolution = wacom_calc_hid_res(features->y_max,
1146 features->y_phy,
1147 features->unit,
1148 features->unitExpo);
1149}
1150
Benjamin Tissoires01c846f2014-07-24 12:59:11 -07001151static int wacom_hid_report_len(struct hid_report *report)
1152{
1153 /* equivalent to DIV_ROUND_UP(report->size, 8) + !!(report->id > 0) */
1154 return ((report->size - 1) >> 3) + 1 + (report->id > 0);
1155}
1156
1157static size_t wacom_compute_pktlen(struct hid_device *hdev)
1158{
1159 struct hid_report_enum *report_enum;
1160 struct hid_report *report;
1161 size_t size = 0;
1162
1163 report_enum = hdev->report_enum + HID_INPUT_REPORT;
1164
1165 list_for_each_entry(report, &report_enum->report_list, list) {
1166 size_t report_size = wacom_hid_report_len(report);
1167 if (report_size > size)
1168 size = report_size;
1169 }
1170
1171 return size;
1172}
1173
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001174static int wacom_probe(struct hid_device *hdev,
1175 const struct hid_device_id *id)
Ping Cheng3bea7332006-07-13 18:01:36 -07001176{
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001177 struct usb_interface *intf = to_usb_interface(hdev->dev.parent);
Ping Cheng3bea7332006-07-13 18:01:36 -07001178 struct usb_device *dev = interface_to_usbdev(intf);
Ping Cheng3bea7332006-07-13 18:01:36 -07001179 struct wacom *wacom;
1180 struct wacom_wac *wacom_wac;
Jason Childse33da8a2010-02-17 22:38:31 -08001181 struct wacom_features *features;
Jason Childse33da8a2010-02-17 22:38:31 -08001182 int error;
Ping Cheng3bea7332006-07-13 18:01:36 -07001183
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001184 if (!id->driver_data)
Bastian Blankb036f6f2010-02-10 23:06:23 -08001185 return -EINVAL;
1186
Ping Cheng3bea7332006-07-13 18:01:36 -07001187 wacom = kzalloc(sizeof(struct wacom), GFP_KERNEL);
Dan Carpenterf1823942012-03-29 22:38:11 -07001188 if (!wacom)
1189 return -ENOMEM;
Ping Cheng3bea7332006-07-13 18:01:36 -07001190
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001191 hid_set_drvdata(hdev, wacom);
1192 wacom->hdev = hdev;
1193
Benjamin Tissoiresba9a3542014-07-24 12:58:45 -07001194 /* ask for the report descriptor to be loaded by HID */
1195 error = hid_parse(hdev);
1196 if (error) {
1197 hid_err(hdev, "parse failed\n");
1198 goto fail1;
1199 }
1200
Dmitry Torokhov51269fe2010-03-19 22:18:15 -07001201 wacom_wac = &wacom->wacom_wac;
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001202 wacom_wac->features = *((struct wacom_features *)id->driver_data);
Jason Childse33da8a2010-02-17 22:38:31 -08001203 features = &wacom_wac->features;
Benjamin Tissoires01c846f2014-07-24 12:59:11 -07001204 features->pktlen = wacom_compute_pktlen(hdev);
Jason Childse33da8a2010-02-17 22:38:31 -08001205 if (features->pktlen > WACOM_PKGLEN_MAX) {
1206 error = -EINVAL;
Ping Cheng3bea7332006-07-13 18:01:36 -07001207 goto fail1;
Jason Childse33da8a2010-02-17 22:38:31 -08001208 }
1209
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001210 if (features->check_for_hid_type && features->hid_type != hdev->type) {
1211 error = -ENODEV;
Jason Childse33da8a2010-02-17 22:38:31 -08001212 goto fail1;
1213 }
Ping Cheng3bea7332006-07-13 18:01:36 -07001214
Ping Cheng3bea7332006-07-13 18:01:36 -07001215 wacom->usbdev = dev;
Oliver Neukume7224092008-04-15 01:31:57 -04001216 wacom->intf = intf;
1217 mutex_init(&wacom->lock);
Chris Bagwell16bf2882012-03-25 23:26:20 -07001218 INIT_WORK(&wacom->work, wacom_wireless_work);
Ping Cheng3bea7332006-07-13 18:01:36 -07001219
Ping Cheng401d7d12013-07-28 00:38:54 -07001220 /* set the default size in case we do not get them from hid */
1221 wacom_set_default_phy(features);
1222
Ping Chengf393ee22012-04-29 21:09:17 -07001223 /* Retrieve the physical and logical size for touch devices */
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -07001224 wacom_retrieve_hid_descriptor(hdev, features);
Ping Cheng545f4e92008-11-24 11:44:27 -05001225
Jason Gereckeae584ca2012-04-03 15:50:40 -07001226 /*
1227 * Intuos5 has no useful data about its touch interface in its
Benjamin Tissoires01c846f2014-07-24 12:59:11 -07001228 * HID descriptor. If this is the touch interface (PacketSize
Jason Gereckeae584ca2012-04-03 15:50:40 -07001229 * of WACOM_PKGLEN_BBTOUCH3), override the table values.
1230 */
Ping Chengb5fd2a32013-11-25 18:44:55 -08001231 if (features->type >= INTUOS5S && features->type <= INTUOSHT) {
Benjamin Tissoires01c846f2014-07-24 12:59:11 -07001232 if (features->pktlen == WACOM_PKGLEN_BBTOUCH3) {
Jason Gereckeae584ca2012-04-03 15:50:40 -07001233 features->device_type = BTN_TOOL_FINGER;
Jason Gereckeae584ca2012-04-03 15:50:40 -07001234
Jason Gereckeae584ca2012-04-03 15:50:40 -07001235 features->x_max = 4096;
1236 features->y_max = 4096;
1237 } else {
1238 features->device_type = BTN_TOOL_PEN;
1239 }
1240 }
1241
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -07001242 /*
1243 * Same thing for Bamboo 3rd gen.
1244 */
1245 if ((features->type == BAMBOO_PT) &&
1246 (features->pktlen == WACOM_PKGLEN_BBTOUCH3) &&
1247 (features->device_type == BTN_TOOL_PEN)) {
1248 features->device_type = BTN_TOOL_FINGER;
1249
1250 features->x_max = 4096;
1251 features->y_max = 4096;
1252 }
1253
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -07001254 if (hdev->bus == BUS_BLUETOOTH)
1255 features->quirks |= WACOM_QUIRK_BATTERY;
1256
Henrik Rydbergbc73dd32010-09-05 12:26:16 -07001257 wacom_setup_device_quirks(features);
1258
Ping Cheng401d7d12013-07-28 00:38:54 -07001259 /* set unit to "100th of a mm" for devices not reported by HID */
1260 if (!features->unit) {
1261 features->unit = 0x11;
Benjamin Tissoiresc669fb22014-07-24 13:02:14 -07001262 features->unitExpo = -3;
Ping Cheng401d7d12013-07-28 00:38:54 -07001263 }
1264 wacom_calculate_res(features);
1265
Ping Cheng49b764a2010-02-20 00:53:49 -08001266 strlcpy(wacom_wac->name, features->name, sizeof(wacom_wac->name));
Benjamin Tissoiresd2d13f12014-07-24 12:48:28 -07001267 snprintf(wacom_wac->pad_name, sizeof(wacom_wac->pad_name),
1268 "%s Pad", features->name);
Ping Cheng49b764a2010-02-20 00:53:49 -08001269
Henrik Rydbergbc73dd32010-09-05 12:26:16 -07001270 if (features->quirks & WACOM_QUIRK_MULTI_INPUT) {
Ping Cheng49b764a2010-02-20 00:53:49 -08001271 /* Append the device type to the name */
Ping Cheng57bcfce2013-10-15 23:44:00 -07001272 if (features->device_type != BTN_TOOL_FINGER)
1273 strlcat(wacom_wac->name, " Pen", WACOM_NAME_MAX);
1274 else if (features->touch_max)
1275 strlcat(wacom_wac->name, " Finger", WACOM_NAME_MAX);
1276 else
1277 strlcat(wacom_wac->name, " Pad", WACOM_NAME_MAX);
Ping Cheng4492eff2010-03-19 22:18:15 -07001278
Benjamin Tissoires4451e082014-07-24 13:01:05 -07001279 error = wacom_add_shared_data(hdev);
Ping Cheng4492eff2010-03-19 22:18:15 -07001280 if (error)
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001281 goto fail1;
Ping Cheng49b764a2010-02-20 00:53:49 -08001282 }
1283
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001284 error = wacom_initialize_leds(wacom);
Dmitry Torokhov50141862007-04-12 01:33:39 -04001285 if (error)
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001286 goto fail2;
Ping Cheng3bea7332006-07-13 18:01:36 -07001287
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -07001288 if (!(features->quirks & WACOM_QUIRK_MONITOR) &&
1289 (features->quirks & WACOM_QUIRK_BATTERY)) {
1290 error = wacom_initialize_battery(wacom);
1291 if (error)
1292 goto fail3;
1293 }
1294
Chris Bagwelld3825d52012-03-25 23:26:11 -07001295 if (!(features->quirks & WACOM_QUIRK_NO_INPUT)) {
Benjamin Tissoires008f4d92014-07-24 12:51:26 -07001296 error = wacom_register_inputs(wacom);
Chris Bagwelld3825d52012-03-25 23:26:11 -07001297 if (error)
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -07001298 goto fail4;
1299 }
1300
1301 if (hdev->bus == BUS_BLUETOOTH) {
1302 error = device_create_file(&hdev->dev, &dev_attr_speed);
1303 if (error)
1304 hid_warn(hdev,
1305 "can't create sysfs speed attribute err: %d\n",
1306 error);
Chris Bagwelld3825d52012-03-25 23:26:11 -07001307 }
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001308
Ping Chengec67bbe2009-12-15 00:35:24 -08001309 /* Note that if query fails it is not a hard failure */
Benjamin Tissoires27b20a92014-07-24 12:56:22 -07001310 wacom_query_tablet_data(hdev, features);
Ping Cheng3bea7332006-07-13 18:01:36 -07001311
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001312 /* Regular HID work starts now */
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001313 error = hid_hw_start(hdev, HID_CONNECT_HIDRAW);
1314 if (error) {
1315 hid_err(hdev, "hw start failed\n");
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -07001316 goto fail5;
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001317 }
1318
1319 if (features->quirks & WACOM_QUIRK_MONITOR)
1320 error = hid_hw_open(hdev);
1321
Ping Cheng961794a2013-12-05 12:54:53 -08001322 if (wacom_wac->features.type == INTUOSHT && wacom_wac->features.touch_max) {
1323 if (wacom_wac->features.device_type == BTN_TOOL_FINGER)
1324 wacom_wac->shared->touch_input = wacom_wac->input;
1325 }
1326
Ping Cheng3bea7332006-07-13 18:01:36 -07001327 return 0;
1328
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -07001329 fail5: if (hdev->bus == BUS_BLUETOOTH)
1330 device_remove_file(&hdev->dev, &dev_attr_speed);
1331 wacom_unregister_inputs(wacom);
1332 fail4: wacom_destroy_battery(wacom);
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001333 fail3: wacom_destroy_leds(wacom);
1334 fail2: wacom_remove_shared_data(wacom_wac);
Chris Bagwell3aac0ef2012-03-25 23:25:45 -07001335 fail1: kfree(wacom);
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001336 hid_set_drvdata(hdev, NULL);
Dmitry Torokhov50141862007-04-12 01:33:39 -04001337 return error;
Ping Cheng3bea7332006-07-13 18:01:36 -07001338}
1339
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001340static void wacom_remove(struct hid_device *hdev)
Ping Cheng3bea7332006-07-13 18:01:36 -07001341{
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001342 struct wacom *wacom = hid_get_drvdata(hdev);
Ping Cheng3bea7332006-07-13 18:01:36 -07001343
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001344 hid_hw_stop(hdev);
Oliver Neukume7224092008-04-15 01:31:57 -04001345
Chris Bagwell16bf2882012-03-25 23:26:20 -07001346 cancel_work_sync(&wacom->work);
Benjamin Tissoires008f4d92014-07-24 12:51:26 -07001347 wacom_unregister_inputs(wacom);
Benjamin Tissoiresf81a1292014-08-06 13:48:01 -07001348 if (hdev->bus == BUS_BLUETOOTH)
1349 device_remove_file(&hdev->dev, &dev_attr_speed);
Chris Bagwella1d552c2012-03-25 23:26:30 -07001350 wacom_destroy_battery(wacom);
Eduard Hasenleithner5d7e7d42011-09-07 14:08:54 -07001351 wacom_destroy_leds(wacom);
Dmitry Torokhov51269fe2010-03-19 22:18:15 -07001352 wacom_remove_shared_data(&wacom->wacom_wac);
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001353
1354 hid_set_drvdata(hdev, NULL);
Oliver Neukume7224092008-04-15 01:31:57 -04001355 kfree(wacom);
1356}
1357
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001358static int wacom_resume(struct hid_device *hdev)
Oliver Neukume7224092008-04-15 01:31:57 -04001359{
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001360 struct wacom *wacom = hid_get_drvdata(hdev);
1361 struct wacom_features *features = &wacom->wacom_wac.features;
Oliver Neukume7224092008-04-15 01:31:57 -04001362
1363 mutex_lock(&wacom->lock);
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001364
1365 /* switch to wacom mode first */
Benjamin Tissoires27b20a92014-07-24 12:56:22 -07001366 wacom_query_tablet_data(hdev, features);
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001367 wacom_led_control(wacom);
1368
Oliver Neukume7224092008-04-15 01:31:57 -04001369 mutex_unlock(&wacom->lock);
1370
1371 return 0;
1372}
1373
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001374static int wacom_reset_resume(struct hid_device *hdev)
Oliver Neukume7224092008-04-15 01:31:57 -04001375{
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001376 return wacom_resume(hdev);
Oliver Neukume7224092008-04-15 01:31:57 -04001377}
1378
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001379static struct hid_driver wacom_driver = {
Ping Cheng3bea7332006-07-13 18:01:36 -07001380 .name = "wacom",
Bastian Blankb036f6f2010-02-10 23:06:23 -08001381 .id_table = wacom_ids,
Ping Cheng3bea7332006-07-13 18:01:36 -07001382 .probe = wacom_probe,
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001383 .remove = wacom_remove,
1384#ifdef CONFIG_PM
Oliver Neukume7224092008-04-15 01:31:57 -04001385 .resume = wacom_resume,
1386 .reset_resume = wacom_reset_resume,
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001387#endif
1388 .raw_event = wacom_raw_event,
Ping Cheng3bea7332006-07-13 18:01:36 -07001389};
Benjamin Tissoires29b47392014-07-24 12:52:23 -07001390module_hid_driver(wacom_driver);