diff options
author | Dimitris Papastamos <dimitris.papastamos@arm.com> | 2018-06-22 15:58:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-22 15:58:11 +0100 |
commit | c125a14eeaa941919c6fdaae5832ed13b2c6bb28 (patch) | |
tree | 51a8458383f11b41768f4c3f085d1f312ab1cbfc /plat | |
parent | cfd2e04a7176e8944fb14585cbf18f7bf20603d5 (diff) | |
parent | e237c1ba80b23558ebb30822352722ee16301d35 (diff) | |
download | platform_external_arm-trusted-firmware-c125a14eeaa941919c6fdaae5832ed13b2c6bb28.tar.gz platform_external_arm-trusted-firmware-c125a14eeaa941919c6fdaae5832ed13b2c6bb28.tar.bz2 platform_external_arm-trusted-firmware-c125a14eeaa941919c6fdaae5832ed13b2c6bb28.zip |
Merge pull request #1441 from robertovargas-arm/mem_protect_board
Move mem-protect definitions to board specific files
Diffstat (limited to 'plat')
-rw-r--r-- | plat/arm/board/fvp/fvp_def.h | 11 | ||||
-rw-r--r-- | plat/arm/board/juno/juno_def.h | 11 | ||||
-rw-r--r-- | plat/arm/css/sgi/include/platform_def.h | 12 |
3 files changed, 34 insertions, 0 deletions
diff --git a/plat/arm/board/fvp/fvp_def.h b/plat/arm/board/fvp/fvp_def.h index 5ac5d3cdb..acf3cf469 100644 --- a/plat/arm/board/fvp/fvp_def.h +++ b/plat/arm/board/fvp/fvp_def.h @@ -142,4 +142,15 @@ #define FVP_NSAID_HDLCD0 2 #define FVP_NSAID_CLCD 7 +/******************************************************************************* + * Memprotect definitions + ******************************************************************************/ +/* PSCI memory protect definitions: + * This variable is stored in a non-secure flash because some ARM reference + * platforms do not have secure NVRAM. Real systems that provided MEM_PROTECT + * support must use a secure NVRAM to store the PSCI MEM_PROTECT definitions. + */ +#define PLAT_ARM_MEM_PROT_ADDR (V2M_FLASH0_BASE + \ + V2M_FLASH0_SIZE - V2M_FLASH_BLOCK_SIZE) + #endif /* __FVP_DEF_H__ */ diff --git a/plat/arm/board/juno/juno_def.h b/plat/arm/board/juno/juno_def.h index d2834e1b7..63e245697 100644 --- a/plat/arm/board/juno/juno_def.h +++ b/plat/arm/board/juno/juno_def.h @@ -79,4 +79,15 @@ #define JUNO_IRQ_GPU_SMMU_1 73 #define JUNO_IRQ_ETR_SMMU 75 +/******************************************************************************* + * Memprotect definitions + ******************************************************************************/ +/* PSCI memory protect definitions: + * This variable is stored in a non-secure flash because some ARM reference + * platforms do not have secure NVRAM. Real systems that provided MEM_PROTECT + * support must use a secure NVRAM to store the PSCI MEM_PROTECT definitions. + */ +#define PLAT_ARM_MEM_PROT_ADDR (V2M_FLASH0_BASE + \ + V2M_FLASH0_SIZE - V2M_FLASH_BLOCK_SIZE) + #endif /* __JUNO_DEF_H__ */ diff --git a/plat/arm/css/sgi/include/platform_def.h b/plat/arm/css/sgi/include/platform_def.h index 0f024076d..84ef2c424 100644 --- a/plat/arm/css/sgi/include/platform_def.h +++ b/plat/arm/css/sgi/include/platform_def.h @@ -96,4 +96,16 @@ GET_SSC_VERSION_CONFIG(mmio_read_32(SSC_VERSION)) #endif /* __ASSEMBLY__ */ +/******************************************************************************* + * Memprotect definitions + ******************************************************************************/ +/* PSCI memory protect definitions: + * This variable is stored in a non-secure flash because some ARM reference + * platforms do not have secure NVRAM. Real systems that provided MEM_PROTECT + * support must use a secure NVRAM to store the PSCI MEM_PROTECT definitions. + */ +#define PLAT_ARM_MEM_PROT_ADDR (V2M_FLASH0_BASE + \ + V2M_FLASH0_SIZE - V2M_FLASH_BLOCK_SIZE) + + #endif /* __PLATFORM_DEF_H__ */ |