From cbddf5decd7b6128c4b0c59aa9c0669434ff396e Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Wed, 15 Mar 2023 14:31:20 +0100 Subject: bsps/riscv: Fix riscv_get_hart_index_by_phandle() Take a non-zero RISCV_BOOT_HARTID into account. --- bsps/riscv/riscv/start/bspstart.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'bsps/riscv/riscv/start/bspstart.c') diff --git a/bsps/riscv/riscv/start/bspstart.c b/bsps/riscv/riscv/start/bspstart.c index 30d479ce88..f27713b5bf 100644 --- a/bsps/riscv/riscv/start/bspstart.c +++ b/bsps/riscv/riscv/start/bspstart.c @@ -111,6 +111,14 @@ static void riscv_find_harts(void) hart_index = fdt32_to_cpu(val[0]); +#if RISCV_BOOT_HARTID != 0 + if (hart_index < RISCV_BOOT_HARTID) { + continue; + } + + hart_index -= RISCV_BOOT_HARTID; +#endif + if (hart_index >= RTEMS_ARRAY_SIZE(riscv_hart_phandles)) { continue; } @@ -166,7 +174,7 @@ uint32_t riscv_get_hart_index_by_phandle(uint32_t phandle) for (hart_index = 0; hart_index < riscv_hart_count; ++hart_index) { if (riscv_hart_phandles[hart_index] == phandle) { - return hart_index; + return hart_index + RISCV_BOOT_HARTID; } } -- cgit v1.2.3