aboutsummaryrefslogtreecommitdiffstats
path: root/plat/common
diff options
context:
space:
mode:
authorJ-Alves <joao.alves@arm.com>2020-05-07 18:42:25 +0100
committerOlivier Deprez <olivier.deprez@arm.com>2020-05-25 08:55:36 +0000
commit662af36d9ca38eec53eed8613b916d12f8442e3e (patch)
treeefd861e80e376d3c47c2a7164ded5feba958b6c6 /plat/common
parentbeff49107559a77583cf06b57150a811de3a7d44 (diff)
downloadplatform_external_arm-trusted-firmware-662af36d9ca38eec53eed8613b916d12f8442e3e.tar.gz
platform_external_arm-trusted-firmware-662af36d9ca38eec53eed8613b916d12f8442e3e.tar.bz2
platform_external_arm-trusted-firmware-662af36d9ca38eec53eed8613b916d12f8442e3e.zip
SPCI is now called PSA FF-A
SPCI is renamed as PSA FF-A which stands for Platform Security Architecture Firmware Framework for A class processors. This patch replaces the occurrence of SPCI with PSA FF-A(in documents) or simply FFA(in code). Change-Id: I4ab10adb9ffeef1ff784641dfafd99f515133760 Signed-off-by: J-Alves <joao.alves@arm.com>
Diffstat (limited to 'plat/common')
-rw-r--r--plat/common/plat_spmd_manifest.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/plat/common/plat_spmd_manifest.c b/plat/common/plat_spmd_manifest.c
index 109b001f0..455b9808b 100644
--- a/plat/common/plat_spmd_manifest.c
+++ b/plat/common/plat_spmd_manifest.c
@@ -31,14 +31,14 @@ static int manifest_parse_attribute(spmc_manifest_attribute_t *attr,
rc = fdt_read_uint32(fdt, node, "maj_ver", &attr->major_version);
if (rc != 0) {
- ERROR("Missing SPCI %s version in SPM Core manifest.\n",
+ ERROR("Missing FFA %s version in SPM Core manifest.\n",
"major");
return rc;
}
rc = fdt_read_uint32(fdt, node, "min_ver", &attr->minor_version);
if (rc != 0) {
- ERROR("Missing SPCI %s version in SPM Core manifest.\n",
+ ERROR("Missing FFA %s version in SPM Core manifest.\n",
"minor");
return rc;
}
@@ -163,7 +163,7 @@ int plat_spm_core_manifest_load(spmc_manifest_attribute_t *manifest,
VERBOSE("Reading SPM Core manifest at address %p\n", pm_addr);
rc = fdt_node_offset_by_compatible(pm_addr, -1,
- "arm,spci-core-manifest-1.0");
+ "arm,ffa-core-manifest-1.0");
if (rc < 0) {
ERROR("Unrecognized SPM Core manifest\n");
goto exit_unmap;