diff options
author | 2024-05-08 10:24:45 +0800 | |
---|---|---|
committer | 2024-07-12 08:55:31 -0700 | |
commit | 6ad8735994b854b23c824dd6b1dd2126e893a3b4 (patch) | |
tree | ac7f0f50e084f260c1b9cd60f2dd741a2c340b63 | |
parent | Merge patch series "riscv: Apply Zawrs when available" (diff) | |
download | wireguard-linux-6ad8735994b854b23c824dd6b1dd2126e893a3b4.tar.xz wireguard-linux-6ad8735994b854b23c824dd6b1dd2126e893a3b4.zip |
riscv: set trap vector earlier
The exception vector of the booting hart is not set before enabling
the mmu and then still points to the value of the previous firmware,
typically _start. That makes it hard to debug setup_vm() when bad
things happen. So fix that by setting the exception vector earlier.
Reviewed-by: Alexandre Ghiti <alexghiti@rivosinc.com>
Signed-off-by: yang.zhang <yang.zhang@hexintek.com>
Link: https://lore.kernel.org/r/20240508022445.6131-1-gaoshanliukou@163.com
Signed-off-by: Palmer Dabbelt <palmer@rivosinc.com>
Diffstat (limited to '')
-rw-r--r-- | arch/riscv/kernel/head.S | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/riscv/kernel/head.S b/arch/riscv/kernel/head.S index a00f7523cb91..356d5397b2a2 100644 --- a/arch/riscv/kernel/head.S +++ b/arch/riscv/kernel/head.S @@ -305,6 +305,9 @@ SYM_CODE_START(_start_kernel) #else mv a0, a1 #endif /* CONFIG_BUILTIN_DTB */ + /* Set trap vector to spin forever to help debug */ + la a3, .Lsecondary_park + csrw CSR_TVEC, a3 call setup_vm #ifdef CONFIG_MMU la a0, early_pg_dir |