mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-18 18:44:22 +00:00

Add BL31 load address (beginning on SYSRAM) and size in fw-config DT file. Signed-off-by: Yann Gautier <yann.gautier@st.com> Signed-off-by: Maxime Méré <maxime.mere@foss.st.com> Change-Id: I2fcd8d326f394090401ac59b47216d59d3e911bc
38 lines
703 B
Text
38 lines
703 B
Text
// SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause)
|
|
/*
|
|
* Copyright (c) 2024, STMicroelectronics - All Rights Reserved
|
|
*/
|
|
|
|
#include <common/tbbr/tbbr_img_def.h>
|
|
|
|
#include <platform_def.h>
|
|
|
|
/dts-v1/;
|
|
|
|
/ {
|
|
dtb-registry {
|
|
compatible = "fconf,dyn_cfg-dtb_registry";
|
|
|
|
hw-config {
|
|
load-address = <0x0 STM32MP_HW_CONFIG_BASE>;
|
|
max-size = <STM32MP_HW_CONFIG_MAX_SIZE>;
|
|
id = <HW_CONFIG_ID>;
|
|
};
|
|
|
|
nt_fw {
|
|
load-address = <0x0 STM32MP_BL33_BASE>;
|
|
max-size = <STM32MP_BL33_MAX_SIZE>;
|
|
id = <BL33_IMAGE_ID>;
|
|
};
|
|
|
|
soc_fw {
|
|
load-address = <0x0 STM32MP_SYSRAM_BASE>;
|
|
max-size = <STM32MP_BL31_SIZE>;
|
|
id = <BL31_IMAGE_ID>;
|
|
};
|
|
|
|
tos_fw {
|
|
id = <BL32_IMAGE_ID>;
|
|
};
|
|
};
|
|
};
|