summaryrefslogtreecommitdiff
path: root/src/soc/nvidia/tegra124/Kconfig
diff options
context:
space:
mode:
authorGabe Black <gabeblack@google.com>2013-09-28 20:39:21 -0700
committerIsaac Christensen <isaac.christensen@se-eng.com>2014-08-12 23:18:33 +0200
commit59ebc6e919b22595a0047d63d70db915f41ae871 (patch)
tree9614d530ba6b4c9a05dcb41ebfd0194e43982de1 /src/soc/nvidia/tegra124/Kconfig
parent7980b08405d8c3f2c0b3edf6af482c679f2560b2 (diff)
downloadcoreboot-59ebc6e919b22595a0047d63d70db915f41ae871.tar.xz
tegra124: Add stack related config options to the Kconfig.
Otherwise the stack ends up down at 0 and has 0 bytes. Change-Id: I0e3c80a0c5b0180d95819ab44829c2a0b527a54d Signed-off-by: Gabe Black <gabeblack@google.com> Reviewed-on: https://chromium-review.googlesource.com/171015 Reviewed-by: Ronald Minnich <rminnich@chromium.org> Commit-Queue: Gabe Black <gabeblack@chromium.org> Tested-by: Gabe Black <gabeblack@chromium.org> (cherry picked from commit 3e69a477474697bcbc40762ec166e8a515d8b0c2) Signed-off-by: Isaac Christensen <isaac.christensen@se-eng.com> Reviewed-on: http://review.coreboot.org/6619 Tested-by: build bot (Jenkins) Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'src/soc/nvidia/tegra124/Kconfig')
-rw-r--r--src/soc/nvidia/tegra124/Kconfig12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/soc/nvidia/tegra124/Kconfig b/src/soc/nvidia/tegra124/Kconfig
index 5d8fd4c878..8a0dee4264 100644
--- a/src/soc/nvidia/tegra124/Kconfig
+++ b/src/soc/nvidia/tegra124/Kconfig
@@ -39,4 +39,16 @@ config BOOTBLOCK_BASE
hex
default 0x80000000
+config STACK_TOP
+ hex
+ default 0x80400000
+
+config STACK_BOTTOM
+ hex
+ default 0x803f8000
+
+config STACK_SIZE
+ hex
+ default 0x800
+
endif