|
@@ -778,6 +778,11 @@ static int wacom_intuos_irq(struct wacom_wac *wacom)
|
|
input_report_abs(input, ABS_X, be16_to_cpup((__be16 *)&data[4]));
|
|
input_report_abs(input, ABS_X, be16_to_cpup((__be16 *)&data[4]));
|
|
input_report_abs(input, ABS_Y, be16_to_cpup((__be16 *)&data[6]));
|
|
input_report_abs(input, ABS_Y, be16_to_cpup((__be16 *)&data[6]));
|
|
input_report_abs(input, ABS_Z, be16_to_cpup((__be16 *)&data[8]));
|
|
input_report_abs(input, ABS_Z, be16_to_cpup((__be16 *)&data[8]));
|
|
|
|
+ if ((data[2] & 0x07) | data[4] | data[5] | data[6] | data[7] | data[8] | data[9]) {
|
|
|
|
+ input_report_abs(input, ABS_MISC, PAD_DEVICE_ID);
|
|
|
|
+ } else {
|
|
|
|
+ input_report_abs(input, ABS_MISC, 0);
|
|
|
|
+ }
|
|
} else if (features->type == CINTIQ_HYBRID) {
|
|
} else if (features->type == CINTIQ_HYBRID) {
|
|
/*
|
|
/*
|
|
* Do not send hardware buttons under Android. They
|
|
* Do not send hardware buttons under Android. They
|
|
@@ -2725,9 +2730,9 @@ static const struct wacom_features wacom_features_0xF6 =
|
|
.oVid = USB_VENDOR_ID_WACOM, .oPid = 0xf8, .touch_max = 10,
|
|
.oVid = USB_VENDOR_ID_WACOM, .oPid = 0xf8, .touch_max = 10,
|
|
.check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
|
|
.check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
|
|
static const struct wacom_features wacom_features_0x32A =
|
|
static const struct wacom_features wacom_features_0x32A =
|
|
- { "Wacom Cintiq 27QHD", 119740, 67520, 2047,
|
|
|
|
- 63, WACOM_27QHD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES,
|
|
|
|
- WACOM_27QHD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES };
|
|
|
|
|
|
+ { "Wacom Cintiq 27QHD", 119740, 67520, 2047, 63,
|
|
|
|
+ WACOM_27QHD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES,
|
|
|
|
+ WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET };
|
|
static const struct wacom_features wacom_features_0x32B =
|
|
static const struct wacom_features wacom_features_0x32B =
|
|
{ "Wacom Cintiq 27QHD touch", 119740, 67520, 2047, 63,
|
|
{ "Wacom Cintiq 27QHD touch", 119740, 67520, 2047, 63,
|
|
WACOM_27QHD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES,
|
|
WACOM_27QHD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES,
|