intel/perf: store the probed i915-perf version
[mesa.git] / src / intel / vulkan / anv_perf.c
1 /*
2 * Copyright © 2018 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
21 * DEALINGS IN THE SOFTWARE.
22 */
23
24 #include <assert.h>
25 #include <stdbool.h>
26 #include <stdint.h>
27
28 #include "anv_private.h"
29
30 #include "perf/gen_perf.h"
31 #include "perf/gen_perf_mdapi.h"
32
33 struct gen_perf_config *
34 anv_get_perf(const struct gen_device_info *devinfo, int fd)
35 {
36 struct gen_perf_config *perf = gen_perf_new(NULL);
37
38 gen_perf_init_metrics(perf, devinfo, fd);
39
40 /* We need DRM_I915_PERF_PROP_HOLD_PREEMPTION support, only available in
41 * perf revision 2.
42 */
43 if (perf->i915_perf_version < 3)
44 goto err;
45
46 return perf;
47
48 err:
49 ralloc_free(perf);
50 return NULL;
51 }
52
53 void
54 anv_device_perf_init(struct anv_device *device)
55 {
56 device->perf_fd = -1;
57 }
58
59 static int
60 anv_device_perf_open(struct anv_device *device, uint64_t metric_id)
61 {
62 uint64_t properties[DRM_I915_PERF_PROP_MAX * 2];
63 struct drm_i915_perf_open_param param;
64 int p = 0, stream_fd;
65
66 properties[p++] = DRM_I915_PERF_PROP_SAMPLE_OA;
67 properties[p++] = true;
68
69 properties[p++] = DRM_I915_PERF_PROP_OA_METRICS_SET;
70 properties[p++] = metric_id;
71
72 properties[p++] = DRM_I915_PERF_PROP_OA_FORMAT;
73 properties[p++] = device->info.gen >= 8 ?
74 I915_OA_FORMAT_A32u40_A4u32_B8_C8 :
75 I915_OA_FORMAT_A45_B8_C8;
76
77 properties[p++] = DRM_I915_PERF_PROP_OA_EXPONENT;
78 properties[p++] = 31; /* slowest sampling period */
79
80 properties[p++] = DRM_I915_PERF_PROP_CTX_HANDLE;
81 properties[p++] = device->context_id;
82
83 properties[p++] = DRM_I915_PERF_PROP_HOLD_PREEMPTION;
84 properties[p++] = true;
85
86 memset(&param, 0, sizeof(param));
87 param.flags = 0;
88 param.flags |= I915_PERF_FLAG_FD_CLOEXEC | I915_PERF_FLAG_FD_NONBLOCK;
89 param.properties_ptr = (uintptr_t)properties;
90 param.num_properties = p / 2;
91
92 stream_fd = gen_ioctl(device->fd, DRM_IOCTL_I915_PERF_OPEN, &param);
93 return stream_fd;
94 }
95
96 VkResult anv_InitializePerformanceApiINTEL(
97 VkDevice _device,
98 const VkInitializePerformanceApiInfoINTEL* pInitializeInfo)
99 {
100 ANV_FROM_HANDLE(anv_device, device, _device);
101
102 if (!device->physical->perf)
103 return VK_ERROR_EXTENSION_NOT_PRESENT;
104
105 /* Not much to do here */
106 return VK_SUCCESS;
107 }
108
109 VkResult anv_GetPerformanceParameterINTEL(
110 VkDevice _device,
111 VkPerformanceParameterTypeINTEL parameter,
112 VkPerformanceValueINTEL* pValue)
113 {
114 ANV_FROM_HANDLE(anv_device, device, _device);
115
116 if (!device->physical->perf)
117 return VK_ERROR_EXTENSION_NOT_PRESENT;
118
119 VkResult result = VK_SUCCESS;
120 switch (parameter) {
121 case VK_PERFORMANCE_PARAMETER_TYPE_HW_COUNTERS_SUPPORTED_INTEL:
122 pValue->type = VK_PERFORMANCE_VALUE_TYPE_BOOL_INTEL;
123 pValue->data.valueBool = VK_TRUE;
124 break;
125
126 case VK_PERFORMANCE_PARAMETER_TYPE_STREAM_MARKER_VALID_BITS_INTEL:
127 pValue->type = VK_PERFORMANCE_VALUE_TYPE_UINT32_INTEL;
128 pValue->data.value32 = 25;
129 break;
130
131 default:
132 result = VK_ERROR_FEATURE_NOT_PRESENT;
133 break;
134 }
135
136 return result;
137 }
138
139 VkResult anv_CmdSetPerformanceMarkerINTEL(
140 VkCommandBuffer commandBuffer,
141 const VkPerformanceMarkerInfoINTEL* pMarkerInfo)
142 {
143 ANV_FROM_HANDLE(anv_cmd_buffer, cmd_buffer, commandBuffer);
144
145 cmd_buffer->intel_perf_marker = pMarkerInfo->marker;
146
147 return VK_SUCCESS;
148 }
149
150 VkResult anv_AcquirePerformanceConfigurationINTEL(
151 VkDevice _device,
152 const VkPerformanceConfigurationAcquireInfoINTEL* pAcquireInfo,
153 VkPerformanceConfigurationINTEL* pConfiguration)
154 {
155 ANV_FROM_HANDLE(anv_device, device, _device);
156
157 struct gen_perf_registers *perf_config =
158 gen_perf_load_configuration(device->physical->perf, device->fd,
159 GEN_PERF_QUERY_GUID_MDAPI);
160 if (!perf_config)
161 return VK_INCOMPLETE;
162
163 int ret = gen_perf_store_configuration(device->physical->perf, device->fd,
164 perf_config, NULL /* guid */);
165 if (ret < 0) {
166 ralloc_free(perf_config);
167 return VK_INCOMPLETE;
168 }
169
170 *pConfiguration = (VkPerformanceConfigurationINTEL) (uint64_t) ret;
171
172 return VK_SUCCESS;
173 }
174
175 VkResult anv_ReleasePerformanceConfigurationINTEL(
176 VkDevice _device,
177 VkPerformanceConfigurationINTEL _configuration)
178 {
179 ANV_FROM_HANDLE(anv_device, device, _device);
180 uint64_t config = (uint64_t) _configuration;
181
182 gen_ioctl(device->fd, DRM_IOCTL_I915_PERF_REMOVE_CONFIG, &config);
183
184 return VK_SUCCESS;
185 }
186
187 VkResult anv_QueueSetPerformanceConfigurationINTEL(
188 VkQueue _queue,
189 VkPerformanceConfigurationINTEL _configuration)
190 {
191 ANV_FROM_HANDLE(anv_queue, queue, _queue);
192 struct anv_device *device = queue->device;
193 uint64_t configuration = (uint64_t) _configuration;
194
195 if (device->perf_fd < 0) {
196 device->perf_fd = anv_device_perf_open(device, configuration);
197 if (device->perf_fd < 0)
198 return VK_ERROR_INITIALIZATION_FAILED;
199 } else {
200 int ret = gen_ioctl(device->perf_fd, I915_PERF_IOCTL_CONFIG,
201 (void *)(uintptr_t) _configuration);
202 if (ret < 0)
203 return anv_device_set_lost(device, "i915-perf config failed: %m");
204 }
205
206 return VK_SUCCESS;
207 }
208
209 void anv_UninitializePerformanceApiINTEL(
210 VkDevice _device)
211 {
212 ANV_FROM_HANDLE(anv_device, device, _device);
213
214 if (device->perf_fd >= 0) {
215 close(device->perf_fd);
216 device->perf_fd = -1;
217 }
218 }