blob: 67c02bc7de238f7d0b4db5f79f5738f601ea4e15 [file] [log] [blame]
Loh Tien Hock59400a42019-02-04 16:17:24 +08001/*
2 * Copyright (c) 2019, ARM Limited and Contributors. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#include <common/desc_image_load.h>
8
9/*******************************************************************************
10 * This function flushes the data structures so that they are visible
11 * in memory for the next BL image.
12 ******************************************************************************/
13void plat_flush_next_bl_params(void)
14{
15 flush_bl_params_desc();
16}
17
18/*******************************************************************************
19 * This function returns the list of loadable images.
20 ******************************************************************************/
21bl_load_info_t *plat_get_bl_image_load_info(void)
22{
23 return get_bl_load_info_from_mem_params_desc();
24}
25
26/*******************************************************************************
27 * This function returns the list of executable images.
28 ******************************************************************************/
29bl_params_t *plat_get_next_bl_params(void)
30{
31 return get_next_bl_params_from_mem_params_desc();
32}