blob: b0c195e3a06df00ac7d07f65113f7820b13b6db5 [file] [log] [blame]
Thomas Gleixner45051532019-05-29 16:57:47 -07001// SPDX-License-Identifier: GPL-2.0-only
Will Deaconf81ef4a2010-09-03 10:41:08 +01002/*
Will Deaconf81ef4a2010-09-03 10:41:08 +01003 *
4 * Copyright (C) 2009, 2010 ARM Limited
5 *
6 * Author: Will Deacon <will.deacon@arm.com>
7 */
8
9/*
10 * HW_breakpoint: a unified kernel/user-space hardware breakpoint facility,
11 * using the CPU's debug registers.
12 */
13#define pr_fmt(fmt) "hw-breakpoint: " fmt
14
15#include <linux/errno.h>
Will Deacon7e202692010-11-28 14:57:24 +000016#include <linux/hardirq.h>
Will Deaconf81ef4a2010-09-03 10:41:08 +010017#include <linux/perf_event.h>
18#include <linux/hw_breakpoint.h>
19#include <linux/smp.h>
Dietmar Eggemann9a6eb312012-10-14 22:25:37 +010020#include <linux/cpu_pm.h>
Mathieu Poirier184901a2014-11-03 11:07:46 -070021#include <linux/coresight.h>
Will Deaconf81ef4a2010-09-03 10:41:08 +010022
23#include <asm/cacheflush.h>
24#include <asm/cputype.h>
25#include <asm/current.h>
26#include <asm/hw_breakpoint.h>
Will Deaconf81ef4a2010-09-03 10:41:08 +010027#include <asm/traps.h>
28
29/* Breakpoint currently in use for each BRP. */
30static DEFINE_PER_CPU(struct perf_event *, bp_on_reg[ARM_MAX_BRP]);
31
32/* Watchpoint currently in use for each WRP. */
33static DEFINE_PER_CPU(struct perf_event *, wp_on_reg[ARM_MAX_WRP]);
34
35/* Number of BRP/WRP registers on this CPU. */
Jinbum Park670431e2017-12-12 01:20:51 +010036static int core_num_brps __ro_after_init;
37static int core_num_wrps __ro_after_init;
Will Deaconf81ef4a2010-09-03 10:41:08 +010038
39/* Debug architecture version. */
Jinbum Park670431e2017-12-12 01:20:51 +010040static u8 debug_arch __ro_after_init;
Will Deaconf81ef4a2010-09-03 10:41:08 +010041
Dietmar Eggemann57ba8992012-10-14 21:08:14 +010042/* Does debug architecture support OS Save and Restore? */
Jinbum Park670431e2017-12-12 01:20:51 +010043static bool has_ossr __ro_after_init;
Dietmar Eggemann57ba8992012-10-14 21:08:14 +010044
Will Deaconf81ef4a2010-09-03 10:41:08 +010045/* Maximum supported watchpoint length. */
Jinbum Park670431e2017-12-12 01:20:51 +010046static u8 max_watchpoint_len __ro_after_init;
Will Deaconf81ef4a2010-09-03 10:41:08 +010047
Dietmar Eggemann9e962f72012-09-26 17:28:47 +010048#define READ_WB_REG_CASE(OP2, M, VAL) \
49 case ((OP2 << 4) + M): \
50 ARM_DBG_READ(c0, c ## M, OP2, VAL); \
Will Deaconf81ef4a2010-09-03 10:41:08 +010051 break
52
Dietmar Eggemann9e962f72012-09-26 17:28:47 +010053#define WRITE_WB_REG_CASE(OP2, M, VAL) \
54 case ((OP2 << 4) + M): \
55 ARM_DBG_WRITE(c0, c ## M, OP2, VAL); \
Will Deaconf81ef4a2010-09-03 10:41:08 +010056 break
57
58#define GEN_READ_WB_REG_CASES(OP2, VAL) \
59 READ_WB_REG_CASE(OP2, 0, VAL); \
60 READ_WB_REG_CASE(OP2, 1, VAL); \
61 READ_WB_REG_CASE(OP2, 2, VAL); \
62 READ_WB_REG_CASE(OP2, 3, VAL); \
63 READ_WB_REG_CASE(OP2, 4, VAL); \
64 READ_WB_REG_CASE(OP2, 5, VAL); \
65 READ_WB_REG_CASE(OP2, 6, VAL); \
66 READ_WB_REG_CASE(OP2, 7, VAL); \
67 READ_WB_REG_CASE(OP2, 8, VAL); \
68 READ_WB_REG_CASE(OP2, 9, VAL); \
69 READ_WB_REG_CASE(OP2, 10, VAL); \
70 READ_WB_REG_CASE(OP2, 11, VAL); \
71 READ_WB_REG_CASE(OP2, 12, VAL); \
72 READ_WB_REG_CASE(OP2, 13, VAL); \
73 READ_WB_REG_CASE(OP2, 14, VAL); \
74 READ_WB_REG_CASE(OP2, 15, VAL)
75
76#define GEN_WRITE_WB_REG_CASES(OP2, VAL) \
77 WRITE_WB_REG_CASE(OP2, 0, VAL); \
78 WRITE_WB_REG_CASE(OP2, 1, VAL); \
79 WRITE_WB_REG_CASE(OP2, 2, VAL); \
80 WRITE_WB_REG_CASE(OP2, 3, VAL); \
81 WRITE_WB_REG_CASE(OP2, 4, VAL); \
82 WRITE_WB_REG_CASE(OP2, 5, VAL); \
83 WRITE_WB_REG_CASE(OP2, 6, VAL); \
84 WRITE_WB_REG_CASE(OP2, 7, VAL); \
85 WRITE_WB_REG_CASE(OP2, 8, VAL); \
86 WRITE_WB_REG_CASE(OP2, 9, VAL); \
87 WRITE_WB_REG_CASE(OP2, 10, VAL); \
88 WRITE_WB_REG_CASE(OP2, 11, VAL); \
89 WRITE_WB_REG_CASE(OP2, 12, VAL); \
90 WRITE_WB_REG_CASE(OP2, 13, VAL); \
91 WRITE_WB_REG_CASE(OP2, 14, VAL); \
92 WRITE_WB_REG_CASE(OP2, 15, VAL)
93
94static u32 read_wb_reg(int n)
95{
96 u32 val = 0;
97
98 switch (n) {
99 GEN_READ_WB_REG_CASES(ARM_OP2_BVR, val);
100 GEN_READ_WB_REG_CASES(ARM_OP2_BCR, val);
101 GEN_READ_WB_REG_CASES(ARM_OP2_WVR, val);
102 GEN_READ_WB_REG_CASES(ARM_OP2_WCR, val);
103 default:
Joe Perches8b521cb2014-09-16 20:41:43 +0100104 pr_warn("attempt to read from unknown breakpoint register %d\n",
105 n);
Will Deaconf81ef4a2010-09-03 10:41:08 +0100106 }
107
108 return val;
109}
110
111static void write_wb_reg(int n, u32 val)
112{
113 switch (n) {
114 GEN_WRITE_WB_REG_CASES(ARM_OP2_BVR, val);
115 GEN_WRITE_WB_REG_CASES(ARM_OP2_BCR, val);
116 GEN_WRITE_WB_REG_CASES(ARM_OP2_WVR, val);
117 GEN_WRITE_WB_REG_CASES(ARM_OP2_WCR, val);
118 default:
Joe Perches8b521cb2014-09-16 20:41:43 +0100119 pr_warn("attempt to write to unknown breakpoint register %d\n",
120 n);
Will Deaconf81ef4a2010-09-03 10:41:08 +0100121 }
122 isb();
123}
124
Will Deacon0017ff42010-11-28 15:09:36 +0000125/* Determine debug architecture. */
126static u8 get_debug_arch(void)
127{
128 u32 didr;
129
130 /* Do we implement the extended CPUID interface? */
Will Deacond1244332011-08-04 14:46:23 +0100131 if (((read_cpuid_id() >> 16) & 0xf) != 0xf) {
Will Deacon5ad29ea2012-09-21 18:17:24 +0100132 pr_warn_once("CPUID feature registers not supported. "
133 "Assuming v6 debug is present.\n");
Will Deacon0017ff42010-11-28 15:09:36 +0000134 return ARM_DEBUG_ARCH_V6;
Will Deacond1244332011-08-04 14:46:23 +0100135 }
Will Deacon0017ff42010-11-28 15:09:36 +0000136
Dietmar Eggemann9e962f72012-09-26 17:28:47 +0100137 ARM_DBG_READ(c0, c0, 0, didr);
Will Deacon0017ff42010-11-28 15:09:36 +0000138 return (didr >> 16) & 0xf;
139}
140
141u8 arch_get_debug_arch(void)
142{
143 return debug_arch;
144}
145
Will Deacon66e1cfe2011-02-11 16:01:42 +0100146static int debug_arch_supported(void)
147{
148 u8 arch = get_debug_arch();
Will Deaconb5d5b8f2011-07-22 18:27:37 +0100149
150 /* We don't support the memory-mapped interface. */
151 return (arch >= ARM_DEBUG_ARCH_V6 && arch <= ARM_DEBUG_ARCH_V7_ECP14) ||
152 arch >= ARM_DEBUG_ARCH_V7_1;
Will Deacon66e1cfe2011-02-11 16:01:42 +0100153}
154
Will Deaconbf880112012-08-16 18:55:44 +0100155/* Can we determine the watchpoint access type from the fsr? */
156static int debug_exception_updates_fsr(void)
157{
Christopher Covington5b61d4a2014-01-29 22:01:31 +0100158 return get_debug_arch() >= ARM_DEBUG_ARCH_V8;
Will Deaconbf880112012-08-16 18:55:44 +0100159}
160
Will Deaconc512de92011-08-02 13:01:17 +0100161/* Determine number of WRP registers available. */
162static int get_num_wrp_resources(void)
163{
164 u32 didr;
Dietmar Eggemann9e962f72012-09-26 17:28:47 +0100165 ARM_DBG_READ(c0, c0, 0, didr);
Will Deaconc512de92011-08-02 13:01:17 +0100166 return ((didr >> 28) & 0xf) + 1;
167}
168
169/* Determine number of BRP registers available. */
Will Deacon0017ff42010-11-28 15:09:36 +0000170static int get_num_brp_resources(void)
171{
172 u32 didr;
Dietmar Eggemann9e962f72012-09-26 17:28:47 +0100173 ARM_DBG_READ(c0, c0, 0, didr);
Will Deacon0017ff42010-11-28 15:09:36 +0000174 return ((didr >> 24) & 0xf) + 1;
175}
176
177/* Does this core support mismatch breakpoints? */
178static int core_has_mismatch_brps(void)
179{
180 return (get_debug_arch() >= ARM_DEBUG_ARCH_V7_ECP14 &&
181 get_num_brp_resources() > 1);
182}
183
184/* Determine number of usable WRPs available. */
185static int get_num_wrps(void)
186{
187 /*
Will Deaconc512de92011-08-02 13:01:17 +0100188 * On debug architectures prior to 7.1, when a watchpoint fires, the
189 * only way to work out which watchpoint it was is by disassembling
190 * the faulting instruction and working out the address of the memory
191 * access.
Will Deacon0017ff42010-11-28 15:09:36 +0000192 *
193 * Furthermore, we can only do this if the watchpoint was precise
194 * since imprecise watchpoints prevent us from calculating register
195 * based addresses.
196 *
197 * Providing we have more than 1 breakpoint register, we only report
198 * a single watchpoint register for the time being. This way, we always
199 * know which watchpoint fired. In the future we can either add a
200 * disassembler and address generation emulator, or we can insert a
201 * check to see if the DFAR is set on watchpoint exception entry
202 * [the ARM ARM states that the DFAR is UNKNOWN, but experience shows
203 * that it is set on some implementations].
204 */
Will Deaconc512de92011-08-02 13:01:17 +0100205 if (get_debug_arch() < ARM_DEBUG_ARCH_V7_1)
206 return 1;
Will Deacon0017ff42010-11-28 15:09:36 +0000207
Will Deaconc512de92011-08-02 13:01:17 +0100208 return get_num_wrp_resources();
Will Deacon0017ff42010-11-28 15:09:36 +0000209}
210
211/* Determine number of usable BRPs available. */
212static int get_num_brps(void)
213{
214 int brps = get_num_brp_resources();
Will Deaconc512de92011-08-02 13:01:17 +0100215 return core_has_mismatch_brps() ? brps - 1 : brps;
Will Deacon0017ff42010-11-28 15:09:36 +0000216}
217
Will Deaconf81ef4a2010-09-03 10:41:08 +0100218/*
219 * In order to access the breakpoint/watchpoint control registers,
220 * we must be running in debug monitor mode. Unfortunately, we can
221 * be put into halting debug mode at any time by an external debugger
222 * but there is nothing we can do to prevent that.
223 */
Will Deacon0daa0342012-09-24 18:01:13 +0100224static int monitor_mode_enabled(void)
225{
226 u32 dscr;
Dietmar Eggemann9e962f72012-09-26 17:28:47 +0100227 ARM_DBG_READ(c0, c1, 0, dscr);
Will Deacon0daa0342012-09-24 18:01:13 +0100228 return !!(dscr & ARM_DSCR_MDBGEN);
229}
230
Will Deaconf81ef4a2010-09-03 10:41:08 +0100231static int enable_monitor_mode(void)
232{
233 u32 dscr;
Dietmar Eggemann9e962f72012-09-26 17:28:47 +0100234 ARM_DBG_READ(c0, c1, 0, dscr);
Will Deaconf81ef4a2010-09-03 10:41:08 +0100235
Will Deacon8fbf3972010-12-01 17:37:45 +0000236 /* If monitor mode is already enabled, just return. */
237 if (dscr & ARM_DSCR_MDBGEN)
238 goto out;
239
Will Deaconf81ef4a2010-09-03 10:41:08 +0100240 /* Write to the corresponding DSCR. */
Will Deacon8fbf3972010-12-01 17:37:45 +0000241 switch (get_debug_arch()) {
Will Deaconf81ef4a2010-09-03 10:41:08 +0100242 case ARM_DEBUG_ARCH_V6:
243 case ARM_DEBUG_ARCH_V6_1:
Dietmar Eggemann9e962f72012-09-26 17:28:47 +0100244 ARM_DBG_WRITE(c0, c1, 0, (dscr | ARM_DSCR_MDBGEN));
Will Deaconf81ef4a2010-09-03 10:41:08 +0100245 break;
246 case ARM_DEBUG_ARCH_V7_ECP14:
Will Deaconb5d5b8f2011-07-22 18:27:37 +0100247 case ARM_DEBUG_ARCH_V7_1:
Christopher Covington5b61d4a2014-01-29 22:01:31 +0100248 case ARM_DEBUG_ARCH_V8:
Dietmar Eggemann9e962f72012-09-26 17:28:47 +0100249 ARM_DBG_WRITE(c0, c2, 2, (dscr | ARM_DSCR_MDBGEN));
Will Deaconb59a5402012-09-21 15:08:17 +0100250 isb();
Will Deaconf81ef4a2010-09-03 10:41:08 +0100251 break;
252 default:
Will Deacon614bea52012-09-21 15:38:26 +0100253 return -ENODEV;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100254 }
255
256 /* Check that the write made it through. */
Dietmar Eggemann9e962f72012-09-26 17:28:47 +0100257 ARM_DBG_READ(c0, c1, 0, dscr);
Will Deaconf435ab72012-10-25 17:18:23 +0100258 if (!(dscr & ARM_DSCR_MDBGEN)) {
259 pr_warn_once("Failed to enable monitor mode on CPU %d.\n",
260 smp_processor_id());
Will Deacon614bea52012-09-21 15:38:26 +0100261 return -EPERM;
Will Deaconf435ab72012-10-25 17:18:23 +0100262 }
Will Deaconf81ef4a2010-09-03 10:41:08 +0100263
264out:
Will Deacon614bea52012-09-21 15:38:26 +0100265 return 0;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100266}
267
Will Deacon8fbf3972010-12-01 17:37:45 +0000268int hw_breakpoint_slots(int type)
269{
Will Deacon66e1cfe2011-02-11 16:01:42 +0100270 if (!debug_arch_supported())
271 return 0;
272
Will Deacon8fbf3972010-12-01 17:37:45 +0000273 /*
274 * We can be called early, so don't rely on
275 * our static variables being initialised.
276 */
277 switch (type) {
278 case TYPE_INST:
279 return get_num_brps();
280 case TYPE_DATA:
281 return get_num_wrps();
282 default:
Joe Perches8b521cb2014-09-16 20:41:43 +0100283 pr_warn("unknown slot type: %d\n", type);
Will Deacon8fbf3972010-12-01 17:37:45 +0000284 return 0;
285 }
286}
287
Will Deaconf81ef4a2010-09-03 10:41:08 +0100288/*
289 * Check if 8-bit byte-address select is available.
290 * This clobbers WRP 0.
291 */
292static u8 get_max_wp_len(void)
293{
294 u32 ctrl_reg;
295 struct arch_hw_breakpoint_ctrl ctrl;
296 u8 size = 4;
297
298 if (debug_arch < ARM_DEBUG_ARCH_V7_ECP14)
299 goto out;
300
Will Deaconf81ef4a2010-09-03 10:41:08 +0100301 memset(&ctrl, 0, sizeof(ctrl));
302 ctrl.len = ARM_BREAKPOINT_LEN_8;
303 ctrl_reg = encode_ctrl_reg(ctrl);
304
305 write_wb_reg(ARM_BASE_WVR, 0);
306 write_wb_reg(ARM_BASE_WCR, ctrl_reg);
307 if ((read_wb_reg(ARM_BASE_WCR) & ctrl_reg) == ctrl_reg)
308 size = 8;
309
310out:
311 return size;
312}
313
314u8 arch_get_max_wp_len(void)
315{
316 return max_watchpoint_len;
317}
318
319/*
Will Deaconf81ef4a2010-09-03 10:41:08 +0100320 * Install a perf counter breakpoint.
321 */
322int arch_install_hw_breakpoint(struct perf_event *bp)
323{
324 struct arch_hw_breakpoint *info = counter_arch_bp(bp);
325 struct perf_event **slot, **slots;
Will Deacon0daa0342012-09-24 18:01:13 +0100326 int i, max_slots, ctrl_base, val_base;
Will Deacon93a04a32010-11-29 16:56:01 +0000327 u32 addr, ctrl;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100328
Will Deacon93a04a32010-11-29 16:56:01 +0000329 addr = info->address;
330 ctrl = encode_ctrl_reg(info->ctrl) | 0x1;
331
Will Deaconf81ef4a2010-09-03 10:41:08 +0100332 if (info->ctrl.type == ARM_BREAKPOINT_EXECUTE) {
333 /* Breakpoint */
334 ctrl_base = ARM_BASE_BCR;
335 val_base = ARM_BASE_BVR;
Christoph Lameter1436c1a2013-10-21 13:17:08 +0100336 slots = this_cpu_ptr(bp_on_reg);
Will Deacon0017ff42010-11-28 15:09:36 +0000337 max_slots = core_num_brps;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100338 } else {
339 /* Watchpoint */
Will Deacon6f26aa02011-08-02 16:16:57 +0100340 ctrl_base = ARM_BASE_WCR;
341 val_base = ARM_BASE_WVR;
Christoph Lameter1436c1a2013-10-21 13:17:08 +0100342 slots = this_cpu_ptr(wp_on_reg);
Will Deaconf81ef4a2010-09-03 10:41:08 +0100343 max_slots = core_num_wrps;
344 }
345
346 for (i = 0; i < max_slots; ++i) {
347 slot = &slots[i];
348
349 if (!*slot) {
350 *slot = bp;
351 break;
352 }
353 }
354
Will Deaconf435ab72012-10-25 17:18:23 +0100355 if (i == max_slots) {
Joe Perches8b521cb2014-09-16 20:41:43 +0100356 pr_warn("Can't find any breakpoint slot\n");
Will Deacon0daa0342012-09-24 18:01:13 +0100357 return -EBUSY;
Will Deaconf435ab72012-10-25 17:18:23 +0100358 }
Will Deaconf81ef4a2010-09-03 10:41:08 +0100359
Will Deacon6f26aa02011-08-02 16:16:57 +0100360 /* Override the breakpoint data with the step data. */
361 if (info->step_ctrl.enabled) {
362 addr = info->trigger & ~0x3;
363 ctrl = encode_ctrl_reg(info->step_ctrl);
364 if (info->ctrl.type != ARM_BREAKPOINT_EXECUTE) {
365 i = 0;
366 ctrl_base = ARM_BASE_BCR + core_num_brps;
367 val_base = ARM_BASE_BVR + core_num_brps;
368 }
369 }
370
Will Deaconf81ef4a2010-09-03 10:41:08 +0100371 /* Setup the address register. */
Will Deacon93a04a32010-11-29 16:56:01 +0000372 write_wb_reg(val_base + i, addr);
Will Deaconf81ef4a2010-09-03 10:41:08 +0100373
374 /* Setup the control register. */
Will Deacon93a04a32010-11-29 16:56:01 +0000375 write_wb_reg(ctrl_base + i, ctrl);
Will Deacon0daa0342012-09-24 18:01:13 +0100376 return 0;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100377}
378
379void arch_uninstall_hw_breakpoint(struct perf_event *bp)
380{
381 struct arch_hw_breakpoint *info = counter_arch_bp(bp);
382 struct perf_event **slot, **slots;
383 int i, max_slots, base;
384
385 if (info->ctrl.type == ARM_BREAKPOINT_EXECUTE) {
386 /* Breakpoint */
387 base = ARM_BASE_BCR;
Christoph Lameter1436c1a2013-10-21 13:17:08 +0100388 slots = this_cpu_ptr(bp_on_reg);
Will Deacon0017ff42010-11-28 15:09:36 +0000389 max_slots = core_num_brps;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100390 } else {
391 /* Watchpoint */
Will Deacon6f26aa02011-08-02 16:16:57 +0100392 base = ARM_BASE_WCR;
Christoph Lameter1436c1a2013-10-21 13:17:08 +0100393 slots = this_cpu_ptr(wp_on_reg);
Will Deaconf81ef4a2010-09-03 10:41:08 +0100394 max_slots = core_num_wrps;
395 }
396
397 /* Remove the breakpoint. */
398 for (i = 0; i < max_slots; ++i) {
399 slot = &slots[i];
400
401 if (*slot == bp) {
402 *slot = NULL;
403 break;
404 }
405 }
406
Will Deaconf435ab72012-10-25 17:18:23 +0100407 if (i == max_slots) {
Joe Perches8b521cb2014-09-16 20:41:43 +0100408 pr_warn("Can't find any breakpoint slot\n");
Will Deaconf81ef4a2010-09-03 10:41:08 +0100409 return;
Will Deaconf435ab72012-10-25 17:18:23 +0100410 }
Will Deaconf81ef4a2010-09-03 10:41:08 +0100411
Will Deacon6f26aa02011-08-02 16:16:57 +0100412 /* Ensure that we disable the mismatch breakpoint. */
413 if (info->ctrl.type != ARM_BREAKPOINT_EXECUTE &&
414 info->step_ctrl.enabled) {
415 i = 0;
416 base = ARM_BASE_BCR + core_num_brps;
417 }
418
Will Deaconf81ef4a2010-09-03 10:41:08 +0100419 /* Reset the control register. */
420 write_wb_reg(base + i, 0);
421}
422
423static int get_hbp_len(u8 hbp_len)
424{
425 unsigned int len_in_bytes = 0;
426
427 switch (hbp_len) {
428 case ARM_BREAKPOINT_LEN_1:
429 len_in_bytes = 1;
430 break;
431 case ARM_BREAKPOINT_LEN_2:
432 len_in_bytes = 2;
433 break;
434 case ARM_BREAKPOINT_LEN_4:
435 len_in_bytes = 4;
436 break;
437 case ARM_BREAKPOINT_LEN_8:
438 len_in_bytes = 8;
439 break;
440 }
441
442 return len_in_bytes;
443}
444
445/*
446 * Check whether bp virtual address is in kernel space.
447 */
Frederic Weisbecker8e983ff2018-06-26 04:58:49 +0200448int arch_check_bp_in_kernelspace(struct arch_hw_breakpoint *hw)
Will Deaconf81ef4a2010-09-03 10:41:08 +0100449{
450 unsigned int len;
451 unsigned long va;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100452
Frederic Weisbecker8e983ff2018-06-26 04:58:49 +0200453 va = hw->address;
454 len = get_hbp_len(hw->ctrl.len);
Will Deaconf81ef4a2010-09-03 10:41:08 +0100455
456 return (va >= TASK_SIZE) && ((va + len - 1) >= TASK_SIZE);
457}
458
459/*
460 * Extract generic type and length encodings from an arch_hw_breakpoint_ctrl.
461 * Hopefully this will disappear when ptrace can bypass the conversion
462 * to generic breakpoint descriptions.
463 */
464int arch_bp_generic_fields(struct arch_hw_breakpoint_ctrl ctrl,
465 int *gen_len, int *gen_type)
466{
467 /* Type */
468 switch (ctrl.type) {
469 case ARM_BREAKPOINT_EXECUTE:
470 *gen_type = HW_BREAKPOINT_X;
471 break;
472 case ARM_BREAKPOINT_LOAD:
473 *gen_type = HW_BREAKPOINT_R;
474 break;
475 case ARM_BREAKPOINT_STORE:
476 *gen_type = HW_BREAKPOINT_W;
477 break;
478 case ARM_BREAKPOINT_LOAD | ARM_BREAKPOINT_STORE:
479 *gen_type = HW_BREAKPOINT_RW;
480 break;
481 default:
482 return -EINVAL;
483 }
484
485 /* Len */
486 switch (ctrl.len) {
487 case ARM_BREAKPOINT_LEN_1:
488 *gen_len = HW_BREAKPOINT_LEN_1;
489 break;
490 case ARM_BREAKPOINT_LEN_2:
491 *gen_len = HW_BREAKPOINT_LEN_2;
492 break;
493 case ARM_BREAKPOINT_LEN_4:
494 *gen_len = HW_BREAKPOINT_LEN_4;
495 break;
496 case ARM_BREAKPOINT_LEN_8:
497 *gen_len = HW_BREAKPOINT_LEN_8;
498 break;
499 default:
500 return -EINVAL;
501 }
502
503 return 0;
504}
505
506/*
507 * Construct an arch_hw_breakpoint from a perf_event.
508 */
Frederic Weisbecker9d527182018-06-26 04:58:52 +0200509static int arch_build_bp_info(struct perf_event *bp,
510 const struct perf_event_attr *attr,
511 struct arch_hw_breakpoint *hw)
Will Deaconf81ef4a2010-09-03 10:41:08 +0100512{
Will Deaconf81ef4a2010-09-03 10:41:08 +0100513 /* Type */
Frederic Weisbecker9d527182018-06-26 04:58:52 +0200514 switch (attr->bp_type) {
Will Deaconf81ef4a2010-09-03 10:41:08 +0100515 case HW_BREAKPOINT_X:
Frederic Weisbecker9d527182018-06-26 04:58:52 +0200516 hw->ctrl.type = ARM_BREAKPOINT_EXECUTE;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100517 break;
518 case HW_BREAKPOINT_R:
Frederic Weisbecker9d527182018-06-26 04:58:52 +0200519 hw->ctrl.type = ARM_BREAKPOINT_LOAD;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100520 break;
521 case HW_BREAKPOINT_W:
Frederic Weisbecker9d527182018-06-26 04:58:52 +0200522 hw->ctrl.type = ARM_BREAKPOINT_STORE;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100523 break;
524 case HW_BREAKPOINT_RW:
Frederic Weisbecker9d527182018-06-26 04:58:52 +0200525 hw->ctrl.type = ARM_BREAKPOINT_LOAD | ARM_BREAKPOINT_STORE;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100526 break;
527 default:
528 return -EINVAL;
529 }
530
531 /* Len */
Frederic Weisbecker9d527182018-06-26 04:58:52 +0200532 switch (attr->bp_len) {
Will Deaconf81ef4a2010-09-03 10:41:08 +0100533 case HW_BREAKPOINT_LEN_1:
Frederic Weisbecker9d527182018-06-26 04:58:52 +0200534 hw->ctrl.len = ARM_BREAKPOINT_LEN_1;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100535 break;
536 case HW_BREAKPOINT_LEN_2:
Frederic Weisbecker9d527182018-06-26 04:58:52 +0200537 hw->ctrl.len = ARM_BREAKPOINT_LEN_2;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100538 break;
539 case HW_BREAKPOINT_LEN_4:
Frederic Weisbecker9d527182018-06-26 04:58:52 +0200540 hw->ctrl.len = ARM_BREAKPOINT_LEN_4;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100541 break;
542 case HW_BREAKPOINT_LEN_8:
Frederic Weisbecker9d527182018-06-26 04:58:52 +0200543 hw->ctrl.len = ARM_BREAKPOINT_LEN_8;
544 if ((hw->ctrl.type != ARM_BREAKPOINT_EXECUTE)
Will Deaconf81ef4a2010-09-03 10:41:08 +0100545 && max_watchpoint_len >= 8)
546 break;
Gustavo A. R. Silva2d0e9882019-07-28 18:02:41 -0500547 /* Else, fall through */
Will Deaconf81ef4a2010-09-03 10:41:08 +0100548 default:
549 return -EINVAL;
550 }
551
Will Deacon6ee33c22010-11-25 12:01:54 +0000552 /*
553 * Breakpoints must be of length 2 (thumb) or 4 (ARM) bytes.
554 * Watchpoints can be of length 1, 2, 4 or 8 bytes if supported
555 * by the hardware and must be aligned to the appropriate number of
556 * bytes.
557 */
Frederic Weisbecker9d527182018-06-26 04:58:52 +0200558 if (hw->ctrl.type == ARM_BREAKPOINT_EXECUTE &&
559 hw->ctrl.len != ARM_BREAKPOINT_LEN_2 &&
560 hw->ctrl.len != ARM_BREAKPOINT_LEN_4)
Will Deacon6ee33c22010-11-25 12:01:54 +0000561 return -EINVAL;
562
Will Deaconf81ef4a2010-09-03 10:41:08 +0100563 /* Address */
Frederic Weisbecker9d527182018-06-26 04:58:52 +0200564 hw->address = attr->bp_addr;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100565
566 /* Privilege */
Frederic Weisbecker9d527182018-06-26 04:58:52 +0200567 hw->ctrl.privilege = ARM_BREAKPOINT_USER;
568 if (arch_check_bp_in_kernelspace(hw))
569 hw->ctrl.privilege |= ARM_BREAKPOINT_PRIV;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100570
571 /* Enabled? */
Frederic Weisbecker9d527182018-06-26 04:58:52 +0200572 hw->ctrl.enabled = !attr->disabled;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100573
574 /* Mismatch */
Frederic Weisbecker9d527182018-06-26 04:58:52 +0200575 hw->ctrl.mismatch = 0;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100576
577 return 0;
578}
579
580/*
581 * Validate the arch-specific HW Breakpoint register settings.
582 */
Frederic Weisbecker9d527182018-06-26 04:58:52 +0200583int hw_breakpoint_arch_parse(struct perf_event *bp,
584 const struct perf_event_attr *attr,
585 struct arch_hw_breakpoint *hw)
Will Deaconf81ef4a2010-09-03 10:41:08 +0100586{
Will Deaconf81ef4a2010-09-03 10:41:08 +0100587 int ret = 0;
Will Deacon6ee33c22010-11-25 12:01:54 +0000588 u32 offset, alignment_mask = 0x3;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100589
Will Deacon0daa0342012-09-24 18:01:13 +0100590 /* Ensure that we are in monitor debug mode. */
591 if (!monitor_mode_enabled())
592 return -ENODEV;
593
Will Deaconf81ef4a2010-09-03 10:41:08 +0100594 /* Build the arch_hw_breakpoint. */
Frederic Weisbecker9d527182018-06-26 04:58:52 +0200595 ret = arch_build_bp_info(bp, attr, hw);
Will Deaconf81ef4a2010-09-03 10:41:08 +0100596 if (ret)
597 goto out;
598
599 /* Check address alignment. */
Frederic Weisbecker9d527182018-06-26 04:58:52 +0200600 if (hw->ctrl.len == ARM_BREAKPOINT_LEN_8)
Will Deaconf81ef4a2010-09-03 10:41:08 +0100601 alignment_mask = 0x7;
Frederic Weisbecker9d527182018-06-26 04:58:52 +0200602 offset = hw->address & alignment_mask;
Will Deacon6ee33c22010-11-25 12:01:54 +0000603 switch (offset) {
604 case 0:
605 /* Aligned */
606 break;
607 case 1:
Will Deacon6ee33c22010-11-25 12:01:54 +0000608 case 2:
609 /* Allow halfword watchpoints and breakpoints. */
Frederic Weisbecker9d527182018-06-26 04:58:52 +0200610 if (hw->ctrl.len == ARM_BREAKPOINT_LEN_2)
Will Deacon6ee33c22010-11-25 12:01:54 +0000611 break;
Gustavo A. R. Silva2d0e9882019-07-28 18:02:41 -0500612 /* Else, fall through */
Will Deacond968d2b2012-08-16 19:02:12 +0100613 case 3:
614 /* Allow single byte watchpoint. */
Frederic Weisbecker9d527182018-06-26 04:58:52 +0200615 if (hw->ctrl.len == ARM_BREAKPOINT_LEN_1)
Will Deacond968d2b2012-08-16 19:02:12 +0100616 break;
Gustavo A. R. Silva2d0e9882019-07-28 18:02:41 -0500617 /* Else, fall through */
Will Deacon6ee33c22010-11-25 12:01:54 +0000618 default:
619 ret = -EINVAL;
620 goto out;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100621 }
622
Frederic Weisbecker9d527182018-06-26 04:58:52 +0200623 hw->address &= ~alignment_mask;
624 hw->ctrl.len <<= offset;
Will Deacon6ee33c22010-11-25 12:01:54 +0000625
Wang Nan18794452016-03-28 06:41:30 +0000626 if (is_default_overflow_handler(bp)) {
Will Deaconbf880112012-08-16 18:55:44 +0100627 /*
628 * Mismatch breakpoints are required for single-stepping
629 * breakpoints.
630 */
631 if (!core_has_mismatch_brps())
632 return -EINVAL;
633
634 /* We don't allow mismatch breakpoints in kernel space. */
Frederic Weisbecker9d527182018-06-26 04:58:52 +0200635 if (arch_check_bp_in_kernelspace(hw))
Will Deaconbf880112012-08-16 18:55:44 +0100636 return -EPERM;
637
638 /*
639 * Per-cpu breakpoints are not supported by our stepping
640 * mechanism.
641 */
Peter Zijlstra50f16a82015-03-05 22:10:19 +0100642 if (!bp->hw.target)
Will Deaconbf880112012-08-16 18:55:44 +0100643 return -EINVAL;
644
645 /*
646 * We only support specific access types if the fsr
647 * reports them.
648 */
649 if (!debug_exception_updates_fsr() &&
Frederic Weisbecker9d527182018-06-26 04:58:52 +0200650 (hw->ctrl.type == ARM_BREAKPOINT_LOAD ||
651 hw->ctrl.type == ARM_BREAKPOINT_STORE))
Will Deaconbf880112012-08-16 18:55:44 +0100652 return -EINVAL;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100653 }
Will Deaconbf880112012-08-16 18:55:44 +0100654
Will Deaconf81ef4a2010-09-03 10:41:08 +0100655out:
656 return ret;
657}
658
Will Deacon9ebb3cb2010-12-01 14:12:13 +0000659/*
660 * Enable/disable single-stepping over the breakpoint bp at address addr.
661 */
662static void enable_single_step(struct perf_event *bp, u32 addr)
Will Deaconf81ef4a2010-09-03 10:41:08 +0100663{
Will Deacon9ebb3cb2010-12-01 14:12:13 +0000664 struct arch_hw_breakpoint *info = counter_arch_bp(bp);
Will Deaconf81ef4a2010-09-03 10:41:08 +0100665
Will Deacon9ebb3cb2010-12-01 14:12:13 +0000666 arch_uninstall_hw_breakpoint(bp);
667 info->step_ctrl.mismatch = 1;
668 info->step_ctrl.len = ARM_BREAKPOINT_LEN_4;
669 info->step_ctrl.type = ARM_BREAKPOINT_EXECUTE;
670 info->step_ctrl.privilege = info->ctrl.privilege;
671 info->step_ctrl.enabled = 1;
672 info->trigger = addr;
673 arch_install_hw_breakpoint(bp);
674}
Will Deaconf81ef4a2010-09-03 10:41:08 +0100675
Will Deacon9ebb3cb2010-12-01 14:12:13 +0000676static void disable_single_step(struct perf_event *bp)
677{
678 arch_uninstall_hw_breakpoint(bp);
679 counter_arch_bp(bp)->step_ctrl.enabled = 0;
680 arch_install_hw_breakpoint(bp);
Will Deaconf81ef4a2010-09-03 10:41:08 +0100681}
682
Will Deacon6f26aa02011-08-02 16:16:57 +0100683static void watchpoint_handler(unsigned long addr, unsigned int fsr,
684 struct pt_regs *regs)
Will Deaconf81ef4a2010-09-03 10:41:08 +0100685{
Will Deacon6f26aa02011-08-02 16:16:57 +0100686 int i, access;
687 u32 val, ctrl_reg, alignment_mask;
Will Deacon4a55c182010-11-29 17:06:53 +0000688 struct perf_event *wp, **slots;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100689 struct arch_hw_breakpoint *info;
Will Deacon6f26aa02011-08-02 16:16:57 +0100690 struct arch_hw_breakpoint_ctrl ctrl;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100691
Christoph Lameter1436c1a2013-10-21 13:17:08 +0100692 slots = this_cpu_ptr(wp_on_reg);
Will Deacon4a55c182010-11-29 17:06:53 +0000693
Will Deaconf81ef4a2010-09-03 10:41:08 +0100694 for (i = 0; i < core_num_wrps; ++i) {
695 rcu_read_lock();
696
Will Deacon93a04a32010-11-29 16:56:01 +0000697 wp = slots[i];
698
Will Deacon6f26aa02011-08-02 16:16:57 +0100699 if (wp == NULL)
700 goto unlock;
701
702 info = counter_arch_bp(wp);
703 /*
704 * The DFAR is an unknown value on debug architectures prior
705 * to 7.1. Since we only allow a single watchpoint on these
706 * older CPUs, we can set the trigger to the lowest possible
707 * faulting address.
708 */
709 if (debug_arch < ARM_DEBUG_ARCH_V7_1) {
710 BUG_ON(i > 0);
711 info->trigger = wp->attr.bp_addr;
712 } else {
713 if (info->ctrl.len == ARM_BREAKPOINT_LEN_8)
714 alignment_mask = 0x7;
715 else
716 alignment_mask = 0x3;
717
718 /* Check if the watchpoint value matches. */
719 val = read_wb_reg(ARM_BASE_WVR + i);
720 if (val != (addr & ~alignment_mask))
721 goto unlock;
722
723 /* Possible match, check the byte address select. */
724 ctrl_reg = read_wb_reg(ARM_BASE_WCR + i);
725 decode_ctrl_reg(ctrl_reg, &ctrl);
726 if (!((1 << (addr & alignment_mask)) & ctrl.len))
727 goto unlock;
728
729 /* Check that the access type matches. */
Will Deaconbf880112012-08-16 18:55:44 +0100730 if (debug_exception_updates_fsr()) {
731 access = (fsr & ARM_FSR_ACCESS_MASK) ?
732 HW_BREAKPOINT_W : HW_BREAKPOINT_R;
733 if (!(access & hw_breakpoint_type(wp)))
734 goto unlock;
735 }
Will Deacon6f26aa02011-08-02 16:16:57 +0100736
737 /* We have a winner. */
738 info->trigger = addr;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100739 }
740
Will Deaconf81ef4a2010-09-03 10:41:08 +0100741 pr_debug("watchpoint fired: address = 0x%x\n", info->trigger);
Will Deacon93a04a32010-11-29 16:56:01 +0000742 perf_bp_event(wp, regs);
Will Deaconf81ef4a2010-09-03 10:41:08 +0100743
744 /*
745 * If no overflow handler is present, insert a temporary
746 * mismatch breakpoint so we can single-step over the
747 * watchpoint trigger.
748 */
Wang Nan18794452016-03-28 06:41:30 +0000749 if (is_default_overflow_handler(wp))
Will Deacon9ebb3cb2010-12-01 14:12:13 +0000750 enable_single_step(wp, instruction_pointer(regs));
Will Deaconf81ef4a2010-09-03 10:41:08 +0100751
Will Deacon6f26aa02011-08-02 16:16:57 +0100752unlock:
Will Deaconf81ef4a2010-09-03 10:41:08 +0100753 rcu_read_unlock();
754 }
755}
756
Will Deacon93a04a32010-11-29 16:56:01 +0000757static void watchpoint_single_step_handler(unsigned long pc)
758{
759 int i;
Will Deacon4a55c182010-11-29 17:06:53 +0000760 struct perf_event *wp, **slots;
Will Deacon93a04a32010-11-29 16:56:01 +0000761 struct arch_hw_breakpoint *info;
762
Christoph Lameter1436c1a2013-10-21 13:17:08 +0100763 slots = this_cpu_ptr(wp_on_reg);
Will Deacon4a55c182010-11-29 17:06:53 +0000764
Will Deaconc512de92011-08-02 13:01:17 +0100765 for (i = 0; i < core_num_wrps; ++i) {
Will Deacon93a04a32010-11-29 16:56:01 +0000766 rcu_read_lock();
767
768 wp = slots[i];
769
770 if (wp == NULL)
771 goto unlock;
772
773 info = counter_arch_bp(wp);
774 if (!info->step_ctrl.enabled)
775 goto unlock;
776
777 /*
778 * Restore the original watchpoint if we've completed the
779 * single-step.
780 */
Will Deacon9ebb3cb2010-12-01 14:12:13 +0000781 if (info->trigger != pc)
782 disable_single_step(wp);
Will Deacon93a04a32010-11-29 16:56:01 +0000783
784unlock:
785 rcu_read_unlock();
786 }
787}
788
Will Deaconf81ef4a2010-09-03 10:41:08 +0100789static void breakpoint_handler(unsigned long unknown, struct pt_regs *regs)
790{
791 int i;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100792 u32 ctrl_reg, val, addr;
Will Deacon4a55c182010-11-29 17:06:53 +0000793 struct perf_event *bp, **slots;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100794 struct arch_hw_breakpoint *info;
795 struct arch_hw_breakpoint_ctrl ctrl;
796
Christoph Lameter1436c1a2013-10-21 13:17:08 +0100797 slots = this_cpu_ptr(bp_on_reg);
Will Deacon4a55c182010-11-29 17:06:53 +0000798
Will Deaconf81ef4a2010-09-03 10:41:08 +0100799 /* The exception entry code places the amended lr in the PC. */
800 addr = regs->ARM_pc;
801
Will Deacon93a04a32010-11-29 16:56:01 +0000802 /* Check the currently installed breakpoints first. */
803 for (i = 0; i < core_num_brps; ++i) {
Will Deaconf81ef4a2010-09-03 10:41:08 +0100804 rcu_read_lock();
805
806 bp = slots[i];
807
Will Deacon9ebb3cb2010-12-01 14:12:13 +0000808 if (bp == NULL)
809 goto unlock;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100810
Will Deacon9ebb3cb2010-12-01 14:12:13 +0000811 info = counter_arch_bp(bp);
Will Deaconf81ef4a2010-09-03 10:41:08 +0100812
813 /* Check if the breakpoint value matches. */
814 val = read_wb_reg(ARM_BASE_BVR + i);
815 if (val != (addr & ~0x3))
Will Deacon9ebb3cb2010-12-01 14:12:13 +0000816 goto mismatch;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100817
818 /* Possible match, check the byte address select to confirm. */
819 ctrl_reg = read_wb_reg(ARM_BASE_BCR + i);
820 decode_ctrl_reg(ctrl_reg, &ctrl);
821 if ((1 << (addr & 0x3)) & ctrl.len) {
Will Deaconf81ef4a2010-09-03 10:41:08 +0100822 info->trigger = addr;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100823 pr_debug("breakpoint fired: address = 0x%x\n", addr);
824 perf_bp_event(bp, regs);
Will Deacon9ebb3cb2010-12-01 14:12:13 +0000825 if (!bp->overflow_handler)
826 enable_single_step(bp, addr);
827 goto unlock;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100828 }
829
Will Deacon9ebb3cb2010-12-01 14:12:13 +0000830mismatch:
831 /* If we're stepping a breakpoint, it can now be restored. */
832 if (info->step_ctrl.enabled)
833 disable_single_step(bp);
834unlock:
Will Deaconf81ef4a2010-09-03 10:41:08 +0100835 rcu_read_unlock();
836 }
Will Deacon93a04a32010-11-29 16:56:01 +0000837
838 /* Handle any pending watchpoint single-step breakpoints. */
839 watchpoint_single_step_handler(addr);
Will Deaconf81ef4a2010-09-03 10:41:08 +0100840}
841
842/*
843 * Called from either the Data Abort Handler [watchpoint] or the
Russell King02fe2842011-06-25 11:44:06 +0100844 * Prefetch Abort Handler [breakpoint] with interrupts disabled.
Will Deaconf81ef4a2010-09-03 10:41:08 +0100845 */
846static int hw_breakpoint_pending(unsigned long addr, unsigned int fsr,
847 struct pt_regs *regs)
848{
Will Deacon7e202692010-11-28 14:57:24 +0000849 int ret = 0;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100850 u32 dscr;
851
Russell King02fe2842011-06-25 11:44:06 +0100852 preempt_disable();
853
854 if (interrupts_enabled(regs))
855 local_irq_enable();
Will Deacon7e202692010-11-28 14:57:24 +0000856
Will Deaconf81ef4a2010-09-03 10:41:08 +0100857 /* We only handle watchpoints and hardware breakpoints. */
Dietmar Eggemann9e962f72012-09-26 17:28:47 +0100858 ARM_DBG_READ(c0, c1, 0, dscr);
Will Deaconf81ef4a2010-09-03 10:41:08 +0100859
860 /* Perform perf callbacks. */
861 switch (ARM_DSCR_MOE(dscr)) {
862 case ARM_ENTRY_BREAKPOINT:
863 breakpoint_handler(addr, regs);
864 break;
865 case ARM_ENTRY_ASYNC_WATCHPOINT:
Joe Perches235584b2010-10-30 14:21:24 -0700866 WARN(1, "Asynchronous watchpoint exception taken. Debugging results may be unreliable\n");
Gustavo A. R. Silva2d0e9882019-07-28 18:02:41 -0500867 /* Fall through */
Will Deaconf81ef4a2010-09-03 10:41:08 +0100868 case ARM_ENTRY_SYNC_WATCHPOINT:
Will Deacon6f26aa02011-08-02 16:16:57 +0100869 watchpoint_handler(addr, fsr, regs);
Will Deaconf81ef4a2010-09-03 10:41:08 +0100870 break;
871 default:
Will Deacon7e202692010-11-28 14:57:24 +0000872 ret = 1; /* Unhandled fault. */
Will Deaconf81ef4a2010-09-03 10:41:08 +0100873 }
874
Will Deacon7e202692010-11-28 14:57:24 +0000875 preempt_enable();
876
Will Deaconf81ef4a2010-09-03 10:41:08 +0100877 return ret;
878}
879
880/*
881 * One-time initialisation.
882 */
Will Deacon0d352e32011-08-08 14:26:53 +0100883static cpumask_t debug_err_mask;
884
885static int debug_reg_trap(struct pt_regs *regs, unsigned int instr)
886{
887 int cpu = smp_processor_id();
888
Joe Perches8b521cb2014-09-16 20:41:43 +0100889 pr_warn("Debug register access (0x%x) caused undefined instruction on CPU %d\n",
890 instr, cpu);
Will Deacon0d352e32011-08-08 14:26:53 +0100891
892 /* Set the error flag for this CPU and skip the faulting instruction. */
893 cpumask_set_cpu(cpu, &debug_err_mask);
894 instruction_pointer(regs) += 4;
895 return 0;
896}
897
898static struct undef_hook debug_reg_hook = {
899 .instr_mask = 0x0fe80f10,
900 .instr_val = 0x0e000e10,
901 .fn = debug_reg_trap,
902};
903
Dietmar Eggemann57ba8992012-10-14 21:08:14 +0100904/* Does this core support OS Save and Restore? */
905static bool core_has_os_save_restore(void)
906{
907 u32 oslsr;
908
909 switch (get_debug_arch()) {
910 case ARM_DEBUG_ARCH_V7_1:
911 return true;
912 case ARM_DEBUG_ARCH_V7_ECP14:
913 ARM_DBG_READ(c1, c1, 4, oslsr);
914 if (oslsr & ARM_OSLSR_OSLM0)
915 return true;
Gustavo A. R. Silva2d0e9882019-07-28 18:02:41 -0500916 /* Else, fall through */
Dietmar Eggemann57ba8992012-10-14 21:08:14 +0100917 default:
918 return false;
919 }
920}
921
Sebastian Andrzej Siewior9b377e212016-11-17 19:35:36 +0100922static void reset_ctrl_regs(unsigned int cpu)
Will Deaconf81ef4a2010-09-03 10:41:08 +0100923{
Sebastian Andrzej Siewior9b377e212016-11-17 19:35:36 +0100924 int i, raw_num_brps, err = 0;
Will Deacone64877d2012-09-21 14:53:13 +0100925 u32 val;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100926
Will Deaconac88e072010-11-24 16:51:17 +0000927 /*
928 * v7 debug contains save and restore registers so that debug state
Will Deaconed19b732011-02-11 15:55:12 +0100929 * can be maintained across low-power modes without leaving the debug
930 * logic powered up. It is IMPLEMENTATION DEFINED whether we can access
931 * the debug registers out of reset, so we must unlock the OS Lock
932 * Access Register to avoid taking undefined instruction exceptions
933 * later on.
Will Deaconac88e072010-11-24 16:51:17 +0000934 */
Will Deaconb5d5b8f2011-07-22 18:27:37 +0100935 switch (debug_arch) {
Will Deacona26bce12011-10-07 15:57:55 +0100936 case ARM_DEBUG_ARCH_V6:
937 case ARM_DEBUG_ARCH_V6_1:
Will Deacon7f4050a2012-09-21 17:53:08 +0100938 /* ARMv6 cores clear the registers out of reset. */
939 goto out_mdbgen;
Will Deaconb5d5b8f2011-07-22 18:27:37 +0100940 case ARM_DEBUG_ARCH_V7_ECP14:
Will Deaconac88e072010-11-24 16:51:17 +0000941 /*
Will Deaconc09bae72011-02-25 20:20:42 +0100942 * Ensure sticky power-down is clear (i.e. debug logic is
943 * powered up).
944 */
Dietmar Eggemann9e962f72012-09-26 17:28:47 +0100945 ARM_DBG_READ(c1, c5, 4, val);
Will Deacone64877d2012-09-21 14:53:13 +0100946 if ((val & 0x1) == 0)
Will Deaconb5d5b8f2011-07-22 18:27:37 +0100947 err = -EPERM;
Will Deacone64877d2012-09-21 14:53:13 +0100948
Dietmar Eggemann57ba8992012-10-14 21:08:14 +0100949 if (!has_ossr)
Will Deacone64877d2012-09-21 14:53:13 +0100950 goto clear_vcr;
Will Deaconb5d5b8f2011-07-22 18:27:37 +0100951 break;
952 case ARM_DEBUG_ARCH_V7_1:
Will Deaconc09bae72011-02-25 20:20:42 +0100953 /*
Will Deaconb5d5b8f2011-07-22 18:27:37 +0100954 * Ensure the OS double lock is clear.
Will Deaconac88e072010-11-24 16:51:17 +0000955 */
Dietmar Eggemann9e962f72012-09-26 17:28:47 +0100956 ARM_DBG_READ(c1, c3, 4, val);
Will Deacone64877d2012-09-21 14:53:13 +0100957 if ((val & 0x1) == 1)
Will Deaconb5d5b8f2011-07-22 18:27:37 +0100958 err = -EPERM;
959 break;
Will Deaconac88e072010-11-24 16:51:17 +0000960 }
961
Will Deaconb5d5b8f2011-07-22 18:27:37 +0100962 if (err) {
Santosh Shilimkar68a154f2013-03-20 17:30:30 +0100963 pr_warn_once("CPU %d debug is powered down!\n", cpu);
Will Deacon0d352e32011-08-08 14:26:53 +0100964 cpumask_or(&debug_err_mask, &debug_err_mask, cpumask_of(cpu));
Will Deaconb5d5b8f2011-07-22 18:27:37 +0100965 return;
966 }
967
968 /*
Will Deacone64877d2012-09-21 14:53:13 +0100969 * Unconditionally clear the OS lock by writing a value
Dietmar Eggemann02051ea2012-10-14 20:23:04 +0100970 * other than CS_LAR_KEY to the access register.
Will Deaconb5d5b8f2011-07-22 18:27:37 +0100971 */
Mathieu Poirier184901a2014-11-03 11:07:46 -0700972 ARM_DBG_WRITE(c1, c0, 4, ~CORESIGHT_UNLOCK);
Will Deaconb5d5b8f2011-07-22 18:27:37 +0100973 isb();
974
975 /*
976 * Clear any configured vector-catch events before
977 * enabling monitor mode.
978 */
Will Deacone64877d2012-09-21 14:53:13 +0100979clear_vcr:
Dietmar Eggemann9e962f72012-09-26 17:28:47 +0100980 ARM_DBG_WRITE(c0, c7, 0, 0);
Will Deaconb5d5b8f2011-07-22 18:27:37 +0100981 isb();
982
Will Deacon614bea52012-09-21 15:38:26 +0100983 if (cpumask_intersects(&debug_err_mask, cpumask_of(cpu))) {
Santosh Shilimkar68a154f2013-03-20 17:30:30 +0100984 pr_warn_once("CPU %d failed to disable vector catch\n", cpu);
Will Deaconf81ef4a2010-09-03 10:41:08 +0100985 return;
Will Deacon614bea52012-09-21 15:38:26 +0100986 }
Will Deaconf81ef4a2010-09-03 10:41:08 +0100987
Will Deacon614bea52012-09-21 15:38:26 +0100988 /*
989 * The control/value register pairs are UNKNOWN out of reset so
990 * clear them to avoid spurious debug events.
991 */
Will Deaconc512de92011-08-02 13:01:17 +0100992 raw_num_brps = get_num_brp_resources();
993 for (i = 0; i < raw_num_brps; ++i) {
Will Deaconf81ef4a2010-09-03 10:41:08 +0100994 write_wb_reg(ARM_BASE_BCR + i, 0UL);
995 write_wb_reg(ARM_BASE_BVR + i, 0UL);
996 }
997
998 for (i = 0; i < core_num_wrps; ++i) {
999 write_wb_reg(ARM_BASE_WCR + i, 0UL);
1000 write_wb_reg(ARM_BASE_WVR + i, 0UL);
1001 }
Will Deacon614bea52012-09-21 15:38:26 +01001002
1003 if (cpumask_intersects(&debug_err_mask, cpumask_of(cpu))) {
Santosh Shilimkar68a154f2013-03-20 17:30:30 +01001004 pr_warn_once("CPU %d failed to clear debug register pairs\n", cpu);
Will Deacon614bea52012-09-21 15:38:26 +01001005 return;
1006 }
1007
1008 /*
1009 * Have a crack at enabling monitor mode. We don't actually need
1010 * it yet, but reporting an error early is useful if it fails.
1011 */
Will Deacon7f4050a2012-09-21 17:53:08 +01001012out_mdbgen:
Will Deacon614bea52012-09-21 15:38:26 +01001013 if (enable_monitor_mode())
1014 cpumask_or(&debug_err_mask, &debug_err_mask, cpumask_of(cpu));
Will Deaconf81ef4a2010-09-03 10:41:08 +01001015}
1016
Sebastian Andrzej Siewior9b377e212016-11-17 19:35:36 +01001017static int dbg_reset_online(unsigned int cpu)
Will Deacon7d993312010-11-24 17:45:49 +00001018{
Sebastian Andrzej Siewior9b377e212016-11-17 19:35:36 +01001019 local_irq_disable();
1020 reset_ctrl_regs(cpu);
1021 local_irq_enable();
1022 return 0;
Will Deacon7d993312010-11-24 17:45:49 +00001023}
1024
Dietmar Eggemann9a6eb312012-10-14 22:25:37 +01001025#ifdef CONFIG_CPU_PM
1026static int dbg_cpu_pm_notify(struct notifier_block *self, unsigned long action,
1027 void *v)
1028{
1029 if (action == CPU_PM_EXIT)
Sebastian Andrzej Siewior9b377e212016-11-17 19:35:36 +01001030 reset_ctrl_regs(smp_processor_id());
Dietmar Eggemann9a6eb312012-10-14 22:25:37 +01001031
1032 return NOTIFY_OK;
1033}
1034
Bastian Hecht50acff32013-04-12 19:03:50 +01001035static struct notifier_block dbg_cpu_pm_nb = {
Dietmar Eggemann9a6eb312012-10-14 22:25:37 +01001036 .notifier_call = dbg_cpu_pm_notify,
1037};
1038
1039static void __init pm_init(void)
1040{
1041 cpu_pm_register_notifier(&dbg_cpu_pm_nb);
1042}
1043#else
1044static inline void pm_init(void)
1045{
1046}
1047#endif
1048
Will Deaconf81ef4a2010-09-03 10:41:08 +01001049static int __init arch_hw_breakpoint_init(void)
1050{
Sebastian Andrzej Siewior9b377e212016-11-17 19:35:36 +01001051 int ret;
1052
Will Deaconf81ef4a2010-09-03 10:41:08 +01001053 debug_arch = get_debug_arch();
1054
Will Deacon66e1cfe2011-02-11 16:01:42 +01001055 if (!debug_arch_supported()) {
Will Deaconf81ef4a2010-09-03 10:41:08 +01001056 pr_info("debug architecture 0x%x unsupported.\n", debug_arch);
Will Deacon8fbf3972010-12-01 17:37:45 +00001057 return 0;
Will Deaconf81ef4a2010-09-03 10:41:08 +01001058 }
1059
Mark Rutlandddc37832017-01-06 13:12:47 +01001060 /*
1061 * Scorpion CPUs (at least those in APQ8060) seem to set DBGPRSR.SPD
1062 * whenever a WFI is issued, even if the core is not powered down, in
1063 * violation of the architecture. When DBGPRSR.SPD is set, accesses to
1064 * breakpoint and watchpoint registers are treated as undefined, so
1065 * this results in boot time and runtime failures when these are
1066 * accessed and we unexpectedly take a trap.
1067 *
1068 * It's not clear if/how this can be worked around, so we blacklist
1069 * Scorpion CPUs to avoid these issues.
1070 */
1071 if (read_cpuid_part() == ARM_CPU_PART_SCORPION) {
1072 pr_info("Scorpion CPU detected. Hardware breakpoints and watchpoints disabled\n");
1073 return 0;
1074 }
1075
Dietmar Eggemann57ba8992012-10-14 21:08:14 +01001076 has_ossr = core_has_os_save_restore();
1077
Will Deaconf81ef4a2010-09-03 10:41:08 +01001078 /* Determine how many BRPs/WRPs are available. */
1079 core_num_brps = get_num_brps();
1080 core_num_wrps = get_num_wrps();
1081
Will Deacon0d352e32011-08-08 14:26:53 +01001082 /*
1083 * We need to tread carefully here because DBGSWENABLE may be
1084 * driven low on this core and there isn't an architected way to
1085 * determine that.
1086 */
Sebastian Andrzej Siewiorfe2a5cd2017-05-24 10:15:25 +02001087 cpus_read_lock();
Will Deacon0d352e32011-08-08 14:26:53 +01001088 register_undef_hook(&debug_reg_hook);
Will Deaconf81ef4a2010-09-03 10:41:08 +01001089
Will Deaconed19b732011-02-11 15:55:12 +01001090 /*
Sebastian Andrzej Siewior9b377e212016-11-17 19:35:36 +01001091 * Register CPU notifier which resets the breakpoint resources. We
1092 * assume that a halting debugger will leave the world in a nice state
1093 * for us.
Will Deaconed19b732011-02-11 15:55:12 +01001094 */
Sebastian Andrzej Siewiorfe2a5cd2017-05-24 10:15:25 +02001095 ret = cpuhp_setup_state_cpuslocked(CPUHP_AP_ONLINE_DYN,
1096 "arm/hw_breakpoint:online",
1097 dbg_reset_online, NULL);
Will Deacon0d352e32011-08-08 14:26:53 +01001098 unregister_undef_hook(&debug_reg_hook);
Sebastian Andrzej Siewior9b377e212016-11-17 19:35:36 +01001099 if (WARN_ON(ret < 0) || !cpumask_empty(&debug_err_mask)) {
Will Deaconc09bae72011-02-25 20:20:42 +01001100 core_num_brps = 0;
Will Deaconc09bae72011-02-25 20:20:42 +01001101 core_num_wrps = 0;
Sebastian Andrzej Siewior9b377e212016-11-17 19:35:36 +01001102 if (ret > 0)
Tony Lindgren1b3b2252017-06-16 01:22:38 -07001103 cpuhp_remove_state_nocalls_cpuslocked(ret);
Sebastian Andrzej Siewiorfe2a5cd2017-05-24 10:15:25 +02001104 cpus_read_unlock();
Will Deaconc09bae72011-02-25 20:20:42 +01001105 return 0;
1106 }
Will Deaconed19b732011-02-11 15:55:12 +01001107
Will Deacon0d352e32011-08-08 14:26:53 +01001108 pr_info("found %d " "%s" "breakpoint and %d watchpoint registers.\n",
1109 core_num_brps, core_has_mismatch_brps() ? "(+1 reserved) " :
1110 "", core_num_wrps);
1111
Will Deaconb59a5402012-09-21 15:08:17 +01001112 /* Work out the maximum supported watchpoint length. */
1113 max_watchpoint_len = get_max_wp_len();
1114 pr_info("maximum watchpoint size is %u bytes.\n",
1115 max_watchpoint_len);
Will Deaconf81ef4a2010-09-03 10:41:08 +01001116
1117 /* Register debug fault handler. */
Catalin Marinasf7b81562011-11-22 17:30:31 +00001118 hook_fault_code(FAULT_CODE_DEBUG, hw_breakpoint_pending, SIGTRAP,
1119 TRAP_HWBKPT, "watchpoint debug exception");
1120 hook_ifault_code(FAULT_CODE_DEBUG, hw_breakpoint_pending, SIGTRAP,
1121 TRAP_HWBKPT, "breakpoint debug exception");
Sebastian Andrzej Siewiorfe2a5cd2017-05-24 10:15:25 +02001122 cpus_read_unlock();
Will Deaconf81ef4a2010-09-03 10:41:08 +01001123
Sebastian Andrzej Siewior9b377e212016-11-17 19:35:36 +01001124 /* Register PM notifiers. */
Dietmar Eggemann9a6eb312012-10-14 22:25:37 +01001125 pm_init();
Will Deacon8fbf3972010-12-01 17:37:45 +00001126 return 0;
Will Deaconf81ef4a2010-09-03 10:41:08 +01001127}
1128arch_initcall(arch_hw_breakpoint_init);
1129
1130void hw_breakpoint_pmu_read(struct perf_event *bp)
1131{
1132}
1133
1134/*
1135 * Dummy function to register with die_notifier.
1136 */
1137int hw_breakpoint_exceptions_notify(struct notifier_block *unused,
1138 unsigned long val, void *data)
1139{
1140 return NOTIFY_DONE;
1141}