hw/usb/dev-hid: Improve guest compatibility of usb-tablet
commit0cd089e937f28a1f6f4db711f643df36f8f5dfe3
authorPhil Dennis-Jordan <phil@philjordan.eu>
Wed, 25 Jan 2017 17:24:35 +0000 (25 18:24 +0100)
committerGerd Hoffmann <kraxel@redhat.com>
Mon, 6 Feb 2017 09:23:17 +0000 (6 10:23 +0100)
tree6331d75f2ce654459387b99ffb352e5c7bb3be4b
parenta951316b8a5c3c63254f20a826afeed940dd4cba
hw/usb/dev-hid: Improve guest compatibility of usb-tablet

 1. Set bInterfaceProtocol to 0x00 for usb-tablet. This should be
    non-zero for boot protocol devices only, which the usb-tablet is not.
 2. Set the usb-tablet's usage to "mouse" in the report descriptor.

The boot protocol of 0x02 specifically confused OS X/macOS' HID driver
stack, causing it to generate additional bogus HID events with relative
motion in addition to the tablet's absolute coordinate events.

Absolute pointing devices with HID Report Descriptor usage of 0x01
(pointing) are treated by the macOS HID driver as analog sticks, and
absolute coordinates are not directly translated to absolute mouse
cursor positions. Changing it to 0x02 (mouse) fixes the problem, and
does not have any adverse effect in other operating systems and
windowing systems. (VMWare does the same thing.)

Signed-off-by: Phil Dennis-Jordan <phil@philjordan.eu>
Message-id: 1485365075-32702-1-git-send-email-phil@philjordan.eu
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
hw/usb/dev-hid.c