aboutsummaryrefslogtreecommitdiff
path: root/board/phytec
diff options
context:
space:
mode:
authorMathieu Othacehe2024-02-26 18:37:18 +0100
committerFabio Estevam2024-03-04 08:18:13 -0300
commitc2666fdab6f22914141e934cd06d967b91bbce10 (patch)
tree52e9052ad21f5256edb21bef88b0ceadf2140065 /board/phytec
parenteac52e4be4e234d563d6911737ee7ccdc0ada1f1 (diff)
imx9: Fix OP-TEE support
This fixes OP-TEE support by: - Adding tee.bin to container.cfg - Starting ELE RNG in SPL Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
Diffstat (limited to 'board/phytec')
-rw-r--r--board/phytec/phycore_imx93/spl.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/board/phytec/phycore_imx93/spl.c b/board/phytec/phycore_imx93/spl.c
index dabc5316f33..16303fc187a 100644
--- a/board/phytec/phycore_imx93/spl.c
+++ b/board/phytec/phycore_imx93/spl.c
@@ -11,6 +11,7 @@
#include <asm/arch/sys_proto.h>
#include <asm/arch/trdc.h>
#include <asm/mach-imx/boot_mode.h>
+#include <asm/mach-imx/ele_api.h>
#include <asm/sections.h>
#include <hang.h>
#include <init.h>
@@ -34,6 +35,12 @@ int spl_board_boot_device(enum boot_device boot_dev_spl)
void spl_board_init(void)
{
+ int ret;
+
+ ret = ele_start_rng();
+ if (ret)
+ printf("Fail to start RNG: %d\n", ret);
+
puts("Normal Boot\n");
}