hc
2024-12-19 9370bb92b2d16684ee45cf24e879c93c509162da
u-boot/common/board_f.c
....@@ -21,6 +21,7 @@
2121 #include <init_helpers.h>
2222 #include <malloc.h>
2323 #include <mapmem.h>
24
+#include <mp_boot.h>
2425 #include <os.h>
2526 #include <post.h>
2627 #include <relocate.h>
....@@ -254,6 +255,9 @@
254255 /* TODO: use (ulong)&__bss_end - (ulong)&__text_start; ? */
255256 gd->mon_len = (ulong)&__bss_end - CONFIG_SYS_MONITOR_BASE;
256257 #endif
258
+#ifdef CONFIG_MP_BOOT
259
+ mpb_init_x(3);
260
+#endif
257261 return 0;
258262 }
259263