mirror of https://github.com/xemu-project/xemu.git
hw/i386/pc: Create 'vmport' device in place
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-Id: <20200504083342.24273-2-f4bug@amsat.org> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
parent
1aaef7d809
commit
b4fa79eab5
|
@ -1152,7 +1152,7 @@ static void pc_superio_init(ISABus *isa_bus, bool create_fdctrl, bool no_vmport)
|
||||||
|
|
||||||
i8042 = isa_create_simple(isa_bus, "i8042");
|
i8042 = isa_create_simple(isa_bus, "i8042");
|
||||||
if (!no_vmport) {
|
if (!no_vmport) {
|
||||||
vmport_init(isa_bus);
|
isa_create_simple(isa_bus, TYPE_VMPORT);
|
||||||
vmmouse = isa_try_create(isa_bus, "vmmouse");
|
vmmouse = isa_try_create(isa_bus, "vmmouse");
|
||||||
} else {
|
} else {
|
||||||
vmmouse = NULL;
|
vmmouse = NULL;
|
||||||
|
|
|
@ -132,12 +132,6 @@ GSIState *pc_gsi_create(qemu_irq **irqs, bool pci_enabled);
|
||||||
/* vmport.c */
|
/* vmport.c */
|
||||||
#define TYPE_VMPORT "vmport"
|
#define TYPE_VMPORT "vmport"
|
||||||
typedef uint32_t (VMPortReadFunc)(void *opaque, uint32_t address);
|
typedef uint32_t (VMPortReadFunc)(void *opaque, uint32_t address);
|
||||||
|
|
||||||
static inline void vmport_init(ISABus *bus)
|
|
||||||
{
|
|
||||||
isa_create_simple(bus, TYPE_VMPORT);
|
|
||||||
}
|
|
||||||
|
|
||||||
void vmport_register(unsigned char command, VMPortReadFunc *func, void *opaque);
|
void vmport_register(unsigned char command, VMPortReadFunc *func, void *opaque);
|
||||||
void vmmouse_get_data(uint32_t *data);
|
void vmmouse_get_data(uint32_t *data);
|
||||||
void vmmouse_set_data(const uint32_t *data);
|
void vmmouse_set_data(const uint32_t *data);
|
||||||
|
|
Loading…
Reference in New Issue