Misalignment trap handling is only supported for M-mode and uses direct accesses to user memory. In S-mode, when handling usermode fault, this requires to use the get_user()/put_user() accessors. Implement load_u8(), store_u8() and get_insn() using these accessors for userspace and direct text access for kernel. Signed-off-by: Clément Léger <cleger@rivosinc.com> Reviewed-by: Björn Töpel <bjorn@rivosinc.com> Link: https://lore.kernel.org/r/20231004151405.521596-3-cleger@rivosinc.com Signed-off-by: Palmer Dabbelt <palmer@rivosinc.com>
26 lines
570 B
C
26 lines
570 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
#ifndef _ASM_RISCV_ENTRY_COMMON_H
|
|
#define _ASM_RISCV_ENTRY_COMMON_H
|
|
|
|
#include <asm/stacktrace.h>
|
|
|
|
void handle_page_fault(struct pt_regs *regs);
|
|
void handle_break(struct pt_regs *regs);
|
|
|
|
#ifdef CONFIG_RISCV_MISALIGNED
|
|
int handle_misaligned_load(struct pt_regs *regs);
|
|
int handle_misaligned_store(struct pt_regs *regs);
|
|
#else
|
|
static inline int handle_misaligned_load(struct pt_regs *regs)
|
|
{
|
|
return -1;
|
|
}
|
|
static inline int handle_misaligned_store(struct pt_regs *regs)
|
|
{
|
|
return -1;
|
|
}
|
|
#endif
|
|
|
|
#endif /* _ASM_RISCV_ENTRY_COMMON_H */
|