Paul Mundt | 09a0729 | 2009-11-09 16:27:40 +0900 | [diff] [blame] | 1 | #ifndef __ASM_SH_HW_BREAKPOINT_H |
| 2 | #define __ASM_SH_HW_BREAKPOINT_H |
| 3 | |
David Howells | 0a9426d | 2012-10-09 09:47:37 +0100 | [diff] [blame] | 4 | #include <uapi/asm/hw_breakpoint.h> |
| 5 | |
Paul Mundt | 09a0729 | 2009-11-09 16:27:40 +0900 | [diff] [blame] | 6 | #define __ARCH_HW_BREAKPOINT_H |
| 7 | |
Paul Mundt | 31a090a | 2010-01-30 11:29:56 +0900 | [diff] [blame] | 8 | #include <linux/kdebug.h> |
| 9 | #include <linux/types.h> |
| 10 | |
Paul Mundt | 09a0729 | 2009-11-09 16:27:40 +0900 | [diff] [blame] | 11 | struct arch_hw_breakpoint { |
| 12 | char *name; /* Contains name of the symbol to set bkpt */ |
| 13 | unsigned long address; |
Paul Mundt | 09a0729 | 2009-11-09 16:27:40 +0900 | [diff] [blame] | 14 | u16 len; |
| 15 | u16 type; |
| 16 | }; |
| 17 | |
| 18 | enum { |
| 19 | SH_BREAKPOINT_READ = (1 << 1), |
| 20 | SH_BREAKPOINT_WRITE = (1 << 2), |
| 21 | SH_BREAKPOINT_RW = SH_BREAKPOINT_READ | SH_BREAKPOINT_WRITE, |
| 22 | |
| 23 | SH_BREAKPOINT_LEN_1 = (1 << 12), |
| 24 | SH_BREAKPOINT_LEN_2 = (1 << 13), |
| 25 | SH_BREAKPOINT_LEN_4 = SH_BREAKPOINT_LEN_1 | SH_BREAKPOINT_LEN_2, |
| 26 | SH_BREAKPOINT_LEN_8 = (1 << 14), |
| 27 | }; |
| 28 | |
Paul Mundt | 4352fc1 | 2010-01-05 19:06:45 +0900 | [diff] [blame] | 29 | struct sh_ubc { |
| 30 | const char *name; |
| 31 | unsigned int num_events; |
| 32 | unsigned int trap_nr; |
| 33 | void (*enable)(struct arch_hw_breakpoint *, int); |
| 34 | void (*disable)(struct arch_hw_breakpoint *, int); |
| 35 | void (*enable_all)(unsigned long); |
| 36 | void (*disable_all)(void); |
| 37 | unsigned long (*active_mask)(void); |
| 38 | unsigned long (*triggered_mask)(void); |
| 39 | void (*clear_triggered_mask)(unsigned long); |
| 40 | struct clk *clk; /* optional interface clock / MSTP bit */ |
| 41 | }; |
Paul Mundt | 09a0729 | 2009-11-09 16:27:40 +0900 | [diff] [blame] | 42 | |
| 43 | struct perf_event; |
| 44 | struct task_struct; |
| 45 | struct pmu; |
| 46 | |
Paul Mundt | 4352fc1 | 2010-01-05 19:06:45 +0900 | [diff] [blame] | 47 | /* Maximum number of UBC channels */ |
| 48 | #define HBP_NUM 2 |
| 49 | |
Frederic Weisbecker | feef47d | 2010-04-23 05:59:55 +0200 | [diff] [blame] | 50 | static inline int hw_breakpoint_slots(int type) |
| 51 | { |
| 52 | return HBP_NUM; |
| 53 | } |
| 54 | |
Paul Mundt | 4352fc1 | 2010-01-05 19:06:45 +0900 | [diff] [blame] | 55 | /* arch/sh/kernel/hw_breakpoint.c */ |
Frederic Weisbecker | b2812d0 | 2010-04-18 18:11:53 +0200 | [diff] [blame] | 56 | extern int arch_check_bp_in_kernelspace(struct perf_event *bp); |
| 57 | extern int arch_validate_hwbkpt_settings(struct perf_event *bp); |
Paul Mundt | 09a0729 | 2009-11-09 16:27:40 +0900 | [diff] [blame] | 58 | extern int hw_breakpoint_exceptions_notify(struct notifier_block *unused, |
| 59 | unsigned long val, void *data); |
| 60 | |
| 61 | int arch_install_hw_breakpoint(struct perf_event *bp); |
| 62 | void arch_uninstall_hw_breakpoint(struct perf_event *bp); |
| 63 | void hw_breakpoint_pmu_read(struct perf_event *bp); |
Paul Mundt | 09a0729 | 2009-11-09 16:27:40 +0900 | [diff] [blame] | 64 | |
| 65 | extern void arch_fill_perf_breakpoint(struct perf_event *bp); |
Paul Mundt | 4352fc1 | 2010-01-05 19:06:45 +0900 | [diff] [blame] | 66 | extern int register_sh_ubc(struct sh_ubc *); |
Paul Mundt | 09a0729 | 2009-11-09 16:27:40 +0900 | [diff] [blame] | 67 | |
| 68 | extern struct pmu perf_ops_bp; |
| 69 | |
Paul Mundt | 09a0729 | 2009-11-09 16:27:40 +0900 | [diff] [blame] | 70 | #endif /* __ASM_SH_HW_BREAKPOINT_H */ |