blob: 5879d71afdaa799b2bd18f038ee390e680390c4c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _SPARC64_KPROBES_H
2#define _SPARC64_KPROBES_H
3
Linus Torvalds1da177e2005-04-16 15:20:36 -07004#include <linux/types.h>
Ananth N Mavinakayanahallif215d982005-11-07 01:00:11 -08005#include <linux/percpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006
7typedef u32 kprobe_opcode_t;
8
9#define BREAKPOINT_INSTRUCTION 0x91d02070 /* ta 0x70 */
10#define BREAKPOINT_INSTRUCTION_2 0x91d02071 /* ta 0x71 */
11#define MAX_INSN_SIZE 2
12
Masami Hiramatsuf438d912007-10-16 01:27:49 -070013#define kretprobe_blacklist_size 0
14
Ananth N Mavinakayanahalli0498b632006-01-09 20:52:46 -080015#define arch_remove_kprobe(p) do {} while (0)
David S. Millerf0882582006-12-10 02:42:03 -080016
17#define flush_insn_slot(p) \
18do { flushi(&(p)->ainsn.insn[0]); \
19 flushi(&(p)->ainsn.insn[1]); \
20} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
David S. Millerd38f1222008-02-09 03:40:55 -080022void kretprobe_trampoline(void);
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024/* Architecture specific copy of original instruction*/
25struct arch_specific_insn {
26 /* copy of the original instruction */
27 kprobe_opcode_t insn[MAX_INSN_SIZE];
28};
29
Ananth N Mavinakayanahallif215d982005-11-07 01:00:11 -080030struct prev_kprobe {
31 struct kprobe *kp;
David S. Millerf0882582006-12-10 02:42:03 -080032 unsigned long status;
Ananth N Mavinakayanahallif215d982005-11-07 01:00:11 -080033 unsigned long orig_tnpc;
34 unsigned long orig_tstate_pil;
35};
36
37/* per-cpu kprobe control block */
38struct kprobe_ctlblk {
39 unsigned long kprobe_status;
40 unsigned long kprobe_orig_tnpc;
41 unsigned long kprobe_orig_tstate_pil;
Ananth N Mavinakayanahallif215d982005-11-07 01:00:11 -080042 struct pt_regs jprobe_saved_regs;
Ananth N Mavinakayanahallif215d982005-11-07 01:00:11 -080043 struct prev_kprobe prev_kprobe;
44};
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046extern int kprobe_exceptions_notify(struct notifier_block *self,
47 unsigned long val, void *data);
David S. Miller127cda12007-05-08 18:25:14 -070048extern int kprobe_fault_handler(struct pt_regs *regs, int trapnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#endif /* _SPARC64_KPROBES_H */