blob: 19a7a152bdc51f1b4b94a49a0ba308ec85aa9033 [file] [log] [blame]
Elliott Hughes180edef2023-11-02 00:08:05 +00001/*
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 Cheng655a7c02013-10-16 16:09:24 -07007#ifndef _UAPI__HID_H
8#define _UAPI__HID_H
9#define USB_INTERFACE_CLASS_HID 3
10#define USB_INTERFACE_SUBCLASS_BOOT 1
Ben Cheng655a7c02013-10-16 16:09:24 -070011#define USB_INTERFACE_PROTOCOL_KEYBOARD 1
12#define USB_INTERFACE_PROTOCOL_MOUSE 2
Christopher Ferris6cd53a52022-12-12 23:39:16 +000013enum hid_report_type {
14 HID_INPUT_REPORT = 0,
15 HID_OUTPUT_REPORT = 1,
16 HID_FEATURE_REPORT = 2,
17 HID_REPORT_TYPES,
18};
19enum 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 Cheng655a7c02013-10-16 16:09:24 -070027#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 Kralevicha67e4de2013-01-14 11:28:26 -080031#endif