summaryrefslogtreecommitdiff
path: root/src/soc/imgtec/danube/Kconfig
diff options
context:
space:
mode:
Diffstat (limited to 'src/soc/imgtec/danube/Kconfig')
-rw-r--r--src/soc/imgtec/danube/Kconfig16
1 files changed, 9 insertions, 7 deletions
diff --git a/src/soc/imgtec/danube/Kconfig b/src/soc/imgtec/danube/Kconfig
index ba0414614a..b41d267ed4 100644
--- a/src/soc/imgtec/danube/Kconfig
+++ b/src/soc/imgtec/danube/Kconfig
@@ -57,15 +57,17 @@ config CBMEM_CONSOLE_PRERAM_BASE
Allocate 4KB to the pre-ram console buffer, we should be able to use
GRAM eventually and have a much larger buffer.
-config STACK_TOP
+config BOOTBLOCK_STACK_BOTTOM
hex
- default CBMEM_CONSOLE_PRERAM_BASE
+ default 0x9b00e000
+ help
+ This allocates 6KB of stack space. One needs to verify that this is
+ sufficient.
-config STACK_BOTTOM
+config BOOTBLOCK_STACK_TOP
hex
- default 0x9b00f000
+ default CBMEM_CONSOLE_PRERAM_BASE
help
- Allocating 12KB for the stack, should be able to have more once GRAM
- is available.
-
+ Bootblock stack starts immediately under the CBMEM console buffer,
+ stack location might be changed by romstage.
endif