mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2026-07-02 22:02:40 +00:00
The stm32mp257f-ev board fw-config DT file now includes a dtsi file that describes the DDR firewall configuration. Signed-off-by: Yann Gautier <yann.gautier@st.com> Signed-off-by: Alexandre TORGUE <alexandre.torgue@st.com> Signed-off-by: Maxime Méré <maxime.mere@foss.st.com> Change-Id: I3300b00ba6e59b8df4f02db531edd590683c333f
49 lines
872 B
Devicetree
49 lines
872 B
Devicetree
// SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause)
|
|
/*
|
|
* Copyright (c) 2024-2025, 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>;
|
|
};
|
|
|
|
soc_fw-config {
|
|
id = <SOC_FW_CONFIG_ID>;
|
|
};
|
|
|
|
tos_fw {
|
|
id = <BL32_IMAGE_ID>;
|
|
};
|
|
};
|
|
|
|
st-mem-firewall {
|
|
compatible = "st,stm32mp2-mem-firewall";
|
|
#address-cells = <2>;
|
|
#size-cells = <2>;
|
|
};
|
|
};
|