Merge tag 'v9.0.0-rc3'
[qemu/ar7.git] / include / hw / usb / hid.h
blob1c142584ffabbe9b94280bccc84ab9a725d81b7e
1 #ifndef HW_USB_HID_H
2 #define HW_USB_HID_H
4 /* HID interface requests */
5 #define HID_GET_REPORT 0xa101
6 #define HID_GET_IDLE 0xa102
7 #define HID_GET_PROTOCOL 0xa103
8 #define HID_SET_REPORT 0x2109
9 #define HID_SET_IDLE 0x210a
10 #define HID_SET_PROTOCOL 0x210b
12 /* HID descriptor types */
13 #define USB_DT_HID 0x21
14 #define USB_DT_REPORT 0x22
15 #define USB_DT_PHY 0x23
17 #endif