i915_pmu.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. /*
  2. * Copyright © 2017 Intel Corporation
  3. *
  4. * Permission is hereby granted, free of charge, to any person obtaining a
  5. * copy of this software and associated documentation files (the "Software"),
  6. * to deal in the Software without restriction, including without limitation
  7. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  8. * and/or sell copies of the Software, and to permit persons to whom the
  9. * Software is furnished to do so, subject to the following conditions:
  10. *
  11. * The above copyright notice and this permission notice (including the next
  12. * paragraph) shall be included in all copies or substantial portions of the
  13. * Software.
  14. *
  15. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  16. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  17. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  18. * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  19. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  20. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
  21. * IN THE SOFTWARE.
  22. *
  23. */
  24. #ifndef __I915_PMU_H__
  25. #define __I915_PMU_H__
  26. enum {
  27. __I915_SAMPLE_FREQ_ACT = 0,
  28. __I915_SAMPLE_FREQ_REQ,
  29. __I915_NUM_PMU_SAMPLERS
  30. };
  31. /**
  32. * How many different events we track in the global PMU mask.
  33. *
  34. * It is also used to know to needed number of event reference counters.
  35. */
  36. #define I915_PMU_MASK_BITS \
  37. ((1 << I915_PMU_SAMPLE_BITS) + \
  38. (I915_PMU_LAST + 1 - __I915_PMU_OTHER(0)))
  39. struct i915_pmu_sample {
  40. u64 cur;
  41. };
  42. struct i915_pmu {
  43. /**
  44. * @node: List node for CPU hotplug handling.
  45. */
  46. struct hlist_node node;
  47. /**
  48. * @base: PMU base.
  49. */
  50. struct pmu base;
  51. /**
  52. * @lock: Lock protecting enable mask and ref count handling.
  53. */
  54. spinlock_t lock;
  55. /**
  56. * @timer: Timer for internal i915 PMU sampling.
  57. */
  58. struct hrtimer timer;
  59. /**
  60. * @enable: Bitmask of all currently enabled events.
  61. *
  62. * Bits are derived from uAPI event numbers in a way that low 16 bits
  63. * correspond to engine event _sample_ _type_ (I915_SAMPLE_QUEUED is
  64. * bit 0), and higher bits correspond to other events (for instance
  65. * I915_PMU_ACTUAL_FREQUENCY is bit 16 etc).
  66. *
  67. * In other words, low 16 bits are not per engine but per engine
  68. * sampler type, while the upper bits are directly mapped to other
  69. * event types.
  70. */
  71. u64 enable;
  72. /**
  73. * @enable_count: Reference counts for the enabled events.
  74. *
  75. * Array indices are mapped in the same way as bits in the @enable field
  76. * and they are used to control sampling on/off when multiple clients
  77. * are using the PMU API.
  78. */
  79. unsigned int enable_count[I915_PMU_MASK_BITS];
  80. /**
  81. * @timer_enabled: Should the internal sampling timer be running.
  82. */
  83. bool timer_enabled;
  84. /**
  85. * @sample: Current and previous (raw) counters for sampling events.
  86. *
  87. * These counters are updated from the i915 PMU sampling timer.
  88. *
  89. * Only global counters are held here, while the per-engine ones are in
  90. * struct intel_engine_cs.
  91. */
  92. struct i915_pmu_sample sample[__I915_NUM_PMU_SAMPLERS];
  93. };
  94. #ifdef CONFIG_PERF_EVENTS
  95. void i915_pmu_register(struct drm_i915_private *i915);
  96. void i915_pmu_unregister(struct drm_i915_private *i915);
  97. void i915_pmu_gt_parked(struct drm_i915_private *i915);
  98. void i915_pmu_gt_unparked(struct drm_i915_private *i915);
  99. #else
  100. static inline void i915_pmu_register(struct drm_i915_private *i915) {}
  101. static inline void i915_pmu_unregister(struct drm_i915_private *i915) {}
  102. static inline void i915_pmu_gt_parked(struct drm_i915_private *i915) {}
  103. static inline void i915_pmu_gt_unparked(struct drm_i915_private *i915) {}
  104. #endif
  105. #endif