-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
M2354: Use TF-M exported region_defs.h to replace target.mbed_rom_sta…
…rt and friends
- Loading branch information
Showing
5 changed files
with
222 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
148 changes: 148 additions & 0 deletions
148
...UVOTON/TARGET_M2354/TARGET_TFM/TARGET_NU_M2354/COMPONENT_TFM_S_FW/partition/region_defs.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,148 @@ | ||
/* | ||
* @copyright SPDX-License-Identifier: Apache-2.0 | ||
* Copyright (c) 2017-2020 Arm Limited. All rights reserved. | ||
* Copyright (c) 2020 Nuvoton Technology Corp. All rights reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
#ifndef __REGION_DEFS_H__ | ||
#define __REGION_DEFS_H__ | ||
|
||
#include "flash_layout.h" | ||
|
||
#define BL2_HEAP_SIZE (0x0001000) | ||
#define BL2_MSP_STACK_SIZE (0x0001800) | ||
|
||
#define S_HEAP_SIZE (0x0001000) | ||
#define S_MSP_STACK_SIZE_INIT (0x0000400) | ||
#define S_MSP_STACK_SIZE (0x0000800) | ||
#define S_PSP_STACK_SIZE (0x0000800) | ||
|
||
#define NS_HEAP_SIZE (0x0001000) | ||
#define NS_MSP_STACK_SIZE (0x0000800) | ||
#define NS_PSP_STACK_SIZE (0x0000800) | ||
|
||
/* This size of buffer is big enough to store an attestation | ||
* token produced by initial attestation service | ||
*/ | ||
#define PSA_INITIAL_ATTEST_TOKEN_MAX_SIZE (0x250) | ||
|
||
/* MPC granularity is 128 KB on AN519 MPS2 FPGA image. Alignment | ||
* of partitions is defined in accordance with this constraint. | ||
*/ | ||
|
||
#ifdef BL2 | ||
#ifndef LINK_TO_SECONDARY_PARTITION | ||
#define S_IMAGE_PRIMARY_PARTITION_OFFSET (FLASH_AREA_0_OFFSET) | ||
#define S_IMAGE_SECONDARY_PARTITION_OFFSET (FLASH_AREA_0_OFFSET) | ||
#else | ||
#error "No secondary partition supported!" | ||
#endif /* !LINK_TO_SECONDARY_PARTITION */ | ||
#else | ||
#define S_IMAGE_PRIMARY_PARTITION_OFFSET (0x0) | ||
#endif /* BL2 */ | ||
|
||
#ifndef LINK_TO_SECONDARY_PARTITION | ||
#define NS_IMAGE_PRIMARY_PARTITION_OFFSET (FLASH_AREA_0_OFFSET + FLASH_S_PARTITION_SIZE) | ||
#else | ||
#error "No secondary partition supported!" | ||
#endif /* !LINK_TO_SECONDARY_PARTITION */ | ||
|
||
/* Boot partition structure if MCUBoot is used: | ||
* 0x0_0000 Bootloader header | ||
* 0x0_0400 Image area | ||
* 0x7_0000 Trailer | ||
*/ | ||
/* IMAGE_CODE_SIZE is the space available for the software binary image. | ||
* It is less than the FLASH_S_PARTITION_SIZE + FLASH_NS_PARTITION_SIZE | ||
* because we reserve space for the image header and trailer introduced | ||
* by the bootloader. | ||
*/ | ||
#ifdef BL2 | ||
#define BL2_HEADER_SIZE (0x400) /* 1 KB */ | ||
#define BL2_TRAILER_SIZE (0x800) /* 2 KB */ | ||
#else | ||
/* No header if no bootloader, but keep IMAGE_CODE_SIZE the same */ | ||
#define BL2_HEADER_SIZE (0x0) | ||
#define BL2_TRAILER_SIZE (0x800) | ||
#endif /* BL2 */ | ||
|
||
#define IMAGE_S_CODE_SIZE (FLASH_S_PARTITION_SIZE - BL2_HEADER_SIZE - BL2_TRAILER_SIZE) | ||
#define IMAGE_NS_CODE_SIZE (FLASH_NS_PARTITION_SIZE - BL2_HEADER_SIZE - BL2_TRAILER_SIZE) | ||
|
||
#define CMSE_VENEER_REGION_SIZE (0x340) | ||
|
||
/* Alias definitions for secure and non-secure areas*/ | ||
#define S_ROM_ALIAS(x) (S_ROM_ALIAS_BASE + (x)) | ||
#define NS_ROM_ALIAS(x) (NS_ROM_ALIAS_BASE + (x)) | ||
|
||
#define S_RAM_ALIAS(x) (S_RAM_ALIAS_BASE + (x)) | ||
#define NS_RAM_ALIAS(x) (NS_RAM_ALIAS_BASE + (x)) | ||
|
||
/* Secure regions */ | ||
#define S_IMAGE_PRIMARY_AREA_OFFSET \ | ||
(S_IMAGE_PRIMARY_PARTITION_OFFSET + BL2_HEADER_SIZE) /* 0x8400 */ | ||
#define S_CODE_START (S_ROM_ALIAS(S_IMAGE_PRIMARY_AREA_OFFSET)) /* 0x8400 */ | ||
#define S_CODE_SIZE (IMAGE_S_CODE_SIZE - CMSE_VENEER_REGION_SIZE) | ||
#define S_CODE_LIMIT (S_CODE_START + S_CODE_SIZE - 1) | ||
|
||
#define S_DATA_START (S_RAM_ALIAS(0x0)) | ||
#define S_DATA_SIZE (80 * 1024) | ||
#define S_DATA_LIMIT (S_DATA_START + S_DATA_SIZE - 1) | ||
|
||
/* CMSE Veneers region */ | ||
#define CMSE_VENEER_REGION_START (S_CODE_LIMIT + 1) | ||
|
||
/* Non-secure regions */ | ||
#define NS_IMAGE_PRIMARY_AREA_OFFSET \ | ||
(NS_IMAGE_PRIMARY_PARTITION_OFFSET + BL2_HEADER_SIZE) | ||
#define NS_CODE_START (NS_ROM_ALIAS(NS_IMAGE_PRIMARY_AREA_OFFSET)) | ||
#define NS_CODE_SIZE (IMAGE_NS_CODE_SIZE) | ||
#define NS_CODE_LIMIT (NS_CODE_START + NS_CODE_SIZE - 1) | ||
|
||
#define NS_DATA_START (NS_RAM_ALIAS(S_DATA_SIZE)) | ||
#define NS_DATA_SIZE (TOTAL_RAM_SIZE - S_DATA_SIZE) | ||
#define NS_DATA_LIMIT (NS_DATA_START + NS_DATA_SIZE - 1) | ||
|
||
/* NS partition information is used for MPC and SAU configuration */ | ||
#define NS_PARTITION_START \ | ||
(NS_ROM_ALIAS(NS_IMAGE_PRIMARY_PARTITION_OFFSET)) | ||
#define NS_PARTITION_SIZE (FLASH_NS_PARTITION_SIZE) | ||
|
||
/* Secondary partition for new images in case of firmware upgrade */ | ||
#define SECONDARY_PARTITION_START \ | ||
(NS_ROM_ALIAS(S_IMAGE_SECONDARY_PARTITION_OFFSET)) | ||
#define SECONDARY_PARTITION_SIZE (FLASH_S_PARTITION_SIZE + \ | ||
FLASH_NS_PARTITION_SIZE) | ||
|
||
#ifdef BL2 | ||
/* Bootloader regions */ | ||
#define BL2_CODE_START (S_ROM_ALIAS(FLASH_AREA_BL2_OFFSET)) | ||
#define BL2_CODE_SIZE (FLASH_AREA_BL2_SIZE) | ||
#define BL2_CODE_LIMIT (BL2_CODE_START + BL2_CODE_SIZE - 1) | ||
|
||
#define BL2_DATA_START (S_RAM_ALIAS(0x0)) | ||
#define BL2_DATA_SIZE (TOTAL_RAM_SIZE) | ||
#define BL2_DATA_LIMIT (BL2_DATA_START + BL2_DATA_SIZE - 1) | ||
#endif /* BL2 */ | ||
|
||
/* Shared data area between bootloader and runtime firmware. | ||
* Shared data area is allocated at the beginning of the RAM, it is overlapping | ||
* with TF-M Secure code's MSP stack | ||
*/ | ||
#define BOOT_TFM_SHARED_DATA_BASE S_RAM_ALIAS_BASE | ||
#define BOOT_TFM_SHARED_DATA_SIZE (0x400) | ||
#define BOOT_TFM_SHARED_DATA_LIMIT (BOOT_TFM_SHARED_DATA_BASE + BOOT_TFM_SHARED_DATA_SIZE - 1) | ||
|
||
#endif /* __REGION_DEFS_H__ */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters