blob: 01ae8f3487cf6e15a7cc7f1bba7d3a95852aebd5 [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>
Yatharth Kocharf9a0f162016-09-13 17:07:57 +010011#include <debug.h>
12#include <desc_image_load.h>
Soby Mathew1ced6b82017-06-12 12:37:10 +010013#include <generic_delay_timer.h>
Summer Qin9db8f2e2017-04-24 16:49:28 +010014#ifdef SPD_opteed
15#include <optee_utils.h>
16#endif
Dan Handley9df48042015-03-19 18:58:55 +000017#include <plat_arm.h>
dp-arm7f297ca2017-05-02 11:49:33 +010018#include <platform.h>
Isla Mitchelld2548792017-07-14 10:48:25 +010019#include <platform_def.h>
Dan Handley9df48042015-03-19 18:58:55 +000020#include <string.h>
Douglas Raillarda8954fc2017-01-26 15:54:44 +000021#include <utils.h>
Dan Handley9df48042015-03-19 18:58:55 +000022
Dan Handley9df48042015-03-19 18:58:55 +000023/* Data structure which holds the extents of the trusted SRAM for BL2 */
24static meminfo_t bl2_tzram_layout __aligned(CACHE_WRITEBACK_GRANULE);
25
Soby Mathewc44110d2018-02-20 12:50:47 +000026/*
Soby Mathewaf14b462018-06-01 16:53:38 +010027 * Check that BL2_BASE is above ARM_TB_FW_CONFIG_LIMIT. This reserved page is
28 * for `meminfo_t` data structure and fw_configs passed from BL1.
Soby Mathewc44110d2018-02-20 12:50:47 +000029 */
Soby Mathewaf14b462018-06-01 16:53:38 +010030CASSERT(BL2_BASE >= ARM_TB_FW_CONFIG_LIMIT, assert_bl2_base_overflows);
Soby Mathewc44110d2018-02-20 12:50:47 +000031
Yatharth Kocharf9a0f162016-09-13 17:07:57 +010032/* Weak definitions may be overridden in specific ARM standard platform */
Soby Mathew7d5a2e72018-01-10 15:59:31 +000033#pragma weak bl2_early_platform_setup2
Yatharth Kocharf9a0f162016-09-13 17:07:57 +010034#pragma weak bl2_platform_setup
35#pragma weak bl2_plat_arch_setup
36#pragma weak bl2_plat_sec_mem_layout
37
Daniel Boulby45a2c9e2018-07-06 16:54:44 +010038#define MAP_BL2_TOTAL MAP_REGION_FLAT( \
39 bl2_tzram_layout.total_base, \
40 bl2_tzram_layout.total_size, \
41 MT_MEMORY | MT_RW | MT_SECURE)
42
Dimitris Papastamos9576baa2018-06-08 13:17:26 +010043#if LOAD_IMAGE_V2
44
45#pragma weak bl2_plat_handle_post_image_load
46
47#else /* LOAD_IMAGE_V2 */
48
Dan Handley9df48042015-03-19 18:58:55 +000049/*******************************************************************************
50 * This structure represents the superset of information that is passed to
Juan Castillo7d199412015-12-14 09:35:25 +000051 * BL31, e.g. while passing control to it from BL2, bl31_params
Dan Handley9df48042015-03-19 18:58:55 +000052 * and other platform specific params
53 ******************************************************************************/
54typedef struct bl2_to_bl31_params_mem {
55 bl31_params_t bl31_params;
56 image_info_t bl31_image_info;
57 image_info_t bl32_image_info;
58 image_info_t bl33_image_info;
59 entry_point_info_t bl33_ep_info;
60 entry_point_info_t bl32_ep_info;
61 entry_point_info_t bl31_ep_info;
62} bl2_to_bl31_params_mem_t;
63
64
65static bl2_to_bl31_params_mem_t bl31_params_mem;
66
67
68/* Weak definitions may be overridden in specific ARM standard platform */
Dan Handley9df48042015-03-19 18:58:55 +000069#pragma weak bl2_plat_get_bl31_params
70#pragma weak bl2_plat_get_bl31_ep_info
71#pragma weak bl2_plat_flush_bl31_params
72#pragma weak bl2_plat_set_bl31_ep_info
Juan Castilloa72b6472015-12-10 15:49:17 +000073#pragma weak bl2_plat_get_scp_bl2_meminfo
Dan Handley9df48042015-03-19 18:58:55 +000074#pragma weak bl2_plat_get_bl32_meminfo
75#pragma weak bl2_plat_set_bl32_ep_info
76#pragma weak bl2_plat_get_bl33_meminfo
77#pragma weak bl2_plat_set_bl33_ep_info
78
David Wang0ba499f2016-03-07 11:02:57 +080079#if ARM_BL31_IN_DRAM
80meminfo_t *bl2_plat_sec_mem_layout(void)
81{
82 static meminfo_t bl2_dram_layout
83 __aligned(CACHE_WRITEBACK_GRANULE) = {
84 .total_base = BL31_BASE,
85 .total_size = (ARM_AP_TZC_DRAM1_BASE +
86 ARM_AP_TZC_DRAM1_SIZE) - BL31_BASE,
87 .free_base = BL31_BASE,
88 .free_size = (ARM_AP_TZC_DRAM1_BASE +
89 ARM_AP_TZC_DRAM1_SIZE) - BL31_BASE
90 };
Dan Handley9df48042015-03-19 18:58:55 +000091
David Wang0ba499f2016-03-07 11:02:57 +080092 return &bl2_dram_layout;
93}
94#else
Dan Handley9df48042015-03-19 18:58:55 +000095meminfo_t *bl2_plat_sec_mem_layout(void)
96{
97 return &bl2_tzram_layout;
98}
Yatharth Kocharf9a0f162016-09-13 17:07:57 +010099#endif /* ARM_BL31_IN_DRAM */
Dan Handley9df48042015-03-19 18:58:55 +0000100
101/*******************************************************************************
102 * This function assigns a pointer to the memory that the platform has kept
103 * aside to pass platform specific and trusted firmware related information
104 * to BL31. This memory is allocated by allocating memory to
105 * bl2_to_bl31_params_mem_t structure which is a superset of all the
106 * structure whose information is passed to BL31
107 * NOTE: This function should be called only once and should be done
108 * before generating params to BL31
109 ******************************************************************************/
110bl31_params_t *bl2_plat_get_bl31_params(void)
111{
112 bl31_params_t *bl2_to_bl31_params;
113
114 /*
115 * Initialise the memory for all the arguments that needs to
Juan Castillo7d199412015-12-14 09:35:25 +0000116 * be passed to BL31
Dan Handley9df48042015-03-19 18:58:55 +0000117 */
Douglas Raillarda8954fc2017-01-26 15:54:44 +0000118 zeromem(&bl31_params_mem, sizeof(bl2_to_bl31_params_mem_t));
Dan Handley9df48042015-03-19 18:58:55 +0000119
120 /* Assign memory for TF related information */
121 bl2_to_bl31_params = &bl31_params_mem.bl31_params;
122 SET_PARAM_HEAD(bl2_to_bl31_params, PARAM_BL31, VERSION_1, 0);
123
Juan Castillo7d199412015-12-14 09:35:25 +0000124 /* Fill BL31 related information */
Dan Handley9df48042015-03-19 18:58:55 +0000125 bl2_to_bl31_params->bl31_image_info = &bl31_params_mem.bl31_image_info;
126 SET_PARAM_HEAD(bl2_to_bl31_params->bl31_image_info, PARAM_IMAGE_BINARY,
127 VERSION_1, 0);
128
Juan Castillo7d199412015-12-14 09:35:25 +0000129 /* Fill BL32 related information if it exists */
Antonio Nino Diaze4fa3702016-04-05 11:38:49 +0100130#ifdef BL32_BASE
Dan Handley9df48042015-03-19 18:58:55 +0000131 bl2_to_bl31_params->bl32_ep_info = &bl31_params_mem.bl32_ep_info;
132 SET_PARAM_HEAD(bl2_to_bl31_params->bl32_ep_info, PARAM_EP,
133 VERSION_1, 0);
134 bl2_to_bl31_params->bl32_image_info = &bl31_params_mem.bl32_image_info;
135 SET_PARAM_HEAD(bl2_to_bl31_params->bl32_image_info, PARAM_IMAGE_BINARY,
136 VERSION_1, 0);
Antonio Nino Diaze4fa3702016-04-05 11:38:49 +0100137#endif /* BL32_BASE */
Dan Handley9df48042015-03-19 18:58:55 +0000138
Juan Castillo7d199412015-12-14 09:35:25 +0000139 /* Fill BL33 related information */
Dan Handley9df48042015-03-19 18:58:55 +0000140 bl2_to_bl31_params->bl33_ep_info = &bl31_params_mem.bl33_ep_info;
141 SET_PARAM_HEAD(bl2_to_bl31_params->bl33_ep_info,
142 PARAM_EP, VERSION_1, 0);
143
Juan Castillo7d199412015-12-14 09:35:25 +0000144 /* BL33 expects to receive the primary CPU MPID (through x0) */
Dan Handley9df48042015-03-19 18:58:55 +0000145 bl2_to_bl31_params->bl33_ep_info->args.arg0 = 0xffff & read_mpidr();
146
147 bl2_to_bl31_params->bl33_image_info = &bl31_params_mem.bl33_image_info;
148 SET_PARAM_HEAD(bl2_to_bl31_params->bl33_image_info, PARAM_IMAGE_BINARY,
149 VERSION_1, 0);
150
151 return bl2_to_bl31_params;
152}
153
154/* Flush the TF params and the TF plat params */
155void bl2_plat_flush_bl31_params(void)
156{
157 flush_dcache_range((unsigned long)&bl31_params_mem,
158 sizeof(bl2_to_bl31_params_mem_t));
159}
160
161/*******************************************************************************
162 * This function returns a pointer to the shared memory that the platform
163 * has kept to point to entry point information of BL31 to BL2
164 ******************************************************************************/
165struct entry_point_info *bl2_plat_get_bl31_ep_info(void)
166{
167#if DEBUG
Soby Mathew7d5a2e72018-01-10 15:59:31 +0000168 bl31_params_mem.bl31_ep_info.args.arg3 = ARM_BL31_PLAT_PARAM_VAL;
Dan Handley9df48042015-03-19 18:58:55 +0000169#endif
170
171 return &bl31_params_mem.bl31_ep_info;
172}
Yatharth Kocharf9a0f162016-09-13 17:07:57 +0100173#endif /* LOAD_IMAGE_V2 */
Dan Handley9df48042015-03-19 18:58:55 +0000174
175/*******************************************************************************
176 * BL1 has passed the extents of the trusted SRAM that should be visible to BL2
177 * in x0. This memory layout is sitting at the base of the free trusted SRAM.
178 * Copy it to a safe location before its reclaimed by later BL2 functionality.
179 ******************************************************************************/
Sandrine Bailleuxb3b6e222018-07-11 12:44:22 +0200180void arm_bl2_early_platform_setup(uintptr_t tb_fw_config,
181 struct meminfo *mem_layout)
Dan Handley9df48042015-03-19 18:58:55 +0000182{
183 /* Initialize the console to provide early debug support */
Antonio Nino Diaz23ede6a2018-06-19 09:29:36 +0100184 arm_console_boot_init();
Dan Handley9df48042015-03-19 18:58:55 +0000185
186 /* Setup the BL2 memory layout */
187 bl2_tzram_layout = *mem_layout;
188
189 /* Initialise the IO layer and register platform IO devices */
190 plat_arm_io_setup();
Soby Mathew96a1c6b2018-01-15 14:45:33 +0000191
192#if LOAD_IMAGE_V2
Soby Mathewcc364842018-02-21 01:16:39 +0000193 if (tb_fw_config != 0U)
Soby Mathew96a1c6b2018-01-15 14:45:33 +0000194 arm_bl2_set_tb_cfg_addr((void *)tb_fw_config);
195#endif
Dan Handley9df48042015-03-19 18:58:55 +0000196}
197
Soby Mathew7d5a2e72018-01-10 15:59:31 +0000198void 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 +0000199{
Soby Mathew96a1c6b2018-01-15 14:45:33 +0000200 arm_bl2_early_platform_setup((uintptr_t)arg0, (meminfo_t *)arg1);
201
Soby Mathew1ced6b82017-06-12 12:37:10 +0100202 generic_delay_timer_init();
Dan Handley9df48042015-03-19 18:58:55 +0000203}
204
205/*
Soby Mathew45e39e22018-03-26 15:16:46 +0100206 * Perform BL2 preload setup. Currently we initialise the dynamic
207 * configuration here.
Dan Handley9df48042015-03-19 18:58:55 +0000208 */
Soby Mathew45e39e22018-03-26 15:16:46 +0100209void bl2_plat_preload_setup(void)
Dan Handley9df48042015-03-19 18:58:55 +0000210{
Soby Mathew96a1c6b2018-01-15 14:45:33 +0000211#if LOAD_IMAGE_V2
212 arm_bl2_dyn_cfg_init();
213#endif
Soby Mathew45e39e22018-03-26 15:16:46 +0100214}
Soby Mathew96a1c6b2018-01-15 14:45:33 +0000215
Soby Mathew45e39e22018-03-26 15:16:46 +0100216/*
217 * Perform ARM standard platform setup.
218 */
219void arm_bl2_platform_setup(void)
220{
Dan Handley9df48042015-03-19 18:58:55 +0000221 /* Initialize the secure environment */
222 plat_arm_security_setup();
Roberto Vargasa1c16b62017-08-03 09:16:43 +0100223
224#if defined(PLAT_ARM_MEM_PROT_ADDR)
Roberto Vargas550eb082018-01-05 16:00:05 +0000225 arm_nor_psci_do_static_mem_protect();
Roberto Vargasa1c16b62017-08-03 09:16:43 +0100226#endif
Dan Handley9df48042015-03-19 18:58:55 +0000227}
228
229void bl2_platform_setup(void)
230{
231 arm_bl2_platform_setup();
232}
233
234/*******************************************************************************
235 * Perform the very early platform specific architectural setup here. At the
236 * moment this is only initializes the mmu in a quick and dirty way.
237 ******************************************************************************/
238void arm_bl2_plat_arch_setup(void)
239{
Daniel Boulby45a2c9e2018-07-06 16:54:44 +0100240
Dan Handley9df48042015-03-19 18:58:55 +0000241#if USE_COHERENT_MEM
Daniel Boulby45a2c9e2018-07-06 16:54:44 +0100242 /* Ensure ARM platforms dont use coherent memory in BL2 */
243 assert((BL_COHERENT_RAM_END - BL_COHERENT_RAM_BASE) == 0U);
Dan Handley9df48042015-03-19 18:58:55 +0000244#endif
Daniel Boulby45a2c9e2018-07-06 16:54:44 +0100245
246 const mmap_region_t bl_regions[] = {
247 MAP_BL2_TOTAL,
Daniel Boulby4e97abd2018-07-16 14:09:15 +0100248 ARM_MAP_BL_RO,
Roberto Vargase3adc372018-05-23 09:27:06 +0100249#if USE_ROMLIB
250 ARM_MAP_ROMLIB_CODE,
251 ARM_MAP_ROMLIB_DATA,
252#endif
Daniel Boulby45a2c9e2018-07-06 16:54:44 +0100253 {0}
254 };
255
256 arm_setup_page_tables(bl_regions, plat_arm_get_mmap());
Yatharth Kochara5f77d32016-07-04 11:26:14 +0100257
258#ifdef AARCH32
Antonio Nino Diaz533d3a82018-08-07 16:35:19 +0100259 enable_mmu_svc_mon(0);
Yatharth Kochara5f77d32016-07-04 11:26:14 +0100260#else
Sandrine Bailleux4a1267a2016-05-18 16:11:47 +0100261 enable_mmu_el1(0);
Yatharth Kochara5f77d32016-07-04 11:26:14 +0100262#endif
Roberto Vargase3adc372018-05-23 09:27:06 +0100263
264 arm_setup_romlib();
Dan Handley9df48042015-03-19 18:58:55 +0000265}
266
267void bl2_plat_arch_setup(void)
268{
269 arm_bl2_plat_arch_setup();
270}
271
Yatharth Kocharf9a0f162016-09-13 17:07:57 +0100272#if LOAD_IMAGE_V2
Yatharth Kocharede39cb2016-11-14 12:01:04 +0000273int arm_bl2_handle_post_image_load(unsigned int image_id)
Yatharth Kocharf9a0f162016-09-13 17:07:57 +0100274{
275 int err = 0;
276 bl_mem_params_node_t *bl_mem_params = get_bl_mem_params_node(image_id);
Summer Qin9db8f2e2017-04-24 16:49:28 +0100277#ifdef SPD_opteed
278 bl_mem_params_node_t *pager_mem_params = NULL;
279 bl_mem_params_node_t *paged_mem_params = NULL;
280#endif
Yatharth Kocharf9a0f162016-09-13 17:07:57 +0100281 assert(bl_mem_params);
282
283 switch (image_id) {
Yatharth Kochara5f77d32016-07-04 11:26:14 +0100284#ifdef AARCH64
Yatharth Kocharf9a0f162016-09-13 17:07:57 +0100285 case BL32_IMAGE_ID:
Summer Qin9db8f2e2017-04-24 16:49:28 +0100286#ifdef SPD_opteed
287 pager_mem_params = get_bl_mem_params_node(BL32_EXTRA1_IMAGE_ID);
288 assert(pager_mem_params);
289
290 paged_mem_params = get_bl_mem_params_node(BL32_EXTRA2_IMAGE_ID);
291 assert(paged_mem_params);
292
293 err = parse_optee_header(&bl_mem_params->ep_info,
294 &pager_mem_params->image_info,
295 &paged_mem_params->image_info);
296 if (err != 0) {
297 WARN("OPTEE header parse error.\n");
298 }
299#endif
Yatharth Kocharf9a0f162016-09-13 17:07:57 +0100300 bl_mem_params->ep_info.spsr = arm_get_spsr_for_bl32_entry();
301 break;
Yatharth Kochara5f77d32016-07-04 11:26:14 +0100302#endif
Yatharth Kocharf9a0f162016-09-13 17:07:57 +0100303
304 case BL33_IMAGE_ID:
305 /* BL33 expects to receive the primary CPU MPID (through r0) */
306 bl_mem_params->ep_info.args.arg0 = 0xffff & read_mpidr();
307 bl_mem_params->ep_info.spsr = arm_get_spsr_for_bl33_entry();
308 break;
309
310#ifdef SCP_BL2_BASE
311 case SCP_BL2_IMAGE_ID:
312 /* The subsequent handling of SCP_BL2 is platform specific */
313 err = plat_arm_bl2_handle_scp_bl2(&bl_mem_params->image_info);
314 if (err) {
315 WARN("Failure in platform-specific handling of SCP_BL2 image.\n");
316 }
317 break;
318#endif
Jonathan Wrightff957ed2018-03-14 15:24:00 +0000319 default:
320 /* Do nothing in default case */
321 break;
Yatharth Kocharf9a0f162016-09-13 17:07:57 +0100322 }
323
324 return err;
325}
326
Yatharth Kocharede39cb2016-11-14 12:01:04 +0000327/*******************************************************************************
328 * This function can be used by the platforms to update/use image
329 * information for given `image_id`.
330 ******************************************************************************/
331int bl2_plat_handle_post_image_load(unsigned int image_id)
332{
333 return arm_bl2_handle_post_image_load(image_id);
334}
335
Yatharth Kocharf9a0f162016-09-13 17:07:57 +0100336#else /* LOAD_IMAGE_V2 */
337
Dan Handley9df48042015-03-19 18:58:55 +0000338/*******************************************************************************
Juan Castilloa72b6472015-12-10 15:49:17 +0000339 * Populate the extents of memory available for loading SCP_BL2 (if used),
Dan Handley9df48042015-03-19 18:58:55 +0000340 * i.e. anywhere in trusted RAM as long as it doesn't overwrite BL2.
341 ******************************************************************************/
Juan Castilloa72b6472015-12-10 15:49:17 +0000342void bl2_plat_get_scp_bl2_meminfo(meminfo_t *scp_bl2_meminfo)
Dan Handley9df48042015-03-19 18:58:55 +0000343{
Juan Castilloa72b6472015-12-10 15:49:17 +0000344 *scp_bl2_meminfo = bl2_tzram_layout;
Dan Handley9df48042015-03-19 18:58:55 +0000345}
346
347/*******************************************************************************
Juan Castillo7d199412015-12-14 09:35:25 +0000348 * Before calling this function BL31 is loaded in memory and its entrypoint
Dan Handley9df48042015-03-19 18:58:55 +0000349 * is set by load_image. This is a placeholder for the platform to change
Juan Castillo7d199412015-12-14 09:35:25 +0000350 * the entrypoint of BL31 and set SPSR and security state.
Dan Handley9df48042015-03-19 18:58:55 +0000351 * On ARM standard platforms we only set the security state of the entrypoint
352 ******************************************************************************/
353void bl2_plat_set_bl31_ep_info(image_info_t *bl31_image_info,
354 entry_point_info_t *bl31_ep_info)
355{
356 SET_SECURITY_STATE(bl31_ep_info->h.attr, SECURE);
357 bl31_ep_info->spsr = SPSR_64(MODE_EL3, MODE_SP_ELX,
358 DISABLE_ALL_EXCEPTIONS);
359}
360
361
362/*******************************************************************************
Juan Castillo7d199412015-12-14 09:35:25 +0000363 * Before calling this function BL32 is loaded in memory and its entrypoint
Dan Handley9df48042015-03-19 18:58:55 +0000364 * is set by load_image. This is a placeholder for the platform to change
Juan Castillo7d199412015-12-14 09:35:25 +0000365 * the entrypoint of BL32 and set SPSR and security state.
Dan Handley9df48042015-03-19 18:58:55 +0000366 * On ARM standard platforms we only set the security state of the entrypoint
367 ******************************************************************************/
Antonio Nino Diaze4fa3702016-04-05 11:38:49 +0100368#ifdef BL32_BASE
Dan Handley9df48042015-03-19 18:58:55 +0000369void bl2_plat_set_bl32_ep_info(image_info_t *bl32_image_info,
370 entry_point_info_t *bl32_ep_info)
371{
372 SET_SECURITY_STATE(bl32_ep_info->h.attr, SECURE);
373 bl32_ep_info->spsr = arm_get_spsr_for_bl32_entry();
374}
375
376/*******************************************************************************
Dan Handley9df48042015-03-19 18:58:55 +0000377 * Populate the extents of memory available for loading BL32
378 ******************************************************************************/
379void bl2_plat_get_bl32_meminfo(meminfo_t *bl32_meminfo)
380{
381 /*
382 * Populate the extents of memory available for loading BL32.
383 */
384 bl32_meminfo->total_base = BL32_BASE;
385 bl32_meminfo->free_base = BL32_BASE;
386 bl32_meminfo->total_size =
387 (TSP_SEC_MEM_BASE + TSP_SEC_MEM_SIZE) - BL32_BASE;
388 bl32_meminfo->free_size =
389 (TSP_SEC_MEM_BASE + TSP_SEC_MEM_SIZE) - BL32_BASE;
390}
Antonio Nino Diaze4fa3702016-04-05 11:38:49 +0100391#endif /* BL32_BASE */
Dan Handley9df48042015-03-19 18:58:55 +0000392
Antonio Nino Diaze4fa3702016-04-05 11:38:49 +0100393/*******************************************************************************
394 * Before calling this function BL33 is loaded in memory and its entrypoint
395 * is set by load_image. This is a placeholder for the platform to change
396 * the entrypoint of BL33 and set SPSR and security state.
397 * On ARM standard platforms we only set the security state of the entrypoint
398 ******************************************************************************/
399void bl2_plat_set_bl33_ep_info(image_info_t *image,
400 entry_point_info_t *bl33_ep_info)
401{
402 SET_SECURITY_STATE(bl33_ep_info->h.attr, NON_SECURE);
403 bl33_ep_info->spsr = arm_get_spsr_for_bl33_entry();
404}
Dan Handley9df48042015-03-19 18:58:55 +0000405
406/*******************************************************************************
407 * Populate the extents of memory available for loading BL33
408 ******************************************************************************/
409void bl2_plat_get_bl33_meminfo(meminfo_t *bl33_meminfo)
410{
411 bl33_meminfo->total_base = ARM_NS_DRAM1_BASE;
412 bl33_meminfo->total_size = ARM_NS_DRAM1_SIZE;
413 bl33_meminfo->free_base = ARM_NS_DRAM1_BASE;
414 bl33_meminfo->free_size = ARM_NS_DRAM1_SIZE;
415}
Yatharth Kocharf9a0f162016-09-13 17:07:57 +0100416
417#endif /* LOAD_IMAGE_V2 */