Fix: add missing memory regions to FWU/sp manifest
The memory regions generated by the build system are not included in the
manifest file of the FWU SP when built to binary format. As a result the
SP crashes upon startup with a data abort exception. This change adds
the missing include to fix the crash.
Change-Id: Iccacdddd2fc8cd148ab7c3abfdaa512bf941c0e3
Signed-off-by: Gyorgy Szing <Gyorgy.Szing@arm.com>
diff --git a/deployments/fwu/config/default-sp/default_fwu.dts.in b/deployments/fwu/config/default-sp/default_fwu.dts.in
index dabba0b..985dfb6 100644
--- a/deployments/fwu/config/default-sp/default_fwu.dts.in
+++ b/deployments/fwu/config/default-sp/default_fwu.dts.in
@@ -16,4 +16,10 @@
execution-state = <0>; /* AArch64 */
xlat-granule = <0>; /* 4KiB */
messaging-method = <3>; /* Direct messaging only */
+
+ memory-regions {
+ compatible = "arm,ffa-manifest-memory-regions";
+
+ #include "@EXPORT_DTS_MEM_REGIONS@"
+ };
};