blob: d2da54d9b7ddd803dbbcb0fa63f6b24f0662b144 [file] [log] [blame]
Dan Handley9df48042015-03-19 18:58:55 +00001/*
Soby Mathew7d5a2e72018-01-10 15:59:31 +00002 * Copyright (c) 2015-2018, ARM Limited and Contributors. All rights reserved.
Dan Handley9df48042015-03-19 18:58:55 +00003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Dan Handley9df48042015-03-19 18:58:55 +00005 */
6
7#include <arch_helpers.h>
8#include <arm_def.h>
Yatharth Kocharf9a0f162016-09-13 17:07:57 +01009#include <assert.h>
Dan Handley9df48042015-03-19 18:58:55 +000010#include <bl_common.h>
Antonio Nino Diazb37eba92018-05-15 13:12:50 +010011#include <console.h>
Yatharth Kocharf9a0f162016-09-13 17:07:57 +010012#include <debug.h>
13#include <desc_image_load.h>
Soby Mathew1ced6b82017-06-12 12:37:10 +010014#include <generic_delay_timer.h>
Summer Qin9db8f2e2017-04-24 16:49:28 +010015#ifdef SPD_opteed
16#include <optee_utils.h>
17#endif
Dan Handley9df48042015-03-19 18:58:55 +000018#include <plat_arm.h>
dp-arm7f297ca2017-05-02 11:49:33 +010019#include <platform.h>
Isla Mitchelld2548792017-07-14 10:48:25 +010020#include <platform_def.h>
Dan Handley9df48042015-03-19 18:58:55 +000021#include <string.h>
Douglas Raillarda8954fc2017-01-26 15:54:44 +000022#include <utils.h>
Dan Handley9df48042015-03-19 18:58:55 +000023
Dan Handley9df48042015-03-19 18:58:55 +000024/* Data structure which holds the extents of the trusted SRAM for BL2 */
25static meminfo_t bl2_tzram_layout __aligned(CACHE_WRITEBACK_GRANULE);
26
Soby Mathewc44110d2018-02-20 12:50:47 +000027/*
28 * Check that BL2_BASE is atleast a page over ARM_BL_RAM_BASE. The page is for
29 * `meminfo_t` data structure and TB_FW_CONFIG passed from BL1. Not needed
30 * when BL2 is compiled for BL_AT_EL3 as BL2 doesn't need any info from BL1 and
31 * BL2 is loaded at base of usable SRAM.
32 */
33#if BL2_AT_EL3
34#define BL1_MEMINFO_OFFSET 0x0
35#else
36#define BL1_MEMINFO_OFFSET PAGE_SIZE
37#endif
38
39CASSERT(BL2_BASE >= (ARM_BL_RAM_BASE + BL1_MEMINFO_OFFSET), assert_bl2_base_overflows);
40
Yatharth Kocharf9a0f162016-09-13 17:07:57 +010041/* Weak definitions may be overridden in specific ARM standard platform */
Soby Mathew7d5a2e72018-01-10 15:59:31 +000042#pragma weak bl2_early_platform_setup2
Yatharth Kocharf9a0f162016-09-13 17:07:57 +010043#pragma weak bl2_platform_setup
44#pragma weak bl2_plat_arch_setup
45#pragma weak bl2_plat_sec_mem_layout
46
Daniel Boulbye08d0f22018-05-01 12:19:26 +010047#if !LOAD_IMAGE_V2
Dan Handley9df48042015-03-19 18:58:55 +000048/*******************************************************************************
49 * This structure represents the superset of information that is passed to
Juan Castillo7d199412015-12-14 09:35:25 +000050 * BL31, e.g. while passing control to it from BL2, bl31_params
Dan Handley9df48042015-03-19 18:58:55 +000051 * and other platform specific params
52 ******************************************************************************/
53typedef struct bl2_to_bl31_params_mem {
54 bl31_params_t bl31_params;
55 image_info_t bl31_image_info;
56 image_info_t bl32_image_info;
57 image_info_t bl33_image_info;
58 entry_point_info_t bl33_ep_info;
59 entry_point_info_t bl32_ep_info;
60 entry_point_info_t bl31_ep_info;
61} bl2_to_bl31_params_mem_t;
62
63
64static bl2_to_bl31_params_mem_t bl31_params_mem;
65
66
67/* Weak definitions may be overridden in specific ARM standard platform */
Dan Handley9df48042015-03-19 18:58:55 +000068#pragma weak bl2_plat_get_bl31_params
69#pragma weak bl2_plat_get_bl31_ep_info
70#pragma weak bl2_plat_flush_bl31_params
71#pragma weak bl2_plat_set_bl31_ep_info
Juan Castilloa72b6472015-12-10 15:49:17 +000072#pragma weak bl2_plat_get_scp_bl2_meminfo
Dan Handley9df48042015-03-19 18:58:55 +000073#pragma weak bl2_plat_get_bl32_meminfo
74#pragma weak bl2_plat_set_bl32_ep_info
75#pragma weak bl2_plat_get_bl33_meminfo
76#pragma weak bl2_plat_set_bl33_ep_info
77
David Wang0ba499f2016-03-07 11:02:57 +080078#if ARM_BL31_IN_DRAM
79meminfo_t *bl2_plat_sec_mem_layout(void)
80{
81 static meminfo_t bl2_dram_layout
82 __aligned(CACHE_WRITEBACK_GRANULE) = {
83 .total_base = BL31_BASE,
84 .total_size = (ARM_AP_TZC_DRAM1_BASE +
85 ARM_AP_TZC_DRAM1_SIZE) - BL31_BASE,
86 .free_base = BL31_BASE,
87 .free_size = (ARM_AP_TZC_DRAM1_BASE +
88 ARM_AP_TZC_DRAM1_SIZE) - BL31_BASE
89 };
Dan Handley9df48042015-03-19 18:58:55 +000090
David Wang0ba499f2016-03-07 11:02:57 +080091 return &bl2_dram_layout;
92}
93#else
Dan Handley9df48042015-03-19 18:58:55 +000094meminfo_t *bl2_plat_sec_mem_layout(void)
95{
96 return &bl2_tzram_layout;
97}
Yatharth Kocharf9a0f162016-09-13 17:07:57 +010098#endif /* ARM_BL31_IN_DRAM */
Dan Handley9df48042015-03-19 18:58:55 +000099
100/*******************************************************************************
101 * This function assigns a pointer to the memory that the platform has kept
102 * aside to pass platform specific and trusted firmware related information
103 * to BL31. This memory is allocated by allocating memory to
104 * bl2_to_bl31_params_mem_t structure which is a superset of all the
105 * structure whose information is passed to BL31
106 * NOTE: This function should be called only once and should be done
107 * before generating params to BL31
108 ******************************************************************************/
109bl31_params_t *bl2_plat_get_bl31_params(void)
110{
111 bl31_params_t *bl2_to_bl31_params;
112
113 /*
114 * Initialise the memory for all the arguments that needs to
Juan Castillo7d199412015-12-14 09:35:25 +0000115 * be passed to BL31
Dan Handley9df48042015-03-19 18:58:55 +0000116 */
Douglas Raillarda8954fc2017-01-26 15:54:44 +0000117 zeromem(&bl31_params_mem, sizeof(bl2_to_bl31_params_mem_t));
Dan Handley9df48042015-03-19 18:58:55 +0000118
119 /* Assign memory for TF related information */
120 bl2_to_bl31_params = &bl31_params_mem.bl31_params;
121 SET_PARAM_HEAD(bl2_to_bl31_params, PARAM_BL31, VERSION_1, 0);
122
Juan Castillo7d199412015-12-14 09:35:25 +0000123 /* Fill BL31 related information */
Dan Handley9df48042015-03-19 18:58:55 +0000124 bl2_to_bl31_params->bl31_image_info = &bl31_params_mem.bl31_image_info;
125 SET_PARAM_HEAD(bl2_to_bl31_params->bl31_image_info, PARAM_IMAGE_BINARY,
126 VERSION_1, 0);
127
Juan Castillo7d199412015-12-14 09:35:25 +0000128 /* Fill BL32 related information if it exists */
Antonio Nino Diaze4fa3702016-04-05 11:38:49 +0100129#ifdef BL32_BASE
Dan Handley9df48042015-03-19 18:58:55 +0000130 bl2_to_bl31_params->bl32_ep_info = &bl31_params_mem.bl32_ep_info;
131 SET_PARAM_HEAD(bl2_to_bl31_params->bl32_ep_info, PARAM_EP,
132 VERSION_1, 0);
133 bl2_to_bl31_params->bl32_image_info = &bl31_params_mem.bl32_image_info;
134 SET_PARAM_HEAD(bl2_to_bl31_params->bl32_image_info, PARAM_IMAGE_BINARY,
135 VERSION_1, 0);
Antonio Nino Diaze4fa3702016-04-05 11:38:49 +0100136#endif /* BL32_BASE */
Dan Handley9df48042015-03-19 18:58:55 +0000137
Juan Castillo7d199412015-12-14 09:35:25 +0000138 /* Fill BL33 related information */
Dan Handley9df48042015-03-19 18:58:55 +0000139 bl2_to_bl31_params->bl33_ep_info = &bl31_params_mem.bl33_ep_info;
140 SET_PARAM_HEAD(bl2_to_bl31_params->bl33_ep_info,
141 PARAM_EP, VERSION_1, 0);
142
Juan Castillo7d199412015-12-14 09:35:25 +0000143 /* BL33 expects to receive the primary CPU MPID (through x0) */
Dan Handley9df48042015-03-19 18:58:55 +0000144 bl2_to_bl31_params->bl33_ep_info->args.arg0 = 0xffff & read_mpidr();
145
146 bl2_to_bl31_params->bl33_image_info = &bl31_params_mem.bl33_image_info;
147 SET_PARAM_HEAD(bl2_to_bl31_params->bl33_image_info, PARAM_IMAGE_BINARY,
148 VERSION_1, 0);
149
150 return bl2_to_bl31_params;
151}
152
153/* Flush the TF params and the TF plat params */
154void bl2_plat_flush_bl31_params(void)
155{
156 flush_dcache_range((unsigned long)&bl31_params_mem,
157 sizeof(bl2_to_bl31_params_mem_t));
158}
159
160/*******************************************************************************
161 * This function returns a pointer to the shared memory that the platform
162 * has kept to point to entry point information of BL31 to BL2
163 ******************************************************************************/
164struct entry_point_info *bl2_plat_get_bl31_ep_info(void)
165{
166#if DEBUG
Soby Mathew7d5a2e72018-01-10 15:59:31 +0000167 bl31_params_mem.bl31_ep_info.args.arg3 = ARM_BL31_PLAT_PARAM_VAL;
Dan Handley9df48042015-03-19 18:58:55 +0000168#endif
169
170 return &bl31_params_mem.bl31_ep_info;
171}
Yatharth Kocharf9a0f162016-09-13 17:07:57 +0100172#endif /* LOAD_IMAGE_V2 */
Dan Handley9df48042015-03-19 18:58:55 +0000173
174/*******************************************************************************
175 * BL1 has passed the extents of the trusted SRAM that should be visible to BL2
176 * in x0. This memory layout is sitting at the base of the free trusted SRAM.
177 * Copy it to a safe location before its reclaimed by later BL2 functionality.
178 ******************************************************************************/
Soby Mathew96a1c6b2018-01-15 14:45:33 +0000179void arm_bl2_early_platform_setup(uintptr_t tb_fw_config, meminfo_t *mem_layout)
Dan Handley9df48042015-03-19 18:58:55 +0000180{
181 /* Initialize the console to provide early debug support */
Antonio Nino Diazb37eba92018-05-15 13:12:50 +0100182 console_init(PLAT_ARM_BOOT_UART_BASE, PLAT_ARM_BOOT_UART_CLK_IN_HZ,
183 ARM_CONSOLE_BAUDRATE);
Dan Handley9df48042015-03-19 18:58:55 +0000184
185 /* Setup the BL2 memory layout */
186 bl2_tzram_layout = *mem_layout;
187
188 /* Initialise the IO layer and register platform IO devices */
189 plat_arm_io_setup();
Soby Mathew96a1c6b2018-01-15 14:45:33 +0000190
191#if LOAD_IMAGE_V2
Soby Mathewcc364842018-02-21 01:16:39 +0000192 if (tb_fw_config != 0U)
Soby Mathew96a1c6b2018-01-15 14:45:33 +0000193 arm_bl2_set_tb_cfg_addr((void *)tb_fw_config);
194#endif
Dan Handley9df48042015-03-19 18:58:55 +0000195}
196
Soby Mathew7d5a2e72018-01-10 15:59:31 +0000197void bl2_early_platform_setup2(u_register_t arg0, u_register_t arg1, u_register_t arg2, u_register_t arg3)
Dan Handley9df48042015-03-19 18:58:55 +0000198{
Soby Mathew96a1c6b2018-01-15 14:45:33 +0000199 arm_bl2_early_platform_setup((uintptr_t)arg0, (meminfo_t *)arg1);
200
Soby Mathew1ced6b82017-06-12 12:37:10 +0100201 generic_delay_timer_init();
Dan Handley9df48042015-03-19 18:58:55 +0000202}
203
204/*
Soby Mathew45e39e22018-03-26 15:16:46 +0100205 * Perform BL2 preload setup. Currently we initialise the dynamic
206 * configuration here.
Dan Handley9df48042015-03-19 18:58:55 +0000207 */
Soby Mathew45e39e22018-03-26 15:16:46 +0100208void bl2_plat_preload_setup(void)
Dan Handley9df48042015-03-19 18:58:55 +0000209{
Soby Mathew96a1c6b2018-01-15 14:45:33 +0000210#if LOAD_IMAGE_V2
211 arm_bl2_dyn_cfg_init();
212#endif
Soby Mathew45e39e22018-03-26 15:16:46 +0100213}
Soby Mathew96a1c6b2018-01-15 14:45:33 +0000214
Soby Mathew45e39e22018-03-26 15:16:46 +0100215/*
216 * Perform ARM standard platform setup.
217 */
218void arm_bl2_platform_setup(void)
219{
Dan Handley9df48042015-03-19 18:58:55 +0000220 /* Initialize the secure environment */
221 plat_arm_security_setup();
Roberto Vargasa1c16b62017-08-03 09:16:43 +0100222
223#if defined(PLAT_ARM_MEM_PROT_ADDR)
Roberto Vargas550eb082018-01-05 16:00:05 +0000224 arm_nor_psci_do_static_mem_protect();
Roberto Vargasa1c16b62017-08-03 09:16:43 +0100225#endif
Dan Handley9df48042015-03-19 18:58:55 +0000226}
227
228void bl2_platform_setup(void)
229{
230 arm_bl2_platform_setup();
231}
232
233/*******************************************************************************
234 * Perform the very early platform specific architectural setup here. At the
235 * moment this is only initializes the mmu in a quick and dirty way.
236 ******************************************************************************/
237void arm_bl2_plat_arch_setup(void)
238{
Sandrine Bailleux4a1267a2016-05-18 16:11:47 +0100239 arm_setup_page_tables(bl2_tzram_layout.total_base,
Dan Handley9df48042015-03-19 18:58:55 +0000240 bl2_tzram_layout.total_size,
Sandrine Bailleuxecdc4d32016-07-08 14:38:16 +0100241 BL_CODE_BASE,
Masahiro Yamada51bef612017-01-18 02:10:08 +0900242 BL_CODE_END,
Sandrine Bailleuxecdc4d32016-07-08 14:38:16 +0100243 BL_RO_DATA_BASE,
Masahiro Yamada51bef612017-01-18 02:10:08 +0900244 BL_RO_DATA_END
Dan Handley9df48042015-03-19 18:58:55 +0000245#if USE_COHERENT_MEM
Masahiro Yamada0fac5af2016-12-28 16:11:41 +0900246 , BL_COHERENT_RAM_BASE,
247 BL_COHERENT_RAM_END
Dan Handley9df48042015-03-19 18:58:55 +0000248#endif
249 );
Yatharth Kochara5f77d32016-07-04 11:26:14 +0100250
251#ifdef AARCH32
252 enable_mmu_secure(0);
253#else
Sandrine Bailleux4a1267a2016-05-18 16:11:47 +0100254 enable_mmu_el1(0);
Yatharth Kochara5f77d32016-07-04 11:26:14 +0100255#endif
Dan Handley9df48042015-03-19 18:58:55 +0000256}
257
258void bl2_plat_arch_setup(void)
259{
260 arm_bl2_plat_arch_setup();
261}
262
Yatharth Kocharf9a0f162016-09-13 17:07:57 +0100263#if LOAD_IMAGE_V2
Yatharth Kocharede39cb2016-11-14 12:01:04 +0000264int arm_bl2_handle_post_image_load(unsigned int image_id)
Yatharth Kocharf9a0f162016-09-13 17:07:57 +0100265{
266 int err = 0;
267 bl_mem_params_node_t *bl_mem_params = get_bl_mem_params_node(image_id);
Summer Qin9db8f2e2017-04-24 16:49:28 +0100268#ifdef SPD_opteed
269 bl_mem_params_node_t *pager_mem_params = NULL;
270 bl_mem_params_node_t *paged_mem_params = NULL;
271#endif
Yatharth Kocharf9a0f162016-09-13 17:07:57 +0100272 assert(bl_mem_params);
273
274 switch (image_id) {
Yatharth Kochara5f77d32016-07-04 11:26:14 +0100275#ifdef AARCH64
Yatharth Kocharf9a0f162016-09-13 17:07:57 +0100276 case BL32_IMAGE_ID:
Summer Qin9db8f2e2017-04-24 16:49:28 +0100277#ifdef SPD_opteed
278 pager_mem_params = get_bl_mem_params_node(BL32_EXTRA1_IMAGE_ID);
279 assert(pager_mem_params);
280
281 paged_mem_params = get_bl_mem_params_node(BL32_EXTRA2_IMAGE_ID);
282 assert(paged_mem_params);
283
284 err = parse_optee_header(&bl_mem_params->ep_info,
285 &pager_mem_params->image_info,
286 &paged_mem_params->image_info);
287 if (err != 0) {
288 WARN("OPTEE header parse error.\n");
289 }
290#endif
Yatharth Kocharf9a0f162016-09-13 17:07:57 +0100291 bl_mem_params->ep_info.spsr = arm_get_spsr_for_bl32_entry();
292 break;
Yatharth Kochara5f77d32016-07-04 11:26:14 +0100293#endif
Yatharth Kocharf9a0f162016-09-13 17:07:57 +0100294
295 case BL33_IMAGE_ID:
296 /* BL33 expects to receive the primary CPU MPID (through r0) */
297 bl_mem_params->ep_info.args.arg0 = 0xffff & read_mpidr();
298 bl_mem_params->ep_info.spsr = arm_get_spsr_for_bl33_entry();
299 break;
300
301#ifdef SCP_BL2_BASE
302 case SCP_BL2_IMAGE_ID:
303 /* The subsequent handling of SCP_BL2 is platform specific */
304 err = plat_arm_bl2_handle_scp_bl2(&bl_mem_params->image_info);
305 if (err) {
306 WARN("Failure in platform-specific handling of SCP_BL2 image.\n");
307 }
308 break;
309#endif
Jonathan Wrightff957ed2018-03-14 15:24:00 +0000310 default:
311 /* Do nothing in default case */
312 break;
Yatharth Kocharf9a0f162016-09-13 17:07:57 +0100313 }
314
315 return err;
316}
317
Yatharth Kocharede39cb2016-11-14 12:01:04 +0000318/*******************************************************************************
319 * This function can be used by the platforms to update/use image
320 * information for given `image_id`.
321 ******************************************************************************/
322int bl2_plat_handle_post_image_load(unsigned int image_id)
323{
324 return arm_bl2_handle_post_image_load(image_id);
325}
326
Yatharth Kocharf9a0f162016-09-13 17:07:57 +0100327#else /* LOAD_IMAGE_V2 */
328
Dan Handley9df48042015-03-19 18:58:55 +0000329/*******************************************************************************
Juan Castilloa72b6472015-12-10 15:49:17 +0000330 * Populate the extents of memory available for loading SCP_BL2 (if used),
Dan Handley9df48042015-03-19 18:58:55 +0000331 * i.e. anywhere in trusted RAM as long as it doesn't overwrite BL2.
332 ******************************************************************************/
Juan Castilloa72b6472015-12-10 15:49:17 +0000333void bl2_plat_get_scp_bl2_meminfo(meminfo_t *scp_bl2_meminfo)
Dan Handley9df48042015-03-19 18:58:55 +0000334{
Juan Castilloa72b6472015-12-10 15:49:17 +0000335 *scp_bl2_meminfo = bl2_tzram_layout;
Dan Handley9df48042015-03-19 18:58:55 +0000336}
337
338/*******************************************************************************
Juan Castillo7d199412015-12-14 09:35:25 +0000339 * Before calling this function BL31 is loaded in memory and its entrypoint
Dan Handley9df48042015-03-19 18:58:55 +0000340 * is set by load_image. This is a placeholder for the platform to change
Juan Castillo7d199412015-12-14 09:35:25 +0000341 * the entrypoint of BL31 and set SPSR and security state.
Dan Handley9df48042015-03-19 18:58:55 +0000342 * On ARM standard platforms we only set the security state of the entrypoint
343 ******************************************************************************/
344void bl2_plat_set_bl31_ep_info(image_info_t *bl31_image_info,
345 entry_point_info_t *bl31_ep_info)
346{
347 SET_SECURITY_STATE(bl31_ep_info->h.attr, SECURE);
348 bl31_ep_info->spsr = SPSR_64(MODE_EL3, MODE_SP_ELX,
349 DISABLE_ALL_EXCEPTIONS);
350}
351
352
353/*******************************************************************************
Juan Castillo7d199412015-12-14 09:35:25 +0000354 * Before calling this function BL32 is loaded in memory and its entrypoint
Dan Handley9df48042015-03-19 18:58:55 +0000355 * is set by load_image. This is a placeholder for the platform to change
Juan Castillo7d199412015-12-14 09:35:25 +0000356 * the entrypoint of BL32 and set SPSR and security state.
Dan Handley9df48042015-03-19 18:58:55 +0000357 * On ARM standard platforms we only set the security state of the entrypoint
358 ******************************************************************************/
Antonio Nino Diaze4fa3702016-04-05 11:38:49 +0100359#ifdef BL32_BASE
Dan Handley9df48042015-03-19 18:58:55 +0000360void bl2_plat_set_bl32_ep_info(image_info_t *bl32_image_info,
361 entry_point_info_t *bl32_ep_info)
362{
363 SET_SECURITY_STATE(bl32_ep_info->h.attr, SECURE);
364 bl32_ep_info->spsr = arm_get_spsr_for_bl32_entry();
365}
366
367/*******************************************************************************
Dan Handley9df48042015-03-19 18:58:55 +0000368 * Populate the extents of memory available for loading BL32
369 ******************************************************************************/
370void bl2_plat_get_bl32_meminfo(meminfo_t *bl32_meminfo)
371{
372 /*
373 * Populate the extents of memory available for loading BL32.
374 */
375 bl32_meminfo->total_base = BL32_BASE;
376 bl32_meminfo->free_base = BL32_BASE;
377 bl32_meminfo->total_size =
378 (TSP_SEC_MEM_BASE + TSP_SEC_MEM_SIZE) - BL32_BASE;
379 bl32_meminfo->free_size =
380 (TSP_SEC_MEM_BASE + TSP_SEC_MEM_SIZE) - BL32_BASE;
381}
Antonio Nino Diaze4fa3702016-04-05 11:38:49 +0100382#endif /* BL32_BASE */
Dan Handley9df48042015-03-19 18:58:55 +0000383
Antonio Nino Diaze4fa3702016-04-05 11:38:49 +0100384/*******************************************************************************
385 * Before calling this function BL33 is loaded in memory and its entrypoint
386 * is set by load_image. This is a placeholder for the platform to change
387 * the entrypoint of BL33 and set SPSR and security state.
388 * On ARM standard platforms we only set the security state of the entrypoint
389 ******************************************************************************/
390void bl2_plat_set_bl33_ep_info(image_info_t *image,
391 entry_point_info_t *bl33_ep_info)
392{
393 SET_SECURITY_STATE(bl33_ep_info->h.attr, NON_SECURE);
394 bl33_ep_info->spsr = arm_get_spsr_for_bl33_entry();
395}
Dan Handley9df48042015-03-19 18:58:55 +0000396
397/*******************************************************************************
398 * Populate the extents of memory available for loading BL33
399 ******************************************************************************/
400void bl2_plat_get_bl33_meminfo(meminfo_t *bl33_meminfo)
401{
402 bl33_meminfo->total_base = ARM_NS_DRAM1_BASE;
403 bl33_meminfo->total_size = ARM_NS_DRAM1_SIZE;
404 bl33_meminfo->free_base = ARM_NS_DRAM1_BASE;
405 bl33_meminfo->free_size = ARM_NS_DRAM1_SIZE;
406}
Yatharth Kocharf9a0f162016-09-13 17:07:57 +0100407
408#endif /* LOAD_IMAGE_V2 */