Bryan O'Donoghue | 986b1b9 | 2018-05-24 19:38:11 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2018, ARM Limited and Contributors. All rights reserved. |
| 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | */ |
| 6 | |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 7 | #include <common/bl_common.h> |
| 8 | #include <common/desc_image_load.h> |
| 9 | #include <plat/common/platform.h> |
Bryan O'Donoghue | 986b1b9 | 2018-05-24 19:38:11 +0100 | [diff] [blame] | 10 | |
| 11 | void plat_flush_next_bl_params(void) |
| 12 | { |
| 13 | flush_bl_params_desc(); |
| 14 | } |
| 15 | |
| 16 | bl_load_info_t *plat_get_bl_image_load_info(void) |
| 17 | { |
| 18 | return get_bl_load_info_from_mem_params_desc(); |
| 19 | } |
| 20 | |
| 21 | bl_params_t *plat_get_next_bl_params(void) |
| 22 | { |
| 23 | return get_next_bl_params_from_mem_params_desc(); |
| 24 | } |