[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] [HVM] Windows HCT requires non-zero subvendor details in platform PCI device.
# HG changeset patch # User kfraser@xxxxxxxxxxxxxxxxxxxxx # Node ID a77e38f63785d3196ac2a3a45effcbad70666929 # Parent f5321161c649fe4f07027250c4a1f3c4b5fc2ed9 [HVM] Windows HCT requires non-zero subvendor details in platform PCI device. Signed-off-by: Dexuan Cui <dexuan.cui@xxxxxxxxx> --- tools/ioemu/hw/xen_platform.c | 8 +++++++- 1 files changed, 7 insertions(+), 1 deletion(-) diff -r f5321161c649 -r a77e38f63785 tools/ioemu/hw/xen_platform.c --- a/tools/ioemu/hw/xen_platform.c Thu Oct 19 15:53:12 2006 +0100 +++ b/tools/ioemu/hw/xen_platform.c Thu Oct 19 16:32:11 2006 +0100 @@ -97,7 +97,8 @@ struct pci_config_header { uint8_t bist; /* Built in self test */ uint32_t base_address_regs[6]; uint32_t reserved1; - uint32_t reserved2; + uint16_t subsystem_vendor_id; + uint16_t subsystem_id; uint32_t rom_addr; uint32_t reserved3; uint32_t reserved4; @@ -126,6 +127,11 @@ void pci_xen_platform_init(PCIBus *bus) pch->header_type = 0; pch->interrupt_pin = 1; + /* Microsoft WHQL requires non-zero subsystem IDs. */ + /* http://www.pcisig.com/reflector/msg02205.html. */ + pch->subsystem_vendor_id = pch->vendor_id; /* Duplicate vendor id. */ + pch->subsystem_id = 0x0001; /* Hardcode sub-id as 1. */ + pci_register_io_region(d, 0, 0x100, PCI_ADDRESS_SPACE_IO, platform_ioport_map); _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |