]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
jetson-tk1: Add PSCI configuration options and reserve secure code
authorIan Campbell <ijc@hellion.org.uk>
Tue, 21 Apr 2015 05:18:40 +0000 (07:18 +0200)
committerLothar Waßmann <LW@KARO-electronics.de>
Tue, 8 Sep 2015 20:39:37 +0000 (22:39 +0200)
The secure world code is relocated to the MB just below the top of 4G, we
reserve it in the FDT (by setting CONFIG_ARMV7_SECURE_RESERVE_SIZE) but it is
not protected in h/w.

Signed-off-by: Ian Campbell <ijc@hellion.org.uk>
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Thierry Reding <treding@nvidia.com>
Tested-by: Thierry Reding <treding@nvidia.com>
Tested-by: Ian Campbell <ijc@hellion.org.uk>
Signed-off-by: Tom Warren <twarren@nvidia.com>
arch/arm/mach-tegra/tegra124/Kconfig
include/configs/jetson-tk1.h

index 36bb636db4cdacbd058f2d8a84cbdd26d6dc22fd..6579e3f30cb6279071ac06fbbb5e2b6e86427938 100644 (file)
@@ -6,6 +6,8 @@ choice
 
 config TARGET_JETSON_TK1
        bool "NVIDIA Tegra124 Jetson TK1 board"
+       select CPU_V7_HAS_NONSEC if !SPL_BUILD
+       select CPU_V7_HAS_VIRT if !SPL_BUILD
 
 config TARGET_NYAN_BIG
        bool "Google/NVIDIA Nyan-big Chrombook"
index 8c016b795519283f829899d2445e2e91d44fcaee..aeafbd5a6cd499ebd3f94502d1ba17a66f7b4745 100644 (file)
@@ -79,4 +79,9 @@
 #include "tegra-common-usb-gadget.h"
 #include "tegra-common-post.h"
 
+#define CONFIG_ARMV7_PSCI                      1
+/* Reserve top 1M for secure RAM */
+#define CONFIG_ARMV7_SECURE_BASE               0xfff00000
+#define CONFIG_ARMV7_SECURE_RESERVE_SIZE       0x00100000
+
 #endif /* __CONFIG_H */