diff options
author | Noah Bergbauer <noah@statshelix.com> | 2021-11-26 15:04:37 +0100 |
---|---|---|
committer | Laurent Vivier <laurent@vivier.eu> | 2022-02-22 17:15:36 +0100 |
commit | 1e2d555846226a9e5fb1052fe8ba6f30480f33a9 (patch) | |
tree | 29e49887ef36ac8cdad001fda84e5eeef2ef8016 /hw/usb | |
parent | eb3cb751c9fbba3ba3dc640ff7f7cb4fe6a55829 (diff) | |
download | qemu-1e2d555846226a9e5fb1052fe8ba6f30480f33a9.zip qemu-1e2d555846226a9e5fb1052fe8ba6f30480f33a9.tar.gz qemu-1e2d555846226a9e5fb1052fe8ba6f30480f33a9.tar.bz2 |
hid: Implement support for side and extra buttons
Simply set the respective bits and update the descriptor accordingly.
Signed-off-by: Noah Bergbauer <noah@statshelix.com>
Acked-by: Gerd Hoffmann <kraxel@redhat.com>
Message-Id: <20211126140437.79745-1-noah@statshelix.com>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'hw/usb')
-rw-r--r-- | hw/usb/dev-hid.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hw/usb/dev-hid.c b/hw/usb/dev-hid.c index 1c7ae97..bdd6d1f 100644 --- a/hw/usb/dev-hid.c +++ b/hw/usb/dev-hid.c @@ -461,14 +461,14 @@ static const uint8_t qemu_mouse_hid_report_descriptor[] = { 0xa1, 0x00, /* Collection (Physical) */ 0x05, 0x09, /* Usage Page (Button) */ 0x19, 0x01, /* Usage Minimum (1) */ - 0x29, 0x03, /* Usage Maximum (3) */ + 0x29, 0x05, /* Usage Maximum (5) */ 0x15, 0x00, /* Logical Minimum (0) */ 0x25, 0x01, /* Logical Maximum (1) */ - 0x95, 0x03, /* Report Count (3) */ + 0x95, 0x05, /* Report Count (5) */ 0x75, 0x01, /* Report Size (1) */ 0x81, 0x02, /* Input (Data, Variable, Absolute) */ 0x95, 0x01, /* Report Count (1) */ - 0x75, 0x05, /* Report Size (5) */ + 0x75, 0x03, /* Report Size (3) */ 0x81, 0x01, /* Input (Constant) */ 0x05, 0x01, /* Usage Page (Generic Desktop) */ 0x09, 0x30, /* Usage (X) */ |