diff options
author | danh-arm <dan.handley@arm.com> | 2015-01-28 10:42:32 +0000 |
---|---|---|
committer | danh-arm <dan.handley@arm.com> | 2015-01-28 10:42:32 +0000 |
commit | 03b2370386f5acbb4fb11614825c67ff38ef9edc (patch) | |
tree | 47dfd012731ea64c6c4530b302db168cbe750645 /plat/fvp/bl2_fvp_setup.c | |
parent | 5b36ab3e0bd273934e792593d9ac80c4183270bd (diff) | |
parent | 513dd3a0769eb7550e0d8abd6466c76ffa137162 (diff) |
Merge pull request #248 from jcastillo-arm/jc/tf-issues/212_1
Allow BL3-2 to be loaded into the secure region of DRAM
Diffstat (limited to 'plat/fvp/bl2_fvp_setup.c')
-rw-r--r-- | plat/fvp/bl2_fvp_setup.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plat/fvp/bl2_fvp_setup.c b/plat/fvp/bl2_fvp_setup.c index 71bd8c2a..5764b6a9 100644 --- a/plat/fvp/bl2_fvp_setup.c +++ b/plat/fvp/bl2_fvp_setup.c @@ -284,8 +284,8 @@ void bl2_plat_get_bl32_meminfo(meminfo_t *bl32_meminfo) ******************************************************************************/ void bl2_plat_get_bl33_meminfo(meminfo_t *bl33_meminfo) { - bl33_meminfo->total_base = DRAM_BASE; - bl33_meminfo->total_size = DRAM_SIZE - DRAM1_SEC_SIZE; - bl33_meminfo->free_base = DRAM_BASE; - bl33_meminfo->free_size = DRAM_SIZE - DRAM1_SEC_SIZE; + bl33_meminfo->total_base = DRAM1_NS_BASE; + bl33_meminfo->total_size = DRAM1_NS_SIZE; + bl33_meminfo->free_base = DRAM1_NS_BASE; + bl33_meminfo->free_size = DRAM1_NS_SIZE; } |