mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-19 19:14:28 +00:00

SDMMC is 1 of the boot source for Agilex5 and legacy products. By enabling this, ATF is able to read out the DTB binary and loaded it to DDR for Linux boot. Change-Id: Ida303fb43ea63013a08083ce65952c5ad4e28f93 Signed-off-by: Jit Loon Lim <jit.loon.lim@intel.com> Signed-off-by: Sieu Mun Tang <sieu.mun.tang@intel.com>
114 lines
3.4 KiB
C
114 lines
3.4 KiB
C
/*
|
|
* Copyright (c) 2019, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <common/bl_common.h>
|
|
#include <common/desc_image_load.h>
|
|
#include <platform_def.h>
|
|
#include <plat/common/platform.h>
|
|
|
|
|
|
/*******************************************************************************
|
|
* Following descriptor provides BL image/ep information that gets used
|
|
* by BL2 to load the images and also subset of this information is
|
|
* passed to next BL image. The image loading sequence is managed by
|
|
* populating the images in required loading order. The image execution
|
|
* sequence is managed by populating the `next_handoff_image_id` with
|
|
* the next executable image id.
|
|
******************************************************************************/
|
|
static bl_mem_params_node_t bl2_mem_params_descs[] = {
|
|
#ifdef SCP_BL2_BASE
|
|
/* Fill SCP_BL2 related information if it exists */
|
|
{
|
|
.image_id = SCP_BL2_IMAGE_ID,
|
|
|
|
SET_STATIC_PARAM_HEAD(ep_info, PARAM_IMAGE_BINARY,
|
|
VERSION_2, entry_point_info_t, SECURE | NON_EXECUTABLE),
|
|
|
|
SET_STATIC_PARAM_HEAD(image_info, PARAM_IMAGE_BINARY,
|
|
VERSION_2, image_info_t, 0),
|
|
.image_info.image_base = SCP_BL2_BASE,
|
|
.image_info.image_max_size = SCP_BL2_SIZE,
|
|
|
|
.next_handoff_image_id = INVALID_IMAGE_ID,
|
|
},
|
|
#endif /* SCP_BL2_BASE */
|
|
|
|
#ifdef EL3_PAYLOAD_BASE
|
|
/* Fill EL3 payload related information (BL31 is EL3 payload)*/
|
|
{
|
|
.image_id = BL31_IMAGE_ID,
|
|
|
|
SET_STATIC_PARAM_HEAD(ep_info, PARAM_EP,
|
|
VERSION_2, entry_point_info_t,
|
|
SECURE | EXECUTABLE | EP_FIRST_EXE),
|
|
.ep_info.pc = EL3_PAYLOAD_BASE,
|
|
.ep_info.spsr = SPSR_64(MODE_EL3, MODE_SP_ELX,
|
|
DISABLE_ALL_EXCEPTIONS),
|
|
|
|
SET_STATIC_PARAM_HEAD(image_info, PARAM_EP,
|
|
VERSION_2, image_info_t,
|
|
IMAGE_ATTRIB_PLAT_SETUP | IMAGE_ATTRIB_SKIP_LOADING),
|
|
|
|
.next_handoff_image_id = INVALID_IMAGE_ID,
|
|
},
|
|
|
|
#else /* EL3_PAYLOAD_BASE */
|
|
|
|
/* Fill BL31 related information */
|
|
{
|
|
.image_id = BL31_IMAGE_ID,
|
|
|
|
SET_STATIC_PARAM_HEAD(ep_info, PARAM_EP,
|
|
VERSION_2, entry_point_info_t,
|
|
SECURE | EXECUTABLE | EP_FIRST_EXE),
|
|
.ep_info.pc = BL31_BASE,
|
|
.ep_info.spsr = SPSR_64(MODE_EL3, MODE_SP_ELX,
|
|
DISABLE_ALL_EXCEPTIONS),
|
|
|
|
SET_STATIC_PARAM_HEAD(image_info, PARAM_EP,
|
|
VERSION_2, image_info_t, IMAGE_ATTRIB_PLAT_SETUP),
|
|
.image_info.image_base = BL31_BASE,
|
|
.image_info.image_max_size = BL31_LIMIT - BL31_BASE,
|
|
|
|
.next_handoff_image_id = BL33_IMAGE_ID,
|
|
},
|
|
#endif /* EL3_PAYLOAD_BASE */
|
|
|
|
{
|
|
.image_id = BL33_IMAGE_ID,
|
|
SET_STATIC_PARAM_HEAD(ep_info, PARAM_EP,
|
|
VERSION_2, entry_point_info_t, NON_SECURE | EXECUTABLE),
|
|
.ep_info.pc = PLAT_NS_IMAGE_OFFSET,
|
|
|
|
SET_STATIC_PARAM_HEAD(image_info, PARAM_EP,
|
|
VERSION_2, image_info_t, 0),
|
|
.image_info.image_base = PLAT_NS_IMAGE_OFFSET,
|
|
.image_info.image_max_size =
|
|
0x0 + 0x40000000 - PLAT_NS_IMAGE_OFFSET,
|
|
# if ARM_LINUX_KERNEL_AS_BL33 != 0
|
|
.next_handoff_image_id = NT_FW_CONFIG_ID,
|
|
},
|
|
|
|
{
|
|
.image_id = NT_FW_CONFIG_ID,
|
|
SET_STATIC_PARAM_HEAD(ep_info, PARAM_IMAGE_BINARY,
|
|
VERSION_2, entry_point_info_t,
|
|
NON_SECURE | NON_EXECUTABLE),
|
|
SET_STATIC_PARAM_HEAD(image_info, PARAM_IMAGE_BINARY,
|
|
VERSION_2, image_info_t, 0),
|
|
.image_info.image_base = ARM_PRELOADED_DTB_BASE,
|
|
.image_info.image_max_size =
|
|
0x0 + 0x40000000 - ARM_PRELOADED_DTB_BASE,
|
|
|
|
.next_handoff_image_id = INVALID_IMAGE_ID,
|
|
},
|
|
#else
|
|
.next_handoff_image_id = INVALID_IMAGE_ID,
|
|
},
|
|
# endif
|
|
};
|
|
|
|
REGISTER_BL_IMAGE_DESCS(bl2_mem_params_descs)
|