1 /*- 2 * Copyright (c) 2014-2017 Vladimir Kondratyev <wulf@FreeBSD.org> 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright 9 * notice, this list of conditions and the following disclaimer. 10 * 2. Redistributions in binary form must reproduce the above copyright 11 * notice, this list of conditions and the following disclaimer in the 12 * documentation and/or other materials provided with the distribution. 13 * 14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 24 * SUCH DAMAGE. 25 */ 26 27 #include <sys/cdefs.h> 28 __FBSDID("$FreeBSD$"); 29 30 /* 31 * MS Windows 7/8/10 compatible USB HID Multi-touch Device driver. 32 * https://msdn.microsoft.com/en-us/library/windows/hardware/jj151569(v=vs.85).aspx 33 * https://www.kernel.org/doc/Documentation/input/multi-touch-protocol.txt 34 */ 35 36 #include <sys/param.h> 37 #include <sys/bus.h> 38 #include <sys/conf.h> 39 #include <sys/kernel.h> 40 #include <sys/lock.h> 41 #include <sys/malloc.h> 42 #include <sys/module.h> 43 #include <sys/mutex.h> 44 #include <sys/stddef.h> 45 #include <sys/sysctl.h> 46 #include <sys/systm.h> 47 48 #include "usbdevs.h" 49 #include <dev/usb/usb.h> 50 #include <dev/usb/usbdi.h> 51 #include <dev/usb/usbdi_util.h> 52 #include <dev/usb/usbhid.h> 53 54 #include <dev/usb/quirk/usb_quirk.h> 55 56 #include <dev/evdev/evdev.h> 57 #include <dev/evdev/input.h> 58 59 #define USB_DEBUG_VAR wmt_debug 60 #include <dev/usb/usb_debug.h> 61 62 #ifdef USB_DEBUG 63 static int wmt_debug = 0; 64 65 static SYSCTL_NODE(_hw_usb, OID_AUTO, wmt, CTLFLAG_RW, 0, 66 "USB MSWindows 7/8/10 compatible Multi-touch Device"); 67 SYSCTL_INT(_hw_usb_wmt, OID_AUTO, debug, CTLFLAG_RWTUN, 68 &wmt_debug, 1, "Debug level"); 69 #endif 70 71 #define WMT_BSIZE 1024 /* bytes, buffer size */ 72 73 enum { 74 WMT_INTR_DT, 75 WMT_N_TRANSFER, 76 }; 77 78 enum { 79 WMT_TIP_SWITCH, 80 #define WMT_SLOT WMT_TIP_SWITCH 81 WMT_WIDTH, 82 #define WMT_MAJOR WMT_WIDTH 83 WMT_HEIGHT, 84 #define WMT_MINOR WMT_HEIGHT 85 WMT_ORIENTATION, 86 WMT_X, 87 WMT_Y, 88 WMT_CONTACTID, 89 WMT_PRESSURE, 90 WMT_IN_RANGE, 91 WMT_CONFIDENCE, 92 WMT_TOOL_X, 93 WMT_TOOL_Y, 94 WMT_N_USAGES, 95 }; 96 97 #define WMT_NO_CODE (ABS_MAX + 10) 98 #define WMT_NO_USAGE -1 99 100 struct wmt_hid_map_item { 101 char name[5]; 102 int32_t usage; /* HID usage */ 103 uint32_t code; /* Evdev event code */ 104 bool required; /* Required for MT Digitizers */ 105 }; 106 107 static const struct wmt_hid_map_item wmt_hid_map[WMT_N_USAGES] = { 108 109 [WMT_TIP_SWITCH] = { /* WMT_SLOT */ 110 .name = "TIP", 111 .usage = HID_USAGE2(HUP_DIGITIZERS, HUD_TIP_SWITCH), 112 .code = ABS_MT_SLOT, 113 .required = true, 114 }, 115 [WMT_WIDTH] = { /* WMT_MAJOR */ 116 .name = "WDTH", 117 .usage = HID_USAGE2(HUP_DIGITIZERS, HUD_WIDTH), 118 .code = ABS_MT_TOUCH_MAJOR, 119 .required = false, 120 }, 121 [WMT_HEIGHT] = { /* WMT_MINOR */ 122 .name = "HGHT", 123 .usage = HID_USAGE2(HUP_DIGITIZERS, HUD_HEIGHT), 124 .code = ABS_MT_TOUCH_MINOR, 125 .required = false, 126 }, 127 [WMT_ORIENTATION] = { 128 .name = "ORIE", 129 .usage = WMT_NO_USAGE, 130 .code = ABS_MT_ORIENTATION, 131 .required = false, 132 }, 133 [WMT_X] = { 134 .name = "X", 135 .usage = HID_USAGE2(HUP_GENERIC_DESKTOP, HUG_X), 136 .code = ABS_MT_POSITION_X, 137 .required = true, 138 }, 139 [WMT_Y] = { 140 .name = "Y", 141 .usage = HID_USAGE2(HUP_GENERIC_DESKTOP, HUG_Y), 142 .code = ABS_MT_POSITION_Y, 143 .required = true, 144 }, 145 [WMT_CONTACTID] = { 146 .name = "C_ID", 147 .usage = HID_USAGE2(HUP_DIGITIZERS, HUD_CONTACTID), 148 .code = ABS_MT_TRACKING_ID, 149 .required = true, 150 }, 151 [WMT_PRESSURE] = { 152 .name = "PRES", 153 .usage = HID_USAGE2(HUP_DIGITIZERS, HUD_TIP_PRESSURE), 154 .code = ABS_MT_PRESSURE, 155 .required = false, 156 }, 157 [WMT_IN_RANGE] = { 158 .name = "RANG", 159 .usage = HID_USAGE2(HUP_DIGITIZERS, HUD_IN_RANGE), 160 .code = ABS_MT_DISTANCE, 161 .required = false, 162 }, 163 [WMT_CONFIDENCE] = { 164 .name = "CONF", 165 .usage = HID_USAGE2(HUP_DIGITIZERS, HUD_CONFIDENCE), 166 .code = WMT_NO_CODE, 167 .required = false, 168 }, 169 [WMT_TOOL_X] = { /* Shares HID usage with WMT_X */ 170 .name = "TL_X", 171 .usage = HID_USAGE2(HUP_GENERIC_DESKTOP, HUG_X), 172 .code = ABS_MT_TOOL_X, 173 .required = false, 174 }, 175 [WMT_TOOL_Y] = { /* Shares HID usage with WMT_Y */ 176 .name = "TL_Y", 177 .usage = HID_USAGE2(HUP_GENERIC_DESKTOP, HUG_Y), 178 .code = ABS_MT_TOOL_Y, 179 .required = false, 180 }, 181 }; 182 183 struct wmt_absinfo { 184 int32_t min; 185 int32_t max; 186 int32_t res; 187 }; 188 189 struct wmt_softc 190 { 191 device_t dev; 192 struct mtx mtx; 193 struct wmt_absinfo ai[WMT_N_USAGES]; 194 struct hid_location locs[MAX_MT_SLOTS][WMT_N_USAGES]; 195 struct hid_location nconts_loc; 196 197 struct usb_xfer *xfer[WMT_N_TRANSFER]; 198 struct evdev_dev *evdev; 199 200 uint32_t slot_data[WMT_N_USAGES]; 201 uint32_t caps; 202 uint32_t isize; 203 uint32_t nconts_max; 204 uint8_t report_id; 205 206 struct hid_location cont_max_loc; 207 uint32_t cont_max_rlen; 208 uint8_t cont_max_rid; 209 uint32_t thqa_cert_rlen; 210 uint8_t thqa_cert_rid; 211 212 uint8_t buf[WMT_BSIZE] __aligned(4); 213 }; 214 215 #define USAGE_SUPPORTED(caps, usage) ((caps) & (1 << (usage))) 216 #define WMT_FOREACH_USAGE(caps, usage) \ 217 for ((usage) = 0; (usage) < WMT_N_USAGES; ++(usage)) \ 218 if (USAGE_SUPPORTED((caps), (usage))) 219 220 static bool wmt_hid_parse(struct wmt_softc *, const void *, uint16_t); 221 static void wmt_cont_max_parse(struct wmt_softc *, const void *, uint16_t); 222 223 static usb_callback_t wmt_intr_callback; 224 225 static device_probe_t wmt_probe; 226 static device_attach_t wmt_attach; 227 static device_detach_t wmt_detach; 228 229 static evdev_open_t wmt_ev_open; 230 static evdev_close_t wmt_ev_close; 231 232 static const struct evdev_methods wmt_evdev_methods = { 233 .ev_open = &wmt_ev_open, 234 .ev_close = &wmt_ev_close, 235 }; 236 237 static const struct usb_config wmt_config[WMT_N_TRANSFER] = { 238 239 [WMT_INTR_DT] = { 240 .type = UE_INTERRUPT, 241 .endpoint = UE_ADDR_ANY, 242 .direction = UE_DIR_IN, 243 .flags = { .pipe_bof = 1, .short_xfer_ok = 1 }, 244 .bufsize = WMT_BSIZE, 245 .callback = &wmt_intr_callback, 246 }, 247 }; 248 249 static int 250 wmt_probe(device_t dev) 251 { 252 struct usb_attach_arg *uaa = device_get_ivars(dev); 253 void *d_ptr; 254 uint16_t d_len; 255 int err; 256 257 if (uaa->usb_mode != USB_MODE_HOST) 258 return (ENXIO); 259 260 if (uaa->info.bInterfaceClass != UICLASS_HID) 261 return (ENXIO); 262 263 if (usb_test_quirk(uaa, UQ_WMT_IGNORE)) 264 return (ENXIO); 265 266 err = usbd_req_get_hid_desc(uaa->device, NULL, 267 &d_ptr, &d_len, M_TEMP, uaa->info.bIfaceIndex); 268 if (err) 269 return (ENXIO); 270 271 if (wmt_hid_parse(NULL, d_ptr, d_len)) 272 err = BUS_PROBE_DEFAULT; 273 else 274 err = ENXIO; 275 276 free(d_ptr, M_TEMP); 277 return (err); 278 } 279 280 static int 281 wmt_attach(device_t dev) 282 { 283 struct usb_attach_arg *uaa = device_get_ivars(dev); 284 struct wmt_softc *sc = device_get_softc(dev); 285 void *d_ptr; 286 uint16_t d_len; 287 size_t i; 288 int err; 289 bool hid_ok; 290 291 device_set_usb_desc(dev); 292 sc->dev = dev; 293 294 /* Get HID descriptor */ 295 err = usbd_req_get_hid_desc(uaa->device, NULL, 296 &d_ptr, &d_len, M_TEMP, uaa->info.bIfaceIndex); 297 if (err) { 298 DPRINTF("usbd_req_get_hid_desc error=%s\n", usbd_errstr(err)); 299 return (ENXIO); 300 } 301 302 hid_ok = wmt_hid_parse(sc, d_ptr, d_len); 303 free(d_ptr, M_TEMP); 304 if (!hid_ok) { 305 DPRINTF("multi-touch HID descriptor not found\n"); 306 return (ENXIO); 307 } 308 309 /* Check HID report length */ 310 if (sc->isize <= 0 || sc->isize > WMT_BSIZE) { 311 DPRINTF("Input size invalid or too large: %d\n", sc->isize); 312 return (ENXIO); 313 } 314 315 /* Fetch and parse "Contact count maximum" feature report */ 316 if (sc->cont_max_rlen > 0 && sc->cont_max_rlen <= WMT_BSIZE) { 317 err = usbd_req_get_report(uaa->device, NULL, sc->buf, 318 sc->cont_max_rlen, uaa->info.bIfaceIndex, 319 UHID_FEATURE_REPORT, sc->cont_max_rid); 320 if (err == USB_ERR_NORMAL_COMPLETION) 321 wmt_cont_max_parse(sc, sc->buf, sc->cont_max_rlen); 322 else 323 DPRINTF("usbd_req_get_report error=(%s)\n", 324 usbd_errstr(err)); 325 } else 326 DPRINTF("Feature report %hhu size invalid or too large: %u\n", 327 sc->cont_max_rid, sc->cont_max_rlen); 328 329 /* Fetch THQA certificate to enable some devices like WaveShare */ 330 if (sc->thqa_cert_rlen > 0 && sc->thqa_cert_rlen <= WMT_BSIZE && 331 sc->thqa_cert_rid != sc->cont_max_rid) 332 (void)usbd_req_get_report(uaa->device, NULL, sc->buf, 333 sc->thqa_cert_rlen, uaa->info.bIfaceIndex, 334 UHID_FEATURE_REPORT, sc->thqa_cert_rid); 335 336 mtx_init(&sc->mtx, "wmt lock", NULL, MTX_DEF); 337 338 err = usbd_transfer_setup(uaa->device, &uaa->info.bIfaceIndex, 339 sc->xfer, wmt_config, WMT_N_TRANSFER, sc, &sc->mtx); 340 if (err != USB_ERR_NORMAL_COMPLETION) { 341 DPRINTF("usbd_transfer_setup error=%s\n", usbd_errstr(err)); 342 goto detach; 343 } 344 345 sc->evdev = evdev_alloc(); 346 evdev_set_name(sc->evdev, device_get_desc(dev)); 347 evdev_set_phys(sc->evdev, device_get_nameunit(dev)); 348 evdev_set_id(sc->evdev, BUS_USB, uaa->info.idVendor, 349 uaa->info.idProduct, 0); 350 evdev_set_serial(sc->evdev, usb_get_serial(uaa->device)); 351 evdev_set_methods(sc->evdev, sc, &wmt_evdev_methods); 352 evdev_set_flag(sc->evdev, EVDEV_FLAG_MT_STCOMPAT); 353 evdev_support_prop(sc->evdev, INPUT_PROP_DIRECT); 354 evdev_support_event(sc->evdev, EV_SYN); 355 evdev_support_event(sc->evdev, EV_ABS); 356 WMT_FOREACH_USAGE(sc->caps, i) { 357 if (wmt_hid_map[i].code != WMT_NO_CODE) 358 evdev_support_abs(sc->evdev, wmt_hid_map[i].code, 0, 359 sc->ai[i].min, sc->ai[i].max, 0, 0, sc->ai[i].res); 360 } 361 362 err = evdev_register_mtx(sc->evdev, &sc->mtx); 363 if (err) 364 goto detach; 365 366 return (0); 367 368 detach: 369 wmt_detach(dev); 370 return (ENXIO); 371 } 372 373 static int 374 wmt_detach(device_t dev) 375 { 376 struct wmt_softc *sc = device_get_softc(dev); 377 378 evdev_free(sc->evdev); 379 usbd_transfer_unsetup(sc->xfer, WMT_N_TRANSFER); 380 mtx_destroy(&sc->mtx); 381 return (0); 382 } 383 384 static void 385 wmt_process_report(struct wmt_softc *sc, uint8_t *buf, int len) 386 { 387 size_t usage; 388 uint32_t *slot_data = sc->slot_data; 389 uint32_t cont; 390 uint32_t nconts; 391 uint32_t width; 392 uint32_t height; 393 int32_t slot; 394 395 nconts = hid_get_data_unsigned(buf, len, &sc->nconts_loc); 396 397 #ifdef USB_DEBUG 398 DPRINTFN(6, "nconts = %u ", (unsigned)nconts); 399 if (wmt_debug >= 6) { 400 WMT_FOREACH_USAGE(sc->caps, usage) { 401 if (wmt_hid_map[usage].usage != WMT_NO_USAGE) 402 printf(" %-4s", wmt_hid_map[usage].name); 403 } 404 printf("\n"); 405 } 406 #endif 407 408 if (nconts > sc->nconts_max) { 409 DPRINTF("Contact count overflow %u\n", (unsigned)nconts); 410 nconts = sc->nconts_max; 411 } 412 413 /* Use protocol Type B for reporting events */ 414 for (cont = 0; cont < nconts; cont++) { 415 416 bzero(slot_data, sizeof(sc->slot_data)); 417 WMT_FOREACH_USAGE(sc->caps, usage) { 418 if (sc->locs[cont][usage].size > 0) 419 slot_data[usage] = hid_get_data_unsigned( 420 buf, len, &sc->locs[cont][usage]); 421 } 422 423 slot = evdev_get_mt_slot_by_tracking_id(sc->evdev, 424 slot_data[WMT_CONTACTID]); 425 426 #ifdef USB_DEBUG 427 DPRINTFN(6, "cont%01x: data = ", cont); 428 if (wmt_debug >= 6) { 429 WMT_FOREACH_USAGE(sc->caps, usage) { 430 if (wmt_hid_map[usage].usage != WMT_NO_USAGE) 431 printf("%04x ", slot_data[usage]); 432 } 433 printf("slot = %d\n", (int)slot); 434 } 435 #endif 436 437 if (slot == -1) { 438 DPRINTF("Slot overflow for contact_id %u\n", 439 (unsigned)slot_data[WMT_CONTACTID]); 440 continue; 441 } 442 443 if (slot_data[WMT_TIP_SWITCH] != 0 && 444 !(USAGE_SUPPORTED(sc->caps, WMT_CONFIDENCE) && 445 slot_data[WMT_CONFIDENCE] == 0)) { 446 /* This finger is in proximity of the sensor */ 447 slot_data[WMT_SLOT] = slot; 448 slot_data[WMT_IN_RANGE] = !slot_data[WMT_IN_RANGE]; 449 /* Divided by two to match visual scale of touch */ 450 width = slot_data[WMT_WIDTH] >> 1; 451 height = slot_data[WMT_HEIGHT] >> 1; 452 slot_data[WMT_ORIENTATION] = width > height; 453 slot_data[WMT_MAJOR] = MAX(width, height); 454 slot_data[WMT_MINOR] = MIN(width, height); 455 456 WMT_FOREACH_USAGE(sc->caps, usage) 457 if (wmt_hid_map[usage].code != WMT_NO_CODE) 458 evdev_push_abs(sc->evdev, 459 wmt_hid_map[usage].code, 460 slot_data[usage]); 461 } else { 462 evdev_push_abs(sc->evdev, ABS_MT_SLOT, slot); 463 evdev_push_abs(sc->evdev, ABS_MT_TRACKING_ID, -1); 464 } 465 } 466 evdev_sync(sc->evdev); 467 } 468 469 static void 470 wmt_intr_callback(struct usb_xfer *xfer, usb_error_t error) 471 { 472 struct wmt_softc *sc = usbd_xfer_softc(xfer); 473 struct usb_page_cache *pc; 474 uint8_t *buf = sc->buf; 475 int len; 476 477 usbd_xfer_status(xfer, &len, NULL, NULL, NULL); 478 479 switch (USB_GET_STATE(xfer)) { 480 case USB_ST_TRANSFERRED: 481 pc = usbd_xfer_get_frame(xfer, 0); 482 483 DPRINTFN(6, "sc=%p actlen=%d\n", sc, len); 484 485 if (len >= (int)sc->isize || (len > 0 && sc->report_id != 0)) { 486 /* Limit report length to the maximum */ 487 if (len > (int)sc->isize) 488 len = sc->isize; 489 490 usbd_copy_out(pc, 0, buf, len); 491 492 /* Ignore irrelevant reports */ 493 if (sc->report_id && *buf != sc->report_id) 494 goto tr_ignore; 495 496 /* Make sure we don't process old data */ 497 if (len < sc->isize) 498 bzero(buf + len, sc->isize - len); 499 500 /* Strip leading "report ID" byte */ 501 if (sc->report_id) { 502 len--; 503 buf++; 504 } 505 506 wmt_process_report(sc, buf, len); 507 } else { 508 tr_ignore: 509 DPRINTF("Ignored transfer, %d bytes\n", len); 510 } 511 512 case USB_ST_SETUP: 513 tr_setup: 514 usbd_xfer_set_frame_len(xfer, 0, sc->isize); 515 usbd_transfer_submit(xfer); 516 break; 517 default: 518 if (error != USB_ERR_CANCELLED) { 519 /* Try clear stall first */ 520 usbd_xfer_set_stall(xfer); 521 goto tr_setup; 522 } 523 break; 524 } 525 } 526 527 static void 528 wmt_ev_close(struct evdev_dev *evdev, void *ev_softc) 529 { 530 struct wmt_softc *sc = (struct wmt_softc *)ev_softc; 531 532 mtx_assert(&sc->mtx, MA_OWNED); 533 usbd_transfer_stop(sc->xfer[WMT_INTR_DT]); 534 } 535 536 static int 537 wmt_ev_open(struct evdev_dev *evdev, void *ev_softc) 538 { 539 struct wmt_softc *sc = (struct wmt_softc *)ev_softc; 540 541 mtx_assert(&sc->mtx, MA_OWNED); 542 usbd_transfer_start(sc->xfer[WMT_INTR_DT]); 543 544 return (0); 545 } 546 547 /* port of userland hid_report_size() from usbhid(3) to kernel */ 548 static int 549 wmt_hid_report_size(const void *buf, uint16_t len, enum hid_kind k, uint8_t id) 550 { 551 struct hid_data *d; 552 struct hid_item h; 553 uint32_t temp; 554 uint32_t hpos; 555 uint32_t lpos; 556 int report_id = 0; 557 558 hpos = 0; 559 lpos = 0xFFFFFFFF; 560 561 for (d = hid_start_parse(buf, len, 1 << k); hid_get_item(d, &h);) { 562 if (h.kind == k && h.report_ID == id) { 563 /* compute minimum */ 564 if (lpos > h.loc.pos) 565 lpos = h.loc.pos; 566 /* compute end position */ 567 temp = h.loc.pos + (h.loc.size * h.loc.count); 568 /* compute maximum */ 569 if (hpos < temp) 570 hpos = temp; 571 if (h.report_ID != 0) 572 report_id = 1; 573 } 574 } 575 hid_end_parse(d); 576 577 /* safety check - can happen in case of currupt descriptors */ 578 if (lpos > hpos) 579 temp = 0; 580 else 581 temp = hpos - lpos; 582 583 /* return length in bytes rounded up */ 584 return ((temp + 7) / 8 + report_id); 585 } 586 587 static bool 588 wmt_hid_parse(struct wmt_softc *sc, const void *d_ptr, uint16_t d_len) 589 { 590 struct hid_item hi; 591 struct hid_data *hd; 592 size_t i; 593 size_t cont = 0; 594 uint32_t caps = 0; 595 int32_t cont_count_max = 0; 596 uint8_t report_id = 0; 597 uint8_t cont_max_rid = 0; 598 uint8_t thqa_cert_rid = 0; 599 bool touch_coll = false; 600 bool finger_coll = false; 601 bool cont_count_found = false; 602 bool scan_time_found = false; 603 604 #define WMT_HI_ABSOLUTE(hi) \ 605 (((hi).flags & (HIO_CONST|HIO_VARIABLE|HIO_RELATIVE)) == HIO_VARIABLE) 606 #define HUMS_THQA_CERT 0xC5 607 608 /* Parse features for maximum contact count */ 609 hd = hid_start_parse(d_ptr, d_len, 1 << hid_feature); 610 while (hid_get_item(hd, &hi)) { 611 switch (hi.kind) { 612 case hid_collection: 613 if (hi.collevel == 1 && hi.usage == 614 HID_USAGE2(HUP_DIGITIZERS, HUD_TOUCHSCREEN)) 615 touch_coll = true; 616 break; 617 case hid_endcollection: 618 if (hi.collevel == 0 && touch_coll) 619 touch_coll = false; 620 break; 621 case hid_feature: 622 if (hi.collevel == 1 && touch_coll && hi.usage == 623 HID_USAGE2(HUP_MICROSOFT, HUMS_THQA_CERT)) { 624 thqa_cert_rid = hi.report_ID; 625 break; 626 } 627 if (hi.collevel == 1 && touch_coll && 628 WMT_HI_ABSOLUTE(hi) && hi.usage == 629 HID_USAGE2(HUP_DIGITIZERS, HUD_CONTACT_MAX)) { 630 cont_count_max = hi.logical_maximum; 631 cont_max_rid = hi.report_ID; 632 if (sc != NULL) 633 sc->cont_max_loc = hi.loc; 634 } 635 break; 636 default: 637 break; 638 } 639 } 640 hid_end_parse(hd); 641 642 /* Maximum contact count is required usage */ 643 if (cont_max_rid == 0) 644 return (false); 645 646 touch_coll = false; 647 648 /* Parse input for other parameters */ 649 hd = hid_start_parse(d_ptr, d_len, 1 << hid_input); 650 while (hid_get_item(hd, &hi)) { 651 switch (hi.kind) { 652 case hid_collection: 653 if (hi.collevel == 1 && hi.usage == 654 HID_USAGE2(HUP_DIGITIZERS, HUD_TOUCHSCREEN)) 655 touch_coll = true; 656 else if (touch_coll && hi.collevel == 2 && 657 (report_id == 0 || report_id == hi.report_ID) && 658 hi.usage == HID_USAGE2(HUP_DIGITIZERS, HUD_FINGER)) 659 finger_coll = true; 660 break; 661 case hid_endcollection: 662 if (hi.collevel == 1 && finger_coll) { 663 finger_coll = false; 664 cont++; 665 } else if (hi.collevel == 0 && touch_coll) 666 touch_coll = false; 667 break; 668 case hid_input: 669 /* 670 * Ensure that all usages are located within the same 671 * report and proper collection. 672 */ 673 if (WMT_HI_ABSOLUTE(hi) && touch_coll && 674 (report_id == 0 || report_id == hi.report_ID)) 675 report_id = hi.report_ID; 676 else 677 break; 678 679 if (hi.collevel == 1 && hi.usage == 680 HID_USAGE2(HUP_DIGITIZERS, HUD_CONTACTCOUNT)) { 681 cont_count_found = true; 682 if (sc != NULL) 683 sc->nconts_loc = hi.loc; 684 break; 685 } 686 /* Scan time is required but clobbered by evdev */ 687 if (hi.collevel == 1 && hi.usage == 688 HID_USAGE2(HUP_DIGITIZERS, HUD_SCAN_TIME)) { 689 scan_time_found = true; 690 break; 691 } 692 693 if (!finger_coll || hi.collevel != 2) 694 break; 695 if (sc == NULL && cont > 0) 696 break; 697 if (cont >= MAX_MT_SLOTS) { 698 DPRINTF("Finger %zu ignored\n", cont); 699 break; 700 } 701 702 for (i = 0; i < WMT_N_USAGES; i++) { 703 if (hi.usage == wmt_hid_map[i].usage) { 704 if (sc == NULL) { 705 if (USAGE_SUPPORTED(caps, i)) 706 continue; 707 caps |= 1 << i; 708 break; 709 } 710 /* 711 * HUG_X usage is an array mapped to 712 * both ABS_MT_POSITION and ABS_MT_TOOL 713 * events. So don`t stop search if we 714 * already have HUG_X mapping done. 715 */ 716 if (sc->locs[cont][i].size) 717 continue; 718 sc->locs[cont][i] = hi.loc; 719 /* 720 * Hid parser returns valid logical and 721 * physical sizes for first finger only 722 * at least on ElanTS 0x04f3:0x0012. 723 */ 724 if (cont > 0) 725 break; 726 caps |= 1 << i; 727 sc->ai[i] = (struct wmt_absinfo) { 728 .max = hi.logical_maximum, 729 .min = hi.logical_minimum, 730 .res = hid_item_resolution(&hi), 731 }; 732 break; 733 } 734 } 735 break; 736 default: 737 break; 738 } 739 } 740 hid_end_parse(hd); 741 742 /* Check for required HID Usages */ 743 if (!cont_count_found || !scan_time_found || cont == 0) 744 return (false); 745 for (i = 0; i < WMT_N_USAGES; i++) { 746 if (wmt_hid_map[i].required && !USAGE_SUPPORTED(caps, i)) 747 return (false); 748 } 749 750 /* Stop probing here */ 751 if (sc == NULL) 752 return (true); 753 754 /* 755 * According to specifications 'Contact Count Maximum' should be read 756 * from Feature Report rather than from HID descriptor. Set sane 757 * default value now to handle the case of 'Get Report' request failure 758 */ 759 if (cont_count_max < 1) 760 cont_count_max = cont; 761 762 /* Cap contact count maximum to MAX_MT_SLOTS */ 763 if (cont_count_max > MAX_MT_SLOTS) 764 cont_count_max = MAX_MT_SLOTS; 765 766 /* Set number of MT protocol type B slots */ 767 sc->ai[WMT_SLOT] = (struct wmt_absinfo) { 768 .min = 0, 769 .max = cont_count_max - 1, 770 .res = 0, 771 }; 772 773 /* Report touch orientation if both width and height are supported */ 774 if (USAGE_SUPPORTED(caps, WMT_WIDTH) && 775 USAGE_SUPPORTED(caps, WMT_HEIGHT)) { 776 caps |= (1 << WMT_ORIENTATION); 777 sc->ai[WMT_ORIENTATION].max = 1; 778 } 779 780 sc->isize = wmt_hid_report_size(d_ptr, d_len, hid_input, report_id); 781 sc->cont_max_rlen = wmt_hid_report_size(d_ptr, d_len, hid_feature, 782 cont_max_rid); 783 if (thqa_cert_rid > 0) 784 sc->thqa_cert_rlen = wmt_hid_report_size(d_ptr, d_len, 785 hid_feature, thqa_cert_rid); 786 787 sc->report_id = report_id; 788 sc->caps = caps; 789 sc->nconts_max = cont; 790 sc->cont_max_rid = cont_max_rid; 791 sc->thqa_cert_rid = thqa_cert_rid; 792 793 /* Announce information about the touch device */ 794 device_printf(sc->dev, 795 "%d contacts and [%s%s%s%s%s]. Report range [%d:%d] - [%d:%d]\n", 796 (int)cont_count_max, 797 USAGE_SUPPORTED(sc->caps, WMT_IN_RANGE) ? "R" : "", 798 USAGE_SUPPORTED(sc->caps, WMT_CONFIDENCE) ? "C" : "", 799 USAGE_SUPPORTED(sc->caps, WMT_WIDTH) ? "W" : "", 800 USAGE_SUPPORTED(sc->caps, WMT_HEIGHT) ? "H" : "", 801 USAGE_SUPPORTED(sc->caps, WMT_PRESSURE) ? "P" : "", 802 (int)sc->ai[WMT_X].min, (int)sc->ai[WMT_Y].min, 803 (int)sc->ai[WMT_X].max, (int)sc->ai[WMT_Y].max); 804 return (true); 805 } 806 807 static void 808 wmt_cont_max_parse(struct wmt_softc *sc, const void *r_ptr, uint16_t r_len) 809 { 810 uint32_t cont_count_max; 811 812 cont_count_max = hid_get_data_unsigned((const uint8_t *)r_ptr + 1, 813 r_len - 1, &sc->cont_max_loc); 814 if (cont_count_max > MAX_MT_SLOTS) { 815 DPRINTF("Hardware reported %d contacts while only %d is " 816 "supported\n", (int)cont_count_max, MAX_MT_SLOTS); 817 cont_count_max = MAX_MT_SLOTS; 818 } 819 /* Feature report is a primary source of 'Contact Count Maximum' */ 820 if (cont_count_max > 0 && 821 cont_count_max != sc->ai[WMT_SLOT].max + 1) { 822 sc->ai[WMT_SLOT].max = cont_count_max - 1; 823 device_printf(sc->dev, "%d feature report contacts", 824 cont_count_max); 825 } 826 } 827 828 static devclass_t wmt_devclass; 829 830 static device_method_t wmt_methods[] = { 831 DEVMETHOD(device_probe, wmt_probe), 832 DEVMETHOD(device_attach, wmt_attach), 833 DEVMETHOD(device_detach, wmt_detach), 834 835 DEVMETHOD_END 836 }; 837 838 static driver_t wmt_driver = { 839 .name = "wmt", 840 .methods = wmt_methods, 841 .size = sizeof(struct wmt_softc), 842 }; 843 844 DRIVER_MODULE(wmt, uhub, wmt_driver, wmt_devclass, NULL, 0); 845 MODULE_DEPEND(wmt, usb, 1, 1, 1); 846 MODULE_DEPEND(wmt, evdev, 1, 1, 1); 847 MODULE_VERSION(wmt, 1); 848