diff options
author | Igor Mammedov <imammedo@redhat.com> | 2014-01-09 17:36:35 +0100 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2014-01-26 13:11:44 +0200 |
commit | 1aa149b479a479323121251f1e8e676765cb354d (patch) | |
tree | c05f34f2add2a1ca1e2704ba1486fbe6d95cba59 /hw/i386/q35-acpi-dsdt.dsl | |
parent | 4782434f3cc016fbab16228e92e90265cf6db908 (diff) | |
download | qemu-1aa149b479a479323121251f1e8e676765cb354d.tar.gz qemu-1aa149b479a479323121251f1e8e676765cb354d.tar.bz2 qemu-1aa149b479a479323121251f1e8e676765cb354d.zip |
pc: PIIX DSDT: exclude CPU/PCI hotplug & GPE0 IO range from PCI bus resources
.. so that they might not be used by PCI devices.
Note:
Resort to concatenating templates with preprocessor help,
because 1.0b spec isn't supporting ConcatenateResTemplate,
as result Windows XP fails to execute PCI0._CRS method if
ConcatenateResTemplate() is used.
Signed-off-by: Igor Mammedov <imammedo@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw/i386/q35-acpi-dsdt.dsl')
-rw-r--r-- | hw/i386/q35-acpi-dsdt.dsl | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/hw/i386/q35-acpi-dsdt.dsl b/hw/i386/q35-acpi-dsdt.dsl index 9a43947651..f3e5921079 100644 --- a/hw/i386/q35-acpi-dsdt.dsl +++ b/hw/i386/q35-acpi-dsdt.dsl @@ -48,6 +48,14 @@ DefinitionBlock ( /**************************************************************** * PCI Bus definition ****************************************************************/ +#define BOARD_SPECIFIC_PCI_RESOURSES \ + WordIO(ResourceProducer, MinFixed, MaxFixed, PosDecode, EntireRange, \ + 0x0000, \ + 0x0D00, \ + 0xFFFF, \ + 0x0000, \ + 0xF300, \ + ,, , TypeStatic) Scope(\_SB) { Device(PCI0) { |