RISC-V: Avoid using per cpu array for ordered booting
Currently both order booting and spinwait approach uses a per cpu array to update stack & task pointer. This approach will not work for the following cases. 1. If NR_CPUs are configured to be less than highest hart id. 2. A platform has sparse hartid. This issue can be fixed for ordered booting as the booting cpu brings up one cpu at a time using SBI HSM extension which has opaque parameter that is unused until now. Introduce a common secondary boot data structure that can store the stack and task pointer. Secondary harts will use this data while booting up to setup the sp & tp. Reviewed-by:Anup Patel <anup@brainfault.org> Signed-off-by:
Atish Patra <atishp@rivosinc.com> Signed-off-by:
Palmer Dabbelt <palmer@rivosinc.com>
Showing
- arch/riscv/include/asm/cpu_ops_sbi.h 25 additions, 0 deletionsarch/riscv/include/asm/cpu_ops_sbi.h
- arch/riscv/kernel/asm-offsets.c 3 additions, 0 deletionsarch/riscv/kernel/asm-offsets.c
- arch/riscv/kernel/cpu_ops_sbi.c 20 additions, 6 deletionsarch/riscv/kernel/cpu_ops_sbi.c
- arch/riscv/kernel/head.S 10 additions, 9 deletionsarch/riscv/kernel/head.S
Please register or sign in to comment