From 36f0949ef9854b82a9a3154d970da4e3b8d12a61 Mon Sep 17 00:00:00 2001 From: hc <hc@nodka.com> Date: Mon, 06 Nov 2023 07:23:29 +0000 Subject: [PATCH] rk3568 rkbin init --- u-boot/common/board_f.c | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/u-boot/common/board_f.c b/u-boot/common/board_f.c index 190e5a4..dd76efc 100644 --- a/u-boot/common/board_f.c +++ b/u-boot/common/board_f.c @@ -21,6 +21,7 @@ #include <init_helpers.h> #include <malloc.h> #include <mapmem.h> +#include <mp_boot.h> #include <os.h> #include <post.h> #include <relocate.h> @@ -254,6 +255,9 @@ /* TODO: use (ulong)&__bss_end - (ulong)&__text_start; ? */ gd->mon_len = (ulong)&__bss_end - CONFIG_SYS_MONITOR_BASE; #endif +#ifdef CONFIG_MP_BOOT + mpb_init_x(3); +#endif return 0; } -- Gitblit v1.6.2