fix(manifest): rename ffa_tee dt parameter
Cosmetic change to rename ffa_tee toggle in device tree into
ffa_tee_enabled to better reflect the intent.
Change-Id: Ib1aa64975b6c14b5dd18e37238263248c8457a8f
Signed-off-by: Olivier Deprez <olivier.deprez@arm.com>
diff --git a/docs/Manifest.md b/docs/Manifest.md
index e9ef587..bb4cdff 100644
--- a/docs/Manifest.md
+++ b/docs/Manifest.md
@@ -13,7 +13,7 @@
hypervisor {
compatible = "hafnium,hafnium";
- ffa_tee;
+ ffa_tee_enabled;
vm1 {
debug_name = "name";
@@ -50,7 +50,7 @@
hypervisor {
compatible = "hafnium,hafnium";
- ffa_tee;
+ ffa_tee_enabled;
vm1 {
debug_name = "primary VM";
diff --git a/src/manifest.c b/src/manifest.c
index 155a22d..e8619b9 100644
--- a/src/manifest.c
+++ b/src/manifest.c
@@ -814,7 +814,8 @@
return MANIFEST_ERROR_NOT_COMPATIBLE;
}
- TRY(read_bool(&hyp_node, "ffa_tee", &manifest->ffa_tee_enabled));
+ TRY(read_bool(&hyp_node, "ffa_tee_enabled",
+ &manifest->ffa_tee_enabled));
/* Iterate over reserved VM IDs and check no such nodes exist. */
for (i = HF_VM_ID_BASE; i < HF_VM_ID_OFFSET; i++) {
diff --git a/test/vmapi/arch/aarch64/trusty/manifest.dts b/test/vmapi/arch/aarch64/trusty/manifest.dts
index 77ebf38..555a86c 100644
--- a/test/vmapi/arch/aarch64/trusty/manifest.dts
+++ b/test/vmapi/arch/aarch64/trusty/manifest.dts
@@ -11,7 +11,7 @@
/ {
hypervisor {
compatible = "hafnium,hafnium";
- ffa_tee;
+ ffa_tee_enabled;
vm1 {
debug_name = "trusty_test";
kernel_filename = "trusty_test";
diff --git a/test/vmapi/ffa_secure_partitions/manifest.dts b/test/vmapi/ffa_secure_partitions/manifest.dts
index d6e86f3..6c90bbf 100644
--- a/test/vmapi/ffa_secure_partitions/manifest.dts
+++ b/test/vmapi/ffa_secure_partitions/manifest.dts
@@ -9,7 +9,7 @@
/ {
hypervisor {
compatible = "hafnium,hafnium";
- ffa_tee;
+ ffa_tee_enabled;
vm1 {
is_ffa_partition;
debug_name = "primary_ffa_test";