mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-09-14 02:01:24 +02:00
This patch enables SPMC execution at S-EL2 by adding below changes - Map TC0_MAP_TZC_DRAM1 for loading SPMC - Add details of cactus test secure partitions - Adds tc0 spmc manifest file with details on secure partitions - Inlcude TOS_FW_CONFIG when SPM is spmd - Increases bl2 image size SPMC at S-EL2 is only enabled when build with SPD=spmd. Change-Id: I4c5f70911903c232ee8ecca57f1e288d6b1cd647 Signed-off-by: Arunachalam Ganapathy <arunachalam.ganapathy@arm.com>
34 lines
559 B
Plaintext
34 lines
559 B
Plaintext
/*
|
|
* Copyright (c) 2020, Arm Limited. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <common/tbbr/tbbr_img_def.h>
|
|
|
|
/dts-v1/;
|
|
|
|
/ {
|
|
dtb-registry {
|
|
compatible = "fconf,dyn_cfg-dtb_registry";
|
|
|
|
tb_fw-config {
|
|
load-address = <0x0 0x4001300>;
|
|
max-size = <0x400>;
|
|
id = <TB_FW_CONFIG_ID>;
|
|
};
|
|
|
|
tos_fw-config {
|
|
load-address = <0x0 0x04001700>;
|
|
max-size = <0x1000>;
|
|
id = <TOS_FW_CONFIG_ID>;
|
|
};
|
|
|
|
hw-config {
|
|
load-address = <0x0 0x83000000>;
|
|
max-size = <0x01000000>;
|
|
id = <HW_CONFIG_ID>;
|
|
};
|
|
};
|
|
};
|