Skip to content

Commit b4bf212

Browse files
PinglinuxJiri Kosina
authored andcommitted
HID: wacom: Add support for Cintiq 13HD Touch
Cintiq 13HD Touch is a new display tablet with pen and 10 finger touches. Signed-off-by: Ping Cheng <[email protected]> Signed-off-by: Jiri Kosina <[email protected]>
1 parent 0149931 commit b4bf212

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

drivers/hid/wacom_wac.c

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2892,6 +2892,15 @@ static const struct wacom_features wacom_features_0x304 =
28922892
{ "Wacom Cintiq 13HD", 59152, 33448, 1023, 63,
28932893
WACOM_13HD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES,
28942894
WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET };
2895+
static const struct wacom_features wacom_features_0x333 =
2896+
{ "Wacom Cintiq 13HD touch", 59152, 33448, 2047, 63,
2897+
WACOM_13HD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES,
2898+
WACOM_CINTIQ_OFFSET, WACOM_CINTIQ_OFFSET,
2899+
.oVid = USB_VENDOR_ID_WACOM, .oPid = 0x335 };
2900+
static const struct wacom_features wacom_features_0x335 =
2901+
{ "Wacom Cintiq 13HD touch", .type = WACOM_24HDT, /* Touch */
2902+
.oVid = USB_VENDOR_ID_WACOM, .oPid = 0x333, .touch_max = 10,
2903+
.check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE };
28952904
static const struct wacom_features wacom_features_0xC7 =
28962905
{ "Wacom DTU1931", 37832, 30305, 511, 0,
28972906
PL, WACOM_INTUOS_RES, WACOM_INTUOS_RES };
@@ -3261,6 +3270,8 @@ const struct hid_device_id wacom_ids[] = {
32613270
{ USB_DEVICE_WACOM(0x32B) },
32623271
{ USB_DEVICE_WACOM(0x32C) },
32633272
{ USB_DEVICE_WACOM(0x32F) },
3273+
{ USB_DEVICE_WACOM(0x333) },
3274+
{ USB_DEVICE_WACOM(0x335) },
32643275
{ USB_DEVICE_WACOM(0x4001) },
32653276
{ USB_DEVICE_WACOM(0x4004) },
32663277
{ USB_DEVICE_WACOM(0x5000) },

0 commit comments

Comments
 (0)