1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Copyright (C) 2012 Regents of the University of California
6 #ifndef _ASM_RISCV_BUG_H
7 #define _ASM_RISCV_BUG_H
9 #include <linux/compiler.h>
10 #include <linux/const.h>
11 #include <linux/types.h>
15 #define __INSN_LENGTH_MASK _UL(0x3)
16 #define __INSN_LENGTH_32 _UL(0x3)
17 #define __COMPRESSED_INSN_MASK _UL(0xffff)
19 #define __BUG_INSN_32 _UL(0x00100073) /* ebreak */
20 #define __BUG_INSN_16 _UL(0x9002) /* c.ebreak */
22 typedef u32 bug_insn_t
;
24 #ifdef CONFIG_GENERIC_BUG_RELATIVE_POINTERS
25 #define __BUG_ENTRY_ADDR RISCV_INT " 1b - 2b"
26 #define __BUG_ENTRY_FILE RISCV_INT " %0 - 2b"
28 #define __BUG_ENTRY_ADDR RISCV_PTR " 1b"
29 #define __BUG_ENTRY_FILE RISCV_PTR " %0"
32 #ifdef CONFIG_DEBUG_BUGVERBOSE
34 __BUG_ENTRY_ADDR "\n\t" \
35 __BUG_ENTRY_FILE "\n\t" \
36 RISCV_SHORT " %1\n\t" \
40 __BUG_ENTRY_ADDR "\n\t" \
44 #ifdef CONFIG_GENERIC_BUG
45 #define __BUG_FLAGS(flags) \
47 __asm__ __volatile__ ( \
50 ".pushsection __bug_table,\"aw\"\n\t" \
56 : "i" (__FILE__), "i" (__LINE__), \
58 "i" (sizeof(struct bug_entry))); \
60 #else /* CONFIG_GENERIC_BUG */
61 #define __BUG_FLAGS(flags) do { \
62 __asm__ __volatile__ ("ebreak\n"); \
64 #endif /* CONFIG_GENERIC_BUG */
71 #define __WARN_FLAGS(flags) __BUG_FLAGS(BUGFLAG_WARNING|(flags))
75 #include <asm-generic/bug.h>
80 void die(struct pt_regs
*regs
, const char *str
);
81 void do_trap(struct pt_regs
*regs
, int signo
, int code
, unsigned long addr
);
83 #endif /* _ASM_RISCV_BUG_H */