|
@@ -1075,7 +1075,7 @@ static const MemoryRegionOps ioportF0_io_ops = {
|
|
|
};
|
|
|
|
|
|
static void pc_superio_init(ISABus *isa_bus, bool create_fdctrl,
|
|
|
- bool create_i8042, bool no_vmport)
|
|
|
+ bool create_i8042, bool no_vmport, Error **errp)
|
|
|
{
|
|
|
int i;
|
|
|
DriveInfo *fd[MAX_FD];
|
|
@@ -1100,6 +1100,10 @@ static void pc_superio_init(ISABus *isa_bus, bool create_fdctrl,
|
|
|
}
|
|
|
|
|
|
if (!create_i8042) {
|
|
|
+ if (!no_vmport) {
|
|
|
+ error_setg(errp,
|
|
|
+ "vmport requires the i8042 controller to be enabled");
|
|
|
+ }
|
|
|
return;
|
|
|
}
|
|
|
|
|
@@ -1219,12 +1223,13 @@ void pc_basic_device_init(struct PCMachineState *pcms,
|
|
|
|
|
|
assert(pcms->vmport >= 0 && pcms->vmport < ON_OFF_AUTO__MAX);
|
|
|
if (pcms->vmport == ON_OFF_AUTO_AUTO) {
|
|
|
- pcms->vmport = xen_enabled() ? ON_OFF_AUTO_OFF : ON_OFF_AUTO_ON;
|
|
|
+ pcms->vmport = (xen_enabled() || !pcms->i8042_enabled)
|
|
|
+ ? ON_OFF_AUTO_OFF : ON_OFF_AUTO_ON;
|
|
|
}
|
|
|
|
|
|
/* Super I/O */
|
|
|
pc_superio_init(isa_bus, create_fdctrl, pcms->i8042_enabled,
|
|
|
- pcms->vmport != ON_OFF_AUTO_ON);
|
|
|
+ pcms->vmport != ON_OFF_AUTO_ON, &error_fatal);
|
|
|
}
|
|
|
|
|
|
void pc_nic_init(PCMachineClass *pcmc, ISABus *isa_bus, PCIBus *pci_bus)
|