wacom_sys.c 39.3 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

17
#define WAC_MSG_RETRIES		5
18

19
#define WAC_CMD_WL_LED_CONTROL	0x03
20 21 22
#define WAC_CMD_LED_CONTROL	0x20
#define WAC_CMD_ICON_START	0x21
#define WAC_CMD_ICON_XFER	0x23
23
#define WAC_CMD_ICON_BT_XFER	0x26
24 25
#define WAC_CMD_RETRIES		10

26 27 28
#define DEV_ATTR_RW_PERM (S_IRUGO | S_IWUSR | S_IWGRP)
#define DEV_ATTR_WO_PERM (S_IWUSR | S_IWGRP)

29 30
static int wacom_get_report(struct hid_device *hdev, u8 type, u8 *buf,
			    size_t size, unsigned int retries)
31
{
32 33 34
	int retval;

	do {
35
		retval = hid_hw_raw_request(hdev, buf[0], buf, size, type,
36
				HID_REQ_GET_REPORT);
37 38 39
	} while ((retval == -ETIMEDOUT || retval == -EPIPE) && --retries);

	return retval;
40 41
}

42 43
static int wacom_set_report(struct hid_device *hdev, u8 type, u8 *buf,
			    size_t size, unsigned int retries)
44
{
45 46 47
	int retval;

	do {
48
		retval = hid_hw_raw_request(hdev, buf[0], buf, size, type,
49
				HID_REQ_SET_REPORT);
50 51 52
	} while ((retval == -ETIMEDOUT || retval == -EPIPE) && --retries);

	return retval;
53 54
}

55 56
static int wacom_raw_event(struct hid_device *hdev, struct hid_report *report,
		u8 *raw_data, int size)
57
{
58
	struct wacom *wacom = hid_get_drvdata(hdev);
59

60 61
	if (size > WACOM_PKGLEN_MAX)
		return 1;
62

63
	memcpy(wacom->wacom_wac.data, raw_data, size);
64

65 66 67
	wacom_wac_irq(&wacom->wacom_wac, size);

	return 0;
68 69 70 71
}

static int wacom_open(struct input_dev *dev)
{
72
	struct wacom *wacom = input_get_drvdata(dev);
73
	int retval;
74 75

	mutex_lock(&wacom->lock);
76
	retval = hid_hw_open(wacom->hdev);
77
	mutex_unlock(&wacom->lock);
78

79
	return retval;
80 81 82 83
}

static void wacom_close(struct input_dev *dev)
{
84
	struct wacom *wacom = input_get_drvdata(dev);
85

86
	mutex_lock(&wacom->lock);
87
	hid_hw_close(wacom->hdev);
88
	mutex_unlock(&wacom->lock);
89 90
}

91
/*
92
 * Calculate the resolution of the X or Y axis using hidinput_calc_abs_res.
93 94
 */
static int wacom_calc_hid_res(int logical_extents, int physical_extents,
95
			       unsigned unit, int exponent)
96
{
97 98 99 100 101 102 103 104
	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);
105 106
}

107 108
static void wacom_feature_mapping(struct hid_device *hdev,
		struct hid_field *field, struct hid_usage *usage)
109
{
110 111
	struct wacom *wacom = hid_get_drvdata(hdev);
	struct wacom_features *features = &wacom->wacom_wac.features;
112 113
	u8 *data;
	int ret;
114

115 116 117
	switch (usage->hid) {
	case HID_DG_CONTACTMAX:
		/* leave touch_max as is if predefined */
118 119 120 121 122 123 124 125 126 127 128 129
		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,
						data, 2, 0);
			if (ret == 2)
				features->touch_max = data[1];
			kfree(data);
		}
130
		break;
131 132 133
	}
}

134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
/*
 * 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.
162
 *
163 164
 * Intuos5 touch interface and 3rd gen Bamboo Touch do not contain useful
 * data. We deal with them after returning from this function.
165
 */
166 167
static void wacom_usage_mapping(struct hid_device *hdev,
		struct hid_field *field, struct hid_usage *usage)
168
{
169 170 171 172 173 174
	struct wacom *wacom = hid_get_drvdata(hdev);
	struct wacom_features *features = &wacom->wacom_wac.features;
	bool finger = (field->logical == HID_DG_FINGER) ||
		      (field->physical == HID_DG_FINGER);
	bool pen = (field->logical == HID_DG_STYLUS) ||
		   (field->physical == HID_DG_STYLUS);
175

176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196
	/*
	* Requiring Stylus Usage will ignore boot mouse
	* X/Y values and some cases of invalid Digitizer X/Y
	* values commonly reported.
	*/
	if (!pen && !finger)
		return;

	if (finger && !features->touch_max)
		/* touch device at least supports one touch point */
		features->touch_max = 1;

	switch (usage->hid) {
	case HID_GD_X:
		features->x_max = field->logical_maximum;
		if (finger) {
			features->device_type = BTN_TOOL_FINGER;
			features->x_phy = field->physical_maximum;
			if (features->type != BAMBOO_PT) {
				features->unit = field->unit;
				features->unitExpo = field->unit_exponent;
197
			}
198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216
		} else {
			features->device_type = BTN_TOOL_PEN;
		}
		break;
	case HID_GD_Y:
		features->y_max = field->logical_maximum;
		if (finger) {
			features->y_phy = field->physical_maximum;
			if (features->type != BAMBOO_PT) {
				features->unit = field->unit;
				features->unitExpo = field->unit_exponent;
			}
		}
		break;
	case HID_DG_TIPPRESSURE:
		if (pen)
			features->pressure_max = field->logical_maximum;
		break;
	}
217 218 219

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

222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239
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);
240
			}
241 242 243
		}
	}

244 245 246 247 248 249 250 251 252 253 254 255
	/* 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);
	}
256 257
}

258 259
static int wacom_set_device_mode(struct hid_device *hdev, int report_id,
		int length, int mode)
260 261
{
	unsigned char *rep_data;
262
	int error = -ENOMEM, limit = 0;
263

264
	rep_data = kzalloc(length, GFP_KERNEL);
265
	if (!rep_data)
266 267
		return error;

268
	do {
269 270 271
		rep_data[0] = report_id;
		rep_data[1] = mode;

272 273
		error = wacom_set_report(hdev, HID_FEATURE_REPORT, rep_data,
					 length, 1);
274
		if (error >= 0)
275
			error = wacom_get_report(hdev, HID_FEATURE_REPORT,
276
			                         rep_data, length, 1);
277 278 279 280 281 282 283
	} while ((error < 0 || rep_data[1] != mode) && limit++ < WAC_MSG_RETRIES);

	kfree(rep_data);

	return error < 0 ? error : 0;
}

284 285 286
static int wacom_bt_query_tablet_data(struct hid_device *hdev, u8 speed,
		struct wacom_features *features)
{
287 288 289 290 291 292 293 294
	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;
295 296
		ret = wacom_set_report(hdev, HID_FEATURE_REPORT, rep_data, 2,
					3);
297 298 299 300 301 302

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

			ret = wacom_set_report(hdev, HID_FEATURE_REPORT,
303
						rep_data, 2, 3);
304 305 306 307 308 309 310 311 312 313 314 315 316 317

			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;
318 319 320 321 322 323 324 325 326
	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;

327 328
		ret = wacom_set_report(hdev, HID_FEATURE_REPORT, rep_data, 2,
					1);
329 330 331
		if (ret >= 0)
			wacom->wacom_wac.bt_high_speed = speed;
		break;
332 333
	}

334 335 336
	return 0;
}

337 338 339 340 341 342 343
/*
 * 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.
 */
344 345
static int wacom_query_tablet_data(struct hid_device *hdev,
		struct wacom_features *features)
346
{
347 348 349
	if (hdev->bus == BUS_BLUETOOTH)
		return wacom_bt_query_tablet_data(hdev, 1, features);

350
	if (features->device_type == BTN_TOOL_FINGER) {
P
Ping Cheng 已提交
351
		if (features->type > TABLETPC) {
352
			/* MT Tablet PC touch */
353
			return wacom_set_device_mode(hdev, 3, 4, 4);
354
		}
355
		else if (features->type == WACOM_24HDT || features->type == CINTIQ_HYBRID) {
356
			return wacom_set_device_mode(hdev, 18, 3, 2);
357
		}
358 359
	} else if (features->device_type == BTN_TOOL_PEN) {
		if (features->type <= BAMBOO_PT && features->type != WIRELESS) {
360
			return wacom_set_device_mode(hdev, 2, 2, 2);
361
		}
362
	}
363

364
	return 0;
365 366
}

367
static void wacom_retrieve_hid_descriptor(struct hid_device *hdev,
368
					 struct wacom_features *features)
369
{
370 371
	struct wacom *wacom = hid_get_drvdata(hdev);
	struct usb_interface *intf = wacom->intf;
372

373
	/* default features */
374
	features->device_type = BTN_TOOL_PEN;
375 376 377 378
	features->x_fuzz = 4;
	features->y_fuzz = 4;
	features->pressure_fuzz = 0;
	features->distance_fuzz = 0;
379

380 381 382 383 384 385 386 387 388 389
	/*
	 * 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) {
		if (intf->cur_altsetting->desc.bInterfaceNumber == 0) {
			features->device_type = 0;
		} else if (intf->cur_altsetting->desc.bInterfaceNumber == 2) {
390
			features->device_type = BTN_TOOL_FINGER;
391 392 393 394
			features->pktlen = WACOM_PKGLEN_BBTOUCH3;
		}
	}

395
	/* only devices that support touch need to retrieve the info */
396 397
	if (features->type < BAMBOO_PT)
		return;
398

399
	wacom_parse_hid(hdev, features);
400 401
}

402
struct wacom_hdev_data {
403 404
	struct list_head list;
	struct kref kref;
405
	struct hid_device *dev;
406 407 408 409 410 411
	struct wacom_shared shared;
};

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

412 413
static bool wacom_are_sibling(struct hid_device *hdev,
		struct hid_device *sibling)
414
{
415 416 417 418 419 420 421 422 423 424
	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;
	}
425

426 427
	if (vid != sibling->vendor || pid != sibling->product)
		return false;
428

429 430 431 432 433
	/* 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;
434

435
	return !strncmp(hdev->phys, sibling->phys, n1);
436 437
}

438
static struct wacom_hdev_data *wacom_get_hdev_data(struct hid_device *hdev)
439
{
440
	struct wacom_hdev_data *data;
441 442

	list_for_each_entry(data, &wacom_udev_list, list) {
443
		if (wacom_are_sibling(hdev, data->dev)) {
444 445 446 447 448 449 450 451
			kref_get(&data->kref);
			return data;
		}
	}

	return NULL;
}

452
static int wacom_add_shared_data(struct hid_device *hdev)
453
{
454 455 456
	struct wacom *wacom = hid_get_drvdata(hdev);
	struct wacom_wac *wacom_wac = &wacom->wacom_wac;
	struct wacom_hdev_data *data;
457 458 459 460
	int retval = 0;

	mutex_lock(&wacom_udev_list_lock);

461
	data = wacom_get_hdev_data(hdev);
462
	if (!data) {
463
		data = kzalloc(sizeof(struct wacom_hdev_data), GFP_KERNEL);
464 465 466 467 468 469
		if (!data) {
			retval = -ENOMEM;
			goto out;
		}

		kref_init(&data->kref);
470
		data->dev = hdev;
471 472 473
		list_add_tail(&data->list, &wacom_udev_list);
	}

474
	wacom_wac->shared = &data->shared;
475 476 477 478 479 480 481 482

out:
	mutex_unlock(&wacom_udev_list_lock);
	return retval;
}

static void wacom_release_shared_data(struct kref *kref)
{
483 484
	struct wacom_hdev_data *data =
		container_of(kref, struct wacom_hdev_data, kref);
485 486 487 488 489 490 491 492 493 494

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

	kfree(data);
}

static void wacom_remove_shared_data(struct wacom_wac *wacom)
{
495
	struct wacom_hdev_data *data;
496 497

	if (wacom->shared) {
498
		data = container_of(wacom->shared, struct wacom_hdev_data, shared);
499 500 501 502 503
		kref_put(&data->kref, wacom_release_shared_data);
		wacom->shared = NULL;
	}
}

504 505 506
static int wacom_led_control(struct wacom *wacom)
{
	unsigned char *buf;
507
	int retval;
508 509
	unsigned char report_id = WAC_CMD_LED_CONTROL;
	int buf_size = 9;
510

511 512 513 514 515
	if (wacom->wacom_wac.pid) { /* wireless connected */
		report_id = WAC_CMD_WL_LED_CONTROL;
		buf_size = 13;
	}
	buf = kzalloc(buf_size, GFP_KERNEL);
516 517 518
	if (!buf)
		return -ENOMEM;

519
	if (wacom->wacom_wac.features.type >= INTUOS5S &&
520
	    wacom->wacom_wac.features.type <= INTUOSPL) {
521 522 523 524 525 526 527 528
		/*
		 * 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;
529 530 531 532 533 534 535 536 537 538
		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;
539 540 541 542 543 544 545 546
	}
	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;

547
		buf[0] = report_id;
548 549 550 551 552
		buf[1] = led;
		buf[2] = wacom->led.llv;
		buf[3] = wacom->led.hlv;
		buf[4] = wacom->led.img_lum;
	}
553

554
	retval = wacom_set_report(wacom->hdev, HID_FEATURE_REPORT, buf, buf_size,
555
				  WAC_CMD_RETRIES);
556 557 558 559 560
	kfree(buf);

	return retval;
}

561 562
static int wacom_led_putimage(struct wacom *wacom, int button_id, u8 xfer_id,
		const unsigned len, const void *img)
563 564 565
{
	unsigned char *buf;
	int i, retval;
566
	const unsigned chunk_len = len / 4; /* 4 chunks are needed to be sent */
567

568
	buf = kzalloc(chunk_len + 3 , GFP_KERNEL);
569 570 571 572 573 574
	if (!buf)
		return -ENOMEM;

	/* Send 'start' command */
	buf[0] = WAC_CMD_ICON_START;
	buf[1] = 1;
575 576
	retval = wacom_set_report(wacom->hdev, HID_FEATURE_REPORT, buf, 2,
				  WAC_CMD_RETRIES);
577 578 579
	if (retval < 0)
		goto out;

580
	buf[0] = xfer_id;
581 582 583
	buf[1] = button_id & 0x07;
	for (i = 0; i < 4; i++) {
		buf[2] = i;
584
		memcpy(buf + 3, img + i * chunk_len, chunk_len);
585

586
		retval = wacom_set_report(wacom->hdev, HID_FEATURE_REPORT,
587
					  buf, chunk_len + 3, WAC_CMD_RETRIES);
588 589 590 591 592 593 594
		if (retval < 0)
			break;
	}

	/* Send 'stop' */
	buf[0] = WAC_CMD_ICON_START;
	buf[1] = 0;
595 596
	wacom_set_report(wacom->hdev, HID_FEATURE_REPORT, buf, 2,
			 WAC_CMD_RETRIES);
597 598 599 600 601 602

out:
	kfree(buf);
	return retval;
}

603
static ssize_t wacom_led_select_store(struct device *dev, int set_id,
604 605
				      const char *buf, size_t count)
{
606
	struct hid_device *hdev = container_of(dev, struct hid_device, dev);
607
	struct wacom *wacom = hid_get_drvdata(hdev);
608 609 610 611 612 613 614 615 616
	unsigned int id;
	int err;

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

	mutex_lock(&wacom->lock);

617
	wacom->led.select[set_id] = id & 0x3;
618 619 620 621 622 623 624
	err = wacom_led_control(wacom);

	mutex_unlock(&wacom->lock);

	return err < 0 ? err : count;
}

625 626 627 628 629 630
#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);		\
}									\
631 632 633
static ssize_t wacom_led##SET_ID##_select_show(struct device *dev,	\
	struct device_attribute *attr, char *buf)			\
{									\
634
	struct hid_device *hdev = container_of(dev, struct hid_device, dev);\
635
	struct wacom *wacom = hid_get_drvdata(hdev);			\
P
Ping Cheng 已提交
636 637
	return scnprintf(buf, PAGE_SIZE, "%d\n",			\
			 wacom->led.select[SET_ID]);			\
638
}									\
639
static DEVICE_ATTR(status_led##SET_ID##_select, DEV_ATTR_RW_PERM,	\
640
		    wacom_led##SET_ID##_select_show,			\
641 642 643 644
		    wacom_led##SET_ID##_select_store)

DEVICE_LED_SELECT_ATTR(0);
DEVICE_LED_SELECT_ATTR(1);
645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669

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)	\
{									\
670
	struct hid_device *hdev = container_of(dev, struct hid_device, dev);\
671
	struct wacom *wacom = hid_get_drvdata(hdev);			\
672 673 674 675
									\
	return wacom_luminance_store(wacom, &wacom->led.field,		\
				     buf, count);			\
}									\
P
Ping Cheng 已提交
676 677 678 679 680 681
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);	\
}									\
682
static DEVICE_ATTR(name##_luminance, DEV_ATTR_RW_PERM,			\
P
Ping Cheng 已提交
683 684
		   wacom_##name##_luminance_show,			\
		   wacom_##name##_luminance_store)
685 686 687 688 689 690 691 692

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)
{
693
	struct hid_device *hdev = container_of(dev, struct hid_device, dev);
694
	struct wacom *wacom = hid_get_drvdata(hdev);
695
	int err;
696 697 698 699 700 701 702 703 704 705
	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;
	}
706

707
	if (count != len)
708 709 710 711
		return -EINVAL;

	mutex_lock(&wacom->lock);

712
	err = wacom_led_putimage(wacom, button_id, xfer_id, len, buf);
713 714 715 716 717 718 719 720 721 722 723 724

	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);	\
}									\
725
static DEVICE_ATTR(button##BUTTON_ID##_rawimg, DEV_ATTR_WO_PERM,	\
726 727 728 729 730 731 732 733 734 735 736
		   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);

737 738 739 740 741 742 743 744 745 746 747 748
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[] = {
749 750
	&dev_attr_status0_luminance.attr,
	&dev_attr_status1_luminance.attr,
751
	&dev_attr_status_led0_select.attr,
752 753 754 755 756 757 758 759 760 761 762 763
	&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
};

764
static struct attribute_group intuos4_led_attr_group = {
765
	.name = "wacom_led",
766
	.attrs = intuos4_led_attrs,
767 768
};

769 770 771 772 773 774 775 776 777 778 779
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,
};

780 781 782 783
static int wacom_initialize_leds(struct wacom *wacom)
{
	int error;

784 785
	/* Initialize default values */
	switch (wacom->wacom_wac.features.type) {
786
	case INTUOS4S:
787
	case INTUOS4:
788
	case INTUOS4WL:
789 790 791
	case INTUOS4L:
		wacom->led.select[0] = 0;
		wacom->led.select[1] = 0;
792
		wacom->led.llv = 10;
793 794
		wacom->led.hlv = 20;
		wacom->led.img_lum = 10;
795
		error = sysfs_create_group(&wacom->hdev->dev.kobj,
796 797 798
					   &intuos4_led_attr_group);
		break;

799
	case WACOM_24HD:
800 801 802 803 804 805
	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;
806

807
		error = sysfs_create_group(&wacom->hdev->dev.kobj,
808 809 810
					   &cintiq_led_attr_group);
		break;

811 812 813
	case INTUOS5S:
	case INTUOS5:
	case INTUOS5L:
814 815 816
	case INTUOSPS:
	case INTUOSPM:
	case INTUOSPL:
817 818 819 820 821 822 823
		if (wacom->wacom_wac.features.device_type == BTN_TOOL_PEN) {
			wacom->led.select[0] = 0;
			wacom->led.select[1] = 0;
			wacom->led.llv = 32;
			wacom->led.hlv = 0;
			wacom->led.img_lum = 0;

824
			error = sysfs_create_group(&wacom->hdev->dev.kobj,
825 826 827
						  &intuos5_led_attr_group);
		} else
			return 0;
828 829
		break;

830 831
	default:
		return 0;
832 833
	}

834
	if (error) {
835
		hid_err(wacom->hdev,
836 837 838 839
			"cannot create sysfs group err: %d\n", error);
		return error;
	}
	wacom_led_control(wacom);
840
	wacom->led_initialized = true;
841

842 843 844 845 846
	return 0;
}

static void wacom_destroy_leds(struct wacom *wacom)
{
847 848 849 850 851
	if (!wacom->led_initialized)
		return;

	wacom->led_initialized = false;

852
	switch (wacom->wacom_wac.features.type) {
853
	case INTUOS4S:
854
	case INTUOS4:
855
	case INTUOS4WL:
856
	case INTUOS4L:
857
		sysfs_remove_group(&wacom->hdev->dev.kobj,
858 859 860
				   &intuos4_led_attr_group);
		break;

861
	case WACOM_24HD:
862
	case WACOM_21UX2:
863
		sysfs_remove_group(&wacom->hdev->dev.kobj,
864 865
				   &cintiq_led_attr_group);
		break;
866 867 868 869

	case INTUOS5S:
	case INTUOS5:
	case INTUOS5L:
870 871 872
	case INTUOSPS:
	case INTUOSPM:
	case INTUOSPL:
873
		if (wacom->wacom_wac.features.device_type == BTN_TOOL_PEN)
874
			sysfs_remove_group(&wacom->hdev->dev.kobj,
875
					   &intuos5_led_attr_group);
876
		break;
877 878 879
	}
}

880
static enum power_supply_property wacom_battery_props[] = {
881
	POWER_SUPPLY_PROP_STATUS,
882
	POWER_SUPPLY_PROP_SCOPE,
883 884 885
	POWER_SUPPLY_PROP_CAPACITY
};

886 887 888 889 890 891
static enum power_supply_property wacom_ac_props[] = {
	POWER_SUPPLY_PROP_PRESENT,
	POWER_SUPPLY_PROP_ONLINE,
	POWER_SUPPLY_PROP_SCOPE,
};

892 893 894 895 896 897 898 899
static int wacom_battery_get_property(struct power_supply *psy,
				      enum power_supply_property psp,
				      union power_supply_propval *val)
{
	struct wacom *wacom = container_of(psy, struct wacom, battery);
	int ret = 0;

	switch (psp) {
900 901 902
		case POWER_SUPPLY_PROP_SCOPE:
			val->intval = POWER_SUPPLY_SCOPE_DEVICE;
			break;
903 904
		case POWER_SUPPLY_PROP_CAPACITY:
			val->intval =
905 906 907 908 909 910 911 912 913 914
				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;
			else
				val->intval = POWER_SUPPLY_STATUS_DISCHARGING;
915 916 917 918 919 920 921 922 923
			break;
		default:
			ret = -EINVAL;
			break;
	}

	return ret;
}

924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946
static int wacom_ac_get_property(struct power_supply *psy,
				enum power_supply_property psp,
				union power_supply_propval *val)
{
	struct wacom *wacom = container_of(psy, struct wacom, ac);
	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;
}

947 948
static int wacom_initialize_battery(struct wacom *wacom)
{
949
	static atomic_t battery_no = ATOMIC_INIT(0);
950
	int error;
951
	unsigned long n;
952

953
	if (wacom->wacom_wac.features.quirks & WACOM_QUIRK_BATTERY) {
954
		n = atomic_inc_return(&battery_no) - 1;
955

956 957 958
		wacom->battery.properties = wacom_battery_props;
		wacom->battery.num_properties = ARRAY_SIZE(wacom_battery_props);
		wacom->battery.get_property = wacom_battery_get_property;
959 960
		sprintf(wacom->wacom_wac.bat_name, "wacom_battery_%ld", n);
		wacom->battery.name = wacom->wacom_wac.bat_name;
961 962 963
		wacom->battery.type = POWER_SUPPLY_TYPE_BATTERY;
		wacom->battery.use_for_apm = 0;

964 965 966 967 968 969 970 971
		wacom->ac.properties = wacom_ac_props;
		wacom->ac.num_properties = ARRAY_SIZE(wacom_ac_props);
		wacom->ac.get_property = wacom_ac_get_property;
		sprintf(wacom->wacom_wac.ac_name, "wacom_ac_%ld", n);
		wacom->ac.name = wacom->wacom_wac.ac_name;
		wacom->ac.type = POWER_SUPPLY_TYPE_MAINS;
		wacom->ac.use_for_apm = 0;

972
		error = power_supply_register(&wacom->hdev->dev,
973
					      &wacom->battery);
974 975 976 977
		if (error)
			return error;

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

979 980 981 982 983 984 985
		error = power_supply_register(&wacom->hdev->dev, &wacom->ac);
		if (error) {
			power_supply_unregister(&wacom->battery);
			return error;
		}

		power_supply_powers(&wacom->ac, &wacom->hdev->dev);
986 987
	}

988
	return 0;
989 990 991 992
}

static void wacom_destroy_battery(struct wacom *wacom)
{
993 994
	if ((wacom->wacom_wac.features.quirks & WACOM_QUIRK_BATTERY) &&
	     wacom->battery.dev) {
995
		power_supply_unregister(&wacom->battery);
996
		wacom->battery.dev = NULL;
997 998
		power_supply_unregister(&wacom->ac);
		wacom->ac.dev = NULL;
999
	}
1000 1001
}

1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030
static ssize_t wacom_show_speed(struct device *dev,
				struct device_attribute
				*attr, char *buf)
{
	struct hid_device *hdev = container_of(dev, struct hid_device, dev);
	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)
{
	struct hid_device *hdev = container_of(dev, struct hid_device, dev);
	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;
}

1031
static DEVICE_ATTR(speed, DEV_ATTR_RW_PERM,
1032 1033
		wacom_show_speed, wacom_store_speed);

1034
static struct input_dev *wacom_allocate_input(struct wacom *wacom)
1035 1036
{
	struct input_dev *input_dev;
1037
	struct hid_device *hdev = wacom->hdev;
1038 1039 1040
	struct wacom_wac *wacom_wac = &(wacom->wacom_wac);

	input_dev = input_allocate_device();
1041 1042
	if (!input_dev)
		return NULL;
1043 1044

	input_dev->name = wacom_wac->name;
1045 1046
	input_dev->phys = hdev->phys;
	input_dev->dev.parent = &hdev->dev;
1047 1048
	input_dev->open = wacom_open;
	input_dev->close = wacom_close;
1049 1050 1051
	input_dev->uniq = hdev->uniq;
	input_dev->id.bustype = hdev->bus;
	input_dev->id.vendor  = hdev->vendor;
1052
	input_dev->id.product = wacom_wac->pid ? wacom_wac->pid : hdev->product;
1053
	input_dev->id.version = hdev->version;
1054 1055
	input_set_drvdata(input_dev, wacom);

1056 1057 1058
	return input_dev;
}

1059
static void wacom_free_inputs(struct wacom *wacom)
1060
{
1061 1062 1063 1064 1065 1066 1067 1068
	struct wacom_wac *wacom_wac = &(wacom->wacom_wac);

	if (wacom_wac->input)
		input_free_device(wacom_wac->input);
	if (wacom_wac->pad_input)
		input_free_device(wacom_wac->pad_input);
	wacom_wac->input = NULL;
	wacom_wac->pad_input = NULL;
1069 1070
}

1071
static int wacom_allocate_inputs(struct wacom *wacom)
1072 1073 1074 1075 1076 1077 1078
{
	struct input_dev *input_dev, *pad_input_dev;
	struct wacom_wac *wacom_wac = &(wacom->wacom_wac);

	input_dev = wacom_allocate_input(wacom);
	pad_input_dev = wacom_allocate_input(wacom);
	if (!input_dev || !pad_input_dev) {
1079 1080
		wacom_free_inputs(wacom);
		return -ENOMEM;
1081 1082
	}

1083
	wacom_wac->input = input_dev;
1084 1085 1086
	wacom_wac->pad_input = pad_input_dev;
	wacom_wac->pad_input->name = wacom_wac->pad_name;

1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120
	return 0;
}

static void wacom_clean_inputs(struct wacom *wacom)
{
	if (wacom->wacom_wac.input) {
		if (wacom->wacom_wac.input_registered)
			input_unregister_device(wacom->wacom_wac.input);
		else
			input_free_device(wacom->wacom_wac.input);
	}
	if (wacom->wacom_wac.pad_input) {
		if (wacom->wacom_wac.input_registered)
			input_unregister_device(wacom->wacom_wac.pad_input);
		else
			input_free_device(wacom->wacom_wac.pad_input);
	}
	wacom->wacom_wac.input = NULL;
	wacom->wacom_wac.pad_input = NULL;
	wacom_destroy_leds(wacom);
}

static int wacom_register_inputs(struct wacom *wacom)
{
	struct input_dev *input_dev, *pad_input_dev;
	struct wacom_wac *wacom_wac = &(wacom->wacom_wac);
	int error;

	input_dev = wacom_wac->input;
	pad_input_dev = wacom_wac->pad_input;

	if (!input_dev || !pad_input_dev)
		return -EINVAL;

1121 1122
	error = wacom_setup_input_capabilities(input_dev, wacom_wac);
	if (error)
1123
		return error;
1124 1125

	error = input_register_device(input_dev);
1126
	if (error)
1127
		return error;
1128

1129 1130 1131 1132 1133 1134 1135 1136 1137
	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)
1138
			goto fail_register_pad_input;
1139 1140 1141

		error = wacom_initialize_leds(wacom);
		if (error)
1142
			goto fail_leds;
1143 1144
	}

1145 1146
	wacom_wac->input_registered = true;

1147
	return 0;
1148

1149
fail_leds:
1150 1151
	input_unregister_device(pad_input_dev);
	pad_input_dev = NULL;
1152
fail_register_pad_input:
1153
	input_unregister_device(input_dev);
1154
	wacom_wac->input = NULL;
1155 1156 1157
	return error;
}

1158 1159 1160 1161 1162
static void wacom_wireless_work(struct work_struct *work)
{
	struct wacom *wacom = container_of(work, struct wacom, work);
	struct usb_device *usbdev = wacom->usbdev;
	struct wacom_wac *wacom_wac = &wacom->wacom_wac;
1163
	struct hid_device *hdev1, *hdev2;
1164 1165 1166
	struct wacom *wacom1, *wacom2;
	struct wacom_wac *wacom_wac1, *wacom_wac2;
	int error;
1167 1168 1169

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

1173 1174
	wacom_destroy_battery(wacom);

1175
	/* Stylus interface */
1176 1177
	hdev1 = usb_get_intfdata(usbdev->config->interface[1]);
	wacom1 = hid_get_drvdata(hdev1);
1178
	wacom_wac1 = &(wacom1->wacom_wac);
1179
	wacom_clean_inputs(wacom1);
1180 1181

	/* Touch interface */
1182 1183
	hdev2 = usb_get_intfdata(usbdev->config->interface[2]);
	wacom2 = hid_get_drvdata(hdev2);
1184
	wacom_wac2 = &(wacom2->wacom_wac);
1185
	wacom_clean_inputs(wacom2);
1186 1187

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

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

1196 1197 1198
		while (id->bus) {
			if (id->vendor == USB_VENDOR_ID_WACOM &&
			    id->product == wacom_wac->pid)
1199 1200 1201 1202
				break;
			id++;
		}

1203
		if (!id->bus) {
1204
			hid_info(wacom->hdev, "ignoring unknown PID.\n");
1205 1206 1207 1208
			return;
		}

		/* Stylus interface */
1209
		wacom_wac1->features =
1210
			*((struct wacom_features *)id->driver_data);
1211
		wacom_wac1->features.device_type = BTN_TOOL_PEN;
1212 1213
		snprintf(wacom_wac1->name, WACOM_NAME_MAX, "%s (WL) Pen",
			 wacom_wac1->features.name);
1214 1215
		snprintf(wacom_wac1->pad_name, WACOM_NAME_MAX, "%s (WL) Pad",
			 wacom_wac1->features.name);
1216 1217
		wacom_wac1->shared->touch_max = wacom_wac1->features.touch_max;
		wacom_wac1->shared->type = wacom_wac1->features.type;
1218
		wacom_wac1->pid = wacom_wac->pid;
1219 1220
		error = wacom_allocate_inputs(wacom1) ||
			wacom_register_inputs(wacom1);
1221
		if (error)
1222
			goto fail;
1223 1224

		/* Touch interface */
1225 1226
		if (wacom_wac1->features.touch_max ||
		    wacom_wac1->features.type == INTUOSHT) {
1227
			wacom_wac2->features =
1228
				*((struct wacom_features *)id->driver_data);
1229 1230 1231 1232 1233 1234 1235 1236 1237
			wacom_wac2->features.pktlen = WACOM_PKGLEN_BBTOUCH3;
			wacom_wac2->features.device_type = BTN_TOOL_FINGER;
			wacom_wac2->features.x_max = wacom_wac2->features.y_max = 4096;
			if (wacom_wac2->features.touch_max)
				snprintf(wacom_wac2->name, WACOM_NAME_MAX,
					 "%s (WL) Finger",wacom_wac2->features.name);
			else
				snprintf(wacom_wac2->name, WACOM_NAME_MAX,
					 "%s (WL) Pad",wacom_wac2->features.name);
1238 1239
			snprintf(wacom_wac2->pad_name, WACOM_NAME_MAX,
				 "%s (WL) Pad", wacom_wac2->features.name);
1240
			wacom_wac2->pid = wacom_wac->pid;
1241 1242
			error = wacom_allocate_inputs(wacom2) ||
				wacom_register_inputs(wacom2);
1243 1244
			if (error)
				goto fail;
1245 1246 1247 1248

			if (wacom_wac1->features.type == INTUOSHT &&
			    wacom_wac1->features.touch_max)
				wacom_wac->shared->touch_input = wacom_wac2->input;
1249
		}
1250 1251 1252

		error = wacom_initialize_battery(wacom);
		if (error)
1253
			goto fail;
1254
	}
1255 1256 1257

	return;

1258
fail:
1259 1260
	wacom_clean_inputs(wacom1);
	wacom_clean_inputs(wacom2);
1261
	return;
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
/*
 * 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)
{
	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);
}

1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313
static int wacom_hid_report_len(struct hid_report *report)
{
	/* equivalent to DIV_ROUND_UP(report->size, 8) + !!(report->id > 0) */
	return ((report->size - 1) >> 3) + 1 + (report->id > 0);
}

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) {
		size_t report_size = wacom_hid_report_len(report);
		if (report_size > size)
			size = report_size;
	}

	return size;
}

1314 1315
static int wacom_probe(struct hid_device *hdev,
		const struct hid_device_id *id)
1316
{
1317
	struct usb_interface *intf = to_usb_interface(hdev->dev.parent);
1318 1319 1320
	struct usb_device *dev = interface_to_usbdev(intf);
	struct wacom *wacom;
	struct wacom_wac *wacom_wac;
1321 1322
	struct wacom_features *features;
	int error;
1323
	unsigned int connect_mask = HID_CONNECT_HIDRAW;
1324

1325
	if (!id->driver_data)
1326 1327
		return -EINVAL;

1328 1329
	hdev->quirks |= HID_QUIRK_NO_INIT_REPORTS;

1330
	wacom = kzalloc(sizeof(struct wacom), GFP_KERNEL);
1331 1332
	if (!wacom)
		return -ENOMEM;
1333

1334 1335 1336
	hid_set_drvdata(hdev, wacom);
	wacom->hdev = hdev;

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

1344
	wacom_wac = &wacom->wacom_wac;
1345
	wacom_wac->features = *((struct wacom_features *)id->driver_data);
1346
	features = &wacom_wac->features;
1347
	features->pktlen = wacom_compute_pktlen(hdev);
1348 1349
	if (features->pktlen > WACOM_PKGLEN_MAX) {
		error = -EINVAL;
1350
		goto fail_pktlen;
1351
	}
1352

1353 1354
	if (features->check_for_hid_type && features->hid_type != hdev->type) {
		error = -ENODEV;
1355
		goto fail_type;
1356
	}
1357 1358

	wacom->usbdev = dev;
1359 1360
	wacom->intf = intf;
	mutex_init(&wacom->lock);
1361
	INIT_WORK(&wacom->work, wacom_wireless_work);
1362

1363 1364 1365 1366 1367 1368
	if (!(features->quirks & WACOM_QUIRK_NO_INPUT)) {
		error = wacom_allocate_inputs(wacom);
		if (error)
			goto fail_allocate_inputs;
	}

1369 1370 1371
	/* set the default size in case we do not get them from hid */
	wacom_set_default_phy(features);

1372
	/* Retrieve the physical and logical size for touch devices */
1373
	wacom_retrieve_hid_descriptor(hdev, features);
1374

1375 1376
	/*
	 * Intuos5 has no useful data about its touch interface in its
1377
	 * HID descriptor. If this is the touch interface (PacketSize
1378 1379
	 * of WACOM_PKGLEN_BBTOUCH3), override the table values.
	 */
1380
	if (features->type >= INTUOS5S && features->type <= INTUOSHT) {
1381
		if (features->pktlen == WACOM_PKGLEN_BBTOUCH3) {
1382 1383 1384 1385 1386 1387 1388 1389 1390
			features->device_type = BTN_TOOL_FINGER;

			features->x_max = 4096;
			features->y_max = 4096;
		} else {
			features->device_type = BTN_TOOL_PEN;
		}
	}

1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402
	/*
	 * Same thing for Bamboo 3rd gen.
	 */
	if ((features->type == BAMBOO_PT) &&
	    (features->pktlen == WACOM_PKGLEN_BBTOUCH3) &&
	    (features->device_type == BTN_TOOL_PEN)) {
		features->device_type = BTN_TOOL_FINGER;

		features->x_max = 4096;
		features->y_max = 4096;
	}

1403 1404 1405
	if (hdev->bus == BUS_BLUETOOTH)
		features->quirks |= WACOM_QUIRK_BATTERY;

1406 1407
	wacom_setup_device_quirks(features);

1408 1409 1410
	/* set unit to "100th of a mm" for devices not reported by HID */
	if (!features->unit) {
		features->unit = 0x11;
1411
		features->unitExpo = -3;
1412 1413 1414
	}
	wacom_calculate_res(features);

1415
	strlcpy(wacom_wac->name, features->name, sizeof(wacom_wac->name));
1416 1417
	snprintf(wacom_wac->pad_name, sizeof(wacom_wac->pad_name),
		"%s Pad", features->name);
1418

1419
	if (features->quirks & WACOM_QUIRK_MULTI_INPUT) {
1420
		/* Append the device type to the name */
1421 1422 1423 1424 1425 1426
		if (features->device_type != BTN_TOOL_FINGER)
			strlcat(wacom_wac->name, " Pen", WACOM_NAME_MAX);
		else if (features->touch_max)
			strlcat(wacom_wac->name, " Finger", WACOM_NAME_MAX);
		else
			strlcat(wacom_wac->name, " Pad", WACOM_NAME_MAX);
1427

1428
		error = wacom_add_shared_data(hdev);
1429
		if (error)
1430
			goto fail_shared_data;
1431 1432
	}

1433 1434 1435 1436
	if (!(features->quirks & WACOM_QUIRK_MONITOR) &&
	     (features->quirks & WACOM_QUIRK_BATTERY)) {
		error = wacom_initialize_battery(wacom);
		if (error)
1437
			goto fail_battery;
1438 1439
	}

1440
	if (!(features->quirks & WACOM_QUIRK_NO_INPUT)) {
1441
		error = wacom_register_inputs(wacom);
1442
		if (error)
1443
			goto fail_register_inputs;
1444 1445 1446 1447 1448 1449 1450 1451
	}

	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);
1452
	}
1453

1454
	/* Note that if query fails it is not a hard failure */
1455
	wacom_query_tablet_data(hdev, features);
1456

1457 1458 1459
	if (features->type == HID_GENERIC)
		connect_mask |= HID_CONNECT_DRIVER;

1460
	/* Regular HID work starts now */
1461
	error = hid_hw_start(hdev, connect_mask);
1462 1463
	if (error) {
		hid_err(hdev, "hw start failed\n");
1464
		goto fail_hw_start;
1465
	}
1466

1467 1468 1469
	if (features->quirks & WACOM_QUIRK_MONITOR)
		error = hid_hw_open(hdev);

1470 1471 1472 1473 1474
	if (wacom_wac->features.type == INTUOSHT && wacom_wac->features.touch_max) {
		if (wacom_wac->features.device_type == BTN_TOOL_FINGER)
			wacom_wac->shared->touch_input = wacom_wac->input;
	}

1475 1476
	return 0;

1477 1478
fail_hw_start:
	if (hdev->bus == BUS_BLUETOOTH)
1479
		device_remove_file(&hdev->dev, &dev_attr_speed);
1480
fail_register_inputs:
1481
	wacom_clean_inputs(wacom);
1482 1483 1484 1485
	wacom_destroy_battery(wacom);
fail_battery:
	wacom_remove_shared_data(wacom_wac);
fail_shared_data:
1486 1487
	wacom_clean_inputs(wacom);
fail_allocate_inputs:
1488 1489 1490 1491
fail_type:
fail_pktlen:
fail_parse:
	kfree(wacom);
1492
	hid_set_drvdata(hdev, NULL);
1493
	return error;
1494 1495
}

1496
static void wacom_remove(struct hid_device *hdev)
1497
{
1498
	struct wacom *wacom = hid_get_drvdata(hdev);
1499

1500
	hid_hw_stop(hdev);
1501

1502
	cancel_work_sync(&wacom->work);
1503
	wacom_clean_inputs(wacom);
1504 1505
	if (hdev->bus == BUS_BLUETOOTH)
		device_remove_file(&hdev->dev, &dev_attr_speed);
1506
	wacom_destroy_battery(wacom);
1507
	wacom_remove_shared_data(&wacom->wacom_wac);
1508

1509 1510
	hid_set_drvdata(hdev, NULL);
	kfree(wacom);
1511 1512
}

1513
#ifdef CONFIG_PM
1514
static int wacom_resume(struct hid_device *hdev)
1515
{
1516
	struct wacom *wacom = hid_get_drvdata(hdev);
1517
	struct wacom_features *features = &wacom->wacom_wac.features;
1518 1519

	mutex_lock(&wacom->lock);
1520 1521

	/* switch to wacom mode first */
1522
	wacom_query_tablet_data(hdev, features);
1523
	wacom_led_control(wacom);
1524

1525 1526
	mutex_unlock(&wacom->lock);

1527
	return 0;
1528 1529
}

1530
static int wacom_reset_resume(struct hid_device *hdev)
1531
{
1532
	return wacom_resume(hdev);
1533
}
1534
#endif /* CONFIG_PM */
1535

1536
static struct hid_driver wacom_driver = {
1537
	.name =		"wacom",
1538
	.id_table =	wacom_ids,
1539
	.probe =	wacom_probe,
1540
	.remove =	wacom_remove,
1541 1542
	.event =	wacom_wac_event,
	.report =	wacom_wac_report,
1543
#ifdef CONFIG_PM
1544 1545
	.resume =	wacom_resume,
	.reset_resume =	wacom_reset_resume,
1546 1547
#endif
	.raw_event =	wacom_raw_event,
1548
};
1549
module_hid_driver(wacom_driver);
1550 1551 1552 1553 1554

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