diff options
author | Yu-Ping Wu <yupingso@chromium.org> | 2024-07-25 17:42:29 +0800 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2024-07-29 13:51:06 +0000 |
commit | e822d4b09315274d9820b507ba59644b1cec7e75 (patch) | |
tree | 4fb43fb011989a62fb820c7f1c350812e05bc5d4 /src/soc/mediatek | |
parent | e99d22e09f8154b0c32b791b1b7783adab0a6dae (diff) |
soc/mediatek/mt8196/memlayout: Fix the location of BOOTBLOCK comment
The comment for the BOOTBLOCK region should be written right above the
BOOTBLOCK declaration.
BUG=b:317009620
TEST=none
BRANCH=none
Change-Id: I7afdf74844a9d97169b4e4a23c3c9c6060e886d9
Signed-off-by: Yu-Ping Wu <yupingso@chromium.org>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/83649
Reviewed-by: Paul Menzel <paulepanter@mailbox.org>
Reviewed-by: Yidi Lin <yidilin@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/mediatek')
-rw-r--r-- | src/soc/mediatek/mt8196/include/soc/memlayout.ld | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/mediatek/mt8196/include/soc/memlayout.ld b/src/soc/mediatek/mt8196/include/soc/memlayout.ld index e0975c7c81..664e55b051 100644 --- a/src/soc/mediatek/mt8196/include/soc/memlayout.ld +++ b/src/soc/mediatek/mt8196/include/soc/memlayout.ld @@ -40,8 +40,8 @@ SECTIONS * aarch64-cros-linux-gnu-objdump -x dram.elf | grep memsz */ DRAM_INIT_CODE(0x02000000, 600K) - /* 4K reserved for BOOTROM until BOOTBLOCK is started */ #else + /* The beginning 4K of SRAM_L2C is reserved for BOOTROM until BOOTBLOCK is started. */ BOOTBLOCK(0x02001000, 60K) #endif OVERLAP_DECOMPRESSOR_VERSTAGE_ROMSTAGE(0x02096000, 272K) |