wacom_sys.c 50.1 KB
Newer Older
1
/*
2
 * drivers/input/tablet/wacom_sys.c
3
 *
4
 *  USB Wacom tablet support - system specific code
5 6 7 8 9 10 11 12 13 14
 */

/*
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 */

#include "wacom_wac.h"
15
#include "wacom.h"
16
#include <linux/input/mt.h>
17

18
#define WAC_MSG_RETRIES		5
19

20
#define WAC_CMD_WL_LED_CONTROL	0x03
21 22 23
#define WAC_CMD_LED_CONTROL	0x20
#define WAC_CMD_ICON_START	0x21
#define WAC_CMD_ICON_XFER	0x23
24
#define WAC_CMD_ICON_BT_XFER	0x26
25
#define WAC_CMD_RETRIES		10
26 27 28
#define WAC_CMD_DELETE_PAIRING	0x20
#define WAC_CMD_UNPAIR_ALL	0xFF
#define WAC_REMOTE_SERIAL_MAX_STRLEN	9
29

30 31
#define DEV_ATTR_RW_PERM (S_IRUGO | S_IWUSR | S_IWGRP)
#define DEV_ATTR_WO_PERM (S_IWUSR | S_IWGRP)
32
#define DEV_ATTR_RO_PERM (S_IRUSR | S_IRGRP)
33

34 35
static int wacom_get_report(struct hid_device *hdev, u8 type, u8 *buf,
			    size_t size, unsigned int retries)
36
{
37 38 39
	int retval;

	do {
40
		retval = hid_hw_raw_request(hdev, buf[0], buf, size, type,
41
				HID_REQ_GET_REPORT);
42 43 44 45 46
	} while ((retval == -ETIMEDOUT || retval == -EAGAIN) && --retries);

	if (retval < 0)
		hid_err(hdev, "wacom_get_report: ran out of retries "
			"(last error = %d)\n", retval);
47 48

	return retval;
49 50
}

51 52
static int wacom_set_report(struct hid_device *hdev, u8 type, u8 *buf,
			    size_t size, unsigned int retries)
53
{
54 55 56
	int retval;

	do {
57
		retval = hid_hw_raw_request(hdev, buf[0], buf, size, type,
58
				HID_REQ_SET_REPORT);
59 60 61 62 63
	} while ((retval == -ETIMEDOUT || retval == -EAGAIN) && --retries);

	if (retval < 0)
		hid_err(hdev, "wacom_set_report: ran out of retries "
			"(last error = %d)\n", retval);
64 65

	return retval;
66 67
}

68 69
static int wacom_raw_event(struct hid_device *hdev, struct hid_report *report,
		u8 *raw_data, int size)
70
{
71
	struct wacom *wacom = hid_get_drvdata(hdev);
72

73 74
	if (size > WACOM_PKGLEN_MAX)
		return 1;
75

76
	memcpy(wacom->wacom_wac.data, raw_data, size);
77

78 79 80
	wacom_wac_irq(&wacom->wacom_wac, size);

	return 0;
81 82 83 84
}

static int wacom_open(struct input_dev *dev)
{
85
	struct wacom *wacom = input_get_drvdata(dev);
86

87
	return hid_hw_open(wacom->hdev);
88 89 90 91
}

static void wacom_close(struct input_dev *dev)
{
92
	struct wacom *wacom = input_get_drvdata(dev);
93

94 95 96 97 98 99
	/*
	 * wacom->hdev should never be null, but surprisingly, I had the case
	 * once while unplugging the Wacom Wireless Receiver.
	 */
	if (wacom->hdev)
		hid_hw_close(wacom->hdev);
100 101
}

102
/*
103
 * Calculate the resolution of the X or Y axis using hidinput_calc_abs_res.
104 105
 */
static int wacom_calc_hid_res(int logical_extents, int physical_extents,
106
			       unsigned unit, int exponent)
107
{
108 109 110 111 112 113 114 115
	struct hid_field field = {
		.logical_maximum = logical_extents,
		.physical_maximum = physical_extents,
		.unit = unit,
		.unit_exponent = exponent,
	};

	return hidinput_calc_abs_res(&field, ABS_X);
116 117
}

118 119
static void wacom_feature_mapping(struct hid_device *hdev,
		struct hid_field *field, struct hid_usage *usage)
120
{
121 122
	struct wacom *wacom = hid_get_drvdata(hdev);
	struct wacom_features *features = &wacom->wacom_wac.features;
123
	struct hid_data *hid_data = &wacom->wacom_wac.hid_data;
124 125
	u8 *data;
	int ret;
126

127 128 129
	switch (usage->hid) {
	case HID_DG_CONTACTMAX:
		/* leave touch_max as is if predefined */
130 131 132 133 134 135 136
		if (!features->touch_max) {
			/* read manually */
			data = kzalloc(2, GFP_KERNEL);
			if (!data)
				break;
			data[0] = field->report->id;
			ret = wacom_get_report(hdev, HID_FEATURE_REPORT,
137 138
						data, 2, WAC_CMD_RETRIES);
			if (ret == 2) {
139
				features->touch_max = data[1];
140 141 142 143 144 145 146
			} else {
				features->touch_max = 16;
				hid_warn(hdev, "wacom_feature_mapping: "
					 "could not get HID_DG_CONTACTMAX, "
					 "defaulting to %d\n",
					  features->touch_max);
			}
147 148
			kfree(data);
		}
149
		break;
150 151 152 153 154 155 156 157 158 159
	case HID_DG_INPUTMODE:
		/* Ignore if value index is out of bounds. */
		if (usage->usage_index >= field->report_count) {
			dev_err(&hdev->dev, "HID_DG_INPUTMODE out of range\n");
			break;
		}

		hid_data->inputmode = field->report->id;
		hid_data->inputmode_index = usage->usage_index;
		break;
160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178

	case HID_UP_DIGITIZER:
		if (field->report->id == 0x0B &&
		    (field->application == WACOM_G9_DIGITIZER ||
		     field->application == WACOM_G11_DIGITIZER)) {
			wacom->wacom_wac.mode_report = field->report->id;
			wacom->wacom_wac.mode_value = 0;
		}
		break;

	case WACOM_G9_PAGE:
	case WACOM_G11_PAGE:
		if (field->report->id == 0x03 &&
		    (field->application == WACOM_G9_TOUCHSCREEN ||
		     field->application == WACOM_G11_TOUCHSCREEN)) {
			wacom->wacom_wac.mode_report = field->report->id;
			wacom->wacom_wac.mode_value = 0;
		}
		break;
179 180 181
	}
}

182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
/*
 * Interface Descriptor of wacom devices can be incomplete and
 * inconsistent so wacom_features table is used to store stylus
 * device's packet lengths, various maximum values, and tablet
 * resolution based on product ID's.
 *
 * For devices that contain 2 interfaces, wacom_features table is
 * inaccurate for the touch interface.  Since the Interface Descriptor
 * for touch interfaces has pretty complete data, this function exists
 * to query tablet for this missing information instead of hard coding in
 * an additional table.
 *
 * A typical Interface Descriptor for a stylus will contain a
 * boot mouse application collection that is not of interest and this
 * function will ignore it.
 *
 * It also contains a digitizer application collection that also is not
 * of interest since any information it contains would be duplicate
 * of what is in wacom_features. Usually it defines a report of an array
 * of bytes that could be used as max length of the stylus packet returned.
 * If it happens to define a Digitizer-Stylus Physical Collection then
 * the X and Y logical values contain valid data but it is ignored.
 *
 * A typical Interface Descriptor for a touch interface will contain a
 * Digitizer-Finger Physical Collection which will define both logical
 * X/Y maximum as well as the physical size of tablet. Since touch
 * interfaces haven't supported pressure or distance, this is enough
 * information to override invalid values in the wacom_features table.
210
 *
211 212
 * Intuos5 touch interface and 3rd gen Bamboo Touch do not contain useful
 * data. We deal with them after returning from this function.
213
 */
214 215
static void wacom_usage_mapping(struct hid_device *hdev,
		struct hid_field *field, struct hid_usage *usage)
216
{
217 218
	struct wacom *wacom = hid_get_drvdata(hdev);
	struct wacom_features *features = &wacom->wacom_wac.features;
219 220
	bool finger = WACOM_FINGER_FIELD(field);
	bool pen = WACOM_PEN_FIELD(field);
221

222 223 224 225 226
	/*
	* Requiring Stylus Usage will ignore boot mouse
	* X/Y values and some cases of invalid Digitizer X/Y
	* values commonly reported.
	*/
227
	if (pen)
228
		features->device_type |= WACOM_DEVICETYPE_PEN;
229
	else if (finger)
230
		features->device_type |= WACOM_DEVICETYPE_TOUCH;
231
	else
232 233
		return;

234 235 236 237
	/*
	 * Bamboo models do not support HID_DG_CONTACTMAX.
	 * And, Bamboo Pen only descriptor contains touch.
	 */
238
	if (features->type > BAMBOO_PT) {
239 240 241 242
		/* ISDv4 touch devices at least supports one touch point */
		if (finger && !features->touch_max)
			features->touch_max = 1;
	}
243 244 245 246 247 248

	switch (usage->hid) {
	case HID_GD_X:
		features->x_max = field->logical_maximum;
		if (finger) {
			features->x_phy = field->physical_maximum;
249 250
			if ((features->type != BAMBOO_PT) &&
			    (features->type != BAMBOO_TOUCH)) {
251 252
				features->unit = field->unit;
				features->unitExpo = field->unit_exponent;
253
			}
254 255 256 257 258 259
		}
		break;
	case HID_GD_Y:
		features->y_max = field->logical_maximum;
		if (finger) {
			features->y_phy = field->physical_maximum;
260 261
			if ((features->type != BAMBOO_PT) &&
			    (features->type != BAMBOO_TOUCH)) {
262 263 264 265 266 267 268 269 270 271
				features->unit = field->unit;
				features->unitExpo = field->unit_exponent;
			}
		}
		break;
	case HID_DG_TIPPRESSURE:
		if (pen)
			features->pressure_max = field->logical_maximum;
		break;
	}
272 273 274

	if (features->type == HID_GENERIC)
		wacom_wac_usage_mapping(hdev, field, usage);
275
}
276

277 278 279 280 281 282 283 284 285
static void wacom_post_parse_hid(struct hid_device *hdev,
				 struct wacom_features *features)
{
	struct wacom *wacom = hid_get_drvdata(hdev);
	struct wacom_wac *wacom_wac = &wacom->wacom_wac;

	if (features->type == HID_GENERIC) {
		/* Any last-minute generic device setup */
		if (features->touch_max > 1) {
286
			input_mt_init_slots(wacom_wac->touch_input, wacom_wac->features.touch_max,
287 288 289 290 291
				    INPUT_MT_DIRECT);
		}
	}
}

292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309
static void wacom_parse_hid(struct hid_device *hdev,
			   struct wacom_features *features)
{
	struct hid_report_enum *rep_enum;
	struct hid_report *hreport;
	int i, j;

	/* check features first */
	rep_enum = &hdev->report_enum[HID_FEATURE_REPORT];
	list_for_each_entry(hreport, &rep_enum->report_list, list) {
		for (i = 0; i < hreport->maxfield; i++) {
			/* Ignore if report count is out of bounds. */
			if (hreport->field[i]->report_count < 1)
				continue;

			for (j = 0; j < hreport->field[i]->maxusage; j++) {
				wacom_feature_mapping(hdev, hreport->field[i],
						hreport->field[i]->usage + j);
310
			}
311 312 313
		}
	}

314 315 316 317 318 319 320 321 322 323 324 325
	/* now check the input usages */
	rep_enum = &hdev->report_enum[HID_INPUT_REPORT];
	list_for_each_entry(hreport, &rep_enum->report_list, list) {

		if (!hreport->maxfield)
			continue;

		for (i = 0; i < hreport->maxfield; i++)
			for (j = 0; j < hreport->field[i]->maxusage; j++)
				wacom_usage_mapping(hdev, hreport->field[i],
						hreport->field[i]->usage + j);
	}
326 327

	wacom_post_parse_hid(hdev, features);
328 329
}

330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348
static int wacom_hid_set_device_mode(struct hid_device *hdev)
{
	struct wacom *wacom = hid_get_drvdata(hdev);
	struct hid_data *hid_data = &wacom->wacom_wac.hid_data;
	struct hid_report *r;
	struct hid_report_enum *re;

	if (hid_data->inputmode < 0)
		return 0;

	re = &(hdev->report_enum[HID_FEATURE_REPORT]);
	r = re->report_id_hash[hid_data->inputmode];
	if (r) {
		r->field[0]->value[hid_data->inputmode_index] = 2;
		hid_hw_request(hdev, r, HID_REQ_SET_REPORT);
	}
	return 0;
}

349 350
static int wacom_set_device_mode(struct hid_device *hdev,
				 struct wacom_wac *wacom_wac)
351
{
352 353 354 355
	u8 *rep_data;
	struct hid_report *r;
	struct hid_report_enum *re;
	int length;
356
	int error = -ENOMEM, limit = 0;
357

358 359 360 361 362 363 364 365 366
	if (wacom_wac->mode_report < 0)
		return 0;

	re = &(hdev->report_enum[HID_FEATURE_REPORT]);
	r = re->report_id_hash[wacom_wac->mode_report];
	if (!r)
		return -EINVAL;

	rep_data = hid_alloc_report_buf(r, GFP_KERNEL);
367
	if (!rep_data)
368 369 370
		return -ENOMEM;

	length = hid_report_len(r);
371

372
	do {
373 374
		rep_data[0] = wacom_wac->mode_report;
		rep_data[1] = wacom_wac->mode_value;
375

376 377
		error = wacom_set_report(hdev, HID_FEATURE_REPORT, rep_data,
					 length, 1);
378
		if (error >= 0)
379
			error = wacom_get_report(hdev, HID_FEATURE_REPORT,
380
			                         rep_data, length, 1);
381 382 383
	} while (error >= 0 &&
		 rep_data[1] != wacom_wac->mode_report &&
		 limit++ < WAC_MSG_RETRIES);
384 385 386 387 388 389

	kfree(rep_data);

	return error < 0 ? error : 0;
}

390 391 392
static int wacom_bt_query_tablet_data(struct hid_device *hdev, u8 speed,
		struct wacom_features *features)
{
393 394 395 396 397 398 399 400
	struct wacom *wacom = hid_get_drvdata(hdev);
	int ret;
	u8 rep_data[2];

	switch (features->type) {
	case GRAPHIRE_BT:
		rep_data[0] = 0x03;
		rep_data[1] = 0x00;
401 402
		ret = wacom_set_report(hdev, HID_FEATURE_REPORT, rep_data, 2,
					3);
403 404 405 406 407 408

		if (ret >= 0) {
			rep_data[0] = speed == 0 ? 0x05 : 0x06;
			rep_data[1] = 0x00;

			ret = wacom_set_report(hdev, HID_FEATURE_REPORT,
409
						rep_data, 2, 3);
410 411 412 413 414 415 416 417 418 419 420 421 422 423

			if (ret >= 0) {
				wacom->wacom_wac.bt_high_speed = speed;
				return 0;
			}
		}

		/*
		 * Note that if the raw queries fail, it's not a hard failure
		 * and it is safe to continue
		 */
		hid_warn(hdev, "failed to poke device, command %d, err %d\n",
			 rep_data[0], ret);
		break;
424 425 426 427 428 429 430 431 432
	case INTUOS4WL:
		if (speed == 1)
			wacom->wacom_wac.bt_features &= ~0x20;
		else
			wacom->wacom_wac.bt_features |= 0x20;

		rep_data[0] = 0x03;
		rep_data[1] = wacom->wacom_wac.bt_features;

433 434
		ret = wacom_set_report(hdev, HID_FEATURE_REPORT, rep_data, 2,
					1);
435 436 437
		if (ret >= 0)
			wacom->wacom_wac.bt_high_speed = speed;
		break;
438 439
	}

440 441 442
	return 0;
}

443 444 445 446 447 448 449
/*
 * Switch the tablet into its most-capable mode. Wacom tablets are
 * typically configured to power-up in a mode which sends mouse-like
 * reports to the OS. To get absolute position, pressure data, etc.
 * from the tablet, it is necessary to switch the tablet out of this
 * mode and into one which sends the full range of tablet data.
 */
450 451
static int wacom_query_tablet_data(struct hid_device *hdev,
		struct wacom_features *features)
452
{
453 454 455
	struct wacom *wacom = hid_get_drvdata(hdev);
	struct wacom_wac *wacom_wac = &wacom->wacom_wac;

456 457 458
	if (hdev->bus == BUS_BLUETOOTH)
		return wacom_bt_query_tablet_data(hdev, 1, features);

459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479
	if (features->type != HID_GENERIC) {
		if (features->device_type & WACOM_DEVICETYPE_TOUCH) {
			if (features->type > TABLETPC) {
				/* MT Tablet PC touch */
				wacom_wac->mode_report = 3;
				wacom_wac->mode_value = 4;
			} else if (features->type == WACOM_24HDT) {
				wacom_wac->mode_report = 18;
				wacom_wac->mode_value = 2;
			} else if (features->type == WACOM_27QHDT) {
				wacom_wac->mode_report = 131;
				wacom_wac->mode_value = 2;
			} else if (features->type == BAMBOO_PAD) {
				wacom_wac->mode_report = 2;
				wacom_wac->mode_value = 2;
			}
		} else if (features->device_type & WACOM_DEVICETYPE_PEN) {
			if (features->type <= BAMBOO_PT) {
				wacom_wac->mode_report = 2;
				wacom_wac->mode_value = 2;
			}
480
		}
481
	}
482

483 484 485 486 487
	wacom_set_device_mode(hdev, wacom_wac);

	if (features->type == HID_GENERIC)
		return wacom_hid_set_device_mode(hdev);

488
	return 0;
489 490
}

491
static void wacom_retrieve_hid_descriptor(struct hid_device *hdev,
492
					 struct wacom_features *features)
493
{
494 495
	struct wacom *wacom = hid_get_drvdata(hdev);
	struct usb_interface *intf = wacom->intf;
496

497 498 499 500
	/* default features */
	features->x_fuzz = 4;
	features->y_fuzz = 4;
	features->pressure_fuzz = 0;
501 502
	features->distance_fuzz = 1;
	features->tilt_fuzz = 1;
503

504 505 506 507 508 509 510
	/*
	 * The wireless device HID is basic and layout conflicts with
	 * other tablets (monitor and touch interface can look like pen).
	 * Skip the query for this type and modify defaults based on
	 * interface number.
	 */
	if (features->type == WIRELESS) {
511
		if (intf->cur_altsetting->desc.bInterfaceNumber == 0)
512
			features->device_type = WACOM_DEVICETYPE_WL_MONITOR;
513
		else
514
			features->device_type = WACOM_DEVICETYPE_NONE;
515
		return;
516 517
	}

518
	wacom_parse_hid(hdev, features);
519 520
}

521
struct wacom_hdev_data {
522 523
	struct list_head list;
	struct kref kref;
524
	struct hid_device *dev;
525 526 527 528 529 530
	struct wacom_shared shared;
};

static LIST_HEAD(wacom_udev_list);
static DEFINE_MUTEX(wacom_udev_list_lock);

531 532
static bool wacom_are_sibling(struct hid_device *hdev,
		struct hid_device *sibling)
533
{
534 535 536 537 538 539 540 541 542 543
	struct wacom *wacom = hid_get_drvdata(hdev);
	struct wacom_features *features = &wacom->wacom_wac.features;
	int vid = features->oVid;
	int pid = features->oPid;
	int n1,n2;

	if (vid == 0 && pid == 0) {
		vid = hdev->vendor;
		pid = hdev->product;
	}
544

545 546
	if (vid != sibling->vendor || pid != sibling->product)
		return false;
547

548 549 550 551 552
	/* Compare the physical path. */
	n1 = strrchr(hdev->phys, '.') - hdev->phys;
	n2 = strrchr(sibling->phys, '.') - sibling->phys;
	if (n1 != n2 || n1 <= 0 || n2 <= 0)
		return false;
553

554
	return !strncmp(hdev->phys, sibling->phys, n1);
555 556
}

557
static struct wacom_hdev_data *wacom_get_hdev_data(struct hid_device *hdev)
558
{
559
	struct wacom_hdev_data *data;
560 561

	list_for_each_entry(data, &wacom_udev_list, list) {
562
		if (wacom_are_sibling(hdev, data->dev)) {
563 564 565 566 567 568 569 570
			kref_get(&data->kref);
			return data;
		}
	}

	return NULL;
}

571
static int wacom_add_shared_data(struct hid_device *hdev)
572
{
573 574 575
	struct wacom *wacom = hid_get_drvdata(hdev);
	struct wacom_wac *wacom_wac = &wacom->wacom_wac;
	struct wacom_hdev_data *data;
576 577 578 579
	int retval = 0;

	mutex_lock(&wacom_udev_list_lock);

580
	data = wacom_get_hdev_data(hdev);
581
	if (!data) {
582
		data = kzalloc(sizeof(struct wacom_hdev_data), GFP_KERNEL);
583 584 585 586 587 588
		if (!data) {
			retval = -ENOMEM;
			goto out;
		}

		kref_init(&data->kref);
589
		data->dev = hdev;
590 591 592
		list_add_tail(&data->list, &wacom_udev_list);
	}

593
	wacom_wac->shared = &data->shared;
594

595
	if (wacom_wac->features.device_type & WACOM_DEVICETYPE_TOUCH)
596
		wacom_wac->shared->touch = hdev;
597
	else if (wacom_wac->features.device_type & WACOM_DEVICETYPE_PEN)
598 599
		wacom_wac->shared->pen = hdev;

600 601 602 603 604 605 606
out:
	mutex_unlock(&wacom_udev_list_lock);
	return retval;
}

static void wacom_release_shared_data(struct kref *kref)
{
607 608
	struct wacom_hdev_data *data =
		container_of(kref, struct wacom_hdev_data, kref);
609 610 611 612 613 614 615 616

	mutex_lock(&wacom_udev_list_lock);
	list_del(&data->list);
	mutex_unlock(&wacom_udev_list_lock);

	kfree(data);
}

617
static void wacom_remove_shared_data(struct wacom *wacom)
618
{
619
	struct wacom_hdev_data *data;
620 621 622 623 624 625 626 627 628 629
	struct wacom_wac *wacom_wac = &wacom->wacom_wac;

	if (wacom_wac->shared) {
		data = container_of(wacom_wac->shared, struct wacom_hdev_data,
				    shared);

		if (wacom_wac->shared->touch == wacom->hdev)
			wacom_wac->shared->touch = NULL;
		else if (wacom_wac->shared->pen == wacom->hdev)
			wacom_wac->shared->pen = NULL;
630 631

		kref_put(&data->kref, wacom_release_shared_data);
632
		wacom_wac->shared = NULL;
633 634 635
	}
}

636 637 638
static int wacom_led_control(struct wacom *wacom)
{
	unsigned char *buf;
639
	int retval;
640 641
	unsigned char report_id = WAC_CMD_LED_CONTROL;
	int buf_size = 9;
642

643 644 645 646 647
	if (wacom->wacom_wac.pid) { /* wireless connected */
		report_id = WAC_CMD_WL_LED_CONTROL;
		buf_size = 13;
	}
	buf = kzalloc(buf_size, GFP_KERNEL);
648 649 650
	if (!buf)
		return -ENOMEM;

651
	if (wacom->wacom_wac.features.type >= INTUOS5S &&
652
	    wacom->wacom_wac.features.type <= INTUOSPL) {
653 654 655 656 657 658 659 660
		/*
		 * Touch Ring and crop mark LED luminance may take on
		 * one of four values:
		 *    0 = Low; 1 = Medium; 2 = High; 3 = Off
		 */
		int ring_led = wacom->led.select[0] & 0x03;
		int ring_lum = (((wacom->led.llv & 0x60) >> 5) - 1) & 0x03;
		int crop_lum = 0;
661 662 663 664 665 666 667 668 669 670
		unsigned char led_bits = (crop_lum << 4) | (ring_lum << 2) | (ring_led);

		buf[0] = report_id;
		if (wacom->wacom_wac.pid) {
			wacom_get_report(wacom->hdev, HID_FEATURE_REPORT,
					 buf, buf_size, WAC_CMD_RETRIES);
			buf[0] = report_id;
			buf[4] = led_bits;
		} else
			buf[1] = led_bits;
671 672 673 674 675 676 677 678
	}
	else {
		int led = wacom->led.select[0] | 0x4;

		if (wacom->wacom_wac.features.type == WACOM_21UX2 ||
		    wacom->wacom_wac.features.type == WACOM_24HD)
			led |= (wacom->led.select[1] << 4) | 0x40;

679
		buf[0] = report_id;
680 681 682 683 684
		buf[1] = led;
		buf[2] = wacom->led.llv;
		buf[3] = wacom->led.hlv;
		buf[4] = wacom->led.img_lum;
	}
685

686
	retval = wacom_set_report(wacom->hdev, HID_FEATURE_REPORT, buf, buf_size,
687
				  WAC_CMD_RETRIES);
688 689 690 691 692
	kfree(buf);

	return retval;
}

693 694
static int wacom_led_putimage(struct wacom *wacom, int button_id, u8 xfer_id,
		const unsigned len, const void *img)
695 696 697
{
	unsigned char *buf;
	int i, retval;
698
	const unsigned chunk_len = len / 4; /* 4 chunks are needed to be sent */
699

700
	buf = kzalloc(chunk_len + 3 , GFP_KERNEL);
701 702 703 704 705 706
	if (!buf)
		return -ENOMEM;

	/* Send 'start' command */
	buf[0] = WAC_CMD_ICON_START;
	buf[1] = 1;
707 708
	retval = wacom_set_report(wacom->hdev, HID_FEATURE_REPORT, buf, 2,
				  WAC_CMD_RETRIES);
709 710 711
	if (retval < 0)
		goto out;

712
	buf[0] = xfer_id;
713 714 715
	buf[1] = button_id & 0x07;
	for (i = 0; i < 4; i++) {
		buf[2] = i;
716
		memcpy(buf + 3, img + i * chunk_len, chunk_len);
717

718
		retval = wacom_set_report(wacom->hdev, HID_FEATURE_REPORT,
719
					  buf, chunk_len + 3, WAC_CMD_RETRIES);
720 721 722 723 724 725 726
		if (retval < 0)
			break;
	}

	/* Send 'stop' */
	buf[0] = WAC_CMD_ICON_START;
	buf[1] = 0;
727 728
	wacom_set_report(wacom->hdev, HID_FEATURE_REPORT, buf, 2,
			 WAC_CMD_RETRIES);
729 730 731 732 733 734

out:
	kfree(buf);
	return retval;
}

735
static ssize_t wacom_led_select_store(struct device *dev, int set_id,
736 737
				      const char *buf, size_t count)
{
G
Geliang Tang 已提交
738
	struct hid_device *hdev = to_hid_device(dev);
739
	struct wacom *wacom = hid_get_drvdata(hdev);
740 741 742 743 744 745 746 747 748
	unsigned int id;
	int err;

	err = kstrtouint(buf, 10, &id);
	if (err)
		return err;

	mutex_lock(&wacom->lock);

749
	wacom->led.select[set_id] = id & 0x3;
750 751 752 753 754 755 756
	err = wacom_led_control(wacom);

	mutex_unlock(&wacom->lock);

	return err < 0 ? err : count;
}

757 758 759 760 761 762
#define DEVICE_LED_SELECT_ATTR(SET_ID)					\
static ssize_t wacom_led##SET_ID##_select_store(struct device *dev,	\
	struct device_attribute *attr, const char *buf, size_t count)	\
{									\
	return wacom_led_select_store(dev, SET_ID, buf, count);		\
}									\
763 764 765
static ssize_t wacom_led##SET_ID##_select_show(struct device *dev,	\
	struct device_attribute *attr, char *buf)			\
{									\
G
Geliang Tang 已提交
766
	struct hid_device *hdev = to_hid_device(dev);\
767
	struct wacom *wacom = hid_get_drvdata(hdev);			\
P
Ping Cheng 已提交
768 769
	return scnprintf(buf, PAGE_SIZE, "%d\n",			\
			 wacom->led.select[SET_ID]);			\
770
}									\
771
static DEVICE_ATTR(status_led##SET_ID##_select, DEV_ATTR_RW_PERM,	\
772
		    wacom_led##SET_ID##_select_show,			\
773 774 775 776
		    wacom_led##SET_ID##_select_store)

DEVICE_LED_SELECT_ATTR(0);
DEVICE_LED_SELECT_ATTR(1);
777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801

static ssize_t wacom_luminance_store(struct wacom *wacom, u8 *dest,
				     const char *buf, size_t count)
{
	unsigned int value;
	int err;

	err = kstrtouint(buf, 10, &value);
	if (err)
		return err;

	mutex_lock(&wacom->lock);

	*dest = value & 0x7f;
	err = wacom_led_control(wacom);

	mutex_unlock(&wacom->lock);

	return err < 0 ? err : count;
}

#define DEVICE_LUMINANCE_ATTR(name, field)				\
static ssize_t wacom_##name##_luminance_store(struct device *dev,	\
	struct device_attribute *attr, const char *buf, size_t count)	\
{									\
G
Geliang Tang 已提交
802
	struct hid_device *hdev = to_hid_device(dev);\
803
	struct wacom *wacom = hid_get_drvdata(hdev);			\
804 805 806 807
									\
	return wacom_luminance_store(wacom, &wacom->led.field,		\
				     buf, count);			\
}									\
P
Ping Cheng 已提交
808 809 810 811 812 813
static ssize_t wacom_##name##_luminance_show(struct device *dev,	\
	struct device_attribute *attr, char *buf)			\
{									\
	struct wacom *wacom = dev_get_drvdata(dev);			\
	return scnprintf(buf, PAGE_SIZE, "%d\n", wacom->led.field);	\
}									\
814
static DEVICE_ATTR(name##_luminance, DEV_ATTR_RW_PERM,			\
P
Ping Cheng 已提交
815 816
		   wacom_##name##_luminance_show,			\
		   wacom_##name##_luminance_store)
817 818 819 820 821 822 823 824

DEVICE_LUMINANCE_ATTR(status0, llv);
DEVICE_LUMINANCE_ATTR(status1, hlv);
DEVICE_LUMINANCE_ATTR(buttons, img_lum);

static ssize_t wacom_button_image_store(struct device *dev, int button_id,
					const char *buf, size_t count)
{
G
Geliang Tang 已提交
825
	struct hid_device *hdev = to_hid_device(dev);
826
	struct wacom *wacom = hid_get_drvdata(hdev);
827
	int err;
828 829 830 831 832 833 834 835 836 837
	unsigned len;
	u8 xfer_id;

	if (hdev->bus == BUS_BLUETOOTH) {
		len = 256;
		xfer_id = WAC_CMD_ICON_BT_XFER;
	} else {
		len = 1024;
		xfer_id = WAC_CMD_ICON_XFER;
	}
838

839
	if (count != len)
840 841 842 843
		return -EINVAL;

	mutex_lock(&wacom->lock);

844
	err = wacom_led_putimage(wacom, button_id, xfer_id, len, buf);
845 846 847 848 849 850 851 852 853 854 855 856

	mutex_unlock(&wacom->lock);

	return err < 0 ? err : count;
}

#define DEVICE_BTNIMG_ATTR(BUTTON_ID)					\
static ssize_t wacom_btnimg##BUTTON_ID##_store(struct device *dev,	\
	struct device_attribute *attr, const char *buf, size_t count)	\
{									\
	return wacom_button_image_store(dev, BUTTON_ID, buf, count);	\
}									\
857
static DEVICE_ATTR(button##BUTTON_ID##_rawimg, DEV_ATTR_WO_PERM,	\
858 859 860 861 862 863 864 865 866 867 868
		   NULL, wacom_btnimg##BUTTON_ID##_store)

DEVICE_BTNIMG_ATTR(0);
DEVICE_BTNIMG_ATTR(1);
DEVICE_BTNIMG_ATTR(2);
DEVICE_BTNIMG_ATTR(3);
DEVICE_BTNIMG_ATTR(4);
DEVICE_BTNIMG_ATTR(5);
DEVICE_BTNIMG_ATTR(6);
DEVICE_BTNIMG_ATTR(7);

869 870 871 872 873 874 875 876 877 878 879 880
static struct attribute *cintiq_led_attrs[] = {
	&dev_attr_status_led0_select.attr,
	&dev_attr_status_led1_select.attr,
	NULL
};

static struct attribute_group cintiq_led_attr_group = {
	.name = "wacom_led",
	.attrs = cintiq_led_attrs,
};

static struct attribute *intuos4_led_attrs[] = {
881 882
	&dev_attr_status0_luminance.attr,
	&dev_attr_status1_luminance.attr,
883
	&dev_attr_status_led0_select.attr,
884 885 886 887 888 889 890 891 892 893 894 895
	&dev_attr_buttons_luminance.attr,
	&dev_attr_button0_rawimg.attr,
	&dev_attr_button1_rawimg.attr,
	&dev_attr_button2_rawimg.attr,
	&dev_attr_button3_rawimg.attr,
	&dev_attr_button4_rawimg.attr,
	&dev_attr_button5_rawimg.attr,
	&dev_attr_button6_rawimg.attr,
	&dev_attr_button7_rawimg.attr,
	NULL
};

896
static struct attribute_group intuos4_led_attr_group = {
897
	.name = "wacom_led",
898
	.attrs = intuos4_led_attrs,
899 900
};

901 902 903 904 905 906 907 908 909 910 911
static struct attribute *intuos5_led_attrs[] = {
	&dev_attr_status0_luminance.attr,
	&dev_attr_status_led0_select.attr,
	NULL
};

static struct attribute_group intuos5_led_attr_group = {
	.name = "wacom_led",
	.attrs = intuos5_led_attrs,
};

912 913 914 915
static int wacom_initialize_leds(struct wacom *wacom)
{
	int error;

916 917 918
	if (!(wacom->wacom_wac.features.device_type & WACOM_DEVICETYPE_PAD))
		return 0;

919 920
	/* Initialize default values */
	switch (wacom->wacom_wac.features.type) {
921
	case INTUOS4S:
922
	case INTUOS4:
923
	case INTUOS4WL:
924 925 926
	case INTUOS4L:
		wacom->led.select[0] = 0;
		wacom->led.select[1] = 0;
927
		wacom->led.llv = 10;
928 929
		wacom->led.hlv = 20;
		wacom->led.img_lum = 10;
930
		error = sysfs_create_group(&wacom->hdev->dev.kobj,
931 932 933
					   &intuos4_led_attr_group);
		break;

934
	case WACOM_24HD:
935 936 937 938 939 940
	case WACOM_21UX2:
		wacom->led.select[0] = 0;
		wacom->led.select[1] = 0;
		wacom->led.llv = 0;
		wacom->led.hlv = 0;
		wacom->led.img_lum = 0;
941

942
		error = sysfs_create_group(&wacom->hdev->dev.kobj,
943 944 945
					   &cintiq_led_attr_group);
		break;

946 947 948
	case INTUOS5S:
	case INTUOS5:
	case INTUOS5L:
949 950 951
	case INTUOSPS:
	case INTUOSPM:
	case INTUOSPL:
952 953 954 955 956 957 958 959
		wacom->led.select[0] = 0;
		wacom->led.select[1] = 0;
		wacom->led.llv = 32;
		wacom->led.hlv = 0;
		wacom->led.img_lum = 0;

		error = sysfs_create_group(&wacom->hdev->dev.kobj,
					  &intuos5_led_attr_group);
960 961
		break;

962 963
	default:
		return 0;
964 965
	}

966
	if (error) {
967
		hid_err(wacom->hdev,
968 969 970 971
			"cannot create sysfs group err: %d\n", error);
		return error;
	}
	wacom_led_control(wacom);
972
	wacom->led_initialized = true;
973

974 975 976 977 978
	return 0;
}

static void wacom_destroy_leds(struct wacom *wacom)
{
979 980 981
	if (!wacom->led_initialized)
		return;

982 983 984
	if (!(wacom->wacom_wac.features.device_type & WACOM_DEVICETYPE_PAD))
		return;

985 986
	wacom->led_initialized = false;

987
	switch (wacom->wacom_wac.features.type) {
988
	case INTUOS4S:
989
	case INTUOS4:
990
	case INTUOS4WL:
991
	case INTUOS4L:
992
		sysfs_remove_group(&wacom->hdev->dev.kobj,
993 994 995
				   &intuos4_led_attr_group);
		break;

996
	case WACOM_24HD:
997
	case WACOM_21UX2:
998
		sysfs_remove_group(&wacom->hdev->dev.kobj,
999 1000
				   &cintiq_led_attr_group);
		break;
1001 1002 1003 1004

	case INTUOS5S:
	case INTUOS5:
	case INTUOS5L:
1005 1006 1007
	case INTUOSPS:
	case INTUOSPM:
	case INTUOSPL:
1008 1009
		sysfs_remove_group(&wacom->hdev->dev.kobj,
				   &intuos5_led_attr_group);
1010
		break;
1011 1012 1013
	}
}

1014
static enum power_supply_property wacom_battery_props[] = {
1015
	POWER_SUPPLY_PROP_PRESENT,
1016
	POWER_SUPPLY_PROP_STATUS,
1017
	POWER_SUPPLY_PROP_SCOPE,
1018 1019 1020
	POWER_SUPPLY_PROP_CAPACITY
};

1021 1022 1023 1024 1025 1026
static enum power_supply_property wacom_ac_props[] = {
	POWER_SUPPLY_PROP_PRESENT,
	POWER_SUPPLY_PROP_ONLINE,
	POWER_SUPPLY_PROP_SCOPE,
};

1027 1028 1029 1030
static int wacom_battery_get_property(struct power_supply *psy,
				      enum power_supply_property psp,
				      union power_supply_propval *val)
{
1031
	struct wacom *wacom = power_supply_get_drvdata(psy);
1032 1033 1034
	int ret = 0;

	switch (psp) {
1035 1036 1037
		case POWER_SUPPLY_PROP_PRESENT:
			val->intval = wacom->wacom_wac.bat_connected;
			break;
1038 1039 1040
		case POWER_SUPPLY_PROP_SCOPE:
			val->intval = POWER_SUPPLY_SCOPE_DEVICE;
			break;
1041 1042
		case POWER_SUPPLY_PROP_CAPACITY:
			val->intval =
1043 1044 1045 1046 1047 1048 1049 1050
				wacom->wacom_wac.battery_capacity;
			break;
		case POWER_SUPPLY_PROP_STATUS:
			if (wacom->wacom_wac.bat_charging)
				val->intval = POWER_SUPPLY_STATUS_CHARGING;
			else if (wacom->wacom_wac.battery_capacity == 100 &&
				    wacom->wacom_wac.ps_connected)
				val->intval = POWER_SUPPLY_STATUS_FULL;
1051 1052
			else if (wacom->wacom_wac.ps_connected)
				val->intval = POWER_SUPPLY_STATUS_NOT_CHARGING;
1053 1054
			else
				val->intval = POWER_SUPPLY_STATUS_DISCHARGING;
1055 1056 1057 1058 1059 1060 1061 1062 1063
			break;
		default:
			ret = -EINVAL;
			break;
	}

	return ret;
}

1064 1065 1066 1067
static int wacom_ac_get_property(struct power_supply *psy,
				enum power_supply_property psp,
				union power_supply_propval *val)
{
1068
	struct wacom *wacom = power_supply_get_drvdata(psy);
1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086
	int ret = 0;

	switch (psp) {
	case POWER_SUPPLY_PROP_PRESENT:
		/* fall through */
	case POWER_SUPPLY_PROP_ONLINE:
		val->intval = wacom->wacom_wac.ps_connected;
		break;
	case POWER_SUPPLY_PROP_SCOPE:
		val->intval = POWER_SUPPLY_SCOPE_DEVICE;
		break;
	default:
		ret = -EINVAL;
		break;
	}
	return ret;
}

1087 1088
static int wacom_initialize_battery(struct wacom *wacom)
{
1089
	static atomic_t battery_no = ATOMIC_INIT(0);
1090
	struct device *dev = &wacom->hdev->dev;
1091
	struct power_supply_config psy_cfg = { .drv_data = wacom, };
1092
	struct power_supply_desc *bat_desc = &wacom->battery_desc;
1093
	unsigned long n;
1094 1095 1096 1097
	int error;

	if (!devres_open_group(dev, bat_desc, GFP_KERNEL))
		return -ENOMEM;
1098

1099
	if (wacom->wacom_wac.features.quirks & WACOM_QUIRK_BATTERY) {
1100
		struct power_supply_desc *ac_desc = &wacom->ac_desc;
1101
		n = atomic_inc_return(&battery_no) - 1;
1102

1103 1104 1105
		bat_desc->properties = wacom_battery_props;
		bat_desc->num_properties = ARRAY_SIZE(wacom_battery_props);
		bat_desc->get_property = wacom_battery_get_property;
1106
		sprintf(wacom->wacom_wac.bat_name, "wacom_battery_%ld", n);
1107 1108 1109
		bat_desc->name = wacom->wacom_wac.bat_name;
		bat_desc->type = POWER_SUPPLY_TYPE_BATTERY;
		bat_desc->use_for_apm = 0;
1110

1111 1112 1113
		ac_desc->properties = wacom_ac_props;
		ac_desc->num_properties = ARRAY_SIZE(wacom_ac_props);
		ac_desc->get_property = wacom_ac_get_property;
1114
		sprintf(wacom->wacom_wac.ac_name, "wacom_ac_%ld", n);
1115 1116 1117 1118
		ac_desc->name = wacom->wacom_wac.ac_name;
		ac_desc->type = POWER_SUPPLY_TYPE_MAINS;
		ac_desc->use_for_apm = 0;

1119 1120 1121 1122 1123 1124 1125
		wacom->battery = devm_power_supply_register(dev,
							   &wacom->battery_desc,
							   &psy_cfg);
		if (IS_ERR(wacom->battery)) {
			error = PTR_ERR(wacom->battery);
			goto err;
		}
1126 1127 1128

		power_supply_powers(wacom->battery, &wacom->hdev->dev);

1129 1130 1131
		wacom->ac = devm_power_supply_register(dev,
						       &wacom->ac_desc,
						       &psy_cfg);
1132
		if (IS_ERR(wacom->ac)) {
1133 1134
			error = PTR_ERR(wacom->ac);
			goto err;
1135 1136
		}

1137
		power_supply_powers(wacom->ac, &wacom->hdev->dev);
1138 1139
	}

1140
	devres_close_group(dev, bat_desc);
1141
	return 0;
1142 1143 1144 1145

err:
	devres_release_group(dev, bat_desc);
	return error;
1146 1147 1148 1149
}

static void wacom_destroy_battery(struct wacom *wacom)
{
1150
	if (wacom->battery) {
1151
		devres_release_group(&wacom->hdev->dev, &wacom->battery_desc);
1152 1153
		wacom->battery = NULL;
		wacom->ac = NULL;
1154
	}
1155 1156
}

1157 1158 1159 1160
static ssize_t wacom_show_speed(struct device *dev,
				struct device_attribute
				*attr, char *buf)
{
G
Geliang Tang 已提交
1161
	struct hid_device *hdev = to_hid_device(dev);
1162 1163 1164 1165 1166 1167 1168 1169 1170
	struct wacom *wacom = hid_get_drvdata(hdev);

	return snprintf(buf, PAGE_SIZE, "%i\n", wacom->wacom_wac.bt_high_speed);
}

static ssize_t wacom_store_speed(struct device *dev,
				struct device_attribute *attr,
				const char *buf, size_t count)
{
G
Geliang Tang 已提交
1171
	struct hid_device *hdev = to_hid_device(dev);
1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185
	struct wacom *wacom = hid_get_drvdata(hdev);
	u8 new_speed;

	if (kstrtou8(buf, 0, &new_speed))
		return -EINVAL;

	if (new_speed != 0 && new_speed != 1)
		return -EINVAL;

	wacom_bt_query_tablet_data(hdev, new_speed, &wacom->wacom_wac.features);

	return count;
}

1186
static DEVICE_ATTR(speed, DEV_ATTR_RW_PERM,
1187 1188
		wacom_show_speed, wacom_store_speed);

1189 1190 1191 1192 1193

static ssize_t wacom_show_remote_mode(struct kobject *kobj,
				      struct kobj_attribute *kattr,
				      char *buf, int index)
{
G
Geliang Tang 已提交
1194
	struct device *dev = kobj_to_dev(kobj->parent);
G
Geliang Tang 已提交
1195
	struct hid_device *hdev = to_hid_device(dev);
1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304
	struct wacom *wacom = hid_get_drvdata(hdev);
	u8 mode;

	mode = wacom->led.select[index];
	if (mode >= 0 && mode < 3)
		return snprintf(buf, PAGE_SIZE, "%d\n", mode);
	else
		return snprintf(buf, PAGE_SIZE, "%d\n", -1);
}

#define DEVICE_EKR_ATTR_GROUP(SET_ID)					\
static ssize_t wacom_show_remote##SET_ID##_mode(struct kobject *kobj,	\
			       struct kobj_attribute *kattr, char *buf)	\
{									\
	return wacom_show_remote_mode(kobj, kattr, buf, SET_ID);	\
}									\
static struct kobj_attribute remote##SET_ID##_mode_attr = {		\
	.attr = {.name = "remote_mode",					\
		.mode = DEV_ATTR_RO_PERM},				\
	.show = wacom_show_remote##SET_ID##_mode,			\
};									\
static struct attribute *remote##SET_ID##_serial_attrs[] = {		\
	&remote##SET_ID##_mode_attr.attr,				\
	NULL								\
};									\
static struct attribute_group remote##SET_ID##_serial_group = {		\
	.name = NULL,							\
	.attrs = remote##SET_ID##_serial_attrs,				\
}

DEVICE_EKR_ATTR_GROUP(0);
DEVICE_EKR_ATTR_GROUP(1);
DEVICE_EKR_ATTR_GROUP(2);
DEVICE_EKR_ATTR_GROUP(3);
DEVICE_EKR_ATTR_GROUP(4);

int wacom_remote_create_attr_group(struct wacom *wacom, __u32 serial, int index)
{
	int error = 0;
	char *buf;
	struct wacom_wac *wacom_wac = &wacom->wacom_wac;

	wacom_wac->serial[index] = serial;

	buf = kzalloc(WAC_REMOTE_SERIAL_MAX_STRLEN, GFP_KERNEL);
	if (!buf)
		return -ENOMEM;
	snprintf(buf, WAC_REMOTE_SERIAL_MAX_STRLEN, "%d", serial);
	wacom->remote_group[index].name = buf;

	error = sysfs_create_group(wacom->remote_dir,
				   &wacom->remote_group[index]);
	if (error) {
		hid_err(wacom->hdev,
			"cannot create sysfs group err: %d\n", error);
		kobject_put(wacom->remote_dir);
		return error;
	}

	return 0;
}

void wacom_remote_destroy_attr_group(struct wacom *wacom, __u32 serial)
{
	struct wacom_wac *wacom_wac = &wacom->wacom_wac;
	int i;

	if (!serial)
		return;

	for (i = 0; i < WACOM_MAX_REMOTES; i++) {
		if (wacom_wac->serial[i] == serial) {
			wacom_wac->serial[i] = 0;
			wacom->led.select[i] = WACOM_STATUS_UNKNOWN;
			if (wacom->remote_group[i].name) {
				sysfs_remove_group(wacom->remote_dir,
						   &wacom->remote_group[i]);
				kfree(wacom->remote_group[i].name);
				wacom->remote_group[i].name = NULL;
			}
		}
	}
}

static int wacom_cmd_unpair_remote(struct wacom *wacom, unsigned char selector)
{
	const size_t buf_size = 2;
	unsigned char *buf;
	int retval;

	buf = kzalloc(buf_size, GFP_KERNEL);
	if (!buf)
		return -ENOMEM;

	buf[0] = WAC_CMD_DELETE_PAIRING;
	buf[1] = selector;

	retval = wacom_set_report(wacom->hdev, HID_OUTPUT_REPORT, buf,
				  buf_size, WAC_CMD_RETRIES);
	kfree(buf);

	return retval;
}

static ssize_t wacom_store_unpair_remote(struct kobject *kobj,
					 struct kobj_attribute *attr,
					 const char *buf, size_t count)
{
	unsigned char selector = 0;
G
Geliang Tang 已提交
1305
	struct device *dev = kobj_to_dev(kobj->parent);
G
Geliang Tang 已提交
1306
	struct hid_device *hdev = to_hid_device(dev);
1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371
	struct wacom *wacom = hid_get_drvdata(hdev);
	int err;

	if (!strncmp(buf, "*\n", 2)) {
		selector = WAC_CMD_UNPAIR_ALL;
	} else {
		hid_info(wacom->hdev, "remote: unrecognized unpair code: %s\n",
			 buf);
		return -1;
	}

	mutex_lock(&wacom->lock);

	err = wacom_cmd_unpair_remote(wacom, selector);
	mutex_unlock(&wacom->lock);

	return err < 0 ? err : count;
}

static struct kobj_attribute unpair_remote_attr = {
	.attr = {.name = "unpair_remote", .mode = 0200},
	.store = wacom_store_unpair_remote,
};

static const struct attribute *remote_unpair_attrs[] = {
	&unpair_remote_attr.attr,
	NULL
};

static int wacom_initialize_remote(struct wacom *wacom)
{
	int error = 0;
	struct wacom_wac *wacom_wac = &(wacom->wacom_wac);
	int i;

	if (wacom->wacom_wac.features.type != REMOTE)
		return 0;

	wacom->remote_group[0] = remote0_serial_group;
	wacom->remote_group[1] = remote1_serial_group;
	wacom->remote_group[2] = remote2_serial_group;
	wacom->remote_group[3] = remote3_serial_group;
	wacom->remote_group[4] = remote4_serial_group;

	wacom->remote_dir = kobject_create_and_add("wacom_remote",
						   &wacom->hdev->dev.kobj);
	if (!wacom->remote_dir)
		return -ENOMEM;

	error = sysfs_create_files(wacom->remote_dir, remote_unpair_attrs);

	if (error) {
		hid_err(wacom->hdev,
			"cannot create sysfs group err: %d\n", error);
		return error;
	}

	for (i = 0; i < WACOM_MAX_REMOTES; i++) {
		wacom->led.select[i] = WACOM_STATUS_UNKNOWN;
		wacom_wac->serial[i] = 0;
	}

	return 0;
}

1372
static struct input_dev *wacom_allocate_input(struct wacom *wacom)
1373 1374
{
	struct input_dev *input_dev;
1375
	struct hid_device *hdev = wacom->hdev;
1376 1377
	struct wacom_wac *wacom_wac = &(wacom->wacom_wac);

1378
	input_dev = devm_input_allocate_device(&hdev->dev);
1379 1380
	if (!input_dev)
		return NULL;
1381

1382
	input_dev->name = wacom_wac->features.name;
1383 1384
	input_dev->phys = hdev->phys;
	input_dev->dev.parent = &hdev->dev;
1385 1386
	input_dev->open = wacom_open;
	input_dev->close = wacom_close;
1387 1388 1389
	input_dev->uniq = hdev->uniq;
	input_dev->id.bustype = hdev->bus;
	input_dev->id.vendor  = hdev->vendor;
1390
	input_dev->id.product = wacom_wac->pid ? wacom_wac->pid : hdev->product;
1391
	input_dev->id.version = hdev->version;
1392 1393
	input_set_drvdata(input_dev, wacom);

1394 1395 1396
	return input_dev;
}

1397 1398
static void wacom_clean_inputs(struct wacom *wacom)
{
1399 1400 1401
	if (wacom->wacom_wac.pen_input) {
		if (wacom->wacom_wac.pen_registered)
			input_unregister_device(wacom->wacom_wac.pen_input);
1402
		else
1403 1404 1405 1406 1407 1408 1409
			input_free_device(wacom->wacom_wac.pen_input);
	}
	if (wacom->wacom_wac.touch_input) {
		if (wacom->wacom_wac.touch_registered)
			input_unregister_device(wacom->wacom_wac.touch_input);
		else
			input_free_device(wacom->wacom_wac.touch_input);
1410 1411
	}
	if (wacom->wacom_wac.pad_input) {
1412
		if (wacom->wacom_wac.pad_registered)
1413 1414 1415 1416
			input_unregister_device(wacom->wacom_wac.pad_input);
		else
			input_free_device(wacom->wacom_wac.pad_input);
	}
1417 1418
	wacom->wacom_wac.pen_input = NULL;
	wacom->wacom_wac.touch_input = NULL;
1419
	wacom->wacom_wac.pad_input = NULL;
1420 1421 1422
	wacom->wacom_wac.pen_registered = false;
	wacom->wacom_wac.touch_registered = false;
	wacom->wacom_wac.pad_registered = false;
1423 1424
}

1425 1426 1427 1428 1429 1430 1431
static int wacom_allocate_inputs(struct wacom *wacom)
{
	struct wacom_wac *wacom_wac = &(wacom->wacom_wac);

	wacom_wac->pen_input = wacom_allocate_input(wacom);
	wacom_wac->touch_input = wacom_allocate_input(wacom);
	wacom_wac->pad_input = wacom_allocate_input(wacom);
1432 1433 1434
	if (!wacom_wac->pen_input ||
	    !wacom_wac->touch_input ||
	    !wacom_wac->pad_input)
1435 1436
		return -ENOMEM;

1437
	wacom_wac->pen_input->name = wacom_wac->pen_name;
1438 1439 1440 1441 1442 1443
	wacom_wac->touch_input->name = wacom_wac->touch_name;
	wacom_wac->pad_input->name = wacom_wac->pad_name;

	return 0;
}

1444 1445
static int wacom_register_inputs(struct wacom *wacom)
{
1446
	struct input_dev *pen_input_dev, *touch_input_dev, *pad_input_dev;
1447
	struct wacom_wac *wacom_wac = &(wacom->wacom_wac);
1448
	int error = 0;
1449

1450 1451
	pen_input_dev = wacom_wac->pen_input;
	touch_input_dev = wacom_wac->touch_input;
1452 1453
	pad_input_dev = wacom_wac->pad_input;

1454
	if (!pen_input_dev || !touch_input_dev || !pad_input_dev)
1455 1456
		return -EINVAL;

1457 1458 1459 1460 1461 1462 1463 1464 1465
	error = wacom_setup_pen_input_capabilities(pen_input_dev, wacom_wac);
	if (error) {
		/* no pen in use on this interface */
		input_free_device(pen_input_dev);
		wacom_wac->pen_input = NULL;
		pen_input_dev = NULL;
	} else {
		error = input_register_device(pen_input_dev);
		if (error)
1466
			goto fail;
1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477
		wacom_wac->pen_registered = true;
	}

	error = wacom_setup_touch_input_capabilities(touch_input_dev, wacom_wac);
	if (error) {
		/* no touch in use on this interface */
		input_free_device(touch_input_dev);
		wacom_wac->touch_input = NULL;
		touch_input_dev = NULL;
	} else {
		error = input_register_device(touch_input_dev);
1478
		if (error)
1479
			goto fail;
1480
		wacom_wac->touch_registered = true;
1481
	}
1482

1483 1484 1485 1486 1487 1488 1489 1490 1491
	error = wacom_setup_pad_input_capabilities(pad_input_dev, wacom_wac);
	if (error) {
		/* no pad in use on this interface */
		input_free_device(pad_input_dev);
		wacom_wac->pad_input = NULL;
		pad_input_dev = NULL;
	} else {
		error = input_register_device(pad_input_dev);
		if (error)
1492
			goto fail;
1493
		wacom_wac->pad_registered = true;
1494 1495
	}

1496
	return 0;
1497

1498 1499 1500
fail:
	wacom_wac->pad_input = NULL;
	wacom_wac->pad_registered = false;
1501 1502 1503 1504
	wacom_wac->touch_input = NULL;
	wacom_wac->touch_registered = false;
	wacom_wac->pen_input = NULL;
	wacom_wac->pen_registered = false;
1505 1506 1507
	return error;
}

1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540
/*
 * Not all devices report physical dimensions from HID.
 * Compute the default from hardcoded logical dimension
 * and resolution before driver overwrites them.
 */
static void wacom_set_default_phy(struct wacom_features *features)
{
	if (features->x_resolution) {
		features->x_phy = (features->x_max * 100) /
					features->x_resolution;
		features->y_phy = (features->y_max * 100) /
					features->y_resolution;
	}
}

static void wacom_calculate_res(struct wacom_features *features)
{
	/* set unit to "100th of a mm" for devices not reported by HID */
	if (!features->unit) {
		features->unit = 0x11;
		features->unitExpo = -3;
	}

	features->x_resolution = wacom_calc_hid_res(features->x_max,
						    features->x_phy,
						    features->unit,
						    features->unitExpo);
	features->y_resolution = wacom_calc_hid_res(features->y_max,
						    features->y_phy,
						    features->unit,
						    features->unitExpo);
}

1541 1542
void wacom_battery_work(struct work_struct *work)
{
1543
	struct wacom *wacom = container_of(work, struct wacom, battery_work);
1544 1545

	if ((wacom->wacom_wac.features.quirks & WACOM_QUIRK_BATTERY) &&
1546
	     !wacom->battery) {
1547 1548 1549
		wacom_initialize_battery(wacom);
	}
	else if (!(wacom->wacom_wac.features.quirks & WACOM_QUIRK_BATTERY) &&
1550
		 wacom->battery) {
1551 1552 1553 1554
		wacom_destroy_battery(wacom);
	}
}

1555 1556 1557 1558 1559 1560 1561 1562 1563
static size_t wacom_compute_pktlen(struct hid_device *hdev)
{
	struct hid_report_enum *report_enum;
	struct hid_report *report;
	size_t size = 0;

	report_enum = hdev->report_enum + HID_INPUT_REPORT;

	list_for_each_entry(report, &report_enum->report_list, list) {
1564
		size_t report_size = hid_report_len(report);
1565 1566 1567 1568 1569 1570 1571
		if (report_size > size)
			size = report_size;
	}

	return size;
}

1572
static void wacom_update_name(struct wacom *wacom, const char *suffix)
1573 1574 1575
{
	struct wacom_wac *wacom_wac = &wacom->wacom_wac;
	struct wacom_features *features = &wacom_wac->features;
1576
	char name[WACOM_NAME_MAX];
1577 1578 1579 1580 1581 1582 1583

	/* Generic devices name unspecified */
	if ((features->type == HID_GENERIC) && !strcmp("Wacom HID", features->name)) {
		if (strstr(wacom->hdev->name, "Wacom") ||
		    strstr(wacom->hdev->name, "wacom") ||
		    strstr(wacom->hdev->name, "WACOM")) {
			/* name is in HID descriptor, use it */
1584
			strlcpy(name, wacom->hdev->name, sizeof(name));
1585 1586 1587

			/* strip out excess whitespaces */
			while (1) {
1588
				char *gap = strstr(name, "  ");
1589 1590 1591 1592 1593 1594
				if (gap == NULL)
					break;
				/* shift everything including the terminator */
				memmove(gap, gap+1, strlen(gap));
			}
			/* get rid of trailing whitespace */
1595 1596
			if (name[strlen(name)-1] == ' ')
				name[strlen(name)-1] = '\0';
1597 1598
		} else {
			/* no meaningful name retrieved. use product ID */
1599
			snprintf(name, sizeof(name),
1600 1601 1602
				 "%s %X", features->name, wacom->hdev->product);
		}
	} else {
1603
		strlcpy(name, features->name, sizeof(name));
1604 1605 1606
	}

	/* Append the device type to the name */
1607
	snprintf(wacom_wac->pen_name, sizeof(wacom_wac->pen_name),
1608
		"%s%s Pen", name, suffix);
1609
	snprintf(wacom_wac->touch_name, sizeof(wacom_wac->touch_name),
1610
		"%s%s Finger", name, suffix);
1611
	snprintf(wacom_wac->pad_name, sizeof(wacom_wac->pad_name),
1612
		"%s%s Pad", name, suffix);
1613 1614
}

1615
static int wacom_parse_and_register(struct wacom *wacom, bool wireless)
1616
{
1617 1618 1619
	struct wacom_wac *wacom_wac = &wacom->wacom_wac;
	struct wacom_features *features = &wacom_wac->features;
	struct hid_device *hdev = wacom->hdev;
1620
	int error;
1621
	unsigned int connect_mask = HID_CONNECT_HIDRAW;
1622

1623
	features->pktlen = wacom_compute_pktlen(hdev);
1624 1625
	if (features->pktlen > WACOM_PKGLEN_MAX)
		return -EINVAL;
1626

1627 1628
	error = wacom_allocate_inputs(wacom);
	if (error)
1629
		return error;
1630

1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641
	/*
	 * Bamboo Pad has a generic hid handling for the Pen, and we switch it
	 * into debug mode for the touch part.
	 * We ignore the other interfaces.
	 */
	if (features->type == BAMBOO_PAD) {
		if (features->pktlen == WACOM_PKGLEN_PENABLED) {
			features->type = HID_GENERIC;
		} else if ((features->pktlen != WACOM_PKGLEN_BPAD_TOUCH) &&
			   (features->pktlen != WACOM_PKGLEN_BPAD_TOUCH_USB)) {
			error = -ENODEV;
1642
			goto fail_allocate_inputs;
1643 1644 1645
		}
	}

1646 1647 1648
	/* set the default size in case we do not get them from hid */
	wacom_set_default_phy(features);

1649
	/* Retrieve the physical and logical size for touch devices */
1650
	wacom_retrieve_hid_descriptor(hdev, features);
1651
	wacom_setup_device_quirks(wacom);
1652

1653 1654
	if (features->device_type == WACOM_DEVICETYPE_NONE &&
	    features->type != WIRELESS) {
1655 1656
		error = features->type == HID_GENERIC ? -ENODEV : 0;

1657
		dev_warn(&hdev->dev, "Unknown device_type for '%s'. %s.",
1658 1659 1660 1661
			 hdev->name,
			 error ? "Ignoring" : "Assuming pen");

		if (error)
1662
			goto fail_parsed;
1663

1664
		features->device_type |= WACOM_DEVICETYPE_PEN;
1665 1666
	}

1667 1668
	wacom_calculate_res(features);

1669
	wacom_update_name(wacom, wireless ? " (WL)" : "");
1670

1671 1672 1673
	error = wacom_add_shared_data(hdev);
	if (error)
		goto fail_shared_data;
1674

1675
	if (!(features->device_type & WACOM_DEVICETYPE_WL_MONITOR) &&
1676 1677 1678
	     (features->quirks & WACOM_QUIRK_BATTERY)) {
		error = wacom_initialize_battery(wacom);
		if (error)
1679
			goto fail_battery;
1680 1681
	}

1682 1683 1684
	error = wacom_register_inputs(wacom);
	if (error)
		goto fail_register_inputs;
1685

1686
	if (wacom->wacom_wac.features.device_type & WACOM_DEVICETYPE_PAD) {
1687 1688 1689 1690
		error = wacom_initialize_leds(wacom);
		if (error)
			goto fail_leds;

1691 1692 1693 1694 1695
		error = wacom_initialize_remote(wacom);
		if (error)
			goto fail_remote;
	}

1696 1697 1698
	if (features->type == HID_GENERIC)
		connect_mask |= HID_CONNECT_DRIVER;

1699
	/* Regular HID work starts now */
1700
	error = hid_hw_start(hdev, connect_mask);
1701 1702
	if (error) {
		hid_err(hdev, "hw start failed\n");
1703
		goto fail_hw_start;
1704
	}
1705

1706 1707 1708 1709
	if (!wireless) {
		/* Note that if query fails it is not a hard failure */
		wacom_query_tablet_data(hdev, features);
	}
1710 1711 1712 1713 1714

	/* touch only Bamboo doesn't support pen */
	if ((features->type == BAMBOO_TOUCH) &&
	    (features->device_type & WACOM_DEVICETYPE_PEN)) {
		error = -ENODEV;
1715
		goto fail_quirks;
1716 1717 1718 1719 1720 1721 1722
	}

	/* pen only Bamboo neither support touch nor pad */
	if ((features->type == BAMBOO_PEN) &&
	    ((features->device_type & WACOM_DEVICETYPE_TOUCH) ||
	    (features->device_type & WACOM_DEVICETYPE_PAD))) {
		error = -ENODEV;
1723
		goto fail_quirks;
1724 1725
	}

1726
	if (features->device_type & WACOM_DEVICETYPE_WL_MONITOR)
1727 1728
		error = hid_hw_open(hdev);

1729
	if ((wacom_wac->features.type == INTUOSHT ||
1730
	     wacom_wac->features.type == INTUOSHT2) &&
1731
	    (wacom_wac->features.device_type & WACOM_DEVICETYPE_TOUCH)) {
1732 1733
		wacom_wac->shared->type = wacom_wac->features.type;
		wacom_wac->shared->touch_input = wacom_wac->touch_input;
1734 1735
	}

1736 1737
	return 0;

1738
fail_quirks:
1739
	hid_hw_stop(hdev);
1740 1741 1742
fail_hw_start:
	kobject_put(wacom->remote_dir);
fail_remote:
1743 1744
	wacom_destroy_leds(wacom);
fail_leds:
1745
fail_register_inputs:
1746
fail_battery:
1747
	wacom_remove_shared_data(wacom);
1748
fail_shared_data:
1749
fail_parsed:
1750
fail_allocate_inputs:
1751 1752 1753
	return error;
}

1754 1755
static void wacom_wireless_work(struct work_struct *work)
{
1756
	struct wacom *wacom = container_of(work, struct wacom, wireless_work);
1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774
	struct usb_device *usbdev = wacom->usbdev;
	struct wacom_wac *wacom_wac = &wacom->wacom_wac;
	struct hid_device *hdev1, *hdev2;
	struct wacom *wacom1, *wacom2;
	struct wacom_wac *wacom_wac1, *wacom_wac2;
	int error;

	/*
	 * Regardless if this is a disconnect or a new tablet,
	 * remove any existing input and battery devices.
	 */

	wacom_destroy_battery(wacom);

	/* Stylus interface */
	hdev1 = usb_get_intfdata(usbdev->config->interface[1]);
	wacom1 = hid_get_drvdata(hdev1);
	wacom_wac1 = &(wacom1->wacom_wac);
1775
	wacom_destroy_leds(wacom1);
1776 1777 1778 1779 1780 1781
	wacom_clean_inputs(wacom1);

	/* Touch interface */
	hdev2 = usb_get_intfdata(usbdev->config->interface[2]);
	wacom2 = hid_get_drvdata(hdev2);
	wacom_wac2 = &(wacom2->wacom_wac);
1782
	wacom_destroy_leds(wacom2);
1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808
	wacom_clean_inputs(wacom2);

	if (wacom_wac->pid == 0) {
		hid_info(wacom->hdev, "wireless tablet disconnected\n");
		wacom_wac1->shared->type = 0;
	} else {
		const struct hid_device_id *id = wacom_ids;

		hid_info(wacom->hdev, "wireless tablet connected with PID %x\n",
			 wacom_wac->pid);

		while (id->bus) {
			if (id->vendor == USB_VENDOR_ID_WACOM &&
			    id->product == wacom_wac->pid)
				break;
			id++;
		}

		if (!id->bus) {
			hid_info(wacom->hdev, "ignoring unknown PID.\n");
			return;
		}

		/* Stylus interface */
		wacom_wac1->features =
			*((struct wacom_features *)id->driver_data);
1809

1810
		wacom_wac1->pid = wacom_wac->pid;
1811 1812
		hid_hw_stop(hdev1);
		error = wacom_parse_and_register(wacom1, true);
1813 1814 1815 1816 1817 1818 1819 1820 1821 1822
		if (error)
			goto fail;

		/* Touch interface */
		if (wacom_wac1->features.touch_max ||
		    (wacom_wac1->features.type >= INTUOSHT &&
		    wacom_wac1->features.type <= BAMBOO_PT)) {
			wacom_wac2->features =
				*((struct wacom_features *)id->driver_data);
			wacom_wac2->pid = wacom_wac->pid;
1823 1824
			hid_hw_stop(hdev2);
			error = wacom_parse_and_register(wacom2, true);
1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836
			if (error)
				goto fail;
		}

		error = wacom_initialize_battery(wacom);
		if (error)
			goto fail;
	}

	return;

fail:
1837
	wacom_destroy_leds(wacom1);
1838
	wacom_clean_inputs(wacom1);
1839
	wacom_destroy_leds(wacom2);
1840 1841 1842 1843
	wacom_clean_inputs(wacom2);
	return;
}

1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877
static int wacom_probe(struct hid_device *hdev,
		const struct hid_device_id *id)
{
	struct usb_interface *intf = to_usb_interface(hdev->dev.parent);
	struct usb_device *dev = interface_to_usbdev(intf);
	struct wacom *wacom;
	struct wacom_wac *wacom_wac;
	struct wacom_features *features;
	int error;

	if (!id->driver_data)
		return -EINVAL;

	hdev->quirks |= HID_QUIRK_NO_INIT_REPORTS;

	/* hid-core sets this quirk for the boot interface */
	hdev->quirks &= ~HID_QUIRK_NOGET;

	wacom = kzalloc(sizeof(struct wacom), GFP_KERNEL);
	if (!wacom)
		return -ENOMEM;

	hid_set_drvdata(hdev, wacom);
	wacom->hdev = hdev;

	wacom_wac = &wacom->wacom_wac;
	wacom_wac->features = *((struct wacom_features *)id->driver_data);
	features = &wacom_wac->features;

	if (features->check_for_hid_type && features->hid_type != hdev->type) {
		error = -ENODEV;
		goto fail_type;
	}

1878
	wacom_wac->hid_data.inputmode = -1;
1879
	wacom_wac->mode_report = -1;
1880

1881 1882 1883
	wacom->usbdev = dev;
	wacom->intf = intf;
	mutex_init(&wacom->lock);
1884 1885
	INIT_WORK(&wacom->wireless_work, wacom_wireless_work);
	INIT_WORK(&wacom->battery_work, wacom_battery_work);
1886 1887 1888 1889 1890 1891 1892 1893

	/* ask for the report descriptor to be loaded by HID */
	error = hid_parse(hdev);
	if (error) {
		hid_err(hdev, "parse failed\n");
		goto fail_parse;
	}

1894
	error = wacom_parse_and_register(wacom, false);
1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907
	if (error)
		goto fail_parse;

	if (hdev->bus == BUS_BLUETOOTH) {
		error = device_create_file(&hdev->dev, &dev_attr_speed);
		if (error)
			hid_warn(hdev,
				 "can't create sysfs speed attribute err: %d\n",
				 error);
	}

	return 0;

1908 1909 1910
fail_type:
fail_parse:
	kfree(wacom);
1911
	hid_set_drvdata(hdev, NULL);
1912
	return error;
1913 1914
}

1915
static void wacom_remove(struct hid_device *hdev)
1916
{
1917
	struct wacom *wacom = hid_get_drvdata(hdev);
1918 1919 1920 1921 1922
	struct wacom_wac *wacom_wac = &wacom->wacom_wac;
	struct wacom_features *features = &wacom_wac->features;

	if (features->device_type & WACOM_DEVICETYPE_WL_MONITOR)
		hid_hw_close(hdev);
1923

1924
	hid_hw_stop(hdev);
1925

1926 1927
	cancel_work_sync(&wacom->wireless_work);
	cancel_work_sync(&wacom->battery_work);
1928
	kobject_put(wacom->remote_dir);
1929
	wacom_destroy_leds(wacom);
1930 1931
	if (hdev->bus == BUS_BLUETOOTH)
		device_remove_file(&hdev->dev, &dev_attr_speed);
1932
	wacom_remove_shared_data(wacom);
1933

1934 1935
	hid_set_drvdata(hdev, NULL);
	kfree(wacom);
1936 1937
}

1938
#ifdef CONFIG_PM
1939
static int wacom_resume(struct hid_device *hdev)
1940
{
1941
	struct wacom *wacom = hid_get_drvdata(hdev);
1942
	struct wacom_features *features = &wacom->wacom_wac.features;
1943 1944

	mutex_lock(&wacom->lock);
1945 1946

	/* switch to wacom mode first */
1947
	wacom_query_tablet_data(hdev, features);
1948
	wacom_led_control(wacom);
1949

1950 1951
	mutex_unlock(&wacom->lock);

1952
	return 0;
1953 1954
}

1955
static int wacom_reset_resume(struct hid_device *hdev)
1956
{
1957
	return wacom_resume(hdev);
1958
}
1959
#endif /* CONFIG_PM */
1960

1961
static struct hid_driver wacom_driver = {
1962
	.name =		"wacom",
1963
	.id_table =	wacom_ids,
1964
	.probe =	wacom_probe,
1965
	.remove =	wacom_remove,
1966
	.report =	wacom_wac_report,
1967
#ifdef CONFIG_PM
1968 1969
	.resume =	wacom_resume,
	.reset_resume =	wacom_reset_resume,
1970 1971
#endif
	.raw_event =	wacom_raw_event,
1972
};
1973
module_hid_driver(wacom_driver);
1974 1975 1976 1977 1978

MODULE_VERSION(DRIVER_VERSION);
MODULE_AUTHOR(DRIVER_AUTHOR);
MODULE_DESCRIPTION(DRIVER_DESC);
MODULE_LICENSE(DRIVER_LICENSE);