drm/panthor: Don't add write fences to the shared BOs
[drm/drm-misc.git] / arch / csky / kernel / probes / decode-insn.h
blob9c4ad48fee0d274bcd31715b5a502dce16869494
1 /* SPDX-License-Identifier: GPL-2.0+ */
3 #ifndef __CSKY_KERNEL_KPROBES_DECODE_INSN_H
4 #define __CSKY_KERNEL_KPROBES_DECODE_INSN_H
6 #include <asm/sections.h>
7 #include <asm/kprobes.h>
9 enum probe_insn {
10 INSN_REJECTED,
11 INSN_GOOD_NO_SLOT,
12 INSN_GOOD,
15 #define is_insn32(insn) ((insn & 0xc000) == 0xc000)
17 enum probe_insn __kprobes
18 csky_probe_decode_insn(probe_opcode_t *addr, struct arch_probe_insn *asi);
20 #endif /* __CSKY_KERNEL_KPROBES_DECODE_INSN_H */