K.Prasad | 5aae8a5 | 2010-06-15 11:35:19 +0530 | [diff] [blame] | 1 | /* |
| 2 | * PowerPC BookIII S hardware breakpoint definitions |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or modify |
| 5 | * it under the terms of the GNU General Public License as published by |
| 6 | * the Free Software Foundation; either version 2 of the License, or |
| 7 | * (at your option) any later version. |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | * GNU General Public License for more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License |
| 15 | * along with this program; if not, write to the Free Software |
| 16 | * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
| 17 | * |
| 18 | * Copyright 2010, IBM Corporation. |
| 19 | * Author: K.Prasad <prasad@linux.vnet.ibm.com> |
| 20 | * |
| 21 | */ |
| 22 | |
| 23 | #ifndef _PPC_BOOK3S_64_HW_BREAKPOINT_H |
| 24 | #define _PPC_BOOK3S_64_HW_BREAKPOINT_H |
| 25 | |
| 26 | #ifdef __KERNEL__ |
K.Prasad | 5aae8a5 | 2010-06-15 11:35:19 +0530 | [diff] [blame] | 27 | struct arch_hw_breakpoint { |
K.Prasad | 5aae8a5 | 2010-06-15 11:35:19 +0530 | [diff] [blame] | 28 | unsigned long address; |
Michael Neuling | 9422de3 | 2012-12-20 14:06:44 +0000 | [diff] [blame] | 29 | u16 type; |
| 30 | u16 len; /* length of the target data symbol */ |
K.Prasad | 5aae8a5 | 2010-06-15 11:35:19 +0530 | [diff] [blame] | 31 | }; |
| 32 | |
Michael Neuling | 9422de3 | 2012-12-20 14:06:44 +0000 | [diff] [blame] | 33 | /* Note: Don't change the the first 6 bits below as they are in the same order |
| 34 | * as the dabr and dabrx. |
| 35 | */ |
| 36 | #define HW_BRK_TYPE_READ 0x01 |
| 37 | #define HW_BRK_TYPE_WRITE 0x02 |
| 38 | #define HW_BRK_TYPE_TRANSLATE 0x04 |
| 39 | #define HW_BRK_TYPE_USER 0x08 |
| 40 | #define HW_BRK_TYPE_KERNEL 0x10 |
| 41 | #define HW_BRK_TYPE_HYP 0x20 |
| 42 | #define HW_BRK_TYPE_EXTRANEOUS_IRQ 0x80 |
| 43 | |
| 44 | /* bits that overlap with the bottom 3 bits of the dabr */ |
| 45 | #define HW_BRK_TYPE_RDWR (HW_BRK_TYPE_READ | HW_BRK_TYPE_WRITE) |
| 46 | #define HW_BRK_TYPE_DABR (HW_BRK_TYPE_RDWR | HW_BRK_TYPE_TRANSLATE) |
| 47 | #define HW_BRK_TYPE_PRIV_ALL (HW_BRK_TYPE_USER | HW_BRK_TYPE_KERNEL | \ |
| 48 | HW_BRK_TYPE_HYP) |
| 49 | |
| 50 | #ifdef CONFIG_HAVE_HW_BREAKPOINT |
K.Prasad | 5aae8a5 | 2010-06-15 11:35:19 +0530 | [diff] [blame] | 51 | #include <linux/kdebug.h> |
| 52 | #include <asm/reg.h> |
David Howells | ae3a197 | 2012-03-28 18:30:02 +0100 | [diff] [blame] | 53 | #include <asm/debug.h> |
K.Prasad | 5aae8a5 | 2010-06-15 11:35:19 +0530 | [diff] [blame] | 54 | |
K.Prasad | 5aae8a5 | 2010-06-15 11:35:19 +0530 | [diff] [blame] | 55 | struct perf_event; |
| 56 | struct pmu; |
| 57 | struct perf_sample_data; |
| 58 | |
| 59 | #define HW_BREAKPOINT_ALIGN 0x7 |
K.Prasad | 5aae8a5 | 2010-06-15 11:35:19 +0530 | [diff] [blame] | 60 | |
Paul Mackerras | d09ec73 | 2010-06-29 12:50:32 +1000 | [diff] [blame] | 61 | extern int hw_breakpoint_slots(int type); |
K.Prasad | 5aae8a5 | 2010-06-15 11:35:19 +0530 | [diff] [blame] | 62 | extern int arch_bp_generic_fields(int type, int *gen_bp_type); |
| 63 | extern int arch_check_bp_in_kernelspace(struct perf_event *bp); |
| 64 | extern int arch_validate_hwbkpt_settings(struct perf_event *bp); |
| 65 | extern int hw_breakpoint_exceptions_notify(struct notifier_block *unused, |
| 66 | unsigned long val, void *data); |
| 67 | int arch_install_hw_breakpoint(struct perf_event *bp); |
| 68 | void arch_uninstall_hw_breakpoint(struct perf_event *bp); |
Mathieu Malaterre | b0d876d | 2018-02-25 18:22:34 +0100 | [diff] [blame] | 69 | void arch_unregister_hw_breakpoint(struct perf_event *bp); |
K.Prasad | 5aae8a5 | 2010-06-15 11:35:19 +0530 | [diff] [blame] | 70 | void hw_breakpoint_pmu_read(struct perf_event *bp); |
| 71 | extern void flush_ptrace_hw_breakpoint(struct task_struct *tsk); |
| 72 | |
| 73 | extern struct pmu perf_ops_bp; |
Peter Zijlstra | 29dfc4f | 2011-07-01 15:24:53 +0200 | [diff] [blame] | 74 | extern void ptrace_triggered(struct perf_event *bp, |
K.Prasad | 5aae8a5 | 2010-06-15 11:35:19 +0530 | [diff] [blame] | 75 | struct perf_sample_data *data, struct pt_regs *regs); |
| 76 | static inline void hw_breakpoint_disable(void) |
| 77 | { |
Michael Neuling | 9422de3 | 2012-12-20 14:06:44 +0000 | [diff] [blame] | 78 | struct arch_hw_breakpoint brk; |
| 79 | |
| 80 | brk.address = 0; |
| 81 | brk.type = 0; |
| 82 | brk.len = 0; |
Naveen N. Rao | 5d6a03e | 2018-04-04 16:11:16 +0530 | [diff] [blame] | 83 | if (ppc_breakpoint_available()) |
| 84 | __set_breakpoint(&brk); |
K.Prasad | 5aae8a5 | 2010-06-15 11:35:19 +0530 | [diff] [blame] | 85 | } |
K.Prasad | 06532a6 | 2010-06-15 11:35:41 +0530 | [diff] [blame] | 86 | extern void thread_change_pc(struct task_struct *tsk, struct pt_regs *regs); |
Mathieu Malaterre | b0d876d | 2018-02-25 18:22:34 +0100 | [diff] [blame] | 87 | int hw_breakpoint_handler(struct die_args *args); |
K.Prasad | 5aae8a5 | 2010-06-15 11:35:19 +0530 | [diff] [blame] | 88 | |
| 89 | #else /* CONFIG_HAVE_HW_BREAKPOINT */ |
| 90 | static inline void hw_breakpoint_disable(void) { } |
K.Prasad | 06532a6 | 2010-06-15 11:35:41 +0530 | [diff] [blame] | 91 | static inline void thread_change_pc(struct task_struct *tsk, |
| 92 | struct pt_regs *regs) { } |
K.Prasad | 5aae8a5 | 2010-06-15 11:35:19 +0530 | [diff] [blame] | 93 | #endif /* CONFIG_HAVE_HW_BREAKPOINT */ |
| 94 | #endif /* __KERNEL__ */ |
| 95 | #endif /* _PPC_BOOK3S_64_HW_BREAKPOINT_H */ |