From 6638b11e2083b431ae9c90d9ae5ff23112f4e1bd Mon Sep 17 00:00:00 2001 From: Kangheui Won Date: Tue, 27 Apr 2021 13:33:41 +1000 Subject: psp_verstage: make temp_stack optional Temp stack for verstage is only needed for picasso, so make it optional in the layout file. Signed-off-by: Kangheui Won Change-Id: I44196103a3531e9d01c96ab8f454c8b580fe9807 Reviewed-on: https://review.coreboot.org/c/coreboot/+/52688 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth --- src/soc/amd/common/block/cpu/noncar/memlayout_psp_verstage.ld | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/soc') diff --git a/src/soc/amd/common/block/cpu/noncar/memlayout_psp_verstage.ld b/src/soc/amd/common/block/cpu/noncar/memlayout_psp_verstage.ld index cc9ebc0827..f38682339a 100644 --- a/src/soc/amd/common/block/cpu/noncar/memlayout_psp_verstage.ld +++ b/src/soc/amd/common/block/cpu/noncar/memlayout_psp_verstage.ld @@ -29,7 +29,9 @@ SECTIONS #include "memlayout_transfer_buffer.inc" +#if defined(PSP_VERSTAGE_TEMP_STACK_START) PSP_VERSTAGE_TEMP_STACK_END = (PSP_VERSTAGE_TEMP_STACK_START + PSP_VERSTAGE_TEMP_STACK_SIZE ); +#endif REGION(stack, PSP_VERSTAGE_STACK_START, PSP_VERSTAGE_STACK_SIZE, 64) PSP_VERSTAGE_STACK_BASE = _stack; -- cgit v1.2.3