1 #ifndef _QEMU_VIRTIO_INPUT_H 2 #define _QEMU_VIRTIO_INPUT_H 3 4 #include "ui/input.h" 5 6 /* ----------------------------------------------------------------- */ 7 /* virtio input protocol */ 8 9 #include "standard-headers/linux/virtio_ids.h" 10 #include "standard-headers/linux/virtio_input.h" 11 12 typedef struct virtio_input_absinfo virtio_input_absinfo; 13 typedef struct virtio_input_config virtio_input_config; 14 typedef struct virtio_input_event virtio_input_event; 15 16 #if defined(HOST_WORDS_BIGENDIAN) 17 # define const_le32(_x) \ 18 (((_x & 0x000000ffU) << 24) | \ 19 ((_x & 0x0000ff00U) << 8) | \ 20 ((_x & 0x00ff0000U) >> 8) | \ 21 ((_x & 0xff000000U) >> 24)) 22 # define const_le16(_x) \ 23 (((_x & 0x00ff) << 8) | \ 24 ((_x & 0xff00) >> 8)) 25 #else 26 # define const_le32(_x) (_x) 27 # define const_le16(_x) (_x) 28 #endif 29 30 /* ----------------------------------------------------------------- */ 31 /* qemu internals */ 32 33 #define TYPE_VIRTIO_INPUT "virtio-input-device" 34 #define VIRTIO_INPUT(obj) \ 35 OBJECT_CHECK(VirtIOInput, (obj), TYPE_VIRTIO_INPUT) 36 #define VIRTIO_INPUT_GET_PARENT_CLASS(obj) \ 37 OBJECT_GET_PARENT_CLASS(obj, TYPE_VIRTIO_INPUT) 38 #define VIRTIO_INPUT_GET_CLASS(obj) \ 39 OBJECT_GET_CLASS(VirtIOInputClass, obj, TYPE_VIRTIO_INPUT) 40 #define VIRTIO_INPUT_CLASS(klass) \ 41 OBJECT_CLASS_CHECK(VirtIOInputClass, klass, TYPE_VIRTIO_INPUT) 42 43 #define TYPE_VIRTIO_INPUT_HID "virtio-input-hid-device" 44 #define TYPE_VIRTIO_KEYBOARD "virtio-keyboard-device" 45 #define TYPE_VIRTIO_MOUSE "virtio-mouse-device" 46 #define TYPE_VIRTIO_TABLET "virtio-tablet-device" 47 48 #define VIRTIO_INPUT_HID(obj) \ 49 OBJECT_CHECK(VirtIOInputHID, (obj), TYPE_VIRTIO_INPUT_HID) 50 #define VIRTIO_INPUT_HID_GET_PARENT_CLASS(obj) \ 51 OBJECT_GET_PARENT_CLASS(obj, TYPE_VIRTIO_INPUT_HID) 52 53 #define DEFINE_VIRTIO_INPUT_PROPERTIES(_state, _field) \ 54 DEFINE_PROP_STRING("serial", _state, _field.serial) 55 56 typedef struct VirtIOInput VirtIOInput; 57 typedef struct VirtIOInputClass VirtIOInputClass; 58 typedef struct VirtIOInputConfig VirtIOInputConfig; 59 typedef struct VirtIOInputHID VirtIOInputHID; 60 61 struct virtio_input_conf { 62 char *serial; 63 }; 64 65 struct VirtIOInputConfig { 66 virtio_input_config config; 67 QTAILQ_ENTRY(VirtIOInputConfig) node; 68 }; 69 70 struct VirtIOInput { 71 VirtIODevice parent_obj; 72 uint8_t cfg_select; 73 uint8_t cfg_subsel; 74 uint32_t cfg_size; 75 QTAILQ_HEAD(, VirtIOInputConfig) cfg_list; 76 VirtQueue *evt, *sts; 77 virtio_input_conf input; 78 79 virtio_input_event *queue; 80 uint32_t qindex, qsize; 81 82 bool active; 83 }; 84 85 struct VirtIOInputClass { 86 /*< private >*/ 87 VirtioDeviceClass parent; 88 /*< public >*/ 89 90 DeviceRealize realize; 91 DeviceUnrealize unrealize; 92 void (*change_active)(VirtIOInput *vinput); 93 void (*handle_status)(VirtIOInput *vinput, virtio_input_event *event); 94 }; 95 96 struct VirtIOInputHID { 97 VirtIOInput parent_obj; 98 QemuInputHandler *handler; 99 QemuInputHandlerState *hs; 100 int ledstate; 101 }; 102 103 void virtio_input_send(VirtIOInput *vinput, virtio_input_event *event); 104 void virtio_input_init_config(VirtIOInput *vinput, 105 virtio_input_config *config); 106 void virtio_input_add_config(VirtIOInput *vinput, 107 virtio_input_config *config); 108 void virtio_input_idstr_config(VirtIOInput *vinput, 109 uint8_t select, const char *string); 110 111 #endif /* _QEMU_VIRTIO_INPUT_H */ 112