hw_breakpoint.h 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef __ASM_SH_HW_BREAKPOINT_H
  3. #define __ASM_SH_HW_BREAKPOINT_H
  4. #include <uapi/asm/hw_breakpoint.h>
  5. #define __ARCH_HW_BREAKPOINT_H
  6. #include <linux/kdebug.h>
  7. #include <linux/types.h>
  8. struct arch_hw_breakpoint {
  9. unsigned long address;
  10. u16 len;
  11. u16 type;
  12. };
  13. enum {
  14. SH_BREAKPOINT_READ = (1 << 1),
  15. SH_BREAKPOINT_WRITE = (1 << 2),
  16. SH_BREAKPOINT_RW = SH_BREAKPOINT_READ | SH_BREAKPOINT_WRITE,
  17. SH_BREAKPOINT_LEN_1 = (1 << 12),
  18. SH_BREAKPOINT_LEN_2 = (1 << 13),
  19. SH_BREAKPOINT_LEN_4 = SH_BREAKPOINT_LEN_1 | SH_BREAKPOINT_LEN_2,
  20. SH_BREAKPOINT_LEN_8 = (1 << 14),
  21. };
  22. struct sh_ubc {
  23. const char *name;
  24. unsigned int num_events;
  25. unsigned int trap_nr;
  26. void (*enable)(struct arch_hw_breakpoint *, int);
  27. void (*disable)(struct arch_hw_breakpoint *, int);
  28. void (*enable_all)(unsigned long);
  29. void (*disable_all)(void);
  30. unsigned long (*active_mask)(void);
  31. unsigned long (*triggered_mask)(void);
  32. void (*clear_triggered_mask)(unsigned long);
  33. struct clk *clk; /* optional interface clock / MSTP bit */
  34. };
  35. struct perf_event_attr;
  36. struct perf_event;
  37. struct task_struct;
  38. struct pmu;
  39. /* Maximum number of UBC channels */
  40. #define HBP_NUM 2
  41. #define hw_breakpoint_slots(type) (HBP_NUM)
  42. /* arch/sh/kernel/hw_breakpoint.c */
  43. extern int arch_check_bp_in_kernelspace(struct arch_hw_breakpoint *hw);
  44. extern int hw_breakpoint_arch_parse(struct perf_event *bp,
  45. const struct perf_event_attr *attr,
  46. struct arch_hw_breakpoint *hw);
  47. extern int hw_breakpoint_exceptions_notify(struct notifier_block *unused,
  48. unsigned long val, void *data);
  49. int arch_install_hw_breakpoint(struct perf_event *bp);
  50. void arch_uninstall_hw_breakpoint(struct perf_event *bp);
  51. void hw_breakpoint_pmu_read(struct perf_event *bp);
  52. extern void arch_fill_perf_breakpoint(struct perf_event *bp);
  53. extern int register_sh_ubc(struct sh_ubc *);
  54. extern struct pmu perf_ops_bp;
  55. #endif /* __ASM_SH_HW_BREAKPOINT_H */