blob: ab82ccba896bd52cdd08cb00151a65435ab5cbfa [file] [log] [blame]
Robert Braggeec688e2016-11-07 19:49:47 +00001/*
2 * Copyright © 2015-2016 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 * Authors:
24 * Robert Bragg <robert@sixbynine.org>
25 */
26
Robert Bragg7abbd8d2016-11-07 19:49:57 +000027
28/**
Robert Bragg16d98b32016-12-07 21:40:33 +000029 * DOC: i915 Perf Overview
Robert Bragg7abbd8d2016-11-07 19:49:57 +000030 *
31 * Gen graphics supports a large number of performance counters that can help
32 * driver and application developers understand and optimize their use of the
33 * GPU.
34 *
35 * This i915 perf interface enables userspace to configure and open a file
36 * descriptor representing a stream of GPU metrics which can then be read() as
37 * a stream of sample records.
38 *
39 * The interface is particularly suited to exposing buffered metrics that are
40 * captured by DMA from the GPU, unsynchronized with and unrelated to the CPU.
41 *
42 * Streams representing a single context are accessible to applications with a
43 * corresponding drm file descriptor, such that OpenGL can use the interface
44 * without special privileges. Access to system-wide metrics requires root
45 * privileges by default, unless changed via the dev.i915.perf_event_paranoid
46 * sysctl option.
47 *
Robert Bragg16d98b32016-12-07 21:40:33 +000048 */
49
50/**
51 * DOC: i915 Perf History and Comparison with Core Perf
Robert Bragg7abbd8d2016-11-07 19:49:57 +000052 *
53 * The interface was initially inspired by the core Perf infrastructure but
54 * some notable differences are:
55 *
56 * i915 perf file descriptors represent a "stream" instead of an "event"; where
57 * a perf event primarily corresponds to a single 64bit value, while a stream
58 * might sample sets of tightly-coupled counters, depending on the
59 * configuration. For example the Gen OA unit isn't designed to support
60 * orthogonal configurations of individual counters; it's configured for a set
61 * of related counters. Samples for an i915 perf stream capturing OA metrics
62 * will include a set of counter values packed in a compact HW specific format.
63 * The OA unit supports a number of different packing formats which can be
64 * selected by the user opening the stream. Perf has support for grouping
65 * events, but each event in the group is configured, validated and
66 * authenticated individually with separate system calls.
67 *
68 * i915 perf stream configurations are provided as an array of u64 (key,value)
69 * pairs, instead of a fixed struct with multiple miscellaneous config members,
70 * interleaved with event-type specific members.
71 *
72 * i915 perf doesn't support exposing metrics via an mmap'd circular buffer.
73 * The supported metrics are being written to memory by the GPU unsynchronized
74 * with the CPU, using HW specific packing formats for counter sets. Sometimes
75 * the constraints on HW configuration require reports to be filtered before it
76 * would be acceptable to expose them to unprivileged applications - to hide
77 * the metrics of other processes/contexts. For these use cases a read() based
78 * interface is a good fit, and provides an opportunity to filter data as it
79 * gets copied from the GPU mapped buffers to userspace buffers.
80 *
81 *
Robert Bragg16d98b32016-12-07 21:40:33 +000082 * Issues hit with first prototype based on Core Perf
83 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Robert Bragg7abbd8d2016-11-07 19:49:57 +000084 *
85 * The first prototype of this driver was based on the core perf
86 * infrastructure, and while we did make that mostly work, with some changes to
87 * perf, we found we were breaking or working around too many assumptions baked
88 * into perf's currently cpu centric design.
89 *
90 * In the end we didn't see a clear benefit to making perf's implementation and
91 * interface more complex by changing design assumptions while we knew we still
92 * wouldn't be able to use any existing perf based userspace tools.
93 *
94 * Also considering the Gen specific nature of the Observability hardware and
95 * how userspace will sometimes need to combine i915 perf OA metrics with
96 * side-band OA data captured via MI_REPORT_PERF_COUNT commands; we're
97 * expecting the interface to be used by a platform specific userspace such as
98 * OpenGL or tools. This is to say; we aren't inherently missing out on having
99 * a standard vendor/architecture agnostic interface by not using perf.
100 *
101 *
102 * For posterity, in case we might re-visit trying to adapt core perf to be
103 * better suited to exposing i915 metrics these were the main pain points we
104 * hit:
105 *
106 * - The perf based OA PMU driver broke some significant design assumptions:
107 *
108 * Existing perf pmus are used for profiling work on a cpu and we were
109 * introducing the idea of _IS_DEVICE pmus with different security
110 * implications, the need to fake cpu-related data (such as user/kernel
111 * registers) to fit with perf's current design, and adding _DEVICE records
112 * as a way to forward device-specific status records.
113 *
114 * The OA unit writes reports of counters into a circular buffer, without
115 * involvement from the CPU, making our PMU driver the first of a kind.
116 *
117 * Given the way we were periodically forward data from the GPU-mapped, OA
118 * buffer to perf's buffer, those bursts of sample writes looked to perf like
119 * we were sampling too fast and so we had to subvert its throttling checks.
120 *
121 * Perf supports groups of counters and allows those to be read via
122 * transactions internally but transactions currently seem designed to be
123 * explicitly initiated from the cpu (say in response to a userspace read())
124 * and while we could pull a report out of the OA buffer we can't
125 * trigger a report from the cpu on demand.
126 *
127 * Related to being report based; the OA counters are configured in HW as a
128 * set while perf generally expects counter configurations to be orthogonal.
129 * Although counters can be associated with a group leader as they are
130 * opened, there's no clear precedent for being able to provide group-wide
131 * configuration attributes (for example we want to let userspace choose the
132 * OA unit report format used to capture all counters in a set, or specify a
133 * GPU context to filter metrics on). We avoided using perf's grouping
134 * feature and forwarded OA reports to userspace via perf's 'raw' sample
135 * field. This suited our userspace well considering how coupled the counters
136 * are when dealing with normalizing. It would be inconvenient to split
137 * counters up into separate events, only to require userspace to recombine
138 * them. For Mesa it's also convenient to be forwarded raw, periodic reports
139 * for combining with the side-band raw reports it captures using
140 * MI_REPORT_PERF_COUNT commands.
141 *
Robert Bragg16d98b32016-12-07 21:40:33 +0000142 * - As a side note on perf's grouping feature; there was also some concern
Robert Bragg7abbd8d2016-11-07 19:49:57 +0000143 * that using PERF_FORMAT_GROUP as a way to pack together counter values
144 * would quite drastically inflate our sample sizes, which would likely
145 * lower the effective sampling resolutions we could use when the available
146 * memory bandwidth is limited.
147 *
148 * With the OA unit's report formats, counters are packed together as 32
149 * or 40bit values, with the largest report size being 256 bytes.
150 *
151 * PERF_FORMAT_GROUP values are 64bit, but there doesn't appear to be a
152 * documented ordering to the values, implying PERF_FORMAT_ID must also be
153 * used to add a 64bit ID before each value; giving 16 bytes per counter.
154 *
155 * Related to counter orthogonality; we can't time share the OA unit, while
156 * event scheduling is a central design idea within perf for allowing
157 * userspace to open + enable more events than can be configured in HW at any
158 * one time. The OA unit is not designed to allow re-configuration while in
159 * use. We can't reconfigure the OA unit without losing internal OA unit
160 * state which we can't access explicitly to save and restore. Reconfiguring
161 * the OA unit is also relatively slow, involving ~100 register writes. From
162 * userspace Mesa also depends on a stable OA configuration when emitting
163 * MI_REPORT_PERF_COUNT commands and importantly the OA unit can't be
164 * disabled while there are outstanding MI_RPC commands lest we hang the
165 * command streamer.
166 *
167 * The contents of sample records aren't extensible by device drivers (i.e.
168 * the sample_type bits). As an example; Sourab Gupta had been looking to
169 * attach GPU timestamps to our OA samples. We were shoehorning OA reports
170 * into sample records by using the 'raw' field, but it's tricky to pack more
171 * than one thing into this field because events/core.c currently only lets a
172 * pmu give a single raw data pointer plus len which will be copied into the
173 * ring buffer. To include more than the OA report we'd have to copy the
174 * report into an intermediate larger buffer. I'd been considering allowing a
175 * vector of data+len values to be specified for copying the raw data, but
176 * it felt like a kludge to being using the raw field for this purpose.
177 *
178 * - It felt like our perf based PMU was making some technical compromises
179 * just for the sake of using perf:
180 *
181 * perf_event_open() requires events to either relate to a pid or a specific
182 * cpu core, while our device pmu related to neither. Events opened with a
183 * pid will be automatically enabled/disabled according to the scheduling of
184 * that process - so not appropriate for us. When an event is related to a
185 * cpu id, perf ensures pmu methods will be invoked via an inter process
186 * interrupt on that core. To avoid invasive changes our userspace opened OA
187 * perf events for a specific cpu. This was workable but it meant the
188 * majority of the OA driver ran in atomic context, including all OA report
189 * forwarding, which wasn't really necessary in our case and seems to make
190 * our locking requirements somewhat complex as we handled the interaction
191 * with the rest of the i915 driver.
192 */
193
Robert Braggeec688e2016-11-07 19:49:47 +0000194#include <linux/anon_inodes.h>
Robert Braggd7965152016-11-07 19:49:52 +0000195#include <linux/sizes.h>
Lionel Landwerlinf89823c2017-08-03 18:05:50 +0100196#include <linux/uuid.h>
Robert Braggeec688e2016-11-07 19:49:47 +0000197
Chris Wilson10be98a2019-05-28 10:29:49 +0100198#include "gem/i915_gem_context.h"
199#include "gem/i915_gem_pm.h"
Chris Wilson112ed2d2019-04-24 18:48:39 +0100200#include "gt/intel_lrc_reg.h"
201
Robert Braggeec688e2016-11-07 19:49:47 +0000202#include "i915_drv.h"
Michal Wajdeczko5ed7a0c2019-06-26 12:38:26 +0000203#include "oa/i915_oa_hsw.h"
204#include "oa/i915_oa_bdw.h"
205#include "oa/i915_oa_chv.h"
206#include "oa/i915_oa_sklgt2.h"
207#include "oa/i915_oa_sklgt3.h"
208#include "oa/i915_oa_sklgt4.h"
209#include "oa/i915_oa_bxt.h"
210#include "oa/i915_oa_kblgt2.h"
211#include "oa/i915_oa_kblgt3.h"
212#include "oa/i915_oa_glk.h"
213#include "oa/i915_oa_cflgt2.h"
214#include "oa/i915_oa_cflgt3.h"
215#include "oa/i915_oa_cnl.h"
216#include "oa/i915_oa_icl.h"
Robert Braggd7965152016-11-07 19:49:52 +0000217
Joonas Lahtinenfe841682018-11-16 15:55:09 +0200218/* HW requires this to be a power of two, between 128k and 16M, though driver
219 * is currently generally designed assuming the largest 16M size is used such
220 * that the overflow cases are unlikely in normal operation.
221 */
222#define OA_BUFFER_SIZE SZ_16M
223
224#define OA_TAKEN(tail, head) ((tail - head) & (OA_BUFFER_SIZE - 1))
Robert Braggd7965152016-11-07 19:49:52 +0000225
Robert Bragg0dd860c2017-05-11 16:43:28 +0100226/**
227 * DOC: OA Tail Pointer Race
228 *
229 * There's a HW race condition between OA unit tail pointer register updates and
Robert Braggd7965152016-11-07 19:49:52 +0000230 * writes to memory whereby the tail pointer can sometimes get ahead of what's
Robert Bragg0dd860c2017-05-11 16:43:28 +0100231 * been written out to the OA buffer so far (in terms of what's visible to the
232 * CPU).
Robert Braggd7965152016-11-07 19:49:52 +0000233 *
Robert Bragg0dd860c2017-05-11 16:43:28 +0100234 * Although this can be observed explicitly while copying reports to userspace
235 * by checking for a zeroed report-id field in tail reports, we want to account
Robert Bragg19f81df2017-06-13 12:23:03 +0100236 * for this earlier, as part of the oa_buffer_check to avoid lots of redundant
Robert Bragg0dd860c2017-05-11 16:43:28 +0100237 * read() attempts.
Robert Braggd7965152016-11-07 19:49:52 +0000238 *
Robert Bragg0dd860c2017-05-11 16:43:28 +0100239 * In effect we define a tail pointer for reading that lags the real tail
240 * pointer by at least %OA_TAIL_MARGIN_NSEC nanoseconds, which gives enough
241 * time for the corresponding reports to become visible to the CPU.
Robert Braggd7965152016-11-07 19:49:52 +0000242 *
Robert Bragg0dd860c2017-05-11 16:43:28 +0100243 * To manage this we actually track two tail pointers:
244 * 1) An 'aging' tail with an associated timestamp that is tracked until we
245 * can trust the corresponding data is visible to the CPU; at which point
246 * it is considered 'aged'.
247 * 2) An 'aged' tail that can be used for read()ing.
248 *
249 * The two separate pointers let us decouple read()s from tail pointer aging.
250 *
251 * The tail pointers are checked and updated at a limited rate within a hrtimer
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800252 * callback (the same callback that is used for delivering EPOLLIN events)
Robert Bragg0dd860c2017-05-11 16:43:28 +0100253 *
254 * Initially the tails are marked invalid with %INVALID_TAIL_PTR which
255 * indicates that an updated tail pointer is needed.
256 *
257 * Most of the implementation details for this workaround are in
Robert Bragg19f81df2017-06-13 12:23:03 +0100258 * oa_buffer_check_unlocked() and _append_oa_reports()
Robert Bragg0dd860c2017-05-11 16:43:28 +0100259 *
260 * Note for posterity: previously the driver used to define an effective tail
261 * pointer that lagged the real pointer by a 'tail margin' measured in bytes
262 * derived from %OA_TAIL_MARGIN_NSEC and the configured sampling frequency.
263 * This was flawed considering that the OA unit may also automatically generate
264 * non-periodic reports (such as on context switch) or the OA unit may be
265 * enabled without any periodic sampling.
Robert Braggd7965152016-11-07 19:49:52 +0000266 */
267#define OA_TAIL_MARGIN_NSEC 100000ULL
Robert Bragg0dd860c2017-05-11 16:43:28 +0100268#define INVALID_TAIL_PTR 0xffffffff
Robert Braggd7965152016-11-07 19:49:52 +0000269
270/* frequency for checking whether the OA unit has written new reports to the
271 * circular OA buffer...
272 */
273#define POLL_FREQUENCY 200
274#define POLL_PERIOD (NSEC_PER_SEC / POLL_FREQUENCY)
275
Robert Braggccdf6342016-11-07 19:49:54 +0000276/* for sysctl proc_dointvec_minmax of dev.i915.perf_stream_paranoid */
277static int zero;
278static int one = 1;
279static u32 i915_perf_stream_paranoid = true;
280
Robert Braggd7965152016-11-07 19:49:52 +0000281/* The maximum exponent the hardware accepts is 63 (essentially it selects one
282 * of the 64bit timestamp bits to trigger reports from) but there's currently
283 * no known use case for sampling as infrequently as once per 47 thousand years.
284 *
285 * Since the timestamps included in OA reports are only 32bits it seems
286 * reasonable to limit the OA exponent where it's still possible to account for
287 * overflow in OA report timestamps.
288 */
289#define OA_EXPONENT_MAX 31
290
291#define INVALID_CTX_ID 0xffffffff
292
Robert Bragg19f81df2017-06-13 12:23:03 +0100293/* On Gen8+ automatically triggered OA reports include a 'reason' field... */
294#define OAREPORT_REASON_MASK 0x3f
295#define OAREPORT_REASON_SHIFT 19
296#define OAREPORT_REASON_TIMER (1<<0)
297#define OAREPORT_REASON_CTX_SWITCH (1<<3)
298#define OAREPORT_REASON_CLK_RATIO (1<<5)
299
Robert Braggd7965152016-11-07 19:49:52 +0000300
Robert Bragg00319ba2016-11-07 19:49:55 +0000301/* For sysctl proc_dointvec_minmax of i915_oa_max_sample_rate
302 *
Robert Bragg155e9412017-06-13 12:23:05 +0100303 * The highest sampling frequency we can theoretically program the OA unit
304 * with is always half the timestamp frequency: E.g. 6.25Mhz for Haswell.
305 *
306 * Initialized just before we register the sysctl parameter.
Robert Bragg00319ba2016-11-07 19:49:55 +0000307 */
Robert Bragg155e9412017-06-13 12:23:05 +0100308static int oa_sample_rate_hard_limit;
Robert Bragg00319ba2016-11-07 19:49:55 +0000309
310/* Theoretically we can program the OA unit to sample every 160ns but don't
311 * allow that by default unless root...
312 *
313 * The default threshold of 100000Hz is based on perf's similar
314 * kernel.perf_event_max_sample_rate sysctl parameter.
315 */
316static u32 i915_oa_max_sample_rate = 100000;
317
Robert Braggd7965152016-11-07 19:49:52 +0000318/* XXX: beware if future OA HW adds new report formats that the current
319 * code assumes all reports have a power-of-two size and ~(size - 1) can
320 * be used as a mask to align the OA tail pointer.
321 */
Jani Nikula6ebb6d82018-06-13 14:49:29 +0300322static const struct i915_oa_format hsw_oa_formats[I915_OA_FORMAT_MAX] = {
Robert Braggd7965152016-11-07 19:49:52 +0000323 [I915_OA_FORMAT_A13] = { 0, 64 },
324 [I915_OA_FORMAT_A29] = { 1, 128 },
325 [I915_OA_FORMAT_A13_B8_C8] = { 2, 128 },
326 /* A29_B8_C8 Disallowed as 192 bytes doesn't factor into buffer size */
327 [I915_OA_FORMAT_B4_C8] = { 4, 64 },
328 [I915_OA_FORMAT_A45_B8_C8] = { 5, 256 },
329 [I915_OA_FORMAT_B4_C8_A16] = { 6, 128 },
330 [I915_OA_FORMAT_C4_B8] = { 7, 64 },
331};
332
Jani Nikula6ebb6d82018-06-13 14:49:29 +0300333static const struct i915_oa_format gen8_plus_oa_formats[I915_OA_FORMAT_MAX] = {
Robert Bragg19f81df2017-06-13 12:23:03 +0100334 [I915_OA_FORMAT_A12] = { 0, 64 },
335 [I915_OA_FORMAT_A12_B8_C8] = { 2, 128 },
336 [I915_OA_FORMAT_A32u40_A4u32_B8_C8] = { 5, 256 },
337 [I915_OA_FORMAT_C4_B8] = { 7, 64 },
338};
339
Robert Braggd7965152016-11-07 19:49:52 +0000340#define SAMPLE_OA_REPORT (1<<0)
Robert Braggeec688e2016-11-07 19:49:47 +0000341
Robert Bragg16d98b32016-12-07 21:40:33 +0000342/**
343 * struct perf_open_properties - for validated properties given to open a stream
344 * @sample_flags: `DRM_I915_PERF_PROP_SAMPLE_*` properties are tracked as flags
345 * @single_context: Whether a single or all gpu contexts should be monitored
346 * @ctx_handle: A gem ctx handle for use with @single_context
347 * @metrics_set: An ID for an OA unit metric set advertised via sysfs
348 * @oa_format: An OA unit HW report format
349 * @oa_periodic: Whether to enable periodic OA unit sampling
350 * @oa_period_exponent: The OA unit sampling period is derived from this
351 *
352 * As read_properties_unlocked() enumerates and validates the properties given
353 * to open a stream of metrics the configuration is built up in the structure
354 * which starts out zero initialized.
355 */
Robert Braggeec688e2016-11-07 19:49:47 +0000356struct perf_open_properties {
357 u32 sample_flags;
358
359 u64 single_context:1;
360 u64 ctx_handle;
Robert Braggd7965152016-11-07 19:49:52 +0000361
362 /* OA sampling state */
363 int metrics_set;
364 int oa_format;
365 bool oa_periodic;
366 int oa_period_exponent;
Robert Braggeec688e2016-11-07 19:49:47 +0000367};
368
Lionel Landwerlinf89823c2017-08-03 18:05:50 +0100369static void free_oa_config(struct drm_i915_private *dev_priv,
370 struct i915_oa_config *oa_config)
371{
372 if (!PTR_ERR(oa_config->flex_regs))
373 kfree(oa_config->flex_regs);
374 if (!PTR_ERR(oa_config->b_counter_regs))
375 kfree(oa_config->b_counter_regs);
376 if (!PTR_ERR(oa_config->mux_regs))
377 kfree(oa_config->mux_regs);
378 kfree(oa_config);
379}
380
381static void put_oa_config(struct drm_i915_private *dev_priv,
382 struct i915_oa_config *oa_config)
383{
384 if (!atomic_dec_and_test(&oa_config->ref_count))
385 return;
386
387 free_oa_config(dev_priv, oa_config);
388}
389
390static int get_oa_config(struct drm_i915_private *dev_priv,
391 int metrics_set,
392 struct i915_oa_config **out_config)
393{
394 int ret;
395
396 if (metrics_set == 1) {
397 *out_config = &dev_priv->perf.oa.test_config;
398 atomic_inc(&dev_priv->perf.oa.test_config.ref_count);
399 return 0;
400 }
401
402 ret = mutex_lock_interruptible(&dev_priv->perf.metrics_lock);
403 if (ret)
404 return ret;
405
406 *out_config = idr_find(&dev_priv->perf.metrics_idr, metrics_set);
407 if (!*out_config)
408 ret = -EINVAL;
409 else
410 atomic_inc(&(*out_config)->ref_count);
411
412 mutex_unlock(&dev_priv->perf.metrics_lock);
413
414 return ret;
415}
416
Robert Bragg19f81df2017-06-13 12:23:03 +0100417static u32 gen8_oa_hw_tail_read(struct drm_i915_private *dev_priv)
418{
419 return I915_READ(GEN8_OATAILPTR) & GEN8_OATAILPTR_MASK;
420}
421
422static u32 gen7_oa_hw_tail_read(struct drm_i915_private *dev_priv)
423{
424 u32 oastatus1 = I915_READ(GEN7_OASTATUS1);
425
426 return oastatus1 & GEN7_OASTATUS1_TAIL_MASK;
427}
428
Robert Bragg0dd860c2017-05-11 16:43:28 +0100429/**
Robert Bragg19f81df2017-06-13 12:23:03 +0100430 * oa_buffer_check_unlocked - check for data and update tail ptr state
Robert Bragg0dd860c2017-05-11 16:43:28 +0100431 * @dev_priv: i915 device instance
Robert Braggd7965152016-11-07 19:49:52 +0000432 *
Robert Bragg0dd860c2017-05-11 16:43:28 +0100433 * This is either called via fops (for blocking reads in user ctx) or the poll
434 * check hrtimer (atomic ctx) to check the OA buffer tail pointer and check
435 * if there is data available for userspace to read.
Robert Braggd7965152016-11-07 19:49:52 +0000436 *
Robert Bragg0dd860c2017-05-11 16:43:28 +0100437 * This function is central to providing a workaround for the OA unit tail
438 * pointer having a race with respect to what data is visible to the CPU.
439 * It is responsible for reading tail pointers from the hardware and giving
440 * the pointers time to 'age' before they are made available for reading.
441 * (See description of OA_TAIL_MARGIN_NSEC above for further details.)
442 *
443 * Besides returning true when there is data available to read() this function
444 * also has the side effect of updating the oa_buffer.tails[], .aging_timestamp
445 * and .aged_tail_idx state used for reading.
446 *
447 * Note: It's safe to read OA config state here unlocked, assuming that this is
448 * only called while the stream is enabled, while the global OA configuration
449 * can't be modified.
450 *
451 * Returns: %true if the OA buffer contains data, else %false
Robert Braggd7965152016-11-07 19:49:52 +0000452 */
Robert Bragg19f81df2017-06-13 12:23:03 +0100453static bool oa_buffer_check_unlocked(struct drm_i915_private *dev_priv)
Robert Braggd7965152016-11-07 19:49:52 +0000454{
455 int report_size = dev_priv->perf.oa.oa_buffer.format_size;
Robert Bragg0dd860c2017-05-11 16:43:28 +0100456 unsigned long flags;
457 unsigned int aged_idx;
Robert Bragg0dd860c2017-05-11 16:43:28 +0100458 u32 head, hw_tail, aged_tail, aging_tail;
459 u64 now;
Robert Braggd7965152016-11-07 19:49:52 +0000460
Robert Bragg0dd860c2017-05-11 16:43:28 +0100461 /* We have to consider the (unlikely) possibility that read() errors
462 * could result in an OA buffer reset which might reset the head,
463 * tails[] and aged_tail state.
464 */
465 spin_lock_irqsave(&dev_priv->perf.oa.oa_buffer.ptr_lock, flags);
466
467 /* NB: The head we observe here might effectively be a little out of
468 * date (between head and tails[aged_idx].offset if there is currently
469 * a read() in progress.
470 */
471 head = dev_priv->perf.oa.oa_buffer.head;
472
473 aged_idx = dev_priv->perf.oa.oa_buffer.aged_tail_idx;
474 aged_tail = dev_priv->perf.oa.oa_buffer.tails[aged_idx].offset;
475 aging_tail = dev_priv->perf.oa.oa_buffer.tails[!aged_idx].offset;
476
Robert Bragg19f81df2017-06-13 12:23:03 +0100477 hw_tail = dev_priv->perf.oa.ops.oa_hw_tail_read(dev_priv);
Robert Bragg0dd860c2017-05-11 16:43:28 +0100478
479 /* The tail pointer increases in 64 byte increments,
480 * not in report_size steps...
481 */
482 hw_tail &= ~(report_size - 1);
483
484 now = ktime_get_mono_fast_ns();
485
Robert Bragg4117ebc2017-05-11 16:43:30 +0100486 /* Update the aged tail
487 *
488 * Flip the tail pointer available for read()s once the aging tail is
489 * old enough to trust that the corresponding data will be visible to
490 * the CPU...
491 *
492 * Do this before updating the aging pointer in case we may be able to
493 * immediately start aging a new pointer too (if new data has become
494 * available) without needing to wait for a later hrtimer callback.
495 */
496 if (aging_tail != INVALID_TAIL_PTR &&
497 ((now - dev_priv->perf.oa.oa_buffer.aging_timestamp) >
498 OA_TAIL_MARGIN_NSEC)) {
Robert Bragg19f81df2017-06-13 12:23:03 +0100499
Robert Bragg4117ebc2017-05-11 16:43:30 +0100500 aged_idx ^= 1;
501 dev_priv->perf.oa.oa_buffer.aged_tail_idx = aged_idx;
502
503 aged_tail = aging_tail;
504
505 /* Mark that we need a new pointer to start aging... */
506 dev_priv->perf.oa.oa_buffer.tails[!aged_idx].offset = INVALID_TAIL_PTR;
507 aging_tail = INVALID_TAIL_PTR;
508 }
509
Robert Bragg0dd860c2017-05-11 16:43:28 +0100510 /* Update the aging tail
511 *
512 * We throttle aging tail updates until we have a new tail that
513 * represents >= one report more data than is already available for
514 * reading. This ensures there will be enough data for a successful
515 * read once this new pointer has aged and ensures we will give the new
516 * pointer time to age.
517 */
518 if (aging_tail == INVALID_TAIL_PTR &&
519 (aged_tail == INVALID_TAIL_PTR ||
520 OA_TAKEN(hw_tail, aged_tail) >= report_size)) {
521 struct i915_vma *vma = dev_priv->perf.oa.oa_buffer.vma;
522 u32 gtt_offset = i915_ggtt_offset(vma);
523
524 /* Be paranoid and do a bounds check on the pointer read back
525 * from hardware, just in case some spurious hardware condition
526 * could put the tail out of bounds...
527 */
528 if (hw_tail >= gtt_offset &&
Joonas Lahtinenfe841682018-11-16 15:55:09 +0200529 hw_tail < (gtt_offset + OA_BUFFER_SIZE)) {
Robert Bragg0dd860c2017-05-11 16:43:28 +0100530 dev_priv->perf.oa.oa_buffer.tails[!aged_idx].offset =
531 aging_tail = hw_tail;
532 dev_priv->perf.oa.oa_buffer.aging_timestamp = now;
533 } else {
534 DRM_ERROR("Ignoring spurious out of range OA buffer tail pointer = %u\n",
535 hw_tail);
536 }
537 }
538
Robert Bragg0dd860c2017-05-11 16:43:28 +0100539 spin_unlock_irqrestore(&dev_priv->perf.oa.oa_buffer.ptr_lock, flags);
540
541 return aged_tail == INVALID_TAIL_PTR ?
542 false : OA_TAKEN(aged_tail, head) >= report_size;
Robert Braggd7965152016-11-07 19:49:52 +0000543}
544
545/**
Robert Bragg16d98b32016-12-07 21:40:33 +0000546 * append_oa_status - Appends a status record to a userspace read() buffer.
547 * @stream: An i915-perf stream opened for OA metrics
548 * @buf: destination buffer given by userspace
549 * @count: the number of bytes userspace wants to read
550 * @offset: (inout): the current position for writing into @buf
551 * @type: The kind of status to report to userspace
552 *
553 * Writes a status record (such as `DRM_I915_PERF_RECORD_OA_REPORT_LOST`)
554 * into the userspace read() buffer.
555 *
556 * The @buf @offset will only be updated on success.
557 *
558 * Returns: 0 on success, negative error code on failure.
Robert Braggd7965152016-11-07 19:49:52 +0000559 */
560static int append_oa_status(struct i915_perf_stream *stream,
561 char __user *buf,
562 size_t count,
563 size_t *offset,
564 enum drm_i915_perf_record_type type)
565{
566 struct drm_i915_perf_record_header header = { type, 0, sizeof(header) };
567
568 if ((count - *offset) < header.size)
569 return -ENOSPC;
570
571 if (copy_to_user(buf + *offset, &header, sizeof(header)))
572 return -EFAULT;
573
574 (*offset) += header.size;
575
576 return 0;
577}
578
579/**
Robert Bragg16d98b32016-12-07 21:40:33 +0000580 * append_oa_sample - Copies single OA report into userspace read() buffer.
581 * @stream: An i915-perf stream opened for OA metrics
582 * @buf: destination buffer given by userspace
583 * @count: the number of bytes userspace wants to read
584 * @offset: (inout): the current position for writing into @buf
585 * @report: A single OA report to (optionally) include as part of the sample
586 *
587 * The contents of a sample are configured through `DRM_I915_PERF_PROP_SAMPLE_*`
588 * properties when opening a stream, tracked as `stream->sample_flags`. This
589 * function copies the requested components of a single sample to the given
590 * read() @buf.
591 *
592 * The @buf @offset will only be updated on success.
593 *
594 * Returns: 0 on success, negative error code on failure.
Robert Braggd7965152016-11-07 19:49:52 +0000595 */
596static int append_oa_sample(struct i915_perf_stream *stream,
597 char __user *buf,
598 size_t count,
599 size_t *offset,
600 const u8 *report)
601{
602 struct drm_i915_private *dev_priv = stream->dev_priv;
603 int report_size = dev_priv->perf.oa.oa_buffer.format_size;
604 struct drm_i915_perf_record_header header;
605 u32 sample_flags = stream->sample_flags;
606
607 header.type = DRM_I915_PERF_RECORD_SAMPLE;
608 header.pad = 0;
609 header.size = stream->sample_size;
610
611 if ((count - *offset) < header.size)
612 return -ENOSPC;
613
614 buf += *offset;
615 if (copy_to_user(buf, &header, sizeof(header)))
616 return -EFAULT;
617 buf += sizeof(header);
618
619 if (sample_flags & SAMPLE_OA_REPORT) {
620 if (copy_to_user(buf, report, report_size))
621 return -EFAULT;
622 }
623
624 (*offset) += header.size;
625
626 return 0;
627}
628
629/**
630 * Copies all buffered OA reports into userspace read() buffer.
631 * @stream: An i915-perf stream opened for OA metrics
632 * @buf: destination buffer given by userspace
633 * @count: the number of bytes userspace wants to read
634 * @offset: (inout): the current position for writing into @buf
Robert Braggd7965152016-11-07 19:49:52 +0000635 *
Robert Bragg16d98b32016-12-07 21:40:33 +0000636 * Notably any error condition resulting in a short read (-%ENOSPC or
637 * -%EFAULT) will be returned even though one or more records may
Robert Braggd7965152016-11-07 19:49:52 +0000638 * have been successfully copied. In this case it's up to the caller
639 * to decide if the error should be squashed before returning to
640 * userspace.
641 *
642 * Note: reports are consumed from the head, and appended to the
Robert Bragge81b3a52017-05-11 16:43:24 +0100643 * tail, so the tail chases the head?... If you think that's mad
Robert Braggd7965152016-11-07 19:49:52 +0000644 * and back-to-front you're not alone, but this follows the
645 * Gen PRM naming convention.
Robert Bragg16d98b32016-12-07 21:40:33 +0000646 *
647 * Returns: 0 on success, negative error code on failure.
Robert Braggd7965152016-11-07 19:49:52 +0000648 */
Robert Bragg19f81df2017-06-13 12:23:03 +0100649static int gen8_append_oa_reports(struct i915_perf_stream *stream,
650 char __user *buf,
651 size_t count,
652 size_t *offset)
653{
654 struct drm_i915_private *dev_priv = stream->dev_priv;
655 int report_size = dev_priv->perf.oa.oa_buffer.format_size;
656 u8 *oa_buf_base = dev_priv->perf.oa.oa_buffer.vaddr;
657 u32 gtt_offset = i915_ggtt_offset(dev_priv->perf.oa.oa_buffer.vma);
Joonas Lahtinenfe841682018-11-16 15:55:09 +0200658 u32 mask = (OA_BUFFER_SIZE - 1);
Robert Bragg19f81df2017-06-13 12:23:03 +0100659 size_t start_offset = *offset;
660 unsigned long flags;
661 unsigned int aged_tail_idx;
662 u32 head, tail;
663 u32 taken;
664 int ret = 0;
665
666 if (WARN_ON(!stream->enabled))
667 return -EIO;
668
669 spin_lock_irqsave(&dev_priv->perf.oa.oa_buffer.ptr_lock, flags);
670
671 head = dev_priv->perf.oa.oa_buffer.head;
672 aged_tail_idx = dev_priv->perf.oa.oa_buffer.aged_tail_idx;
673 tail = dev_priv->perf.oa.oa_buffer.tails[aged_tail_idx].offset;
674
675 spin_unlock_irqrestore(&dev_priv->perf.oa.oa_buffer.ptr_lock, flags);
676
677 /*
678 * An invalid tail pointer here means we're still waiting for the poll
679 * hrtimer callback to give us a pointer
680 */
681 if (tail == INVALID_TAIL_PTR)
682 return -EAGAIN;
683
684 /*
685 * NB: oa_buffer.head/tail include the gtt_offset which we don't want
686 * while indexing relative to oa_buf_base.
687 */
688 head -= gtt_offset;
689 tail -= gtt_offset;
690
691 /*
692 * An out of bounds or misaligned head or tail pointer implies a driver
693 * bug since we validate + align the tail pointers we read from the
694 * hardware and we are in full control of the head pointer which should
695 * only be incremented by multiples of the report size (notably also
696 * all a power of two).
697 */
Joonas Lahtinenfe841682018-11-16 15:55:09 +0200698 if (WARN_ONCE(head > OA_BUFFER_SIZE || head % report_size ||
699 tail > OA_BUFFER_SIZE || tail % report_size,
Robert Bragg19f81df2017-06-13 12:23:03 +0100700 "Inconsistent OA buffer pointers: head = %u, tail = %u\n",
701 head, tail))
702 return -EIO;
703
704
705 for (/* none */;
706 (taken = OA_TAKEN(tail, head));
707 head = (head + report_size) & mask) {
708 u8 *report = oa_buf_base + head;
709 u32 *report32 = (void *)report;
710 u32 ctx_id;
711 u32 reason;
712
713 /*
714 * All the report sizes factor neatly into the buffer
715 * size so we never expect to see a report split
716 * between the beginning and end of the buffer.
717 *
718 * Given the initial alignment check a misalignment
719 * here would imply a driver bug that would result
720 * in an overrun.
721 */
Joonas Lahtinenfe841682018-11-16 15:55:09 +0200722 if (WARN_ON((OA_BUFFER_SIZE - head) < report_size)) {
Robert Bragg19f81df2017-06-13 12:23:03 +0100723 DRM_ERROR("Spurious OA head ptr: non-integral report offset\n");
724 break;
725 }
726
727 /*
728 * The reason field includes flags identifying what
729 * triggered this specific report (mostly timer
730 * triggered or e.g. due to a context switch).
731 *
732 * This field is never expected to be zero so we can
733 * check that the report isn't invalid before copying
734 * it to userspace...
735 */
736 reason = ((report32[0] >> OAREPORT_REASON_SHIFT) &
737 OAREPORT_REASON_MASK);
738 if (reason == 0) {
739 if (__ratelimit(&dev_priv->perf.oa.spurious_report_rs))
740 DRM_NOTE("Skipping spurious, invalid OA report\n");
741 continue;
742 }
743
Lionel Landwerlin61d56762018-06-02 12:29:46 +0100744 ctx_id = report32[2] & dev_priv->perf.oa.specific_ctx_id_mask;
Robert Bragg19f81df2017-06-13 12:23:03 +0100745
746 /*
747 * Squash whatever is in the CTX_ID field if it's marked as
748 * invalid to be sure we avoid false-positive, single-context
749 * filtering below...
750 *
751 * Note: that we don't clear the valid_ctx_bit so userspace can
752 * understand that the ID has been squashed by the kernel.
753 */
754 if (!(report32[0] & dev_priv->perf.oa.gen8_valid_ctx_bit))
755 ctx_id = report32[2] = INVALID_CTX_ID;
756
757 /*
758 * NB: For Gen 8 the OA unit no longer supports clock gating
759 * off for a specific context and the kernel can't securely
760 * stop the counters from updating as system-wide / global
761 * values.
762 *
763 * Automatic reports now include a context ID so reports can be
764 * filtered on the cpu but it's not worth trying to
765 * automatically subtract/hide counter progress for other
766 * contexts while filtering since we can't stop userspace
767 * issuing MI_REPORT_PERF_COUNT commands which would still
768 * provide a side-band view of the real values.
769 *
770 * To allow userspace (such as Mesa/GL_INTEL_performance_query)
771 * to normalize counters for a single filtered context then it
772 * needs be forwarded bookend context-switch reports so that it
773 * can track switches in between MI_REPORT_PERF_COUNT commands
774 * and can itself subtract/ignore the progress of counters
775 * associated with other contexts. Note that the hardware
776 * automatically triggers reports when switching to a new
777 * context which are tagged with the ID of the newly active
778 * context. To avoid the complexity (and likely fragility) of
779 * reading ahead while parsing reports to try and minimize
780 * forwarding redundant context switch reports (i.e. between
781 * other, unrelated contexts) we simply elect to forward them
782 * all.
783 *
784 * We don't rely solely on the reason field to identify context
785 * switches since it's not-uncommon for periodic samples to
786 * identify a switch before any 'context switch' report.
787 */
788 if (!dev_priv->perf.oa.exclusive_stream->ctx ||
789 dev_priv->perf.oa.specific_ctx_id == ctx_id ||
790 (dev_priv->perf.oa.oa_buffer.last_ctx_id ==
791 dev_priv->perf.oa.specific_ctx_id) ||
792 reason & OAREPORT_REASON_CTX_SWITCH) {
793
794 /*
795 * While filtering for a single context we avoid
796 * leaking the IDs of other contexts.
797 */
798 if (dev_priv->perf.oa.exclusive_stream->ctx &&
799 dev_priv->perf.oa.specific_ctx_id != ctx_id) {
800 report32[2] = INVALID_CTX_ID;
801 }
802
803 ret = append_oa_sample(stream, buf, count, offset,
804 report);
805 if (ret)
806 break;
807
808 dev_priv->perf.oa.oa_buffer.last_ctx_id = ctx_id;
809 }
810
811 /*
812 * The above reason field sanity check is based on
813 * the assumption that the OA buffer is initially
814 * zeroed and we reset the field after copying so the
815 * check is still meaningful once old reports start
816 * being overwritten.
817 */
818 report32[0] = 0;
819 }
820
821 if (start_offset != *offset) {
822 spin_lock_irqsave(&dev_priv->perf.oa.oa_buffer.ptr_lock, flags);
823
824 /*
825 * We removed the gtt_offset for the copy loop above, indexing
826 * relative to oa_buf_base so put back here...
827 */
828 head += gtt_offset;
829
830 I915_WRITE(GEN8_OAHEADPTR, head & GEN8_OAHEADPTR_MASK);
831 dev_priv->perf.oa.oa_buffer.head = head;
832
833 spin_unlock_irqrestore(&dev_priv->perf.oa.oa_buffer.ptr_lock, flags);
834 }
835
836 return ret;
837}
838
839/**
840 * gen8_oa_read - copy status records then buffered OA reports
841 * @stream: An i915-perf stream opened for OA metrics
842 * @buf: destination buffer given by userspace
843 * @count: the number of bytes userspace wants to read
844 * @offset: (inout): the current position for writing into @buf
845 *
846 * Checks OA unit status registers and if necessary appends corresponding
847 * status records for userspace (such as for a buffer full condition) and then
848 * initiate appending any buffered OA reports.
849 *
850 * Updates @offset according to the number of bytes successfully copied into
851 * the userspace buffer.
852 *
853 * NB: some data may be successfully copied to the userspace buffer
854 * even if an error is returned, and this is reflected in the
855 * updated @offset.
856 *
857 * Returns: zero on success or a negative error code
858 */
859static int gen8_oa_read(struct i915_perf_stream *stream,
860 char __user *buf,
861 size_t count,
862 size_t *offset)
863{
864 struct drm_i915_private *dev_priv = stream->dev_priv;
865 u32 oastatus;
866 int ret;
867
868 if (WARN_ON(!dev_priv->perf.oa.oa_buffer.vaddr))
869 return -EIO;
870
871 oastatus = I915_READ(GEN8_OASTATUS);
872
873 /*
874 * We treat OABUFFER_OVERFLOW as a significant error:
875 *
876 * Although theoretically we could handle this more gracefully
877 * sometimes, some Gens don't correctly suppress certain
878 * automatically triggered reports in this condition and so we
879 * have to assume that old reports are now being trampled
880 * over.
Joonas Lahtinenfe841682018-11-16 15:55:09 +0200881 *
882 * Considering how we don't currently give userspace control
883 * over the OA buffer size and always configure a large 16MB
884 * buffer, then a buffer overflow does anyway likely indicate
885 * that something has gone quite badly wrong.
Robert Bragg19f81df2017-06-13 12:23:03 +0100886 */
887 if (oastatus & GEN8_OASTATUS_OABUFFER_OVERFLOW) {
888 ret = append_oa_status(stream, buf, count, offset,
889 DRM_I915_PERF_RECORD_OA_BUFFER_LOST);
890 if (ret)
891 return ret;
892
893 DRM_DEBUG("OA buffer overflow (exponent = %d): force restart\n",
894 dev_priv->perf.oa.period_exponent);
895
Lionel Landwerlin5728de22018-10-23 11:07:06 +0100896 dev_priv->perf.oa.ops.oa_disable(stream);
897 dev_priv->perf.oa.ops.oa_enable(stream);
Robert Bragg19f81df2017-06-13 12:23:03 +0100898
899 /*
900 * Note: .oa_enable() is expected to re-init the oabuffer and
901 * reset GEN8_OASTATUS for us
902 */
903 oastatus = I915_READ(GEN8_OASTATUS);
904 }
905
906 if (oastatus & GEN8_OASTATUS_REPORT_LOST) {
907 ret = append_oa_status(stream, buf, count, offset,
908 DRM_I915_PERF_RECORD_OA_REPORT_LOST);
909 if (ret)
910 return ret;
911 I915_WRITE(GEN8_OASTATUS,
912 oastatus & ~GEN8_OASTATUS_REPORT_LOST);
913 }
914
915 return gen8_append_oa_reports(stream, buf, count, offset);
916}
917
918/**
919 * Copies all buffered OA reports into userspace read() buffer.
920 * @stream: An i915-perf stream opened for OA metrics
921 * @buf: destination buffer given by userspace
922 * @count: the number of bytes userspace wants to read
923 * @offset: (inout): the current position for writing into @buf
924 *
925 * Notably any error condition resulting in a short read (-%ENOSPC or
926 * -%EFAULT) will be returned even though one or more records may
927 * have been successfully copied. In this case it's up to the caller
928 * to decide if the error should be squashed before returning to
929 * userspace.
930 *
931 * Note: reports are consumed from the head, and appended to the
932 * tail, so the tail chases the head?... If you think that's mad
933 * and back-to-front you're not alone, but this follows the
934 * Gen PRM naming convention.
935 *
936 * Returns: 0 on success, negative error code on failure.
937 */
Robert Braggd7965152016-11-07 19:49:52 +0000938static int gen7_append_oa_reports(struct i915_perf_stream *stream,
939 char __user *buf,
940 size_t count,
Robert Bragg3bb335c2017-05-11 16:43:27 +0100941 size_t *offset)
Robert Braggd7965152016-11-07 19:49:52 +0000942{
943 struct drm_i915_private *dev_priv = stream->dev_priv;
944 int report_size = dev_priv->perf.oa.oa_buffer.format_size;
945 u8 *oa_buf_base = dev_priv->perf.oa.oa_buffer.vaddr;
Robert Braggd7965152016-11-07 19:49:52 +0000946 u32 gtt_offset = i915_ggtt_offset(dev_priv->perf.oa.oa_buffer.vma);
Joonas Lahtinenfe841682018-11-16 15:55:09 +0200947 u32 mask = (OA_BUFFER_SIZE - 1);
Robert Bragg3bb335c2017-05-11 16:43:27 +0100948 size_t start_offset = *offset;
Robert Bragg0dd860c2017-05-11 16:43:28 +0100949 unsigned long flags;
950 unsigned int aged_tail_idx;
951 u32 head, tail;
Robert Braggd7965152016-11-07 19:49:52 +0000952 u32 taken;
953 int ret = 0;
954
955 if (WARN_ON(!stream->enabled))
956 return -EIO;
957
Robert Bragg0dd860c2017-05-11 16:43:28 +0100958 spin_lock_irqsave(&dev_priv->perf.oa.oa_buffer.ptr_lock, flags);
Robert Braggf2790202017-05-11 16:43:26 +0100959
Robert Bragg0dd860c2017-05-11 16:43:28 +0100960 head = dev_priv->perf.oa.oa_buffer.head;
961 aged_tail_idx = dev_priv->perf.oa.oa_buffer.aged_tail_idx;
962 tail = dev_priv->perf.oa.oa_buffer.tails[aged_tail_idx].offset;
963
964 spin_unlock_irqrestore(&dev_priv->perf.oa.oa_buffer.ptr_lock, flags);
965
966 /* An invalid tail pointer here means we're still waiting for the poll
967 * hrtimer callback to give us a pointer
Robert Braggf2790202017-05-11 16:43:26 +0100968 */
Robert Bragg0dd860c2017-05-11 16:43:28 +0100969 if (tail == INVALID_TAIL_PTR)
Robert Braggd7965152016-11-07 19:49:52 +0000970 return -EAGAIN;
971
Robert Bragg0dd860c2017-05-11 16:43:28 +0100972 /* NB: oa_buffer.head/tail include the gtt_offset which we don't want
973 * while indexing relative to oa_buf_base.
974 */
975 head -= gtt_offset;
976 tail -= gtt_offset;
977
978 /* An out of bounds or misaligned head or tail pointer implies a driver
979 * bug since we validate + align the tail pointers we read from the
980 * hardware and we are in full control of the head pointer which should
981 * only be incremented by multiples of the report size (notably also
982 * all a power of two).
983 */
Joonas Lahtinenfe841682018-11-16 15:55:09 +0200984 if (WARN_ONCE(head > OA_BUFFER_SIZE || head % report_size ||
985 tail > OA_BUFFER_SIZE || tail % report_size,
Robert Bragg0dd860c2017-05-11 16:43:28 +0100986 "Inconsistent OA buffer pointers: head = %u, tail = %u\n",
987 head, tail))
988 return -EIO;
989
Robert Braggd7965152016-11-07 19:49:52 +0000990
991 for (/* none */;
992 (taken = OA_TAKEN(tail, head));
993 head = (head + report_size) & mask) {
994 u8 *report = oa_buf_base + head;
995 u32 *report32 = (void *)report;
996
997 /* All the report sizes factor neatly into the buffer
998 * size so we never expect to see a report split
999 * between the beginning and end of the buffer.
1000 *
1001 * Given the initial alignment check a misalignment
1002 * here would imply a driver bug that would result
1003 * in an overrun.
1004 */
Joonas Lahtinenfe841682018-11-16 15:55:09 +02001005 if (WARN_ON((OA_BUFFER_SIZE - head) < report_size)) {
Robert Braggd7965152016-11-07 19:49:52 +00001006 DRM_ERROR("Spurious OA head ptr: non-integral report offset\n");
1007 break;
1008 }
1009
1010 /* The report-ID field for periodic samples includes
1011 * some undocumented flags related to what triggered
1012 * the report and is never expected to be zero so we
1013 * can check that the report isn't invalid before
1014 * copying it to userspace...
1015 */
1016 if (report32[0] == 0) {
Robert Bragg712122e2017-05-11 16:43:31 +01001017 if (__ratelimit(&dev_priv->perf.oa.spurious_report_rs))
1018 DRM_NOTE("Skipping spurious, invalid OA report\n");
Robert Braggd7965152016-11-07 19:49:52 +00001019 continue;
1020 }
1021
1022 ret = append_oa_sample(stream, buf, count, offset, report);
1023 if (ret)
1024 break;
1025
1026 /* The above report-id field sanity check is based on
1027 * the assumption that the OA buffer is initially
1028 * zeroed and we reset the field after copying so the
1029 * check is still meaningful once old reports start
1030 * being overwritten.
1031 */
1032 report32[0] = 0;
1033 }
1034
Robert Bragg3bb335c2017-05-11 16:43:27 +01001035 if (start_offset != *offset) {
Robert Bragg0dd860c2017-05-11 16:43:28 +01001036 spin_lock_irqsave(&dev_priv->perf.oa.oa_buffer.ptr_lock, flags);
1037
Robert Bragg3bb335c2017-05-11 16:43:27 +01001038 /* We removed the gtt_offset for the copy loop above, indexing
1039 * relative to oa_buf_base so put back here...
1040 */
1041 head += gtt_offset;
1042
1043 I915_WRITE(GEN7_OASTATUS2,
1044 ((head & GEN7_OASTATUS2_HEAD_MASK) |
Lionel Landwerlinb82ed432018-03-26 10:08:26 +01001045 GEN7_OASTATUS2_MEM_SELECT_GGTT));
Robert Bragg3bb335c2017-05-11 16:43:27 +01001046 dev_priv->perf.oa.oa_buffer.head = head;
Robert Bragg0dd860c2017-05-11 16:43:28 +01001047
1048 spin_unlock_irqrestore(&dev_priv->perf.oa.oa_buffer.ptr_lock, flags);
Robert Bragg3bb335c2017-05-11 16:43:27 +01001049 }
Robert Braggd7965152016-11-07 19:49:52 +00001050
1051 return ret;
1052}
1053
Robert Bragg16d98b32016-12-07 21:40:33 +00001054/**
1055 * gen7_oa_read - copy status records then buffered OA reports
1056 * @stream: An i915-perf stream opened for OA metrics
1057 * @buf: destination buffer given by userspace
1058 * @count: the number of bytes userspace wants to read
1059 * @offset: (inout): the current position for writing into @buf
1060 *
1061 * Checks Gen 7 specific OA unit status registers and if necessary appends
1062 * corresponding status records for userspace (such as for a buffer full
1063 * condition) and then initiate appending any buffered OA reports.
1064 *
1065 * Updates @offset according to the number of bytes successfully copied into
1066 * the userspace buffer.
1067 *
1068 * Returns: zero on success or a negative error code
1069 */
Robert Braggd7965152016-11-07 19:49:52 +00001070static int gen7_oa_read(struct i915_perf_stream *stream,
1071 char __user *buf,
1072 size_t count,
1073 size_t *offset)
1074{
1075 struct drm_i915_private *dev_priv = stream->dev_priv;
Robert Braggd7965152016-11-07 19:49:52 +00001076 u32 oastatus1;
Robert Braggd7965152016-11-07 19:49:52 +00001077 int ret;
1078
1079 if (WARN_ON(!dev_priv->perf.oa.oa_buffer.vaddr))
1080 return -EIO;
1081
Robert Braggd7965152016-11-07 19:49:52 +00001082 oastatus1 = I915_READ(GEN7_OASTATUS1);
1083
Robert Braggd7965152016-11-07 19:49:52 +00001084 /* XXX: On Haswell we don't have a safe way to clear oastatus1
1085 * bits while the OA unit is enabled (while the tail pointer
1086 * may be updated asynchronously) so we ignore status bits
1087 * that have already been reported to userspace.
1088 */
1089 oastatus1 &= ~dev_priv->perf.oa.gen7_latched_oastatus1;
1090
1091 /* We treat OABUFFER_OVERFLOW as a significant error:
1092 *
1093 * - The status can be interpreted to mean that the buffer is
1094 * currently full (with a higher precedence than OA_TAKEN()
1095 * which will start to report a near-empty buffer after an
1096 * overflow) but it's awkward that we can't clear the status
1097 * on Haswell, so without a reset we won't be able to catch
1098 * the state again.
1099 *
1100 * - Since it also implies the HW has started overwriting old
1101 * reports it may also affect our sanity checks for invalid
1102 * reports when copying to userspace that assume new reports
1103 * are being written to cleared memory.
1104 *
1105 * - In the future we may want to introduce a flight recorder
1106 * mode where the driver will automatically maintain a safe
1107 * guard band between head/tail, avoiding this overflow
1108 * condition, but we avoid the added driver complexity for
1109 * now.
1110 */
1111 if (unlikely(oastatus1 & GEN7_OASTATUS1_OABUFFER_OVERFLOW)) {
1112 ret = append_oa_status(stream, buf, count, offset,
1113 DRM_I915_PERF_RECORD_OA_BUFFER_LOST);
1114 if (ret)
1115 return ret;
1116
Robert Bragg19f81df2017-06-13 12:23:03 +01001117 DRM_DEBUG("OA buffer overflow (exponent = %d): force restart\n",
1118 dev_priv->perf.oa.period_exponent);
Robert Braggd7965152016-11-07 19:49:52 +00001119
Lionel Landwerlin5728de22018-10-23 11:07:06 +01001120 dev_priv->perf.oa.ops.oa_disable(stream);
1121 dev_priv->perf.oa.ops.oa_enable(stream);
Robert Braggd7965152016-11-07 19:49:52 +00001122
Robert Braggd7965152016-11-07 19:49:52 +00001123 oastatus1 = I915_READ(GEN7_OASTATUS1);
Robert Braggd7965152016-11-07 19:49:52 +00001124 }
1125
1126 if (unlikely(oastatus1 & GEN7_OASTATUS1_REPORT_LOST)) {
1127 ret = append_oa_status(stream, buf, count, offset,
1128 DRM_I915_PERF_RECORD_OA_REPORT_LOST);
1129 if (ret)
1130 return ret;
1131 dev_priv->perf.oa.gen7_latched_oastatus1 |=
1132 GEN7_OASTATUS1_REPORT_LOST;
1133 }
1134
Robert Bragg3bb335c2017-05-11 16:43:27 +01001135 return gen7_append_oa_reports(stream, buf, count, offset);
Robert Braggd7965152016-11-07 19:49:52 +00001136}
1137
Robert Bragg16d98b32016-12-07 21:40:33 +00001138/**
1139 * i915_oa_wait_unlocked - handles blocking IO until OA data available
1140 * @stream: An i915-perf stream opened for OA metrics
1141 *
1142 * Called when userspace tries to read() from a blocking stream FD opened
1143 * for OA metrics. It waits until the hrtimer callback finds a non-empty
1144 * OA buffer and wakes us.
1145 *
1146 * Note: it's acceptable to have this return with some false positives
1147 * since any subsequent read handling will return -EAGAIN if there isn't
1148 * really data ready for userspace yet.
1149 *
1150 * Returns: zero on success or a negative error code
1151 */
Robert Braggd7965152016-11-07 19:49:52 +00001152static int i915_oa_wait_unlocked(struct i915_perf_stream *stream)
1153{
1154 struct drm_i915_private *dev_priv = stream->dev_priv;
1155
1156 /* We would wait indefinitely if periodic sampling is not enabled */
1157 if (!dev_priv->perf.oa.periodic)
1158 return -EIO;
1159
Robert Braggd7965152016-11-07 19:49:52 +00001160 return wait_event_interruptible(dev_priv->perf.oa.poll_wq,
Robert Bragg19f81df2017-06-13 12:23:03 +01001161 oa_buffer_check_unlocked(dev_priv));
Robert Braggd7965152016-11-07 19:49:52 +00001162}
1163
Robert Bragg16d98b32016-12-07 21:40:33 +00001164/**
1165 * i915_oa_poll_wait - call poll_wait() for an OA stream poll()
1166 * @stream: An i915-perf stream opened for OA metrics
1167 * @file: An i915 perf stream file
1168 * @wait: poll() state table
1169 *
1170 * For handling userspace polling on an i915 perf stream opened for OA metrics,
1171 * this starts a poll_wait with the wait queue that our hrtimer callback wakes
1172 * when it sees data ready to read in the circular OA buffer.
1173 */
Robert Braggd7965152016-11-07 19:49:52 +00001174static void i915_oa_poll_wait(struct i915_perf_stream *stream,
1175 struct file *file,
1176 poll_table *wait)
1177{
1178 struct drm_i915_private *dev_priv = stream->dev_priv;
1179
1180 poll_wait(file, &dev_priv->perf.oa.poll_wq, wait);
1181}
1182
Robert Bragg16d98b32016-12-07 21:40:33 +00001183/**
1184 * i915_oa_read - just calls through to &i915_oa_ops->read
1185 * @stream: An i915-perf stream opened for OA metrics
1186 * @buf: destination buffer given by userspace
1187 * @count: the number of bytes userspace wants to read
1188 * @offset: (inout): the current position for writing into @buf
1189 *
1190 * Updates @offset according to the number of bytes successfully copied into
1191 * the userspace buffer.
1192 *
1193 * Returns: zero on success or a negative error code
1194 */
Robert Braggd7965152016-11-07 19:49:52 +00001195static int i915_oa_read(struct i915_perf_stream *stream,
1196 char __user *buf,
1197 size_t count,
1198 size_t *offset)
1199{
1200 struct drm_i915_private *dev_priv = stream->dev_priv;
1201
1202 return dev_priv->perf.oa.ops.read(stream, buf, count, offset);
1203}
1204
Lionel Landwerlin61d56762018-06-02 12:29:46 +01001205static struct intel_context *oa_pin_context(struct drm_i915_private *i915,
1206 struct i915_gem_context *ctx)
1207{
Chris Wilson5e2a0412019-04-26 17:33:34 +01001208 struct i915_gem_engines_iter it;
Lionel Landwerlin61d56762018-06-02 12:29:46 +01001209 struct intel_context *ce;
Chris Wilsonfa9f6682019-04-26 17:33:29 +01001210 int err;
Lionel Landwerlin61d56762018-06-02 12:29:46 +01001211
Chris Wilsonfa9f6682019-04-26 17:33:29 +01001212 err = i915_mutex_lock_interruptible(&i915->drm);
Chris Wilsonfa9f6682019-04-26 17:33:29 +01001213 if (err)
1214 return ERR_PTR(err);
Lionel Landwerlin61d56762018-06-02 12:29:46 +01001215
Chris Wilson5e2a0412019-04-26 17:33:34 +01001216 for_each_gem_engine(ce, i915_gem_context_lock_engines(ctx), it) {
1217 if (ce->engine->class != RENDER_CLASS)
1218 continue;
Lionel Landwerlin61d56762018-06-02 12:29:46 +01001219
Chris Wilson5e2a0412019-04-26 17:33:34 +01001220 /*
1221 * As the ID is the gtt offset of the context's vma we
1222 * pin the vma to ensure the ID remains fixed.
1223 */
1224 err = intel_context_pin(ce);
1225 if (err == 0) {
1226 i915->perf.oa.pinned_ctx = ce;
1227 break;
1228 }
1229 }
1230 i915_gem_context_unlock_engines(ctx);
1231
1232 mutex_unlock(&i915->drm.struct_mutex);
1233 if (err)
1234 return ERR_PTR(err);
1235
1236 return i915->perf.oa.pinned_ctx;
Lionel Landwerlin61d56762018-06-02 12:29:46 +01001237}
1238
Robert Bragg16d98b32016-12-07 21:40:33 +00001239/**
1240 * oa_get_render_ctx_id - determine and hold ctx hw id
1241 * @stream: An i915-perf stream opened for OA metrics
1242 *
1243 * Determine the render context hw id, and ensure it remains fixed for the
Robert Braggd7965152016-11-07 19:49:52 +00001244 * lifetime of the stream. This ensures that we don't have to worry about
1245 * updating the context ID in OACONTROL on the fly.
Robert Bragg16d98b32016-12-07 21:40:33 +00001246 *
1247 * Returns: zero on success or a negative error code
Robert Braggd7965152016-11-07 19:49:52 +00001248 */
1249static int oa_get_render_ctx_id(struct i915_perf_stream *stream)
1250{
Lionel Landwerlin61d56762018-06-02 12:29:46 +01001251 struct drm_i915_private *i915 = stream->dev_priv;
1252 struct intel_context *ce;
Robert Braggd7965152016-11-07 19:49:52 +00001253
Lionel Landwerlin61d56762018-06-02 12:29:46 +01001254 ce = oa_pin_context(i915, stream->ctx);
1255 if (IS_ERR(ce))
1256 return PTR_ERR(ce);
Robert Braggd7965152016-11-07 19:49:52 +00001257
Lionel Landwerlin61d56762018-06-02 12:29:46 +01001258 switch (INTEL_GEN(i915)) {
1259 case 7: {
Robert Bragg19f81df2017-06-13 12:23:03 +01001260 /*
Lionel Landwerlin61d56762018-06-02 12:29:46 +01001261 * On Haswell we don't do any post processing of the reports
1262 * and don't need to use the mask.
Robert Bragg19f81df2017-06-13 12:23:03 +01001263 */
Lionel Landwerlin61d56762018-06-02 12:29:46 +01001264 i915->perf.oa.specific_ctx_id = i915_ggtt_offset(ce->state);
1265 i915->perf.oa.specific_ctx_id_mask = 0;
1266 break;
Robert Bragg19f81df2017-06-13 12:23:03 +01001267 }
Robert Braggd7965152016-11-07 19:49:52 +00001268
Lionel Landwerlin61d56762018-06-02 12:29:46 +01001269 case 8:
1270 case 9:
1271 case 10:
1272 if (USES_GUC_SUBMISSION(i915)) {
1273 /*
1274 * When using GuC, the context descriptor we write in
1275 * i915 is read by GuC and rewritten before it's
1276 * actually written into the hardware. The LRCA is
1277 * what is put into the context id field of the
1278 * context descriptor by GuC. Because it's aligned to
1279 * a page, the lower 12bits are always at 0 and
1280 * dropped by GuC. They won't be part of the context
1281 * ID in the OA reports, so squash those lower bits.
1282 */
1283 i915->perf.oa.specific_ctx_id =
1284 lower_32_bits(ce->lrc_desc) >> 12;
1285
1286 /*
1287 * GuC uses the top bit to signal proxy submission, so
1288 * ignore that bit.
1289 */
1290 i915->perf.oa.specific_ctx_id_mask =
1291 (1U << (GEN8_CTX_ID_WIDTH - 1)) - 1;
1292 } else {
Lionel Landwerlin61d56762018-06-02 12:29:46 +01001293 i915->perf.oa.specific_ctx_id_mask =
1294 (1U << GEN8_CTX_ID_WIDTH) - 1;
Michel Thierry9904b1562018-06-04 16:32:49 -07001295 i915->perf.oa.specific_ctx_id =
1296 upper_32_bits(ce->lrc_desc);
1297 i915->perf.oa.specific_ctx_id &=
1298 i915->perf.oa.specific_ctx_id_mask;
Lionel Landwerlin61d56762018-06-02 12:29:46 +01001299 }
1300 break;
1301
1302 case 11: {
Lionel Landwerlin61d56762018-06-02 12:29:46 +01001303 i915->perf.oa.specific_ctx_id_mask =
1304 ((1U << GEN11_SW_CTX_ID_WIDTH) - 1) << (GEN11_SW_CTX_ID_SHIFT - 32) |
1305 ((1U << GEN11_ENGINE_INSTANCE_WIDTH) - 1) << (GEN11_ENGINE_INSTANCE_SHIFT - 32) |
1306 ((1 << GEN11_ENGINE_CLASS_WIDTH) - 1) << (GEN11_ENGINE_CLASS_SHIFT - 32);
Michel Thierry2b9a8202018-06-04 16:32:50 -07001307 i915->perf.oa.specific_ctx_id = upper_32_bits(ce->lrc_desc);
1308 i915->perf.oa.specific_ctx_id &=
1309 i915->perf.oa.specific_ctx_id_mask;
Lionel Landwerlin61d56762018-06-02 12:29:46 +01001310 break;
1311 }
1312
1313 default:
1314 MISSING_CASE(INTEL_GEN(i915));
1315 }
1316
1317 DRM_DEBUG_DRIVER("filtering on ctx_id=0x%x ctx_id_mask=0x%x\n",
1318 i915->perf.oa.specific_ctx_id,
1319 i915->perf.oa.specific_ctx_id_mask);
1320
Chris Wilson266a2402017-05-04 10:33:08 +01001321 return 0;
Robert Braggd7965152016-11-07 19:49:52 +00001322}
1323
Robert Bragg16d98b32016-12-07 21:40:33 +00001324/**
1325 * oa_put_render_ctx_id - counterpart to oa_get_render_ctx_id releases hold
1326 * @stream: An i915-perf stream opened for OA metrics
1327 *
1328 * In case anything needed doing to ensure the context HW ID would remain valid
1329 * for the lifetime of the stream, then that can be undone here.
1330 */
Robert Braggd7965152016-11-07 19:49:52 +00001331static void oa_put_render_ctx_id(struct i915_perf_stream *stream)
1332{
1333 struct drm_i915_private *dev_priv = stream->dev_priv;
Chris Wilson1fc44d92018-05-17 22:26:32 +01001334 struct intel_context *ce;
Robert Braggd7965152016-11-07 19:49:52 +00001335
Chris Wilson1fc44d92018-05-17 22:26:32 +01001336 dev_priv->perf.oa.specific_ctx_id = INVALID_CTX_ID;
Lionel Landwerlin61d56762018-06-02 12:29:46 +01001337 dev_priv->perf.oa.specific_ctx_id_mask = 0;
Robert Braggd7965152016-11-07 19:49:52 +00001338
Chris Wilson1fc44d92018-05-17 22:26:32 +01001339 ce = fetch_and_zero(&dev_priv->perf.oa.pinned_ctx);
1340 if (ce) {
Robert Bragg19f81df2017-06-13 12:23:03 +01001341 mutex_lock(&dev_priv->drm.struct_mutex);
Chris Wilson1fc44d92018-05-17 22:26:32 +01001342 intel_context_unpin(ce);
Robert Bragg19f81df2017-06-13 12:23:03 +01001343 mutex_unlock(&dev_priv->drm.struct_mutex);
1344 }
Robert Braggd7965152016-11-07 19:49:52 +00001345}
1346
1347static void
1348free_oa_buffer(struct drm_i915_private *i915)
1349{
1350 mutex_lock(&i915->drm.struct_mutex);
1351
Chris Wilson6a2f59e2018-07-21 13:50:37 +01001352 i915_vma_unpin_and_release(&i915->perf.oa.oa_buffer.vma,
1353 I915_VMA_RELEASE_MAP);
Robert Braggd7965152016-11-07 19:49:52 +00001354
1355 mutex_unlock(&i915->drm.struct_mutex);
Chris Wilson6a2f59e2018-07-21 13:50:37 +01001356
1357 i915->perf.oa.oa_buffer.vaddr = NULL;
Robert Braggd7965152016-11-07 19:49:52 +00001358}
1359
1360static void i915_oa_stream_destroy(struct i915_perf_stream *stream)
1361{
1362 struct drm_i915_private *dev_priv = stream->dev_priv;
1363
1364 BUG_ON(stream != dev_priv->perf.oa.exclusive_stream);
1365
Robert Bragg19f81df2017-06-13 12:23:03 +01001366 /*
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01001367 * Unset exclusive_stream first, it will be checked while disabling
1368 * the metric set on gen8+.
Robert Bragg19f81df2017-06-13 12:23:03 +01001369 */
Lionel Landwerlin701f8232017-08-03 17:58:08 +01001370 mutex_lock(&dev_priv->drm.struct_mutex);
Robert Bragg19f81df2017-06-13 12:23:03 +01001371 dev_priv->perf.oa.exclusive_stream = NULL;
Robert Braggd7965152016-11-07 19:49:52 +00001372 dev_priv->perf.oa.ops.disable_metric_set(dev_priv);
Lionel Landwerlin41d3fdc2018-03-01 11:06:13 +00001373 mutex_unlock(&dev_priv->drm.struct_mutex);
Robert Braggd7965152016-11-07 19:49:52 +00001374
1375 free_oa_buffer(dev_priv);
1376
Daniele Ceraolo Spurio3ceea6a2019-03-19 11:35:36 -07001377 intel_uncore_forcewake_put(&dev_priv->uncore, FORCEWAKE_ALL);
Daniele Ceraolo Spuriod858d562019-06-13 16:21:54 -07001378 intel_runtime_pm_put(&dev_priv->runtime_pm, stream->wakeref);
Robert Braggd7965152016-11-07 19:49:52 +00001379
1380 if (stream->ctx)
1381 oa_put_render_ctx_id(stream);
1382
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01001383 put_oa_config(dev_priv, stream->oa_config);
1384
Robert Bragg712122e2017-05-11 16:43:31 +01001385 if (dev_priv->perf.oa.spurious_report_rs.missed) {
1386 DRM_NOTE("%d spurious OA report notices suppressed due to ratelimiting\n",
1387 dev_priv->perf.oa.spurious_report_rs.missed);
1388 }
Robert Braggd7965152016-11-07 19:49:52 +00001389}
1390
1391static void gen7_init_oa_buffer(struct drm_i915_private *dev_priv)
1392{
1393 u32 gtt_offset = i915_ggtt_offset(dev_priv->perf.oa.oa_buffer.vma);
Robert Bragg0dd860c2017-05-11 16:43:28 +01001394 unsigned long flags;
1395
1396 spin_lock_irqsave(&dev_priv->perf.oa.oa_buffer.ptr_lock, flags);
Robert Braggd7965152016-11-07 19:49:52 +00001397
1398 /* Pre-DevBDW: OABUFFER must be set with counters off,
1399 * before OASTATUS1, but after OASTATUS2
1400 */
Lionel Landwerlinb82ed432018-03-26 10:08:26 +01001401 I915_WRITE(GEN7_OASTATUS2,
1402 gtt_offset | GEN7_OASTATUS2_MEM_SELECT_GGTT); /* head */
Robert Braggf2790202017-05-11 16:43:26 +01001403 dev_priv->perf.oa.oa_buffer.head = gtt_offset;
1404
Robert Braggd7965152016-11-07 19:49:52 +00001405 I915_WRITE(GEN7_OABUFFER, gtt_offset);
Robert Braggf2790202017-05-11 16:43:26 +01001406
Joonas Lahtinenfe841682018-11-16 15:55:09 +02001407 I915_WRITE(GEN7_OASTATUS1, gtt_offset | OABUFFER_SIZE_16M); /* tail */
Robert Braggd7965152016-11-07 19:49:52 +00001408
Robert Bragg0dd860c2017-05-11 16:43:28 +01001409 /* Mark that we need updated tail pointers to read from... */
1410 dev_priv->perf.oa.oa_buffer.tails[0].offset = INVALID_TAIL_PTR;
1411 dev_priv->perf.oa.oa_buffer.tails[1].offset = INVALID_TAIL_PTR;
1412
1413 spin_unlock_irqrestore(&dev_priv->perf.oa.oa_buffer.ptr_lock, flags);
1414
Robert Braggd7965152016-11-07 19:49:52 +00001415 /* On Haswell we have to track which OASTATUS1 flags we've
1416 * already seen since they can't be cleared while periodic
1417 * sampling is enabled.
1418 */
1419 dev_priv->perf.oa.gen7_latched_oastatus1 = 0;
1420
1421 /* NB: although the OA buffer will initially be allocated
1422 * zeroed via shmfs (and so this memset is redundant when
1423 * first allocating), we may re-init the OA buffer, either
1424 * when re-enabling a stream or in error/reset paths.
1425 *
1426 * The reason we clear the buffer for each re-init is for the
1427 * sanity check in gen7_append_oa_reports() that looks at the
1428 * report-id field to make sure it's non-zero which relies on
1429 * the assumption that new reports are being written to zeroed
1430 * memory...
1431 */
Joonas Lahtinenfe841682018-11-16 15:55:09 +02001432 memset(dev_priv->perf.oa.oa_buffer.vaddr, 0, OA_BUFFER_SIZE);
Robert Braggd7965152016-11-07 19:49:52 +00001433
1434 /* Maybe make ->pollin per-stream state if we support multiple
1435 * concurrent streams in the future.
1436 */
1437 dev_priv->perf.oa.pollin = false;
1438}
1439
Robert Bragg19f81df2017-06-13 12:23:03 +01001440static void gen8_init_oa_buffer(struct drm_i915_private *dev_priv)
1441{
1442 u32 gtt_offset = i915_ggtt_offset(dev_priv->perf.oa.oa_buffer.vma);
1443 unsigned long flags;
1444
1445 spin_lock_irqsave(&dev_priv->perf.oa.oa_buffer.ptr_lock, flags);
1446
1447 I915_WRITE(GEN8_OASTATUS, 0);
1448 I915_WRITE(GEN8_OAHEADPTR, gtt_offset);
1449 dev_priv->perf.oa.oa_buffer.head = gtt_offset;
1450
1451 I915_WRITE(GEN8_OABUFFER_UDW, 0);
1452
1453 /*
1454 * PRM says:
1455 *
1456 * "This MMIO must be set before the OATAILPTR
1457 * register and after the OAHEADPTR register. This is
1458 * to enable proper functionality of the overflow
1459 * bit."
1460 */
1461 I915_WRITE(GEN8_OABUFFER, gtt_offset |
Joonas Lahtinenfe841682018-11-16 15:55:09 +02001462 OABUFFER_SIZE_16M | GEN8_OABUFFER_MEM_SELECT_GGTT);
Robert Bragg19f81df2017-06-13 12:23:03 +01001463 I915_WRITE(GEN8_OATAILPTR, gtt_offset & GEN8_OATAILPTR_MASK);
1464
1465 /* Mark that we need updated tail pointers to read from... */
1466 dev_priv->perf.oa.oa_buffer.tails[0].offset = INVALID_TAIL_PTR;
1467 dev_priv->perf.oa.oa_buffer.tails[1].offset = INVALID_TAIL_PTR;
1468
1469 /*
1470 * Reset state used to recognise context switches, affecting which
1471 * reports we will forward to userspace while filtering for a single
1472 * context.
1473 */
1474 dev_priv->perf.oa.oa_buffer.last_ctx_id = INVALID_CTX_ID;
1475
1476 spin_unlock_irqrestore(&dev_priv->perf.oa.oa_buffer.ptr_lock, flags);
1477
1478 /*
1479 * NB: although the OA buffer will initially be allocated
1480 * zeroed via shmfs (and so this memset is redundant when
1481 * first allocating), we may re-init the OA buffer, either
1482 * when re-enabling a stream or in error/reset paths.
1483 *
1484 * The reason we clear the buffer for each re-init is for the
1485 * sanity check in gen8_append_oa_reports() that looks at the
1486 * reason field to make sure it's non-zero which relies on
1487 * the assumption that new reports are being written to zeroed
1488 * memory...
1489 */
Joonas Lahtinenfe841682018-11-16 15:55:09 +02001490 memset(dev_priv->perf.oa.oa_buffer.vaddr, 0, OA_BUFFER_SIZE);
Robert Bragg19f81df2017-06-13 12:23:03 +01001491
1492 /*
1493 * Maybe make ->pollin per-stream state if we support multiple
1494 * concurrent streams in the future.
1495 */
1496 dev_priv->perf.oa.pollin = false;
1497}
1498
Joonas Lahtinenfe841682018-11-16 15:55:09 +02001499static int alloc_oa_buffer(struct drm_i915_private *dev_priv)
Robert Braggd7965152016-11-07 19:49:52 +00001500{
1501 struct drm_i915_gem_object *bo;
1502 struct i915_vma *vma;
1503 int ret;
1504
1505 if (WARN_ON(dev_priv->perf.oa.oa_buffer.vma))
1506 return -ENODEV;
1507
1508 ret = i915_mutex_lock_interruptible(&dev_priv->drm);
1509 if (ret)
1510 return ret;
1511
Joonas Lahtinenfe841682018-11-16 15:55:09 +02001512 BUILD_BUG_ON_NOT_POWER_OF_2(OA_BUFFER_SIZE);
1513 BUILD_BUG_ON(OA_BUFFER_SIZE < SZ_128K || OA_BUFFER_SIZE > SZ_16M);
1514
Chris Wilson84753552019-05-28 10:29:45 +01001515 bo = i915_gem_object_create_shmem(dev_priv, OA_BUFFER_SIZE);
Robert Braggd7965152016-11-07 19:49:52 +00001516 if (IS_ERR(bo)) {
1517 DRM_ERROR("Failed to allocate OA buffer\n");
1518 ret = PTR_ERR(bo);
1519 goto unlock;
1520 }
1521
Chris Wilsona679f582019-03-21 16:19:07 +00001522 i915_gem_object_set_cache_coherency(bo, I915_CACHE_LLC);
Robert Braggd7965152016-11-07 19:49:52 +00001523
1524 /* PreHSW required 512K alignment, HSW requires 16M */
1525 vma = i915_gem_object_ggtt_pin(bo, NULL, 0, SZ_16M, 0);
1526 if (IS_ERR(vma)) {
1527 ret = PTR_ERR(vma);
1528 goto err_unref;
1529 }
1530 dev_priv->perf.oa.oa_buffer.vma = vma;
1531
1532 dev_priv->perf.oa.oa_buffer.vaddr =
1533 i915_gem_object_pin_map(bo, I915_MAP_WB);
1534 if (IS_ERR(dev_priv->perf.oa.oa_buffer.vaddr)) {
1535 ret = PTR_ERR(dev_priv->perf.oa.oa_buffer.vaddr);
1536 goto err_unpin;
1537 }
1538
Joonas Lahtinenfe841682018-11-16 15:55:09 +02001539 DRM_DEBUG_DRIVER("OA Buffer initialized, gtt offset = 0x%x, vaddr = %p\n",
Robert Braggd7965152016-11-07 19:49:52 +00001540 i915_ggtt_offset(dev_priv->perf.oa.oa_buffer.vma),
Joonas Lahtinenfe841682018-11-16 15:55:09 +02001541 dev_priv->perf.oa.oa_buffer.vaddr);
Robert Braggd7965152016-11-07 19:49:52 +00001542
1543 goto unlock;
1544
1545err_unpin:
1546 __i915_vma_unpin(vma);
1547
1548err_unref:
1549 i915_gem_object_put(bo);
1550
1551 dev_priv->perf.oa.oa_buffer.vaddr = NULL;
1552 dev_priv->perf.oa.oa_buffer.vma = NULL;
1553
1554unlock:
1555 mutex_unlock(&dev_priv->drm.struct_mutex);
1556 return ret;
1557}
1558
1559static void config_oa_regs(struct drm_i915_private *dev_priv,
1560 const struct i915_oa_reg *regs,
Lionel Landwerlin701f8232017-08-03 17:58:08 +01001561 u32 n_regs)
Robert Braggd7965152016-11-07 19:49:52 +00001562{
Lionel Landwerlin701f8232017-08-03 17:58:08 +01001563 u32 i;
Robert Braggd7965152016-11-07 19:49:52 +00001564
1565 for (i = 0; i < n_regs; i++) {
1566 const struct i915_oa_reg *reg = regs + i;
1567
1568 I915_WRITE(reg->addr, reg->value);
1569 }
1570}
1571
Lionel Landwerlin14bfcd32019-07-10 11:55:24 +01001572static void delay_after_mux(void)
Robert Braggd7965152016-11-07 19:49:52 +00001573{
Lionel Landwerlin14bfcd32019-07-10 11:55:24 +01001574 /*
1575 * It apparently takes a fairly long time for a new MUX
Robert Braggd7965152016-11-07 19:49:52 +00001576 * configuration to be be applied after these register writes.
1577 * This delay duration was derived empirically based on the
1578 * render_basic config but hopefully it covers the maximum
1579 * configuration latency.
1580 *
1581 * As a fallback, the checks in _append_oa_reports() to skip
1582 * invalid OA reports do also seem to work to discard reports
1583 * generated before this config has completed - albeit not
1584 * silently.
1585 *
1586 * Unfortunately this is essentially a magic number, since we
1587 * don't currently know of a reliable mechanism for predicting
1588 * how long the MUX config will take to apply and besides
1589 * seeing invalid reports we don't know of a reliable way to
1590 * explicitly check that the MUX config has landed.
1591 *
1592 * It's even possible we've miss characterized the underlying
1593 * problem - it just seems like the simplest explanation why
1594 * a delay at this location would mitigate any invalid reports.
1595 */
1596 usleep_range(15000, 20000);
Lionel Landwerlin14bfcd32019-07-10 11:55:24 +01001597}
1598
1599static int hsw_enable_metric_set(struct i915_perf_stream *stream)
1600{
1601 struct drm_i915_private *dev_priv = stream->dev_priv;
1602 const struct i915_oa_config *oa_config = stream->oa_config;
1603
1604 /*
1605 * PRM:
1606 *
1607 * OA unit is using “crclk” for its functionality. When trunk
1608 * level clock gating takes place, OA clock would be gated,
1609 * unable to count the events from non-render clock domain.
1610 * Render clock gating must be disabled when OA is enabled to
1611 * count the events from non-render domain. Unit level clock
1612 * gating for RCS should also be disabled.
1613 */
1614 I915_WRITE(GEN7_MISCCPCTL, (I915_READ(GEN7_MISCCPCTL) &
1615 ~GEN7_DOP_CLOCK_GATE_ENABLE));
1616 I915_WRITE(GEN6_UCGCTL1, (I915_READ(GEN6_UCGCTL1) |
1617 GEN6_CSUNIT_CLOCK_GATE_DISABLE));
1618
1619 config_oa_regs(dev_priv, oa_config->mux_regs, oa_config->mux_regs_len);
1620 delay_after_mux();
Robert Braggd7965152016-11-07 19:49:52 +00001621
Lionel Landwerlin701f8232017-08-03 17:58:08 +01001622 config_oa_regs(dev_priv, oa_config->b_counter_regs,
1623 oa_config->b_counter_regs_len);
Robert Braggd7965152016-11-07 19:49:52 +00001624
1625 return 0;
1626}
1627
1628static void hsw_disable_metric_set(struct drm_i915_private *dev_priv)
1629{
1630 I915_WRITE(GEN6_UCGCTL1, (I915_READ(GEN6_UCGCTL1) &
1631 ~GEN6_CSUNIT_CLOCK_GATE_DISABLE));
1632 I915_WRITE(GEN7_MISCCPCTL, (I915_READ(GEN7_MISCCPCTL) |
1633 GEN7_DOP_CLOCK_GATE_ENABLE));
1634
1635 I915_WRITE(GDT_CHICKEN_BITS, (I915_READ(GDT_CHICKEN_BITS) &
1636 ~GT_NOA_ENABLE));
1637}
1638
Chris Wilsona9877da2019-07-16 22:34:43 +01001639static u32 oa_config_flex_reg(const struct i915_oa_config *oa_config,
1640 i915_reg_t reg)
1641{
1642 u32 mmio = i915_mmio_reg_offset(reg);
1643 int i;
1644
1645 /*
1646 * This arbitrary default will select the 'EU FPU0 Pipeline
1647 * Active' event. In the future it's anticipated that there
1648 * will be an explicit 'No Event' we can select, but not yet...
1649 */
1650 if (!oa_config)
1651 return 0;
1652
1653 for (i = 0; i < oa_config->flex_regs_len; i++) {
1654 if (i915_mmio_reg_offset(oa_config->flex_regs[i].addr) == mmio)
1655 return oa_config->flex_regs[i].value;
1656 }
1657
1658 return 0;
1659}
Robert Bragg19f81df2017-06-13 12:23:03 +01001660/*
1661 * NB: It must always remain pointer safe to run this even if the OA unit
1662 * has been disabled.
1663 *
1664 * It's fine to put out-of-date values into these per-context registers
1665 * in the case that the OA unit has been disabled.
1666 */
Chris Wilsonb146e5e2019-03-06 08:47:04 +00001667static void
1668gen8_update_reg_state_unlocked(struct intel_context *ce,
1669 u32 *reg_state,
1670 const struct i915_oa_config *oa_config)
Robert Bragg19f81df2017-06-13 12:23:03 +01001671{
Chris Wilsonb146e5e2019-03-06 08:47:04 +00001672 struct drm_i915_private *i915 = ce->gem_context->i915;
1673 u32 ctx_oactxctrl = i915->perf.oa.ctx_oactxctrl_offset;
1674 u32 ctx_flexeu0 = i915->perf.oa.ctx_flexeu0_offset;
Robert Bragg19f81df2017-06-13 12:23:03 +01001675 /* The MMIO offsets for Flex EU registers aren't contiguous */
Lionel Landwerlin35ab4fd2018-08-13 09:02:18 +01001676 i915_reg_t flex_regs[] = {
1677 EU_PERF_CNTL0,
1678 EU_PERF_CNTL1,
1679 EU_PERF_CNTL2,
1680 EU_PERF_CNTL3,
1681 EU_PERF_CNTL4,
1682 EU_PERF_CNTL5,
1683 EU_PERF_CNTL6,
Robert Bragg19f81df2017-06-13 12:23:03 +01001684 };
1685 int i;
1686
Lionel Landwerlin35ab4fd2018-08-13 09:02:18 +01001687 CTX_REG(reg_state, ctx_oactxctrl, GEN8_OACTXCONTROL,
Chris Wilsonb146e5e2019-03-06 08:47:04 +00001688 (i915->perf.oa.period_exponent << GEN8_OA_TIMER_PERIOD_SHIFT) |
1689 (i915->perf.oa.periodic ? GEN8_OA_TIMER_ENABLE : 0) |
Lionel Landwerlin35ab4fd2018-08-13 09:02:18 +01001690 GEN8_OA_COUNTER_RESUME);
Robert Bragg19f81df2017-06-13 12:23:03 +01001691
Lionel Landwerlin35ab4fd2018-08-13 09:02:18 +01001692 for (i = 0; i < ARRAY_SIZE(flex_regs); i++) {
Chris Wilsona9877da2019-07-16 22:34:43 +01001693 CTX_REG(reg_state, ctx_flexeu0 + i * 2, flex_regs[i],
1694 oa_config_flex_reg(oa_config, flex_regs[i]));
Robert Bragg19f81df2017-06-13 12:23:03 +01001695 }
Lionel Landwerlinec431ea2019-02-05 09:50:29 +00001696
Chris Wilsonb146e5e2019-03-06 08:47:04 +00001697 CTX_REG(reg_state,
1698 CTX_R_PWR_CLK_STATE, GEN8_R_PWR_CLK_STATE,
Chris Wilson09407572019-04-24 10:51:34 +01001699 intel_sseu_make_rpcs(i915, &ce->sseu));
Robert Bragg19f81df2017-06-13 12:23:03 +01001700}
1701
Chris Wilsona9877da2019-07-16 22:34:43 +01001702struct flex {
1703 i915_reg_t reg;
1704 u32 offset;
1705 u32 value;
1706};
1707
1708static int
1709gen8_store_flex(struct i915_request *rq,
1710 struct intel_context *ce,
1711 const struct flex *flex, unsigned int count)
1712{
1713 u32 offset;
1714 u32 *cs;
1715
1716 cs = intel_ring_begin(rq, 4 * count);
1717 if (IS_ERR(cs))
1718 return PTR_ERR(cs);
1719
1720 offset = i915_ggtt_offset(ce->state) + LRC_STATE_PN * PAGE_SIZE;
1721 do {
1722 *cs++ = MI_STORE_DWORD_IMM_GEN4 | MI_USE_GGTT;
1723 *cs++ = offset + (flex->offset + 1) * sizeof(u32);
1724 *cs++ = 0;
1725 *cs++ = flex->value;
1726 } while (flex++, --count);
1727
1728 intel_ring_advance(rq, cs);
1729
1730 return 0;
1731}
1732
1733static int
1734gen8_load_flex(struct i915_request *rq,
1735 struct intel_context *ce,
1736 const struct flex *flex, unsigned int count)
1737{
1738 u32 *cs;
1739
1740 GEM_BUG_ON(!count || count > 63);
1741
1742 cs = intel_ring_begin(rq, 2 * count + 2);
1743 if (IS_ERR(cs))
1744 return PTR_ERR(cs);
1745
1746 *cs++ = MI_LOAD_REGISTER_IMM(count);
1747 do {
1748 *cs++ = i915_mmio_reg_offset(flex->reg);
1749 *cs++ = flex->value;
1750 } while (flex++, --count);
1751 *cs++ = MI_NOOP;
1752
1753 intel_ring_advance(rq, cs);
1754
1755 return 0;
1756}
1757
1758static int gen8_modify_context(struct intel_context *ce,
1759 const struct flex *flex, unsigned int count)
1760{
1761 struct i915_request *rq;
1762 int err;
1763
1764 lockdep_assert_held(&ce->pin_mutex);
1765
1766 rq = i915_request_create(ce->engine->kernel_context);
1767 if (IS_ERR(rq))
1768 return PTR_ERR(rq);
1769
1770 /* Serialise with the remote context */
1771 err = intel_context_prepare_remote_request(ce, rq);
1772 if (err == 0)
1773 err = gen8_store_flex(rq, ce, flex, count);
1774
1775 i915_request_add(rq);
1776 return err;
1777}
1778
1779static int gen8_modify_self(struct intel_context *ce,
1780 const struct flex *flex, unsigned int count)
1781{
1782 struct i915_request *rq;
1783 int err;
1784
1785 rq = i915_request_create(ce);
1786 if (IS_ERR(rq))
1787 return PTR_ERR(rq);
1788
1789 err = gen8_load_flex(rq, ce, flex, count);
1790
1791 i915_request_add(rq);
1792 return err;
1793}
1794
Robert Bragg19f81df2017-06-13 12:23:03 +01001795/*
Robert Bragg19f81df2017-06-13 12:23:03 +01001796 * Manages updating the per-context aspects of the OA stream
1797 * configuration across all contexts.
1798 *
1799 * The awkward consideration here is that OACTXCONTROL controls the
1800 * exponent for periodic sampling which is primarily used for system
1801 * wide profiling where we'd like a consistent sampling period even in
1802 * the face of context switches.
1803 *
1804 * Our approach of updating the register state context (as opposed to
1805 * say using a workaround batch buffer) ensures that the hardware
1806 * won't automatically reload an out-of-date timer exponent even
1807 * transiently before a WA BB could be parsed.
1808 *
1809 * This function needs to:
1810 * - Ensure the currently running context's per-context OA state is
1811 * updated
1812 * - Ensure that all existing contexts will have the correct per-context
1813 * OA state if they are scheduled for use.
1814 * - Ensure any new contexts will be initialized with the correct
1815 * per-context OA state.
1816 *
1817 * Note: it's only the RCS/Render context that has any OA state.
1818 */
Chris Wilsona9877da2019-07-16 22:34:43 +01001819static int gen8_configure_all_contexts(struct drm_i915_private *i915,
Lionel Landwerlin41d3fdc2018-03-01 11:06:13 +00001820 const struct i915_oa_config *oa_config)
Robert Bragg19f81df2017-06-13 12:23:03 +01001821{
Chris Wilsona9877da2019-07-16 22:34:43 +01001822 /* The MMIO offsets for Flex EU registers aren't contiguous */
1823 const u32 ctx_flexeu0 = i915->perf.oa.ctx_flexeu0_offset;
1824#define ctx_flexeuN(N) (ctx_flexeu0 + 2 * (N))
1825 struct flex regs[] = {
1826 {
1827 GEN8_R_PWR_CLK_STATE,
1828 CTX_R_PWR_CLK_STATE,
1829 },
1830 {
1831 GEN8_OACTXCONTROL,
1832 i915->perf.oa.ctx_oactxctrl_offset,
1833 ((i915->perf.oa.period_exponent << GEN8_OA_TIMER_PERIOD_SHIFT) |
1834 (i915->perf.oa.periodic ? GEN8_OA_TIMER_ENABLE : 0) |
1835 GEN8_OA_COUNTER_RESUME)
1836 },
1837 { EU_PERF_CNTL0, ctx_flexeuN(0) },
1838 { EU_PERF_CNTL1, ctx_flexeuN(1) },
1839 { EU_PERF_CNTL2, ctx_flexeuN(2) },
1840 { EU_PERF_CNTL3, ctx_flexeuN(3) },
1841 { EU_PERF_CNTL4, ctx_flexeuN(4) },
1842 { EU_PERF_CNTL5, ctx_flexeuN(5) },
1843 { EU_PERF_CNTL6, ctx_flexeuN(6) },
1844 };
1845#undef ctx_flexeuN
1846 struct intel_engine_cs *engine;
Robert Bragg19f81df2017-06-13 12:23:03 +01001847 struct i915_gem_context *ctx;
Chris Wilsona9877da2019-07-16 22:34:43 +01001848 enum intel_engine_id id;
1849 int err;
1850 int i;
Robert Bragg19f81df2017-06-13 12:23:03 +01001851
Chris Wilsona9877da2019-07-16 22:34:43 +01001852 for (i = 2; i < ARRAY_SIZE(regs); i++)
1853 regs[i].value = oa_config_flex_reg(oa_config, regs[i].reg);
1854
1855 lockdep_assert_held(&i915->drm.struct_mutex);
Robert Bragg19f81df2017-06-13 12:23:03 +01001856
Robert Bragg19f81df2017-06-13 12:23:03 +01001857 /*
1858 * The OA register config is setup through the context image. This image
1859 * might be written to by the GPU on context switch (in particular on
1860 * lite-restore). This means we can't safely update a context's image,
1861 * if this context is scheduled/submitted to run on the GPU.
1862 *
1863 * We could emit the OA register config through the batch buffer but
1864 * this might leave small interval of time where the OA unit is
1865 * configured at an invalid sampling period.
1866 *
Chris Wilsona9877da2019-07-16 22:34:43 +01001867 * Note that since we emit all requests from a single ring, there
1868 * is still an implicit global barrier here that may cause a high
1869 * priority context to wait for an otherwise independent low priority
1870 * context. Contexts idle at the time of reconfiguration are not
1871 * trapped behind the barrier.
Robert Bragg19f81df2017-06-13 12:23:03 +01001872 */
Chris Wilsona9877da2019-07-16 22:34:43 +01001873 list_for_each_entry(ctx, &i915->contexts.list, link) {
Chris Wilson5e2a0412019-04-26 17:33:34 +01001874 struct i915_gem_engines_iter it;
1875 struct intel_context *ce;
Robert Bragg19f81df2017-06-13 12:23:03 +01001876
Chris Wilsona9877da2019-07-16 22:34:43 +01001877 if (ctx == i915->kernel_context)
1878 continue;
1879
Chris Wilson5e2a0412019-04-26 17:33:34 +01001880 for_each_gem_engine(ce,
1881 i915_gem_context_lock_engines(ctx),
1882 it) {
Chris Wilsona9877da2019-07-16 22:34:43 +01001883 GEM_BUG_ON(ce == ce->engine->kernel_context);
Robert Bragg19f81df2017-06-13 12:23:03 +01001884
Chris Wilson5e2a0412019-04-26 17:33:34 +01001885 if (ce->engine->class != RENDER_CLASS)
1886 continue;
Robert Bragg19f81df2017-06-13 12:23:03 +01001887
Chris Wilsona9877da2019-07-16 22:34:43 +01001888 err = intel_context_lock_pinned(ce);
1889 if (err)
1890 break;
Robert Bragg19f81df2017-06-13 12:23:03 +01001891
Chris Wilsona9877da2019-07-16 22:34:43 +01001892 regs[0].value = intel_sseu_make_rpcs(i915, &ce->sseu);
Robert Bragg19f81df2017-06-13 12:23:03 +01001893
Chris Wilsona9877da2019-07-16 22:34:43 +01001894 /* Otherwise OA settings will be set upon first use */
1895 if (intel_context_is_pinned(ce))
1896 err = gen8_modify_context(ce, regs, ARRAY_SIZE(regs));
Chris Wilson5e2a0412019-04-26 17:33:34 +01001897
Chris Wilsona9877da2019-07-16 22:34:43 +01001898 intel_context_unlock_pinned(ce);
1899 if (err)
1900 break;
Chris Wilson5e2a0412019-04-26 17:33:34 +01001901 }
1902 i915_gem_context_unlock_engines(ctx);
Chris Wilsona9877da2019-07-16 22:34:43 +01001903 if (err)
1904 return err;
Robert Bragg19f81df2017-06-13 12:23:03 +01001905 }
1906
Tvrtko Ursulin722f3de2018-09-12 16:29:30 +01001907 /*
Chris Wilsona9877da2019-07-16 22:34:43 +01001908 * After updating all other contexts, we need to modify ourselves.
1909 * If we don't modify the kernel_context, we do not get events while
1910 * idle.
Tvrtko Ursulin722f3de2018-09-12 16:29:30 +01001911 */
Chris Wilsona9877da2019-07-16 22:34:43 +01001912 for_each_engine(engine, i915, id) {
1913 struct intel_context *ce = engine->kernel_context;
Tvrtko Ursulin722f3de2018-09-12 16:29:30 +01001914
Chris Wilsona9877da2019-07-16 22:34:43 +01001915 if (engine->class != RENDER_CLASS)
1916 continue;
1917
1918 regs[0].value = intel_sseu_make_rpcs(i915, &ce->sseu);
1919
1920 err = gen8_modify_self(ce, regs, ARRAY_SIZE(regs));
1921 if (err)
1922 return err;
1923 }
Tvrtko Ursulin722f3de2018-09-12 16:29:30 +01001924
1925 return 0;
Robert Bragg19f81df2017-06-13 12:23:03 +01001926}
1927
Lionel Landwerlin5728de22018-10-23 11:07:06 +01001928static int gen8_enable_metric_set(struct i915_perf_stream *stream)
Robert Bragg19f81df2017-06-13 12:23:03 +01001929{
Lionel Landwerlin5728de22018-10-23 11:07:06 +01001930 struct drm_i915_private *dev_priv = stream->dev_priv;
1931 const struct i915_oa_config *oa_config = stream->oa_config;
Lionel Landwerlin701f8232017-08-03 17:58:08 +01001932 int ret;
Robert Bragg19f81df2017-06-13 12:23:03 +01001933
1934 /*
1935 * We disable slice/unslice clock ratio change reports on SKL since
1936 * they are too noisy. The HW generates a lot of redundant reports
1937 * where the ratio hasn't really changed causing a lot of redundant
1938 * work to processes and increasing the chances we'll hit buffer
1939 * overruns.
1940 *
1941 * Although we don't currently use the 'disable overrun' OABUFFER
1942 * feature it's worth noting that clock ratio reports have to be
1943 * disabled before considering to use that feature since the HW doesn't
1944 * correctly block these reports.
1945 *
1946 * Currently none of the high-level metrics we have depend on knowing
1947 * this ratio to normalize.
1948 *
1949 * Note: This register is not power context saved and restored, but
1950 * that's OK considering that we disable RC6 while the OA unit is
1951 * enabled.
1952 *
1953 * The _INCLUDE_CLK_RATIO bit allows the slice/unslice frequency to
1954 * be read back from automatically triggered reports, as part of the
1955 * RPT_ID field.
1956 */
Lucas De Marchi00690002018-12-12 10:10:42 -08001957 if (IS_GEN_RANGE(dev_priv, 9, 11)) {
Robert Bragg19f81df2017-06-13 12:23:03 +01001958 I915_WRITE(GEN8_OA_DEBUG,
1959 _MASKED_BIT_ENABLE(GEN9_OA_DEBUG_DISABLE_CLK_RATIO_REPORTS |
1960 GEN9_OA_DEBUG_INCLUDE_CLK_RATIO));
1961 }
1962
1963 /*
1964 * Update all contexts prior writing the mux configurations as we need
1965 * to make sure all slices/subslices are ON before writing to NOA
1966 * registers.
1967 */
Lionel Landwerlin41d3fdc2018-03-01 11:06:13 +00001968 ret = gen8_configure_all_contexts(dev_priv, oa_config);
Robert Bragg19f81df2017-06-13 12:23:03 +01001969 if (ret)
1970 return ret;
1971
Lionel Landwerlin701f8232017-08-03 17:58:08 +01001972 config_oa_regs(dev_priv, oa_config->mux_regs, oa_config->mux_regs_len);
Lionel Landwerlin14bfcd32019-07-10 11:55:24 +01001973 delay_after_mux();
Lionel Landwerlin701f8232017-08-03 17:58:08 +01001974
Lionel Landwerlin701f8232017-08-03 17:58:08 +01001975 config_oa_regs(dev_priv, oa_config->b_counter_regs,
1976 oa_config->b_counter_regs_len);
Robert Bragg19f81df2017-06-13 12:23:03 +01001977
1978 return 0;
1979}
1980
1981static void gen8_disable_metric_set(struct drm_i915_private *dev_priv)
1982{
1983 /* Reset all contexts' slices/subslices configurations. */
Lionel Landwerlin41d3fdc2018-03-01 11:06:13 +00001984 gen8_configure_all_contexts(dev_priv, NULL);
Lionel Landwerlin28964cf2017-08-03 17:58:10 +01001985
1986 I915_WRITE(GDT_CHICKEN_BITS, (I915_READ(GDT_CHICKEN_BITS) &
1987 ~GT_NOA_ENABLE));
Robert Bragg19f81df2017-06-13 12:23:03 +01001988}
1989
Lionel Landwerlin95690a02017-11-10 19:08:43 +00001990static void gen10_disable_metric_set(struct drm_i915_private *dev_priv)
1991{
1992 /* Reset all contexts' slices/subslices configurations. */
Lionel Landwerlin41d3fdc2018-03-01 11:06:13 +00001993 gen8_configure_all_contexts(dev_priv, NULL);
Lionel Landwerlin95690a02017-11-10 19:08:43 +00001994
1995 /* Make sure we disable noa to save power. */
1996 I915_WRITE(RPM_CONFIG1,
1997 I915_READ(RPM_CONFIG1) & ~GEN10_GT_NOA_ENABLE);
1998}
1999
Lionel Landwerlin5728de22018-10-23 11:07:06 +01002000static void gen7_oa_enable(struct i915_perf_stream *stream)
Robert Braggd7965152016-11-07 19:49:52 +00002001{
Lionel Landwerlin5728de22018-10-23 11:07:06 +01002002 struct drm_i915_private *dev_priv = stream->dev_priv;
2003 struct i915_gem_context *ctx = stream->ctx;
Lionel Landwerlin11051302018-03-26 10:08:23 +01002004 u32 ctx_id = dev_priv->perf.oa.specific_ctx_id;
2005 bool periodic = dev_priv->perf.oa.periodic;
2006 u32 period_exponent = dev_priv->perf.oa.period_exponent;
2007 u32 report_format = dev_priv->perf.oa.oa_buffer.format;
2008
Robert Bragg1bef3402017-06-13 12:23:06 +01002009 /*
2010 * Reset buf pointers so we don't forward reports from before now.
2011 *
2012 * Think carefully if considering trying to avoid this, since it
2013 * also ensures status flags and the buffer itself are cleared
2014 * in error paths, and we have checks for invalid reports based
2015 * on the assumption that certain fields are written to zeroed
2016 * memory which this helps maintains.
2017 */
2018 gen7_init_oa_buffer(dev_priv);
Robert Braggd7965152016-11-07 19:49:52 +00002019
Lionel Landwerlin11051302018-03-26 10:08:23 +01002020 I915_WRITE(GEN7_OACONTROL,
2021 (ctx_id & GEN7_OACONTROL_CTX_MASK) |
2022 (period_exponent <<
2023 GEN7_OACONTROL_TIMER_PERIOD_SHIFT) |
2024 (periodic ? GEN7_OACONTROL_TIMER_ENABLE : 0) |
2025 (report_format << GEN7_OACONTROL_FORMAT_SHIFT) |
2026 (ctx ? GEN7_OACONTROL_PER_CTX_ENABLE : 0) |
2027 GEN7_OACONTROL_ENABLE);
Robert Braggd7965152016-11-07 19:49:52 +00002028}
2029
Lionel Landwerlin5728de22018-10-23 11:07:06 +01002030static void gen8_oa_enable(struct i915_perf_stream *stream)
Robert Bragg19f81df2017-06-13 12:23:03 +01002031{
Lionel Landwerlin5728de22018-10-23 11:07:06 +01002032 struct drm_i915_private *dev_priv = stream->dev_priv;
Robert Bragg19f81df2017-06-13 12:23:03 +01002033 u32 report_format = dev_priv->perf.oa.oa_buffer.format;
2034
2035 /*
2036 * Reset buf pointers so we don't forward reports from before now.
2037 *
2038 * Think carefully if considering trying to avoid this, since it
2039 * also ensures status flags and the buffer itself are cleared
2040 * in error paths, and we have checks for invalid reports based
2041 * on the assumption that certain fields are written to zeroed
2042 * memory which this helps maintains.
2043 */
2044 gen8_init_oa_buffer(dev_priv);
2045
2046 /*
2047 * Note: we don't rely on the hardware to perform single context
2048 * filtering and instead filter on the cpu based on the context-id
2049 * field of reports
2050 */
2051 I915_WRITE(GEN8_OACONTROL, (report_format <<
2052 GEN8_OA_REPORT_FORMAT_SHIFT) |
2053 GEN8_OA_COUNTER_ENABLE);
2054}
2055
Robert Bragg16d98b32016-12-07 21:40:33 +00002056/**
2057 * i915_oa_stream_enable - handle `I915_PERF_IOCTL_ENABLE` for OA stream
2058 * @stream: An i915 perf stream opened for OA metrics
2059 *
2060 * [Re]enables hardware periodic sampling according to the period configured
2061 * when opening the stream. This also starts a hrtimer that will periodically
2062 * check for data in the circular OA buffer for notifying userspace (e.g.
2063 * during a read() or poll()).
2064 */
Robert Braggd7965152016-11-07 19:49:52 +00002065static void i915_oa_stream_enable(struct i915_perf_stream *stream)
2066{
2067 struct drm_i915_private *dev_priv = stream->dev_priv;
2068
Lionel Landwerlin5728de22018-10-23 11:07:06 +01002069 dev_priv->perf.oa.ops.oa_enable(stream);
Robert Braggd7965152016-11-07 19:49:52 +00002070
2071 if (dev_priv->perf.oa.periodic)
2072 hrtimer_start(&dev_priv->perf.oa.poll_check_timer,
2073 ns_to_ktime(POLL_PERIOD),
2074 HRTIMER_MODE_REL_PINNED);
2075}
2076
Lionel Landwerlin5728de22018-10-23 11:07:06 +01002077static void gen7_oa_disable(struct i915_perf_stream *stream)
Robert Braggd7965152016-11-07 19:49:52 +00002078{
Daniele Ceraolo Spurio97a04e02019-03-25 14:49:39 -07002079 struct intel_uncore *uncore = &stream->dev_priv->uncore;
Lionel Landwerlin5728de22018-10-23 11:07:06 +01002080
Daniele Ceraolo Spurio97a04e02019-03-25 14:49:39 -07002081 intel_uncore_write(uncore, GEN7_OACONTROL, 0);
2082 if (intel_wait_for_register(uncore,
Chris Wilsone896d292018-05-11 14:52:07 +01002083 GEN7_OACONTROL, GEN7_OACONTROL_ENABLE, 0,
2084 50))
2085 DRM_ERROR("wait for OA to be disabled timed out\n");
Robert Braggd7965152016-11-07 19:49:52 +00002086}
2087
Lionel Landwerlin5728de22018-10-23 11:07:06 +01002088static void gen8_oa_disable(struct i915_perf_stream *stream)
Robert Bragg19f81df2017-06-13 12:23:03 +01002089{
Daniele Ceraolo Spurio97a04e02019-03-25 14:49:39 -07002090 struct intel_uncore *uncore = &stream->dev_priv->uncore;
Lionel Landwerlin5728de22018-10-23 11:07:06 +01002091
Daniele Ceraolo Spurio97a04e02019-03-25 14:49:39 -07002092 intel_uncore_write(uncore, GEN8_OACONTROL, 0);
2093 if (intel_wait_for_register(uncore,
Chris Wilsone896d292018-05-11 14:52:07 +01002094 GEN8_OACONTROL, GEN8_OA_COUNTER_ENABLE, 0,
2095 50))
2096 DRM_ERROR("wait for OA to be disabled timed out\n");
Robert Bragg19f81df2017-06-13 12:23:03 +01002097}
2098
Robert Bragg16d98b32016-12-07 21:40:33 +00002099/**
2100 * i915_oa_stream_disable - handle `I915_PERF_IOCTL_DISABLE` for OA stream
2101 * @stream: An i915 perf stream opened for OA metrics
2102 *
2103 * Stops the OA unit from periodically writing counter reports into the
2104 * circular OA buffer. This also stops the hrtimer that periodically checks for
2105 * data in the circular OA buffer, for notifying userspace.
2106 */
Robert Braggd7965152016-11-07 19:49:52 +00002107static void i915_oa_stream_disable(struct i915_perf_stream *stream)
2108{
2109 struct drm_i915_private *dev_priv = stream->dev_priv;
2110
Lionel Landwerlin5728de22018-10-23 11:07:06 +01002111 dev_priv->perf.oa.ops.oa_disable(stream);
Robert Braggd7965152016-11-07 19:49:52 +00002112
2113 if (dev_priv->perf.oa.periodic)
2114 hrtimer_cancel(&dev_priv->perf.oa.poll_check_timer);
2115}
2116
Robert Braggd7965152016-11-07 19:49:52 +00002117static const struct i915_perf_stream_ops i915_oa_stream_ops = {
2118 .destroy = i915_oa_stream_destroy,
2119 .enable = i915_oa_stream_enable,
2120 .disable = i915_oa_stream_disable,
2121 .wait_unlocked = i915_oa_wait_unlocked,
2122 .poll_wait = i915_oa_poll_wait,
2123 .read = i915_oa_read,
2124};
2125
Robert Bragg16d98b32016-12-07 21:40:33 +00002126/**
2127 * i915_oa_stream_init - validate combined props for OA stream and init
2128 * @stream: An i915 perf stream
2129 * @param: The open parameters passed to `DRM_I915_PERF_OPEN`
2130 * @props: The property state that configures stream (individually validated)
2131 *
2132 * While read_properties_unlocked() validates properties in isolation it
2133 * doesn't ensure that the combination necessarily makes sense.
2134 *
2135 * At this point it has been determined that userspace wants a stream of
2136 * OA metrics, but still we need to further validate the combined
2137 * properties are OK.
2138 *
2139 * If the configuration makes sense then we can allocate memory for
2140 * a circular OA buffer and apply the requested metric set configuration.
2141 *
2142 * Returns: zero on success or a negative error code.
2143 */
Robert Braggd7965152016-11-07 19:49:52 +00002144static int i915_oa_stream_init(struct i915_perf_stream *stream,
2145 struct drm_i915_perf_open_param *param,
2146 struct perf_open_properties *props)
2147{
2148 struct drm_i915_private *dev_priv = stream->dev_priv;
2149 int format_size;
2150 int ret;
2151
Robert Bragg442b8c02016-11-07 19:49:53 +00002152 /* If the sysfs metrics/ directory wasn't registered for some
2153 * reason then don't let userspace try their luck with config
2154 * IDs
2155 */
2156 if (!dev_priv->perf.metrics_kobj) {
Robert Bragg77085502016-12-01 17:21:52 +00002157 DRM_DEBUG("OA metrics weren't advertised via sysfs\n");
Robert Bragg442b8c02016-11-07 19:49:53 +00002158 return -EINVAL;
2159 }
2160
Robert Braggd7965152016-11-07 19:49:52 +00002161 if (!(props->sample_flags & SAMPLE_OA_REPORT)) {
Robert Bragg77085502016-12-01 17:21:52 +00002162 DRM_DEBUG("Only OA report sampling supported\n");
Robert Braggd7965152016-11-07 19:49:52 +00002163 return -EINVAL;
2164 }
2165
Lionel Landwerlin784b1a82018-10-23 11:07:05 +01002166 if (!dev_priv->perf.oa.ops.enable_metric_set) {
Robert Bragg77085502016-12-01 17:21:52 +00002167 DRM_DEBUG("OA unit not supported\n");
Robert Braggd7965152016-11-07 19:49:52 +00002168 return -ENODEV;
2169 }
2170
2171 /* To avoid the complexity of having to accurately filter
2172 * counter reports and marshal to the appropriate client
2173 * we currently only allow exclusive access
2174 */
2175 if (dev_priv->perf.oa.exclusive_stream) {
Robert Bragg77085502016-12-01 17:21:52 +00002176 DRM_DEBUG("OA unit already in use\n");
Robert Braggd7965152016-11-07 19:49:52 +00002177 return -EBUSY;
2178 }
2179
Robert Braggd7965152016-11-07 19:49:52 +00002180 if (!props->oa_format) {
Robert Bragg77085502016-12-01 17:21:52 +00002181 DRM_DEBUG("OA report format not specified\n");
Robert Braggd7965152016-11-07 19:49:52 +00002182 return -EINVAL;
2183 }
2184
Robert Bragg712122e2017-05-11 16:43:31 +01002185 /* We set up some ratelimit state to potentially throttle any _NOTES
2186 * about spurious, invalid OA reports which we don't forward to
2187 * userspace.
2188 *
2189 * The initialization is associated with opening the stream (not driver
2190 * init) considering we print a _NOTE about any throttling when closing
2191 * the stream instead of waiting until driver _fini which no one would
2192 * ever see.
2193 *
2194 * Using the same limiting factors as printk_ratelimit()
2195 */
2196 ratelimit_state_init(&dev_priv->perf.oa.spurious_report_rs,
2197 5 * HZ, 10);
2198 /* Since we use a DRM_NOTE for spurious reports it would be
2199 * inconsistent to let __ratelimit() automatically print a warning for
2200 * throttling.
2201 */
2202 ratelimit_set_flags(&dev_priv->perf.oa.spurious_report_rs,
2203 RATELIMIT_MSG_ON_RELEASE);
2204
Robert Braggd7965152016-11-07 19:49:52 +00002205 stream->sample_size = sizeof(struct drm_i915_perf_record_header);
2206
2207 format_size = dev_priv->perf.oa.oa_formats[props->oa_format].size;
2208
2209 stream->sample_flags |= SAMPLE_OA_REPORT;
2210 stream->sample_size += format_size;
2211
2212 dev_priv->perf.oa.oa_buffer.format_size = format_size;
2213 if (WARN_ON(dev_priv->perf.oa.oa_buffer.format_size == 0))
2214 return -EINVAL;
2215
2216 dev_priv->perf.oa.oa_buffer.format =
2217 dev_priv->perf.oa.oa_formats[props->oa_format].format;
2218
Robert Braggd7965152016-11-07 19:49:52 +00002219 dev_priv->perf.oa.periodic = props->oa_periodic;
Robert Bragg0dd860c2017-05-11 16:43:28 +01002220 if (dev_priv->perf.oa.periodic)
Robert Braggd7965152016-11-07 19:49:52 +00002221 dev_priv->perf.oa.period_exponent = props->oa_period_exponent;
2222
Robert Braggd7965152016-11-07 19:49:52 +00002223 if (stream->ctx) {
2224 ret = oa_get_render_ctx_id(stream);
Lionel Landwerlin9bd9be62018-03-26 10:08:28 +01002225 if (ret) {
2226 DRM_DEBUG("Invalid context id to filter with\n");
Robert Braggd7965152016-11-07 19:49:52 +00002227 return ret;
Lionel Landwerlin9bd9be62018-03-26 10:08:28 +01002228 }
Robert Braggd7965152016-11-07 19:49:52 +00002229 }
2230
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01002231 ret = get_oa_config(dev_priv, props->metrics_set, &stream->oa_config);
Lionel Landwerlin9bd9be62018-03-26 10:08:28 +01002232 if (ret) {
2233 DRM_DEBUG("Invalid OA config id=%i\n", props->metrics_set);
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01002234 goto err_config;
Lionel Landwerlin9bd9be62018-03-26 10:08:28 +01002235 }
Lionel Landwerlin701f8232017-08-03 17:58:08 +01002236
Robert Braggd7965152016-11-07 19:49:52 +00002237 /* PRM - observability performance counters:
2238 *
2239 * OACONTROL, performance counter enable, note:
2240 *
2241 * "When this bit is set, in order to have coherent counts,
2242 * RC6 power state and trunk clock gating must be disabled.
2243 * This can be achieved by programming MMIO registers as
2244 * 0xA094=0 and 0xA090[31]=1"
2245 *
2246 * In our case we are expecting that taking pm + FORCEWAKE
2247 * references will effectively disable RC6.
2248 */
Daniele Ceraolo Spuriod858d562019-06-13 16:21:54 -07002249 stream->wakeref = intel_runtime_pm_get(&dev_priv->runtime_pm);
Daniele Ceraolo Spurio3ceea6a2019-03-19 11:35:36 -07002250 intel_uncore_forcewake_get(&dev_priv->uncore, FORCEWAKE_ALL);
Robert Braggd7965152016-11-07 19:49:52 +00002251
Joonas Lahtinenfe841682018-11-16 15:55:09 +02002252 ret = alloc_oa_buffer(dev_priv);
sagar.a.kamble@intel.com987f8c42017-06-27 23:09:41 +05302253 if (ret)
2254 goto err_oa_buf_alloc;
2255
Lionel Landwerlin41d3fdc2018-03-01 11:06:13 +00002256 ret = i915_mutex_lock_interruptible(&dev_priv->drm);
2257 if (ret)
2258 goto err_lock;
2259
Lionel Landwerlinec431ea2019-02-05 09:50:29 +00002260 stream->ops = &i915_oa_stream_ops;
2261 dev_priv->perf.oa.exclusive_stream = stream;
2262
Lionel Landwerlin5728de22018-10-23 11:07:06 +01002263 ret = dev_priv->perf.oa.ops.enable_metric_set(stream);
Lionel Landwerlin9bd9be62018-03-26 10:08:28 +01002264 if (ret) {
2265 DRM_DEBUG("Unable to enable metric set\n");
Robert Braggd7965152016-11-07 19:49:52 +00002266 goto err_enable;
Lionel Landwerlin9bd9be62018-03-26 10:08:28 +01002267 }
Robert Braggd7965152016-11-07 19:49:52 +00002268
Lionel Landwerlin701f8232017-08-03 17:58:08 +01002269 mutex_unlock(&dev_priv->drm.struct_mutex);
2270
Robert Braggd7965152016-11-07 19:49:52 +00002271 return 0;
2272
2273err_enable:
Lionel Landwerlinec431ea2019-02-05 09:50:29 +00002274 dev_priv->perf.oa.exclusive_stream = NULL;
Lionel Landwerlin41d3fdc2018-03-01 11:06:13 +00002275 dev_priv->perf.oa.ops.disable_metric_set(dev_priv);
2276 mutex_unlock(&dev_priv->drm.struct_mutex);
2277
2278err_lock:
Robert Braggd7965152016-11-07 19:49:52 +00002279 free_oa_buffer(dev_priv);
2280
2281err_oa_buf_alloc:
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01002282 put_oa_config(dev_priv, stream->oa_config);
2283
Daniele Ceraolo Spurio3ceea6a2019-03-19 11:35:36 -07002284 intel_uncore_forcewake_put(&dev_priv->uncore, FORCEWAKE_ALL);
Daniele Ceraolo Spuriod858d562019-06-13 16:21:54 -07002285 intel_runtime_pm_put(&dev_priv->runtime_pm, stream->wakeref);
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01002286
2287err_config:
Robert Braggd7965152016-11-07 19:49:52 +00002288 if (stream->ctx)
2289 oa_put_render_ctx_id(stream);
2290
2291 return ret;
2292}
2293
Robert Bragg19f81df2017-06-13 12:23:03 +01002294void i915_oa_init_reg_state(struct intel_engine_cs *engine,
Chris Wilsonb146e5e2019-03-06 08:47:04 +00002295 struct intel_context *ce,
2296 u32 *regs)
Robert Bragg19f81df2017-06-13 12:23:03 +01002297{
Chris Wilson28b6cb02017-08-10 18:57:43 +01002298 struct i915_perf_stream *stream;
Robert Bragg19f81df2017-06-13 12:23:03 +01002299
Chris Wilson8a68d462019-03-05 18:03:30 +00002300 if (engine->class != RENDER_CLASS)
Robert Bragg19f81df2017-06-13 12:23:03 +01002301 return;
2302
Chris Wilson28b6cb02017-08-10 18:57:43 +01002303 stream = engine->i915->perf.oa.exclusive_stream;
Lionel Landwerlin701f8232017-08-03 17:58:08 +01002304 if (stream)
Chris Wilsonb146e5e2019-03-06 08:47:04 +00002305 gen8_update_reg_state_unlocked(ce, regs, stream->oa_config);
Robert Bragg19f81df2017-06-13 12:23:03 +01002306}
2307
Robert Bragg16d98b32016-12-07 21:40:33 +00002308/**
2309 * i915_perf_read_locked - &i915_perf_stream_ops->read with error normalisation
2310 * @stream: An i915 perf stream
2311 * @file: An i915 perf stream file
2312 * @buf: destination buffer given by userspace
2313 * @count: the number of bytes userspace wants to read
2314 * @ppos: (inout) file seek position (unused)
2315 *
2316 * Besides wrapping &i915_perf_stream_ops->read this provides a common place to
2317 * ensure that if we've successfully copied any data then reporting that takes
2318 * precedence over any internal error status, so the data isn't lost.
2319 *
2320 * For example ret will be -ENOSPC whenever there is more buffered data than
2321 * can be copied to userspace, but that's only interesting if we weren't able
2322 * to copy some data because it implies the userspace buffer is too small to
2323 * receive a single record (and we never split records).
2324 *
2325 * Another case with ret == -EFAULT is more of a grey area since it would seem
2326 * like bad form for userspace to ask us to overrun its buffer, but the user
2327 * knows best:
2328 *
2329 * http://yarchive.net/comp/linux/partial_reads_writes.html
2330 *
2331 * Returns: The number of bytes copied or a negative error code on failure.
2332 */
Robert Braggeec688e2016-11-07 19:49:47 +00002333static ssize_t i915_perf_read_locked(struct i915_perf_stream *stream,
2334 struct file *file,
2335 char __user *buf,
2336 size_t count,
2337 loff_t *ppos)
2338{
2339 /* Note we keep the offset (aka bytes read) separate from any
2340 * error status so that the final check for whether we return
2341 * the bytes read with a higher precedence than any error (see
2342 * comment below) doesn't need to be handled/duplicated in
2343 * stream->ops->read() implementations.
2344 */
2345 size_t offset = 0;
2346 int ret = stream->ops->read(stream, buf, count, &offset);
2347
Robert Braggeec688e2016-11-07 19:49:47 +00002348 return offset ?: (ret ?: -EAGAIN);
2349}
2350
Robert Bragg16d98b32016-12-07 21:40:33 +00002351/**
2352 * i915_perf_read - handles read() FOP for i915 perf stream FDs
2353 * @file: An i915 perf stream file
2354 * @buf: destination buffer given by userspace
2355 * @count: the number of bytes userspace wants to read
2356 * @ppos: (inout) file seek position (unused)
2357 *
2358 * The entry point for handling a read() on a stream file descriptor from
2359 * userspace. Most of the work is left to the i915_perf_read_locked() and
2360 * &i915_perf_stream_ops->read but to save having stream implementations (of
2361 * which we might have multiple later) we handle blocking read here.
2362 *
2363 * We can also consistently treat trying to read from a disabled stream
2364 * as an IO error so implementations can assume the stream is enabled
2365 * while reading.
2366 *
2367 * Returns: The number of bytes copied or a negative error code on failure.
2368 */
Robert Braggeec688e2016-11-07 19:49:47 +00002369static ssize_t i915_perf_read(struct file *file,
2370 char __user *buf,
2371 size_t count,
2372 loff_t *ppos)
2373{
2374 struct i915_perf_stream *stream = file->private_data;
2375 struct drm_i915_private *dev_priv = stream->dev_priv;
2376 ssize_t ret;
2377
Robert Braggd7965152016-11-07 19:49:52 +00002378 /* To ensure it's handled consistently we simply treat all reads of a
2379 * disabled stream as an error. In particular it might otherwise lead
2380 * to a deadlock for blocking file descriptors...
2381 */
2382 if (!stream->enabled)
2383 return -EIO;
2384
Robert Braggeec688e2016-11-07 19:49:47 +00002385 if (!(file->f_flags & O_NONBLOCK)) {
Robert Braggd7965152016-11-07 19:49:52 +00002386 /* There's the small chance of false positives from
2387 * stream->ops->wait_unlocked.
2388 *
2389 * E.g. with single context filtering since we only wait until
2390 * oabuffer has >= 1 report we don't immediately know whether
2391 * any reports really belong to the current context
Robert Braggeec688e2016-11-07 19:49:47 +00002392 */
2393 do {
2394 ret = stream->ops->wait_unlocked(stream);
2395 if (ret)
2396 return ret;
2397
2398 mutex_lock(&dev_priv->perf.lock);
2399 ret = i915_perf_read_locked(stream, file,
2400 buf, count, ppos);
2401 mutex_unlock(&dev_priv->perf.lock);
2402 } while (ret == -EAGAIN);
2403 } else {
2404 mutex_lock(&dev_priv->perf.lock);
2405 ret = i915_perf_read_locked(stream, file, buf, count, ppos);
2406 mutex_unlock(&dev_priv->perf.lock);
2407 }
2408
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002409 /* We allow the poll checking to sometimes report false positive EPOLLIN
Robert Bragg26ebd9c2017-05-11 16:43:25 +01002410 * events where we might actually report EAGAIN on read() if there's
2411 * not really any data available. In this situation though we don't
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002412 * want to enter a busy loop between poll() reporting a EPOLLIN event
Robert Bragg26ebd9c2017-05-11 16:43:25 +01002413 * and read() returning -EAGAIN. Clearing the oa.pollin state here
2414 * effectively ensures we back off until the next hrtimer callback
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002415 * before reporting another EPOLLIN event.
Robert Bragg26ebd9c2017-05-11 16:43:25 +01002416 */
2417 if (ret >= 0 || ret == -EAGAIN) {
Robert Braggd7965152016-11-07 19:49:52 +00002418 /* Maybe make ->pollin per-stream state if we support multiple
2419 * concurrent streams in the future.
2420 */
2421 dev_priv->perf.oa.pollin = false;
2422 }
2423
Robert Braggeec688e2016-11-07 19:49:47 +00002424 return ret;
2425}
2426
Robert Braggd7965152016-11-07 19:49:52 +00002427static enum hrtimer_restart oa_poll_check_timer_cb(struct hrtimer *hrtimer)
2428{
2429 struct drm_i915_private *dev_priv =
2430 container_of(hrtimer, typeof(*dev_priv),
2431 perf.oa.poll_check_timer);
2432
Robert Bragg19f81df2017-06-13 12:23:03 +01002433 if (oa_buffer_check_unlocked(dev_priv)) {
Robert Braggd7965152016-11-07 19:49:52 +00002434 dev_priv->perf.oa.pollin = true;
2435 wake_up(&dev_priv->perf.oa.poll_wq);
2436 }
2437
2438 hrtimer_forward_now(hrtimer, ns_to_ktime(POLL_PERIOD));
2439
2440 return HRTIMER_RESTART;
2441}
2442
Robert Bragg16d98b32016-12-07 21:40:33 +00002443/**
2444 * i915_perf_poll_locked - poll_wait() with a suitable wait queue for stream
2445 * @dev_priv: i915 device instance
2446 * @stream: An i915 perf stream
2447 * @file: An i915 perf stream file
2448 * @wait: poll() state table
2449 *
2450 * For handling userspace polling on an i915 perf stream, this calls through to
2451 * &i915_perf_stream_ops->poll_wait to call poll_wait() with a wait queue that
2452 * will be woken for new stream data.
2453 *
2454 * Note: The &drm_i915_private->perf.lock mutex has been taken to serialize
2455 * with any non-file-operation driver hooks.
2456 *
2457 * Returns: any poll events that are ready without sleeping
2458 */
Al Viroafc9a422017-07-03 06:39:46 -04002459static __poll_t i915_perf_poll_locked(struct drm_i915_private *dev_priv,
Robert Braggd7965152016-11-07 19:49:52 +00002460 struct i915_perf_stream *stream,
Robert Braggeec688e2016-11-07 19:49:47 +00002461 struct file *file,
2462 poll_table *wait)
2463{
Al Viroafc9a422017-07-03 06:39:46 -04002464 __poll_t events = 0;
Robert Braggeec688e2016-11-07 19:49:47 +00002465
2466 stream->ops->poll_wait(stream, file, wait);
2467
Robert Braggd7965152016-11-07 19:49:52 +00002468 /* Note: we don't explicitly check whether there's something to read
2469 * here since this path may be very hot depending on what else
2470 * userspace is polling, or on the timeout in use. We rely solely on
2471 * the hrtimer/oa_poll_check_timer_cb to notify us when there are
2472 * samples to read.
2473 */
2474 if (dev_priv->perf.oa.pollin)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002475 events |= EPOLLIN;
Robert Braggeec688e2016-11-07 19:49:47 +00002476
Robert Braggd7965152016-11-07 19:49:52 +00002477 return events;
Robert Braggeec688e2016-11-07 19:49:47 +00002478}
2479
Robert Bragg16d98b32016-12-07 21:40:33 +00002480/**
2481 * i915_perf_poll - call poll_wait() with a suitable wait queue for stream
2482 * @file: An i915 perf stream file
2483 * @wait: poll() state table
2484 *
2485 * For handling userspace polling on an i915 perf stream, this ensures
2486 * poll_wait() gets called with a wait queue that will be woken for new stream
2487 * data.
2488 *
2489 * Note: Implementation deferred to i915_perf_poll_locked()
2490 *
2491 * Returns: any poll events that are ready without sleeping
2492 */
Al Viroafc9a422017-07-03 06:39:46 -04002493static __poll_t i915_perf_poll(struct file *file, poll_table *wait)
Robert Braggeec688e2016-11-07 19:49:47 +00002494{
2495 struct i915_perf_stream *stream = file->private_data;
2496 struct drm_i915_private *dev_priv = stream->dev_priv;
Al Viroafc9a422017-07-03 06:39:46 -04002497 __poll_t ret;
Robert Braggeec688e2016-11-07 19:49:47 +00002498
2499 mutex_lock(&dev_priv->perf.lock);
Robert Braggd7965152016-11-07 19:49:52 +00002500 ret = i915_perf_poll_locked(dev_priv, stream, file, wait);
Robert Braggeec688e2016-11-07 19:49:47 +00002501 mutex_unlock(&dev_priv->perf.lock);
2502
2503 return ret;
2504}
2505
Robert Bragg16d98b32016-12-07 21:40:33 +00002506/**
2507 * i915_perf_enable_locked - handle `I915_PERF_IOCTL_ENABLE` ioctl
2508 * @stream: A disabled i915 perf stream
2509 *
2510 * [Re]enables the associated capture of data for this stream.
2511 *
2512 * If a stream was previously enabled then there's currently no intention
2513 * to provide userspace any guarantee about the preservation of previously
2514 * buffered data.
2515 */
Robert Braggeec688e2016-11-07 19:49:47 +00002516static void i915_perf_enable_locked(struct i915_perf_stream *stream)
2517{
2518 if (stream->enabled)
2519 return;
2520
2521 /* Allow stream->ops->enable() to refer to this */
2522 stream->enabled = true;
2523
2524 if (stream->ops->enable)
2525 stream->ops->enable(stream);
2526}
2527
Robert Bragg16d98b32016-12-07 21:40:33 +00002528/**
2529 * i915_perf_disable_locked - handle `I915_PERF_IOCTL_DISABLE` ioctl
2530 * @stream: An enabled i915 perf stream
2531 *
2532 * Disables the associated capture of data for this stream.
2533 *
2534 * The intention is that disabling an re-enabling a stream will ideally be
2535 * cheaper than destroying and re-opening a stream with the same configuration,
2536 * though there are no formal guarantees about what state or buffered data
2537 * must be retained between disabling and re-enabling a stream.
2538 *
2539 * Note: while a stream is disabled it's considered an error for userspace
2540 * to attempt to read from the stream (-EIO).
2541 */
Robert Braggeec688e2016-11-07 19:49:47 +00002542static void i915_perf_disable_locked(struct i915_perf_stream *stream)
2543{
2544 if (!stream->enabled)
2545 return;
2546
2547 /* Allow stream->ops->disable() to refer to this */
2548 stream->enabled = false;
2549
2550 if (stream->ops->disable)
2551 stream->ops->disable(stream);
2552}
2553
Robert Bragg16d98b32016-12-07 21:40:33 +00002554/**
2555 * i915_perf_ioctl - support ioctl() usage with i915 perf stream FDs
2556 * @stream: An i915 perf stream
2557 * @cmd: the ioctl request
2558 * @arg: the ioctl data
2559 *
2560 * Note: The &drm_i915_private->perf.lock mutex has been taken to serialize
2561 * with any non-file-operation driver hooks.
2562 *
2563 * Returns: zero on success or a negative error code. Returns -EINVAL for
2564 * an unknown ioctl request.
2565 */
Robert Braggeec688e2016-11-07 19:49:47 +00002566static long i915_perf_ioctl_locked(struct i915_perf_stream *stream,
2567 unsigned int cmd,
2568 unsigned long arg)
2569{
2570 switch (cmd) {
2571 case I915_PERF_IOCTL_ENABLE:
2572 i915_perf_enable_locked(stream);
2573 return 0;
2574 case I915_PERF_IOCTL_DISABLE:
2575 i915_perf_disable_locked(stream);
2576 return 0;
2577 }
2578
2579 return -EINVAL;
2580}
2581
Robert Bragg16d98b32016-12-07 21:40:33 +00002582/**
2583 * i915_perf_ioctl - support ioctl() usage with i915 perf stream FDs
2584 * @file: An i915 perf stream file
2585 * @cmd: the ioctl request
2586 * @arg: the ioctl data
2587 *
2588 * Implementation deferred to i915_perf_ioctl_locked().
2589 *
2590 * Returns: zero on success or a negative error code. Returns -EINVAL for
2591 * an unknown ioctl request.
2592 */
Robert Braggeec688e2016-11-07 19:49:47 +00002593static long i915_perf_ioctl(struct file *file,
2594 unsigned int cmd,
2595 unsigned long arg)
2596{
2597 struct i915_perf_stream *stream = file->private_data;
2598 struct drm_i915_private *dev_priv = stream->dev_priv;
2599 long ret;
2600
2601 mutex_lock(&dev_priv->perf.lock);
2602 ret = i915_perf_ioctl_locked(stream, cmd, arg);
2603 mutex_unlock(&dev_priv->perf.lock);
2604
2605 return ret;
2606}
2607
Robert Bragg16d98b32016-12-07 21:40:33 +00002608/**
2609 * i915_perf_destroy_locked - destroy an i915 perf stream
2610 * @stream: An i915 perf stream
2611 *
2612 * Frees all resources associated with the given i915 perf @stream, disabling
2613 * any associated data capture in the process.
2614 *
2615 * Note: The &drm_i915_private->perf.lock mutex has been taken to serialize
2616 * with any non-file-operation driver hooks.
2617 */
Robert Braggeec688e2016-11-07 19:49:47 +00002618static void i915_perf_destroy_locked(struct i915_perf_stream *stream)
2619{
Robert Braggeec688e2016-11-07 19:49:47 +00002620 if (stream->enabled)
2621 i915_perf_disable_locked(stream);
2622
2623 if (stream->ops->destroy)
2624 stream->ops->destroy(stream);
2625
2626 list_del(&stream->link);
2627
Chris Wilson69df05e2016-12-18 15:37:21 +00002628 if (stream->ctx)
Chris Wilson5f09a9c2017-06-20 12:05:46 +01002629 i915_gem_context_put(stream->ctx);
Robert Braggeec688e2016-11-07 19:49:47 +00002630
2631 kfree(stream);
2632}
2633
Robert Bragg16d98b32016-12-07 21:40:33 +00002634/**
2635 * i915_perf_release - handles userspace close() of a stream file
2636 * @inode: anonymous inode associated with file
2637 * @file: An i915 perf stream file
2638 *
2639 * Cleans up any resources associated with an open i915 perf stream file.
2640 *
2641 * NB: close() can't really fail from the userspace point of view.
2642 *
2643 * Returns: zero on success or a negative error code.
2644 */
Robert Braggeec688e2016-11-07 19:49:47 +00002645static int i915_perf_release(struct inode *inode, struct file *file)
2646{
2647 struct i915_perf_stream *stream = file->private_data;
2648 struct drm_i915_private *dev_priv = stream->dev_priv;
2649
2650 mutex_lock(&dev_priv->perf.lock);
2651 i915_perf_destroy_locked(stream);
2652 mutex_unlock(&dev_priv->perf.lock);
2653
Lionel Landwerlina5af1df2019-07-09 15:33:39 +03002654 /* Release the reference the perf stream kept on the driver. */
2655 drm_dev_put(&dev_priv->drm);
2656
Robert Braggeec688e2016-11-07 19:49:47 +00002657 return 0;
2658}
2659
2660
2661static const struct file_operations fops = {
2662 .owner = THIS_MODULE,
2663 .llseek = no_llseek,
2664 .release = i915_perf_release,
2665 .poll = i915_perf_poll,
2666 .read = i915_perf_read,
2667 .unlocked_ioctl = i915_perf_ioctl,
Lionel Landwerlin191f8962017-10-24 16:27:28 +01002668 /* Our ioctl have no arguments, so it's safe to use the same function
2669 * to handle 32bits compatibility.
2670 */
2671 .compat_ioctl = i915_perf_ioctl,
Robert Braggeec688e2016-11-07 19:49:47 +00002672};
2673
2674
Robert Bragg16d98b32016-12-07 21:40:33 +00002675/**
2676 * i915_perf_open_ioctl_locked - DRM ioctl() for userspace to open a stream FD
2677 * @dev_priv: i915 device instance
2678 * @param: The open parameters passed to 'DRM_I915_PERF_OPEN`
2679 * @props: individually validated u64 property value pairs
2680 * @file: drm file
2681 *
2682 * See i915_perf_ioctl_open() for interface details.
2683 *
2684 * Implements further stream config validation and stream initialization on
2685 * behalf of i915_perf_open_ioctl() with the &drm_i915_private->perf.lock mutex
2686 * taken to serialize with any non-file-operation driver hooks.
2687 *
2688 * Note: at this point the @props have only been validated in isolation and
2689 * it's still necessary to validate that the combination of properties makes
2690 * sense.
2691 *
2692 * In the case where userspace is interested in OA unit metrics then further
2693 * config validation and stream initialization details will be handled by
2694 * i915_oa_stream_init(). The code here should only validate config state that
2695 * will be relevant to all stream types / backends.
2696 *
2697 * Returns: zero on success or a negative error code.
2698 */
Robert Braggeec688e2016-11-07 19:49:47 +00002699static int
2700i915_perf_open_ioctl_locked(struct drm_i915_private *dev_priv,
2701 struct drm_i915_perf_open_param *param,
2702 struct perf_open_properties *props,
2703 struct drm_file *file)
2704{
2705 struct i915_gem_context *specific_ctx = NULL;
2706 struct i915_perf_stream *stream = NULL;
2707 unsigned long f_flags = 0;
Robert Bragg19f81df2017-06-13 12:23:03 +01002708 bool privileged_op = true;
Robert Braggeec688e2016-11-07 19:49:47 +00002709 int stream_fd;
2710 int ret;
2711
2712 if (props->single_context) {
2713 u32 ctx_handle = props->ctx_handle;
2714 struct drm_i915_file_private *file_priv = file->driver_priv;
2715
Imre Deak635f56c2017-07-14 18:12:41 +03002716 specific_ctx = i915_gem_context_lookup(file_priv, ctx_handle);
2717 if (!specific_ctx) {
2718 DRM_DEBUG("Failed to look up context with ID %u for opening perf stream\n",
2719 ctx_handle);
2720 ret = -ENOENT;
Robert Braggeec688e2016-11-07 19:49:47 +00002721 goto err;
2722 }
2723 }
2724
Robert Bragg19f81df2017-06-13 12:23:03 +01002725 /*
2726 * On Haswell the OA unit supports clock gating off for a specific
2727 * context and in this mode there's no visibility of metrics for the
2728 * rest of the system, which we consider acceptable for a
2729 * non-privileged client.
2730 *
2731 * For Gen8+ the OA unit no longer supports clock gating off for a
2732 * specific context and the kernel can't securely stop the counters
2733 * from updating as system-wide / global values. Even though we can
2734 * filter reports based on the included context ID we can't block
2735 * clients from seeing the raw / global counter values via
2736 * MI_REPORT_PERF_COUNT commands and so consider it a privileged op to
2737 * enable the OA unit by default.
2738 */
2739 if (IS_HASWELL(dev_priv) && specific_ctx)
2740 privileged_op = false;
2741
Robert Braggccdf6342016-11-07 19:49:54 +00002742 /* Similar to perf's kernel.perf_paranoid_cpu sysctl option
2743 * we check a dev.i915.perf_stream_paranoid sysctl option
2744 * to determine if it's ok to access system wide OA counters
2745 * without CAP_SYS_ADMIN privileges.
2746 */
Robert Bragg19f81df2017-06-13 12:23:03 +01002747 if (privileged_op &&
Robert Braggccdf6342016-11-07 19:49:54 +00002748 i915_perf_stream_paranoid && !capable(CAP_SYS_ADMIN)) {
Robert Bragg77085502016-12-01 17:21:52 +00002749 DRM_DEBUG("Insufficient privileges to open system-wide i915 perf stream\n");
Robert Braggeec688e2016-11-07 19:49:47 +00002750 ret = -EACCES;
2751 goto err_ctx;
2752 }
2753
2754 stream = kzalloc(sizeof(*stream), GFP_KERNEL);
2755 if (!stream) {
2756 ret = -ENOMEM;
2757 goto err_ctx;
2758 }
2759
Robert Braggeec688e2016-11-07 19:49:47 +00002760 stream->dev_priv = dev_priv;
2761 stream->ctx = specific_ctx;
2762
Robert Braggd7965152016-11-07 19:49:52 +00002763 ret = i915_oa_stream_init(stream, param, props);
2764 if (ret)
2765 goto err_alloc;
2766
2767 /* we avoid simply assigning stream->sample_flags = props->sample_flags
2768 * to have _stream_init check the combination of sample flags more
2769 * thoroughly, but still this is the expected result at this point.
Robert Braggeec688e2016-11-07 19:49:47 +00002770 */
Robert Braggd7965152016-11-07 19:49:52 +00002771 if (WARN_ON(stream->sample_flags != props->sample_flags)) {
2772 ret = -ENODEV;
Matthew Auld22f880c2017-03-27 21:34:59 +01002773 goto err_flags;
Robert Braggd7965152016-11-07 19:49:52 +00002774 }
Robert Braggeec688e2016-11-07 19:49:47 +00002775
2776 list_add(&stream->link, &dev_priv->perf.streams);
2777
2778 if (param->flags & I915_PERF_FLAG_FD_CLOEXEC)
2779 f_flags |= O_CLOEXEC;
2780 if (param->flags & I915_PERF_FLAG_FD_NONBLOCK)
2781 f_flags |= O_NONBLOCK;
2782
2783 stream_fd = anon_inode_getfd("[i915_perf]", &fops, stream, f_flags);
2784 if (stream_fd < 0) {
2785 ret = stream_fd;
2786 goto err_open;
2787 }
2788
2789 if (!(param->flags & I915_PERF_FLAG_DISABLED))
2790 i915_perf_enable_locked(stream);
2791
Lionel Landwerlina5af1df2019-07-09 15:33:39 +03002792 /* Take a reference on the driver that will be kept with stream_fd
2793 * until its release.
2794 */
2795 drm_dev_get(&dev_priv->drm);
2796
Robert Braggeec688e2016-11-07 19:49:47 +00002797 return stream_fd;
2798
2799err_open:
2800 list_del(&stream->link);
Matthew Auld22f880c2017-03-27 21:34:59 +01002801err_flags:
Robert Braggeec688e2016-11-07 19:49:47 +00002802 if (stream->ops->destroy)
2803 stream->ops->destroy(stream);
2804err_alloc:
2805 kfree(stream);
2806err_ctx:
Chris Wilson69df05e2016-12-18 15:37:21 +00002807 if (specific_ctx)
Chris Wilson5f09a9c2017-06-20 12:05:46 +01002808 i915_gem_context_put(specific_ctx);
Robert Braggeec688e2016-11-07 19:49:47 +00002809err:
2810 return ret;
2811}
2812
Robert Bragg155e9412017-06-13 12:23:05 +01002813static u64 oa_exponent_to_ns(struct drm_i915_private *dev_priv, int exponent)
2814{
Lionel Landwerlin9f9b2792017-10-27 15:59:31 +01002815 return div64_u64(1000000000ULL * (2ULL << exponent),
Jani Nikula02584042018-12-31 16:56:41 +02002816 1000ULL * RUNTIME_INFO(dev_priv)->cs_timestamp_frequency_khz);
Robert Bragg155e9412017-06-13 12:23:05 +01002817}
2818
Robert Bragg16d98b32016-12-07 21:40:33 +00002819/**
2820 * read_properties_unlocked - validate + copy userspace stream open properties
2821 * @dev_priv: i915 device instance
2822 * @uprops: The array of u64 key value pairs given by userspace
2823 * @n_props: The number of key value pairs expected in @uprops
2824 * @props: The stream configuration built up while validating properties
Robert Braggeec688e2016-11-07 19:49:47 +00002825 *
2826 * Note this function only validates properties in isolation it doesn't
2827 * validate that the combination of properties makes sense or that all
2828 * properties necessary for a particular kind of stream have been set.
Robert Bragg16d98b32016-12-07 21:40:33 +00002829 *
2830 * Note that there currently aren't any ordering requirements for properties so
2831 * we shouldn't validate or assume anything about ordering here. This doesn't
2832 * rule out defining new properties with ordering requirements in the future.
Robert Braggeec688e2016-11-07 19:49:47 +00002833 */
2834static int read_properties_unlocked(struct drm_i915_private *dev_priv,
2835 u64 __user *uprops,
2836 u32 n_props,
2837 struct perf_open_properties *props)
2838{
2839 u64 __user *uprop = uprops;
Lionel Landwerlin701f8232017-08-03 17:58:08 +01002840 u32 i;
Robert Braggeec688e2016-11-07 19:49:47 +00002841
2842 memset(props, 0, sizeof(struct perf_open_properties));
2843
2844 if (!n_props) {
Robert Bragg77085502016-12-01 17:21:52 +00002845 DRM_DEBUG("No i915 perf properties given\n");
Robert Braggeec688e2016-11-07 19:49:47 +00002846 return -EINVAL;
2847 }
2848
2849 /* Considering that ID = 0 is reserved and assuming that we don't
2850 * (currently) expect any configurations to ever specify duplicate
2851 * values for a particular property ID then the last _PROP_MAX value is
2852 * one greater than the maximum number of properties we expect to get
2853 * from userspace.
2854 */
2855 if (n_props >= DRM_I915_PERF_PROP_MAX) {
Robert Bragg77085502016-12-01 17:21:52 +00002856 DRM_DEBUG("More i915 perf properties specified than exist\n");
Robert Braggeec688e2016-11-07 19:49:47 +00002857 return -EINVAL;
2858 }
2859
2860 for (i = 0; i < n_props; i++) {
Robert Bragg00319ba2016-11-07 19:49:55 +00002861 u64 oa_period, oa_freq_hz;
Robert Braggeec688e2016-11-07 19:49:47 +00002862 u64 id, value;
2863 int ret;
2864
2865 ret = get_user(id, uprop);
2866 if (ret)
2867 return ret;
2868
2869 ret = get_user(value, uprop + 1);
2870 if (ret)
2871 return ret;
2872
Matthew Auld0a309f92017-03-27 21:32:36 +01002873 if (id == 0 || id >= DRM_I915_PERF_PROP_MAX) {
2874 DRM_DEBUG("Unknown i915 perf property ID\n");
2875 return -EINVAL;
2876 }
2877
Robert Braggeec688e2016-11-07 19:49:47 +00002878 switch ((enum drm_i915_perf_property_id)id) {
2879 case DRM_I915_PERF_PROP_CTX_HANDLE:
2880 props->single_context = 1;
2881 props->ctx_handle = value;
2882 break;
Robert Braggd7965152016-11-07 19:49:52 +00002883 case DRM_I915_PERF_PROP_SAMPLE_OA:
Lionel Landwerlinb6dd47b2018-03-26 10:08:22 +01002884 if (value)
2885 props->sample_flags |= SAMPLE_OA_REPORT;
Robert Braggd7965152016-11-07 19:49:52 +00002886 break;
2887 case DRM_I915_PERF_PROP_OA_METRICS_SET:
Lionel Landwerlin701f8232017-08-03 17:58:08 +01002888 if (value == 0) {
Robert Bragg77085502016-12-01 17:21:52 +00002889 DRM_DEBUG("Unknown OA metric set ID\n");
Robert Braggd7965152016-11-07 19:49:52 +00002890 return -EINVAL;
2891 }
2892 props->metrics_set = value;
2893 break;
2894 case DRM_I915_PERF_PROP_OA_FORMAT:
2895 if (value == 0 || value >= I915_OA_FORMAT_MAX) {
Robert Bragg52c57c22017-05-11 16:43:29 +01002896 DRM_DEBUG("Out-of-range OA report format %llu\n",
2897 value);
Robert Braggd7965152016-11-07 19:49:52 +00002898 return -EINVAL;
2899 }
2900 if (!dev_priv->perf.oa.oa_formats[value].size) {
Robert Bragg52c57c22017-05-11 16:43:29 +01002901 DRM_DEBUG("Unsupported OA report format %llu\n",
2902 value);
Robert Braggd7965152016-11-07 19:49:52 +00002903 return -EINVAL;
2904 }
2905 props->oa_format = value;
2906 break;
2907 case DRM_I915_PERF_PROP_OA_EXPONENT:
2908 if (value > OA_EXPONENT_MAX) {
Robert Bragg77085502016-12-01 17:21:52 +00002909 DRM_DEBUG("OA timer exponent too high (> %u)\n",
2910 OA_EXPONENT_MAX);
Robert Braggd7965152016-11-07 19:49:52 +00002911 return -EINVAL;
2912 }
2913
Robert Bragg00319ba2016-11-07 19:49:55 +00002914 /* Theoretically we can program the OA unit to sample
Robert Bragg155e9412017-06-13 12:23:05 +01002915 * e.g. every 160ns for HSW, 167ns for BDW/SKL or 104ns
2916 * for BXT. We don't allow such high sampling
2917 * frequencies by default unless root.
Robert Braggd7965152016-11-07 19:49:52 +00002918 */
Robert Bragg155e9412017-06-13 12:23:05 +01002919
Robert Bragg00319ba2016-11-07 19:49:55 +00002920 BUILD_BUG_ON(sizeof(oa_period) != 8);
Robert Bragg155e9412017-06-13 12:23:05 +01002921 oa_period = oa_exponent_to_ns(dev_priv, value);
Robert Bragg00319ba2016-11-07 19:49:55 +00002922
2923 /* This check is primarily to ensure that oa_period <=
2924 * UINT32_MAX (before passing to do_div which only
2925 * accepts a u32 denominator), but we can also skip
2926 * checking anything < 1Hz which implicitly can't be
2927 * limited via an integer oa_max_sample_rate.
2928 */
2929 if (oa_period <= NSEC_PER_SEC) {
2930 u64 tmp = NSEC_PER_SEC;
2931 do_div(tmp, oa_period);
2932 oa_freq_hz = tmp;
2933 } else
2934 oa_freq_hz = 0;
2935
2936 if (oa_freq_hz > i915_oa_max_sample_rate &&
2937 !capable(CAP_SYS_ADMIN)) {
Robert Bragg77085502016-12-01 17:21:52 +00002938 DRM_DEBUG("OA exponent would exceed the max sampling frequency (sysctl dev.i915.oa_max_sample_rate) %uHz without root privileges\n",
Robert Bragg00319ba2016-11-07 19:49:55 +00002939 i915_oa_max_sample_rate);
Robert Braggd7965152016-11-07 19:49:52 +00002940 return -EACCES;
2941 }
2942
2943 props->oa_periodic = true;
2944 props->oa_period_exponent = value;
2945 break;
Matthew Auld0a309f92017-03-27 21:32:36 +01002946 case DRM_I915_PERF_PROP_MAX:
Robert Braggeec688e2016-11-07 19:49:47 +00002947 MISSING_CASE(id);
Robert Braggeec688e2016-11-07 19:49:47 +00002948 return -EINVAL;
2949 }
2950
2951 uprop += 2;
2952 }
2953
2954 return 0;
2955}
2956
Robert Bragg16d98b32016-12-07 21:40:33 +00002957/**
2958 * i915_perf_open_ioctl - DRM ioctl() for userspace to open a stream FD
2959 * @dev: drm device
2960 * @data: ioctl data copied from userspace (unvalidated)
2961 * @file: drm file
2962 *
2963 * Validates the stream open parameters given by userspace including flags
2964 * and an array of u64 key, value pair properties.
2965 *
2966 * Very little is assumed up front about the nature of the stream being
2967 * opened (for instance we don't assume it's for periodic OA unit metrics). An
2968 * i915-perf stream is expected to be a suitable interface for other forms of
2969 * buffered data written by the GPU besides periodic OA metrics.
2970 *
2971 * Note we copy the properties from userspace outside of the i915 perf
2972 * mutex to avoid an awkward lockdep with mmap_sem.
2973 *
2974 * Most of the implementation details are handled by
2975 * i915_perf_open_ioctl_locked() after taking the &drm_i915_private->perf.lock
2976 * mutex for serializing with any non-file-operation driver hooks.
2977 *
2978 * Return: A newly opened i915 Perf stream file descriptor or negative
2979 * error code on failure.
2980 */
Robert Braggeec688e2016-11-07 19:49:47 +00002981int i915_perf_open_ioctl(struct drm_device *dev, void *data,
2982 struct drm_file *file)
2983{
2984 struct drm_i915_private *dev_priv = dev->dev_private;
2985 struct drm_i915_perf_open_param *param = data;
2986 struct perf_open_properties props;
2987 u32 known_open_flags;
2988 int ret;
2989
2990 if (!dev_priv->perf.initialized) {
Robert Bragg77085502016-12-01 17:21:52 +00002991 DRM_DEBUG("i915 perf interface not available for this system\n");
Robert Braggeec688e2016-11-07 19:49:47 +00002992 return -ENOTSUPP;
2993 }
2994
2995 known_open_flags = I915_PERF_FLAG_FD_CLOEXEC |
2996 I915_PERF_FLAG_FD_NONBLOCK |
2997 I915_PERF_FLAG_DISABLED;
2998 if (param->flags & ~known_open_flags) {
Robert Bragg77085502016-12-01 17:21:52 +00002999 DRM_DEBUG("Unknown drm_i915_perf_open_param flag\n");
Robert Braggeec688e2016-11-07 19:49:47 +00003000 return -EINVAL;
3001 }
3002
3003 ret = read_properties_unlocked(dev_priv,
3004 u64_to_user_ptr(param->properties_ptr),
3005 param->num_properties,
3006 &props);
3007 if (ret)
3008 return ret;
3009
3010 mutex_lock(&dev_priv->perf.lock);
3011 ret = i915_perf_open_ioctl_locked(dev_priv, param, &props, file);
3012 mutex_unlock(&dev_priv->perf.lock);
3013
3014 return ret;
3015}
3016
Robert Bragg16d98b32016-12-07 21:40:33 +00003017/**
3018 * i915_perf_register - exposes i915-perf to userspace
3019 * @dev_priv: i915 device instance
3020 *
3021 * In particular OA metric sets are advertised under a sysfs metrics/
3022 * directory allowing userspace to enumerate valid IDs that can be
3023 * used to open an i915-perf stream.
3024 */
Robert Bragg442b8c02016-11-07 19:49:53 +00003025void i915_perf_register(struct drm_i915_private *dev_priv)
3026{
Lionel Landwerlin701f8232017-08-03 17:58:08 +01003027 int ret;
3028
Robert Bragg442b8c02016-11-07 19:49:53 +00003029 if (!dev_priv->perf.initialized)
3030 return;
3031
3032 /* To be sure we're synchronized with an attempted
3033 * i915_perf_open_ioctl(); considering that we register after
3034 * being exposed to userspace.
3035 */
3036 mutex_lock(&dev_priv->perf.lock);
3037
3038 dev_priv->perf.metrics_kobj =
3039 kobject_create_and_add("metrics",
3040 &dev_priv->drm.primary->kdev->kobj);
3041 if (!dev_priv->perf.metrics_kobj)
3042 goto exit;
3043
Chris Wilson40f75ea2017-08-10 18:57:41 +01003044 sysfs_attr_init(&dev_priv->perf.oa.test_config.sysfs_metric_id.attr);
Lionel Landwerlin701f8232017-08-03 17:58:08 +01003045
Rodrigo Vivi2dd24a92019-03-08 13:42:58 -08003046 if (INTEL_GEN(dev_priv) >= 11) {
Rodrigo Vivi993298a2019-03-01 09:27:03 -08003047 i915_perf_load_test_config_icl(dev_priv);
3048 } else if (IS_CANNONLAKE(dev_priv)) {
3049 i915_perf_load_test_config_cnl(dev_priv);
3050 } else if (IS_COFFEELAKE(dev_priv)) {
3051 if (IS_CFL_GT2(dev_priv))
3052 i915_perf_load_test_config_cflgt2(dev_priv);
3053 if (IS_CFL_GT3(dev_priv))
3054 i915_perf_load_test_config_cflgt3(dev_priv);
3055 } else if (IS_GEMINILAKE(dev_priv)) {
3056 i915_perf_load_test_config_glk(dev_priv);
3057 } else if (IS_KABYLAKE(dev_priv)) {
3058 if (IS_KBL_GT2(dev_priv))
3059 i915_perf_load_test_config_kblgt2(dev_priv);
3060 else if (IS_KBL_GT3(dev_priv))
3061 i915_perf_load_test_config_kblgt3(dev_priv);
3062 } else if (IS_BROXTON(dev_priv)) {
3063 i915_perf_load_test_config_bxt(dev_priv);
Robert Bragg19f81df2017-06-13 12:23:03 +01003064 } else if (IS_SKYLAKE(dev_priv)) {
Lionel Landwerlin701f8232017-08-03 17:58:08 +01003065 if (IS_SKL_GT2(dev_priv))
3066 i915_perf_load_test_config_sklgt2(dev_priv);
3067 else if (IS_SKL_GT3(dev_priv))
3068 i915_perf_load_test_config_sklgt3(dev_priv);
3069 else if (IS_SKL_GT4(dev_priv))
3070 i915_perf_load_test_config_sklgt4(dev_priv);
Rodrigo Vivi993298a2019-03-01 09:27:03 -08003071 } else if (IS_CHERRYVIEW(dev_priv)) {
3072 i915_perf_load_test_config_chv(dev_priv);
3073 } else if (IS_BROADWELL(dev_priv)) {
3074 i915_perf_load_test_config_bdw(dev_priv);
3075 } else if (IS_HASWELL(dev_priv)) {
3076 i915_perf_load_test_config_hsw(dev_priv);
3077}
Robert Bragg442b8c02016-11-07 19:49:53 +00003078
Lionel Landwerlin701f8232017-08-03 17:58:08 +01003079 if (dev_priv->perf.oa.test_config.id == 0)
3080 goto sysfs_error;
3081
3082 ret = sysfs_create_group(dev_priv->perf.metrics_kobj,
3083 &dev_priv->perf.oa.test_config.sysfs_metric);
3084 if (ret)
3085 goto sysfs_error;
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01003086
3087 atomic_set(&dev_priv->perf.oa.test_config.ref_count, 1);
3088
Robert Bragg19f81df2017-06-13 12:23:03 +01003089 goto exit;
3090
3091sysfs_error:
3092 kobject_put(dev_priv->perf.metrics_kobj);
3093 dev_priv->perf.metrics_kobj = NULL;
3094
Robert Bragg442b8c02016-11-07 19:49:53 +00003095exit:
3096 mutex_unlock(&dev_priv->perf.lock);
3097}
3098
Robert Bragg16d98b32016-12-07 21:40:33 +00003099/**
3100 * i915_perf_unregister - hide i915-perf from userspace
3101 * @dev_priv: i915 device instance
3102 *
3103 * i915-perf state cleanup is split up into an 'unregister' and
3104 * 'deinit' phase where the interface is first hidden from
3105 * userspace by i915_perf_unregister() before cleaning up
3106 * remaining state in i915_perf_fini().
3107 */
Robert Bragg442b8c02016-11-07 19:49:53 +00003108void i915_perf_unregister(struct drm_i915_private *dev_priv)
3109{
Robert Bragg442b8c02016-11-07 19:49:53 +00003110 if (!dev_priv->perf.metrics_kobj)
3111 return;
3112
Lionel Landwerlin701f8232017-08-03 17:58:08 +01003113 sysfs_remove_group(dev_priv->perf.metrics_kobj,
3114 &dev_priv->perf.oa.test_config.sysfs_metric);
Robert Bragg442b8c02016-11-07 19:49:53 +00003115
3116 kobject_put(dev_priv->perf.metrics_kobj);
3117 dev_priv->perf.metrics_kobj = NULL;
3118}
3119
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01003120static bool gen8_is_valid_flex_addr(struct drm_i915_private *dev_priv, u32 addr)
3121{
3122 static const i915_reg_t flex_eu_regs[] = {
3123 EU_PERF_CNTL0,
3124 EU_PERF_CNTL1,
3125 EU_PERF_CNTL2,
3126 EU_PERF_CNTL3,
3127 EU_PERF_CNTL4,
3128 EU_PERF_CNTL5,
3129 EU_PERF_CNTL6,
3130 };
3131 int i;
3132
3133 for (i = 0; i < ARRAY_SIZE(flex_eu_regs); i++) {
Lionel Landwerlin7c52a222017-11-13 23:34:52 +00003134 if (i915_mmio_reg_offset(flex_eu_regs[i]) == addr)
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01003135 return true;
3136 }
3137 return false;
3138}
3139
3140static bool gen7_is_valid_b_counter_addr(struct drm_i915_private *dev_priv, u32 addr)
3141{
Lionel Landwerlin7c52a222017-11-13 23:34:52 +00003142 return (addr >= i915_mmio_reg_offset(OASTARTTRIG1) &&
3143 addr <= i915_mmio_reg_offset(OASTARTTRIG8)) ||
3144 (addr >= i915_mmio_reg_offset(OAREPORTTRIG1) &&
3145 addr <= i915_mmio_reg_offset(OAREPORTTRIG8)) ||
3146 (addr >= i915_mmio_reg_offset(OACEC0_0) &&
3147 addr <= i915_mmio_reg_offset(OACEC7_1));
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01003148}
3149
3150static bool gen7_is_valid_mux_addr(struct drm_i915_private *dev_priv, u32 addr)
3151{
Lionel Landwerlin7c52a222017-11-13 23:34:52 +00003152 return addr == i915_mmio_reg_offset(HALF_SLICE_CHICKEN2) ||
3153 (addr >= i915_mmio_reg_offset(MICRO_BP0_0) &&
3154 addr <= i915_mmio_reg_offset(NOA_WRITE)) ||
3155 (addr >= i915_mmio_reg_offset(OA_PERFCNT1_LO) &&
3156 addr <= i915_mmio_reg_offset(OA_PERFCNT2_HI)) ||
3157 (addr >= i915_mmio_reg_offset(OA_PERFMATRIX_LO) &&
3158 addr <= i915_mmio_reg_offset(OA_PERFMATRIX_HI));
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01003159}
3160
3161static bool gen8_is_valid_mux_addr(struct drm_i915_private *dev_priv, u32 addr)
3162{
3163 return gen7_is_valid_mux_addr(dev_priv, addr) ||
Lionel Landwerlin7c52a222017-11-13 23:34:52 +00003164 addr == i915_mmio_reg_offset(WAIT_FOR_RC6_EXIT) ||
3165 (addr >= i915_mmio_reg_offset(RPM_CONFIG0) &&
3166 addr <= i915_mmio_reg_offset(NOA_CONFIG(8)));
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01003167}
3168
Lionel Landwerlin95690a02017-11-10 19:08:43 +00003169static bool gen10_is_valid_mux_addr(struct drm_i915_private *dev_priv, u32 addr)
3170{
3171 return gen8_is_valid_mux_addr(dev_priv, addr) ||
Lionel Landwerlinbf210f62019-06-02 01:58:45 +03003172 addr == i915_mmio_reg_offset(GEN10_NOA_WRITE_HIGH) ||
Lionel Landwerlin7c52a222017-11-13 23:34:52 +00003173 (addr >= i915_mmio_reg_offset(OA_PERFCNT3_LO) &&
3174 addr <= i915_mmio_reg_offset(OA_PERFCNT4_HI));
Lionel Landwerlin95690a02017-11-10 19:08:43 +00003175}
3176
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01003177static bool hsw_is_valid_mux_addr(struct drm_i915_private *dev_priv, u32 addr)
3178{
3179 return gen7_is_valid_mux_addr(dev_priv, addr) ||
3180 (addr >= 0x25100 && addr <= 0x2FF90) ||
Lionel Landwerlin7c52a222017-11-13 23:34:52 +00003181 (addr >= i915_mmio_reg_offset(HSW_MBVID2_NOA0) &&
3182 addr <= i915_mmio_reg_offset(HSW_MBVID2_NOA9)) ||
3183 addr == i915_mmio_reg_offset(HSW_MBVID2_MISR0);
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01003184}
3185
3186static bool chv_is_valid_mux_addr(struct drm_i915_private *dev_priv, u32 addr)
3187{
3188 return gen7_is_valid_mux_addr(dev_priv, addr) ||
3189 (addr >= 0x182300 && addr <= 0x1823A4);
3190}
3191
Jani Nikula739f3ab2019-01-16 11:15:19 +02003192static u32 mask_reg_value(u32 reg, u32 val)
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01003193{
3194 /* HALF_SLICE_CHICKEN2 is programmed with a the
3195 * WaDisableSTUnitPowerOptimization workaround. Make sure the value
3196 * programmed by userspace doesn't change this.
3197 */
Lionel Landwerlin7c52a222017-11-13 23:34:52 +00003198 if (i915_mmio_reg_offset(HALF_SLICE_CHICKEN2) == reg)
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01003199 val = val & ~_MASKED_BIT_ENABLE(GEN8_ST_PO_DISABLE);
3200
3201 /* WAIT_FOR_RC6_EXIT has only one bit fullfilling the function
3202 * indicated by its name and a bunch of selection fields used by OA
3203 * configs.
3204 */
Lionel Landwerlin7c52a222017-11-13 23:34:52 +00003205 if (i915_mmio_reg_offset(WAIT_FOR_RC6_EXIT) == reg)
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01003206 val = val & ~_MASKED_BIT_ENABLE(HSW_WAIT_FOR_RC6_EXIT_ENABLE);
3207
3208 return val;
3209}
3210
3211static struct i915_oa_reg *alloc_oa_regs(struct drm_i915_private *dev_priv,
3212 bool (*is_valid)(struct drm_i915_private *dev_priv, u32 addr),
3213 u32 __user *regs,
3214 u32 n_regs)
3215{
3216 struct i915_oa_reg *oa_regs;
3217 int err;
3218 u32 i;
3219
3220 if (!n_regs)
3221 return NULL;
3222
Linus Torvalds96d4f262019-01-03 18:57:57 -08003223 if (!access_ok(regs, n_regs * sizeof(u32) * 2))
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01003224 return ERR_PTR(-EFAULT);
3225
3226 /* No is_valid function means we're not allowing any register to be programmed. */
3227 GEM_BUG_ON(!is_valid);
3228 if (!is_valid)
3229 return ERR_PTR(-EINVAL);
3230
3231 oa_regs = kmalloc_array(n_regs, sizeof(*oa_regs), GFP_KERNEL);
3232 if (!oa_regs)
3233 return ERR_PTR(-ENOMEM);
3234
3235 for (i = 0; i < n_regs; i++) {
3236 u32 addr, value;
3237
3238 err = get_user(addr, regs);
3239 if (err)
3240 goto addr_err;
3241
3242 if (!is_valid(dev_priv, addr)) {
3243 DRM_DEBUG("Invalid oa_reg address: %X\n", addr);
3244 err = -EINVAL;
3245 goto addr_err;
3246 }
3247
3248 err = get_user(value, regs + 1);
3249 if (err)
3250 goto addr_err;
3251
3252 oa_regs[i].addr = _MMIO(addr);
3253 oa_regs[i].value = mask_reg_value(addr, value);
3254
3255 regs += 2;
3256 }
3257
3258 return oa_regs;
3259
3260addr_err:
3261 kfree(oa_regs);
3262 return ERR_PTR(err);
3263}
3264
3265static ssize_t show_dynamic_id(struct device *dev,
3266 struct device_attribute *attr,
3267 char *buf)
3268{
3269 struct i915_oa_config *oa_config =
3270 container_of(attr, typeof(*oa_config), sysfs_metric_id);
3271
3272 return sprintf(buf, "%d\n", oa_config->id);
3273}
3274
3275static int create_dynamic_oa_sysfs_entry(struct drm_i915_private *dev_priv,
3276 struct i915_oa_config *oa_config)
3277{
Chris Wilson28152a22017-08-03 23:37:00 +01003278 sysfs_attr_init(&oa_config->sysfs_metric_id.attr);
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01003279 oa_config->sysfs_metric_id.attr.name = "id";
3280 oa_config->sysfs_metric_id.attr.mode = S_IRUGO;
3281 oa_config->sysfs_metric_id.show = show_dynamic_id;
3282 oa_config->sysfs_metric_id.store = NULL;
3283
3284 oa_config->attrs[0] = &oa_config->sysfs_metric_id.attr;
3285 oa_config->attrs[1] = NULL;
3286
3287 oa_config->sysfs_metric.name = oa_config->uuid;
3288 oa_config->sysfs_metric.attrs = oa_config->attrs;
3289
3290 return sysfs_create_group(dev_priv->perf.metrics_kobj,
3291 &oa_config->sysfs_metric);
3292}
3293
3294/**
3295 * i915_perf_add_config_ioctl - DRM ioctl() for userspace to add a new OA config
3296 * @dev: drm device
3297 * @data: ioctl data (pointer to struct drm_i915_perf_oa_config) copied from
3298 * userspace (unvalidated)
3299 * @file: drm file
3300 *
3301 * Validates the submitted OA register to be saved into a new OA config that
3302 * can then be used for programming the OA unit and its NOA network.
3303 *
3304 * Returns: A new allocated config number to be used with the perf open ioctl
3305 * or a negative error code on failure.
3306 */
3307int i915_perf_add_config_ioctl(struct drm_device *dev, void *data,
3308 struct drm_file *file)
3309{
3310 struct drm_i915_private *dev_priv = dev->dev_private;
3311 struct drm_i915_perf_oa_config *args = data;
3312 struct i915_oa_config *oa_config, *tmp;
3313 int err, id;
3314
3315 if (!dev_priv->perf.initialized) {
3316 DRM_DEBUG("i915 perf interface not available for this system\n");
3317 return -ENOTSUPP;
3318 }
3319
3320 if (!dev_priv->perf.metrics_kobj) {
3321 DRM_DEBUG("OA metrics weren't advertised via sysfs\n");
3322 return -EINVAL;
3323 }
3324
3325 if (i915_perf_stream_paranoid && !capable(CAP_SYS_ADMIN)) {
3326 DRM_DEBUG("Insufficient privileges to add i915 OA config\n");
3327 return -EACCES;
3328 }
3329
3330 if ((!args->mux_regs_ptr || !args->n_mux_regs) &&
3331 (!args->boolean_regs_ptr || !args->n_boolean_regs) &&
3332 (!args->flex_regs_ptr || !args->n_flex_regs)) {
3333 DRM_DEBUG("No OA registers given\n");
3334 return -EINVAL;
3335 }
3336
3337 oa_config = kzalloc(sizeof(*oa_config), GFP_KERNEL);
3338 if (!oa_config) {
3339 DRM_DEBUG("Failed to allocate memory for the OA config\n");
3340 return -ENOMEM;
3341 }
3342
3343 atomic_set(&oa_config->ref_count, 1);
3344
3345 if (!uuid_is_valid(args->uuid)) {
3346 DRM_DEBUG("Invalid uuid format for OA config\n");
3347 err = -EINVAL;
3348 goto reg_err;
3349 }
3350
3351 /* Last character in oa_config->uuid will be 0 because oa_config is
3352 * kzalloc.
3353 */
3354 memcpy(oa_config->uuid, args->uuid, sizeof(args->uuid));
3355
3356 oa_config->mux_regs_len = args->n_mux_regs;
3357 oa_config->mux_regs =
3358 alloc_oa_regs(dev_priv,
3359 dev_priv->perf.oa.ops.is_valid_mux_reg,
3360 u64_to_user_ptr(args->mux_regs_ptr),
3361 args->n_mux_regs);
3362
3363 if (IS_ERR(oa_config->mux_regs)) {
3364 DRM_DEBUG("Failed to create OA config for mux_regs\n");
3365 err = PTR_ERR(oa_config->mux_regs);
3366 goto reg_err;
3367 }
3368
3369 oa_config->b_counter_regs_len = args->n_boolean_regs;
3370 oa_config->b_counter_regs =
3371 alloc_oa_regs(dev_priv,
3372 dev_priv->perf.oa.ops.is_valid_b_counter_reg,
3373 u64_to_user_ptr(args->boolean_regs_ptr),
3374 args->n_boolean_regs);
3375
3376 if (IS_ERR(oa_config->b_counter_regs)) {
3377 DRM_DEBUG("Failed to create OA config for b_counter_regs\n");
3378 err = PTR_ERR(oa_config->b_counter_regs);
3379 goto reg_err;
3380 }
3381
3382 if (INTEL_GEN(dev_priv) < 8) {
3383 if (args->n_flex_regs != 0) {
3384 err = -EINVAL;
3385 goto reg_err;
3386 }
3387 } else {
3388 oa_config->flex_regs_len = args->n_flex_regs;
3389 oa_config->flex_regs =
3390 alloc_oa_regs(dev_priv,
3391 dev_priv->perf.oa.ops.is_valid_flex_reg,
3392 u64_to_user_ptr(args->flex_regs_ptr),
3393 args->n_flex_regs);
3394
3395 if (IS_ERR(oa_config->flex_regs)) {
3396 DRM_DEBUG("Failed to create OA config for flex_regs\n");
3397 err = PTR_ERR(oa_config->flex_regs);
3398 goto reg_err;
3399 }
3400 }
3401
3402 err = mutex_lock_interruptible(&dev_priv->perf.metrics_lock);
3403 if (err)
3404 goto reg_err;
3405
3406 /* We shouldn't have too many configs, so this iteration shouldn't be
3407 * too costly.
3408 */
3409 idr_for_each_entry(&dev_priv->perf.metrics_idr, tmp, id) {
3410 if (!strcmp(tmp->uuid, oa_config->uuid)) {
3411 DRM_DEBUG("OA config already exists with this uuid\n");
3412 err = -EADDRINUSE;
3413 goto sysfs_err;
3414 }
3415 }
3416
3417 err = create_dynamic_oa_sysfs_entry(dev_priv, oa_config);
3418 if (err) {
3419 DRM_DEBUG("Failed to create sysfs entry for OA config\n");
3420 goto sysfs_err;
3421 }
3422
3423 /* Config id 0 is invalid, id 1 for kernel stored test config. */
3424 oa_config->id = idr_alloc(&dev_priv->perf.metrics_idr,
3425 oa_config, 2,
3426 0, GFP_KERNEL);
3427 if (oa_config->id < 0) {
3428 DRM_DEBUG("Failed to create sysfs entry for OA config\n");
3429 err = oa_config->id;
3430 goto sysfs_err;
3431 }
3432
3433 mutex_unlock(&dev_priv->perf.metrics_lock);
3434
Lionel Landwerlin9bd9be62018-03-26 10:08:28 +01003435 DRM_DEBUG("Added config %s id=%i\n", oa_config->uuid, oa_config->id);
3436
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01003437 return oa_config->id;
3438
3439sysfs_err:
3440 mutex_unlock(&dev_priv->perf.metrics_lock);
3441reg_err:
3442 put_oa_config(dev_priv, oa_config);
3443 DRM_DEBUG("Failed to add new OA config\n");
3444 return err;
3445}
3446
3447/**
3448 * i915_perf_remove_config_ioctl - DRM ioctl() for userspace to remove an OA config
3449 * @dev: drm device
3450 * @data: ioctl data (pointer to u64 integer) copied from userspace
3451 * @file: drm file
3452 *
3453 * Configs can be removed while being used, the will stop appearing in sysfs
3454 * and their content will be freed when the stream using the config is closed.
3455 *
3456 * Returns: 0 on success or a negative error code on failure.
3457 */
3458int i915_perf_remove_config_ioctl(struct drm_device *dev, void *data,
3459 struct drm_file *file)
3460{
3461 struct drm_i915_private *dev_priv = dev->dev_private;
3462 u64 *arg = data;
3463 struct i915_oa_config *oa_config;
3464 int ret;
3465
3466 if (!dev_priv->perf.initialized) {
3467 DRM_DEBUG("i915 perf interface not available for this system\n");
3468 return -ENOTSUPP;
3469 }
3470
3471 if (i915_perf_stream_paranoid && !capable(CAP_SYS_ADMIN)) {
3472 DRM_DEBUG("Insufficient privileges to remove i915 OA config\n");
3473 return -EACCES;
3474 }
3475
3476 ret = mutex_lock_interruptible(&dev_priv->perf.metrics_lock);
3477 if (ret)
3478 goto lock_err;
3479
3480 oa_config = idr_find(&dev_priv->perf.metrics_idr, *arg);
3481 if (!oa_config) {
3482 DRM_DEBUG("Failed to remove unknown OA config\n");
3483 ret = -ENOENT;
3484 goto config_err;
3485 }
3486
3487 GEM_BUG_ON(*arg != oa_config->id);
3488
3489 sysfs_remove_group(dev_priv->perf.metrics_kobj,
3490 &oa_config->sysfs_metric);
3491
3492 idr_remove(&dev_priv->perf.metrics_idr, *arg);
Lionel Landwerlin9bd9be62018-03-26 10:08:28 +01003493
3494 DRM_DEBUG("Removed config %s id=%i\n", oa_config->uuid, oa_config->id);
3495
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01003496 put_oa_config(dev_priv, oa_config);
3497
3498config_err:
3499 mutex_unlock(&dev_priv->perf.metrics_lock);
3500lock_err:
3501 return ret;
3502}
3503
Robert Braggccdf6342016-11-07 19:49:54 +00003504static struct ctl_table oa_table[] = {
3505 {
3506 .procname = "perf_stream_paranoid",
3507 .data = &i915_perf_stream_paranoid,
3508 .maxlen = sizeof(i915_perf_stream_paranoid),
3509 .mode = 0644,
3510 .proc_handler = proc_dointvec_minmax,
3511 .extra1 = &zero,
3512 .extra2 = &one,
3513 },
Robert Bragg00319ba2016-11-07 19:49:55 +00003514 {
3515 .procname = "oa_max_sample_rate",
3516 .data = &i915_oa_max_sample_rate,
3517 .maxlen = sizeof(i915_oa_max_sample_rate),
3518 .mode = 0644,
3519 .proc_handler = proc_dointvec_minmax,
3520 .extra1 = &zero,
3521 .extra2 = &oa_sample_rate_hard_limit,
3522 },
Robert Braggccdf6342016-11-07 19:49:54 +00003523 {}
3524};
3525
3526static struct ctl_table i915_root[] = {
3527 {
3528 .procname = "i915",
3529 .maxlen = 0,
3530 .mode = 0555,
3531 .child = oa_table,
3532 },
3533 {}
3534};
3535
3536static struct ctl_table dev_root[] = {
3537 {
3538 .procname = "dev",
3539 .maxlen = 0,
3540 .mode = 0555,
3541 .child = i915_root,
3542 },
3543 {}
3544};
3545
Robert Bragg16d98b32016-12-07 21:40:33 +00003546/**
3547 * i915_perf_init - initialize i915-perf state on module load
3548 * @dev_priv: i915 device instance
3549 *
3550 * Initializes i915-perf state without exposing anything to userspace.
3551 *
3552 * Note: i915-perf initialization is split into an 'init' and 'register'
3553 * phase with the i915_perf_register() exposing state to userspace.
3554 */
Robert Braggeec688e2016-11-07 19:49:47 +00003555void i915_perf_init(struct drm_i915_private *dev_priv)
3556{
Robert Bragg19f81df2017-06-13 12:23:03 +01003557 if (IS_HASWELL(dev_priv)) {
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01003558 dev_priv->perf.oa.ops.is_valid_b_counter_reg =
3559 gen7_is_valid_b_counter_addr;
3560 dev_priv->perf.oa.ops.is_valid_mux_reg =
3561 hsw_is_valid_mux_addr;
3562 dev_priv->perf.oa.ops.is_valid_flex_reg = NULL;
Robert Bragg19f81df2017-06-13 12:23:03 +01003563 dev_priv->perf.oa.ops.enable_metric_set = hsw_enable_metric_set;
3564 dev_priv->perf.oa.ops.disable_metric_set = hsw_disable_metric_set;
3565 dev_priv->perf.oa.ops.oa_enable = gen7_oa_enable;
3566 dev_priv->perf.oa.ops.oa_disable = gen7_oa_disable;
3567 dev_priv->perf.oa.ops.read = gen7_oa_read;
3568 dev_priv->perf.oa.ops.oa_hw_tail_read =
3569 gen7_oa_hw_tail_read;
Robert Braggd7965152016-11-07 19:49:52 +00003570
Robert Bragg19f81df2017-06-13 12:23:03 +01003571 dev_priv->perf.oa.oa_formats = hsw_oa_formats;
Chris Wilsonfb5c5512017-11-20 20:55:00 +00003572 } else if (HAS_LOGICAL_RING_CONTEXTS(dev_priv)) {
Robert Bragg19f81df2017-06-13 12:23:03 +01003573 /* Note: that although we could theoretically also support the
3574 * legacy ringbuffer mode on BDW (and earlier iterations of
3575 * this driver, before upstreaming did this) it didn't seem
3576 * worth the complexity to maintain now that BDW+ enable
3577 * execlist mode by default.
3578 */
Lionel Landwerlinba6b7c12017-11-10 19:08:41 +00003579 dev_priv->perf.oa.oa_formats = gen8_plus_oa_formats;
Robert Braggd7965152016-11-07 19:49:52 +00003580
Lionel Landwerlin701f8232017-08-03 17:58:08 +01003581 dev_priv->perf.oa.ops.oa_enable = gen8_oa_enable;
3582 dev_priv->perf.oa.ops.oa_disable = gen8_oa_disable;
3583 dev_priv->perf.oa.ops.read = gen8_oa_read;
3584 dev_priv->perf.oa.ops.oa_hw_tail_read = gen8_oa_hw_tail_read;
3585
Lucas De Marchif3ce44a2018-12-12 10:10:44 -08003586 if (IS_GEN_RANGE(dev_priv, 8, 9)) {
Lionel Landwerlinba6b7c12017-11-10 19:08:41 +00003587 dev_priv->perf.oa.ops.is_valid_b_counter_reg =
3588 gen7_is_valid_b_counter_addr;
3589 dev_priv->perf.oa.ops.is_valid_mux_reg =
3590 gen8_is_valid_mux_addr;
3591 dev_priv->perf.oa.ops.is_valid_flex_reg =
3592 gen8_is_valid_flex_addr;
Lionel Landwerlin701f8232017-08-03 17:58:08 +01003593
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01003594 if (IS_CHERRYVIEW(dev_priv)) {
3595 dev_priv->perf.oa.ops.is_valid_mux_reg =
3596 chv_is_valid_mux_addr;
3597 }
Robert Bragg155e9412017-06-13 12:23:05 +01003598
Lionel Landwerlinba6b7c12017-11-10 19:08:41 +00003599 dev_priv->perf.oa.ops.enable_metric_set = gen8_enable_metric_set;
3600 dev_priv->perf.oa.ops.disable_metric_set = gen8_disable_metric_set;
3601
Lucas De Marchicf819ef2018-12-12 10:10:43 -08003602 if (IS_GEN(dev_priv, 8)) {
Lionel Landwerlinba6b7c12017-11-10 19:08:41 +00003603 dev_priv->perf.oa.ctx_oactxctrl_offset = 0x120;
3604 dev_priv->perf.oa.ctx_flexeu0_offset = 0x2ce;
3605
3606 dev_priv->perf.oa.gen8_valid_ctx_bit = (1<<25);
3607 } else {
3608 dev_priv->perf.oa.ctx_oactxctrl_offset = 0x128;
3609 dev_priv->perf.oa.ctx_flexeu0_offset = 0x3de;
3610
3611 dev_priv->perf.oa.gen8_valid_ctx_bit = (1<<16);
3612 }
Lucas De Marchi00690002018-12-12 10:10:42 -08003613 } else if (IS_GEN_RANGE(dev_priv, 10, 11)) {
Lionel Landwerlin95690a02017-11-10 19:08:43 +00003614 dev_priv->perf.oa.ops.is_valid_b_counter_reg =
3615 gen7_is_valid_b_counter_addr;
3616 dev_priv->perf.oa.ops.is_valid_mux_reg =
3617 gen10_is_valid_mux_addr;
3618 dev_priv->perf.oa.ops.is_valid_flex_reg =
3619 gen8_is_valid_flex_addr;
3620
3621 dev_priv->perf.oa.ops.enable_metric_set = gen8_enable_metric_set;
3622 dev_priv->perf.oa.ops.disable_metric_set = gen10_disable_metric_set;
3623
Lionel Landwerlin8dcfdfb2019-06-10 11:19:14 +03003624 if (IS_GEN(dev_priv, 10)) {
3625 dev_priv->perf.oa.ctx_oactxctrl_offset = 0x128;
3626 dev_priv->perf.oa.ctx_flexeu0_offset = 0x3de;
3627 } else {
3628 dev_priv->perf.oa.ctx_oactxctrl_offset = 0x124;
3629 dev_priv->perf.oa.ctx_flexeu0_offset = 0x78e;
3630 }
Lionel Landwerlin95690a02017-11-10 19:08:43 +00003631 dev_priv->perf.oa.gen8_valid_ctx_bit = (1<<16);
Robert Bragg19f81df2017-06-13 12:23:03 +01003632 }
Robert Bragg19f81df2017-06-13 12:23:03 +01003633 }
3634
Lionel Landwerlin9f9b2792017-10-27 15:59:31 +01003635 if (dev_priv->perf.oa.ops.enable_metric_set) {
Robert Bragg19f81df2017-06-13 12:23:03 +01003636 hrtimer_init(&dev_priv->perf.oa.poll_check_timer,
3637 CLOCK_MONOTONIC, HRTIMER_MODE_REL);
3638 dev_priv->perf.oa.poll_check_timer.function = oa_poll_check_timer_cb;
3639 init_waitqueue_head(&dev_priv->perf.oa.poll_wq);
3640
3641 INIT_LIST_HEAD(&dev_priv->perf.streams);
3642 mutex_init(&dev_priv->perf.lock);
Robert Bragg19f81df2017-06-13 12:23:03 +01003643 spin_lock_init(&dev_priv->perf.oa.oa_buffer.ptr_lock);
3644
Lionel Landwerlin9f9b2792017-10-27 15:59:31 +01003645 oa_sample_rate_hard_limit = 1000 *
Jani Nikula02584042018-12-31 16:56:41 +02003646 (RUNTIME_INFO(dev_priv)->cs_timestamp_frequency_khz / 2);
Robert Bragg19f81df2017-06-13 12:23:03 +01003647 dev_priv->perf.sysctl_header = register_sysctl_table(dev_root);
3648
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01003649 mutex_init(&dev_priv->perf.metrics_lock);
3650 idr_init(&dev_priv->perf.metrics_idr);
3651
Robert Bragg19f81df2017-06-13 12:23:03 +01003652 dev_priv->perf.initialized = true;
3653 }
Robert Braggeec688e2016-11-07 19:49:47 +00003654}
3655
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01003656static int destroy_config(int id, void *p, void *data)
3657{
3658 struct drm_i915_private *dev_priv = data;
3659 struct i915_oa_config *oa_config = p;
3660
3661 put_oa_config(dev_priv, oa_config);
3662
3663 return 0;
3664}
3665
Robert Bragg16d98b32016-12-07 21:40:33 +00003666/**
3667 * i915_perf_fini - Counter part to i915_perf_init()
3668 * @dev_priv: i915 device instance
3669 */
Robert Braggeec688e2016-11-07 19:49:47 +00003670void i915_perf_fini(struct drm_i915_private *dev_priv)
3671{
3672 if (!dev_priv->perf.initialized)
3673 return;
3674
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01003675 idr_for_each(&dev_priv->perf.metrics_idr, destroy_config, dev_priv);
3676 idr_destroy(&dev_priv->perf.metrics_idr);
3677
Robert Braggccdf6342016-11-07 19:49:54 +00003678 unregister_sysctl_table(dev_priv->perf.sysctl_header);
3679
Robert Braggd7965152016-11-07 19:49:52 +00003680 memset(&dev_priv->perf.oa.ops, 0, sizeof(dev_priv->perf.oa.ops));
Robert Bragg19f81df2017-06-13 12:23:03 +01003681
Robert Braggeec688e2016-11-07 19:49:47 +00003682 dev_priv->perf.initialized = false;
3683}