blob: d5b328e3c11770841e49d4e7d2aeedaebe5bc76a [file] [log] [blame]
Yann Gautier4b0c72a2018-07-16 10:54:09 +02001/*
2 * Copyright (c) 2016-2018, ARM Limited and Contributors. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#include <desc_image_load.h>
Yann Gautierf9af3bc2018-11-09 15:57:18 +01008#include <platform.h>
Yann Gautier4b0c72a2018-07-16 10:54:09 +02009
10/*******************************************************************************
11 * This function flushes the data structures so that they are visible
12 * in memory for the next BL image.
13 ******************************************************************************/
14void plat_flush_next_bl_params(void)
15{
16 flush_bl_params_desc();
17}
18
19/*******************************************************************************
20 * This function returns the list of loadable images.
21 ******************************************************************************/
22bl_load_info_t *plat_get_bl_image_load_info(void)
23{
24 return get_bl_load_info_from_mem_params_desc();
25}
26
27/*******************************************************************************
28 * This function returns the list of executable images.
29 ******************************************************************************/
30bl_params_t *plat_get_next_bl_params(void)
31{
32 return get_next_bl_params_from_mem_params_desc();
33}