aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPer Åstrand <per.astrand@arm.com>2021-12-21 15:43:16 +0100
committerPer Åstrand <per.astrand@arm.com>2022-01-11 11:28:03 +0100
commit20d0a87a09ca174c7525229b529a99417cb1f929 (patch)
tree55febfcfc30adce016c0a456eda1edbe9e779e30
parent412adc214cdfc57ee5b1495a45659a6f05c55dc0 (diff)
downloadethos-u-core-platform-20d0a87a09ca174c7525229b529a99417cb1f929.tar.gz
Adapt secure/non-secure split of BRAM
The size of the BRAM has changed, and thus change the split between secure and nonsecure, and the NSC region placement. Change-Id: I1f267049dbde76bdb17c800b95f36da704442042
-rw-r--r--applications/trustzone_inference/corstone-300/trustzone.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/applications/trustzone_inference/corstone-300/trustzone.h b/applications/trustzone_inference/corstone-300/trustzone.h
index ad1676a..54b954f 100644
--- a/applications/trustzone_inference/corstone-300/trustzone.h
+++ b/applications/trustzone_inference/corstone-300/trustzone.h
@@ -29,19 +29,19 @@
#define TZ_S_ITCM_START 0x10000000
#define TZ_S_ITCM_SIZE 0x0007c000
#define TZ_S_BRAM_START 0x11000000
-#define TZ_S_BRAM_SIZE 0x001fc000
+#define TZ_S_BRAM_SIZE 0x000fc000
#define TZ_S_DTCM_START 0x30000000
#define TZ_S_DTCM_SIZE 0x00040000
#define TZ_S_SRAM_START 0x31000000
#define TZ_S_SRAM_SIZE 0x00100000
#define TZ_S_STACK_HEAP 0x30040000
-#define TZ_NSC_START 0x111fb000
+#define TZ_NSC_START 0x110fb000
#define TZ_NSC_SIZE 0x00001000
#define TZ_NS_ITCM_START 0x0007c000
#define TZ_NS_ITCM_SIZE 0x00004000
-#define TZ_NS_BRAM_START 0x011fc000
+#define TZ_NS_BRAM_START 0x010fc000
#define TZ_NS_BRAM_SIZE 0x00004000
#define TZ_NS_DTCM_START 0x20040000
#define TZ_NS_DTCM_SIZE 0x00040000