blob: 76af0fc68acdcd25fede5a3372371319f1debcc7 [file] [log] [blame]
Yann Gautier4b0c72a2018-07-16 10:54:09 +02001/*
Yann Gautierc6f77b02022-05-06 09:50:43 +02002 * Copyright (c) 2016-2022, ARM Limited and Contributors. All rights reserved.
Yann Gautier4b0c72a2018-07-16 10:54:09 +02003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00007#include <common/desc_image_load.h>
8#include <plat/common/platform.h>
Yann Gautier4b0c72a2018-07-16 10:54:09 +02009
Yann Gautierc6f77b02022-05-06 09:50:43 +020010#include <platform_def.h>
11
Yann Gautier4b0c72a2018-07-16 10:54:09 +020012/*******************************************************************************
13 * This function flushes the data structures so that they are visible
14 * in memory for the next BL image.
15 ******************************************************************************/
16void plat_flush_next_bl_params(void)
17{
18 flush_bl_params_desc();
19}
20
21/*******************************************************************************
22 * This function returns the list of loadable images.
23 ******************************************************************************/
24bl_load_info_t *plat_get_bl_image_load_info(void)
25{
Yann Gautier0ed7b2a2021-05-19 18:48:16 +020026#if STM32MP_USE_STM32IMAGE
Yann Gautiera55169b2020-01-10 18:18:59 +010027 bl_mem_params_node_t *bl33 = get_bl_mem_params_node(BL33_IMAGE_ID);
28 uint32_t ddr_ns_size = stm32mp_get_ddr_ns_size();
29
Yann Gautierc6f77b02022-05-06 09:50:43 +020030 assert(bl33 != NULL);
31
Yann Gautiera55169b2020-01-10 18:18:59 +010032 /* Max size is non-secure DDR end address minus image_base */
33 bl33->image_info.image_max_size = STM32MP_DDR_BASE + ddr_ns_size -
34 bl33->image_info.image_base;
Yann Gautier0ed7b2a2021-05-19 18:48:16 +020035#endif /* STM32MP_USE_STM32IMAGE */
Yann Gautiera55169b2020-01-10 18:18:59 +010036
Yann Gautier4b0c72a2018-07-16 10:54:09 +020037 return get_bl_load_info_from_mem_params_desc();
38}
39
40/*******************************************************************************
41 * This function returns the list of executable images.
42 ******************************************************************************/
43bl_params_t *plat_get_next_bl_params(void)
44{
Yann Gautier0ed7b2a2021-05-19 18:48:16 +020045 bl_params_t *bl_params = get_next_bl_params_from_mem_params_desc();
46
47 populate_next_bl_params_config(bl_params);
48
49 return bl_params;
Yann Gautier4b0c72a2018-07-16 10:54:09 +020050}