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 <khwon@chromium.org>
Change-Id: I44196103a3531e9d01c96ab8f454c8b580fe9807
Reviewed-on: https://review.coreboot.org/c/coreboot/+/52688
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Martin Roth <martinroth@google.com>
This commit is contained in:
Kangheui Won 2021-04-27 13:33:41 +10:00 committed by Martin Roth
parent 695732b0d7
commit 6638b11e20
1 changed files with 2 additions and 0 deletions

View File

@ -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;