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/perf_event.h>
28 #include <linux/hw_breakpoint.h>
29 #include <linux/smp.h>
31 #include <asm/cacheflush.h>
32 #include <asm/cputype.h>
33 #include <asm/current.h>
34 #include <asm/hw_breakpoint.h>
35 #include <asm/kdebug.h>
36 #include <asm/system.h>
37 #include <asm/traps.h>
39 /* Breakpoint currently in use for each BRP. */
40 static DEFINE_PER_CPU(struct perf_event
*, bp_on_reg
[ARM_MAX_BRP
]);
42 /* Watchpoint currently in use for each WRP. */
43 static DEFINE_PER_CPU(struct perf_event
*, wp_on_reg
[ARM_MAX_WRP
]);
45 /* Number of BRP/WRP registers on this CPU. */
46 static int core_num_brps
;
47 static int core_num_wrps
;
49 /* Debug architecture version. */
52 /* Maximum supported watchpoint length. */
53 static u8 max_watchpoint_len
;
55 /* Determine number of BRP registers available. */
56 static int get_num_brps(void)
59 ARM_DBG_READ(c0
, 0, didr
);
60 return ((didr
>> 24) & 0xf) + 1;
63 /* Determine number of WRP registers available. */
64 static int get_num_wrps(void)
67 * FIXME: When a watchpoint fires, the only way to work out which
68 * watchpoint it was is by disassembling the faulting instruction
69 * and working out the address of the memory access.
71 * Furthermore, we can only do this if the watchpoint was precise
72 * since imprecise watchpoints prevent us from calculating register
75 * For the time being, we only report 1 watchpoint register so we
76 * always know which watchpoint fired. In the future we can either
77 * add a disassembler and address generation emulator, or we can
78 * insert a check to see if the DFAR is set on watchpoint exception
79 * entry [the ARM ARM states that the DFAR is UNKNOWN, but
80 * experience shows that it is set on some implementations].
85 ARM_DBG_READ(c0
, 0, didr
);
86 return ((didr
>> 28) & 0xf) + 1;
92 int hw_breakpoint_slots(int type
)
95 * We can be called early, so don't rely on
96 * our static variables being initialised.
100 return get_num_brps();
102 return get_num_wrps();
104 pr_warning("unknown slot type: %d\n", type
);
109 /* Determine debug architecture. */
110 static u8
get_debug_arch(void)
114 /* Do we implement the extended CPUID interface? */
115 if (((read_cpuid_id() >> 16) & 0xf) != 0xf) {
116 pr_warning("CPUID feature registers not supported. "
117 "Assuming v6 debug is present.\n");
118 return ARM_DEBUG_ARCH_V6
;
121 ARM_DBG_READ(c0
, 0, didr
);
122 return (didr
>> 16) & 0xf;
125 /* Does this core support mismatch breakpoints? */
126 static int core_has_mismatch_bps(void)
128 return debug_arch
>= ARM_DEBUG_ARCH_V7_ECP14
&& core_num_brps
> 1;
131 u8
arch_get_debug_arch(void)
136 #define READ_WB_REG_CASE(OP2, M, VAL) \
137 case ((OP2 << 4) + M): \
138 ARM_DBG_READ(c ## M, OP2, VAL); \
141 #define WRITE_WB_REG_CASE(OP2, M, VAL) \
142 case ((OP2 << 4) + M): \
143 ARM_DBG_WRITE(c ## M, OP2, VAL);\
146 #define GEN_READ_WB_REG_CASES(OP2, VAL) \
147 READ_WB_REG_CASE(OP2, 0, VAL); \
148 READ_WB_REG_CASE(OP2, 1, VAL); \
149 READ_WB_REG_CASE(OP2, 2, VAL); \
150 READ_WB_REG_CASE(OP2, 3, VAL); \
151 READ_WB_REG_CASE(OP2, 4, VAL); \
152 READ_WB_REG_CASE(OP2, 5, VAL); \
153 READ_WB_REG_CASE(OP2, 6, VAL); \
154 READ_WB_REG_CASE(OP2, 7, VAL); \
155 READ_WB_REG_CASE(OP2, 8, VAL); \
156 READ_WB_REG_CASE(OP2, 9, VAL); \
157 READ_WB_REG_CASE(OP2, 10, VAL); \
158 READ_WB_REG_CASE(OP2, 11, VAL); \
159 READ_WB_REG_CASE(OP2, 12, VAL); \
160 READ_WB_REG_CASE(OP2, 13, VAL); \
161 READ_WB_REG_CASE(OP2, 14, VAL); \
162 READ_WB_REG_CASE(OP2, 15, VAL)
164 #define GEN_WRITE_WB_REG_CASES(OP2, VAL) \
165 WRITE_WB_REG_CASE(OP2, 0, VAL); \
166 WRITE_WB_REG_CASE(OP2, 1, VAL); \
167 WRITE_WB_REG_CASE(OP2, 2, VAL); \
168 WRITE_WB_REG_CASE(OP2, 3, VAL); \
169 WRITE_WB_REG_CASE(OP2, 4, VAL); \
170 WRITE_WB_REG_CASE(OP2, 5, VAL); \
171 WRITE_WB_REG_CASE(OP2, 6, VAL); \
172 WRITE_WB_REG_CASE(OP2, 7, VAL); \
173 WRITE_WB_REG_CASE(OP2, 8, VAL); \
174 WRITE_WB_REG_CASE(OP2, 9, VAL); \
175 WRITE_WB_REG_CASE(OP2, 10, VAL); \
176 WRITE_WB_REG_CASE(OP2, 11, VAL); \
177 WRITE_WB_REG_CASE(OP2, 12, VAL); \
178 WRITE_WB_REG_CASE(OP2, 13, VAL); \
179 WRITE_WB_REG_CASE(OP2, 14, VAL); \
180 WRITE_WB_REG_CASE(OP2, 15, VAL)
182 static u32
read_wb_reg(int n
)
187 GEN_READ_WB_REG_CASES(ARM_OP2_BVR
, val
);
188 GEN_READ_WB_REG_CASES(ARM_OP2_BCR
, val
);
189 GEN_READ_WB_REG_CASES(ARM_OP2_WVR
, val
);
190 GEN_READ_WB_REG_CASES(ARM_OP2_WCR
, val
);
192 pr_warning("attempt to read from unknown breakpoint "
199 static void write_wb_reg(int n
, u32 val
)
202 GEN_WRITE_WB_REG_CASES(ARM_OP2_BVR
, val
);
203 GEN_WRITE_WB_REG_CASES(ARM_OP2_BCR
, val
);
204 GEN_WRITE_WB_REG_CASES(ARM_OP2_WVR
, val
);
205 GEN_WRITE_WB_REG_CASES(ARM_OP2_WCR
, val
);
207 pr_warning("attempt to write to unknown breakpoint "
214 * In order to access the breakpoint/watchpoint control registers,
215 * we must be running in debug monitor mode. Unfortunately, we can
216 * be put into halting debug mode at any time by an external debugger
217 * but there is nothing we can do to prevent that.
219 static int enable_monitor_mode(void)
224 ARM_DBG_READ(c1
, 0, dscr
);
226 /* Ensure that halting mode is disabled. */
227 if (WARN_ONCE(dscr
& ARM_DSCR_HDBGEN
, "halting debug mode enabled."
228 "Unable to access hardware resources.")) {
233 /* Write to the corresponding DSCR. */
234 switch (debug_arch
) {
235 case ARM_DEBUG_ARCH_V6
:
236 case ARM_DEBUG_ARCH_V6_1
:
237 ARM_DBG_WRITE(c1
, 0, (dscr
| ARM_DSCR_MDBGEN
));
239 case ARM_DEBUG_ARCH_V7_ECP14
:
240 ARM_DBG_WRITE(c2
, 2, (dscr
| ARM_DSCR_MDBGEN
));
247 /* Check that the write made it through. */
248 ARM_DBG_READ(c1
, 0, dscr
);
249 if (WARN_ONCE(!(dscr
& ARM_DSCR_MDBGEN
),
250 "failed to enable monitor mode.")) {
259 * Check if 8-bit byte-address select is available.
260 * This clobbers WRP 0.
262 static u8
get_max_wp_len(void)
265 struct arch_hw_breakpoint_ctrl ctrl
;
268 if (debug_arch
< ARM_DEBUG_ARCH_V7_ECP14
)
271 if (enable_monitor_mode())
274 memset(&ctrl
, 0, sizeof(ctrl
));
275 ctrl
.len
= ARM_BREAKPOINT_LEN_8
;
276 ctrl_reg
= encode_ctrl_reg(ctrl
);
278 write_wb_reg(ARM_BASE_WVR
, 0);
279 write_wb_reg(ARM_BASE_WCR
, ctrl_reg
);
280 if ((read_wb_reg(ARM_BASE_WCR
) & ctrl_reg
) == ctrl_reg
)
287 u8
arch_get_max_wp_len(void)
289 return max_watchpoint_len
;
293 * Handler for reactivating a suspended watchpoint when the single
294 * step `mismatch' breakpoint is triggered.
296 static void wp_single_step_handler(struct perf_event
*bp
, int unused
,
297 struct perf_sample_data
*data
,
298 struct pt_regs
*regs
)
300 perf_event_enable(counter_arch_bp(bp
)->suspended_wp
);
301 unregister_hw_breakpoint(bp
);
304 static int bp_is_single_step(struct perf_event
*bp
)
306 return bp
->overflow_handler
== wp_single_step_handler
;
310 * Install a perf counter breakpoint.
312 int arch_install_hw_breakpoint(struct perf_event
*bp
)
314 struct arch_hw_breakpoint
*info
= counter_arch_bp(bp
);
315 struct perf_event
**slot
, **slots
;
316 int i
, max_slots
, ctrl_base
, val_base
, ret
= 0;
318 /* Ensure that we are in monitor mode and halting mode is disabled. */
319 ret
= enable_monitor_mode();
323 if (info
->ctrl
.type
== ARM_BREAKPOINT_EXECUTE
) {
325 ctrl_base
= ARM_BASE_BCR
;
326 val_base
= ARM_BASE_BVR
;
327 slots
= __get_cpu_var(bp_on_reg
);
328 max_slots
= core_num_brps
- 1;
330 if (bp_is_single_step(bp
)) {
331 info
->ctrl
.mismatch
= 1;
338 ctrl_base
= ARM_BASE_WCR
;
339 val_base
= ARM_BASE_WVR
;
340 slots
= __get_cpu_var(wp_on_reg
);
341 max_slots
= core_num_wrps
;
344 for (i
= 0; i
< max_slots
; ++i
) {
353 if (WARN_ONCE(i
== max_slots
, "Can't find any breakpoint slot")) {
359 /* Setup the address register. */
360 write_wb_reg(val_base
+ i
, info
->address
);
362 /* Setup the control register. */
363 write_wb_reg(ctrl_base
+ i
, encode_ctrl_reg(info
->ctrl
) | 0x1);
369 void arch_uninstall_hw_breakpoint(struct perf_event
*bp
)
371 struct arch_hw_breakpoint
*info
= counter_arch_bp(bp
);
372 struct perf_event
**slot
, **slots
;
373 int i
, max_slots
, base
;
375 if (info
->ctrl
.type
== ARM_BREAKPOINT_EXECUTE
) {
378 slots
= __get_cpu_var(bp_on_reg
);
379 max_slots
= core_num_brps
- 1;
381 if (bp_is_single_step(bp
)) {
389 slots
= __get_cpu_var(wp_on_reg
);
390 max_slots
= core_num_wrps
;
393 /* Remove the breakpoint. */
394 for (i
= 0; i
< max_slots
; ++i
) {
403 if (WARN_ONCE(i
== max_slots
, "Can't find any breakpoint slot"))
407 /* Reset the control register. */
408 write_wb_reg(base
+ i
, 0);
411 static int get_hbp_len(u8 hbp_len
)
413 unsigned int len_in_bytes
= 0;
416 case ARM_BREAKPOINT_LEN_1
:
419 case ARM_BREAKPOINT_LEN_2
:
422 case ARM_BREAKPOINT_LEN_4
:
425 case ARM_BREAKPOINT_LEN_8
:
434 * Check whether bp virtual address is in kernel space.
436 int arch_check_bp_in_kernelspace(struct perf_event
*bp
)
440 struct arch_hw_breakpoint
*info
= counter_arch_bp(bp
);
443 len
= get_hbp_len(info
->ctrl
.len
);
445 return (va
>= TASK_SIZE
) && ((va
+ len
- 1) >= TASK_SIZE
);
449 * Extract generic type and length encodings from an arch_hw_breakpoint_ctrl.
450 * Hopefully this will disappear when ptrace can bypass the conversion
451 * to generic breakpoint descriptions.
453 int arch_bp_generic_fields(struct arch_hw_breakpoint_ctrl ctrl
,
454 int *gen_len
, int *gen_type
)
458 case ARM_BREAKPOINT_EXECUTE
:
459 *gen_type
= HW_BREAKPOINT_X
;
461 case ARM_BREAKPOINT_LOAD
:
462 *gen_type
= HW_BREAKPOINT_R
;
464 case ARM_BREAKPOINT_STORE
:
465 *gen_type
= HW_BREAKPOINT_W
;
467 case ARM_BREAKPOINT_LOAD
| ARM_BREAKPOINT_STORE
:
468 *gen_type
= HW_BREAKPOINT_RW
;
476 case ARM_BREAKPOINT_LEN_1
:
477 *gen_len
= HW_BREAKPOINT_LEN_1
;
479 case ARM_BREAKPOINT_LEN_2
:
480 *gen_len
= HW_BREAKPOINT_LEN_2
;
482 case ARM_BREAKPOINT_LEN_4
:
483 *gen_len
= HW_BREAKPOINT_LEN_4
;
485 case ARM_BREAKPOINT_LEN_8
:
486 *gen_len
= HW_BREAKPOINT_LEN_8
;
496 * Construct an arch_hw_breakpoint from a perf_event.
498 static int arch_build_bp_info(struct perf_event
*bp
)
500 struct arch_hw_breakpoint
*info
= counter_arch_bp(bp
);
503 switch (bp
->attr
.bp_type
) {
504 case HW_BREAKPOINT_X
:
505 info
->ctrl
.type
= ARM_BREAKPOINT_EXECUTE
;
507 case HW_BREAKPOINT_R
:
508 info
->ctrl
.type
= ARM_BREAKPOINT_LOAD
;
510 case HW_BREAKPOINT_W
:
511 info
->ctrl
.type
= ARM_BREAKPOINT_STORE
;
513 case HW_BREAKPOINT_RW
:
514 info
->ctrl
.type
= ARM_BREAKPOINT_LOAD
| ARM_BREAKPOINT_STORE
;
521 switch (bp
->attr
.bp_len
) {
522 case HW_BREAKPOINT_LEN_1
:
523 info
->ctrl
.len
= ARM_BREAKPOINT_LEN_1
;
525 case HW_BREAKPOINT_LEN_2
:
526 info
->ctrl
.len
= ARM_BREAKPOINT_LEN_2
;
528 case HW_BREAKPOINT_LEN_4
:
529 info
->ctrl
.len
= ARM_BREAKPOINT_LEN_4
;
531 case HW_BREAKPOINT_LEN_8
:
532 info
->ctrl
.len
= ARM_BREAKPOINT_LEN_8
;
533 if ((info
->ctrl
.type
!= ARM_BREAKPOINT_EXECUTE
)
534 && max_watchpoint_len
>= 8)
541 info
->address
= bp
->attr
.bp_addr
;
544 info
->ctrl
.privilege
= ARM_BREAKPOINT_USER
;
545 if (arch_check_bp_in_kernelspace(bp
) && !bp_is_single_step(bp
))
546 info
->ctrl
.privilege
|= ARM_BREAKPOINT_PRIV
;
549 info
->ctrl
.enabled
= !bp
->attr
.disabled
;
552 info
->ctrl
.mismatch
= 0;
558 * Validate the arch-specific HW Breakpoint register settings.
560 int arch_validate_hwbkpt_settings(struct perf_event
*bp
)
562 struct arch_hw_breakpoint
*info
= counter_arch_bp(bp
);
564 u32 bytelen
, max_len
, offset
, alignment_mask
= 0x3;
566 /* Build the arch_hw_breakpoint. */
567 ret
= arch_build_bp_info(bp
);
571 /* Check address alignment. */
572 if (info
->ctrl
.len
== ARM_BREAKPOINT_LEN_8
)
573 alignment_mask
= 0x7;
574 if (info
->address
& alignment_mask
) {
576 * Try to fix the alignment. This may result in a length
577 * that is too large, so we must check for that.
579 bytelen
= get_hbp_len(info
->ctrl
.len
);
580 max_len
= info
->ctrl
.type
== ARM_BREAKPOINT_EXECUTE
? 4 :
584 offset
= info
->address
& 0x7;
586 offset
= info
->address
& 0x3;
588 if (bytelen
> (1 << ((max_len
- (offset
+ 1)) >> 1))) {
593 info
->ctrl
.len
<<= offset
;
594 info
->address
&= ~offset
;
596 pr_debug("breakpoint alignment fixup: length = 0x%x, "
597 "address = 0x%x\n", info
->ctrl
.len
, info
->address
);
601 * Currently we rely on an overflow handler to take
602 * care of single-stepping the breakpoint when it fires.
603 * In the case of userspace breakpoints on a core with V7 debug,
604 * we can use the mismatch feature as a poor-man's hardware single-step.
606 if (WARN_ONCE(!bp
->overflow_handler
&&
607 (arch_check_bp_in_kernelspace(bp
) || !core_has_mismatch_bps()),
608 "overflow handler required but none found")) {
616 static void update_mismatch_flag(int idx
, int flag
)
618 struct perf_event
*bp
= __get_cpu_var(bp_on_reg
[idx
]);
619 struct arch_hw_breakpoint
*info
;
624 info
= counter_arch_bp(bp
);
626 /* Update the mismatch field to enter/exit `single-step' mode */
627 if (!bp
->overflow_handler
&& info
->ctrl
.mismatch
!= flag
) {
628 info
->ctrl
.mismatch
= flag
;
629 write_wb_reg(ARM_BASE_BCR
+ idx
, encode_ctrl_reg(info
->ctrl
) | 0x1);
633 static void watchpoint_handler(unsigned long unknown
, struct pt_regs
*regs
)
636 struct perf_event
*bp
, **slots
= __get_cpu_var(wp_on_reg
);
637 struct arch_hw_breakpoint
*info
;
638 struct perf_event_attr attr
;
640 /* Without a disassembler, we can only handle 1 watchpoint. */
641 BUG_ON(core_num_wrps
> 1);
643 hw_breakpoint_init(&attr
);
644 attr
.bp_addr
= regs
->ARM_pc
& ~0x3;
645 attr
.bp_len
= HW_BREAKPOINT_LEN_4
;
646 attr
.bp_type
= HW_BREAKPOINT_X
;
648 for (i
= 0; i
< core_num_wrps
; ++i
) {
651 if (slots
[i
] == NULL
) {
657 * The DFAR is an unknown value. Since we only allow a
658 * single watchpoint, we can set the trigger to the lowest
659 * possible faulting address.
661 info
= counter_arch_bp(slots
[i
]);
662 info
->trigger
= slots
[i
]->attr
.bp_addr
;
663 pr_debug("watchpoint fired: address = 0x%x\n", info
->trigger
);
664 perf_bp_event(slots
[i
], regs
);
667 * If no overflow handler is present, insert a temporary
668 * mismatch breakpoint so we can single-step over the
669 * watchpoint trigger.
671 if (!slots
[i
]->overflow_handler
) {
672 bp
= register_user_hw_breakpoint(&attr
,
673 wp_single_step_handler
,
675 counter_arch_bp(bp
)->suspended_wp
= slots
[i
];
676 perf_event_disable(slots
[i
]);
683 static void breakpoint_handler(unsigned long unknown
, struct pt_regs
*regs
)
687 u32 ctrl_reg
, val
, addr
;
688 struct perf_event
*bp
, **slots
= __get_cpu_var(bp_on_reg
);
689 struct arch_hw_breakpoint
*info
;
690 struct arch_hw_breakpoint_ctrl ctrl
;
692 /* The exception entry code places the amended lr in the PC. */
695 for (i
= 0; i
< core_num_brps
; ++i
) {
707 /* Check if the breakpoint value matches. */
708 val
= read_wb_reg(ARM_BASE_BVR
+ i
);
709 if (val
!= (addr
& ~0x3))
712 /* Possible match, check the byte address select to confirm. */
713 ctrl_reg
= read_wb_reg(ARM_BASE_BCR
+ i
);
714 decode_ctrl_reg(ctrl_reg
, &ctrl
);
715 if ((1 << (addr
& 0x3)) & ctrl
.len
) {
717 info
= counter_arch_bp(bp
);
718 info
->trigger
= addr
;
722 if ((mismatch
&& !info
->ctrl
.mismatch
) || bp_is_single_step(bp
)) {
723 pr_debug("breakpoint fired: address = 0x%x\n", addr
);
724 perf_bp_event(bp
, regs
);
727 update_mismatch_flag(i
, mismatch
);
733 * Called from either the Data Abort Handler [watchpoint] or the
734 * Prefetch Abort Handler [breakpoint].
736 static int hw_breakpoint_pending(unsigned long addr
, unsigned int fsr
,
737 struct pt_regs
*regs
)
739 int ret
= 1; /* Unhandled fault. */
742 /* We only handle watchpoints and hardware breakpoints. */
743 ARM_DBG_READ(c1
, 0, dscr
);
745 /* Perform perf callbacks. */
746 switch (ARM_DSCR_MOE(dscr
)) {
747 case ARM_ENTRY_BREAKPOINT
:
748 breakpoint_handler(addr
, regs
);
750 case ARM_ENTRY_ASYNC_WATCHPOINT
:
751 WARN(1, "Asynchronous watchpoint exception taken. Debugging results may be unreliable\n");
752 case ARM_ENTRY_SYNC_WATCHPOINT
:
753 watchpoint_handler(addr
, regs
);
765 * One-time initialisation.
767 static void __init
reset_ctrl_regs(void *unused
)
772 * v7 debug contains save and restore registers so that debug state
773 * can be maintained across low-power modes without leaving
774 * the debug logic powered up. It is IMPLEMENTATION DEFINED whether
775 * we can write to the debug registers out of reset, so we must
776 * unlock the OS Lock Access Register to avoid taking undefined
777 * instruction exceptions later on.
779 if (debug_arch
>= ARM_DEBUG_ARCH_V7_ECP14
) {
781 * Unconditionally clear the lock by writing a value
782 * other than 0xC5ACCE55 to the access register.
784 asm volatile("mcr p14, 0, %0, c1, c0, 4" : : "r" (0));
788 if (enable_monitor_mode())
791 for (i
= 0; i
< core_num_brps
; ++i
) {
792 write_wb_reg(ARM_BASE_BCR
+ i
, 0UL);
793 write_wb_reg(ARM_BASE_BVR
+ i
, 0UL);
796 for (i
= 0; i
< core_num_wrps
; ++i
) {
797 write_wb_reg(ARM_BASE_WCR
+ i
, 0UL);
798 write_wb_reg(ARM_BASE_WVR
+ i
, 0UL);
802 static int __init
arch_hw_breakpoint_init(void)
807 debug_arch
= get_debug_arch();
809 if (debug_arch
> ARM_DEBUG_ARCH_V7_ECP14
) {
810 pr_info("debug architecture 0x%x unsupported.\n", debug_arch
);
815 /* Determine how many BRPs/WRPs are available. */
816 core_num_brps
= get_num_brps();
817 core_num_wrps
= get_num_wrps();
819 pr_info("found %d breakpoint and %d watchpoint registers.\n",
820 core_num_brps
, core_num_wrps
);
822 if (core_has_mismatch_bps())
823 pr_info("1 breakpoint reserved for watchpoint single-step.\n");
825 ARM_DBG_READ(c1
, 0, dscr
);
826 if (dscr
& ARM_DSCR_HDBGEN
) {
827 pr_warning("halting debug mode enabled. Assuming maximum "
828 "watchpoint size of 4 bytes.");
831 * Reset the breakpoint resources. We assume that a halting
832 * debugger will leave the world in a nice state for us.
834 smp_call_function(reset_ctrl_regs
, NULL
, 1);
835 reset_ctrl_regs(NULL
);
837 /* Work out the maximum supported watchpoint length. */
838 max_watchpoint_len
= get_max_wp_len();
839 pr_info("maximum watchpoint size is %u bytes.\n",
843 /* Register debug fault handler. */
844 hook_fault_code(2, hw_breakpoint_pending
, SIGTRAP
, TRAP_HWBKPT
,
845 "watchpoint debug exception");
846 hook_ifault_code(2, hw_breakpoint_pending
, SIGTRAP
, TRAP_HWBKPT
,
847 "breakpoint debug exception");
852 arch_initcall(arch_hw_breakpoint_init
);
854 void hw_breakpoint_pmu_read(struct perf_event
*bp
)
859 * Dummy function to register with die_notifier.
861 int hw_breakpoint_exceptions_notify(struct notifier_block
*unused
,
862 unsigned long val
, void *data
)