blob: 4f86efdf9254ab80c49ad17f2f7a2e339756baf4 [file] [log] [blame]
Yatharth Kocharf9a0f162016-09-13 17:07:57 +01001/*
Soby Mathew96a1c6b2018-01-15 14:45:33 +00002 * Copyright (c) 2016-2018, ARM Limited and Contributors. All rights reserved.
Yatharth Kocharf9a0f162016-09-13 17:07:57 +01003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Yatharth Kocharf9a0f162016-09-13 17:07:57 +01005 */
6
7#include <arm_def.h>
8#include <bl_common.h>
9#include <desc_image_load.h>
Soby Mathew96a1c6b2018-01-15 14:45:33 +000010#include <plat_arm.h>
Yatharth Kocharf9a0f162016-09-13 17:07:57 +010011#include <platform.h>
12
13
14#pragma weak plat_flush_next_bl_params
15#pragma weak plat_get_bl_image_load_info
16#pragma weak plat_get_next_bl_params
17
18
19/*******************************************************************************
20 * This function flushes the data structures so that they are visible
21 * in memory for the next BL image.
22 ******************************************************************************/
23void plat_flush_next_bl_params(void)
24{
25 flush_bl_params_desc();
26}
27
28/*******************************************************************************
29 * This function returns the list of loadable images.
30 ******************************************************************************/
Sandrine Bailleuxb3b6e222018-07-11 12:44:22 +020031struct bl_load_info *plat_get_bl_image_load_info(void)
Yatharth Kocharf9a0f162016-09-13 17:07:57 +010032{
33 return get_bl_load_info_from_mem_params_desc();
34}
35
36/*******************************************************************************
37 * This function returns the list of executable images.
38 ******************************************************************************/
Sandrine Bailleuxb3b6e222018-07-11 12:44:22 +020039struct bl_params *plat_get_next_bl_params(void)
Yatharth Kocharf9a0f162016-09-13 17:07:57 +010040{
Soby Mathew96a1c6b2018-01-15 14:45:33 +000041 bl_params_t *next_bl_params = get_next_bl_params_from_mem_params_desc();
42
43 populate_next_bl_params_config(next_bl_params);
44 return next_bl_params;
Yatharth Kocharf9a0f162016-09-13 17:07:57 +010045}