blob: 36cd7680d3d2a0e8cf7538911137d40f54248559 [file] [log] [blame]
Will Deaconf81ef4a2010-09-03 10:41:08 +01001/*
2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License version 2 as
4 * published by the Free Software Foundation.
5 *
6 * This program is distributed in the hope that it will be useful,
7 * but WITHOUT ANY WARRANTY; without even the implied warranty of
8 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9 * GNU General Public License for more details.
10 *
11 * You should have received a copy of the GNU General Public License
12 * along with this program; if not, write to the Free Software
13 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
14 *
15 * Copyright (C) 2009, 2010 ARM Limited
16 *
17 * Author: Will Deacon <will.deacon@arm.com>
18 */
19
20/*
21 * HW_breakpoint: a unified kernel/user-space hardware breakpoint facility,
22 * using the CPU's debug registers.
23 */
24#define pr_fmt(fmt) "hw-breakpoint: " fmt
25
26#include <linux/errno.h>
Will Deacon7e202692010-11-28 14:57:24 +000027#include <linux/hardirq.h>
Will Deaconf81ef4a2010-09-03 10:41:08 +010028#include <linux/perf_event.h>
29#include <linux/hw_breakpoint.h>
30#include <linux/smp.h>
31
32#include <asm/cacheflush.h>
33#include <asm/cputype.h>
34#include <asm/current.h>
35#include <asm/hw_breakpoint.h>
36#include <asm/kdebug.h>
37#include <asm/system.h>
38#include <asm/traps.h>
39
40/* Breakpoint currently in use for each BRP. */
41static DEFINE_PER_CPU(struct perf_event *, bp_on_reg[ARM_MAX_BRP]);
42
43/* Watchpoint currently in use for each WRP. */
44static DEFINE_PER_CPU(struct perf_event *, wp_on_reg[ARM_MAX_WRP]);
45
46/* Number of BRP/WRP registers on this CPU. */
47static int core_num_brps;
Will Deacon0017ff42010-11-28 15:09:36 +000048static int core_num_reserved_brps;
Will Deaconf81ef4a2010-09-03 10:41:08 +010049static int core_num_wrps;
50
51/* Debug architecture version. */
52static u8 debug_arch;
53
54/* Maximum supported watchpoint length. */
55static u8 max_watchpoint_len;
56
Will Deaconf81ef4a2010-09-03 10:41:08 +010057#define READ_WB_REG_CASE(OP2, M, VAL) \
58 case ((OP2 << 4) + M): \
59 ARM_DBG_READ(c ## M, OP2, VAL); \
60 break
61
62#define WRITE_WB_REG_CASE(OP2, M, VAL) \
63 case ((OP2 << 4) + M): \
64 ARM_DBG_WRITE(c ## M, OP2, VAL);\
65 break
66
67#define GEN_READ_WB_REG_CASES(OP2, VAL) \
68 READ_WB_REG_CASE(OP2, 0, VAL); \
69 READ_WB_REG_CASE(OP2, 1, VAL); \
70 READ_WB_REG_CASE(OP2, 2, VAL); \
71 READ_WB_REG_CASE(OP2, 3, VAL); \
72 READ_WB_REG_CASE(OP2, 4, VAL); \
73 READ_WB_REG_CASE(OP2, 5, VAL); \
74 READ_WB_REG_CASE(OP2, 6, VAL); \
75 READ_WB_REG_CASE(OP2, 7, VAL); \
76 READ_WB_REG_CASE(OP2, 8, VAL); \
77 READ_WB_REG_CASE(OP2, 9, VAL); \
78 READ_WB_REG_CASE(OP2, 10, VAL); \
79 READ_WB_REG_CASE(OP2, 11, VAL); \
80 READ_WB_REG_CASE(OP2, 12, VAL); \
81 READ_WB_REG_CASE(OP2, 13, VAL); \
82 READ_WB_REG_CASE(OP2, 14, VAL); \
83 READ_WB_REG_CASE(OP2, 15, VAL)
84
85#define GEN_WRITE_WB_REG_CASES(OP2, VAL) \
86 WRITE_WB_REG_CASE(OP2, 0, VAL); \
87 WRITE_WB_REG_CASE(OP2, 1, VAL); \
88 WRITE_WB_REG_CASE(OP2, 2, VAL); \
89 WRITE_WB_REG_CASE(OP2, 3, VAL); \
90 WRITE_WB_REG_CASE(OP2, 4, VAL); \
91 WRITE_WB_REG_CASE(OP2, 5, VAL); \
92 WRITE_WB_REG_CASE(OP2, 6, VAL); \
93 WRITE_WB_REG_CASE(OP2, 7, VAL); \
94 WRITE_WB_REG_CASE(OP2, 8, VAL); \
95 WRITE_WB_REG_CASE(OP2, 9, VAL); \
96 WRITE_WB_REG_CASE(OP2, 10, VAL); \
97 WRITE_WB_REG_CASE(OP2, 11, VAL); \
98 WRITE_WB_REG_CASE(OP2, 12, VAL); \
99 WRITE_WB_REG_CASE(OP2, 13, VAL); \
100 WRITE_WB_REG_CASE(OP2, 14, VAL); \
101 WRITE_WB_REG_CASE(OP2, 15, VAL)
102
103static u32 read_wb_reg(int n)
104{
105 u32 val = 0;
106
107 switch (n) {
108 GEN_READ_WB_REG_CASES(ARM_OP2_BVR, val);
109 GEN_READ_WB_REG_CASES(ARM_OP2_BCR, val);
110 GEN_READ_WB_REG_CASES(ARM_OP2_WVR, val);
111 GEN_READ_WB_REG_CASES(ARM_OP2_WCR, val);
112 default:
113 pr_warning("attempt to read from unknown breakpoint "
114 "register %d\n", n);
115 }
116
117 return val;
118}
119
120static void write_wb_reg(int n, u32 val)
121{
122 switch (n) {
123 GEN_WRITE_WB_REG_CASES(ARM_OP2_BVR, val);
124 GEN_WRITE_WB_REG_CASES(ARM_OP2_BCR, val);
125 GEN_WRITE_WB_REG_CASES(ARM_OP2_WVR, val);
126 GEN_WRITE_WB_REG_CASES(ARM_OP2_WCR, val);
127 default:
128 pr_warning("attempt to write to unknown breakpoint "
129 "register %d\n", n);
130 }
131 isb();
132}
133
Will Deacon0017ff42010-11-28 15:09:36 +0000134/* Determine debug architecture. */
135static u8 get_debug_arch(void)
136{
137 u32 didr;
138
139 /* Do we implement the extended CPUID interface? */
140 if (((read_cpuid_id() >> 16) & 0xf) != 0xf) {
141 pr_warning("CPUID feature registers not supported. "
142 "Assuming v6 debug is present.\n");
143 return ARM_DEBUG_ARCH_V6;
144 }
145
146 ARM_DBG_READ(c0, 0, didr);
147 return (didr >> 16) & 0xf;
148}
149
150u8 arch_get_debug_arch(void)
151{
152 return debug_arch;
153}
154
155/* Determine number of BRP register available. */
156static int get_num_brp_resources(void)
157{
158 u32 didr;
159 ARM_DBG_READ(c0, 0, didr);
160 return ((didr >> 24) & 0xf) + 1;
161}
162
163/* Does this core support mismatch breakpoints? */
164static int core_has_mismatch_brps(void)
165{
166 return (get_debug_arch() >= ARM_DEBUG_ARCH_V7_ECP14 &&
167 get_num_brp_resources() > 1);
168}
169
170/* Determine number of usable WRPs available. */
171static int get_num_wrps(void)
172{
173 /*
174 * FIXME: When a watchpoint fires, the only way to work out which
175 * watchpoint it was is by disassembling the faulting instruction
176 * and working out the address of the memory access.
177 *
178 * Furthermore, we can only do this if the watchpoint was precise
179 * since imprecise watchpoints prevent us from calculating register
180 * based addresses.
181 *
182 * Providing we have more than 1 breakpoint register, we only report
183 * a single watchpoint register for the time being. This way, we always
184 * know which watchpoint fired. In the future we can either add a
185 * disassembler and address generation emulator, or we can insert a
186 * check to see if the DFAR is set on watchpoint exception entry
187 * [the ARM ARM states that the DFAR is UNKNOWN, but experience shows
188 * that it is set on some implementations].
189 */
190
191#if 0
192 int wrps;
193 u32 didr;
194 ARM_DBG_READ(c0, 0, didr);
195 wrps = ((didr >> 28) & 0xf) + 1;
196#endif
197 int wrps = 1;
198
199 if (core_has_mismatch_brps() && wrps >= get_num_brp_resources())
200 wrps = get_num_brp_resources() - 1;
201
202 return wrps;
203}
204
205/* We reserve one breakpoint for each watchpoint. */
206static int get_num_reserved_brps(void)
207{
208 if (core_has_mismatch_brps())
209 return get_num_wrps();
210 return 0;
211}
212
213/* Determine number of usable BRPs available. */
214static int get_num_brps(void)
215{
216 int brps = get_num_brp_resources();
217 if (core_has_mismatch_brps())
218 brps -= get_num_reserved_brps();
219 return brps;
220}
221
222int hw_breakpoint_slots(int type)
223{
224 /*
225 * We can be called early, so don't rely on
226 * our static variables being initialised.
227 */
228 switch (type) {
229 case TYPE_INST:
230 return get_num_brps();
231 case TYPE_DATA:
232 return get_num_wrps();
233 default:
234 pr_warning("unknown slot type: %d\n", type);
235 return 0;
236 }
237}
238
Will Deaconf81ef4a2010-09-03 10:41:08 +0100239/*
240 * In order to access the breakpoint/watchpoint control registers,
241 * we must be running in debug monitor mode. Unfortunately, we can
242 * be put into halting debug mode at any time by an external debugger
243 * but there is nothing we can do to prevent that.
244 */
245static int enable_monitor_mode(void)
246{
247 u32 dscr;
248 int ret = 0;
249
250 ARM_DBG_READ(c1, 0, dscr);
251
252 /* Ensure that halting mode is disabled. */
253 if (WARN_ONCE(dscr & ARM_DSCR_HDBGEN, "halting debug mode enabled."
254 "Unable to access hardware resources.")) {
255 ret = -EPERM;
256 goto out;
257 }
258
259 /* Write to the corresponding DSCR. */
260 switch (debug_arch) {
261 case ARM_DEBUG_ARCH_V6:
262 case ARM_DEBUG_ARCH_V6_1:
263 ARM_DBG_WRITE(c1, 0, (dscr | ARM_DSCR_MDBGEN));
264 break;
265 case ARM_DEBUG_ARCH_V7_ECP14:
266 ARM_DBG_WRITE(c2, 2, (dscr | ARM_DSCR_MDBGEN));
267 break;
268 default:
269 ret = -ENODEV;
270 goto out;
271 }
272
273 /* Check that the write made it through. */
274 ARM_DBG_READ(c1, 0, dscr);
275 if (WARN_ONCE(!(dscr & ARM_DSCR_MDBGEN),
276 "failed to enable monitor mode.")) {
277 ret = -EPERM;
278 }
279
280out:
281 return ret;
282}
283
284/*
285 * Check if 8-bit byte-address select is available.
286 * This clobbers WRP 0.
287 */
288static u8 get_max_wp_len(void)
289{
290 u32 ctrl_reg;
291 struct arch_hw_breakpoint_ctrl ctrl;
292 u8 size = 4;
293
294 if (debug_arch < ARM_DEBUG_ARCH_V7_ECP14)
295 goto out;
296
297 if (enable_monitor_mode())
298 goto out;
299
300 memset(&ctrl, 0, sizeof(ctrl));
301 ctrl.len = ARM_BREAKPOINT_LEN_8;
302 ctrl_reg = encode_ctrl_reg(ctrl);
303
304 write_wb_reg(ARM_BASE_WVR, 0);
305 write_wb_reg(ARM_BASE_WCR, ctrl_reg);
306 if ((read_wb_reg(ARM_BASE_WCR) & ctrl_reg) == ctrl_reg)
307 size = 8;
308
309out:
310 return size;
311}
312
313u8 arch_get_max_wp_len(void)
314{
315 return max_watchpoint_len;
316}
317
318/*
Will Deaconf81ef4a2010-09-03 10:41:08 +0100319 * Install a perf counter breakpoint.
320 */
321int arch_install_hw_breakpoint(struct perf_event *bp)
322{
323 struct arch_hw_breakpoint *info = counter_arch_bp(bp);
324 struct perf_event **slot, **slots;
325 int i, max_slots, ctrl_base, val_base, ret = 0;
Will Deacon93a04a32010-11-29 16:56:01 +0000326 u32 addr, ctrl;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100327
328 /* Ensure that we are in monitor mode and halting mode is disabled. */
329 ret = enable_monitor_mode();
330 if (ret)
331 goto out;
332
Will Deacon93a04a32010-11-29 16:56:01 +0000333 addr = info->address;
334 ctrl = encode_ctrl_reg(info->ctrl) | 0x1;
335
Will Deaconf81ef4a2010-09-03 10:41:08 +0100336 if (info->ctrl.type == ARM_BREAKPOINT_EXECUTE) {
337 /* Breakpoint */
338 ctrl_base = ARM_BASE_BCR;
339 val_base = ARM_BASE_BVR;
340 slots = __get_cpu_var(bp_on_reg);
Will Deacon0017ff42010-11-28 15:09:36 +0000341 max_slots = core_num_brps;
Will Deacon9ebb3cb2010-12-01 14:12:13 +0000342 if (info->step_ctrl.enabled) {
343 /* Override the breakpoint data with the step data. */
344 addr = info->trigger & ~0x3;
345 ctrl = encode_ctrl_reg(info->step_ctrl);
346 }
Will Deaconf81ef4a2010-09-03 10:41:08 +0100347 } else {
348 /* Watchpoint */
Will Deacon93a04a32010-11-29 16:56:01 +0000349 if (info->step_ctrl.enabled) {
350 /* Install into the reserved breakpoint region. */
351 ctrl_base = ARM_BASE_BCR + core_num_brps;
352 val_base = ARM_BASE_BVR + core_num_brps;
353 /* Override the watchpoint data with the step data. */
354 addr = info->trigger & ~0x3;
355 ctrl = encode_ctrl_reg(info->step_ctrl);
356 } else {
357 ctrl_base = ARM_BASE_WCR;
358 val_base = ARM_BASE_WVR;
359 }
Will Deaconf81ef4a2010-09-03 10:41:08 +0100360 slots = __get_cpu_var(wp_on_reg);
361 max_slots = core_num_wrps;
362 }
363
364 for (i = 0; i < max_slots; ++i) {
365 slot = &slots[i];
366
367 if (!*slot) {
368 *slot = bp;
369 break;
370 }
371 }
372
373 if (WARN_ONCE(i == max_slots, "Can't find any breakpoint slot")) {
374 ret = -EBUSY;
375 goto out;
376 }
377
Will Deaconf81ef4a2010-09-03 10:41:08 +0100378 /* Setup the address register. */
Will Deacon93a04a32010-11-29 16:56:01 +0000379 write_wb_reg(val_base + i, addr);
Will Deaconf81ef4a2010-09-03 10:41:08 +0100380
381 /* Setup the control register. */
Will Deacon93a04a32010-11-29 16:56:01 +0000382 write_wb_reg(ctrl_base + i, ctrl);
Will Deaconf81ef4a2010-09-03 10:41:08 +0100383
384out:
385 return ret;
386}
387
388void arch_uninstall_hw_breakpoint(struct perf_event *bp)
389{
390 struct arch_hw_breakpoint *info = counter_arch_bp(bp);
391 struct perf_event **slot, **slots;
392 int i, max_slots, base;
393
394 if (info->ctrl.type == ARM_BREAKPOINT_EXECUTE) {
395 /* Breakpoint */
396 base = ARM_BASE_BCR;
397 slots = __get_cpu_var(bp_on_reg);
Will Deacon0017ff42010-11-28 15:09:36 +0000398 max_slots = core_num_brps;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100399 } else {
400 /* Watchpoint */
Will Deacon93a04a32010-11-29 16:56:01 +0000401 if (info->step_ctrl.enabled)
402 base = ARM_BASE_BCR + core_num_brps;
403 else
404 base = ARM_BASE_WCR;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100405 slots = __get_cpu_var(wp_on_reg);
406 max_slots = core_num_wrps;
407 }
408
409 /* Remove the breakpoint. */
410 for (i = 0; i < max_slots; ++i) {
411 slot = &slots[i];
412
413 if (*slot == bp) {
414 *slot = NULL;
415 break;
416 }
417 }
418
419 if (WARN_ONCE(i == max_slots, "Can't find any breakpoint slot"))
420 return;
421
Will Deaconf81ef4a2010-09-03 10:41:08 +0100422 /* Reset the control register. */
423 write_wb_reg(base + i, 0);
424}
425
426static int get_hbp_len(u8 hbp_len)
427{
428 unsigned int len_in_bytes = 0;
429
430 switch (hbp_len) {
431 case ARM_BREAKPOINT_LEN_1:
432 len_in_bytes = 1;
433 break;
434 case ARM_BREAKPOINT_LEN_2:
435 len_in_bytes = 2;
436 break;
437 case ARM_BREAKPOINT_LEN_4:
438 len_in_bytes = 4;
439 break;
440 case ARM_BREAKPOINT_LEN_8:
441 len_in_bytes = 8;
442 break;
443 }
444
445 return len_in_bytes;
446}
447
448/*
449 * Check whether bp virtual address is in kernel space.
450 */
451int arch_check_bp_in_kernelspace(struct perf_event *bp)
452{
453 unsigned int len;
454 unsigned long va;
455 struct arch_hw_breakpoint *info = counter_arch_bp(bp);
456
457 va = info->address;
458 len = get_hbp_len(info->ctrl.len);
459
460 return (va >= TASK_SIZE) && ((va + len - 1) >= TASK_SIZE);
461}
462
463/*
464 * Extract generic type and length encodings from an arch_hw_breakpoint_ctrl.
465 * Hopefully this will disappear when ptrace can bypass the conversion
466 * to generic breakpoint descriptions.
467 */
468int arch_bp_generic_fields(struct arch_hw_breakpoint_ctrl ctrl,
469 int *gen_len, int *gen_type)
470{
471 /* Type */
472 switch (ctrl.type) {
473 case ARM_BREAKPOINT_EXECUTE:
474 *gen_type = HW_BREAKPOINT_X;
475 break;
476 case ARM_BREAKPOINT_LOAD:
477 *gen_type = HW_BREAKPOINT_R;
478 break;
479 case ARM_BREAKPOINT_STORE:
480 *gen_type = HW_BREAKPOINT_W;
481 break;
482 case ARM_BREAKPOINT_LOAD | ARM_BREAKPOINT_STORE:
483 *gen_type = HW_BREAKPOINT_RW;
484 break;
485 default:
486 return -EINVAL;
487 }
488
489 /* Len */
490 switch (ctrl.len) {
491 case ARM_BREAKPOINT_LEN_1:
492 *gen_len = HW_BREAKPOINT_LEN_1;
493 break;
494 case ARM_BREAKPOINT_LEN_2:
495 *gen_len = HW_BREAKPOINT_LEN_2;
496 break;
497 case ARM_BREAKPOINT_LEN_4:
498 *gen_len = HW_BREAKPOINT_LEN_4;
499 break;
500 case ARM_BREAKPOINT_LEN_8:
501 *gen_len = HW_BREAKPOINT_LEN_8;
502 break;
503 default:
504 return -EINVAL;
505 }
506
507 return 0;
508}
509
510/*
511 * Construct an arch_hw_breakpoint from a perf_event.
512 */
513static int arch_build_bp_info(struct perf_event *bp)
514{
515 struct arch_hw_breakpoint *info = counter_arch_bp(bp);
516
517 /* Type */
518 switch (bp->attr.bp_type) {
519 case HW_BREAKPOINT_X:
520 info->ctrl.type = ARM_BREAKPOINT_EXECUTE;
521 break;
522 case HW_BREAKPOINT_R:
523 info->ctrl.type = ARM_BREAKPOINT_LOAD;
524 break;
525 case HW_BREAKPOINT_W:
526 info->ctrl.type = ARM_BREAKPOINT_STORE;
527 break;
528 case HW_BREAKPOINT_RW:
529 info->ctrl.type = ARM_BREAKPOINT_LOAD | ARM_BREAKPOINT_STORE;
530 break;
531 default:
532 return -EINVAL;
533 }
534
535 /* Len */
536 switch (bp->attr.bp_len) {
537 case HW_BREAKPOINT_LEN_1:
538 info->ctrl.len = ARM_BREAKPOINT_LEN_1;
539 break;
540 case HW_BREAKPOINT_LEN_2:
541 info->ctrl.len = ARM_BREAKPOINT_LEN_2;
542 break;
543 case HW_BREAKPOINT_LEN_4:
544 info->ctrl.len = ARM_BREAKPOINT_LEN_4;
545 break;
546 case HW_BREAKPOINT_LEN_8:
547 info->ctrl.len = ARM_BREAKPOINT_LEN_8;
548 if ((info->ctrl.type != ARM_BREAKPOINT_EXECUTE)
549 && max_watchpoint_len >= 8)
550 break;
551 default:
552 return -EINVAL;
553 }
554
Will Deacon6ee33c22010-11-25 12:01:54 +0000555 /*
556 * Breakpoints must be of length 2 (thumb) or 4 (ARM) bytes.
557 * Watchpoints can be of length 1, 2, 4 or 8 bytes if supported
558 * by the hardware and must be aligned to the appropriate number of
559 * bytes.
560 */
561 if (info->ctrl.type == ARM_BREAKPOINT_EXECUTE &&
562 info->ctrl.len != ARM_BREAKPOINT_LEN_2 &&
563 info->ctrl.len != ARM_BREAKPOINT_LEN_4)
564 return -EINVAL;
565
Will Deaconf81ef4a2010-09-03 10:41:08 +0100566 /* Address */
567 info->address = bp->attr.bp_addr;
568
569 /* Privilege */
570 info->ctrl.privilege = ARM_BREAKPOINT_USER;
Will Deacon93a04a32010-11-29 16:56:01 +0000571 if (arch_check_bp_in_kernelspace(bp))
Will Deaconf81ef4a2010-09-03 10:41:08 +0100572 info->ctrl.privilege |= ARM_BREAKPOINT_PRIV;
573
574 /* Enabled? */
575 info->ctrl.enabled = !bp->attr.disabled;
576
577 /* Mismatch */
578 info->ctrl.mismatch = 0;
579
580 return 0;
581}
582
583/*
584 * Validate the arch-specific HW Breakpoint register settings.
585 */
586int arch_validate_hwbkpt_settings(struct perf_event *bp)
587{
588 struct arch_hw_breakpoint *info = counter_arch_bp(bp);
589 int ret = 0;
Will Deacon6ee33c22010-11-25 12:01:54 +0000590 u32 offset, alignment_mask = 0x3;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100591
592 /* Build the arch_hw_breakpoint. */
593 ret = arch_build_bp_info(bp);
594 if (ret)
595 goto out;
596
597 /* Check address alignment. */
598 if (info->ctrl.len == ARM_BREAKPOINT_LEN_8)
599 alignment_mask = 0x7;
Will Deacon6ee33c22010-11-25 12:01:54 +0000600 offset = info->address & alignment_mask;
601 switch (offset) {
602 case 0:
603 /* Aligned */
604 break;
605 case 1:
606 /* Allow single byte watchpoint. */
607 if (info->ctrl.len == ARM_BREAKPOINT_LEN_1)
608 break;
609 case 2:
610 /* Allow halfword watchpoints and breakpoints. */
611 if (info->ctrl.len == ARM_BREAKPOINT_LEN_2)
612 break;
613 default:
614 ret = -EINVAL;
615 goto out;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100616 }
617
Will Deacon6ee33c22010-11-25 12:01:54 +0000618 info->address &= ~alignment_mask;
619 info->ctrl.len <<= offset;
620
Will Deaconf81ef4a2010-09-03 10:41:08 +0100621 /*
622 * Currently we rely on an overflow handler to take
623 * care of single-stepping the breakpoint when it fires.
624 * In the case of userspace breakpoints on a core with V7 debug,
625 * we can use the mismatch feature as a poor-man's hardware single-step.
626 */
627 if (WARN_ONCE(!bp->overflow_handler &&
Will Deacon0017ff42010-11-28 15:09:36 +0000628 (arch_check_bp_in_kernelspace(bp) || !core_has_mismatch_brps()),
Will Deaconf81ef4a2010-09-03 10:41:08 +0100629 "overflow handler required but none found")) {
630 ret = -EINVAL;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100631 }
632out:
633 return ret;
634}
635
Will Deacon9ebb3cb2010-12-01 14:12:13 +0000636/*
637 * Enable/disable single-stepping over the breakpoint bp at address addr.
638 */
639static void enable_single_step(struct perf_event *bp, u32 addr)
Will Deaconf81ef4a2010-09-03 10:41:08 +0100640{
Will Deacon9ebb3cb2010-12-01 14:12:13 +0000641 struct arch_hw_breakpoint *info = counter_arch_bp(bp);
Will Deaconf81ef4a2010-09-03 10:41:08 +0100642
Will Deacon9ebb3cb2010-12-01 14:12:13 +0000643 arch_uninstall_hw_breakpoint(bp);
644 info->step_ctrl.mismatch = 1;
645 info->step_ctrl.len = ARM_BREAKPOINT_LEN_4;
646 info->step_ctrl.type = ARM_BREAKPOINT_EXECUTE;
647 info->step_ctrl.privilege = info->ctrl.privilege;
648 info->step_ctrl.enabled = 1;
649 info->trigger = addr;
650 arch_install_hw_breakpoint(bp);
651}
Will Deaconf81ef4a2010-09-03 10:41:08 +0100652
Will Deacon9ebb3cb2010-12-01 14:12:13 +0000653static void disable_single_step(struct perf_event *bp)
654{
655 arch_uninstall_hw_breakpoint(bp);
656 counter_arch_bp(bp)->step_ctrl.enabled = 0;
657 arch_install_hw_breakpoint(bp);
Will Deaconf81ef4a2010-09-03 10:41:08 +0100658}
659
660static void watchpoint_handler(unsigned long unknown, struct pt_regs *regs)
661{
662 int i;
Will Deacon93a04a32010-11-29 16:56:01 +0000663 struct perf_event *wp, **slots = __get_cpu_var(wp_on_reg);
Will Deaconf81ef4a2010-09-03 10:41:08 +0100664 struct arch_hw_breakpoint *info;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100665
666 /* Without a disassembler, we can only handle 1 watchpoint. */
667 BUG_ON(core_num_wrps > 1);
668
Will Deaconf81ef4a2010-09-03 10:41:08 +0100669 for (i = 0; i < core_num_wrps; ++i) {
670 rcu_read_lock();
671
Will Deacon93a04a32010-11-29 16:56:01 +0000672 wp = slots[i];
673
674 if (wp == NULL) {
Will Deaconf81ef4a2010-09-03 10:41:08 +0100675 rcu_read_unlock();
676 continue;
677 }
678
679 /*
680 * The DFAR is an unknown value. Since we only allow a
681 * single watchpoint, we can set the trigger to the lowest
682 * possible faulting address.
683 */
Will Deacon93a04a32010-11-29 16:56:01 +0000684 info = counter_arch_bp(wp);
685 info->trigger = wp->attr.bp_addr;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100686 pr_debug("watchpoint fired: address = 0x%x\n", info->trigger);
Will Deacon93a04a32010-11-29 16:56:01 +0000687 perf_bp_event(wp, regs);
Will Deaconf81ef4a2010-09-03 10:41:08 +0100688
689 /*
690 * If no overflow handler is present, insert a temporary
691 * mismatch breakpoint so we can single-step over the
692 * watchpoint trigger.
693 */
Will Deacon9ebb3cb2010-12-01 14:12:13 +0000694 if (!wp->overflow_handler)
695 enable_single_step(wp, instruction_pointer(regs));
Will Deaconf81ef4a2010-09-03 10:41:08 +0100696
697 rcu_read_unlock();
698 }
699}
700
Will Deacon93a04a32010-11-29 16:56:01 +0000701static void watchpoint_single_step_handler(unsigned long pc)
702{
703 int i;
704 struct perf_event *wp, **slots = __get_cpu_var(wp_on_reg);
705 struct arch_hw_breakpoint *info;
706
707 for (i = 0; i < core_num_reserved_brps; ++i) {
708 rcu_read_lock();
709
710 wp = slots[i];
711
712 if (wp == NULL)
713 goto unlock;
714
715 info = counter_arch_bp(wp);
716 if (!info->step_ctrl.enabled)
717 goto unlock;
718
719 /*
720 * Restore the original watchpoint if we've completed the
721 * single-step.
722 */
Will Deacon9ebb3cb2010-12-01 14:12:13 +0000723 if (info->trigger != pc)
724 disable_single_step(wp);
Will Deacon93a04a32010-11-29 16:56:01 +0000725
726unlock:
727 rcu_read_unlock();
728 }
729}
730
Will Deaconf81ef4a2010-09-03 10:41:08 +0100731static void breakpoint_handler(unsigned long unknown, struct pt_regs *regs)
732{
733 int i;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100734 u32 ctrl_reg, val, addr;
735 struct perf_event *bp, **slots = __get_cpu_var(bp_on_reg);
736 struct arch_hw_breakpoint *info;
737 struct arch_hw_breakpoint_ctrl ctrl;
738
739 /* The exception entry code places the amended lr in the PC. */
740 addr = regs->ARM_pc;
741
Will Deacon93a04a32010-11-29 16:56:01 +0000742 /* Check the currently installed breakpoints first. */
743 for (i = 0; i < core_num_brps; ++i) {
Will Deaconf81ef4a2010-09-03 10:41:08 +0100744 rcu_read_lock();
745
746 bp = slots[i];
747
Will Deacon9ebb3cb2010-12-01 14:12:13 +0000748 if (bp == NULL)
749 goto unlock;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100750
Will Deacon9ebb3cb2010-12-01 14:12:13 +0000751 info = counter_arch_bp(bp);
Will Deaconf81ef4a2010-09-03 10:41:08 +0100752
753 /* Check if the breakpoint value matches. */
754 val = read_wb_reg(ARM_BASE_BVR + i);
755 if (val != (addr & ~0x3))
Will Deacon9ebb3cb2010-12-01 14:12:13 +0000756 goto mismatch;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100757
758 /* Possible match, check the byte address select to confirm. */
759 ctrl_reg = read_wb_reg(ARM_BASE_BCR + i);
760 decode_ctrl_reg(ctrl_reg, &ctrl);
761 if ((1 << (addr & 0x3)) & ctrl.len) {
Will Deaconf81ef4a2010-09-03 10:41:08 +0100762 info->trigger = addr;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100763 pr_debug("breakpoint fired: address = 0x%x\n", addr);
764 perf_bp_event(bp, regs);
Will Deacon9ebb3cb2010-12-01 14:12:13 +0000765 if (!bp->overflow_handler)
766 enable_single_step(bp, addr);
767 goto unlock;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100768 }
769
Will Deacon9ebb3cb2010-12-01 14:12:13 +0000770mismatch:
771 /* If we're stepping a breakpoint, it can now be restored. */
772 if (info->step_ctrl.enabled)
773 disable_single_step(bp);
774unlock:
Will Deaconf81ef4a2010-09-03 10:41:08 +0100775 rcu_read_unlock();
776 }
Will Deacon93a04a32010-11-29 16:56:01 +0000777
778 /* Handle any pending watchpoint single-step breakpoints. */
779 watchpoint_single_step_handler(addr);
Will Deaconf81ef4a2010-09-03 10:41:08 +0100780}
781
782/*
783 * Called from either the Data Abort Handler [watchpoint] or the
Will Deacon7e202692010-11-28 14:57:24 +0000784 * Prefetch Abort Handler [breakpoint] with preemption disabled.
Will Deaconf81ef4a2010-09-03 10:41:08 +0100785 */
786static int hw_breakpoint_pending(unsigned long addr, unsigned int fsr,
787 struct pt_regs *regs)
788{
Will Deacon7e202692010-11-28 14:57:24 +0000789 int ret = 0;
Will Deaconf81ef4a2010-09-03 10:41:08 +0100790 u32 dscr;
791
Will Deacon7e202692010-11-28 14:57:24 +0000792 /* We must be called with preemption disabled. */
793 WARN_ON(preemptible());
794
Will Deaconf81ef4a2010-09-03 10:41:08 +0100795 /* We only handle watchpoints and hardware breakpoints. */
796 ARM_DBG_READ(c1, 0, dscr);
797
798 /* Perform perf callbacks. */
799 switch (ARM_DSCR_MOE(dscr)) {
800 case ARM_ENTRY_BREAKPOINT:
801 breakpoint_handler(addr, regs);
802 break;
803 case ARM_ENTRY_ASYNC_WATCHPOINT:
Joe Perches235584b2010-10-30 14:21:24 -0700804 WARN(1, "Asynchronous watchpoint exception taken. Debugging results may be unreliable\n");
Will Deaconf81ef4a2010-09-03 10:41:08 +0100805 case ARM_ENTRY_SYNC_WATCHPOINT:
806 watchpoint_handler(addr, regs);
807 break;
808 default:
Will Deacon7e202692010-11-28 14:57:24 +0000809 ret = 1; /* Unhandled fault. */
Will Deaconf81ef4a2010-09-03 10:41:08 +0100810 }
811
Will Deacon7e202692010-11-28 14:57:24 +0000812 /*
813 * Re-enable preemption after it was disabled in the
814 * low-level exception handling code.
815 */
816 preempt_enable();
817
Will Deaconf81ef4a2010-09-03 10:41:08 +0100818 return ret;
819}
820
821/*
822 * One-time initialisation.
823 */
Will Deacon7d993312010-11-24 17:45:49 +0000824static void reset_ctrl_regs(void *unused)
Will Deaconf81ef4a2010-09-03 10:41:08 +0100825{
826 int i;
827
Will Deaconac88e072010-11-24 16:51:17 +0000828 /*
829 * v7 debug contains save and restore registers so that debug state
830 * can be maintained across low-power modes without leaving
831 * the debug logic powered up. It is IMPLEMENTATION DEFINED whether
832 * we can write to the debug registers out of reset, so we must
833 * unlock the OS Lock Access Register to avoid taking undefined
834 * instruction exceptions later on.
835 */
836 if (debug_arch >= ARM_DEBUG_ARCH_V7_ECP14) {
837 /*
838 * Unconditionally clear the lock by writing a value
839 * other than 0xC5ACCE55 to the access register.
840 */
841 asm volatile("mcr p14, 0, %0, c1, c0, 4" : : "r" (0));
842 isb();
843 }
844
Will Deaconf81ef4a2010-09-03 10:41:08 +0100845 if (enable_monitor_mode())
846 return;
847
Will Deacon0017ff42010-11-28 15:09:36 +0000848 /* We must also reset any reserved registers. */
849 for (i = 0; i < core_num_brps + core_num_reserved_brps; ++i) {
Will Deaconf81ef4a2010-09-03 10:41:08 +0100850 write_wb_reg(ARM_BASE_BCR + i, 0UL);
851 write_wb_reg(ARM_BASE_BVR + i, 0UL);
852 }
853
854 for (i = 0; i < core_num_wrps; ++i) {
855 write_wb_reg(ARM_BASE_WCR + i, 0UL);
856 write_wb_reg(ARM_BASE_WVR + i, 0UL);
857 }
858}
859
Will Deacon7d993312010-11-24 17:45:49 +0000860static int __cpuinit dbg_reset_notify(struct notifier_block *self,
861 unsigned long action, void *cpu)
862{
863 if (action == CPU_ONLINE)
864 smp_call_function_single((int)cpu, reset_ctrl_regs, NULL, 1);
865 return NOTIFY_OK;
866}
867
868static struct notifier_block __cpuinitdata dbg_reset_nb = {
869 .notifier_call = dbg_reset_notify,
870};
871
Will Deaconf81ef4a2010-09-03 10:41:08 +0100872static int __init arch_hw_breakpoint_init(void)
873{
874 int ret = 0;
875 u32 dscr;
876
877 debug_arch = get_debug_arch();
878
879 if (debug_arch > ARM_DEBUG_ARCH_V7_ECP14) {
880 pr_info("debug architecture 0x%x unsupported.\n", debug_arch);
881 ret = -ENODEV;
882 goto out;
883 }
884
885 /* Determine how many BRPs/WRPs are available. */
886 core_num_brps = get_num_brps();
Will Deacon0017ff42010-11-28 15:09:36 +0000887 core_num_reserved_brps = get_num_reserved_brps();
Will Deaconf81ef4a2010-09-03 10:41:08 +0100888 core_num_wrps = get_num_wrps();
889
890 pr_info("found %d breakpoint and %d watchpoint registers.\n",
Will Deacon0017ff42010-11-28 15:09:36 +0000891 core_num_brps + core_num_reserved_brps, core_num_wrps);
Will Deaconf81ef4a2010-09-03 10:41:08 +0100892
Will Deacon0017ff42010-11-28 15:09:36 +0000893 if (core_num_reserved_brps)
894 pr_info("%d breakpoint(s) reserved for watchpoint "
895 "single-step.\n", core_num_reserved_brps);
Will Deaconf81ef4a2010-09-03 10:41:08 +0100896
897 ARM_DBG_READ(c1, 0, dscr);
898 if (dscr & ARM_DSCR_HDBGEN) {
899 pr_warning("halting debug mode enabled. Assuming maximum "
900 "watchpoint size of 4 bytes.");
901 } else {
Will Deaconf81ef4a2010-09-03 10:41:08 +0100902 /*
903 * Reset the breakpoint resources. We assume that a halting
904 * debugger will leave the world in a nice state for us.
905 */
906 smp_call_function(reset_ctrl_regs, NULL, 1);
907 reset_ctrl_regs(NULL);
Will Deaconac88e072010-11-24 16:51:17 +0000908
909 /* Work out the maximum supported watchpoint length. */
910 max_watchpoint_len = get_max_wp_len();
911 pr_info("maximum watchpoint size is %u bytes.\n",
912 max_watchpoint_len);
Will Deaconf81ef4a2010-09-03 10:41:08 +0100913 }
914
915 /* Register debug fault handler. */
916 hook_fault_code(2, hw_breakpoint_pending, SIGTRAP, TRAP_HWBKPT,
917 "watchpoint debug exception");
918 hook_ifault_code(2, hw_breakpoint_pending, SIGTRAP, TRAP_HWBKPT,
919 "breakpoint debug exception");
920
Will Deacon7d993312010-11-24 17:45:49 +0000921 /* Register hotplug notifier. */
922 register_cpu_notifier(&dbg_reset_nb);
Will Deaconf81ef4a2010-09-03 10:41:08 +0100923out:
924 return ret;
925}
926arch_initcall(arch_hw_breakpoint_init);
927
928void hw_breakpoint_pmu_read(struct perf_event *bp)
929{
930}
931
932/*
933 * Dummy function to register with die_notifier.
934 */
935int hw_breakpoint_exceptions_notify(struct notifier_block *unused,
936 unsigned long val, void *data)
937{
938 return NOTIFY_DONE;
939}