blob: e46e4e7bdba39974979b54ab137d13ba90f5d96d [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Will Deaconf81ef4a2010-09-03 10:41:08 +01002#ifndef _ARM_HW_BREAKPOINT_H
3#define _ARM_HW_BREAKPOINT_H
4
5#ifdef __KERNEL__
Will Deacon864232f2010-09-03 10:42:55 +01006
7struct task_struct;
8
9#ifdef CONFIG_HAVE_HW_BREAKPOINT
10
Will Deaconf81ef4a2010-09-03 10:41:08 +010011struct arch_hw_breakpoint_ctrl {
12 u32 __reserved : 9,
13 mismatch : 1,
14 : 9,
15 len : 8,
16 type : 2,
17 privilege : 2,
18 enabled : 1;
19};
20
21struct arch_hw_breakpoint {
22 u32 address;
23 u32 trigger;
Will Deacon9ebb3cb2010-12-01 14:12:13 +000024 struct arch_hw_breakpoint_ctrl step_ctrl;
25 struct arch_hw_breakpoint_ctrl ctrl;
Will Deaconf81ef4a2010-09-03 10:41:08 +010026};
27
28static inline u32 encode_ctrl_reg(struct arch_hw_breakpoint_ctrl ctrl)
29{
30 return (ctrl.mismatch << 22) | (ctrl.len << 5) | (ctrl.type << 3) |
31 (ctrl.privilege << 1) | ctrl.enabled;
32}
33
34static inline void decode_ctrl_reg(u32 reg,
35 struct arch_hw_breakpoint_ctrl *ctrl)
36{
37 ctrl->enabled = reg & 0x1;
38 reg >>= 1;
39 ctrl->privilege = reg & 0x3;
40 reg >>= 2;
41 ctrl->type = reg & 0x3;
42 reg >>= 2;
43 ctrl->len = reg & 0xff;
44 reg >>= 17;
45 ctrl->mismatch = reg & 0x1;
46}
47
48/* Debug architecture numbers. */
49#define ARM_DEBUG_ARCH_RESERVED 0 /* In case of ptrace ABI updates. */
50#define ARM_DEBUG_ARCH_V6 1
51#define ARM_DEBUG_ARCH_V6_1 2
52#define ARM_DEBUG_ARCH_V7_ECP14 3
53#define ARM_DEBUG_ARCH_V7_MM 4
Will Deaconb5d5b8f2011-07-22 18:27:37 +010054#define ARM_DEBUG_ARCH_V7_1 5
Christopher Covington5b61d4a2014-01-29 22:01:31 +010055#define ARM_DEBUG_ARCH_V8 6
Will Deaconf81ef4a2010-09-03 10:41:08 +010056
57/* Breakpoint */
58#define ARM_BREAKPOINT_EXECUTE 0
59
60/* Watchpoints */
61#define ARM_BREAKPOINT_LOAD 1
62#define ARM_BREAKPOINT_STORE 2
Will Deacon6f26aa02011-08-02 16:16:57 +010063#define ARM_FSR_ACCESS_MASK (1 << 11)
Will Deaconf81ef4a2010-09-03 10:41:08 +010064
65/* Privilege Levels */
66#define ARM_BREAKPOINT_PRIV 1
67#define ARM_BREAKPOINT_USER 2
68
69/* Lengths */
70#define ARM_BREAKPOINT_LEN_1 0x1
71#define ARM_BREAKPOINT_LEN_2 0x3
72#define ARM_BREAKPOINT_LEN_4 0xf
73#define ARM_BREAKPOINT_LEN_8 0xff
74
75/* Limits */
76#define ARM_MAX_BRP 16
77#define ARM_MAX_WRP 16
78#define ARM_MAX_HBP_SLOTS (ARM_MAX_BRP + ARM_MAX_WRP)
79
80/* DSCR method of entry bits. */
81#define ARM_DSCR_MOE(x) ((x >> 2) & 0xf)
82#define ARM_ENTRY_BREAKPOINT 0x1
83#define ARM_ENTRY_ASYNC_WATCHPOINT 0x2
84#define ARM_ENTRY_SYNC_WATCHPOINT 0xa
85
86/* DSCR monitor/halting bits. */
87#define ARM_DSCR_HDBGEN (1 << 14)
88#define ARM_DSCR_MDBGEN (1 << 15)
89
Dietmar Eggemann57ba8992012-10-14 21:08:14 +010090/* OSLSR os lock model bits */
91#define ARM_OSLSR_OSLM0 (1 << 0)
92
Will Deaconf81ef4a2010-09-03 10:41:08 +010093/* opcode2 numbers for the co-processor instructions. */
94#define ARM_OP2_BVR 4
95#define ARM_OP2_BCR 5
96#define ARM_OP2_WVR 6
97#define ARM_OP2_WCR 7
98
99/* Base register numbers for the debug registers. */
100#define ARM_BASE_BVR 64
101#define ARM_BASE_BCR 80
102#define ARM_BASE_WVR 96
103#define ARM_BASE_WCR 112
104
105/* Accessor macros for the debug registers. */
Dietmar Eggemann9e962f72012-09-26 17:28:47 +0100106#define ARM_DBG_READ(N, M, OP2, VAL) do {\
107 asm volatile("mrc p14, 0, %0, " #N "," #M ", " #OP2 : "=r" (VAL));\
Will Deaconf81ef4a2010-09-03 10:41:08 +0100108} while (0)
109
Dietmar Eggemann9e962f72012-09-26 17:28:47 +0100110#define ARM_DBG_WRITE(N, M, OP2, VAL) do {\
111 asm volatile("mcr p14, 0, %0, " #N "," #M ", " #OP2 : : "r" (VAL));\
Will Deaconf81ef4a2010-09-03 10:41:08 +0100112} while (0)
113
114struct notifier_block;
115struct perf_event;
116struct pmu;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100117
Will Deaconf81ef4a2010-09-03 10:41:08 +0100118extern int arch_bp_generic_fields(struct arch_hw_breakpoint_ctrl ctrl,
119 int *gen_len, int *gen_type);
120extern int arch_check_bp_in_kernelspace(struct perf_event *bp);
121extern int arch_validate_hwbkpt_settings(struct perf_event *bp);
122extern int hw_breakpoint_exceptions_notify(struct notifier_block *unused,
123 unsigned long val, void *data);
Will Deacon864232f2010-09-03 10:42:55 +0100124
Will Deaconf81ef4a2010-09-03 10:41:08 +0100125extern u8 arch_get_debug_arch(void);
126extern u8 arch_get_max_wp_len(void);
Will Deacon864232f2010-09-03 10:42:55 +0100127extern void clear_ptrace_hw_breakpoint(struct task_struct *tsk);
Will Deaconf81ef4a2010-09-03 10:41:08 +0100128
129int arch_install_hw_breakpoint(struct perf_event *bp);
130void arch_uninstall_hw_breakpoint(struct perf_event *bp);
131void hw_breakpoint_pmu_read(struct perf_event *bp);
132int hw_breakpoint_slots(int type);
133
Will Deacon864232f2010-09-03 10:42:55 +0100134#else
135static inline void clear_ptrace_hw_breakpoint(struct task_struct *tsk) {}
136
137#endif /* CONFIG_HAVE_HW_BREAKPOINT */
Will Deaconf81ef4a2010-09-03 10:41:08 +0100138#endif /* __KERNEL__ */
139#endif /* _ARM_HW_BREAKPOINT_H */