2 * HW_breakpoint: a unified kernel/user-space hardware breakpoint facility,
3 * using the CPU's debug registers.
5 * Copyright (C) 2012 ARM Limited
6 * Author: Will Deacon <will.deacon@arm.com>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
21 #define pr_fmt(fmt) "hw-breakpoint: " fmt
23 #include <linux/compat.h>
24 #include <linux/cpu_pm.h>
25 #include <linux/errno.h>
26 #include <linux/hw_breakpoint.h>
27 #include <linux/perf_event.h>
28 #include <linux/ptrace.h>
29 #include <linux/smp.h>
31 #include <asm/current.h>
32 #include <asm/debug-monitors.h>
33 #include <asm/hw_breakpoint.h>
34 #include <asm/traps.h>
35 #include <asm/cputype.h>
36 #include <asm/system_misc.h>
38 /* Breakpoint currently in use for each BRP. */
39 static DEFINE_PER_CPU(struct perf_event
*, bp_on_reg
[ARM_MAX_BRP
]);
41 /* Watchpoint currently in use for each WRP. */
42 static DEFINE_PER_CPU(struct perf_event
*, wp_on_reg
[ARM_MAX_WRP
]);
44 /* Currently stepping a per-CPU kernel breakpoint. */
45 static DEFINE_PER_CPU(int, stepping_kernel_bp
);
47 /* Number of BRP/WRP registers on this CPU. */
48 static int core_num_brps
;
49 static int core_num_wrps
;
51 int hw_breakpoint_slots(int type
)
54 * We can be called early, so don't rely on
55 * our static variables being initialised.
59 return get_num_brps();
61 return get_num_wrps();
63 pr_warning("unknown slot type: %d\n", type
);
68 #define READ_WB_REG_CASE(OFF, N, REG, VAL) \
70 AARCH64_DBG_READ(N, REG, VAL); \
73 #define WRITE_WB_REG_CASE(OFF, N, REG, VAL) \
75 AARCH64_DBG_WRITE(N, REG, VAL); \
78 #define GEN_READ_WB_REG_CASES(OFF, REG, VAL) \
79 READ_WB_REG_CASE(OFF, 0, REG, VAL); \
80 READ_WB_REG_CASE(OFF, 1, REG, VAL); \
81 READ_WB_REG_CASE(OFF, 2, REG, VAL); \
82 READ_WB_REG_CASE(OFF, 3, REG, VAL); \
83 READ_WB_REG_CASE(OFF, 4, REG, VAL); \
84 READ_WB_REG_CASE(OFF, 5, REG, VAL); \
85 READ_WB_REG_CASE(OFF, 6, REG, VAL); \
86 READ_WB_REG_CASE(OFF, 7, REG, VAL); \
87 READ_WB_REG_CASE(OFF, 8, REG, VAL); \
88 READ_WB_REG_CASE(OFF, 9, REG, VAL); \
89 READ_WB_REG_CASE(OFF, 10, REG, VAL); \
90 READ_WB_REG_CASE(OFF, 11, REG, VAL); \
91 READ_WB_REG_CASE(OFF, 12, REG, VAL); \
92 READ_WB_REG_CASE(OFF, 13, REG, VAL); \
93 READ_WB_REG_CASE(OFF, 14, REG, VAL); \
94 READ_WB_REG_CASE(OFF, 15, REG, VAL)
96 #define GEN_WRITE_WB_REG_CASES(OFF, REG, VAL) \
97 WRITE_WB_REG_CASE(OFF, 0, REG, VAL); \
98 WRITE_WB_REG_CASE(OFF, 1, REG, VAL); \
99 WRITE_WB_REG_CASE(OFF, 2, REG, VAL); \
100 WRITE_WB_REG_CASE(OFF, 3, REG, VAL); \
101 WRITE_WB_REG_CASE(OFF, 4, REG, VAL); \
102 WRITE_WB_REG_CASE(OFF, 5, REG, VAL); \
103 WRITE_WB_REG_CASE(OFF, 6, REG, VAL); \
104 WRITE_WB_REG_CASE(OFF, 7, REG, VAL); \
105 WRITE_WB_REG_CASE(OFF, 8, REG, VAL); \
106 WRITE_WB_REG_CASE(OFF, 9, REG, VAL); \
107 WRITE_WB_REG_CASE(OFF, 10, REG, VAL); \
108 WRITE_WB_REG_CASE(OFF, 11, REG, VAL); \
109 WRITE_WB_REG_CASE(OFF, 12, REG, VAL); \
110 WRITE_WB_REG_CASE(OFF, 13, REG, VAL); \
111 WRITE_WB_REG_CASE(OFF, 14, REG, VAL); \
112 WRITE_WB_REG_CASE(OFF, 15, REG, VAL)
114 static u64
read_wb_reg(int reg
, int n
)
119 GEN_READ_WB_REG_CASES(AARCH64_DBG_REG_BVR
, AARCH64_DBG_REG_NAME_BVR
, val
);
120 GEN_READ_WB_REG_CASES(AARCH64_DBG_REG_BCR
, AARCH64_DBG_REG_NAME_BCR
, val
);
121 GEN_READ_WB_REG_CASES(AARCH64_DBG_REG_WVR
, AARCH64_DBG_REG_NAME_WVR
, val
);
122 GEN_READ_WB_REG_CASES(AARCH64_DBG_REG_WCR
, AARCH64_DBG_REG_NAME_WCR
, val
);
124 pr_warning("attempt to read from unknown breakpoint register %d\n", n
);
130 static void write_wb_reg(int reg
, int n
, u64 val
)
133 GEN_WRITE_WB_REG_CASES(AARCH64_DBG_REG_BVR
, AARCH64_DBG_REG_NAME_BVR
, val
);
134 GEN_WRITE_WB_REG_CASES(AARCH64_DBG_REG_BCR
, AARCH64_DBG_REG_NAME_BCR
, val
);
135 GEN_WRITE_WB_REG_CASES(AARCH64_DBG_REG_WVR
, AARCH64_DBG_REG_NAME_WVR
, val
);
136 GEN_WRITE_WB_REG_CASES(AARCH64_DBG_REG_WCR
, AARCH64_DBG_REG_NAME_WCR
, val
);
138 pr_warning("attempt to write to unknown breakpoint register %d\n", n
);
144 * Convert a breakpoint privilege level to the corresponding exception
147 static enum dbg_active_el
debug_exception_level(int privilege
)
150 case AARCH64_BREAKPOINT_EL0
:
151 return DBG_ACTIVE_EL0
;
152 case AARCH64_BREAKPOINT_EL1
:
153 return DBG_ACTIVE_EL1
;
155 pr_warning("invalid breakpoint privilege level %d\n", privilege
);
160 enum hw_breakpoint_ops
{
161 HW_BREAKPOINT_INSTALL
,
162 HW_BREAKPOINT_UNINSTALL
,
163 HW_BREAKPOINT_RESTORE
167 * hw_breakpoint_slot_setup - Find and setup a perf slot according to
170 * @slots: pointer to array of slots
171 * @max_slots: max number of slots
172 * @bp: perf_event to setup
173 * @ops: operation to be carried out on the slot
176 * slot index on success
177 * -ENOSPC if no slot is available/matches
178 * -EINVAL on wrong operations parameter
180 static int hw_breakpoint_slot_setup(struct perf_event
**slots
, int max_slots
,
181 struct perf_event
*bp
,
182 enum hw_breakpoint_ops ops
)
185 struct perf_event
**slot
;
187 for (i
= 0; i
< max_slots
; ++i
) {
190 case HW_BREAKPOINT_INSTALL
:
196 case HW_BREAKPOINT_UNINSTALL
:
202 case HW_BREAKPOINT_RESTORE
:
207 pr_warn_once("Unhandled hw breakpoint ops %d\n", ops
);
214 static int hw_breakpoint_control(struct perf_event
*bp
,
215 enum hw_breakpoint_ops ops
)
217 struct arch_hw_breakpoint
*info
= counter_arch_bp(bp
);
218 struct perf_event
**slots
;
219 struct debug_info
*debug_info
= ¤t
->thread
.debug
;
220 int i
, max_slots
, ctrl_reg
, val_reg
, reg_enable
;
221 enum dbg_active_el dbg_el
= debug_exception_level(info
->ctrl
.privilege
);
224 if (info
->ctrl
.type
== ARM_BREAKPOINT_EXECUTE
) {
226 ctrl_reg
= AARCH64_DBG_REG_BCR
;
227 val_reg
= AARCH64_DBG_REG_BVR
;
228 slots
= this_cpu_ptr(bp_on_reg
);
229 max_slots
= core_num_brps
;
230 reg_enable
= !debug_info
->bps_disabled
;
233 ctrl_reg
= AARCH64_DBG_REG_WCR
;
234 val_reg
= AARCH64_DBG_REG_WVR
;
235 slots
= this_cpu_ptr(wp_on_reg
);
236 max_slots
= core_num_wrps
;
237 reg_enable
= !debug_info
->wps_disabled
;
240 i
= hw_breakpoint_slot_setup(slots
, max_slots
, bp
, ops
);
242 if (WARN_ONCE(i
< 0, "Can't find any breakpoint slot"))
246 case HW_BREAKPOINT_INSTALL
:
248 * Ensure debug monitors are enabled at the correct exception
251 enable_debug_monitors(dbg_el
);
253 case HW_BREAKPOINT_RESTORE
:
254 /* Setup the address register. */
255 write_wb_reg(val_reg
, i
, info
->address
);
257 /* Setup the control register. */
258 ctrl
= encode_ctrl_reg(info
->ctrl
);
259 write_wb_reg(ctrl_reg
, i
,
260 reg_enable
? ctrl
| 0x1 : ctrl
& ~0x1);
262 case HW_BREAKPOINT_UNINSTALL
:
263 /* Reset the control register. */
264 write_wb_reg(ctrl_reg
, i
, 0);
267 * Release the debug monitors for the correct exception
270 disable_debug_monitors(dbg_el
);
278 * Install a perf counter breakpoint.
280 int arch_install_hw_breakpoint(struct perf_event
*bp
)
282 return hw_breakpoint_control(bp
, HW_BREAKPOINT_INSTALL
);
285 void arch_uninstall_hw_breakpoint(struct perf_event
*bp
)
287 hw_breakpoint_control(bp
, HW_BREAKPOINT_UNINSTALL
);
290 static int get_hbp_len(u8 hbp_len
)
292 unsigned int len_in_bytes
= 0;
295 case ARM_BREAKPOINT_LEN_1
:
298 case ARM_BREAKPOINT_LEN_2
:
301 case ARM_BREAKPOINT_LEN_4
:
304 case ARM_BREAKPOINT_LEN_8
:
313 * Check whether bp virtual address is in kernel space.
315 int arch_check_bp_in_kernelspace(struct perf_event
*bp
)
319 struct arch_hw_breakpoint
*info
= counter_arch_bp(bp
);
322 len
= get_hbp_len(info
->ctrl
.len
);
324 return (va
>= TASK_SIZE
) && ((va
+ len
- 1) >= TASK_SIZE
);
328 * Extract generic type and length encodings from an arch_hw_breakpoint_ctrl.
329 * Hopefully this will disappear when ptrace can bypass the conversion
330 * to generic breakpoint descriptions.
332 int arch_bp_generic_fields(struct arch_hw_breakpoint_ctrl ctrl
,
333 int *gen_len
, int *gen_type
)
337 case ARM_BREAKPOINT_EXECUTE
:
338 *gen_type
= HW_BREAKPOINT_X
;
340 case ARM_BREAKPOINT_LOAD
:
341 *gen_type
= HW_BREAKPOINT_R
;
343 case ARM_BREAKPOINT_STORE
:
344 *gen_type
= HW_BREAKPOINT_W
;
346 case ARM_BREAKPOINT_LOAD
| ARM_BREAKPOINT_STORE
:
347 *gen_type
= HW_BREAKPOINT_RW
;
355 case ARM_BREAKPOINT_LEN_1
:
356 *gen_len
= HW_BREAKPOINT_LEN_1
;
358 case ARM_BREAKPOINT_LEN_2
:
359 *gen_len
= HW_BREAKPOINT_LEN_2
;
361 case ARM_BREAKPOINT_LEN_4
:
362 *gen_len
= HW_BREAKPOINT_LEN_4
;
364 case ARM_BREAKPOINT_LEN_8
:
365 *gen_len
= HW_BREAKPOINT_LEN_8
;
375 * Construct an arch_hw_breakpoint from a perf_event.
377 static int arch_build_bp_info(struct perf_event
*bp
)
379 struct arch_hw_breakpoint
*info
= counter_arch_bp(bp
);
382 switch (bp
->attr
.bp_type
) {
383 case HW_BREAKPOINT_X
:
384 info
->ctrl
.type
= ARM_BREAKPOINT_EXECUTE
;
386 case HW_BREAKPOINT_R
:
387 info
->ctrl
.type
= ARM_BREAKPOINT_LOAD
;
389 case HW_BREAKPOINT_W
:
390 info
->ctrl
.type
= ARM_BREAKPOINT_STORE
;
392 case HW_BREAKPOINT_RW
:
393 info
->ctrl
.type
= ARM_BREAKPOINT_LOAD
| ARM_BREAKPOINT_STORE
;
400 switch (bp
->attr
.bp_len
) {
401 case HW_BREAKPOINT_LEN_1
:
402 info
->ctrl
.len
= ARM_BREAKPOINT_LEN_1
;
404 case HW_BREAKPOINT_LEN_2
:
405 info
->ctrl
.len
= ARM_BREAKPOINT_LEN_2
;
407 case HW_BREAKPOINT_LEN_4
:
408 info
->ctrl
.len
= ARM_BREAKPOINT_LEN_4
;
410 case HW_BREAKPOINT_LEN_8
:
411 info
->ctrl
.len
= ARM_BREAKPOINT_LEN_8
;
418 * On AArch64, we only permit breakpoints of length 4, whereas
419 * AArch32 also requires breakpoints of length 2 for Thumb.
420 * Watchpoints can be of length 1, 2, 4 or 8 bytes.
422 if (info
->ctrl
.type
== ARM_BREAKPOINT_EXECUTE
) {
423 if (is_compat_task()) {
424 if (info
->ctrl
.len
!= ARM_BREAKPOINT_LEN_2
&&
425 info
->ctrl
.len
!= ARM_BREAKPOINT_LEN_4
)
427 } else if (info
->ctrl
.len
!= ARM_BREAKPOINT_LEN_4
) {
429 * FIXME: Some tools (I'm looking at you perf) assume
430 * that breakpoints should be sizeof(long). This
431 * is nonsense. For now, we fix up the parameter
432 * but we should probably return -EINVAL instead.
434 info
->ctrl
.len
= ARM_BREAKPOINT_LEN_4
;
439 info
->address
= bp
->attr
.bp_addr
;
443 * Note that we disallow combined EL0/EL1 breakpoints because
444 * that would complicate the stepping code.
446 if (arch_check_bp_in_kernelspace(bp
))
447 info
->ctrl
.privilege
= AARCH64_BREAKPOINT_EL1
;
449 info
->ctrl
.privilege
= AARCH64_BREAKPOINT_EL0
;
452 info
->ctrl
.enabled
= !bp
->attr
.disabled
;
458 * Validate the arch-specific HW Breakpoint register settings.
460 int arch_validate_hwbkpt_settings(struct perf_event
*bp
)
462 struct arch_hw_breakpoint
*info
= counter_arch_bp(bp
);
464 u64 alignment_mask
, offset
;
466 /* Build the arch_hw_breakpoint. */
467 ret
= arch_build_bp_info(bp
);
472 * Check address alignment.
473 * We don't do any clever alignment correction for watchpoints
474 * because using 64-bit unaligned addresses is deprecated for
477 * AArch32 tasks expect some simple alignment fixups, so emulate
480 if (is_compat_task()) {
481 if (info
->ctrl
.len
== ARM_BREAKPOINT_LEN_8
)
482 alignment_mask
= 0x7;
484 alignment_mask
= 0x3;
485 offset
= info
->address
& alignment_mask
;
491 /* Allow single byte watchpoint. */
492 if (info
->ctrl
.len
== ARM_BREAKPOINT_LEN_1
)
495 /* Allow halfword watchpoints and breakpoints. */
496 if (info
->ctrl
.len
== ARM_BREAKPOINT_LEN_2
)
502 info
->address
&= ~alignment_mask
;
503 info
->ctrl
.len
<<= offset
;
505 if (info
->ctrl
.type
== ARM_BREAKPOINT_EXECUTE
)
506 alignment_mask
= 0x3;
508 alignment_mask
= 0x7;
509 if (info
->address
& alignment_mask
)
514 * Disallow per-task kernel breakpoints since these would
515 * complicate the stepping code.
517 if (info
->ctrl
.privilege
== AARCH64_BREAKPOINT_EL1
&& bp
->hw
.target
)
524 * Enable/disable all of the breakpoints active at the specified
525 * exception level at the register level.
526 * This is used when single-stepping after a breakpoint exception.
528 static void toggle_bp_registers(int reg
, enum dbg_active_el el
, int enable
)
530 int i
, max_slots
, privilege
;
532 struct perf_event
**slots
;
535 case AARCH64_DBG_REG_BCR
:
536 slots
= this_cpu_ptr(bp_on_reg
);
537 max_slots
= core_num_brps
;
539 case AARCH64_DBG_REG_WCR
:
540 slots
= this_cpu_ptr(wp_on_reg
);
541 max_slots
= core_num_wrps
;
547 for (i
= 0; i
< max_slots
; ++i
) {
551 privilege
= counter_arch_bp(slots
[i
])->ctrl
.privilege
;
552 if (debug_exception_level(privilege
) != el
)
555 ctrl
= read_wb_reg(reg
, i
);
560 write_wb_reg(reg
, i
, ctrl
);
565 * Debug exception handlers.
567 static int breakpoint_handler(unsigned long unused
, unsigned int esr
,
568 struct pt_regs
*regs
)
570 int i
, step
= 0, *kernel_step
;
573 struct perf_event
*bp
, **slots
;
574 struct debug_info
*debug_info
;
575 struct arch_hw_breakpoint_ctrl ctrl
;
577 slots
= this_cpu_ptr(bp_on_reg
);
578 addr
= instruction_pointer(regs
);
579 debug_info
= ¤t
->thread
.debug
;
581 for (i
= 0; i
< core_num_brps
; ++i
) {
589 /* Check if the breakpoint value matches. */
590 val
= read_wb_reg(AARCH64_DBG_REG_BVR
, i
);
591 if (val
!= (addr
& ~0x3))
594 /* Possible match, check the byte address select to confirm. */
595 ctrl_reg
= read_wb_reg(AARCH64_DBG_REG_BCR
, i
);
596 decode_ctrl_reg(ctrl_reg
, &ctrl
);
597 if (!((1 << (addr
& 0x3)) & ctrl
.len
))
600 counter_arch_bp(bp
)->trigger
= addr
;
601 perf_bp_event(bp
, regs
);
603 /* Do we need to handle the stepping? */
604 if (!bp
->overflow_handler
)
613 if (user_mode(regs
)) {
614 debug_info
->bps_disabled
= 1;
615 toggle_bp_registers(AARCH64_DBG_REG_BCR
, DBG_ACTIVE_EL0
, 0);
617 /* If we're already stepping a watchpoint, just return. */
618 if (debug_info
->wps_disabled
)
621 if (test_thread_flag(TIF_SINGLESTEP
))
622 debug_info
->suspended_step
= 1;
624 user_enable_single_step(current
);
626 toggle_bp_registers(AARCH64_DBG_REG_BCR
, DBG_ACTIVE_EL1
, 0);
627 kernel_step
= this_cpu_ptr(&stepping_kernel_bp
);
629 if (*kernel_step
!= ARM_KERNEL_STEP_NONE
)
632 if (kernel_active_single_step()) {
633 *kernel_step
= ARM_KERNEL_STEP_SUSPEND
;
635 *kernel_step
= ARM_KERNEL_STEP_ACTIVE
;
636 kernel_enable_single_step(regs
);
643 static int watchpoint_handler(unsigned long addr
, unsigned int esr
,
644 struct pt_regs
*regs
)
646 int i
, step
= 0, *kernel_step
, access
;
648 u64 val
, alignment_mask
;
649 struct perf_event
*wp
, **slots
;
650 struct debug_info
*debug_info
;
651 struct arch_hw_breakpoint
*info
;
652 struct arch_hw_breakpoint_ctrl ctrl
;
654 slots
= this_cpu_ptr(wp_on_reg
);
655 debug_info
= ¤t
->thread
.debug
;
657 for (i
= 0; i
< core_num_wrps
; ++i
) {
665 info
= counter_arch_bp(wp
);
666 /* AArch32 watchpoints are either 4 or 8 bytes aligned. */
667 if (is_compat_task()) {
668 if (info
->ctrl
.len
== ARM_BREAKPOINT_LEN_8
)
669 alignment_mask
= 0x7;
671 alignment_mask
= 0x3;
673 alignment_mask
= 0x7;
676 /* Check if the watchpoint value matches. */
677 val
= read_wb_reg(AARCH64_DBG_REG_WVR
, i
);
678 if (val
!= (addr
& ~alignment_mask
))
681 /* Possible match, check the byte address select to confirm. */
682 ctrl_reg
= read_wb_reg(AARCH64_DBG_REG_WCR
, i
);
683 decode_ctrl_reg(ctrl_reg
, &ctrl
);
684 if (!((1 << (addr
& alignment_mask
)) & ctrl
.len
))
688 * Check that the access type matches.
689 * 0 => load, otherwise => store
691 access
= (esr
& AARCH64_ESR_ACCESS_MASK
) ? HW_BREAKPOINT_W
:
693 if (!(access
& hw_breakpoint_type(wp
)))
696 info
->trigger
= addr
;
697 perf_bp_event(wp
, regs
);
699 /* Do we need to handle the stepping? */
700 if (!wp
->overflow_handler
)
711 * We always disable EL0 watchpoints because the kernel can
712 * cause these to fire via an unprivileged access.
714 toggle_bp_registers(AARCH64_DBG_REG_WCR
, DBG_ACTIVE_EL0
, 0);
716 if (user_mode(regs
)) {
717 debug_info
->wps_disabled
= 1;
719 /* If we're already stepping a breakpoint, just return. */
720 if (debug_info
->bps_disabled
)
723 if (test_thread_flag(TIF_SINGLESTEP
))
724 debug_info
->suspended_step
= 1;
726 user_enable_single_step(current
);
728 toggle_bp_registers(AARCH64_DBG_REG_WCR
, DBG_ACTIVE_EL1
, 0);
729 kernel_step
= this_cpu_ptr(&stepping_kernel_bp
);
731 if (*kernel_step
!= ARM_KERNEL_STEP_NONE
)
734 if (kernel_active_single_step()) {
735 *kernel_step
= ARM_KERNEL_STEP_SUSPEND
;
737 *kernel_step
= ARM_KERNEL_STEP_ACTIVE
;
738 kernel_enable_single_step(regs
);
746 * Handle single-step exception.
748 int reinstall_suspended_bps(struct pt_regs
*regs
)
750 struct debug_info
*debug_info
= ¤t
->thread
.debug
;
751 int handled_exception
= 0, *kernel_step
;
753 kernel_step
= this_cpu_ptr(&stepping_kernel_bp
);
756 * Called from single-step exception handler.
757 * Return 0 if execution can resume, 1 if a SIGTRAP should be
760 if (user_mode(regs
)) {
761 if (debug_info
->bps_disabled
) {
762 debug_info
->bps_disabled
= 0;
763 toggle_bp_registers(AARCH64_DBG_REG_BCR
, DBG_ACTIVE_EL0
, 1);
764 handled_exception
= 1;
767 if (debug_info
->wps_disabled
) {
768 debug_info
->wps_disabled
= 0;
769 toggle_bp_registers(AARCH64_DBG_REG_WCR
, DBG_ACTIVE_EL0
, 1);
770 handled_exception
= 1;
773 if (handled_exception
) {
774 if (debug_info
->suspended_step
) {
775 debug_info
->suspended_step
= 0;
776 /* Allow exception handling to fall-through. */
777 handled_exception
= 0;
779 user_disable_single_step(current
);
782 } else if (*kernel_step
!= ARM_KERNEL_STEP_NONE
) {
783 toggle_bp_registers(AARCH64_DBG_REG_BCR
, DBG_ACTIVE_EL1
, 1);
784 toggle_bp_registers(AARCH64_DBG_REG_WCR
, DBG_ACTIVE_EL1
, 1);
786 if (!debug_info
->wps_disabled
)
787 toggle_bp_registers(AARCH64_DBG_REG_WCR
, DBG_ACTIVE_EL0
, 1);
789 if (*kernel_step
!= ARM_KERNEL_STEP_SUSPEND
) {
790 kernel_disable_single_step();
791 handled_exception
= 1;
793 handled_exception
= 0;
796 *kernel_step
= ARM_KERNEL_STEP_NONE
;
799 return !handled_exception
;
803 * Context-switcher for restoring suspended breakpoints.
805 void hw_breakpoint_thread_switch(struct task_struct
*next
)
809 * disabled: 0 0 => The usual case, NOTIFY_DONE
810 * 0 1 => Disable the registers
811 * 1 0 => Enable the registers
812 * 1 1 => NOTIFY_DONE. per-task bps will
813 * get taken care of by perf.
816 struct debug_info
*current_debug_info
, *next_debug_info
;
818 current_debug_info
= ¤t
->thread
.debug
;
819 next_debug_info
= &next
->thread
.debug
;
821 /* Update breakpoints. */
822 if (current_debug_info
->bps_disabled
!= next_debug_info
->bps_disabled
)
823 toggle_bp_registers(AARCH64_DBG_REG_BCR
,
825 !next_debug_info
->bps_disabled
);
827 /* Update watchpoints. */
828 if (current_debug_info
->wps_disabled
!= next_debug_info
->wps_disabled
)
829 toggle_bp_registers(AARCH64_DBG_REG_WCR
,
831 !next_debug_info
->wps_disabled
);
835 * CPU initialisation.
837 static void hw_breakpoint_reset(void *unused
)
840 struct perf_event
**slots
;
842 * When a CPU goes through cold-boot, it does not have any installed
843 * slot, so it is safe to share the same function for restoring and
844 * resetting breakpoints; when a CPU is hotplugged in, it goes
845 * through the slots, which are all empty, hence it just resets control
846 * and value for debug registers.
847 * When this function is triggered on warm-boot through a CPU PM
848 * notifier some slots might be initialized; if so they are
849 * reprogrammed according to the debug slots content.
851 for (slots
= this_cpu_ptr(bp_on_reg
), i
= 0; i
< core_num_brps
; ++i
) {
853 hw_breakpoint_control(slots
[i
], HW_BREAKPOINT_RESTORE
);
855 write_wb_reg(AARCH64_DBG_REG_BCR
, i
, 0UL);
856 write_wb_reg(AARCH64_DBG_REG_BVR
, i
, 0UL);
860 for (slots
= this_cpu_ptr(wp_on_reg
), i
= 0; i
< core_num_wrps
; ++i
) {
862 hw_breakpoint_control(slots
[i
], HW_BREAKPOINT_RESTORE
);
864 write_wb_reg(AARCH64_DBG_REG_WCR
, i
, 0UL);
865 write_wb_reg(AARCH64_DBG_REG_WVR
, i
, 0UL);
870 static int hw_breakpoint_reset_notify(struct notifier_block
*self
,
871 unsigned long action
,
874 int cpu
= (long)hcpu
;
875 if (action
== CPU_ONLINE
)
876 smp_call_function_single(cpu
, hw_breakpoint_reset
, NULL
, 1);
880 static struct notifier_block hw_breakpoint_reset_nb
= {
881 .notifier_call
= hw_breakpoint_reset_notify
,
885 extern void cpu_suspend_set_dbg_restorer(void (*hw_bp_restore
)(void *));
887 static inline void cpu_suspend_set_dbg_restorer(void (*hw_bp_restore
)(void *))
893 * One-time initialisation.
895 static int __init
arch_hw_breakpoint_init(void)
897 core_num_brps
= get_num_brps();
898 core_num_wrps
= get_num_wrps();
900 pr_info("found %d breakpoint and %d watchpoint registers.\n",
901 core_num_brps
, core_num_wrps
);
903 cpu_notifier_register_begin();
906 * Reset the breakpoint resources. We assume that a halting
907 * debugger will leave the world in a nice state for us.
909 smp_call_function(hw_breakpoint_reset
, NULL
, 1);
910 hw_breakpoint_reset(NULL
);
912 /* Register debug fault handlers. */
913 hook_debug_fault_code(DBG_ESR_EVT_HWBP
, breakpoint_handler
, SIGTRAP
,
914 TRAP_HWBKPT
, "hw-breakpoint handler");
915 hook_debug_fault_code(DBG_ESR_EVT_HWWP
, watchpoint_handler
, SIGTRAP
,
916 TRAP_HWBKPT
, "hw-watchpoint handler");
918 /* Register hotplug notifier. */
919 __register_cpu_notifier(&hw_breakpoint_reset_nb
);
921 cpu_notifier_register_done();
923 /* Register cpu_suspend hw breakpoint restore hook */
924 cpu_suspend_set_dbg_restorer(hw_breakpoint_reset
);
928 arch_initcall(arch_hw_breakpoint_init
);
930 void hw_breakpoint_pmu_read(struct perf_event
*bp
)
935 * Dummy function to register with die_notifier.
937 int hw_breakpoint_exceptions_notify(struct notifier_block
*unused
,
938 unsigned long val
, void *data
)