diff options
author | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-03-28 22:28:45 +0000 |
---|---|---|
committer | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-03-28 22:28:45 +0000 |
commit | 477afee37ca29e156e3309874d100de0bf4e6fd0 (patch) | |
tree | 6b23f52a5fee16da40813b32655ecd5719965460 /hw/piix_pci.c | |
parent | 6cc9215ea512d05c249d4841441335f87e1b02c2 (diff) |
Add missing initial values for PIIX3 function 0 (PIRQRC)
(Sebastian Herbszt)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4116 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/piix_pci.c')
-rw-r--r-- | hw/piix_pci.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/hw/piix_pci.c b/hw/piix_pci.c index a1e04d470f..e1b6881cd9 100644 --- a/hw/piix_pci.c +++ b/hw/piix_pci.c @@ -249,6 +249,9 @@ static void piix3_reset(PCIDevice *d) pci_conf[0x4e] = 0x03; pci_conf[0x4f] = 0x00; pci_conf[0x60] = 0x80; + pci_conf[0x61] = 0x80; + pci_conf[0x62] = 0x80; + pci_conf[0x63] = 0x80; pci_conf[0x69] = 0x02; pci_conf[0x70] = 0x80; pci_conf[0x76] = 0x0c; |