WIP FPC-III support
[linux/fpc-iii.git] / arch / arm64 / include / asm / probes.h
blob006946745352ef348d1d9f1525edf230abeee911
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3 * arch/arm64/include/asm/probes.h
5 * Copyright (C) 2013 Linaro Limited
6 */
7 #ifndef _ARM_PROBES_H
8 #define _ARM_PROBES_H
10 #include <asm/insn.h>
12 typedef u32 probe_opcode_t;
13 typedef void (probes_handler_t) (u32 opcode, long addr, struct pt_regs *);
15 /* architecture specific copy of original instruction */
16 struct arch_probe_insn {
17 probe_opcode_t *insn;
18 pstate_check_t *pstate_cc;
19 probes_handler_t *handler;
20 /* restore address after step xol */
21 unsigned long restore;
23 #ifdef CONFIG_KPROBES
24 typedef u32 kprobe_opcode_t;
25 struct arch_specific_insn {
26 struct arch_probe_insn api;
28 #endif
30 #endif