2019-05-27 08:55:05 +02:00
/* SPDX-License-Identifier: GPL-2.0-or-later */
2010-06-15 11:35:19 +05:30
/*
* PowerPC BookIII S hardware breakpoint definitions
*
* Copyright 2010 , IBM Corporation .
* Author : K . Prasad < prasad @ linux . vnet . ibm . com >
*/
# ifndef _PPC_BOOK3S_64_HW_BREAKPOINT_H
# define _PPC_BOOK3S_64_HW_BREAKPOINT_H
# ifdef __KERNEL__
struct arch_hw_breakpoint {
unsigned long address ;
2012-12-20 14:06:44 +00:00
u16 type ;
u16 len ; /* length of the target data symbol */
2010-06-15 11:35:19 +05:30
} ;
2012-12-20 14:06:44 +00:00
/* Note: Don't change the the first 6 bits below as they are in the same order
* as the dabr and dabrx .
*/
# define HW_BRK_TYPE_READ 0x01
# define HW_BRK_TYPE_WRITE 0x02
# define HW_BRK_TYPE_TRANSLATE 0x04
# define HW_BRK_TYPE_USER 0x08
# define HW_BRK_TYPE_KERNEL 0x10
# define HW_BRK_TYPE_HYP 0x20
# define HW_BRK_TYPE_EXTRANEOUS_IRQ 0x80
/* bits that overlap with the bottom 3 bits of the dabr */
# define HW_BRK_TYPE_RDWR (HW_BRK_TYPE_READ | HW_BRK_TYPE_WRITE)
# define HW_BRK_TYPE_DABR (HW_BRK_TYPE_RDWR | HW_BRK_TYPE_TRANSLATE)
# define HW_BRK_TYPE_PRIV_ALL (HW_BRK_TYPE_USER | HW_BRK_TYPE_KERNEL | \
HW_BRK_TYPE_HYP )
# ifdef CONFIG_HAVE_HW_BREAKPOINT
2010-06-15 11:35:19 +05:30
# include <linux/kdebug.h>
# include <asm/reg.h>
2012-03-28 18:30:02 +01:00
# include <asm/debug.h>
2010-06-15 11:35:19 +05:30
2018-06-26 04:58:51 +02:00
struct perf_event_attr ;
2010-06-15 11:35:19 +05:30
struct perf_event ;
struct pmu ;
struct perf_sample_data ;
2018-07-05 16:25:09 +00:00
struct task_struct ;
2010-06-15 11:35:19 +05:30
# define HW_BREAKPOINT_ALIGN 0x7
2010-06-29 12:50:32 +10:00
extern int hw_breakpoint_slots ( int type ) ;
2010-06-15 11:35:19 +05:30
extern int arch_bp_generic_fields ( int type , int * gen_bp_type ) ;
2018-06-26 04:58:49 +02:00
extern int arch_check_bp_in_kernelspace ( struct arch_hw_breakpoint * hw ) ;
2018-06-26 04:58:51 +02:00
extern int hw_breakpoint_arch_parse ( struct perf_event * bp ,
const struct perf_event_attr * attr ,
struct arch_hw_breakpoint * hw ) ;
2010-06-15 11:35:19 +05:30
extern int hw_breakpoint_exceptions_notify ( struct notifier_block * unused ,
unsigned long val , void * data ) ;
int arch_install_hw_breakpoint ( struct perf_event * bp ) ;
void arch_uninstall_hw_breakpoint ( struct perf_event * bp ) ;
2018-02-25 18:22:34 +01:00
void arch_unregister_hw_breakpoint ( struct perf_event * bp ) ;
2010-06-15 11:35:19 +05:30
void hw_breakpoint_pmu_read ( struct perf_event * bp ) ;
extern void flush_ptrace_hw_breakpoint ( struct task_struct * tsk ) ;
extern struct pmu perf_ops_bp ;
2011-07-01 15:24:53 +02:00
extern void ptrace_triggered ( struct perf_event * bp ,
2010-06-15 11:35:19 +05:30
struct perf_sample_data * data , struct pt_regs * regs ) ;
static inline void hw_breakpoint_disable ( void )
{
2012-12-20 14:06:44 +00:00
struct arch_hw_breakpoint brk ;
brk . address = 0 ;
brk . type = 0 ;
brk . len = 0 ;
2018-04-04 16:11:16 +05:30
if ( ppc_breakpoint_available ( ) )
__set_breakpoint ( & brk ) ;
2010-06-15 11:35:19 +05:30
}
2010-06-15 11:35:41 +05:30
extern void thread_change_pc ( struct task_struct * tsk , struct pt_regs * regs ) ;
2018-02-25 18:22:34 +01:00
int hw_breakpoint_handler ( struct die_args * args ) ;
2010-06-15 11:35:19 +05:30
2019-06-04 13:00:37 +10:00
# else /* CONFIG_HAVE_HW_BREAKPOINT */
static inline void hw_breakpoint_disable ( void ) { }
static inline void thread_change_pc ( struct task_struct * tsk ,
struct pt_regs * regs ) { }
# endif /* CONFIG_HAVE_HW_BREAKPOINT */
# ifdef CONFIG_PPC_DAWR
2019-04-01 17:03:12 +11:00
extern bool dawr_force_enable ;
static inline bool dawr_enabled ( void )
{
return dawr_force_enable ;
}
2019-06-04 13:00:37 +10:00
int set_dawr ( struct arch_hw_breakpoint * brk ) ;
# else
2019-04-01 17:03:12 +11:00
static inline bool dawr_enabled ( void ) { return false ; }
2019-06-04 13:00:37 +10:00
static inline int set_dawr ( struct arch_hw_breakpoint * brk ) { return - 1 ; }
# endif
2010-06-15 11:35:19 +05:30
# endif /* __KERNEL__ */
# endif /* _PPC_BOOK3S_64_HW_BREAKPOINT_H */