diff options
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; } |