diff options
author | Arthur Heymans <arthur@aheymans.xyz> | 2024-02-05 15:45:21 +0100 |
---|---|---|
committer | Martin L Roth <gaumless@gmail.com> | 2024-03-28 15:21:05 +0000 |
commit | 34684caad56a489b26c0cf7f5f7f98cff7dc72c5 (patch) | |
tree | 2e1faf17b74e785aaf702801ccfd9094acd54c06 /src/soc/amd/phoenix | |
parent | 41eaf2dba315dabb51b5c6a77b083165187ebb18 (diff) |
soc/amd/noncar: Increase bootblock size from 64K to 128K
When linking in page tables more place is needed. Size the bootblock is
top aligned, this has no impact the final size for existing setups.
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Change-Id: I23f176d63d3c303b13331a77ad5ac6c7a19073d3
Reviewed-on: https://review.coreboot.org/c/coreboot/+/80348
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Martin L Roth <gaumless@gmail.com>
Diffstat (limited to 'src/soc/amd/phoenix')
-rw-r--r-- | src/soc/amd/phoenix/Kconfig | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/soc/amd/phoenix/Kconfig b/src/soc/amd/phoenix/Kconfig index 75777dc739..9a2424e75a 100644 --- a/src/soc/amd/phoenix/Kconfig +++ b/src/soc/amd/phoenix/Kconfig @@ -175,7 +175,7 @@ config CBFS_MCACHE_SIZE config C_ENV_BOOTBLOCK_SIZE hex - default 0x10000 + default 0x20000 help Sets the size of the bootblock stage that should be loaded in DRAM. This variable controls the DRAM allocation size in linker script @@ -183,13 +183,13 @@ config C_ENV_BOOTBLOCK_SIZE config ROMSTAGE_ADDR hex - default 0x2060000 + default 0x2070000 help Sets the address in DRAM where romstage should be loaded. config ROMSTAGE_SIZE hex - default 0x80000 + default 0x70000 help Sets the size of DRAM allocation for romstage in linker script. |