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.
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.
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.
15 * Copyright (C) 2009, 2010 ARM Limited
17 * Author: Will Deacon <will.deacon@arm.com>
21 * HW_breakpoint: a unified kernel/user-space hardware breakpoint facility,
22 * using the CPU's debug registers.
24 #define pr_fmt(fmt) "hw-breakpoint: " fmt
26 #include <linux/errno.h>
27 #include <linux/hardirq.h>
28 #include <linux/perf_event.h>
29 #include <linux/hw_breakpoint.h>
30 #include <linux/smp.h>
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>
40 /* Breakpoint currently in use for each BRP. */
41 static DEFINE_PER_CPU(struct perf_event
*, bp_on_reg
[ARM_MAX_BRP
]);
43 /* Watchpoint currently in use for each WRP. */
44 static DEFINE_PER_CPU(struct perf_event
*, wp_on_reg
[ARM_MAX_WRP
]);
46 /* Number of BRP/WRP registers on this CPU. */
47 static int core_num_brps
;
48 static int core_num_wrps
;
50 /* Debug architecture version. */
53 /* Maximum supported watchpoint length. */
54 static u8 max_watchpoint_len
;
56 #define READ_WB_REG_CASE(OP2, M, VAL) \
57 case ((OP2 << 4) + M): \
58 ARM_DBG_READ(c ## M, OP2, VAL); \
61 #define WRITE_WB_REG_CASE(OP2, M, VAL) \
62 case ((OP2 << 4) + M): \
63 ARM_DBG_WRITE(c ## M, OP2, VAL);\
66 #define GEN_READ_WB_REG_CASES(OP2, VAL) \
67 READ_WB_REG_CASE(OP2, 0, VAL); \
68 READ_WB_REG_CASE(OP2, 1, VAL); \
69 READ_WB_REG_CASE(OP2, 2, VAL); \
70 READ_WB_REG_CASE(OP2, 3, VAL); \
71 READ_WB_REG_CASE(OP2, 4, VAL); \
72 READ_WB_REG_CASE(OP2, 5, VAL); \
73 READ_WB_REG_CASE(OP2, 6, VAL); \
74 READ_WB_REG_CASE(OP2, 7, VAL); \
75 READ_WB_REG_CASE(OP2, 8, VAL); \
76 READ_WB_REG_CASE(OP2, 9, VAL); \
77 READ_WB_REG_CASE(OP2, 10, VAL); \
78 READ_WB_REG_CASE(OP2, 11, VAL); \
79 READ_WB_REG_CASE(OP2, 12, VAL); \
80 READ_WB_REG_CASE(OP2, 13, VAL); \
81 READ_WB_REG_CASE(OP2, 14, VAL); \
82 READ_WB_REG_CASE(OP2, 15, VAL)
84 #define GEN_WRITE_WB_REG_CASES(OP2, VAL) \
85 WRITE_WB_REG_CASE(OP2, 0, VAL); \
86 WRITE_WB_REG_CASE(OP2, 1, VAL); \
87 WRITE_WB_REG_CASE(OP2, 2, VAL); \
88 WRITE_WB_REG_CASE(OP2, 3, VAL); \
89 WRITE_WB_REG_CASE(OP2, 4, VAL); \
90 WRITE_WB_REG_CASE(OP2, 5, VAL); \
91 WRITE_WB_REG_CASE(OP2, 6, VAL); \
92 WRITE_WB_REG_CASE(OP2, 7, VAL); \
93 WRITE_WB_REG_CASE(OP2, 8, VAL); \
94 WRITE_WB_REG_CASE(OP2, 9, VAL); \
95 WRITE_WB_REG_CASE(OP2, 10, VAL); \
96 WRITE_WB_REG_CASE(OP2, 11, VAL); \
97 WRITE_WB_REG_CASE(OP2, 12, VAL); \
98 WRITE_WB_REG_CASE(OP2, 13, VAL); \
99 WRITE_WB_REG_CASE(OP2, 14, VAL); \
100 WRITE_WB_REG_CASE(OP2, 15, VAL)
102 static u32
read_wb_reg(int n
)
107 GEN_READ_WB_REG_CASES(ARM_OP2_BVR
, val
);
108 GEN_READ_WB_REG_CASES(ARM_OP2_BCR
, val
);
109 GEN_READ_WB_REG_CASES(ARM_OP2_WVR
, val
);
110 GEN_READ_WB_REG_CASES(ARM_OP2_WCR
, val
);
112 pr_warning("attempt to read from unknown breakpoint "
119 static void write_wb_reg(int n
, u32 val
)
122 GEN_WRITE_WB_REG_CASES(ARM_OP2_BVR
, val
);
123 GEN_WRITE_WB_REG_CASES(ARM_OP2_BCR
, val
);
124 GEN_WRITE_WB_REG_CASES(ARM_OP2_WVR
, val
);
125 GEN_WRITE_WB_REG_CASES(ARM_OP2_WCR
, val
);
127 pr_warning("attempt to write to unknown breakpoint "
133 /* Determine debug architecture. */
134 static u8
get_debug_arch(void)
138 /* Do we implement the extended CPUID interface? */
139 if (((read_cpuid_id() >> 16) & 0xf) != 0xf) {
140 pr_warning("CPUID feature registers not supported. "
141 "Assuming v6 debug is present.\n");
142 return ARM_DEBUG_ARCH_V6
;
145 ARM_DBG_READ(c0
, 0, didr
);
146 return (didr
>> 16) & 0xf;
149 u8
arch_get_debug_arch(void)
154 static int debug_arch_supported(void)
156 u8 arch
= get_debug_arch();
158 /* We don't support the memory-mapped interface. */
159 return (arch
>= ARM_DEBUG_ARCH_V6
&& arch
<= ARM_DEBUG_ARCH_V7_ECP14
) ||
160 arch
>= ARM_DEBUG_ARCH_V7_1
;
163 /* Determine number of WRP registers available. */
164 static int get_num_wrp_resources(void)
167 ARM_DBG_READ(c0
, 0, didr
);
168 return ((didr
>> 28) & 0xf) + 1;
171 /* Determine number of BRP registers available. */
172 static int get_num_brp_resources(void)
175 ARM_DBG_READ(c0
, 0, didr
);
176 return ((didr
>> 24) & 0xf) + 1;
179 /* Does this core support mismatch breakpoints? */
180 static int core_has_mismatch_brps(void)
182 return (get_debug_arch() >= ARM_DEBUG_ARCH_V7_ECP14
&&
183 get_num_brp_resources() > 1);
186 /* Determine number of usable WRPs available. */
187 static int get_num_wrps(void)
190 * On debug architectures prior to 7.1, when a watchpoint fires, the
191 * only way to work out which watchpoint it was is by disassembling
192 * the faulting instruction and working out the address of the memory
195 * Furthermore, we can only do this if the watchpoint was precise
196 * since imprecise watchpoints prevent us from calculating register
199 * Providing we have more than 1 breakpoint register, we only report
200 * a single watchpoint register for the time being. This way, we always
201 * know which watchpoint fired. In the future we can either add a
202 * disassembler and address generation emulator, or we can insert a
203 * check to see if the DFAR is set on watchpoint exception entry
204 * [the ARM ARM states that the DFAR is UNKNOWN, but experience shows
205 * that it is set on some implementations].
207 if (get_debug_arch() < ARM_DEBUG_ARCH_V7_1
)
210 return get_num_wrp_resources();
213 /* Determine number of usable BRPs available. */
214 static int get_num_brps(void)
216 int brps
= get_num_brp_resources();
217 return core_has_mismatch_brps() ? brps
- 1 : brps
;
221 * In order to access the breakpoint/watchpoint control registers,
222 * we must be running in debug monitor mode. Unfortunately, we can
223 * be put into halting debug mode at any time by an external debugger
224 * but there is nothing we can do to prevent that.
226 static int enable_monitor_mode(void)
231 ARM_DBG_READ(c1
, 0, dscr
);
233 /* Ensure that halting mode is disabled. */
234 if (WARN_ONCE(dscr
& ARM_DSCR_HDBGEN
,
235 "halting debug mode enabled. Unable to access hardware resources.\n")) {
240 /* If monitor mode is already enabled, just return. */
241 if (dscr
& ARM_DSCR_MDBGEN
)
244 /* Write to the corresponding DSCR. */
245 switch (get_debug_arch()) {
246 case ARM_DEBUG_ARCH_V6
:
247 case ARM_DEBUG_ARCH_V6_1
:
248 ARM_DBG_WRITE(c1
, 0, (dscr
| ARM_DSCR_MDBGEN
));
250 case ARM_DEBUG_ARCH_V7_ECP14
:
251 case ARM_DEBUG_ARCH_V7_1
:
252 ARM_DBG_WRITE(c2
, 2, (dscr
| ARM_DSCR_MDBGEN
));
259 /* Check that the write made it through. */
260 ARM_DBG_READ(c1
, 0, dscr
);
261 if (!(dscr
& ARM_DSCR_MDBGEN
))
268 int hw_breakpoint_slots(int type
)
270 if (!debug_arch_supported())
274 * We can be called early, so don't rely on
275 * our static variables being initialised.
279 return get_num_brps();
281 return get_num_wrps();
283 pr_warning("unknown slot type: %d\n", type
);
289 * Check if 8-bit byte-address select is available.
290 * This clobbers WRP 0.
292 static u8
get_max_wp_len(void)
295 struct arch_hw_breakpoint_ctrl ctrl
;
298 if (debug_arch
< ARM_DEBUG_ARCH_V7_ECP14
)
301 memset(&ctrl
, 0, sizeof(ctrl
));
302 ctrl
.len
= ARM_BREAKPOINT_LEN_8
;
303 ctrl_reg
= encode_ctrl_reg(ctrl
);
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
)
314 u8
arch_get_max_wp_len(void)
316 return max_watchpoint_len
;
320 * Install a perf counter breakpoint.
322 int arch_install_hw_breakpoint(struct perf_event
*bp
)
324 struct arch_hw_breakpoint
*info
= counter_arch_bp(bp
);
325 struct perf_event
**slot
, **slots
;
326 int i
, max_slots
, ctrl_base
, val_base
, ret
= 0;
329 /* Ensure that we are in monitor mode and halting mode is disabled. */
330 ret
= enable_monitor_mode();
334 addr
= info
->address
;
335 ctrl
= encode_ctrl_reg(info
->ctrl
) | 0x1;
337 if (info
->ctrl
.type
== ARM_BREAKPOINT_EXECUTE
) {
339 ctrl_base
= ARM_BASE_BCR
;
340 val_base
= ARM_BASE_BVR
;
341 slots
= (struct perf_event
**)__get_cpu_var(bp_on_reg
);
342 max_slots
= core_num_brps
;
345 ctrl_base
= ARM_BASE_WCR
;
346 val_base
= ARM_BASE_WVR
;
347 slots
= (struct perf_event
**)__get_cpu_var(wp_on_reg
);
348 max_slots
= core_num_wrps
;
351 for (i
= 0; i
< max_slots
; ++i
) {
360 if (WARN_ONCE(i
== max_slots
, "Can't find any breakpoint slot\n")) {
365 /* Override the breakpoint data with the step data. */
366 if (info
->step_ctrl
.enabled
) {
367 addr
= info
->trigger
& ~0x3;
368 ctrl
= encode_ctrl_reg(info
->step_ctrl
);
369 if (info
->ctrl
.type
!= ARM_BREAKPOINT_EXECUTE
) {
371 ctrl_base
= ARM_BASE_BCR
+ core_num_brps
;
372 val_base
= ARM_BASE_BVR
+ core_num_brps
;
376 /* Setup the address register. */
377 write_wb_reg(val_base
+ i
, addr
);
379 /* Setup the control register. */
380 write_wb_reg(ctrl_base
+ i
, ctrl
);
386 void arch_uninstall_hw_breakpoint(struct perf_event
*bp
)
388 struct arch_hw_breakpoint
*info
= counter_arch_bp(bp
);
389 struct perf_event
**slot
, **slots
;
390 int i
, max_slots
, base
;
392 if (info
->ctrl
.type
== ARM_BREAKPOINT_EXECUTE
) {
395 slots
= (struct perf_event
**)__get_cpu_var(bp_on_reg
);
396 max_slots
= core_num_brps
;
400 slots
= (struct perf_event
**)__get_cpu_var(wp_on_reg
);
401 max_slots
= core_num_wrps
;
404 /* Remove the breakpoint. */
405 for (i
= 0; i
< max_slots
; ++i
) {
414 if (WARN_ONCE(i
== max_slots
, "Can't find any breakpoint slot\n"))
417 /* Ensure that we disable the mismatch breakpoint. */
418 if (info
->ctrl
.type
!= ARM_BREAKPOINT_EXECUTE
&&
419 info
->step_ctrl
.enabled
) {
421 base
= ARM_BASE_BCR
+ core_num_brps
;
424 /* Reset the control register. */
425 write_wb_reg(base
+ i
, 0);
428 static int get_hbp_len(u8 hbp_len
)
430 unsigned int len_in_bytes
= 0;
433 case ARM_BREAKPOINT_LEN_1
:
436 case ARM_BREAKPOINT_LEN_2
:
439 case ARM_BREAKPOINT_LEN_4
:
442 case ARM_BREAKPOINT_LEN_8
:
451 * Check whether bp virtual address is in kernel space.
453 int arch_check_bp_in_kernelspace(struct perf_event
*bp
)
457 struct arch_hw_breakpoint
*info
= counter_arch_bp(bp
);
460 len
= get_hbp_len(info
->ctrl
.len
);
462 return (va
>= TASK_SIZE
) && ((va
+ len
- 1) >= TASK_SIZE
);
466 * Extract generic type and length encodings from an arch_hw_breakpoint_ctrl.
467 * Hopefully this will disappear when ptrace can bypass the conversion
468 * to generic breakpoint descriptions.
470 int arch_bp_generic_fields(struct arch_hw_breakpoint_ctrl ctrl
,
471 int *gen_len
, int *gen_type
)
475 case ARM_BREAKPOINT_EXECUTE
:
476 *gen_type
= HW_BREAKPOINT_X
;
478 case ARM_BREAKPOINT_LOAD
:
479 *gen_type
= HW_BREAKPOINT_R
;
481 case ARM_BREAKPOINT_STORE
:
482 *gen_type
= HW_BREAKPOINT_W
;
484 case ARM_BREAKPOINT_LOAD
| ARM_BREAKPOINT_STORE
:
485 *gen_type
= HW_BREAKPOINT_RW
;
493 case ARM_BREAKPOINT_LEN_1
:
494 *gen_len
= HW_BREAKPOINT_LEN_1
;
496 case ARM_BREAKPOINT_LEN_2
:
497 *gen_len
= HW_BREAKPOINT_LEN_2
;
499 case ARM_BREAKPOINT_LEN_4
:
500 *gen_len
= HW_BREAKPOINT_LEN_4
;
502 case ARM_BREAKPOINT_LEN_8
:
503 *gen_len
= HW_BREAKPOINT_LEN_8
;
513 * Construct an arch_hw_breakpoint from a perf_event.
515 static int arch_build_bp_info(struct perf_event
*bp
)
517 struct arch_hw_breakpoint
*info
= counter_arch_bp(bp
);
520 switch (bp
->attr
.bp_type
) {
521 case HW_BREAKPOINT_X
:
522 info
->ctrl
.type
= ARM_BREAKPOINT_EXECUTE
;
524 case HW_BREAKPOINT_R
:
525 info
->ctrl
.type
= ARM_BREAKPOINT_LOAD
;
527 case HW_BREAKPOINT_W
:
528 info
->ctrl
.type
= ARM_BREAKPOINT_STORE
;
530 case HW_BREAKPOINT_RW
:
531 info
->ctrl
.type
= ARM_BREAKPOINT_LOAD
| ARM_BREAKPOINT_STORE
;
538 switch (bp
->attr
.bp_len
) {
539 case HW_BREAKPOINT_LEN_1
:
540 info
->ctrl
.len
= ARM_BREAKPOINT_LEN_1
;
542 case HW_BREAKPOINT_LEN_2
:
543 info
->ctrl
.len
= ARM_BREAKPOINT_LEN_2
;
545 case HW_BREAKPOINT_LEN_4
:
546 info
->ctrl
.len
= ARM_BREAKPOINT_LEN_4
;
548 case HW_BREAKPOINT_LEN_8
:
549 info
->ctrl
.len
= ARM_BREAKPOINT_LEN_8
;
550 if ((info
->ctrl
.type
!= ARM_BREAKPOINT_EXECUTE
)
551 && max_watchpoint_len
>= 8)
558 * Breakpoints must be of length 2 (thumb) or 4 (ARM) bytes.
559 * Watchpoints can be of length 1, 2, 4 or 8 bytes if supported
560 * by the hardware and must be aligned to the appropriate number of
563 if (info
->ctrl
.type
== ARM_BREAKPOINT_EXECUTE
&&
564 info
->ctrl
.len
!= ARM_BREAKPOINT_LEN_2
&&
565 info
->ctrl
.len
!= ARM_BREAKPOINT_LEN_4
)
569 info
->address
= bp
->attr
.bp_addr
;
572 info
->ctrl
.privilege
= ARM_BREAKPOINT_USER
;
573 if (arch_check_bp_in_kernelspace(bp
))
574 info
->ctrl
.privilege
|= ARM_BREAKPOINT_PRIV
;
577 info
->ctrl
.enabled
= !bp
->attr
.disabled
;
580 info
->ctrl
.mismatch
= 0;
586 * Validate the arch-specific HW Breakpoint register settings.
588 int arch_validate_hwbkpt_settings(struct perf_event
*bp
)
590 struct arch_hw_breakpoint
*info
= counter_arch_bp(bp
);
592 u32 offset
, alignment_mask
= 0x3;
594 /* Build the arch_hw_breakpoint. */
595 ret
= arch_build_bp_info(bp
);
599 /* Check address alignment. */
600 if (info
->ctrl
.len
== ARM_BREAKPOINT_LEN_8
)
601 alignment_mask
= 0x7;
602 offset
= info
->address
& alignment_mask
;
608 /* Allow single byte watchpoint. */
609 if (info
->ctrl
.len
== ARM_BREAKPOINT_LEN_1
)
612 /* Allow halfword watchpoints and breakpoints. */
613 if (info
->ctrl
.len
== ARM_BREAKPOINT_LEN_2
)
620 info
->address
&= ~alignment_mask
;
621 info
->ctrl
.len
<<= offset
;
624 * Currently we rely on an overflow handler to take
625 * care of single-stepping the breakpoint when it fires.
626 * In the case of userspace breakpoints on a core with V7 debug,
627 * we can use the mismatch feature as a poor-man's hardware
628 * single-step, but this only works for per-task breakpoints.
630 if (!bp
->overflow_handler
&& (arch_check_bp_in_kernelspace(bp
) ||
631 !core_has_mismatch_brps() || !bp
->hw
.bp_target
)) {
632 pr_warning("overflow handler required but none found\n");
640 * Enable/disable single-stepping over the breakpoint bp at address addr.
642 static void enable_single_step(struct perf_event
*bp
, u32 addr
)
644 struct arch_hw_breakpoint
*info
= counter_arch_bp(bp
);
646 arch_uninstall_hw_breakpoint(bp
);
647 info
->step_ctrl
.mismatch
= 1;
648 info
->step_ctrl
.len
= ARM_BREAKPOINT_LEN_4
;
649 info
->step_ctrl
.type
= ARM_BREAKPOINT_EXECUTE
;
650 info
->step_ctrl
.privilege
= info
->ctrl
.privilege
;
651 info
->step_ctrl
.enabled
= 1;
652 info
->trigger
= addr
;
653 arch_install_hw_breakpoint(bp
);
656 static void disable_single_step(struct perf_event
*bp
)
658 arch_uninstall_hw_breakpoint(bp
);
659 counter_arch_bp(bp
)->step_ctrl
.enabled
= 0;
660 arch_install_hw_breakpoint(bp
);
663 static void watchpoint_handler(unsigned long addr
, unsigned int fsr
,
664 struct pt_regs
*regs
)
667 u32 val
, ctrl_reg
, alignment_mask
;
668 struct perf_event
*wp
, **slots
;
669 struct arch_hw_breakpoint
*info
;
670 struct arch_hw_breakpoint_ctrl ctrl
;
672 slots
= (struct perf_event
**)__get_cpu_var(wp_on_reg
);
674 for (i
= 0; i
< core_num_wrps
; ++i
) {
682 info
= counter_arch_bp(wp
);
684 * The DFAR is an unknown value on debug architectures prior
685 * to 7.1. Since we only allow a single watchpoint on these
686 * older CPUs, we can set the trigger to the lowest possible
689 if (debug_arch
< ARM_DEBUG_ARCH_V7_1
) {
691 info
->trigger
= wp
->attr
.bp_addr
;
693 if (info
->ctrl
.len
== ARM_BREAKPOINT_LEN_8
)
694 alignment_mask
= 0x7;
696 alignment_mask
= 0x3;
698 /* Check if the watchpoint value matches. */
699 val
= read_wb_reg(ARM_BASE_WVR
+ i
);
700 if (val
!= (addr
& ~alignment_mask
))
703 /* Possible match, check the byte address select. */
704 ctrl_reg
= read_wb_reg(ARM_BASE_WCR
+ i
);
705 decode_ctrl_reg(ctrl_reg
, &ctrl
);
706 if (!((1 << (addr
& alignment_mask
)) & ctrl
.len
))
709 /* Check that the access type matches. */
710 access
= (fsr
& ARM_FSR_ACCESS_MASK
) ? HW_BREAKPOINT_W
:
712 if (!(access
& hw_breakpoint_type(wp
)))
715 /* We have a winner. */
716 info
->trigger
= addr
;
719 pr_debug("watchpoint fired: address = 0x%x\n", info
->trigger
);
720 perf_bp_event(wp
, regs
);
723 * If no overflow handler is present, insert a temporary
724 * mismatch breakpoint so we can single-step over the
725 * watchpoint trigger.
727 if (!wp
->overflow_handler
)
728 enable_single_step(wp
, instruction_pointer(regs
));
735 static void watchpoint_single_step_handler(unsigned long pc
)
738 struct perf_event
*wp
, **slots
;
739 struct arch_hw_breakpoint
*info
;
741 slots
= (struct perf_event
**)__get_cpu_var(wp_on_reg
);
743 for (i
= 0; i
< core_num_wrps
; ++i
) {
751 info
= counter_arch_bp(wp
);
752 if (!info
->step_ctrl
.enabled
)
756 * Restore the original watchpoint if we've completed the
759 if (info
->trigger
!= pc
)
760 disable_single_step(wp
);
767 static void breakpoint_handler(unsigned long unknown
, struct pt_regs
*regs
)
770 u32 ctrl_reg
, val
, addr
;
771 struct perf_event
*bp
, **slots
;
772 struct arch_hw_breakpoint
*info
;
773 struct arch_hw_breakpoint_ctrl ctrl
;
775 slots
= (struct perf_event
**)__get_cpu_var(bp_on_reg
);
777 /* The exception entry code places the amended lr in the PC. */
780 /* Check the currently installed breakpoints first. */
781 for (i
= 0; i
< core_num_brps
; ++i
) {
789 info
= counter_arch_bp(bp
);
791 /* Check if the breakpoint value matches. */
792 val
= read_wb_reg(ARM_BASE_BVR
+ i
);
793 if (val
!= (addr
& ~0x3))
796 /* Possible match, check the byte address select to confirm. */
797 ctrl_reg
= read_wb_reg(ARM_BASE_BCR
+ i
);
798 decode_ctrl_reg(ctrl_reg
, &ctrl
);
799 if ((1 << (addr
& 0x3)) & ctrl
.len
) {
800 info
->trigger
= addr
;
801 pr_debug("breakpoint fired: address = 0x%x\n", addr
);
802 perf_bp_event(bp
, regs
);
803 if (!bp
->overflow_handler
)
804 enable_single_step(bp
, addr
);
809 /* If we're stepping a breakpoint, it can now be restored. */
810 if (info
->step_ctrl
.enabled
)
811 disable_single_step(bp
);
816 /* Handle any pending watchpoint single-step breakpoints. */
817 watchpoint_single_step_handler(addr
);
821 * Called from either the Data Abort Handler [watchpoint] or the
822 * Prefetch Abort Handler [breakpoint] with interrupts disabled.
824 static int hw_breakpoint_pending(unsigned long addr
, unsigned int fsr
,
825 struct pt_regs
*regs
)
832 if (interrupts_enabled(regs
))
835 /* We only handle watchpoints and hardware breakpoints. */
836 ARM_DBG_READ(c1
, 0, dscr
);
838 /* Perform perf callbacks. */
839 switch (ARM_DSCR_MOE(dscr
)) {
840 case ARM_ENTRY_BREAKPOINT
:
841 breakpoint_handler(addr
, regs
);
843 case ARM_ENTRY_ASYNC_WATCHPOINT
:
844 WARN(1, "Asynchronous watchpoint exception taken. Debugging results may be unreliable\n");
845 case ARM_ENTRY_SYNC_WATCHPOINT
:
846 watchpoint_handler(addr
, fsr
, regs
);
849 ret
= 1; /* Unhandled fault. */
858 * One-time initialisation.
860 static cpumask_t debug_err_mask
;
862 static int debug_reg_trap(struct pt_regs
*regs
, unsigned int instr
)
864 int cpu
= smp_processor_id();
866 pr_warning("Debug register access (0x%x) caused undefined instruction on CPU %d\n",
869 /* Set the error flag for this CPU and skip the faulting instruction. */
870 cpumask_set_cpu(cpu
, &debug_err_mask
);
871 instruction_pointer(regs
) += 4;
875 static struct undef_hook debug_reg_hook
= {
876 .instr_mask
= 0x0fe80f10,
877 .instr_val
= 0x0e000e10,
878 .fn
= debug_reg_trap
,
881 static void reset_ctrl_regs(void *unused
)
883 int i
, raw_num_brps
, err
= 0, cpu
= smp_processor_id();
887 * v7 debug contains save and restore registers so that debug state
888 * can be maintained across low-power modes without leaving the debug
889 * logic powered up. It is IMPLEMENTATION DEFINED whether we can access
890 * the debug registers out of reset, so we must unlock the OS Lock
891 * Access Register to avoid taking undefined instruction exceptions
894 switch (debug_arch
) {
895 case ARM_DEBUG_ARCH_V6
:
896 case ARM_DEBUG_ARCH_V6_1
:
897 /* ARMv6 cores just need to reset the registers. */
899 case ARM_DEBUG_ARCH_V7_ECP14
:
901 * Ensure sticky power-down is clear (i.e. debug logic is
904 asm volatile("mrc p14, 0, %0, c1, c5, 4" : "=r" (dbg_power
));
905 if ((dbg_power
& 0x1) == 0)
908 case ARM_DEBUG_ARCH_V7_1
:
910 * Ensure the OS double lock is clear.
912 asm volatile("mrc p14, 0, %0, c1, c3, 4" : "=r" (dbg_power
));
913 if ((dbg_power
& 0x1) == 1)
919 pr_warning("CPU %d debug is powered down!\n", cpu
);
920 cpumask_or(&debug_err_mask
, &debug_err_mask
, cpumask_of(cpu
));
925 * Unconditionally clear the lock by writing a value
926 * other than 0xC5ACCE55 to the access register.
928 asm volatile("mcr p14, 0, %0, c1, c0, 4" : : "r" (0));
932 * Clear any configured vector-catch events before
933 * enabling monitor mode.
935 asm volatile("mcr p14, 0, %0, c0, c7, 0" : : "r" (0));
939 if (enable_monitor_mode())
942 /* We must also reset any reserved registers. */
943 raw_num_brps
= get_num_brp_resources();
944 for (i
= 0; i
< raw_num_brps
; ++i
) {
945 write_wb_reg(ARM_BASE_BCR
+ i
, 0UL);
946 write_wb_reg(ARM_BASE_BVR
+ i
, 0UL);
949 for (i
= 0; i
< core_num_wrps
; ++i
) {
950 write_wb_reg(ARM_BASE_WCR
+ i
, 0UL);
951 write_wb_reg(ARM_BASE_WVR
+ i
, 0UL);
955 static int __cpuinit
dbg_reset_notify(struct notifier_block
*self
,
956 unsigned long action
, void *cpu
)
958 if (action
== CPU_ONLINE
)
959 smp_call_function_single((int)cpu
, reset_ctrl_regs
, NULL
, 1);
964 static struct notifier_block __cpuinitdata dbg_reset_nb
= {
965 .notifier_call
= dbg_reset_notify
,
968 static int __init
arch_hw_breakpoint_init(void)
972 debug_arch
= get_debug_arch();
974 if (!debug_arch_supported()) {
975 pr_info("debug architecture 0x%x unsupported.\n", debug_arch
);
979 /* Determine how many BRPs/WRPs are available. */
980 core_num_brps
= get_num_brps();
981 core_num_wrps
= get_num_wrps();
984 * We need to tread carefully here because DBGSWENABLE may be
985 * driven low on this core and there isn't an architected way to
988 register_undef_hook(&debug_reg_hook
);
991 * Reset the breakpoint resources. We assume that a halting
992 * debugger will leave the world in a nice state for us.
994 on_each_cpu(reset_ctrl_regs
, NULL
, 1);
995 unregister_undef_hook(&debug_reg_hook
);
996 if (!cpumask_empty(&debug_err_mask
)) {
1002 pr_info("found %d " "%s" "breakpoint and %d watchpoint registers.\n",
1003 core_num_brps
, core_has_mismatch_brps() ? "(+1 reserved) " :
1006 ARM_DBG_READ(c1
, 0, dscr
);
1007 if (dscr
& ARM_DSCR_HDBGEN
) {
1008 max_watchpoint_len
= 4;
1009 pr_warning("halting debug mode enabled. Assuming maximum watchpoint size of %u bytes.\n",
1010 max_watchpoint_len
);
1012 /* Work out the maximum supported watchpoint length. */
1013 max_watchpoint_len
= get_max_wp_len();
1014 pr_info("maximum watchpoint size is %u bytes.\n",
1015 max_watchpoint_len
);
1018 /* Register debug fault handler. */
1019 hook_fault_code(FAULT_CODE_DEBUG
, hw_breakpoint_pending
, SIGTRAP
,
1020 TRAP_HWBKPT
, "watchpoint debug exception");
1021 hook_ifault_code(FAULT_CODE_DEBUG
, hw_breakpoint_pending
, SIGTRAP
,
1022 TRAP_HWBKPT
, "breakpoint debug exception");
1024 /* Register hotplug notifier. */
1025 register_cpu_notifier(&dbg_reset_nb
);
1028 arch_initcall(arch_hw_breakpoint_init
);
1030 void hw_breakpoint_pmu_read(struct perf_event
*bp
)
1035 * Dummy function to register with die_notifier.
1037 int hw_breakpoint_exceptions_notify(struct notifier_block
*unused
,
1038 unsigned long val
, void *data
)