perf_event.h 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. #ifndef _ASM_X86_PERF_EVENT_H
  2. #define _ASM_X86_PERF_EVENT_H
  3. /*
  4. * Performance event hw details:
  5. */
  6. #define X86_PMC_MAX_GENERIC 8
  7. #define X86_PMC_MAX_FIXED 3
  8. #define X86_PMC_IDX_GENERIC 0
  9. #define X86_PMC_IDX_FIXED 32
  10. #define X86_PMC_IDX_MAX 64
  11. #define MSR_ARCH_PERFMON_PERFCTR0 0xc1
  12. #define MSR_ARCH_PERFMON_PERFCTR1 0xc2
  13. #define MSR_ARCH_PERFMON_EVENTSEL0 0x186
  14. #define MSR_ARCH_PERFMON_EVENTSEL1 0x187
  15. #define ARCH_PERFMON_EVENTSEL0_ENABLE (1 << 22)
  16. #define ARCH_PERFMON_EVENTSEL_INT (1 << 20)
  17. #define ARCH_PERFMON_EVENTSEL_OS (1 << 17)
  18. #define ARCH_PERFMON_EVENTSEL_USR (1 << 16)
  19. /*
  20. * Includes eventsel and unit mask as well:
  21. */
  22. #define INTEL_ARCH_EVTSEL_MASK 0x000000FFULL
  23. #define INTEL_ARCH_UNIT_MASK 0x0000FF00ULL
  24. #define INTEL_ARCH_EDGE_MASK 0x00040000ULL
  25. #define INTEL_ARCH_INV_MASK 0x00800000ULL
  26. #define INTEL_ARCH_CNT_MASK 0xFF000000ULL
  27. #define INTEL_ARCH_EVENT_MASK (INTEL_ARCH_UNIT_MASK|INTEL_ARCH_EVTSEL_MASK)
  28. /*
  29. * filter mask to validate fixed counter events.
  30. * the following filters disqualify for fixed counters:
  31. * - inv
  32. * - edge
  33. * - cnt-mask
  34. * The other filters are supported by fixed counters.
  35. * The any-thread option is supported starting with v3.
  36. */
  37. #define INTEL_ARCH_FIXED_MASK \
  38. (INTEL_ARCH_CNT_MASK| \
  39. INTEL_ARCH_INV_MASK| \
  40. INTEL_ARCH_EDGE_MASK|\
  41. INTEL_ARCH_UNIT_MASK|\
  42. INTEL_ARCH_EVENT_MASK)
  43. #define ARCH_PERFMON_UNHALTED_CORE_CYCLES_SEL 0x3c
  44. #define ARCH_PERFMON_UNHALTED_CORE_CYCLES_UMASK (0x00 << 8)
  45. #define ARCH_PERFMON_UNHALTED_CORE_CYCLES_INDEX 0
  46. #define ARCH_PERFMON_UNHALTED_CORE_CYCLES_PRESENT \
  47. (1 << (ARCH_PERFMON_UNHALTED_CORE_CYCLES_INDEX))
  48. #define ARCH_PERFMON_BRANCH_MISSES_RETIRED 6
  49. /*
  50. * Intel "Architectural Performance Monitoring" CPUID
  51. * detection/enumeration details:
  52. */
  53. union cpuid10_eax {
  54. struct {
  55. unsigned int version_id:8;
  56. unsigned int num_events:8;
  57. unsigned int bit_width:8;
  58. unsigned int mask_length:8;
  59. } split;
  60. unsigned int full;
  61. };
  62. union cpuid10_edx {
  63. struct {
  64. unsigned int num_events_fixed:4;
  65. unsigned int reserved:28;
  66. } split;
  67. unsigned int full;
  68. };
  69. /*
  70. * Fixed-purpose performance events:
  71. */
  72. /*
  73. * All 3 fixed-mode PMCs are configured via this single MSR:
  74. */
  75. #define MSR_ARCH_PERFMON_FIXED_CTR_CTRL 0x38d
  76. /*
  77. * The counts are available in three separate MSRs:
  78. */
  79. /* Instr_Retired.Any: */
  80. #define MSR_ARCH_PERFMON_FIXED_CTR0 0x309
  81. #define X86_PMC_IDX_FIXED_INSTRUCTIONS (X86_PMC_IDX_FIXED + 0)
  82. /* CPU_CLK_Unhalted.Core: */
  83. #define MSR_ARCH_PERFMON_FIXED_CTR1 0x30a
  84. #define X86_PMC_IDX_FIXED_CPU_CYCLES (X86_PMC_IDX_FIXED + 1)
  85. /* CPU_CLK_Unhalted.Ref: */
  86. #define MSR_ARCH_PERFMON_FIXED_CTR2 0x30b
  87. #define X86_PMC_IDX_FIXED_BUS_CYCLES (X86_PMC_IDX_FIXED + 2)
  88. /*
  89. * We model BTS tracing as another fixed-mode PMC.
  90. *
  91. * We choose a value in the middle of the fixed event range, since lower
  92. * values are used by actual fixed events and higher values are used
  93. * to indicate other overflow conditions in the PERF_GLOBAL_STATUS msr.
  94. */
  95. #define X86_PMC_IDX_FIXED_BTS (X86_PMC_IDX_FIXED + 16)
  96. #ifdef CONFIG_PERF_EVENTS
  97. extern void init_hw_perf_events(void);
  98. extern void perf_events_lapic_init(void);
  99. #define PERF_EVENT_INDEX_OFFSET 0
  100. #else
  101. static inline void init_hw_perf_events(void) { }
  102. static inline void perf_events_lapic_init(void) { }
  103. #endif
  104. #endif /* _ASM_X86_PERF_EVENT_H */