Elliott Hughes | 180edef | 2023-11-02 00:08:05 +0000 | [diff] [blame] | 1 | /* |
| 2 | * This file is auto-generated. Modifications will be lost. |
| 3 | * |
| 4 | * See https://android.googlesource.com/platform/bionic/+/master/libc/kernel/ |
| 5 | * for more information. |
| 6 | */ |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 7 | #ifndef _UAPI__HID_H |
| 8 | #define _UAPI__HID_H |
| 9 | #define USB_INTERFACE_CLASS_HID 3 |
| 10 | #define USB_INTERFACE_SUBCLASS_BOOT 1 |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 11 | #define USB_INTERFACE_PROTOCOL_KEYBOARD 1 |
| 12 | #define USB_INTERFACE_PROTOCOL_MOUSE 2 |
Christopher Ferris | 6cd53a5 | 2022-12-12 23:39:16 +0000 | [diff] [blame] | 13 | enum hid_report_type { |
| 14 | HID_INPUT_REPORT = 0, |
| 15 | HID_OUTPUT_REPORT = 1, |
| 16 | HID_FEATURE_REPORT = 2, |
| 17 | HID_REPORT_TYPES, |
| 18 | }; |
| 19 | enum hid_class_request { |
| 20 | HID_REQ_GET_REPORT = 0x01, |
| 21 | HID_REQ_GET_IDLE = 0x02, |
| 22 | HID_REQ_GET_PROTOCOL = 0x03, |
| 23 | HID_REQ_SET_REPORT = 0x09, |
| 24 | HID_REQ_SET_IDLE = 0x0A, |
| 25 | HID_REQ_SET_PROTOCOL = 0x0B, |
| 26 | }; |
Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 27 | #define HID_DT_HID (USB_TYPE_CLASS | 0x01) |
| 28 | #define HID_DT_REPORT (USB_TYPE_CLASS | 0x02) |
| 29 | #define HID_DT_PHYSICAL (USB_TYPE_CLASS | 0x03) |
| 30 | #define HID_MAX_DESCRIPTOR_SIZE 4096 |
Nick Kralevich | a67e4de | 2013-01-14 11:28:26 -0800 | [diff] [blame] | 31 | #endif |