xref: /openbmc/linux/arch/arm/kernel/hw_breakpoint.c (revision 6f26aa05c9edffff6a4c2cd71774bc659a5cceec)
1f81ef4a9SWill Deacon /*
2f81ef4a9SWill Deacon  * This program is free software; you can redistribute it and/or modify
3f81ef4a9SWill Deacon  * it under the terms of the GNU General Public License version 2 as
4f81ef4a9SWill Deacon  * published by the Free Software Foundation.
5f81ef4a9SWill Deacon  *
6f81ef4a9SWill Deacon  * This program is distributed in the hope that it will be useful,
7f81ef4a9SWill Deacon  * but WITHOUT ANY WARRANTY; without even the implied warranty of
8f81ef4a9SWill Deacon  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
9f81ef4a9SWill Deacon  * GNU General Public License for more details.
10f81ef4a9SWill Deacon  *
11f81ef4a9SWill Deacon  * You should have received a copy of the GNU General Public License
12f81ef4a9SWill Deacon  * along with this program; if not, write to the Free Software
13f81ef4a9SWill Deacon  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
14f81ef4a9SWill Deacon  *
15f81ef4a9SWill Deacon  * Copyright (C) 2009, 2010 ARM Limited
16f81ef4a9SWill Deacon  *
17f81ef4a9SWill Deacon  * Author: Will Deacon <will.deacon@arm.com>
18f81ef4a9SWill Deacon  */
19f81ef4a9SWill Deacon 
20f81ef4a9SWill Deacon /*
21f81ef4a9SWill Deacon  * HW_breakpoint: a unified kernel/user-space hardware breakpoint facility,
22f81ef4a9SWill Deacon  * using the CPU's debug registers.
23f81ef4a9SWill Deacon  */
24f81ef4a9SWill Deacon #define pr_fmt(fmt) "hw-breakpoint: " fmt
25f81ef4a9SWill Deacon 
26f81ef4a9SWill Deacon #include <linux/errno.h>
277e202696SWill Deacon #include <linux/hardirq.h>
28f81ef4a9SWill Deacon #include <linux/perf_event.h>
29f81ef4a9SWill Deacon #include <linux/hw_breakpoint.h>
30f81ef4a9SWill Deacon #include <linux/smp.h>
31f81ef4a9SWill Deacon 
32f81ef4a9SWill Deacon #include <asm/cacheflush.h>
33f81ef4a9SWill Deacon #include <asm/cputype.h>
34f81ef4a9SWill Deacon #include <asm/current.h>
35f81ef4a9SWill Deacon #include <asm/hw_breakpoint.h>
36f81ef4a9SWill Deacon #include <asm/kdebug.h>
37f81ef4a9SWill Deacon #include <asm/system.h>
38f81ef4a9SWill Deacon #include <asm/traps.h>
39f81ef4a9SWill Deacon 
40f81ef4a9SWill Deacon /* Breakpoint currently in use for each BRP. */
41f81ef4a9SWill Deacon static DEFINE_PER_CPU(struct perf_event *, bp_on_reg[ARM_MAX_BRP]);
42f81ef4a9SWill Deacon 
43f81ef4a9SWill Deacon /* Watchpoint currently in use for each WRP. */
44f81ef4a9SWill Deacon static DEFINE_PER_CPU(struct perf_event *, wp_on_reg[ARM_MAX_WRP]);
45f81ef4a9SWill Deacon 
46f81ef4a9SWill Deacon /* Number of BRP/WRP registers on this CPU. */
47f81ef4a9SWill Deacon static int core_num_brps;
48f81ef4a9SWill Deacon static int core_num_wrps;
49f81ef4a9SWill Deacon 
50f81ef4a9SWill Deacon /* Debug architecture version. */
51f81ef4a9SWill Deacon static u8 debug_arch;
52f81ef4a9SWill Deacon 
53f81ef4a9SWill Deacon /* Maximum supported watchpoint length. */
54f81ef4a9SWill Deacon static u8 max_watchpoint_len;
55f81ef4a9SWill Deacon 
56f81ef4a9SWill Deacon #define READ_WB_REG_CASE(OP2, M, VAL)		\
57f81ef4a9SWill Deacon 	case ((OP2 << 4) + M):			\
58f81ef4a9SWill Deacon 		ARM_DBG_READ(c ## M, OP2, VAL); \
59f81ef4a9SWill Deacon 		break
60f81ef4a9SWill Deacon 
61f81ef4a9SWill Deacon #define WRITE_WB_REG_CASE(OP2, M, VAL)		\
62f81ef4a9SWill Deacon 	case ((OP2 << 4) + M):			\
63f81ef4a9SWill Deacon 		ARM_DBG_WRITE(c ## M, OP2, VAL);\
64f81ef4a9SWill Deacon 		break
65f81ef4a9SWill Deacon 
66f81ef4a9SWill Deacon #define GEN_READ_WB_REG_CASES(OP2, VAL)		\
67f81ef4a9SWill Deacon 	READ_WB_REG_CASE(OP2, 0, VAL);		\
68f81ef4a9SWill Deacon 	READ_WB_REG_CASE(OP2, 1, VAL);		\
69f81ef4a9SWill Deacon 	READ_WB_REG_CASE(OP2, 2, VAL);		\
70f81ef4a9SWill Deacon 	READ_WB_REG_CASE(OP2, 3, VAL);		\
71f81ef4a9SWill Deacon 	READ_WB_REG_CASE(OP2, 4, VAL);		\
72f81ef4a9SWill Deacon 	READ_WB_REG_CASE(OP2, 5, VAL);		\
73f81ef4a9SWill Deacon 	READ_WB_REG_CASE(OP2, 6, VAL);		\
74f81ef4a9SWill Deacon 	READ_WB_REG_CASE(OP2, 7, VAL);		\
75f81ef4a9SWill Deacon 	READ_WB_REG_CASE(OP2, 8, VAL);		\
76f81ef4a9SWill Deacon 	READ_WB_REG_CASE(OP2, 9, VAL);		\
77f81ef4a9SWill Deacon 	READ_WB_REG_CASE(OP2, 10, VAL);		\
78f81ef4a9SWill Deacon 	READ_WB_REG_CASE(OP2, 11, VAL);		\
79f81ef4a9SWill Deacon 	READ_WB_REG_CASE(OP2, 12, VAL);		\
80f81ef4a9SWill Deacon 	READ_WB_REG_CASE(OP2, 13, VAL);		\
81f81ef4a9SWill Deacon 	READ_WB_REG_CASE(OP2, 14, VAL);		\
82f81ef4a9SWill Deacon 	READ_WB_REG_CASE(OP2, 15, VAL)
83f81ef4a9SWill Deacon 
84f81ef4a9SWill Deacon #define GEN_WRITE_WB_REG_CASES(OP2, VAL)	\
85f81ef4a9SWill Deacon 	WRITE_WB_REG_CASE(OP2, 0, VAL);		\
86f81ef4a9SWill Deacon 	WRITE_WB_REG_CASE(OP2, 1, VAL);		\
87f81ef4a9SWill Deacon 	WRITE_WB_REG_CASE(OP2, 2, VAL);		\
88f81ef4a9SWill Deacon 	WRITE_WB_REG_CASE(OP2, 3, VAL);		\
89f81ef4a9SWill Deacon 	WRITE_WB_REG_CASE(OP2, 4, VAL);		\
90f81ef4a9SWill Deacon 	WRITE_WB_REG_CASE(OP2, 5, VAL);		\
91f81ef4a9SWill Deacon 	WRITE_WB_REG_CASE(OP2, 6, VAL);		\
92f81ef4a9SWill Deacon 	WRITE_WB_REG_CASE(OP2, 7, VAL);		\
93f81ef4a9SWill Deacon 	WRITE_WB_REG_CASE(OP2, 8, VAL);		\
94f81ef4a9SWill Deacon 	WRITE_WB_REG_CASE(OP2, 9, VAL);		\
95f81ef4a9SWill Deacon 	WRITE_WB_REG_CASE(OP2, 10, VAL);	\
96f81ef4a9SWill Deacon 	WRITE_WB_REG_CASE(OP2, 11, VAL);	\
97f81ef4a9SWill Deacon 	WRITE_WB_REG_CASE(OP2, 12, VAL);	\
98f81ef4a9SWill Deacon 	WRITE_WB_REG_CASE(OP2, 13, VAL);	\
99f81ef4a9SWill Deacon 	WRITE_WB_REG_CASE(OP2, 14, VAL);	\
100f81ef4a9SWill Deacon 	WRITE_WB_REG_CASE(OP2, 15, VAL)
101f81ef4a9SWill Deacon 
102f81ef4a9SWill Deacon static u32 read_wb_reg(int n)
103f81ef4a9SWill Deacon {
104f81ef4a9SWill Deacon 	u32 val = 0;
105f81ef4a9SWill Deacon 
106f81ef4a9SWill Deacon 	switch (n) {
107f81ef4a9SWill Deacon 	GEN_READ_WB_REG_CASES(ARM_OP2_BVR, val);
108f81ef4a9SWill Deacon 	GEN_READ_WB_REG_CASES(ARM_OP2_BCR, val);
109f81ef4a9SWill Deacon 	GEN_READ_WB_REG_CASES(ARM_OP2_WVR, val);
110f81ef4a9SWill Deacon 	GEN_READ_WB_REG_CASES(ARM_OP2_WCR, val);
111f81ef4a9SWill Deacon 	default:
112f81ef4a9SWill Deacon 		pr_warning("attempt to read from unknown breakpoint "
113f81ef4a9SWill Deacon 				"register %d\n", n);
114f81ef4a9SWill Deacon 	}
115f81ef4a9SWill Deacon 
116f81ef4a9SWill Deacon 	return val;
117f81ef4a9SWill Deacon }
118f81ef4a9SWill Deacon 
119f81ef4a9SWill Deacon static void write_wb_reg(int n, u32 val)
120f81ef4a9SWill Deacon {
121f81ef4a9SWill Deacon 	switch (n) {
122f81ef4a9SWill Deacon 	GEN_WRITE_WB_REG_CASES(ARM_OP2_BVR, val);
123f81ef4a9SWill Deacon 	GEN_WRITE_WB_REG_CASES(ARM_OP2_BCR, val);
124f81ef4a9SWill Deacon 	GEN_WRITE_WB_REG_CASES(ARM_OP2_WVR, val);
125f81ef4a9SWill Deacon 	GEN_WRITE_WB_REG_CASES(ARM_OP2_WCR, val);
126f81ef4a9SWill Deacon 	default:
127f81ef4a9SWill Deacon 		pr_warning("attempt to write to unknown breakpoint "
128f81ef4a9SWill Deacon 				"register %d\n", n);
129f81ef4a9SWill Deacon 	}
130f81ef4a9SWill Deacon 	isb();
131f81ef4a9SWill Deacon }
132f81ef4a9SWill Deacon 
1330017ff42SWill Deacon /* Determine debug architecture. */
1340017ff42SWill Deacon static u8 get_debug_arch(void)
1350017ff42SWill Deacon {
1360017ff42SWill Deacon 	u32 didr;
1370017ff42SWill Deacon 
1380017ff42SWill Deacon 	/* Do we implement the extended CPUID interface? */
13966e1cfe6SWill Deacon 	if (WARN_ONCE((((read_cpuid_id() >> 16) & 0xf) != 0xf),
14066e1cfe6SWill Deacon 	    "CPUID feature registers not supported. "
14166e1cfe6SWill Deacon 	    "Assuming v6 debug is present.\n"))
1420017ff42SWill Deacon 		return ARM_DEBUG_ARCH_V6;
1430017ff42SWill Deacon 
1440017ff42SWill Deacon 	ARM_DBG_READ(c0, 0, didr);
1450017ff42SWill Deacon 	return (didr >> 16) & 0xf;
1460017ff42SWill Deacon }
1470017ff42SWill Deacon 
1480017ff42SWill Deacon u8 arch_get_debug_arch(void)
1490017ff42SWill Deacon {
1500017ff42SWill Deacon 	return debug_arch;
1510017ff42SWill Deacon }
1520017ff42SWill Deacon 
15366e1cfe6SWill Deacon static int debug_arch_supported(void)
15466e1cfe6SWill Deacon {
15566e1cfe6SWill Deacon 	u8 arch = get_debug_arch();
156b5d5b8f9SWill Deacon 
157b5d5b8f9SWill Deacon 	/* We don't support the memory-mapped interface. */
158b5d5b8f9SWill Deacon 	return (arch >= ARM_DEBUG_ARCH_V6 && arch <= ARM_DEBUG_ARCH_V7_ECP14) ||
159b5d5b8f9SWill Deacon 		arch >= ARM_DEBUG_ARCH_V7_1;
16066e1cfe6SWill Deacon }
16166e1cfe6SWill Deacon 
162c512de95SWill Deacon /* Determine number of WRP registers available. */
163c512de95SWill Deacon static int get_num_wrp_resources(void)
164c512de95SWill Deacon {
165c512de95SWill Deacon 	u32 didr;
166c512de95SWill Deacon 	ARM_DBG_READ(c0, 0, didr);
167c512de95SWill Deacon 	return ((didr >> 28) & 0xf) + 1;
168c512de95SWill Deacon }
169c512de95SWill Deacon 
170c512de95SWill Deacon /* Determine number of BRP registers available. */
1710017ff42SWill Deacon static int get_num_brp_resources(void)
1720017ff42SWill Deacon {
1730017ff42SWill Deacon 	u32 didr;
1740017ff42SWill Deacon 	ARM_DBG_READ(c0, 0, didr);
1750017ff42SWill Deacon 	return ((didr >> 24) & 0xf) + 1;
1760017ff42SWill Deacon }
1770017ff42SWill Deacon 
1780017ff42SWill Deacon /* Does this core support mismatch breakpoints? */
1790017ff42SWill Deacon static int core_has_mismatch_brps(void)
1800017ff42SWill Deacon {
1810017ff42SWill Deacon 	return (get_debug_arch() >= ARM_DEBUG_ARCH_V7_ECP14 &&
1820017ff42SWill Deacon 		get_num_brp_resources() > 1);
1830017ff42SWill Deacon }
1840017ff42SWill Deacon 
1850017ff42SWill Deacon /* Determine number of usable WRPs available. */
1860017ff42SWill Deacon static int get_num_wrps(void)
1870017ff42SWill Deacon {
1880017ff42SWill Deacon 	/*
189c512de95SWill Deacon 	 * On debug architectures prior to 7.1, when a watchpoint fires, the
190c512de95SWill Deacon 	 * only way to work out which watchpoint it was is by disassembling
191c512de95SWill Deacon 	 * the faulting instruction and working out the address of the memory
192c512de95SWill Deacon 	 * access.
1930017ff42SWill Deacon 	 *
1940017ff42SWill Deacon 	 * Furthermore, we can only do this if the watchpoint was precise
1950017ff42SWill Deacon 	 * since imprecise watchpoints prevent us from calculating register
1960017ff42SWill Deacon 	 * based addresses.
1970017ff42SWill Deacon 	 *
1980017ff42SWill Deacon 	 * Providing we have more than 1 breakpoint register, we only report
1990017ff42SWill Deacon 	 * a single watchpoint register for the time being. This way, we always
2000017ff42SWill Deacon 	 * know which watchpoint fired. In the future we can either add a
2010017ff42SWill Deacon 	 * disassembler and address generation emulator, or we can insert a
2020017ff42SWill Deacon 	 * check to see if the DFAR is set on watchpoint exception entry
2030017ff42SWill Deacon 	 * [the ARM ARM states that the DFAR is UNKNOWN, but experience shows
2040017ff42SWill Deacon 	 * that it is set on some implementations].
2050017ff42SWill Deacon 	 */
206c512de95SWill Deacon 	if (get_debug_arch() < ARM_DEBUG_ARCH_V7_1)
207c512de95SWill Deacon 		return 1;
2080017ff42SWill Deacon 
209c512de95SWill Deacon 	return get_num_wrp_resources();
2100017ff42SWill Deacon }
2110017ff42SWill Deacon 
2120017ff42SWill Deacon /* Determine number of usable BRPs available. */
2130017ff42SWill Deacon static int get_num_brps(void)
2140017ff42SWill Deacon {
2150017ff42SWill Deacon 	int brps = get_num_brp_resources();
216c512de95SWill Deacon 	return core_has_mismatch_brps() ? brps - 1 : brps;
2170017ff42SWill Deacon }
2180017ff42SWill Deacon 
219f81ef4a9SWill Deacon /*
220f81ef4a9SWill Deacon  * In order to access the breakpoint/watchpoint control registers,
221f81ef4a9SWill Deacon  * we must be running in debug monitor mode. Unfortunately, we can
222f81ef4a9SWill Deacon  * be put into halting debug mode at any time by an external debugger
223f81ef4a9SWill Deacon  * but there is nothing we can do to prevent that.
224f81ef4a9SWill Deacon  */
225f81ef4a9SWill Deacon static int enable_monitor_mode(void)
226f81ef4a9SWill Deacon {
227f81ef4a9SWill Deacon 	u32 dscr;
228f81ef4a9SWill Deacon 	int ret = 0;
229f81ef4a9SWill Deacon 
230f81ef4a9SWill Deacon 	ARM_DBG_READ(c1, 0, dscr);
231f81ef4a9SWill Deacon 
232f81ef4a9SWill Deacon 	/* Ensure that halting mode is disabled. */
2337d85d61fSStephen Boyd 	if (WARN_ONCE(dscr & ARM_DSCR_HDBGEN,
2347d85d61fSStephen Boyd 			"halting debug mode enabled. Unable to access hardware resources.\n")) {
235f81ef4a9SWill Deacon 		ret = -EPERM;
236f81ef4a9SWill Deacon 		goto out;
237f81ef4a9SWill Deacon 	}
238f81ef4a9SWill Deacon 
2398fbf397cSWill Deacon 	/* If monitor mode is already enabled, just return. */
2408fbf397cSWill Deacon 	if (dscr & ARM_DSCR_MDBGEN)
2418fbf397cSWill Deacon 		goto out;
2428fbf397cSWill Deacon 
243f81ef4a9SWill Deacon 	/* Write to the corresponding DSCR. */
2448fbf397cSWill Deacon 	switch (get_debug_arch()) {
245f81ef4a9SWill Deacon 	case ARM_DEBUG_ARCH_V6:
246f81ef4a9SWill Deacon 	case ARM_DEBUG_ARCH_V6_1:
247f81ef4a9SWill Deacon 		ARM_DBG_WRITE(c1, 0, (dscr | ARM_DSCR_MDBGEN));
248f81ef4a9SWill Deacon 		break;
249f81ef4a9SWill Deacon 	case ARM_DEBUG_ARCH_V7_ECP14:
250b5d5b8f9SWill Deacon 	case ARM_DEBUG_ARCH_V7_1:
251f81ef4a9SWill Deacon 		ARM_DBG_WRITE(c2, 2, (dscr | ARM_DSCR_MDBGEN));
252f81ef4a9SWill Deacon 		break;
253f81ef4a9SWill Deacon 	default:
254f81ef4a9SWill Deacon 		ret = -ENODEV;
255f81ef4a9SWill Deacon 		goto out;
256f81ef4a9SWill Deacon 	}
257f81ef4a9SWill Deacon 
258f81ef4a9SWill Deacon 	/* Check that the write made it through. */
259f81ef4a9SWill Deacon 	ARM_DBG_READ(c1, 0, dscr);
2608fbf397cSWill Deacon 	if (!(dscr & ARM_DSCR_MDBGEN))
261f81ef4a9SWill Deacon 		ret = -EPERM;
262f81ef4a9SWill Deacon 
263f81ef4a9SWill Deacon out:
264f81ef4a9SWill Deacon 	return ret;
265f81ef4a9SWill Deacon }
266f81ef4a9SWill Deacon 
2678fbf397cSWill Deacon int hw_breakpoint_slots(int type)
2688fbf397cSWill Deacon {
26966e1cfe6SWill Deacon 	if (!debug_arch_supported())
27066e1cfe6SWill Deacon 		return 0;
27166e1cfe6SWill Deacon 
2728fbf397cSWill Deacon 	/*
2738fbf397cSWill Deacon 	 * We can be called early, so don't rely on
2748fbf397cSWill Deacon 	 * our static variables being initialised.
2758fbf397cSWill Deacon 	 */
2768fbf397cSWill Deacon 	switch (type) {
2778fbf397cSWill Deacon 	case TYPE_INST:
2788fbf397cSWill Deacon 		return get_num_brps();
2798fbf397cSWill Deacon 	case TYPE_DATA:
2808fbf397cSWill Deacon 		return get_num_wrps();
2818fbf397cSWill Deacon 	default:
2828fbf397cSWill Deacon 		pr_warning("unknown slot type: %d\n", type);
2838fbf397cSWill Deacon 		return 0;
2848fbf397cSWill Deacon 	}
2858fbf397cSWill Deacon }
2868fbf397cSWill Deacon 
287f81ef4a9SWill Deacon /*
288f81ef4a9SWill Deacon  * Check if 8-bit byte-address select is available.
289f81ef4a9SWill Deacon  * This clobbers WRP 0.
290f81ef4a9SWill Deacon  */
291f81ef4a9SWill Deacon static u8 get_max_wp_len(void)
292f81ef4a9SWill Deacon {
293f81ef4a9SWill Deacon 	u32 ctrl_reg;
294f81ef4a9SWill Deacon 	struct arch_hw_breakpoint_ctrl ctrl;
295f81ef4a9SWill Deacon 	u8 size = 4;
296f81ef4a9SWill Deacon 
297f81ef4a9SWill Deacon 	if (debug_arch < ARM_DEBUG_ARCH_V7_ECP14)
298f81ef4a9SWill Deacon 		goto out;
299f81ef4a9SWill Deacon 
300f81ef4a9SWill Deacon 	memset(&ctrl, 0, sizeof(ctrl));
301f81ef4a9SWill Deacon 	ctrl.len = ARM_BREAKPOINT_LEN_8;
302f81ef4a9SWill Deacon 	ctrl_reg = encode_ctrl_reg(ctrl);
303f81ef4a9SWill Deacon 
304f81ef4a9SWill Deacon 	write_wb_reg(ARM_BASE_WVR, 0);
305f81ef4a9SWill Deacon 	write_wb_reg(ARM_BASE_WCR, ctrl_reg);
306f81ef4a9SWill Deacon 	if ((read_wb_reg(ARM_BASE_WCR) & ctrl_reg) == ctrl_reg)
307f81ef4a9SWill Deacon 		size = 8;
308f81ef4a9SWill Deacon 
309f81ef4a9SWill Deacon out:
310f81ef4a9SWill Deacon 	return size;
311f81ef4a9SWill Deacon }
312f81ef4a9SWill Deacon 
313f81ef4a9SWill Deacon u8 arch_get_max_wp_len(void)
314f81ef4a9SWill Deacon {
315f81ef4a9SWill Deacon 	return max_watchpoint_len;
316f81ef4a9SWill Deacon }
317f81ef4a9SWill Deacon 
318f81ef4a9SWill Deacon /*
319f81ef4a9SWill Deacon  * Install a perf counter breakpoint.
320f81ef4a9SWill Deacon  */
321f81ef4a9SWill Deacon int arch_install_hw_breakpoint(struct perf_event *bp)
322f81ef4a9SWill Deacon {
323f81ef4a9SWill Deacon 	struct arch_hw_breakpoint *info = counter_arch_bp(bp);
324f81ef4a9SWill Deacon 	struct perf_event **slot, **slots;
325f81ef4a9SWill Deacon 	int i, max_slots, ctrl_base, val_base, ret = 0;
32693a04a34SWill Deacon 	u32 addr, ctrl;
327f81ef4a9SWill Deacon 
328f81ef4a9SWill Deacon 	/* Ensure that we are in monitor mode and halting mode is disabled. */
329f81ef4a9SWill Deacon 	ret = enable_monitor_mode();
330f81ef4a9SWill Deacon 	if (ret)
331f81ef4a9SWill Deacon 		goto out;
332f81ef4a9SWill Deacon 
33393a04a34SWill Deacon 	addr = info->address;
33493a04a34SWill Deacon 	ctrl = encode_ctrl_reg(info->ctrl) | 0x1;
33593a04a34SWill Deacon 
336f81ef4a9SWill Deacon 	if (info->ctrl.type == ARM_BREAKPOINT_EXECUTE) {
337f81ef4a9SWill Deacon 		/* Breakpoint */
338f81ef4a9SWill Deacon 		ctrl_base = ARM_BASE_BCR;
339f81ef4a9SWill Deacon 		val_base = ARM_BASE_BVR;
3404a55c18eSWill Deacon 		slots = (struct perf_event **)__get_cpu_var(bp_on_reg);
3410017ff42SWill Deacon 		max_slots = core_num_brps;
342f81ef4a9SWill Deacon 	} else {
343f81ef4a9SWill Deacon 		/* Watchpoint */
344f81ef4a9SWill Deacon 		ctrl_base = ARM_BASE_WCR;
345f81ef4a9SWill Deacon 		val_base = ARM_BASE_WVR;
3464a55c18eSWill Deacon 		slots = (struct perf_event **)__get_cpu_var(wp_on_reg);
347f81ef4a9SWill Deacon 		max_slots = core_num_wrps;
348f81ef4a9SWill Deacon 	}
349f81ef4a9SWill Deacon 
350f81ef4a9SWill Deacon 	for (i = 0; i < max_slots; ++i) {
351f81ef4a9SWill Deacon 		slot = &slots[i];
352f81ef4a9SWill Deacon 
353f81ef4a9SWill Deacon 		if (!*slot) {
354f81ef4a9SWill Deacon 			*slot = bp;
355f81ef4a9SWill Deacon 			break;
356f81ef4a9SWill Deacon 		}
357f81ef4a9SWill Deacon 	}
358f81ef4a9SWill Deacon 
3597d85d61fSStephen Boyd 	if (WARN_ONCE(i == max_slots, "Can't find any breakpoint slot\n")) {
360f81ef4a9SWill Deacon 		ret = -EBUSY;
361f81ef4a9SWill Deacon 		goto out;
362f81ef4a9SWill Deacon 	}
363f81ef4a9SWill Deacon 
364*6f26aa05SWill Deacon 	/* Override the breakpoint data with the step data. */
365*6f26aa05SWill Deacon 	if (info->step_ctrl.enabled) {
366*6f26aa05SWill Deacon 		addr = info->trigger & ~0x3;
367*6f26aa05SWill Deacon 		ctrl = encode_ctrl_reg(info->step_ctrl);
368*6f26aa05SWill Deacon 		if (info->ctrl.type != ARM_BREAKPOINT_EXECUTE) {
369*6f26aa05SWill Deacon 			i = 0;
370*6f26aa05SWill Deacon 			ctrl_base = ARM_BASE_BCR + core_num_brps;
371*6f26aa05SWill Deacon 			val_base = ARM_BASE_BVR + core_num_brps;
372*6f26aa05SWill Deacon 		}
373*6f26aa05SWill Deacon 	}
374*6f26aa05SWill Deacon 
375f81ef4a9SWill Deacon 	/* Setup the address register. */
37693a04a34SWill Deacon 	write_wb_reg(val_base + i, addr);
377f81ef4a9SWill Deacon 
378f81ef4a9SWill Deacon 	/* Setup the control register. */
37993a04a34SWill Deacon 	write_wb_reg(ctrl_base + i, ctrl);
380f81ef4a9SWill Deacon 
381f81ef4a9SWill Deacon out:
382f81ef4a9SWill Deacon 	return ret;
383f81ef4a9SWill Deacon }
384f81ef4a9SWill Deacon 
385f81ef4a9SWill Deacon void arch_uninstall_hw_breakpoint(struct perf_event *bp)
386f81ef4a9SWill Deacon {
387f81ef4a9SWill Deacon 	struct arch_hw_breakpoint *info = counter_arch_bp(bp);
388f81ef4a9SWill Deacon 	struct perf_event **slot, **slots;
389f81ef4a9SWill Deacon 	int i, max_slots, base;
390f81ef4a9SWill Deacon 
391f81ef4a9SWill Deacon 	if (info->ctrl.type == ARM_BREAKPOINT_EXECUTE) {
392f81ef4a9SWill Deacon 		/* Breakpoint */
393f81ef4a9SWill Deacon 		base = ARM_BASE_BCR;
3944a55c18eSWill Deacon 		slots = (struct perf_event **)__get_cpu_var(bp_on_reg);
3950017ff42SWill Deacon 		max_slots = core_num_brps;
396f81ef4a9SWill Deacon 	} else {
397f81ef4a9SWill Deacon 		/* Watchpoint */
398f81ef4a9SWill Deacon 		base = ARM_BASE_WCR;
3994a55c18eSWill Deacon 		slots = (struct perf_event **)__get_cpu_var(wp_on_reg);
400f81ef4a9SWill Deacon 		max_slots = core_num_wrps;
401f81ef4a9SWill Deacon 	}
402f81ef4a9SWill Deacon 
403f81ef4a9SWill Deacon 	/* Remove the breakpoint. */
404f81ef4a9SWill Deacon 	for (i = 0; i < max_slots; ++i) {
405f81ef4a9SWill Deacon 		slot = &slots[i];
406f81ef4a9SWill Deacon 
407f81ef4a9SWill Deacon 		if (*slot == bp) {
408f81ef4a9SWill Deacon 			*slot = NULL;
409f81ef4a9SWill Deacon 			break;
410f81ef4a9SWill Deacon 		}
411f81ef4a9SWill Deacon 	}
412f81ef4a9SWill Deacon 
4137d85d61fSStephen Boyd 	if (WARN_ONCE(i == max_slots, "Can't find any breakpoint slot\n"))
414f81ef4a9SWill Deacon 		return;
415f81ef4a9SWill Deacon 
416*6f26aa05SWill Deacon 	/* Ensure that we disable the mismatch breakpoint. */
417*6f26aa05SWill Deacon 	if (info->ctrl.type != ARM_BREAKPOINT_EXECUTE &&
418*6f26aa05SWill Deacon 	    info->step_ctrl.enabled) {
419*6f26aa05SWill Deacon 		i = 0;
420*6f26aa05SWill Deacon 		base = ARM_BASE_BCR + core_num_brps;
421*6f26aa05SWill Deacon 	}
422*6f26aa05SWill Deacon 
423f81ef4a9SWill Deacon 	/* Reset the control register. */
424f81ef4a9SWill Deacon 	write_wb_reg(base + i, 0);
425f81ef4a9SWill Deacon }
426f81ef4a9SWill Deacon 
427f81ef4a9SWill Deacon static int get_hbp_len(u8 hbp_len)
428f81ef4a9SWill Deacon {
429f81ef4a9SWill Deacon 	unsigned int len_in_bytes = 0;
430f81ef4a9SWill Deacon 
431f81ef4a9SWill Deacon 	switch (hbp_len) {
432f81ef4a9SWill Deacon 	case ARM_BREAKPOINT_LEN_1:
433f81ef4a9SWill Deacon 		len_in_bytes = 1;
434f81ef4a9SWill Deacon 		break;
435f81ef4a9SWill Deacon 	case ARM_BREAKPOINT_LEN_2:
436f81ef4a9SWill Deacon 		len_in_bytes = 2;
437f81ef4a9SWill Deacon 		break;
438f81ef4a9SWill Deacon 	case ARM_BREAKPOINT_LEN_4:
439f81ef4a9SWill Deacon 		len_in_bytes = 4;
440f81ef4a9SWill Deacon 		break;
441f81ef4a9SWill Deacon 	case ARM_BREAKPOINT_LEN_8:
442f81ef4a9SWill Deacon 		len_in_bytes = 8;
443f81ef4a9SWill Deacon 		break;
444f81ef4a9SWill Deacon 	}
445f81ef4a9SWill Deacon 
446f81ef4a9SWill Deacon 	return len_in_bytes;
447f81ef4a9SWill Deacon }
448f81ef4a9SWill Deacon 
449f81ef4a9SWill Deacon /*
450f81ef4a9SWill Deacon  * Check whether bp virtual address is in kernel space.
451f81ef4a9SWill Deacon  */
452f81ef4a9SWill Deacon int arch_check_bp_in_kernelspace(struct perf_event *bp)
453f81ef4a9SWill Deacon {
454f81ef4a9SWill Deacon 	unsigned int len;
455f81ef4a9SWill Deacon 	unsigned long va;
456f81ef4a9SWill Deacon 	struct arch_hw_breakpoint *info = counter_arch_bp(bp);
457f81ef4a9SWill Deacon 
458f81ef4a9SWill Deacon 	va = info->address;
459f81ef4a9SWill Deacon 	len = get_hbp_len(info->ctrl.len);
460f81ef4a9SWill Deacon 
461f81ef4a9SWill Deacon 	return (va >= TASK_SIZE) && ((va + len - 1) >= TASK_SIZE);
462f81ef4a9SWill Deacon }
463f81ef4a9SWill Deacon 
464f81ef4a9SWill Deacon /*
465f81ef4a9SWill Deacon  * Extract generic type and length encodings from an arch_hw_breakpoint_ctrl.
466f81ef4a9SWill Deacon  * Hopefully this will disappear when ptrace can bypass the conversion
467f81ef4a9SWill Deacon  * to generic breakpoint descriptions.
468f81ef4a9SWill Deacon  */
469f81ef4a9SWill Deacon int arch_bp_generic_fields(struct arch_hw_breakpoint_ctrl ctrl,
470f81ef4a9SWill Deacon 			   int *gen_len, int *gen_type)
471f81ef4a9SWill Deacon {
472f81ef4a9SWill Deacon 	/* Type */
473f81ef4a9SWill Deacon 	switch (ctrl.type) {
474f81ef4a9SWill Deacon 	case ARM_BREAKPOINT_EXECUTE:
475f81ef4a9SWill Deacon 		*gen_type = HW_BREAKPOINT_X;
476f81ef4a9SWill Deacon 		break;
477f81ef4a9SWill Deacon 	case ARM_BREAKPOINT_LOAD:
478f81ef4a9SWill Deacon 		*gen_type = HW_BREAKPOINT_R;
479f81ef4a9SWill Deacon 		break;
480f81ef4a9SWill Deacon 	case ARM_BREAKPOINT_STORE:
481f81ef4a9SWill Deacon 		*gen_type = HW_BREAKPOINT_W;
482f81ef4a9SWill Deacon 		break;
483f81ef4a9SWill Deacon 	case ARM_BREAKPOINT_LOAD | ARM_BREAKPOINT_STORE:
484f81ef4a9SWill Deacon 		*gen_type = HW_BREAKPOINT_RW;
485f81ef4a9SWill Deacon 		break;
486f81ef4a9SWill Deacon 	default:
487f81ef4a9SWill Deacon 		return -EINVAL;
488f81ef4a9SWill Deacon 	}
489f81ef4a9SWill Deacon 
490f81ef4a9SWill Deacon 	/* Len */
491f81ef4a9SWill Deacon 	switch (ctrl.len) {
492f81ef4a9SWill Deacon 	case ARM_BREAKPOINT_LEN_1:
493f81ef4a9SWill Deacon 		*gen_len = HW_BREAKPOINT_LEN_1;
494f81ef4a9SWill Deacon 		break;
495f81ef4a9SWill Deacon 	case ARM_BREAKPOINT_LEN_2:
496f81ef4a9SWill Deacon 		*gen_len = HW_BREAKPOINT_LEN_2;
497f81ef4a9SWill Deacon 		break;
498f81ef4a9SWill Deacon 	case ARM_BREAKPOINT_LEN_4:
499f81ef4a9SWill Deacon 		*gen_len = HW_BREAKPOINT_LEN_4;
500f81ef4a9SWill Deacon 		break;
501f81ef4a9SWill Deacon 	case ARM_BREAKPOINT_LEN_8:
502f81ef4a9SWill Deacon 		*gen_len = HW_BREAKPOINT_LEN_8;
503f81ef4a9SWill Deacon 		break;
504f81ef4a9SWill Deacon 	default:
505f81ef4a9SWill Deacon 		return -EINVAL;
506f81ef4a9SWill Deacon 	}
507f81ef4a9SWill Deacon 
508f81ef4a9SWill Deacon 	return 0;
509f81ef4a9SWill Deacon }
510f81ef4a9SWill Deacon 
511f81ef4a9SWill Deacon /*
512f81ef4a9SWill Deacon  * Construct an arch_hw_breakpoint from a perf_event.
513f81ef4a9SWill Deacon  */
514f81ef4a9SWill Deacon static int arch_build_bp_info(struct perf_event *bp)
515f81ef4a9SWill Deacon {
516f81ef4a9SWill Deacon 	struct arch_hw_breakpoint *info = counter_arch_bp(bp);
517f81ef4a9SWill Deacon 
518f81ef4a9SWill Deacon 	/* Type */
519f81ef4a9SWill Deacon 	switch (bp->attr.bp_type) {
520f81ef4a9SWill Deacon 	case HW_BREAKPOINT_X:
521f81ef4a9SWill Deacon 		info->ctrl.type = ARM_BREAKPOINT_EXECUTE;
522f81ef4a9SWill Deacon 		break;
523f81ef4a9SWill Deacon 	case HW_BREAKPOINT_R:
524f81ef4a9SWill Deacon 		info->ctrl.type = ARM_BREAKPOINT_LOAD;
525f81ef4a9SWill Deacon 		break;
526f81ef4a9SWill Deacon 	case HW_BREAKPOINT_W:
527f81ef4a9SWill Deacon 		info->ctrl.type = ARM_BREAKPOINT_STORE;
528f81ef4a9SWill Deacon 		break;
529f81ef4a9SWill Deacon 	case HW_BREAKPOINT_RW:
530f81ef4a9SWill Deacon 		info->ctrl.type = ARM_BREAKPOINT_LOAD | ARM_BREAKPOINT_STORE;
531f81ef4a9SWill Deacon 		break;
532f81ef4a9SWill Deacon 	default:
533f81ef4a9SWill Deacon 		return -EINVAL;
534f81ef4a9SWill Deacon 	}
535f81ef4a9SWill Deacon 
536f81ef4a9SWill Deacon 	/* Len */
537f81ef4a9SWill Deacon 	switch (bp->attr.bp_len) {
538f81ef4a9SWill Deacon 	case HW_BREAKPOINT_LEN_1:
539f81ef4a9SWill Deacon 		info->ctrl.len = ARM_BREAKPOINT_LEN_1;
540f81ef4a9SWill Deacon 		break;
541f81ef4a9SWill Deacon 	case HW_BREAKPOINT_LEN_2:
542f81ef4a9SWill Deacon 		info->ctrl.len = ARM_BREAKPOINT_LEN_2;
543f81ef4a9SWill Deacon 		break;
544f81ef4a9SWill Deacon 	case HW_BREAKPOINT_LEN_4:
545f81ef4a9SWill Deacon 		info->ctrl.len = ARM_BREAKPOINT_LEN_4;
546f81ef4a9SWill Deacon 		break;
547f81ef4a9SWill Deacon 	case HW_BREAKPOINT_LEN_8:
548f81ef4a9SWill Deacon 		info->ctrl.len = ARM_BREAKPOINT_LEN_8;
549f81ef4a9SWill Deacon 		if ((info->ctrl.type != ARM_BREAKPOINT_EXECUTE)
550f81ef4a9SWill Deacon 			&& max_watchpoint_len >= 8)
551f81ef4a9SWill Deacon 			break;
552f81ef4a9SWill Deacon 	default:
553f81ef4a9SWill Deacon 		return -EINVAL;
554f81ef4a9SWill Deacon 	}
555f81ef4a9SWill Deacon 
5566ee33c27SWill Deacon 	/*
5576ee33c27SWill Deacon 	 * Breakpoints must be of length 2 (thumb) or 4 (ARM) bytes.
5586ee33c27SWill Deacon 	 * Watchpoints can be of length 1, 2, 4 or 8 bytes if supported
5596ee33c27SWill Deacon 	 * by the hardware and must be aligned to the appropriate number of
5606ee33c27SWill Deacon 	 * bytes.
5616ee33c27SWill Deacon 	 */
5626ee33c27SWill Deacon 	if (info->ctrl.type == ARM_BREAKPOINT_EXECUTE &&
5636ee33c27SWill Deacon 	    info->ctrl.len != ARM_BREAKPOINT_LEN_2 &&
5646ee33c27SWill Deacon 	    info->ctrl.len != ARM_BREAKPOINT_LEN_4)
5656ee33c27SWill Deacon 		return -EINVAL;
5666ee33c27SWill Deacon 
567f81ef4a9SWill Deacon 	/* Address */
568f81ef4a9SWill Deacon 	info->address = bp->attr.bp_addr;
569f81ef4a9SWill Deacon 
570f81ef4a9SWill Deacon 	/* Privilege */
571f81ef4a9SWill Deacon 	info->ctrl.privilege = ARM_BREAKPOINT_USER;
57293a04a34SWill Deacon 	if (arch_check_bp_in_kernelspace(bp))
573f81ef4a9SWill Deacon 		info->ctrl.privilege |= ARM_BREAKPOINT_PRIV;
574f81ef4a9SWill Deacon 
575f81ef4a9SWill Deacon 	/* Enabled? */
576f81ef4a9SWill Deacon 	info->ctrl.enabled = !bp->attr.disabled;
577f81ef4a9SWill Deacon 
578f81ef4a9SWill Deacon 	/* Mismatch */
579f81ef4a9SWill Deacon 	info->ctrl.mismatch = 0;
580f81ef4a9SWill Deacon 
581f81ef4a9SWill Deacon 	return 0;
582f81ef4a9SWill Deacon }
583f81ef4a9SWill Deacon 
584f81ef4a9SWill Deacon /*
585f81ef4a9SWill Deacon  * Validate the arch-specific HW Breakpoint register settings.
586f81ef4a9SWill Deacon  */
587f81ef4a9SWill Deacon int arch_validate_hwbkpt_settings(struct perf_event *bp)
588f81ef4a9SWill Deacon {
589f81ef4a9SWill Deacon 	struct arch_hw_breakpoint *info = counter_arch_bp(bp);
590f81ef4a9SWill Deacon 	int ret = 0;
5916ee33c27SWill Deacon 	u32 offset, alignment_mask = 0x3;
592f81ef4a9SWill Deacon 
593f81ef4a9SWill Deacon 	/* Build the arch_hw_breakpoint. */
594f81ef4a9SWill Deacon 	ret = arch_build_bp_info(bp);
595f81ef4a9SWill Deacon 	if (ret)
596f81ef4a9SWill Deacon 		goto out;
597f81ef4a9SWill Deacon 
598f81ef4a9SWill Deacon 	/* Check address alignment. */
599f81ef4a9SWill Deacon 	if (info->ctrl.len == ARM_BREAKPOINT_LEN_8)
600f81ef4a9SWill Deacon 		alignment_mask = 0x7;
6016ee33c27SWill Deacon 	offset = info->address & alignment_mask;
6026ee33c27SWill Deacon 	switch (offset) {
6036ee33c27SWill Deacon 	case 0:
6046ee33c27SWill Deacon 		/* Aligned */
6056ee33c27SWill Deacon 		break;
6066ee33c27SWill Deacon 	case 1:
6076ee33c27SWill Deacon 		/* Allow single byte watchpoint. */
6086ee33c27SWill Deacon 		if (info->ctrl.len == ARM_BREAKPOINT_LEN_1)
6096ee33c27SWill Deacon 			break;
6106ee33c27SWill Deacon 	case 2:
6116ee33c27SWill Deacon 		/* Allow halfword watchpoints and breakpoints. */
6126ee33c27SWill Deacon 		if (info->ctrl.len == ARM_BREAKPOINT_LEN_2)
6136ee33c27SWill Deacon 			break;
6146ee33c27SWill Deacon 	default:
6156ee33c27SWill Deacon 		ret = -EINVAL;
616f81ef4a9SWill Deacon 		goto out;
617f81ef4a9SWill Deacon 	}
618f81ef4a9SWill Deacon 
6196ee33c27SWill Deacon 	info->address &= ~alignment_mask;
620f81ef4a9SWill Deacon 	info->ctrl.len <<= offset;
621f81ef4a9SWill Deacon 
622f81ef4a9SWill Deacon 	/*
623f81ef4a9SWill Deacon 	 * Currently we rely on an overflow handler to take
624f81ef4a9SWill Deacon 	 * care of single-stepping the breakpoint when it fires.
625f81ef4a9SWill Deacon 	 * In the case of userspace breakpoints on a core with V7 debug,
6263ce70b2eSWill Deacon 	 * we can use the mismatch feature as a poor-man's hardware
6273ce70b2eSWill Deacon 	 * single-step, but this only works for per-task breakpoints.
628f81ef4a9SWill Deacon 	 */
629f81ef4a9SWill Deacon 	if (WARN_ONCE(!bp->overflow_handler &&
6303ce70b2eSWill Deacon 		(arch_check_bp_in_kernelspace(bp) || !core_has_mismatch_brps()
6313ce70b2eSWill Deacon 		 || !bp->hw.bp_target),
6327d85d61fSStephen Boyd 			"overflow handler required but none found\n")) {
633f81ef4a9SWill Deacon 		ret = -EINVAL;
634f81ef4a9SWill Deacon 	}
635f81ef4a9SWill Deacon out:
636f81ef4a9SWill Deacon 	return ret;
637f81ef4a9SWill Deacon }
638f81ef4a9SWill Deacon 
6399ebb3cbcSWill Deacon /*
6409ebb3cbcSWill Deacon  * Enable/disable single-stepping over the breakpoint bp at address addr.
6419ebb3cbcSWill Deacon  */
6429ebb3cbcSWill Deacon static void enable_single_step(struct perf_event *bp, u32 addr)
643f81ef4a9SWill Deacon {
6449ebb3cbcSWill Deacon 	struct arch_hw_breakpoint *info = counter_arch_bp(bp);
645f81ef4a9SWill Deacon 
6469ebb3cbcSWill Deacon 	arch_uninstall_hw_breakpoint(bp);
6479ebb3cbcSWill Deacon 	info->step_ctrl.mismatch  = 1;
6489ebb3cbcSWill Deacon 	info->step_ctrl.len	  = ARM_BREAKPOINT_LEN_4;
6499ebb3cbcSWill Deacon 	info->step_ctrl.type	  = ARM_BREAKPOINT_EXECUTE;
6509ebb3cbcSWill Deacon 	info->step_ctrl.privilege = info->ctrl.privilege;
6519ebb3cbcSWill Deacon 	info->step_ctrl.enabled	  = 1;
6529ebb3cbcSWill Deacon 	info->trigger		  = addr;
6539ebb3cbcSWill Deacon 	arch_install_hw_breakpoint(bp);
654f81ef4a9SWill Deacon }
6559ebb3cbcSWill Deacon 
6569ebb3cbcSWill Deacon static void disable_single_step(struct perf_event *bp)
6579ebb3cbcSWill Deacon {
6589ebb3cbcSWill Deacon 	arch_uninstall_hw_breakpoint(bp);
6599ebb3cbcSWill Deacon 	counter_arch_bp(bp)->step_ctrl.enabled = 0;
6609ebb3cbcSWill Deacon 	arch_install_hw_breakpoint(bp);
661f81ef4a9SWill Deacon }
662f81ef4a9SWill Deacon 
663*6f26aa05SWill Deacon static void watchpoint_handler(unsigned long addr, unsigned int fsr,
664*6f26aa05SWill Deacon 			       struct pt_regs *regs)
665f81ef4a9SWill Deacon {
666*6f26aa05SWill Deacon 	int i, access;
667*6f26aa05SWill Deacon 	u32 val, ctrl_reg, alignment_mask;
6684a55c18eSWill Deacon 	struct perf_event *wp, **slots;
669f81ef4a9SWill Deacon 	struct arch_hw_breakpoint *info;
670*6f26aa05SWill Deacon 	struct arch_hw_breakpoint_ctrl ctrl;
671f81ef4a9SWill Deacon 
6724a55c18eSWill Deacon 	slots = (struct perf_event **)__get_cpu_var(wp_on_reg);
6734a55c18eSWill Deacon 
674f81ef4a9SWill Deacon 	for (i = 0; i < core_num_wrps; ++i) {
675f81ef4a9SWill Deacon 		rcu_read_lock();
676f81ef4a9SWill Deacon 
67793a04a34SWill Deacon 		wp = slots[i];
67893a04a34SWill Deacon 
679*6f26aa05SWill Deacon 		if (wp == NULL)
680*6f26aa05SWill Deacon 			goto unlock;
681*6f26aa05SWill Deacon 
682*6f26aa05SWill Deacon 		info = counter_arch_bp(wp);
683*6f26aa05SWill Deacon 		/*
684*6f26aa05SWill Deacon 		 * The DFAR is an unknown value on debug architectures prior
685*6f26aa05SWill Deacon 		 * to 7.1. Since we only allow a single watchpoint on these
686*6f26aa05SWill Deacon 		 * older CPUs, we can set the trigger to the lowest possible
687*6f26aa05SWill Deacon 		 * faulting address.
688*6f26aa05SWill Deacon 		 */
689*6f26aa05SWill Deacon 		if (debug_arch < ARM_DEBUG_ARCH_V7_1) {
690*6f26aa05SWill Deacon 			BUG_ON(i > 0);
691*6f26aa05SWill Deacon 			info->trigger = wp->attr.bp_addr;
692*6f26aa05SWill Deacon 		} else {
693*6f26aa05SWill Deacon 			if (info->ctrl.len == ARM_BREAKPOINT_LEN_8)
694*6f26aa05SWill Deacon 				alignment_mask = 0x7;
695*6f26aa05SWill Deacon 			else
696*6f26aa05SWill Deacon 				alignment_mask = 0x3;
697*6f26aa05SWill Deacon 
698*6f26aa05SWill Deacon 			/* Check if the watchpoint value matches. */
699*6f26aa05SWill Deacon 			val = read_wb_reg(ARM_BASE_WVR + i);
700*6f26aa05SWill Deacon 			if (val != (addr & ~alignment_mask))
701*6f26aa05SWill Deacon 				goto unlock;
702*6f26aa05SWill Deacon 
703*6f26aa05SWill Deacon 			/* Possible match, check the byte address select. */
704*6f26aa05SWill Deacon 			ctrl_reg = read_wb_reg(ARM_BASE_WCR + i);
705*6f26aa05SWill Deacon 			decode_ctrl_reg(ctrl_reg, &ctrl);
706*6f26aa05SWill Deacon 			if (!((1 << (addr & alignment_mask)) & ctrl.len))
707*6f26aa05SWill Deacon 				goto unlock;
708*6f26aa05SWill Deacon 
709*6f26aa05SWill Deacon 			/* Check that the access type matches. */
710*6f26aa05SWill Deacon 			access = (fsr & ARM_FSR_ACCESS_MASK) ? HW_BREAKPOINT_W :
711*6f26aa05SWill Deacon 				 HW_BREAKPOINT_R;
712*6f26aa05SWill Deacon 			if (!(access & hw_breakpoint_type(wp)))
713*6f26aa05SWill Deacon 				goto unlock;
714*6f26aa05SWill Deacon 
715*6f26aa05SWill Deacon 			/* We have a winner. */
716*6f26aa05SWill Deacon 			info->trigger = addr;
717f81ef4a9SWill Deacon 		}
718f81ef4a9SWill Deacon 
719f81ef4a9SWill Deacon 		pr_debug("watchpoint fired: address = 0x%x\n", info->trigger);
72093a04a34SWill Deacon 		perf_bp_event(wp, regs);
721f81ef4a9SWill Deacon 
722f81ef4a9SWill Deacon 		/*
723f81ef4a9SWill Deacon 		 * If no overflow handler is present, insert a temporary
724f81ef4a9SWill Deacon 		 * mismatch breakpoint so we can single-step over the
725f81ef4a9SWill Deacon 		 * watchpoint trigger.
726f81ef4a9SWill Deacon 		 */
7279ebb3cbcSWill Deacon 		if (!wp->overflow_handler)
7289ebb3cbcSWill Deacon 			enable_single_step(wp, instruction_pointer(regs));
729f81ef4a9SWill Deacon 
730*6f26aa05SWill Deacon unlock:
731f81ef4a9SWill Deacon 		rcu_read_unlock();
732f81ef4a9SWill Deacon 	}
733f81ef4a9SWill Deacon }
734f81ef4a9SWill Deacon 
73593a04a34SWill Deacon static void watchpoint_single_step_handler(unsigned long pc)
73693a04a34SWill Deacon {
73793a04a34SWill Deacon 	int i;
7384a55c18eSWill Deacon 	struct perf_event *wp, **slots;
73993a04a34SWill Deacon 	struct arch_hw_breakpoint *info;
74093a04a34SWill Deacon 
7414a55c18eSWill Deacon 	slots = (struct perf_event **)__get_cpu_var(wp_on_reg);
7424a55c18eSWill Deacon 
743c512de95SWill Deacon 	for (i = 0; i < core_num_wrps; ++i) {
74493a04a34SWill Deacon 		rcu_read_lock();
74593a04a34SWill Deacon 
74693a04a34SWill Deacon 		wp = slots[i];
74793a04a34SWill Deacon 
74893a04a34SWill Deacon 		if (wp == NULL)
74993a04a34SWill Deacon 			goto unlock;
75093a04a34SWill Deacon 
75193a04a34SWill Deacon 		info = counter_arch_bp(wp);
75293a04a34SWill Deacon 		if (!info->step_ctrl.enabled)
75393a04a34SWill Deacon 			goto unlock;
75493a04a34SWill Deacon 
75593a04a34SWill Deacon 		/*
75693a04a34SWill Deacon 		 * Restore the original watchpoint if we've completed the
75793a04a34SWill Deacon 		 * single-step.
75893a04a34SWill Deacon 		 */
7599ebb3cbcSWill Deacon 		if (info->trigger != pc)
7609ebb3cbcSWill Deacon 			disable_single_step(wp);
76193a04a34SWill Deacon 
76293a04a34SWill Deacon unlock:
76393a04a34SWill Deacon 		rcu_read_unlock();
76493a04a34SWill Deacon 	}
76593a04a34SWill Deacon }
76693a04a34SWill Deacon 
767f81ef4a9SWill Deacon static void breakpoint_handler(unsigned long unknown, struct pt_regs *regs)
768f81ef4a9SWill Deacon {
769f81ef4a9SWill Deacon 	int i;
770f81ef4a9SWill Deacon 	u32 ctrl_reg, val, addr;
7714a55c18eSWill Deacon 	struct perf_event *bp, **slots;
772f81ef4a9SWill Deacon 	struct arch_hw_breakpoint *info;
773f81ef4a9SWill Deacon 	struct arch_hw_breakpoint_ctrl ctrl;
774f81ef4a9SWill Deacon 
7754a55c18eSWill Deacon 	slots = (struct perf_event **)__get_cpu_var(bp_on_reg);
7764a55c18eSWill Deacon 
777f81ef4a9SWill Deacon 	/* The exception entry code places the amended lr in the PC. */
778f81ef4a9SWill Deacon 	addr = regs->ARM_pc;
779f81ef4a9SWill Deacon 
78093a04a34SWill Deacon 	/* Check the currently installed breakpoints first. */
78193a04a34SWill Deacon 	for (i = 0; i < core_num_brps; ++i) {
782f81ef4a9SWill Deacon 		rcu_read_lock();
783f81ef4a9SWill Deacon 
784f81ef4a9SWill Deacon 		bp = slots[i];
785f81ef4a9SWill Deacon 
7869ebb3cbcSWill Deacon 		if (bp == NULL)
7879ebb3cbcSWill Deacon 			goto unlock;
788f81ef4a9SWill Deacon 
7899ebb3cbcSWill Deacon 		info = counter_arch_bp(bp);
790f81ef4a9SWill Deacon 
791f81ef4a9SWill Deacon 		/* Check if the breakpoint value matches. */
792f81ef4a9SWill Deacon 		val = read_wb_reg(ARM_BASE_BVR + i);
793f81ef4a9SWill Deacon 		if (val != (addr & ~0x3))
7949ebb3cbcSWill Deacon 			goto mismatch;
795f81ef4a9SWill Deacon 
796f81ef4a9SWill Deacon 		/* Possible match, check the byte address select to confirm. */
797f81ef4a9SWill Deacon 		ctrl_reg = read_wb_reg(ARM_BASE_BCR + i);
798f81ef4a9SWill Deacon 		decode_ctrl_reg(ctrl_reg, &ctrl);
799f81ef4a9SWill Deacon 		if ((1 << (addr & 0x3)) & ctrl.len) {
800f81ef4a9SWill Deacon 			info->trigger = addr;
801f81ef4a9SWill Deacon 			pr_debug("breakpoint fired: address = 0x%x\n", addr);
802f81ef4a9SWill Deacon 			perf_bp_event(bp, regs);
8039ebb3cbcSWill Deacon 			if (!bp->overflow_handler)
8049ebb3cbcSWill Deacon 				enable_single_step(bp, addr);
8059ebb3cbcSWill Deacon 			goto unlock;
806f81ef4a9SWill Deacon 		}
807f81ef4a9SWill Deacon 
8089ebb3cbcSWill Deacon mismatch:
8099ebb3cbcSWill Deacon 		/* If we're stepping a breakpoint, it can now be restored. */
8109ebb3cbcSWill Deacon 		if (info->step_ctrl.enabled)
8119ebb3cbcSWill Deacon 			disable_single_step(bp);
8129ebb3cbcSWill Deacon unlock:
813f81ef4a9SWill Deacon 		rcu_read_unlock();
814f81ef4a9SWill Deacon 	}
81593a04a34SWill Deacon 
81693a04a34SWill Deacon 	/* Handle any pending watchpoint single-step breakpoints. */
81793a04a34SWill Deacon 	watchpoint_single_step_handler(addr);
818f81ef4a9SWill Deacon }
819f81ef4a9SWill Deacon 
820f81ef4a9SWill Deacon /*
821f81ef4a9SWill Deacon  * Called from either the Data Abort Handler [watchpoint] or the
82202fe2845SRussell King  * Prefetch Abort Handler [breakpoint] with interrupts disabled.
823f81ef4a9SWill Deacon  */
824f81ef4a9SWill Deacon static int hw_breakpoint_pending(unsigned long addr, unsigned int fsr,
825f81ef4a9SWill Deacon 				 struct pt_regs *regs)
826f81ef4a9SWill Deacon {
8277e202696SWill Deacon 	int ret = 0;
828f81ef4a9SWill Deacon 	u32 dscr;
829f81ef4a9SWill Deacon 
83002fe2845SRussell King 	preempt_disable();
83102fe2845SRussell King 
83202fe2845SRussell King 	if (interrupts_enabled(regs))
83302fe2845SRussell King 		local_irq_enable();
8347e202696SWill Deacon 
835f81ef4a9SWill Deacon 	/* We only handle watchpoints and hardware breakpoints. */
836f81ef4a9SWill Deacon 	ARM_DBG_READ(c1, 0, dscr);
837f81ef4a9SWill Deacon 
838f81ef4a9SWill Deacon 	/* Perform perf callbacks. */
839f81ef4a9SWill Deacon 	switch (ARM_DSCR_MOE(dscr)) {
840f81ef4a9SWill Deacon 	case ARM_ENTRY_BREAKPOINT:
841f81ef4a9SWill Deacon 		breakpoint_handler(addr, regs);
842f81ef4a9SWill Deacon 		break;
843f81ef4a9SWill Deacon 	case ARM_ENTRY_ASYNC_WATCHPOINT:
844235584b6SJoe Perches 		WARN(1, "Asynchronous watchpoint exception taken. Debugging results may be unreliable\n");
845f81ef4a9SWill Deacon 	case ARM_ENTRY_SYNC_WATCHPOINT:
846*6f26aa05SWill Deacon 		watchpoint_handler(addr, fsr, regs);
847f81ef4a9SWill Deacon 		break;
848f81ef4a9SWill Deacon 	default:
8497e202696SWill Deacon 		ret = 1; /* Unhandled fault. */
850f81ef4a9SWill Deacon 	}
851f81ef4a9SWill Deacon 
8527e202696SWill Deacon 	preempt_enable();
8537e202696SWill Deacon 
854f81ef4a9SWill Deacon 	return ret;
855f81ef4a9SWill Deacon }
856f81ef4a9SWill Deacon 
857f81ef4a9SWill Deacon /*
858f81ef4a9SWill Deacon  * One-time initialisation.
859f81ef4a9SWill Deacon  */
860c09bae70SWill Deacon static void reset_ctrl_regs(void *info)
861f81ef4a9SWill Deacon {
862c512de95SWill Deacon 	int i, raw_num_brps, err = 0, cpu = smp_processor_id();
863c09bae70SWill Deacon 	u32 dbg_power;
864c09bae70SWill Deacon 	cpumask_t *cpumask = info;
865f81ef4a9SWill Deacon 
866ac88e071SWill Deacon 	/*
867ac88e071SWill Deacon 	 * v7 debug contains save and restore registers so that debug state
868ed19b739SWill Deacon 	 * can be maintained across low-power modes without leaving the debug
869ed19b739SWill Deacon 	 * logic powered up. It is IMPLEMENTATION DEFINED whether we can access
870ed19b739SWill Deacon 	 * the debug registers out of reset, so we must unlock the OS Lock
871ed19b739SWill Deacon 	 * Access Register to avoid taking undefined instruction exceptions
872ed19b739SWill Deacon 	 * later on.
873ac88e071SWill Deacon 	 */
874b5d5b8f9SWill Deacon 	switch (debug_arch) {
875b5d5b8f9SWill Deacon 	case ARM_DEBUG_ARCH_V7_ECP14:
876ac88e071SWill Deacon 		/*
877c09bae70SWill Deacon 		 * Ensure sticky power-down is clear (i.e. debug logic is
878c09bae70SWill Deacon 		 * powered up).
879c09bae70SWill Deacon 		 */
880c09bae70SWill Deacon 		asm volatile("mrc p14, 0, %0, c1, c5, 4" : "=r" (dbg_power));
881b5d5b8f9SWill Deacon 		if ((dbg_power & 0x1) == 0)
882b5d5b8f9SWill Deacon 			err = -EPERM;
883b5d5b8f9SWill Deacon 		break;
884b5d5b8f9SWill Deacon 	case ARM_DEBUG_ARCH_V7_1:
885b5d5b8f9SWill Deacon 		/*
886b5d5b8f9SWill Deacon 		 * Ensure the OS double lock is clear.
887b5d5b8f9SWill Deacon 		 */
888b5d5b8f9SWill Deacon 		asm volatile("mrc p14, 0, %0, c1, c3, 4" : "=r" (dbg_power));
889b5d5b8f9SWill Deacon 		if ((dbg_power & 0x1) == 1)
890b5d5b8f9SWill Deacon 			err = -EPERM;
891b5d5b8f9SWill Deacon 		break;
892b5d5b8f9SWill Deacon 	}
893b5d5b8f9SWill Deacon 
894b5d5b8f9SWill Deacon 	if (err) {
895c09bae70SWill Deacon 		pr_warning("CPU %d debug is powered down!\n", cpu);
896c09bae70SWill Deacon 		cpumask_or(cpumask, cpumask, cpumask_of(cpu));
897c09bae70SWill Deacon 		return;
898c09bae70SWill Deacon 	}
899c09bae70SWill Deacon 
900c09bae70SWill Deacon 	/*
901ac88e071SWill Deacon 	 * Unconditionally clear the lock by writing a value
902ac88e071SWill Deacon 	 * other than 0xC5ACCE55 to the access register.
903ac88e071SWill Deacon 	 */
904ac88e071SWill Deacon 	asm volatile("mcr p14, 0, %0, c1, c0, 4" : : "r" (0));
905ac88e071SWill Deacon 	isb();
906e89c0d70SWill Deacon 
907e89c0d70SWill Deacon 	/*
908e89c0d70SWill Deacon 	 * Clear any configured vector-catch events before
909e89c0d70SWill Deacon 	 * enabling monitor mode.
910e89c0d70SWill Deacon 	 */
911e89c0d70SWill Deacon 	asm volatile("mcr p14, 0, %0, c0, c7, 0" : : "r" (0));
912e89c0d70SWill Deacon 	isb();
913ac88e071SWill Deacon 
914f81ef4a9SWill Deacon 	if (enable_monitor_mode())
915f81ef4a9SWill Deacon 		return;
916f81ef4a9SWill Deacon 
9170017ff42SWill Deacon 	/* We must also reset any reserved registers. */
918c512de95SWill Deacon 	raw_num_brps = get_num_brp_resources();
919c512de95SWill Deacon 	for (i = 0; i < raw_num_brps; ++i) {
920f81ef4a9SWill Deacon 		write_wb_reg(ARM_BASE_BCR + i, 0UL);
921f81ef4a9SWill Deacon 		write_wb_reg(ARM_BASE_BVR + i, 0UL);
922f81ef4a9SWill Deacon 	}
923f81ef4a9SWill Deacon 
924f81ef4a9SWill Deacon 	for (i = 0; i < core_num_wrps; ++i) {
925f81ef4a9SWill Deacon 		write_wb_reg(ARM_BASE_WCR + i, 0UL);
926f81ef4a9SWill Deacon 		write_wb_reg(ARM_BASE_WVR + i, 0UL);
927f81ef4a9SWill Deacon 	}
928f81ef4a9SWill Deacon }
929f81ef4a9SWill Deacon 
9307d99331eSWill Deacon static int __cpuinit dbg_reset_notify(struct notifier_block *self,
9317d99331eSWill Deacon 				      unsigned long action, void *cpu)
9327d99331eSWill Deacon {
9337d99331eSWill Deacon 	if (action == CPU_ONLINE)
9347d99331eSWill Deacon 		smp_call_function_single((int)cpu, reset_ctrl_regs, NULL, 1);
9357d99331eSWill Deacon 	return NOTIFY_OK;
9367d99331eSWill Deacon }
9377d99331eSWill Deacon 
9387d99331eSWill Deacon static struct notifier_block __cpuinitdata dbg_reset_nb = {
9397d99331eSWill Deacon 	.notifier_call = dbg_reset_notify,
9407d99331eSWill Deacon };
9417d99331eSWill Deacon 
942f81ef4a9SWill Deacon static int __init arch_hw_breakpoint_init(void)
943f81ef4a9SWill Deacon {
944f81ef4a9SWill Deacon 	u32 dscr;
945c09bae70SWill Deacon 	cpumask_t cpumask = { CPU_BITS_NONE };
946f81ef4a9SWill Deacon 
947f81ef4a9SWill Deacon 	debug_arch = get_debug_arch();
948f81ef4a9SWill Deacon 
94966e1cfe6SWill Deacon 	if (!debug_arch_supported()) {
950f81ef4a9SWill Deacon 		pr_info("debug architecture 0x%x unsupported.\n", debug_arch);
9518fbf397cSWill Deacon 		return 0;
952f81ef4a9SWill Deacon 	}
953f81ef4a9SWill Deacon 
954f81ef4a9SWill Deacon 	/* Determine how many BRPs/WRPs are available. */
955f81ef4a9SWill Deacon 	core_num_brps = get_num_brps();
956f81ef4a9SWill Deacon 	core_num_wrps = get_num_wrps();
957f81ef4a9SWill Deacon 
958c512de95SWill Deacon 	pr_info("found %d " "%s" "breakpoint and %d watchpoint registers.\n",
959c512de95SWill Deacon 		core_num_brps, core_has_mismatch_brps() ? "(+1 reserved) " :
960c512de95SWill Deacon 		"", core_num_wrps);
961f81ef4a9SWill Deacon 
962f81ef4a9SWill Deacon 	/*
963f81ef4a9SWill Deacon 	 * Reset the breakpoint resources. We assume that a halting
964f81ef4a9SWill Deacon 	 * debugger will leave the world in a nice state for us.
965f81ef4a9SWill Deacon 	 */
966c09bae70SWill Deacon 	on_each_cpu(reset_ctrl_regs, &cpumask, 1);
967c09bae70SWill Deacon 	if (!cpumask_empty(&cpumask)) {
968c09bae70SWill Deacon 		core_num_brps = 0;
969c09bae70SWill Deacon 		core_num_wrps = 0;
970c09bae70SWill Deacon 		return 0;
971c09bae70SWill Deacon 	}
972ac88e071SWill Deacon 
973ed19b739SWill Deacon 	ARM_DBG_READ(c1, 0, dscr);
974ed19b739SWill Deacon 	if (dscr & ARM_DSCR_HDBGEN) {
975ed19b739SWill Deacon 		max_watchpoint_len = 4;
9767d85d61fSStephen Boyd 		pr_warning("halting debug mode enabled. Assuming maximum watchpoint size of %u bytes.\n",
9777d85d61fSStephen Boyd 			   max_watchpoint_len);
978ed19b739SWill Deacon 	} else {
979ac88e071SWill Deacon 		/* Work out the maximum supported watchpoint length. */
980ac88e071SWill Deacon 		max_watchpoint_len = get_max_wp_len();
981ac88e071SWill Deacon 		pr_info("maximum watchpoint size is %u bytes.\n",
982ac88e071SWill Deacon 				max_watchpoint_len);
983f81ef4a9SWill Deacon 	}
984f81ef4a9SWill Deacon 
985f81ef4a9SWill Deacon 	/* Register debug fault handler. */
986f81ef4a9SWill Deacon 	hook_fault_code(2, hw_breakpoint_pending, SIGTRAP, TRAP_HWBKPT,
987f81ef4a9SWill Deacon 			"watchpoint debug exception");
988f81ef4a9SWill Deacon 	hook_ifault_code(2, hw_breakpoint_pending, SIGTRAP, TRAP_HWBKPT,
989f81ef4a9SWill Deacon 			"breakpoint debug exception");
990f81ef4a9SWill Deacon 
9917d99331eSWill Deacon 	/* Register hotplug notifier. */
9927d99331eSWill Deacon 	register_cpu_notifier(&dbg_reset_nb);
9938fbf397cSWill Deacon 	return 0;
994f81ef4a9SWill Deacon }
995f81ef4a9SWill Deacon arch_initcall(arch_hw_breakpoint_init);
996f81ef4a9SWill Deacon 
997f81ef4a9SWill Deacon void hw_breakpoint_pmu_read(struct perf_event *bp)
998f81ef4a9SWill Deacon {
999f81ef4a9SWill Deacon }
1000f81ef4a9SWill Deacon 
1001f81ef4a9SWill Deacon /*
1002f81ef4a9SWill Deacon  * Dummy function to register with die_notifier.
1003f81ef4a9SWill Deacon  */
1004f81ef4a9SWill Deacon int hw_breakpoint_exceptions_notify(struct notifier_block *unused,
1005f81ef4a9SWill Deacon 					unsigned long val, void *data)
1006f81ef4a9SWill Deacon {
1007f81ef4a9SWill Deacon 	return NOTIFY_DONE;
1008f81ef4a9SWill Deacon }
1009