misc/pca955*: Move models under hw/gpio
[qemu/kevin.git] / include / hw / i386 / vmport.h
blob8f5e27c6f5956ab82df147328c8b278ef7e8e797
1 #ifndef HW_VMPORT_H
2 #define HW_VMPORT_H
4 #include "hw/isa/isa.h"
6 #define TYPE_VMPORT "vmport"
7 typedef uint32_t VMPortReadFunc(void *opaque, uint32_t address);
9 typedef enum {
10 VMPORT_CMD_GETVERSION = 10,
11 VMPORT_CMD_GETBIOSUUID = 19,
12 VMPORT_CMD_GETRAMSIZE = 20,
13 VMPORT_CMD_VMMOUSE_DATA = 39,
14 VMPORT_CMD_VMMOUSE_STATUS = 40,
15 VMPORT_CMD_VMMOUSE_COMMAND = 41,
16 VMPORT_CMD_GETHZ = 45,
17 VMPORT_CMD_GET_VCPU_INFO = 68,
18 VMPORT_ENTRIES
19 } VMPortCommand;
21 static inline void vmport_init(ISABus *bus)
23 isa_create_simple(bus, TYPE_VMPORT);
26 void vmport_register(VMPortCommand command, VMPortReadFunc *func, void *opaque);
28 #endif