Patrick Georgi (pgeorgi@google.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/10097
-gerrit
commit d52363f5f31b5c6ffc319309c6888ba8b4328ef6 Author: Aaron Durbin adurbin@chromium.org Date: Fri May 1 16:48:54 2015 -0500
nvidia/tegra132: Fix vboot2 memory layout
bootblock et al were listed twice, which shouldn't happen.
Change-Id: I3e6077d70e064ebe74bd4e5e3156f87d548c2fcb Signed-off-by: Aaron Durbin adurbin@chromium.org Signed-off-by: Patrick Georgi pgeorgi@chromium.org --- src/soc/nvidia/tegra132/include/soc/memlayout_vboot2.ld | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-)
diff --git a/src/soc/nvidia/tegra132/include/soc/memlayout_vboot2.ld b/src/soc/nvidia/tegra132/include/soc/memlayout_vboot2.ld index 2fdc38f..18a86e6 100644 --- a/src/soc/nvidia/tegra132/include/soc/memlayout_vboot2.ld +++ b/src/soc/nvidia/tegra132/include/soc/memlayout_vboot2.ld @@ -36,11 +36,9 @@ SECTIONS PRERAM_CBFS_CACHE(0x40002000, 72K) VBOOT2_WORK(0x40014000, 16K) STACK(0x40018000, 2K) - BOOTBLOCK(0x40019000, 20K) - VERSTAGE(0x4001E000, 60K) - BOOTBLOCK(0x40019000, 22K) - VERSTAGE(0x4001E800, 58K) - ROMSTAGE(0x4002D000, 76K) + BOOTBLOCK(0x40019000, 24K) + VERSTAGE(0x4001f000, 60K) + ROMSTAGE(0x4002e000, 72K) SRAM_END(0x40040000)
DRAM_START(0x80000000)