Jani Nikula | db94e9f | 2019-08-08 16:42:44 +0300 | [diff] [blame] | 1 | /* SPDX-License-Identifier: MIT */ |
| 2 | /* |
| 3 | * Copyright © 2019 Intel Corporation |
| 4 | */ |
| 5 | |
| 6 | #ifndef __I915_PERF_H__ |
| 7 | #define __I915_PERF_H__ |
| 8 | |
Lionel Landwerlin | 6a45008 | 2019-10-12 08:23:06 +0100 | [diff] [blame] | 9 | #include <linux/kref.h> |
Jani Nikula | db94e9f | 2019-08-08 16:42:44 +0300 | [diff] [blame] | 10 | #include <linux/types.h> |
| 11 | |
Lionel Landwerlin | 1d0f2eb | 2019-09-09 12:31:09 +0300 | [diff] [blame] | 12 | #include "i915_perf_types.h" |
| 13 | |
Jani Nikula | db94e9f | 2019-08-08 16:42:44 +0300 | [diff] [blame] | 14 | struct drm_device; |
| 15 | struct drm_file; |
| 16 | struct drm_i915_private; |
Lionel Landwerlin | 6a45008 | 2019-10-12 08:23:06 +0100 | [diff] [blame] | 17 | struct i915_oa_config; |
Jani Nikula | db94e9f | 2019-08-08 16:42:44 +0300 | [diff] [blame] | 18 | struct intel_context; |
| 19 | struct intel_engine_cs; |
| 20 | |
| 21 | void i915_perf_init(struct drm_i915_private *i915); |
| 22 | void i915_perf_fini(struct drm_i915_private *i915); |
| 23 | void i915_perf_register(struct drm_i915_private *i915); |
| 24 | void i915_perf_unregister(struct drm_i915_private *i915); |
Lionel Landwerlin | b8d49f2 | 2019-10-14 21:14:01 +0100 | [diff] [blame] | 25 | int i915_perf_ioctl_version(void); |
Venkata Sandeep Dhanalakota | 3dc716fd | 2019-12-13 07:51:51 -0800 | [diff] [blame] | 26 | void i915_perf_sysctl_register(void); |
| 27 | void i915_perf_sysctl_unregister(void); |
Jani Nikula | db94e9f | 2019-08-08 16:42:44 +0300 | [diff] [blame] | 28 | |
| 29 | int i915_perf_open_ioctl(struct drm_device *dev, void *data, |
| 30 | struct drm_file *file); |
| 31 | int i915_perf_add_config_ioctl(struct drm_device *dev, void *data, |
| 32 | struct drm_file *file); |
| 33 | int i915_perf_remove_config_ioctl(struct drm_device *dev, void *data, |
| 34 | struct drm_file *file); |
Lionel Landwerlin | 6a45008 | 2019-10-12 08:23:06 +0100 | [diff] [blame] | 35 | |
Chris Wilson | 7dc56af | 2019-09-24 15:59:50 +0100 | [diff] [blame] | 36 | void i915_oa_init_reg_state(const struct intel_context *ce, |
| 37 | const struct intel_engine_cs *engine); |
Jani Nikula | db94e9f | 2019-08-08 16:42:44 +0300 | [diff] [blame] | 38 | |
Lionel Landwerlin | 6a45008 | 2019-10-12 08:23:06 +0100 | [diff] [blame] | 39 | struct i915_oa_config * |
| 40 | i915_perf_get_oa_config(struct i915_perf *perf, int metrics_set); |
| 41 | |
| 42 | static inline struct i915_oa_config * |
| 43 | i915_oa_config_get(struct i915_oa_config *oa_config) |
| 44 | { |
| 45 | if (kref_get_unless_zero(&oa_config->ref)) |
| 46 | return oa_config; |
| 47 | else |
| 48 | return NULL; |
| 49 | } |
| 50 | |
| 51 | void i915_oa_config_release(struct kref *ref); |
| 52 | static inline void i915_oa_config_put(struct i915_oa_config *oa_config) |
| 53 | { |
| 54 | if (!oa_config) |
| 55 | return; |
| 56 | |
| 57 | kref_put(&oa_config->ref, i915_oa_config_release); |
| 58 | } |
| 59 | |
Jani Nikula | db94e9f | 2019-08-08 16:42:44 +0300 | [diff] [blame] | 60 | #endif /* __I915_PERF_H__ */ |