diff options
author | Alexander Graf | 2011-09-30 15:29:12 +0200 |
---|---|---|
committer | Blue Swirl | 2011-10-01 08:45:35 +0200 |
commit | b39491a83d0b9d573d5fd21163f61f66a11b54b9 (patch) | |
tree | 802c8dad3fd68134af5fce9eab7d30031fd4b8bf /hw/ppc_newworld.c | |
parent | tcg-i386: Introduce limited deposit support (diff) | |
download | qemu-b39491a83d0b9d573d5fd21163f61f66a11b54b9.tar.gz qemu-b39491a83d0b9d573d5fd21163f61f66a11b54b9.tar.xz qemu-b39491a83d0b9d573d5fd21163f61f66a11b54b9.zip |
PPC: Drop initial ESCC mapping
We are mapping ESCC to a static (incorrect) address on machine init. This
overlaps with our vram, rendering the screen barely usable.
Since openBIOS is clever enough to map ESCC to where it needs to be, we can
just drop that invalid map and everyone's happy.
Signed-off-by: Alexander Graf <agraf@suse.de>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'hw/ppc_newworld.c')
-rw-r--r-- | hw/ppc_newworld.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/ppc_newworld.c b/hw/ppc_newworld.c index 69718cfcdd..b1cc3d70a7 100644 --- a/hw/ppc_newworld.c +++ b/hw/ppc_newworld.c @@ -325,7 +325,7 @@ static void ppc_core99_init (ram_addr_t ram_size, /* init basic PC hardware */ pci_vga_init(pci_bus); - escc_mem = escc_init(0x80013000, pic[0x25], pic[0x24], + escc_mem = escc_init(0, pic[0x25], pic[0x24], serial_hds[0], serial_hds[1], ESCC_CLOCK, 4); memory_region_init_alias(escc_bar, "escc-bar", escc_mem, 0, memory_region_size(escc_mem)); |