[coreboot-gerrit] New patch to review for coreboot: emulation/qemu-power8: move the image to start at 0x100

Ronald G. Minnich (rminnich@gmail.com) gerrit at coreboot.org
Thu Feb 25 18:59:24 CET 2016


Ronald G. Minnich (rminnich at gmail.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/13795

-gerrit

commit 426fceeda979dc615f93c92d9d3c180edf1065e8
Author: Ronald G. Minnich <rminnich at gmail.com>
Date:   Thu Feb 25 17:58:42 2016 +0000

    emulation/qemu-power8: move the image to start at 0x100
    
    This seems to be the standard.
    
    Change-Id: I6484f3ff0d188ce4b270af4777f368696bfc75e6
    Signed-off-by: Ronald G. Minnich <rminnich at gmail.com>
---
 src/mainboard/emulation/qemu-power8/memlayout.ld | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/mainboard/emulation/qemu-power8/memlayout.ld b/src/mainboard/emulation/qemu-power8/memlayout.ld
index 2daad30..2e3984c 100644
--- a/src/mainboard/emulation/qemu-power8/memlayout.ld
+++ b/src/mainboard/emulation/qemu-power8/memlayout.ld
@@ -20,8 +20,8 @@
 // TODO: fill in these blanks for Power8.
 SECTIONS
 {
-	DRAM_START(0x0)
-	BOOTBLOCK(0x0, 64K)
+	DRAM_START(0x100)
+	BOOTBLOCK(0x100, 64K-0x100)
 	ROMSTAGE(0x20000, 128K)
 	STACK(0x40000, 0x3ff00)
 	PRERAM_CBMEM_CONSOLE(0x80000, 8K)



More information about the coreboot-gerrit mailing list