Commit 1f72aae5f33866a088e4c7d0063d40ef88a71b70
1 parent
14a1120e
Change the PCI IO region start to that hardcoded in VBE bios (reported by Jeremy Katz)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2768 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
2 additions
and
2 deletions
hw/vmware_vga.c
... | ... | @@ -114,14 +114,14 @@ struct pci_vmsvga_state_s { |
114 | 114 | # define SVGA_IO_BASE SVGA_LEGACY_BASE_PORT |
115 | 115 | # define SVGA_IO_MUL 1 |
116 | 116 | # define SVGA_FIFO_SIZE 0x10000 |
117 | -# define SVGA_MEM_BASE 0xec000000 | |
117 | +# define SVGA_MEM_BASE 0xe0000000 | |
118 | 118 | # define SVGA_PCI_DEVICE_ID PCI_DEVICE_ID_VMWARE_SVGA2 |
119 | 119 | #else |
120 | 120 | # define SVGA_ID SVGA_ID_1 |
121 | 121 | # define SVGA_IO_BASE SVGA_LEGACY_BASE_PORT |
122 | 122 | # define SVGA_IO_MUL 4 |
123 | 123 | # define SVGA_FIFO_SIZE 0x10000 |
124 | -# define SVGA_MEM_BASE 0xec000000 | |
124 | +# define SVGA_MEM_BASE 0xe0000000 | |
125 | 125 | # define SVGA_PCI_DEVICE_ID PCI_DEVICE_ID_VMWARE_SVGA |
126 | 126 | #endif |
127 | 127 | ... | ... |