Ying-Chun Liu (PaulLiu) | 03abd32 | 2019-04-17 16:07:11 +0100 | [diff] [blame] | 1 | /* |
| 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 | |
| 13 | void plat_flush_next_bl_params(void) |
| 14 | { |
| 15 | flush_bl_params_desc(); |
| 16 | } |
| 17 | |
| 18 | bl_load_info_t *plat_get_bl_image_load_info(void) |
| 19 | { |
| 20 | return get_bl_load_info_from_mem_params_desc(); |
| 21 | } |
| 22 | |
| 23 | bl_params_t *plat_get_next_bl_params(void) |
| 24 | { |
| 25 | return get_next_bl_params_from_mem_params_desc(); |
| 26 | } |