blob: af8b8e15f589d0dee271c6217373ee296476cd66 [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 Deacon614bea502012-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 Deacon614bea502012-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 Deacon614bea502012-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;
547 default:
548 return -EINVAL;
549 }
550
Will Deacon6ee33c22010-11-25 12:01:54 +0000551 /*
552 * Breakpoints must be of length 2 (thumb) or 4 (ARM) bytes.
553 * Watchpoints can be of length 1, 2, 4 or 8 bytes if supported
554 * by the hardware and must be aligned to the appropriate number of
555 * bytes.
556 */
Frederic Weisbecker9d527182018-06-26 04:58:52 +0200557 if (hw->ctrl.type == ARM_BREAKPOINT_EXECUTE &&
558 hw->ctrl.len != ARM_BREAKPOINT_LEN_2 &&
559 hw->ctrl.len != ARM_BREAKPOINT_LEN_4)
Will Deacon6ee33c22010-11-25 12:01:54 +0000560 return -EINVAL;
561
Will Deaconf81ef4a2010-09-03 10:41:08 +0100562 /* Address */
Frederic Weisbecker9d527182018-06-26 04:58:52 +0200563 hw->address = attr->bp_addr;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100564
565 /* Privilege */
Frederic Weisbecker9d527182018-06-26 04:58:52 +0200566 hw->ctrl.privilege = ARM_BREAKPOINT_USER;
567 if (arch_check_bp_in_kernelspace(hw))
568 hw->ctrl.privilege |= ARM_BREAKPOINT_PRIV;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100569
570 /* Enabled? */
Frederic Weisbecker9d527182018-06-26 04:58:52 +0200571 hw->ctrl.enabled = !attr->disabled;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100572
573 /* Mismatch */
Frederic Weisbecker9d527182018-06-26 04:58:52 +0200574 hw->ctrl.mismatch = 0;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100575
576 return 0;
577}
578
579/*
580 * Validate the arch-specific HW Breakpoint register settings.
581 */
Frederic Weisbecker9d527182018-06-26 04:58:52 +0200582int hw_breakpoint_arch_parse(struct perf_event *bp,
583 const struct perf_event_attr *attr,
584 struct arch_hw_breakpoint *hw)
Will Deaconf81ef4a2010-09-03 10:41:08 +0100585{
Will Deaconf81ef4a2010-09-03 10:41:08 +0100586 int ret = 0;
Will Deacon6ee33c22010-11-25 12:01:54 +0000587 u32 offset, alignment_mask = 0x3;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100588
Will Deacon0daa0342012-09-24 18:01:13 +0100589 /* Ensure that we are in monitor debug mode. */
590 if (!monitor_mode_enabled())
591 return -ENODEV;
592
Will Deaconf81ef4a2010-09-03 10:41:08 +0100593 /* Build the arch_hw_breakpoint. */
Frederic Weisbecker9d527182018-06-26 04:58:52 +0200594 ret = arch_build_bp_info(bp, attr, hw);
Will Deaconf81ef4a2010-09-03 10:41:08 +0100595 if (ret)
596 goto out;
597
598 /* Check address alignment. */
Frederic Weisbecker9d527182018-06-26 04:58:52 +0200599 if (hw->ctrl.len == ARM_BREAKPOINT_LEN_8)
Will Deaconf81ef4a2010-09-03 10:41:08 +0100600 alignment_mask = 0x7;
Frederic Weisbecker9d527182018-06-26 04:58:52 +0200601 offset = hw->address & alignment_mask;
Will Deacon6ee33c22010-11-25 12:01:54 +0000602 switch (offset) {
603 case 0:
604 /* Aligned */
605 break;
606 case 1:
Will Deacon6ee33c22010-11-25 12:01:54 +0000607 case 2:
608 /* Allow halfword watchpoints and breakpoints. */
Frederic Weisbecker9d527182018-06-26 04:58:52 +0200609 if (hw->ctrl.len == ARM_BREAKPOINT_LEN_2)
Will Deacon6ee33c22010-11-25 12:01:54 +0000610 break;
Will Deacond968d2b2012-08-16 19:02:12 +0100611 case 3:
612 /* Allow single byte watchpoint. */
Frederic Weisbecker9d527182018-06-26 04:58:52 +0200613 if (hw->ctrl.len == ARM_BREAKPOINT_LEN_1)
Will Deacond968d2b2012-08-16 19:02:12 +0100614 break;
Will Deacon6ee33c22010-11-25 12:01:54 +0000615 default:
616 ret = -EINVAL;
617 goto out;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100618 }
619
Frederic Weisbecker9d527182018-06-26 04:58:52 +0200620 hw->address &= ~alignment_mask;
621 hw->ctrl.len <<= offset;
Will Deacon6ee33c22010-11-25 12:01:54 +0000622
Wang Nan18794452016-03-28 06:41:30 +0000623 if (is_default_overflow_handler(bp)) {
Will Deaconbf880112012-08-16 18:55:44 +0100624 /*
625 * Mismatch breakpoints are required for single-stepping
626 * breakpoints.
627 */
628 if (!core_has_mismatch_brps())
629 return -EINVAL;
630
631 /* We don't allow mismatch breakpoints in kernel space. */
Frederic Weisbecker9d527182018-06-26 04:58:52 +0200632 if (arch_check_bp_in_kernelspace(hw))
Will Deaconbf880112012-08-16 18:55:44 +0100633 return -EPERM;
634
635 /*
636 * Per-cpu breakpoints are not supported by our stepping
637 * mechanism.
638 */
Peter Zijlstra50f16a82015-03-05 22:10:19 +0100639 if (!bp->hw.target)
Will Deaconbf880112012-08-16 18:55:44 +0100640 return -EINVAL;
641
642 /*
643 * We only support specific access types if the fsr
644 * reports them.
645 */
646 if (!debug_exception_updates_fsr() &&
Frederic Weisbecker9d527182018-06-26 04:58:52 +0200647 (hw->ctrl.type == ARM_BREAKPOINT_LOAD ||
648 hw->ctrl.type == ARM_BREAKPOINT_STORE))
Will Deaconbf880112012-08-16 18:55:44 +0100649 return -EINVAL;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100650 }
Will Deaconbf880112012-08-16 18:55:44 +0100651
Will Deaconf81ef4a2010-09-03 10:41:08 +0100652out:
653 return ret;
654}
655
Will Deacon9ebb3cb2010-12-01 14:12:13 +0000656/*
657 * Enable/disable single-stepping over the breakpoint bp at address addr.
658 */
659static void enable_single_step(struct perf_event *bp, u32 addr)
Will Deaconf81ef4a2010-09-03 10:41:08 +0100660{
Will Deacon9ebb3cb2010-12-01 14:12:13 +0000661 struct arch_hw_breakpoint *info = counter_arch_bp(bp);
Will Deaconf81ef4a2010-09-03 10:41:08 +0100662
Will Deacon9ebb3cb2010-12-01 14:12:13 +0000663 arch_uninstall_hw_breakpoint(bp);
664 info->step_ctrl.mismatch = 1;
665 info->step_ctrl.len = ARM_BREAKPOINT_LEN_4;
666 info->step_ctrl.type = ARM_BREAKPOINT_EXECUTE;
667 info->step_ctrl.privilege = info->ctrl.privilege;
668 info->step_ctrl.enabled = 1;
669 info->trigger = addr;
670 arch_install_hw_breakpoint(bp);
671}
Will Deaconf81ef4a2010-09-03 10:41:08 +0100672
Will Deacon9ebb3cb2010-12-01 14:12:13 +0000673static void disable_single_step(struct perf_event *bp)
674{
675 arch_uninstall_hw_breakpoint(bp);
676 counter_arch_bp(bp)->step_ctrl.enabled = 0;
677 arch_install_hw_breakpoint(bp);
Will Deaconf81ef4a2010-09-03 10:41:08 +0100678}
679
Will Deacon6f26aa02011-08-02 16:16:57 +0100680static void watchpoint_handler(unsigned long addr, unsigned int fsr,
681 struct pt_regs *regs)
Will Deaconf81ef4a2010-09-03 10:41:08 +0100682{
Will Deacon6f26aa02011-08-02 16:16:57 +0100683 int i, access;
684 u32 val, ctrl_reg, alignment_mask;
Will Deacon4a55c182010-11-29 17:06:53 +0000685 struct perf_event *wp, **slots;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100686 struct arch_hw_breakpoint *info;
Will Deacon6f26aa02011-08-02 16:16:57 +0100687 struct arch_hw_breakpoint_ctrl ctrl;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100688
Christoph Lameter1436c1a2013-10-21 13:17:08 +0100689 slots = this_cpu_ptr(wp_on_reg);
Will Deacon4a55c182010-11-29 17:06:53 +0000690
Will Deaconf81ef4a2010-09-03 10:41:08 +0100691 for (i = 0; i < core_num_wrps; ++i) {
692 rcu_read_lock();
693
Will Deacon93a04a32010-11-29 16:56:01 +0000694 wp = slots[i];
695
Will Deacon6f26aa02011-08-02 16:16:57 +0100696 if (wp == NULL)
697 goto unlock;
698
699 info = counter_arch_bp(wp);
700 /*
701 * The DFAR is an unknown value on debug architectures prior
702 * to 7.1. Since we only allow a single watchpoint on these
703 * older CPUs, we can set the trigger to the lowest possible
704 * faulting address.
705 */
706 if (debug_arch < ARM_DEBUG_ARCH_V7_1) {
707 BUG_ON(i > 0);
708 info->trigger = wp->attr.bp_addr;
709 } else {
710 if (info->ctrl.len == ARM_BREAKPOINT_LEN_8)
711 alignment_mask = 0x7;
712 else
713 alignment_mask = 0x3;
714
715 /* Check if the watchpoint value matches. */
716 val = read_wb_reg(ARM_BASE_WVR + i);
717 if (val != (addr & ~alignment_mask))
718 goto unlock;
719
720 /* Possible match, check the byte address select. */
721 ctrl_reg = read_wb_reg(ARM_BASE_WCR + i);
722 decode_ctrl_reg(ctrl_reg, &ctrl);
723 if (!((1 << (addr & alignment_mask)) & ctrl.len))
724 goto unlock;
725
726 /* Check that the access type matches. */
Will Deaconbf880112012-08-16 18:55:44 +0100727 if (debug_exception_updates_fsr()) {
728 access = (fsr & ARM_FSR_ACCESS_MASK) ?
729 HW_BREAKPOINT_W : HW_BREAKPOINT_R;
730 if (!(access & hw_breakpoint_type(wp)))
731 goto unlock;
732 }
Will Deacon6f26aa02011-08-02 16:16:57 +0100733
734 /* We have a winner. */
735 info->trigger = addr;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100736 }
737
Will Deaconf81ef4a2010-09-03 10:41:08 +0100738 pr_debug("watchpoint fired: address = 0x%x\n", info->trigger);
Will Deacon93a04a32010-11-29 16:56:01 +0000739 perf_bp_event(wp, regs);
Will Deaconf81ef4a2010-09-03 10:41:08 +0100740
741 /*
742 * If no overflow handler is present, insert a temporary
743 * mismatch breakpoint so we can single-step over the
744 * watchpoint trigger.
745 */
Wang Nan18794452016-03-28 06:41:30 +0000746 if (is_default_overflow_handler(wp))
Will Deacon9ebb3cb2010-12-01 14:12:13 +0000747 enable_single_step(wp, instruction_pointer(regs));
Will Deaconf81ef4a2010-09-03 10:41:08 +0100748
Will Deacon6f26aa02011-08-02 16:16:57 +0100749unlock:
Will Deaconf81ef4a2010-09-03 10:41:08 +0100750 rcu_read_unlock();
751 }
752}
753
Will Deacon93a04a32010-11-29 16:56:01 +0000754static void watchpoint_single_step_handler(unsigned long pc)
755{
756 int i;
Will Deacon4a55c182010-11-29 17:06:53 +0000757 struct perf_event *wp, **slots;
Will Deacon93a04a32010-11-29 16:56:01 +0000758 struct arch_hw_breakpoint *info;
759
Christoph Lameter1436c1a2013-10-21 13:17:08 +0100760 slots = this_cpu_ptr(wp_on_reg);
Will Deacon4a55c182010-11-29 17:06:53 +0000761
Will Deaconc512de92011-08-02 13:01:17 +0100762 for (i = 0; i < core_num_wrps; ++i) {
Will Deacon93a04a32010-11-29 16:56:01 +0000763 rcu_read_lock();
764
765 wp = slots[i];
766
767 if (wp == NULL)
768 goto unlock;
769
770 info = counter_arch_bp(wp);
771 if (!info->step_ctrl.enabled)
772 goto unlock;
773
774 /*
775 * Restore the original watchpoint if we've completed the
776 * single-step.
777 */
Will Deacon9ebb3cb2010-12-01 14:12:13 +0000778 if (info->trigger != pc)
779 disable_single_step(wp);
Will Deacon93a04a32010-11-29 16:56:01 +0000780
781unlock:
782 rcu_read_unlock();
783 }
784}
785
Will Deaconf81ef4a2010-09-03 10:41:08 +0100786static void breakpoint_handler(unsigned long unknown, struct pt_regs *regs)
787{
788 int i;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100789 u32 ctrl_reg, val, addr;
Will Deacon4a55c182010-11-29 17:06:53 +0000790 struct perf_event *bp, **slots;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100791 struct arch_hw_breakpoint *info;
792 struct arch_hw_breakpoint_ctrl ctrl;
793
Christoph Lameter1436c1a2013-10-21 13:17:08 +0100794 slots = this_cpu_ptr(bp_on_reg);
Will Deacon4a55c182010-11-29 17:06:53 +0000795
Will Deaconf81ef4a2010-09-03 10:41:08 +0100796 /* The exception entry code places the amended lr in the PC. */
797 addr = regs->ARM_pc;
798
Will Deacon93a04a32010-11-29 16:56:01 +0000799 /* Check the currently installed breakpoints first. */
800 for (i = 0; i < core_num_brps; ++i) {
Will Deaconf81ef4a2010-09-03 10:41:08 +0100801 rcu_read_lock();
802
803 bp = slots[i];
804
Will Deacon9ebb3cb2010-12-01 14:12:13 +0000805 if (bp == NULL)
806 goto unlock;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100807
Will Deacon9ebb3cb2010-12-01 14:12:13 +0000808 info = counter_arch_bp(bp);
Will Deaconf81ef4a2010-09-03 10:41:08 +0100809
810 /* Check if the breakpoint value matches. */
811 val = read_wb_reg(ARM_BASE_BVR + i);
812 if (val != (addr & ~0x3))
Will Deacon9ebb3cb2010-12-01 14:12:13 +0000813 goto mismatch;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100814
815 /* Possible match, check the byte address select to confirm. */
816 ctrl_reg = read_wb_reg(ARM_BASE_BCR + i);
817 decode_ctrl_reg(ctrl_reg, &ctrl);
818 if ((1 << (addr & 0x3)) & ctrl.len) {
Will Deaconf81ef4a2010-09-03 10:41:08 +0100819 info->trigger = addr;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100820 pr_debug("breakpoint fired: address = 0x%x\n", addr);
821 perf_bp_event(bp, regs);
Will Deacon9ebb3cb2010-12-01 14:12:13 +0000822 if (!bp->overflow_handler)
823 enable_single_step(bp, addr);
824 goto unlock;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100825 }
826
Will Deacon9ebb3cb2010-12-01 14:12:13 +0000827mismatch:
828 /* If we're stepping a breakpoint, it can now be restored. */
829 if (info->step_ctrl.enabled)
830 disable_single_step(bp);
831unlock:
Will Deaconf81ef4a2010-09-03 10:41:08 +0100832 rcu_read_unlock();
833 }
Will Deacon93a04a32010-11-29 16:56:01 +0000834
835 /* Handle any pending watchpoint single-step breakpoints. */
836 watchpoint_single_step_handler(addr);
Will Deaconf81ef4a2010-09-03 10:41:08 +0100837}
838
839/*
840 * Called from either the Data Abort Handler [watchpoint] or the
Russell King02fe2842011-06-25 11:44:06 +0100841 * Prefetch Abort Handler [breakpoint] with interrupts disabled.
Will Deaconf81ef4a2010-09-03 10:41:08 +0100842 */
843static int hw_breakpoint_pending(unsigned long addr, unsigned int fsr,
844 struct pt_regs *regs)
845{
Will Deacon7e202692010-11-28 14:57:24 +0000846 int ret = 0;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100847 u32 dscr;
848
Russell King02fe2842011-06-25 11:44:06 +0100849 preempt_disable();
850
851 if (interrupts_enabled(regs))
852 local_irq_enable();
Will Deacon7e202692010-11-28 14:57:24 +0000853
Will Deaconf81ef4a2010-09-03 10:41:08 +0100854 /* We only handle watchpoints and hardware breakpoints. */
Dietmar Eggemann9e962f72012-09-26 17:28:47 +0100855 ARM_DBG_READ(c0, c1, 0, dscr);
Will Deaconf81ef4a2010-09-03 10:41:08 +0100856
857 /* Perform perf callbacks. */
858 switch (ARM_DSCR_MOE(dscr)) {
859 case ARM_ENTRY_BREAKPOINT:
860 breakpoint_handler(addr, regs);
861 break;
862 case ARM_ENTRY_ASYNC_WATCHPOINT:
Joe Perches235584b2010-10-30 14:21:24 -0700863 WARN(1, "Asynchronous watchpoint exception taken. Debugging results may be unreliable\n");
Will Deaconf81ef4a2010-09-03 10:41:08 +0100864 case ARM_ENTRY_SYNC_WATCHPOINT:
Will Deacon6f26aa02011-08-02 16:16:57 +0100865 watchpoint_handler(addr, fsr, regs);
Will Deaconf81ef4a2010-09-03 10:41:08 +0100866 break;
867 default:
Will Deacon7e202692010-11-28 14:57:24 +0000868 ret = 1; /* Unhandled fault. */
Will Deaconf81ef4a2010-09-03 10:41:08 +0100869 }
870
Will Deacon7e202692010-11-28 14:57:24 +0000871 preempt_enable();
872
Will Deaconf81ef4a2010-09-03 10:41:08 +0100873 return ret;
874}
875
876/*
877 * One-time initialisation.
878 */
Will Deacon0d352e32011-08-08 14:26:53 +0100879static cpumask_t debug_err_mask;
880
881static int debug_reg_trap(struct pt_regs *regs, unsigned int instr)
882{
883 int cpu = smp_processor_id();
884
Joe Perches8b521cb2014-09-16 20:41:43 +0100885 pr_warn("Debug register access (0x%x) caused undefined instruction on CPU %d\n",
886 instr, cpu);
Will Deacon0d352e32011-08-08 14:26:53 +0100887
888 /* Set the error flag for this CPU and skip the faulting instruction. */
889 cpumask_set_cpu(cpu, &debug_err_mask);
890 instruction_pointer(regs) += 4;
891 return 0;
892}
893
894static struct undef_hook debug_reg_hook = {
895 .instr_mask = 0x0fe80f10,
896 .instr_val = 0x0e000e10,
897 .fn = debug_reg_trap,
898};
899
Dietmar Eggemann57ba8992012-10-14 21:08:14 +0100900/* Does this core support OS Save and Restore? */
901static bool core_has_os_save_restore(void)
902{
903 u32 oslsr;
904
905 switch (get_debug_arch()) {
906 case ARM_DEBUG_ARCH_V7_1:
907 return true;
908 case ARM_DEBUG_ARCH_V7_ECP14:
909 ARM_DBG_READ(c1, c1, 4, oslsr);
910 if (oslsr & ARM_OSLSR_OSLM0)
911 return true;
912 default:
913 return false;
914 }
915}
916
Sebastian Andrzej Siewior9b377e212016-11-17 19:35:36 +0100917static void reset_ctrl_regs(unsigned int cpu)
Will Deaconf81ef4a2010-09-03 10:41:08 +0100918{
Sebastian Andrzej Siewior9b377e212016-11-17 19:35:36 +0100919 int i, raw_num_brps, err = 0;
Will Deacone64877d2012-09-21 14:53:13 +0100920 u32 val;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100921
Will Deaconac88e072010-11-24 16:51:17 +0000922 /*
923 * v7 debug contains save and restore registers so that debug state
Will Deaconed19b732011-02-11 15:55:12 +0100924 * can be maintained across low-power modes without leaving the debug
925 * logic powered up. It is IMPLEMENTATION DEFINED whether we can access
926 * the debug registers out of reset, so we must unlock the OS Lock
927 * Access Register to avoid taking undefined instruction exceptions
928 * later on.
Will Deaconac88e072010-11-24 16:51:17 +0000929 */
Will Deaconb5d5b8f2011-07-22 18:27:37 +0100930 switch (debug_arch) {
Will Deacona26bce12011-10-07 15:57:55 +0100931 case ARM_DEBUG_ARCH_V6:
932 case ARM_DEBUG_ARCH_V6_1:
Will Deacon7f4050a2012-09-21 17:53:08 +0100933 /* ARMv6 cores clear the registers out of reset. */
934 goto out_mdbgen;
Will Deaconb5d5b8f2011-07-22 18:27:37 +0100935 case ARM_DEBUG_ARCH_V7_ECP14:
Will Deaconac88e072010-11-24 16:51:17 +0000936 /*
Will Deaconc09bae72011-02-25 20:20:42 +0100937 * Ensure sticky power-down is clear (i.e. debug logic is
938 * powered up).
939 */
Dietmar Eggemann9e962f72012-09-26 17:28:47 +0100940 ARM_DBG_READ(c1, c5, 4, val);
Will Deacone64877d2012-09-21 14:53:13 +0100941 if ((val & 0x1) == 0)
Will Deaconb5d5b8f2011-07-22 18:27:37 +0100942 err = -EPERM;
Will Deacone64877d2012-09-21 14:53:13 +0100943
Dietmar Eggemann57ba8992012-10-14 21:08:14 +0100944 if (!has_ossr)
Will Deacone64877d2012-09-21 14:53:13 +0100945 goto clear_vcr;
Will Deaconb5d5b8f2011-07-22 18:27:37 +0100946 break;
947 case ARM_DEBUG_ARCH_V7_1:
Will Deaconc09bae72011-02-25 20:20:42 +0100948 /*
Will Deaconb5d5b8f2011-07-22 18:27:37 +0100949 * Ensure the OS double lock is clear.
Will Deaconac88e072010-11-24 16:51:17 +0000950 */
Dietmar Eggemann9e962f72012-09-26 17:28:47 +0100951 ARM_DBG_READ(c1, c3, 4, val);
Will Deacone64877d2012-09-21 14:53:13 +0100952 if ((val & 0x1) == 1)
Will Deaconb5d5b8f2011-07-22 18:27:37 +0100953 err = -EPERM;
954 break;
Will Deaconac88e072010-11-24 16:51:17 +0000955 }
956
Will Deaconb5d5b8f2011-07-22 18:27:37 +0100957 if (err) {
Santosh Shilimkar68a154f2013-03-20 17:30:30 +0100958 pr_warn_once("CPU %d debug is powered down!\n", cpu);
Will Deacon0d352e32011-08-08 14:26:53 +0100959 cpumask_or(&debug_err_mask, &debug_err_mask, cpumask_of(cpu));
Will Deaconb5d5b8f2011-07-22 18:27:37 +0100960 return;
961 }
962
963 /*
Will Deacone64877d2012-09-21 14:53:13 +0100964 * Unconditionally clear the OS lock by writing a value
Dietmar Eggemann02051ea2012-10-14 20:23:04 +0100965 * other than CS_LAR_KEY to the access register.
Will Deaconb5d5b8f2011-07-22 18:27:37 +0100966 */
Mathieu Poirier184901a2014-11-03 11:07:46 -0700967 ARM_DBG_WRITE(c1, c0, 4, ~CORESIGHT_UNLOCK);
Will Deaconb5d5b8f2011-07-22 18:27:37 +0100968 isb();
969
970 /*
971 * Clear any configured vector-catch events before
972 * enabling monitor mode.
973 */
Will Deacone64877d2012-09-21 14:53:13 +0100974clear_vcr:
Dietmar Eggemann9e962f72012-09-26 17:28:47 +0100975 ARM_DBG_WRITE(c0, c7, 0, 0);
Will Deaconb5d5b8f2011-07-22 18:27:37 +0100976 isb();
977
Will Deacon614bea502012-09-21 15:38:26 +0100978 if (cpumask_intersects(&debug_err_mask, cpumask_of(cpu))) {
Santosh Shilimkar68a154f2013-03-20 17:30:30 +0100979 pr_warn_once("CPU %d failed to disable vector catch\n", cpu);
Will Deaconf81ef4a2010-09-03 10:41:08 +0100980 return;
Will Deacon614bea502012-09-21 15:38:26 +0100981 }
Will Deaconf81ef4a2010-09-03 10:41:08 +0100982
Will Deacon614bea502012-09-21 15:38:26 +0100983 /*
984 * The control/value register pairs are UNKNOWN out of reset so
985 * clear them to avoid spurious debug events.
986 */
Will Deaconc512de92011-08-02 13:01:17 +0100987 raw_num_brps = get_num_brp_resources();
988 for (i = 0; i < raw_num_brps; ++i) {
Will Deaconf81ef4a2010-09-03 10:41:08 +0100989 write_wb_reg(ARM_BASE_BCR + i, 0UL);
990 write_wb_reg(ARM_BASE_BVR + i, 0UL);
991 }
992
993 for (i = 0; i < core_num_wrps; ++i) {
994 write_wb_reg(ARM_BASE_WCR + i, 0UL);
995 write_wb_reg(ARM_BASE_WVR + i, 0UL);
996 }
Will Deacon614bea502012-09-21 15:38:26 +0100997
998 if (cpumask_intersects(&debug_err_mask, cpumask_of(cpu))) {
Santosh Shilimkar68a154f2013-03-20 17:30:30 +0100999 pr_warn_once("CPU %d failed to clear debug register pairs\n", cpu);
Will Deacon614bea502012-09-21 15:38:26 +01001000 return;
1001 }
1002
1003 /*
1004 * Have a crack at enabling monitor mode. We don't actually need
1005 * it yet, but reporting an error early is useful if it fails.
1006 */
Will Deacon7f4050a2012-09-21 17:53:08 +01001007out_mdbgen:
Will Deacon614bea502012-09-21 15:38:26 +01001008 if (enable_monitor_mode())
1009 cpumask_or(&debug_err_mask, &debug_err_mask, cpumask_of(cpu));
Will Deaconf81ef4a2010-09-03 10:41:08 +01001010}
1011
Sebastian Andrzej Siewior9b377e212016-11-17 19:35:36 +01001012static int dbg_reset_online(unsigned int cpu)
Will Deacon7d993312010-11-24 17:45:49 +00001013{
Sebastian Andrzej Siewior9b377e212016-11-17 19:35:36 +01001014 local_irq_disable();
1015 reset_ctrl_regs(cpu);
1016 local_irq_enable();
1017 return 0;
Will Deacon7d993312010-11-24 17:45:49 +00001018}
1019
Dietmar Eggemann9a6eb312012-10-14 22:25:37 +01001020#ifdef CONFIG_CPU_PM
1021static int dbg_cpu_pm_notify(struct notifier_block *self, unsigned long action,
1022 void *v)
1023{
1024 if (action == CPU_PM_EXIT)
Sebastian Andrzej Siewior9b377e212016-11-17 19:35:36 +01001025 reset_ctrl_regs(smp_processor_id());
Dietmar Eggemann9a6eb312012-10-14 22:25:37 +01001026
1027 return NOTIFY_OK;
1028}
1029
Bastian Hecht50acff32013-04-12 19:03:50 +01001030static struct notifier_block dbg_cpu_pm_nb = {
Dietmar Eggemann9a6eb312012-10-14 22:25:37 +01001031 .notifier_call = dbg_cpu_pm_notify,
1032};
1033
1034static void __init pm_init(void)
1035{
1036 cpu_pm_register_notifier(&dbg_cpu_pm_nb);
1037}
1038#else
1039static inline void pm_init(void)
1040{
1041}
1042#endif
1043
Will Deaconf81ef4a2010-09-03 10:41:08 +01001044static int __init arch_hw_breakpoint_init(void)
1045{
Sebastian Andrzej Siewior9b377e212016-11-17 19:35:36 +01001046 int ret;
1047
Will Deaconf81ef4a2010-09-03 10:41:08 +01001048 debug_arch = get_debug_arch();
1049
Will Deacon66e1cfe2011-02-11 16:01:42 +01001050 if (!debug_arch_supported()) {
Will Deaconf81ef4a2010-09-03 10:41:08 +01001051 pr_info("debug architecture 0x%x unsupported.\n", debug_arch);
Will Deacon8fbf3972010-12-01 17:37:45 +00001052 return 0;
Will Deaconf81ef4a2010-09-03 10:41:08 +01001053 }
1054
Mark Rutlandddc37832017-01-06 13:12:47 +01001055 /*
1056 * Scorpion CPUs (at least those in APQ8060) seem to set DBGPRSR.SPD
1057 * whenever a WFI is issued, even if the core is not powered down, in
1058 * violation of the architecture. When DBGPRSR.SPD is set, accesses to
1059 * breakpoint and watchpoint registers are treated as undefined, so
1060 * this results in boot time and runtime failures when these are
1061 * accessed and we unexpectedly take a trap.
1062 *
1063 * It's not clear if/how this can be worked around, so we blacklist
1064 * Scorpion CPUs to avoid these issues.
1065 */
1066 if (read_cpuid_part() == ARM_CPU_PART_SCORPION) {
1067 pr_info("Scorpion CPU detected. Hardware breakpoints and watchpoints disabled\n");
1068 return 0;
1069 }
1070
Dietmar Eggemann57ba8992012-10-14 21:08:14 +01001071 has_ossr = core_has_os_save_restore();
1072
Will Deaconf81ef4a2010-09-03 10:41:08 +01001073 /* Determine how many BRPs/WRPs are available. */
1074 core_num_brps = get_num_brps();
1075 core_num_wrps = get_num_wrps();
1076
Will Deacon0d352e32011-08-08 14:26:53 +01001077 /*
1078 * We need to tread carefully here because DBGSWENABLE may be
1079 * driven low on this core and there isn't an architected way to
1080 * determine that.
1081 */
Sebastian Andrzej Siewiorfe2a5cd2017-05-24 10:15:25 +02001082 cpus_read_lock();
Will Deacon0d352e32011-08-08 14:26:53 +01001083 register_undef_hook(&debug_reg_hook);
Will Deaconf81ef4a2010-09-03 10:41:08 +01001084
Will Deaconed19b732011-02-11 15:55:12 +01001085 /*
Sebastian Andrzej Siewior9b377e212016-11-17 19:35:36 +01001086 * Register CPU notifier which resets the breakpoint resources. We
1087 * assume that a halting debugger will leave the world in a nice state
1088 * for us.
Will Deaconed19b732011-02-11 15:55:12 +01001089 */
Sebastian Andrzej Siewiorfe2a5cd2017-05-24 10:15:25 +02001090 ret = cpuhp_setup_state_cpuslocked(CPUHP_AP_ONLINE_DYN,
1091 "arm/hw_breakpoint:online",
1092 dbg_reset_online, NULL);
Will Deacon0d352e32011-08-08 14:26:53 +01001093 unregister_undef_hook(&debug_reg_hook);
Sebastian Andrzej Siewior9b377e212016-11-17 19:35:36 +01001094 if (WARN_ON(ret < 0) || !cpumask_empty(&debug_err_mask)) {
Will Deaconc09bae72011-02-25 20:20:42 +01001095 core_num_brps = 0;
Will Deaconc09bae72011-02-25 20:20:42 +01001096 core_num_wrps = 0;
Sebastian Andrzej Siewior9b377e212016-11-17 19:35:36 +01001097 if (ret > 0)
Tony Lindgren1b3b2252017-06-16 01:22:38 -07001098 cpuhp_remove_state_nocalls_cpuslocked(ret);
Sebastian Andrzej Siewiorfe2a5cd2017-05-24 10:15:25 +02001099 cpus_read_unlock();
Will Deaconc09bae72011-02-25 20:20:42 +01001100 return 0;
1101 }
Will Deaconed19b732011-02-11 15:55:12 +01001102
Will Deacon0d352e32011-08-08 14:26:53 +01001103 pr_info("found %d " "%s" "breakpoint and %d watchpoint registers.\n",
1104 core_num_brps, core_has_mismatch_brps() ? "(+1 reserved) " :
1105 "", core_num_wrps);
1106
Will Deaconb59a5402012-09-21 15:08:17 +01001107 /* Work out the maximum supported watchpoint length. */
1108 max_watchpoint_len = get_max_wp_len();
1109 pr_info("maximum watchpoint size is %u bytes.\n",
1110 max_watchpoint_len);
Will Deaconf81ef4a2010-09-03 10:41:08 +01001111
1112 /* Register debug fault handler. */
Catalin Marinasf7b81562011-11-22 17:30:31 +00001113 hook_fault_code(FAULT_CODE_DEBUG, hw_breakpoint_pending, SIGTRAP,
1114 TRAP_HWBKPT, "watchpoint debug exception");
1115 hook_ifault_code(FAULT_CODE_DEBUG, hw_breakpoint_pending, SIGTRAP,
1116 TRAP_HWBKPT, "breakpoint debug exception");
Sebastian Andrzej Siewiorfe2a5cd2017-05-24 10:15:25 +02001117 cpus_read_unlock();
Will Deaconf81ef4a2010-09-03 10:41:08 +01001118
Sebastian Andrzej Siewior9b377e212016-11-17 19:35:36 +01001119 /* Register PM notifiers. */
Dietmar Eggemann9a6eb312012-10-14 22:25:37 +01001120 pm_init();
Will Deacon8fbf3972010-12-01 17:37:45 +00001121 return 0;
Will Deaconf81ef4a2010-09-03 10:41:08 +01001122}
1123arch_initcall(arch_hw_breakpoint_init);
1124
1125void hw_breakpoint_pmu_read(struct perf_event *bp)
1126{
1127}
1128
1129/*
1130 * Dummy function to register with die_notifier.
1131 */
1132int hw_breakpoint_exceptions_notify(struct notifier_block *unused,
1133 unsigned long val, void *data)
1134{
1135 return NOTIFY_DONE;
1136}