From 20d0a87a09ca174c7525229b529a99417cb1f929 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Per=20=C3=85strand?= Date: Tue, 21 Dec 2021 15:43:16 +0100 Subject: 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 --- applications/trustzone_inference/corstone-300/trustzone.h | 6 +++--- 1 file 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 -- cgit v1.2.1