blob: 3a030699c72a97dd4e0d7ba81b188977dd4f8aba [file] [log] [blame]
Ying-Chun Liu (PaulLiu)03abd322019-04-17 16:07:11 +01001/*
2 * Copyright (c) 2021, ARM Limited and Contributors. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#include <common/bl_common.h>
8#include <common/desc_image_load.h>
9
10#include <platform_def.h>
11#include <plat/common/platform.h>
12
13void plat_flush_next_bl_params(void)
14{
15 flush_bl_params_desc();
16}
17
18bl_load_info_t *plat_get_bl_image_load_info(void)
19{
20 return get_bl_load_info_from_mem_params_desc();
21}
22
23bl_params_t *plat_get_next_bl_params(void)
24{
25 return get_next_bl_params_from_mem_params_desc();
26}