diff options
author | Martin Roth <martinroth@chromium.org> | 2019-04-02 19:20:53 -0600 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2019-04-04 10:34:51 +0000 |
commit | 0828d03de2ef14007a1e7a9867c3bccf5f8843aa (patch) | |
tree | db4904f2cb063549701e5c7656b7e5a8f7e209ac /src/soc/nvidia | |
parent | e8c655dd1b2490e24640ebafb16120e5e9c268f3 (diff) |
soc/nvidia/tegra210: Increase bootblock size
There's an issue with the newest toolchain that is blowing the bootblock
size on Smaug when compiling for chromeos. Increasing the bootblock
size by 2KB will take care of the issue for a while.
Signed-off-by: Martin Roth <martinroth@chromium.org>
Change-Id: I58f7f1cedc8fc5b4c4287f5a120ed76140e1f7a9
Reviewed-on: https://review.coreboot.org/c/coreboot/+/32163
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Julius Werner <jwerner@chromium.org>
Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
Diffstat (limited to 'src/soc/nvidia')
-rw-r--r-- | src/soc/nvidia/tegra210/include/soc/memlayout.ld | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/soc/nvidia/tegra210/include/soc/memlayout.ld b/src/soc/nvidia/tegra210/include/soc/memlayout.ld index 18171354d5..5d7481b7bb 100644 --- a/src/soc/nvidia/tegra210/include/soc/memlayout.ld +++ b/src/soc/nvidia/tegra210/include/soc/memlayout.ld @@ -38,9 +38,9 @@ SECTIONS STACK(0x4000CC00, 3K) #endif TIMESTAMP(0x4000D800, 2K) - BOOTBLOCK(0x4000E000, 28K) - VERSTAGE(0x40015000, 66K) - ROMSTAGE(0x40025800, 106K) + BOOTBLOCK(0x4000E000, 30K) + VERSTAGE(0x40015800, 66K) + ROMSTAGE(0x40026000, 104K) SRAM_END(0x40040000) DRAM_START(0x80000000) |