From a23c1b3fc09431a2787c0ff5f9b3aea5c754ad6d Mon Sep 17 00:00:00 2001 From: Yao Zi Date: Fri, 6 Jun 2025 04:28:04 +0000 Subject: [PATCH] board: thead: licheepi4a: Bring up secondary cores in SPL Setup core information and bring secondary HARTs up for a functional multi-core system. Signed-off-by: Yao Zi Reviewed-by: Leo Yu-Chi Liang --- board/thead/th1520_lpi4a/spl.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/board/thead/th1520_lpi4a/spl.c b/board/thead/th1520_lpi4a/spl.c index 25dfa387c36..d75fa6f3eff 100644 --- a/board/thead/th1520_lpi4a/spl.c +++ b/board/thead/th1520_lpi4a/spl.c @@ -39,6 +39,9 @@ void board_init_f(ulong dummy) if (ret) panic("failed to bind CPU: %d\n", ret); + riscv_cpu_setup(); + th1520_kick_secondary_cores(); + spl_dram_init(); icache_enable(); -- 2.47.2