mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-16 01:24:27 +00:00

Currently, reference design platforms such as RD-N2, RD-N1-Edge, RD-V1-MC, RD-V1 and SGI-575 utilize "css/sgi" as the common source directory. The "sgi" prefix originated from the System Guidance for Infrastructure (SGI) and was initially associated with the SGI-575 platform. However, subsequent platforms released were under the Neoverse Reference Design product name. To align with the Neoverse Reference Design nomenclature, rename the common source directory from "css/sgi" to "css/neoverse_rd" and update all file prefixes from "sgi" to "nrd." Signed-off-by: Rohit Mathew <Rohit.Mathew@arm.com> Change-Id: I3dcbb31b9ab202e82caf25218ba33c520dcea4e4
36 lines
908 B
C
36 lines
908 B
C
/*
|
|
* Copyright (c) 2019-2024, Arm Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <platform_def.h>
|
|
|
|
#include <common/debug.h>
|
|
#include <nrd_dmc620_tzc_regions.h>
|
|
|
|
uintptr_t rdn1edge_dmc_base[] = {
|
|
RDN1EDGE_DMC620_BASE0,
|
|
RDN1EDGE_DMC620_BASE1
|
|
};
|
|
|
|
static const tzc_dmc620_driver_data_t rdn1edge_plat_driver_data = {
|
|
.dmc_base = rdn1edge_dmc_base,
|
|
.dmc_count = ARRAY_SIZE(rdn1edge_dmc_base)
|
|
};
|
|
|
|
static const tzc_dmc620_acc_addr_data_t rdn1edge_acc_addr_data[] = {
|
|
CSS_SGI_DMC620_TZC_REGIONS_DEF
|
|
};
|
|
|
|
static const tzc_dmc620_config_data_t rdn1edge_plat_config_data = {
|
|
.plat_drv_data = &rdn1edge_plat_driver_data,
|
|
.plat_acc_addr_data = rdn1edge_acc_addr_data,
|
|
.acc_addr_count = ARRAY_SIZE(rdn1edge_acc_addr_data)
|
|
};
|
|
|
|
/* Initialize the secure environment */
|
|
void plat_arm_security_setup(void)
|
|
{
|
|
arm_tzc_dmc620_setup(&rdn1edge_plat_config_data);
|
|
}
|