blob: 7f6774dca5f49f778c434c055ab7355e3711a4c4 [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
Ananth N Mavinakayanahalli0498b632006-01-09 20:52:46 -080013#define arch_remove_kprobe(p) do {} while (0)
Anil S Keshavamurthye6f47f92006-06-26 00:25:29 -070014#define ARCH_INACTIVE_KPROBE_COUNT 0
David S. Millerf0882582006-12-10 02:42:03 -080015
16#define flush_insn_slot(p) \
17do { flushi(&(p)->ainsn.insn[0]); \
18 flushi(&(p)->ainsn.insn[1]); \
19} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
21/* Architecture specific copy of original instruction*/
22struct arch_specific_insn {
23 /* copy of the original instruction */
24 kprobe_opcode_t insn[MAX_INSN_SIZE];
25};
26
Ananth N Mavinakayanahallif215d982005-11-07 01:00:11 -080027struct prev_kprobe {
28 struct kprobe *kp;
David S. Millerf0882582006-12-10 02:42:03 -080029 unsigned long status;
Ananth N Mavinakayanahallif215d982005-11-07 01:00:11 -080030 unsigned long orig_tnpc;
31 unsigned long orig_tstate_pil;
32};
33
34/* per-cpu kprobe control block */
35struct kprobe_ctlblk {
36 unsigned long kprobe_status;
37 unsigned long kprobe_orig_tnpc;
38 unsigned long kprobe_orig_tstate_pil;
Ananth N Mavinakayanahallif215d982005-11-07 01:00:11 -080039 struct pt_regs jprobe_saved_regs;
Ananth N Mavinakayanahallif215d982005-11-07 01:00:11 -080040 struct prev_kprobe prev_kprobe;
41};
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043extern int kprobe_exceptions_notify(struct notifier_block *self,
44 unsigned long val, void *data);
David S. Miller127cda12007-05-08 18:25:14 -070045extern int kprobe_fault_handler(struct pt_regs *regs, int trapnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#endif /* _SPARC64_KPROBES_H */