blob: 2c1b479d5aea9d34a3c666118ab0041d5f9ea334 [file] [log] [blame]
Vineet Gupta4d86dfb2013-01-22 17:03:59 +05301/*
2 * Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
8
9#ifndef _ARC_KPROBES_H
10#define _ARC_KPROBES_H
11
Luis R. Rodriguez7d134b22017-02-27 14:26:56 -080012#include <asm-generic/kprobes.h>
13
Vineet Gupta4d86dfb2013-01-22 17:03:59 +053014#ifdef CONFIG_KPROBES
15
16typedef u16 kprobe_opcode_t;
17
18#define UNIMP_S_INSTRUCTION 0x79e0
19#define TRAP_S_2_INSTRUCTION 0x785e
20
21#define MAX_INSN_SIZE 8
22#define MAX_STACK_SIZE 64
23
24struct arch_specific_insn {
25 int is_short;
26 kprobe_opcode_t *t1_addr, *t2_addr;
27 kprobe_opcode_t t1_opcode, t2_opcode;
28};
29
30#define flush_insn_slot(p) do { } while (0)
31
32#define kretprobe_blacklist_size 0
33
34struct kprobe;
35
36void arch_remove_kprobe(struct kprobe *p);
37
38int kprobe_exceptions_notify(struct notifier_block *self,
39 unsigned long val, void *data);
40
41struct prev_kprobe {
42 struct kprobe *kp;
43 unsigned long status;
44};
45
46struct kprobe_ctlblk {
47 unsigned int kprobe_status;
Vineet Gupta4d86dfb2013-01-22 17:03:59 +053048 struct prev_kprobe prev_kprobe;
49};
50
51int kprobe_fault_handler(struct pt_regs *regs, unsigned long cause);
52void kretprobe_trampoline(void);
Vineet Gupta38a9ff62013-06-12 15:13:40 +053053void trap_is_kprobe(unsigned long address, struct pt_regs *regs);
Vineet Gupta4d86dfb2013-01-22 17:03:59 +053054#else
Vineet Gupta4c6fabd2017-03-30 10:02:57 -070055#define trap_is_kprobe(address, regs)
Luis R. Rodriguez7d134b22017-02-27 14:26:56 -080056#endif /* CONFIG_KPROBES */
Vineet Gupta4d86dfb2013-01-22 17:03:59 +053057
Luis R. Rodriguez7d134b22017-02-27 14:26:56 -080058#endif /* _ARC_KPROBES_H */