Patrick Rudolph has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/44395 )
Change subject: mb/emulation/qemu-armv7/memlayout: Move regions ......................................................................
mb/emulation/qemu-armv7/memlayout: Move regions
Move pre RAM regions into SRAM. Tested using uImage/FIT, still boots into GNU/Linux 5.5.7.
Change-Id: I32b3664f018eded576262cf7b52a94dcd6d4f346 Signed-off-by: Patrick Rudolph siro@das-labor.org --- M src/mainboard/emulation/qemu-armv7/memlayout.ld 1 file changed, 9 insertions(+), 9 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/95/44395/1
diff --git a/src/mainboard/emulation/qemu-armv7/memlayout.ld b/src/mainboard/emulation/qemu-armv7/memlayout.ld index b0408ed..c1e99eb 100644 --- a/src/mainboard/emulation/qemu-armv7/memlayout.ld +++ b/src/mainboard/emulation/qemu-armv7/memlayout.ld @@ -28,19 +28,19 @@ REGION(nor_flash1, 0x40000000, 0x4000000, 4K) REGION(nor_flash2, 0x44000000, 0x4000000, 4K) SRAM_START(0x48000000) + STACK(0x48000000, 64K) + FMAP_CACHE(0x48010000, 4K) + TIMESTAMP(0x48011000, 1K) + TTB_SUBTABLES(0x48012000, 4K) + TTB(0x48014000, 32K) + BOOTBLOCK(0x48020000, 128K) + ROMSTAGE(0x48040000, 128K) SRAM_END(0x4C000000) REGION(videoram, 0x4c000000, 0x1000000, 4K) REGION(ethernet, 0x4e000000, 0x1000000, 4K) REGION(usb, 0x4f000000, 0x1000000, 4K)
DRAM_START(0x60000000) - STACK(0x60000000, 64K) - BOOTBLOCK(0x60010000, 128K) - FMAP_CACHE(0x60030000, 4K) - TIMESTAMP(0x60031000, 1K) - TTB_SUBTABLES(0x60032000, 4K) - TTB(0x60034000, 32K) - ROMSTAGE(0x60040000, 128K) - RAMSTAGE(0x60060000, 16M) - POSTRAM_CBFS_CACHE(0x61060000, 8M) + RAMSTAGE(0x60000000, 16M) + POSTRAM_CBFS_CACHE(0x61000000, 8M) }
Stefan Reinauer has abandoned this change. ( https://review.coreboot.org/c/coreboot/+/44395?usp=email )
Change subject: mb/emulation/qemu-armv7/memlayout: Move regions ......................................................................
Abandoned