perf_event.h 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /*
  2. * Copyright (C) 2012 ARM Ltd.
  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 version 2 as
  6. * published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public License
  14. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. */
  16. #ifndef __ASM_PERF_EVENT_H
  17. #define __ASM_PERF_EVENT_H
  18. #include <asm/stack_pointer.h>
  19. #include <asm/ptrace.h>
  20. #define ARMV8_PMU_MAX_COUNTERS 32
  21. #define ARMV8_PMU_COUNTER_MASK (ARMV8_PMU_MAX_COUNTERS - 1)
  22. /*
  23. * Per-CPU PMCR: config reg
  24. */
  25. #define ARMV8_PMU_PMCR_E (1 << 0) /* Enable all counters */
  26. #define ARMV8_PMU_PMCR_P (1 << 1) /* Reset all counters */
  27. #define ARMV8_PMU_PMCR_C (1 << 2) /* Cycle counter reset */
  28. #define ARMV8_PMU_PMCR_D (1 << 3) /* CCNT counts every 64th cpu cycle */
  29. #define ARMV8_PMU_PMCR_X (1 << 4) /* Export to ETM */
  30. #define ARMV8_PMU_PMCR_DP (1 << 5) /* Disable CCNT if non-invasive debug*/
  31. #define ARMV8_PMU_PMCR_LC (1 << 6) /* Overflow on 64 bit cycle counter */
  32. #define ARMV8_PMU_PMCR_N_SHIFT 11 /* Number of counters supported */
  33. #define ARMV8_PMU_PMCR_N_MASK 0x1f
  34. #define ARMV8_PMU_PMCR_MASK 0x7f /* Mask for writable bits */
  35. /*
  36. * PMOVSR: counters overflow flag status reg
  37. */
  38. #define ARMV8_PMU_OVSR_MASK 0xffffffff /* Mask for writable bits */
  39. #define ARMV8_PMU_OVERFLOWED_MASK ARMV8_PMU_OVSR_MASK
  40. /*
  41. * PMXEVTYPER: Event selection reg
  42. */
  43. #define ARMV8_PMU_EVTYPE_MASK 0xc800ffff /* Mask for writable bits */
  44. #define ARMV8_PMU_EVTYPE_EVENT 0xffff /* Mask for EVENT bits */
  45. /*
  46. * PMUv3 event types: required events
  47. */
  48. #define ARMV8_PMUV3_PERFCTR_SW_INCR 0x00
  49. #define ARMV8_PMUV3_PERFCTR_L1D_CACHE_REFILL 0x03
  50. #define ARMV8_PMUV3_PERFCTR_L1D_CACHE 0x04
  51. #define ARMV8_PMUV3_PERFCTR_BR_MIS_PRED 0x10
  52. #define ARMV8_PMUV3_PERFCTR_CPU_CYCLES 0x11
  53. #define ARMV8_PMUV3_PERFCTR_BR_PRED 0x12
  54. /*
  55. * Event filters for PMUv3
  56. */
  57. #define ARMV8_PMU_EXCLUDE_EL1 (1 << 31)
  58. #define ARMV8_PMU_EXCLUDE_EL0 (1 << 30)
  59. #define ARMV8_PMU_INCLUDE_EL2 (1 << 27)
  60. /*
  61. * PMUSERENR: user enable reg
  62. */
  63. #define ARMV8_PMU_USERENR_MASK 0xf /* Mask for writable bits */
  64. #define ARMV8_PMU_USERENR_EN (1 << 0) /* PMU regs can be accessed at EL0 */
  65. #define ARMV8_PMU_USERENR_SW (1 << 1) /* PMSWINC can be written at EL0 */
  66. #define ARMV8_PMU_USERENR_CR (1 << 2) /* Cycle counter can be read at EL0 */
  67. #define ARMV8_PMU_USERENR_ER (1 << 3) /* Event counter can be read at EL0 */
  68. #ifdef CONFIG_PERF_EVENTS
  69. struct pt_regs;
  70. extern unsigned long perf_instruction_pointer(struct pt_regs *regs);
  71. extern unsigned long perf_misc_flags(struct pt_regs *regs);
  72. #define perf_misc_flags(regs) perf_misc_flags(regs)
  73. #define perf_arch_bpf_user_pt_regs(regs) &regs->user_regs
  74. #endif
  75. #define perf_arch_fetch_caller_regs(regs, __ip) { \
  76. (regs)->pc = (__ip); \
  77. (regs)->regs[29] = (unsigned long) __builtin_frame_address(0); \
  78. (regs)->sp = current_stack_pointer; \
  79. (regs)->pstate = PSR_MODE_EL1h; \
  80. }
  81. #endif