arm64: zynqmp: Fix TEE loading address and add hash

There is incorrect loading address listed for TEE.
CONFIG_BL32_LOAD_ADDR should be used.
Also there is missing hash for this entry which is present for other nodes.

Signed-off-by: Michal Simek <michal.simek@amd.com>
Link: https://lore.kernel.org/r/4e7e3a7110acc050ea7c06ac661e5b5be46e8602.1738659214.git.michal.simek@amd.com
This commit is contained in:
Michal Simek
2025-02-05 16:22:55 +01:00
parent 6b82252c36
commit 89e26b49a9
2 changed files with 15 additions and 6 deletions
+5 -2
View File
@@ -148,8 +148,11 @@
arch = "arm64";
compression = "none";
os = "tee";
load = /bits/ 64 <CONFIG_BL31_LOAD_ADDR>;
entry = /bits/ 64 <CONFIG_BL31_LOAD_ADDR>;
load = /bits/ 64 <CONFIG_BL32_LOAD_ADDR>;
entry = /bits/ 64 <CONFIG_BL32_LOAD_ADDR>;
hash {
algo = "md5";
};
tee-os {
optional;
};
+10 -4
View File
@@ -61,8 +61,11 @@
arch = "arm64";
compression = "none";
os = "tee";
load = /bits/ 64 <CONFIG_BL31_LOAD_ADDR>;
entry = /bits/ 64 <CONFIG_BL31_LOAD_ADDR>;
load = /bits/ 64 <CONFIG_BL32_LOAD_ADDR>;
entry = /bits/ 64 <CONFIG_BL32_LOAD_ADDR>;
hash {
algo = "md5";
};
tee-os {
optional;
};
@@ -135,8 +138,11 @@
arch = "arm64";
compression = "none";
os = "tee";
load = /bits/ 64 <CONFIG_BL31_LOAD_ADDR>;
entry = /bits/ 64 <CONFIG_BL31_LOAD_ADDR>;
load = /bits/ 64 <CONFIG_BL32_LOAD_ADDR>;
entry = /bits/ 64 <CONFIG_BL32_LOAD_ADDR>;
hash {
algo = "md5";
};
tee-os {
optional;
};