[M2351] Centralize size configuration for secure flash, secure SRAM, NSC, and bootloader

pull/7302/head
ccli8 2018-03-28 17:29:56 +08:00
parent ca63abae73
commit dd7fd76758
8 changed files with 273 additions and 71 deletions

View File

@ -1,18 +1,39 @@
#! armcc -E #! armcc -E
#include "partition_M2351_sub.h"
/* Check relevant macros have been defined */
#if (! defined(NU_TZ_SECURE_FLASH_SIZE))
#error("NU_TZ_SECURE_FLASH_SIZE not defined")
#endif
#if (! defined(NU_TZ_SECURE_SRAM_SIZE))
#error("NU_TZ_SECURE_SRAM_SIZE not defined")
#endif
#if (! defined(NU_TZ_NSC_REGION_SIZE))
#error("NU_TZ_NSC_REGION_SIZE not defined")
#endif
/* Requirements for NSC location /* Requirements for NSC location
* *
* 1. By IDAU, 0~0x4000 is secure. NSC can only locate in 0x4000~0x10000000. * 1. By IDAU, 0~0x4000 is secure. NSC can only locate in 0x4000~0x10000000.
* 2. Greentea flash IAP uses last 4 sectors for its test. Avoid this range. * 2. Greentea flash IAP uses last 4 sectors for its test. Avoid this range.
* 3. Greentea NVSTORE uses last 2 sectors or 4KB x 2 for its test. Avoid this range. * 3. Greentea NVSTORE uses last 2 sectors or 4KB x 2 for its test. Avoid this range.
*/ */
#define NSC_REGION_BASE 0x0003D000 #define NU_TZ_NSC_REGION_BASE (MBED_APP_START + MBED_APP_SIZE - 0x2000 - NU_TZ_NSC_REGION_SIZE)
#define NSC_REGION_SIZE 0x00001000
#if defined(__DOMAIN_NS) && __DOMAIN_NS #if defined(__DOMAIN_NS) && __DOMAIN_NS
LR_IROM1 0x10040000 ; load address = execution address #if (! defined(MBED_APP_START))
{ #define MBED_APP_START (0x10000000 + NU_TZ_SECURE_FLASH_SIZE)
#endif
#if (! defined(MBED_APP_SIZE))
#define MBED_APP_SIZE (0x80000 - NU_TZ_SECURE_FLASH_SIZE)
#endif
LR_IROM1 MBED_APP_START
{
/* load address = execution address */
ER_IROM1 +0 ER_IROM1 +0
{ {
*(RESET, +First) *(RESET, +First)
@ -20,35 +41,43 @@ LR_IROM1 0x10040000 ; load address = executi
.ANY (+RO) .ANY (+RO)
} }
ARM_LIB_STACK 0x30006000 EMPTY 0x800 ARM_LIB_STACK 0x30000000 + NU_TZ_SECURE_SRAM_SIZE EMPTY 0x800
{ {
} }
ER_IRAMVEC 0x30006800 EMPTY (4*(16 + 102)) ; Reserve for vectors /* Reserve for vectors */
ER_IRAMVEC 0x30000800 + NU_TZ_SECURE_SRAM_SIZE EMPTY (4*(16 + 102))
{ {
} }
RW_IRAM1 AlignExpr(+0, 16) ; 16 byte-aligned /* 16 byte-aligned */
{ RW_IRAM1 AlignExpr(+0, 16)
{
.ANY (+RW +ZI) .ANY (+RW +ZI)
} }
ARM_LIB_HEAP AlignExpr(+0, 16) EMPTY (0x30006000 + 0x12000 - AlignExpr(ImageLimit(RW_IRAM1), 16)) ARM_LIB_HEAP AlignExpr(+0, 16) EMPTY (0x30018000 - AlignExpr(ImageLimit(RW_IRAM1), 16))
{ {
} }
} }
; Total 512 KB APROM: 256 KB for secure + NSC + reserved, 256 KB for non-secure ScatterAssert(LoadLimit(LR_IROM1) <= (MBED_APP_START + MBED_APP_SIZE))
ScatterAssert(LoadLimit(LR_IROM1) <= 0x10080000)
; Total 96 KB SRAM: 24 KB for secure, 72 KB for non-secure
ScatterAssert(ImageLimit(ARM_LIB_HEAP) <= 0x30018000) ScatterAssert(ImageLimit(ARM_LIB_HEAP) <= 0x30018000)
#else #else
LR_IROM1 0x00000000 #if (! defined(MBED_APP_START))
#define MBED_APP_START 0
#endif
#if (! defined(MBED_APP_SIZE))
#define MBED_APP_SIZE NU_TZ_SECURE_FLASH_SIZE
#endif
LR_IROM1 MBED_APP_START
{ {
ER_IROM1 +0 ; load address = execution address /* load address = execution address */
ER_IROM1 +0
{ {
*(RESET, +First) *(RESET, +First)
*(InRoot$$Sections) *(InRoot$$Sections)
@ -59,33 +88,34 @@ LR_IROM1 0x00000000
{ {
} }
ER_IRAMVEC 0x20000800 EMPTY (4*(16 + 102)) ; Reserve for vectors /* Reserve for vectors */
ER_IRAMVEC 0x20000800 EMPTY (4*(16 + 102))
{ {
} }
RW_IRAM1 AlignExpr(+0, 16) ; 16 byte-aligned /* 16 byte-aligned */
{ RW_IRAM1 AlignExpr(+0, 16)
{
.ANY (+RW +ZI) .ANY (+RW +ZI)
} }
ARM_LIB_HEAP AlignExpr(+0, 16) EMPTY (0x20000000 + 0x6000 - AlignExpr(ImageLimit(RW_IRAM1), 16)) ARM_LIB_HEAP AlignExpr(+0, 16) EMPTY (0x20000000 + NU_TZ_SECURE_SRAM_SIZE - AlignExpr(ImageLimit(RW_IRAM1), 16))
{ {
} }
} }
LR_IROM2 NSC_REGION_BASE LR_IROM2 NU_TZ_NSC_REGION_BASE
{ {
NSC_ROM +0 NSC_REGION_SIZE NSC_ROM +0 NU_TZ_NSC_REGION_SIZE
{ {
*(Veneer$$CMSE) *(Veneer$$CMSE)
} }
} }
; Total 512 KB APROM: 256 KB for secure + NSC + reserved, 256 KB for non-secure ScatterAssert(LoadLimit(LR_IROM1) <= NU_TZ_NSC_REGION_BASE)
ScatterAssert(LoadLimit(LR_IROM1) <= NSC_REGION_BASE) ScatterAssert(LoadLimit(LR_IROM2) <= (NU_TZ_NSC_REGION_BASE + NU_TZ_NSC_REGION_SIZE))
ScatterAssert(LoadLimit(LR_IROM2) <= (NSC_REGION_BASE + NSC_REGION_SIZE)) /* By IDAU, 0~0x4000 is secure. NSC can only locate in 0x4000~0x10000000 */
ScatterAssert(LoadBase(LR_IROM2) >= 0x4000)
; Total 96 KB SRAM: 24 KB for secure, 72 KB for non-secure ScatterAssert(ImageLimit(ARM_LIB_HEAP) <= (0x20000000 + NU_TZ_SECURE_SRAM_SIZE))
ScatterAssert(ImageLimit(ARM_LIB_HEAP) <= 0x20006000)
#endif #endif

View File

@ -0,0 +1,23 @@
/**************************************************************************//**
* @file partition_M2351_sub.c
* @version V3.00
* @brief SAU configuration for secure/nonsecure region settings.
*
* @note
* Copyright (C) 2016 Nuvoton Technology Corp. All rights reserved.
*
******************************************************************************/
#ifndef PARTITION_M2351_SUB
#define PARTITION_M2351_SUB
/* Secure flash size: 256 KB */
#define NU_TZ_SECURE_FLASH_SIZE 0x40000
/* Secure SRAM size: 24 KB */
#define NU_TZ_SECURE_SRAM_SIZE 0x6000
/* NSC region size: 4 KB */
#define NU_TZ_NSC_REGION_SIZE 0x1000
#endif /* PARTITION_M2351_SUB */

View File

@ -1,18 +1,39 @@
#! armcc -E #! armcc -E
#include "partition_M2351_sub.h"
/* Check relevant macros have been defined */
#if (! defined(NU_TZ_SECURE_FLASH_SIZE))
#error("NU_TZ_SECURE_FLASH_SIZE not defined")
#endif
#if (! defined(NU_TZ_SECURE_SRAM_SIZE))
#error("NU_TZ_SECURE_SRAM_SIZE not defined")
#endif
#if (! defined(NU_TZ_NSC_REGION_SIZE))
#error("NU_TZ_NSC_REGION_SIZE not defined")
#endif
/* Requirements for NSC location /* Requirements for NSC location
* *
* 1. By IDAU, 0~0x4000 is secure. NSC can only locate in 0x4000~0x10000000. * 1. By IDAU, 0~0x4000 is secure. NSC can only locate in 0x4000~0x10000000.
* 2. Greentea flash IAP uses last 4 sectors for its test. Avoid this range. * 2. Greentea flash IAP uses last 4 sectors for its test. Avoid this range.
* 3. Greentea NVSTORE uses last 2 sectors or 4KB x 2 for its test. Avoid this range. * 3. Greentea NVSTORE uses last 2 sectors or 4KB x 2 for its test. Avoid this range.
*/ */
#define NSC_REGION_BASE 0x0003D000 #define NU_TZ_NSC_REGION_BASE (MBED_APP_START + MBED_APP_SIZE - 0x2000 - NU_TZ_NSC_REGION_SIZE)
#define NSC_REGION_SIZE 0x00001000
#if defined(__DOMAIN_NS) && __DOMAIN_NS #if defined(__DOMAIN_NS) && __DOMAIN_NS
LR_IROM1 0x10040000 ; load address = execution address #if (! defined(MBED_APP_START))
{ #define MBED_APP_START (0x10000000 + NU_TZ_SECURE_FLASH_SIZE)
#endif
#if (! defined(MBED_APP_SIZE))
#define MBED_APP_SIZE (0x80000 - NU_TZ_SECURE_FLASH_SIZE)
#endif
LR_IROM1 MBED_APP_START
{
/* load address = execution address */
ER_IROM1 +0 ER_IROM1 +0
{ {
*(RESET, +First) *(RESET, +First)
@ -20,35 +41,43 @@ LR_IROM1 0x10040000 ; load address = executi
.ANY (+RO) .ANY (+RO)
} }
ARM_LIB_STACK 0x30006000 EMPTY 0x800 ARM_LIB_STACK 0x30000000 + NU_TZ_SECURE_SRAM_SIZE EMPTY 0x800
{ {
} }
ER_IRAMVEC 0x30006800 EMPTY (4*(16 + 102)) ; Reserve for vectors /* Reserve for vectors */
ER_IRAMVEC 0x30000800 + NU_TZ_SECURE_SRAM_SIZE EMPTY (4*(16 + 102))
{ {
} }
RW_IRAM1 AlignExpr(+0, 16) ; 16 byte-aligned /* 16 byte-aligned */
{ RW_IRAM1 AlignExpr(+0, 16)
{
.ANY (+RW +ZI) .ANY (+RW +ZI)
} }
ARM_LIB_HEAP AlignExpr(+0, 16) EMPTY (0x30006000 + 0x12000 - AlignExpr(ImageLimit(RW_IRAM1), 16)) ARM_LIB_HEAP AlignExpr(+0, 16) EMPTY (0x30018000 - AlignExpr(ImageLimit(RW_IRAM1), 16))
{ {
} }
} }
; Total 512 KB APROM: 256 KB for secure + NSC + reserved, 256 KB for non-secure ScatterAssert(LoadLimit(LR_IROM1) <= (MBED_APP_START + MBED_APP_SIZE))
ScatterAssert(LoadLimit(LR_IROM1) <= 0x10080000)
; Total 96 KB SRAM: 24 KB for secure, 72 KB for non-secure
ScatterAssert(ImageLimit(ARM_LIB_HEAP) <= 0x30018000) ScatterAssert(ImageLimit(ARM_LIB_HEAP) <= 0x30018000)
#else #else
LR_IROM1 0x00000000 #if (! defined(MBED_APP_START))
#define MBED_APP_START 0
#endif
#if (! defined(MBED_APP_SIZE))
#define MBED_APP_SIZE NU_TZ_SECURE_FLASH_SIZE
#endif
LR_IROM1 MBED_APP_START
{ {
ER_IROM1 +0 ; load address = execution address /* load address = execution address */
ER_IROM1 +0
{ {
*(RESET, +First) *(RESET, +First)
*(InRoot$$Sections) *(InRoot$$Sections)
@ -59,33 +88,34 @@ LR_IROM1 0x00000000
{ {
} }
ER_IRAMVEC 0x20000800 EMPTY (4*(16 + 102)) ; Reserve for vectors /* Reserve for vectors */
ER_IRAMVEC 0x20000800 EMPTY (4*(16 + 102))
{ {
} }
RW_IRAM1 AlignExpr(+0, 16) ; 16 byte-aligned /* 16 byte-aligned */
{ RW_IRAM1 AlignExpr(+0, 16)
{
.ANY (+RW +ZI) .ANY (+RW +ZI)
} }
ARM_LIB_HEAP AlignExpr(+0, 16) EMPTY (0x20000000 + 0x6000 - AlignExpr(ImageLimit(RW_IRAM1), 16)) ARM_LIB_HEAP AlignExpr(+0, 16) EMPTY (0x20000000 + NU_TZ_SECURE_SRAM_SIZE - AlignExpr(ImageLimit(RW_IRAM1), 16))
{ {
} }
} }
LR_IROM2 NSC_REGION_BASE LR_IROM2 NU_TZ_NSC_REGION_BASE
{ {
NSC_ROM +0 NSC_REGION_SIZE NSC_ROM +0 NU_TZ_NSC_REGION_SIZE
{ {
*(Veneer$$CMSE) *(Veneer$$CMSE)
} }
} }
; Total 512 KB APROM: 256 KB for secure + NSC + reserved, 256 KB for non-secure ScatterAssert(LoadLimit(LR_IROM1) <= NU_TZ_NSC_REGION_BASE)
ScatterAssert(LoadLimit(LR_IROM1) <= NSC_REGION_BASE) ScatterAssert(LoadLimit(LR_IROM2) <= (NU_TZ_NSC_REGION_BASE + NU_TZ_NSC_REGION_SIZE))
ScatterAssert(LoadLimit(LR_IROM2) <= (NSC_REGION_BASE + NSC_REGION_SIZE)) /* By IDAU, 0~0x4000 is secure. NSC can only locate in 0x4000~0x10000000 */
ScatterAssert(LoadBase(LR_IROM2) >= 0x4000)
; Total 96 KB SRAM: 24 KB for secure, 72 KB for non-secure ScatterAssert(ImageLimit(ARM_LIB_HEAP) <= (0x20000000 + NU_TZ_SECURE_SRAM_SIZE))
ScatterAssert(ImageLimit(ARM_LIB_HEAP) <= 0x20006000)
#endif #endif

View File

@ -0,0 +1,23 @@
/**************************************************************************//**
* @file partition_M2351_sub.c
* @version V3.00
* @brief SAU configuration for secure/nonsecure region settings.
*
* @note
* Copyright (C) 2016 Nuvoton Technology Corp. All rights reserved.
*
******************************************************************************/
#ifndef PARTITION_M2351_SUB
#define PARTITION_M2351_SUB
/* Secure flash size: 256 KB */
#define NU_TZ_SECURE_FLASH_SIZE 0x40000
/* Secure SRAM size: 24 KB */
#define NU_TZ_SECURE_SRAM_SIZE 0x6000
/* NSC region size: 4 KB */
#define NU_TZ_NSC_REGION_SIZE 0x1000
#endif /* PARTITION_M2351_SUB */

View File

@ -1,35 +1,63 @@
/* /*
* Nuvoton M2351 GCC linker script file * Nuvoton M2351 GCC linker script file
*/ */
StackSize = 0x800; StackSize = 0x800;
#include "partition_M2351_sub.h"
/* Check relevant macros have been defined */
#if (! defined(NU_TZ_SECURE_FLASH_SIZE))
#error("NU_TZ_SECURE_FLASH_SIZE not defined")
#endif
#if (! defined(NU_TZ_SECURE_SRAM_SIZE))
#error("NU_TZ_SECURE_SRAM_SIZE not defined")
#endif
#if (! defined(NU_TZ_NSC_REGION_SIZE))
#error("NU_TZ_NSC_REGION_SIZE not defined")
#endif
/* Requirements for NSC location /* Requirements for NSC location
* *
* 1. By IDAU, 0~0x4000 is secure. NSC can only locate in 0x4000~0x10000000. * 1. By IDAU, 0~0x4000 is secure. NSC can only locate in 0x4000~0x10000000.
* 2. Greentea flash IAP uses last 4 sectors for its test. Avoid this range. * 2. Greentea flash IAP uses last 4 sectors for its test. Avoid this range.
* 3. Greentea NVSTORE uses last 2 sectors or 4KB x 2 for its test. Avoid this range. * 3. Greentea NVSTORE uses last 2 sectors or 4KB x 2 for its test. Avoid this range.
*/ */
#define NSC_REGION_BASE 0x0003D000 #define NU_TZ_NSC_REGION_BASE (MBED_APP_START + MBED_APP_SIZE - 0x2000 - NU_TZ_NSC_REGION_SIZE)
#define NSC_REGION_SIZE 0x00001000
#if defined(__DOMAIN_NS) && __DOMAIN_NS #if defined(__DOMAIN_NS) && __DOMAIN_NS
#if (! defined(MBED_APP_START))
#define MBED_APP_START (0x10000000 + NU_TZ_SECURE_FLASH_SIZE)
#endif
#if (! defined(MBED_APP_SIZE))
#define MBED_APP_SIZE (0x80000 - NU_TZ_SECURE_FLASH_SIZE)
#endif
MEMORY MEMORY
{ {
VECTORS (rx) : ORIGIN = 0x10040000, LENGTH = 0x00000400 VECTORS (rx) : ORIGIN = MBED_APP_START, LENGTH = 0x00000400
FLASH (rx) : ORIGIN = 0x10040400, LENGTH = 0x00040000 - 0x00000400 FLASH (rx) : ORIGIN = MBED_APP_START + 0x400, LENGTH = MBED_APP_SIZE - 0x400
RAM_INTERN (rwx) : ORIGIN = 0x30006000, LENGTH = 0x00018000 - 0x00006000 RAM_INTERN (rwx) : ORIGIN = 0x30000000 + NU_TZ_SECURE_SRAM_SIZE, LENGTH = 0x00018000 - NU_TZ_SECURE_SRAM_SIZE
} }
#else #else
#if (! defined(MBED_APP_START))
#define MBED_APP_START 0
#endif
#if (! defined(MBED_APP_SIZE))
#define MBED_APP_SIZE NU_TZ_SECURE_FLASH_SIZE
#endif
MEMORY MEMORY
{ {
VECTORS (rx) : ORIGIN = 0x00000000, LENGTH = 0x00000400 VECTORS (rx) : ORIGIN = MBED_APP_START, LENGTH = 0x00000400
FLASH (rx) : ORIGIN = 0x00000400, LENGTH = NSC_REGION_BASE - 0x00000400 FLASH (rx) : ORIGIN = MBED_APP_START + 0x400, LENGTH = NU_TZ_NSC_REGION_BASE - MBED_APP_START - 0x400
NSC_FLASH (rx) : ORIGIN = NSC_REGION_BASE, LENGTH = NSC_REGION_SIZE NSC_FLASH (rx) : ORIGIN = NU_TZ_NSC_REGION_BASE, LENGTH = NU_TZ_NSC_REGION_SIZE
RAM_INTERN (rwx) : ORIGIN = 0x20000000, LENGTH = 0x00006000 - 0x00000000 RAM_INTERN (rwx) : ORIGIN = 0x20000000, LENGTH = NU_TZ_SECURE_SRAM_SIZE
} }
#endif #endif
@ -141,7 +169,10 @@ SECTIONS
__sgstubs_start = .; __sgstubs_start = .;
*(.gnu.sgstubs.*) *(.gnu.sgstubs.*)
__sgstubs_end = .; __sgstubs_end = .;
} > NSC_FLASH } > NSC_FLASH
/* By IDAU, 0~0x4000 is secure. NSC can only locate in 0x4000~0x10000000. */
ASSERT(__sgstubs_start >= 0x4000, "By IDAU, 0~0x4000 is secure. NSC can only locate in 0x4000~0x10000000.")
#endif #endif
.ARM.extab : .ARM.extab :
{ {

View File

@ -0,0 +1,23 @@
/**************************************************************************//**
* @file partition_M2351_sub.c
* @version V3.00
* @brief SAU configuration for secure/nonsecure region settings.
*
* @note
* Copyright (C) 2016 Nuvoton Technology Corp. All rights reserved.
*
******************************************************************************/
#ifndef PARTITION_M2351_SUB
#define PARTITION_M2351_SUB
/* Secure flash size: 256 KB */
#define NU_TZ_SECURE_FLASH_SIZE 0x40000
/* Secure SRAM size: 24 KB */
#define NU_TZ_SECURE_SRAM_SIZE 0x6000
/* NSC region size: 4 KB */
#define NU_TZ_NSC_REGION_SIZE 0x1000
#endif /* PARTITION_M2351_SUB */

View File

@ -20,6 +20,12 @@
#include "M2351.h" #include "M2351.h"
#include "m2351_stddriver_sup.h" #include "m2351_stddriver_sup.h"
#include "cmsis_nvic.h" #include "cmsis_nvic.h"
#include "partition_M2351.h"
/* Check relevant macro has been defined */
#if (! defined(NU_TZ_SECURE_FLASH_SIZE))
#error("NU_TZ_SECURE_FLASH_SIZE not defined")
#endif
// Support linker-generated symbol as start of relocated vector table. // Support linker-generated symbol as start of relocated vector table.
#if defined(__CC_ARM) || (defined(__ARMCC_VERSION) && (__ARMCC_VERSION >= 6010050)) #if defined(__CC_ARM) || (defined(__ARMCC_VERSION) && (__ARMCC_VERSION >= 6010050))
@ -32,7 +38,7 @@ extern uint32_t __start_vector_table__;
/* TZ_START_NS: Start address of non-secure application */ /* TZ_START_NS: Start address of non-secure application */
#ifndef TZ_START_NS #ifndef TZ_START_NS
#define TZ_START_NS (0x10040000U) #define TZ_START_NS (NS_OFFSET + NU_TZ_SECURE_FLASH_SIZE)
#endif #endif
#endif #endif

View File

@ -11,6 +11,42 @@
#ifndef PARTITION_M2351 #ifndef PARTITION_M2351
#define PARTITION_M2351 #define PARTITION_M2351
#if defined(__CC_ARM) || (defined(__ARMCC_VERSION) && (__ARMCC_VERSION >= 6010050))
#include "partition_M2351_sub.h"
extern int Image$$NSC_ROM$$Base;
#define NU_TZ_NSC_REGION_BASE ((uint32_t) &Image$$NSC_ROM$$Base)
#elif defined(__ICCARM__)
#error ("TODO: Support IAR")
#elif defined(__GNUC__)
#include "partition_M2351_sub.h"
extern int __sgstubs_start;
#define NU_TZ_NSC_REGION_BASE ((uint32_t) &__sgstubs_start)
#endif
/* Check relevant macros have been defined */
#if (! defined(NU_TZ_SECURE_FLASH_SIZE))
#error("NU_TZ_SECURE_FLASH_SIZE not defined")
#endif
#if (! defined(NU_TZ_SECURE_SRAM_SIZE))
#error("NU_TZ_SECURE_SRAM_SIZE not defined")
#endif
#if (! defined(NU_TZ_NSC_REGION_BASE))
#error("NU_TZ_NSC_REGION_BASE not defined")
#endif
#if (! defined(NU_TZ_NSC_REGION_SIZE))
#error("NU_TZ_NSC_REGION_SIZE not defined")
#endif
/* /*
//-------- <<< Use Configuration Wizard in Context Menu >>> ----------------- //-------- <<< Use Configuration Wizard in Context Menu >>> -----------------
*/ */
@ -35,7 +71,7 @@
// <0x16000=> 88KB // <0x16000=> 88KB
// <0x18000=> 96KB // <0x18000=> 96KB
*/ */
#define SCU_SECURE_SRAM_SIZE 0x6000 #define SCU_SECURE_SRAM_SIZE NU_TZ_SECURE_SRAM_SIZE
#define NON_SECURE_SRAM_BASE (0x30000000 + SCU_SECURE_SRAM_SIZE) #define NON_SECURE_SRAM_BASE (0x30000000 + SCU_SECURE_SRAM_SIZE)
@ -50,7 +86,7 @@
// <o>Secure Flash ROM Size <0x800-0x7FFFF:0x800> // <o>Secure Flash ROM Size <0x800-0x7FFFF:0x800>
*/ */
#define FMC_SECURE_ROM_SIZE 0x40000 #define FMC_SECURE_ROM_SIZE NU_TZ_SECURE_FLASH_SIZE
#define FMC_NON_SECURE_BASE (0x10000000 + FMC_SECURE_ROM_SIZE) #define FMC_NON_SECURE_BASE (0x10000000 + FMC_SECURE_ROM_SIZE)
@ -387,11 +423,11 @@ __STATIC_INLINE void SCU_Setup(void)
/* /*
// <o>Start Address <0-0xFFFFFFE0> // <o>Start Address <0-0xFFFFFFE0>
*/ */
#define SAU_INIT_START3 0x3D000 #define SAU_INIT_START3 NU_TZ_NSC_REGION_BASE
/* /*
// <o>End Address <0x1F-0xFFFFFFFF> // <o>End Address <0x1F-0xFFFFFFFF>
*/ */
#define SAU_INIT_END3 0x3DFFF #define SAU_INIT_END3 (NU_TZ_NSC_REGION_BASE + NU_TZ_NSC_REGION_SIZE - 1)
/* /*
// <o>Region is // <o>Region is
// <0=>Non-Secure // <0=>Non-Secure