blob: 05e941cd1065f3d0512685c47484e0a878b7f635 [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"
Chris Wilsona5efcde2019-10-11 20:03:17 +0100199#include "gt/intel_engine_pm.h"
Lionel Landwerlin9a613632019-10-10 16:05:19 +0100200#include "gt/intel_engine_user.h"
Chris Wilson70a2b432020-12-09 23:36:17 +0000201#include "gt/intel_execlists_submission.h"
Chris Wilson45233ab2020-12-16 13:54:52 +0000202#include "gt/intel_gpu_commands.h"
Lionel Landwerlindaed3e42019-10-12 08:23:07 +0100203#include "gt/intel_gt.h"
Chris Wilsonf1705232020-12-23 12:23:59 +0000204#include "gt/intel_gt_clock_utils.h"
Chris Wilsona0d3fdb2020-12-19 02:03:42 +0000205#include "gt/intel_lrc.h"
Chris Wilson2871ea82019-10-24 11:03:44 +0100206#include "gt/intel_ring.h"
Chris Wilson112ed2d2019-04-24 18:48:39 +0100207
Robert Braggeec688e2016-11-07 19:49:47 +0000208#include "i915_drv.h"
Jani Nikuladb94e9f2019-08-08 16:42:44 +0300209#include "i915_perf.h"
Robert Braggd7965152016-11-07 19:49:52 +0000210
Joonas Lahtinenfe841682018-11-16 15:55:09 +0200211/* HW requires this to be a power of two, between 128k and 16M, though driver
212 * is currently generally designed assuming the largest 16M size is used such
213 * that the overflow cases are unlikely in normal operation.
214 */
215#define OA_BUFFER_SIZE SZ_16M
216
217#define OA_TAKEN(tail, head) ((tail - head) & (OA_BUFFER_SIZE - 1))
Robert Braggd7965152016-11-07 19:49:52 +0000218
Robert Bragg0dd860c2017-05-11 16:43:28 +0100219/**
220 * DOC: OA Tail Pointer Race
221 *
222 * There's a HW race condition between OA unit tail pointer register updates and
Robert Braggd7965152016-11-07 19:49:52 +0000223 * writes to memory whereby the tail pointer can sometimes get ahead of what's
Robert Bragg0dd860c2017-05-11 16:43:28 +0100224 * been written out to the OA buffer so far (in terms of what's visible to the
225 * CPU).
Robert Braggd7965152016-11-07 19:49:52 +0000226 *
Robert Bragg0dd860c2017-05-11 16:43:28 +0100227 * Although this can be observed explicitly while copying reports to userspace
228 * by checking for a zeroed report-id field in tail reports, we want to account
Lionel Landwerlind1df41e2020-03-24 11:54:55 -0700229 * for this earlier, as part of the oa_buffer_check_unlocked to avoid lots of
230 * redundant read() attempts.
Robert Braggd7965152016-11-07 19:49:52 +0000231 *
Lionel Landwerlind1df41e2020-03-24 11:54:55 -0700232 * We workaround this issue in oa_buffer_check_unlocked() by reading the reports
233 * in the OA buffer, starting from the tail reported by the HW until we find a
234 * report with its first 2 dwords not 0 meaning its previous report is
235 * completely in memory and ready to be read. Those dwords are also set to 0
236 * once read and the whole buffer is cleared upon OA buffer initialization. The
237 * first dword is the reason for this report while the second is the timestamp,
238 * making the chances of having those 2 fields at 0 fairly unlikely. A more
239 * detailed explanation is available in oa_buffer_check_unlocked().
Robert Bragg0dd860c2017-05-11 16:43:28 +0100240 *
241 * Most of the implementation details for this workaround are in
Robert Bragg19f81df2017-06-13 12:23:03 +0100242 * oa_buffer_check_unlocked() and _append_oa_reports()
Robert Bragg0dd860c2017-05-11 16:43:28 +0100243 *
244 * Note for posterity: previously the driver used to define an effective tail
245 * pointer that lagged the real pointer by a 'tail margin' measured in bytes
246 * derived from %OA_TAIL_MARGIN_NSEC and the configured sampling frequency.
247 * This was flawed considering that the OA unit may also automatically generate
248 * non-periodic reports (such as on context switch) or the OA unit may be
249 * enabled without any periodic sampling.
Robert Braggd7965152016-11-07 19:49:52 +0000250 */
251#define OA_TAIL_MARGIN_NSEC 100000ULL
Robert Bragg0dd860c2017-05-11 16:43:28 +0100252#define INVALID_TAIL_PTR 0xffffffff
Robert Braggd7965152016-11-07 19:49:52 +0000253
Lionel Landwerlin4ef10fe2020-03-24 11:54:57 -0700254/* The default frequency for checking whether the OA unit has written new
255 * reports to the circular OA buffer...
Robert Braggd7965152016-11-07 19:49:52 +0000256 */
Lionel Landwerlin4ef10fe2020-03-24 11:54:57 -0700257#define DEFAULT_POLL_FREQUENCY_HZ 200
258#define DEFAULT_POLL_PERIOD_NS (NSEC_PER_SEC / DEFAULT_POLL_FREQUENCY_HZ)
Robert Braggd7965152016-11-07 19:49:52 +0000259
Robert Braggccdf6342016-11-07 19:49:54 +0000260/* for sysctl proc_dointvec_minmax of dev.i915.perf_stream_paranoid */
Robert Braggccdf6342016-11-07 19:49:54 +0000261static u32 i915_perf_stream_paranoid = true;
262
Robert Braggd7965152016-11-07 19:49:52 +0000263/* The maximum exponent the hardware accepts is 63 (essentially it selects one
264 * of the 64bit timestamp bits to trigger reports from) but there's currently
265 * no known use case for sampling as infrequently as once per 47 thousand years.
266 *
267 * Since the timestamps included in OA reports are only 32bits it seems
268 * reasonable to limit the OA exponent where it's still possible to account for
269 * overflow in OA report timestamps.
270 */
271#define OA_EXPONENT_MAX 31
272
273#define INVALID_CTX_ID 0xffffffff
274
Robert Bragg19f81df2017-06-13 12:23:03 +0100275/* On Gen8+ automatically triggered OA reports include a 'reason' field... */
276#define OAREPORT_REASON_MASK 0x3f
Lionel Landwerlin00a7f0d2019-10-25 12:37:46 -0700277#define OAREPORT_REASON_MASK_EXTENDED 0x7f
Robert Bragg19f81df2017-06-13 12:23:03 +0100278#define OAREPORT_REASON_SHIFT 19
279#define OAREPORT_REASON_TIMER (1<<0)
280#define OAREPORT_REASON_CTX_SWITCH (1<<3)
281#define OAREPORT_REASON_CLK_RATIO (1<<5)
282
Robert Braggd7965152016-11-07 19:49:52 +0000283
Robert Bragg00319ba2016-11-07 19:49:55 +0000284/* For sysctl proc_dointvec_minmax of i915_oa_max_sample_rate
285 *
Robert Bragg155e9412017-06-13 12:23:05 +0100286 * The highest sampling frequency we can theoretically program the OA unit
287 * with is always half the timestamp frequency: E.g. 6.25Mhz for Haswell.
288 *
289 * Initialized just before we register the sysctl parameter.
Robert Bragg00319ba2016-11-07 19:49:55 +0000290 */
Robert Bragg155e9412017-06-13 12:23:05 +0100291static int oa_sample_rate_hard_limit;
Robert Bragg00319ba2016-11-07 19:49:55 +0000292
293/* Theoretically we can program the OA unit to sample every 160ns but don't
294 * allow that by default unless root...
295 *
296 * The default threshold of 100000Hz is based on perf's similar
297 * kernel.perf_event_max_sample_rate sysctl parameter.
298 */
299static u32 i915_oa_max_sample_rate = 100000;
300
Robert Braggd7965152016-11-07 19:49:52 +0000301/* XXX: beware if future OA HW adds new report formats that the current
302 * code assumes all reports have a power-of-two size and ~(size - 1) can
303 * be used as a mask to align the OA tail pointer.
304 */
Umesh Nerlige Ramappa0f15c5b2021-02-08 09:40:28 -0800305static const struct i915_oa_format oa_formats[I915_OA_FORMAT_MAX] = {
Robert Braggd7965152016-11-07 19:49:52 +0000306 [I915_OA_FORMAT_A13] = { 0, 64 },
307 [I915_OA_FORMAT_A29] = { 1, 128 },
308 [I915_OA_FORMAT_A13_B8_C8] = { 2, 128 },
309 /* A29_B8_C8 Disallowed as 192 bytes doesn't factor into buffer size */
310 [I915_OA_FORMAT_B4_C8] = { 4, 64 },
311 [I915_OA_FORMAT_A45_B8_C8] = { 5, 256 },
312 [I915_OA_FORMAT_B4_C8_A16] = { 6, 128 },
313 [I915_OA_FORMAT_C4_B8] = { 7, 64 },
Robert Bragg19f81df2017-06-13 12:23:03 +0100314 [I915_OA_FORMAT_A12] = { 0, 64 },
315 [I915_OA_FORMAT_A12_B8_C8] = { 2, 128 },
316 [I915_OA_FORMAT_A32u40_A4u32_B8_C8] = { 5, 256 },
Lionel Landwerlin00a7f0d2019-10-25 12:37:46 -0700317};
318
Robert Braggd7965152016-11-07 19:49:52 +0000319#define SAMPLE_OA_REPORT (1<<0)
Robert Braggeec688e2016-11-07 19:49:47 +0000320
Robert Bragg16d98b32016-12-07 21:40:33 +0000321/**
322 * struct perf_open_properties - for validated properties given to open a stream
323 * @sample_flags: `DRM_I915_PERF_PROP_SAMPLE_*` properties are tracked as flags
324 * @single_context: Whether a single or all gpu contexts should be monitored
Lionel Landwerlin9cd20ef2019-10-14 21:14:04 +0100325 * @hold_preemption: Whether the preemption is disabled for the filtered
326 * context
Robert Bragg16d98b32016-12-07 21:40:33 +0000327 * @ctx_handle: A gem ctx handle for use with @single_context
328 * @metrics_set: An ID for an OA unit metric set advertised via sysfs
329 * @oa_format: An OA unit HW report format
330 * @oa_periodic: Whether to enable periodic OA unit sampling
331 * @oa_period_exponent: The OA unit sampling period is derived from this
Lionel Landwerlin9a613632019-10-10 16:05:19 +0100332 * @engine: The engine (typically rcs0) being monitored by the OA unit
Lionel Landwerlin11ecbdd2020-03-17 15:22:22 +0200333 * @has_sseu: Whether @sseu was specified by userspace
334 * @sseu: internal SSEU configuration computed either from the userspace
335 * specified configuration in the opening parameters or a default value
336 * (see get_default_sseu_config())
Lionel Landwerlin4ef10fe2020-03-24 11:54:57 -0700337 * @poll_oa_period: The period in nanoseconds at which the CPU will check for OA
338 * data availability
Robert Bragg16d98b32016-12-07 21:40:33 +0000339 *
340 * As read_properties_unlocked() enumerates and validates the properties given
341 * to open a stream of metrics the configuration is built up in the structure
342 * which starts out zero initialized.
343 */
Robert Braggeec688e2016-11-07 19:49:47 +0000344struct perf_open_properties {
345 u32 sample_flags;
346
347 u64 single_context:1;
Lionel Landwerlin9cd20ef2019-10-14 21:14:04 +0100348 u64 hold_preemption:1;
Robert Braggeec688e2016-11-07 19:49:47 +0000349 u64 ctx_handle;
Robert Braggd7965152016-11-07 19:49:52 +0000350
351 /* OA sampling state */
352 int metrics_set;
353 int oa_format;
354 bool oa_periodic;
355 int oa_period_exponent;
Lionel Landwerlin9a613632019-10-10 16:05:19 +0100356
357 struct intel_engine_cs *engine;
Lionel Landwerlin11ecbdd2020-03-17 15:22:22 +0200358
359 bool has_sseu;
360 struct intel_sseu sseu;
Lionel Landwerlin4ef10fe2020-03-24 11:54:57 -0700361
362 u64 poll_oa_period;
Robert Braggeec688e2016-11-07 19:49:47 +0000363};
364
Lionel Landwerlin6a450082019-10-12 08:23:06 +0100365struct i915_oa_config_bo {
366 struct llist_node node;
367
368 struct i915_oa_config *oa_config;
369 struct i915_vma *vma;
370};
371
Venkata Sandeep Dhanalakota3dc716fd2019-12-13 07:51:51 -0800372static struct ctl_table_header *sysctl_header;
373
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -0700374static enum hrtimer_restart oa_poll_check_timer_cb(struct hrtimer *hrtimer);
375
Lionel Landwerlin6a450082019-10-12 08:23:06 +0100376void i915_oa_config_release(struct kref *ref)
Lionel Landwerlinf89823c2017-08-03 18:05:50 +0100377{
Lionel Landwerlin6a450082019-10-12 08:23:06 +0100378 struct i915_oa_config *oa_config =
379 container_of(ref, typeof(*oa_config), ref);
380
Chris Wilsonc2fba932019-10-13 10:52:11 +0100381 kfree(oa_config->flex_regs);
382 kfree(oa_config->b_counter_regs);
383 kfree(oa_config->mux_regs);
Lionel Landwerlin6a450082019-10-12 08:23:06 +0100384
385 kfree_rcu(oa_config, rcu);
Lionel Landwerlinf89823c2017-08-03 18:05:50 +0100386}
387
Lionel Landwerlin6a450082019-10-12 08:23:06 +0100388struct i915_oa_config *
389i915_perf_get_oa_config(struct i915_perf *perf, int metrics_set)
Lionel Landwerlinf89823c2017-08-03 18:05:50 +0100390{
Lionel Landwerlin6a450082019-10-12 08:23:06 +0100391 struct i915_oa_config *oa_config;
Lionel Landwerlinf89823c2017-08-03 18:05:50 +0100392
Lionel Landwerlin6a450082019-10-12 08:23:06 +0100393 rcu_read_lock();
Lionel Landwerlin9aba9c12020-03-17 15:22:20 +0200394 oa_config = idr_find(&perf->metrics_idr, metrics_set);
Lionel Landwerlin6a450082019-10-12 08:23:06 +0100395 if (oa_config)
396 oa_config = i915_oa_config_get(oa_config);
397 rcu_read_unlock();
Lionel Landwerlinf89823c2017-08-03 18:05:50 +0100398
Lionel Landwerlin6a450082019-10-12 08:23:06 +0100399 return oa_config;
400}
Lionel Landwerlinf89823c2017-08-03 18:05:50 +0100401
Lionel Landwerlin6a450082019-10-12 08:23:06 +0100402static void free_oa_config_bo(struct i915_oa_config_bo *oa_bo)
403{
404 i915_oa_config_put(oa_bo->oa_config);
405 i915_vma_put(oa_bo->vma);
406 kfree(oa_bo);
Lionel Landwerlinf89823c2017-08-03 18:05:50 +0100407}
408
Lionel Landwerlin00a7f0d2019-10-25 12:37:46 -0700409static u32 gen12_oa_hw_tail_read(struct i915_perf_stream *stream)
410{
411 struct intel_uncore *uncore = stream->uncore;
412
413 return intel_uncore_read(uncore, GEN12_OAG_OATAILPTR) &
414 GEN12_OAG_OATAILPTR_MASK;
415}
416
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -0700417static u32 gen8_oa_hw_tail_read(struct i915_perf_stream *stream)
Robert Bragg19f81df2017-06-13 12:23:03 +0100418{
Chris Wilson52111c42019-10-10 16:05:20 +0100419 struct intel_uncore *uncore = stream->uncore;
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -0700420
Chris Wilson8f8b1172019-10-07 22:09:41 +0100421 return intel_uncore_read(uncore, GEN8_OATAILPTR) & GEN8_OATAILPTR_MASK;
Robert Bragg19f81df2017-06-13 12:23:03 +0100422}
423
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -0700424static u32 gen7_oa_hw_tail_read(struct i915_perf_stream *stream)
Robert Bragg19f81df2017-06-13 12:23:03 +0100425{
Chris Wilson52111c42019-10-10 16:05:20 +0100426 struct intel_uncore *uncore = stream->uncore;
Chris Wilson8f8b1172019-10-07 22:09:41 +0100427 u32 oastatus1 = intel_uncore_read(uncore, GEN7_OASTATUS1);
Robert Bragg19f81df2017-06-13 12:23:03 +0100428
429 return oastatus1 & GEN7_OASTATUS1_TAIL_MASK;
430}
431
Robert Bragg0dd860c2017-05-11 16:43:28 +0100432/**
Robert Bragg19f81df2017-06-13 12:23:03 +0100433 * oa_buffer_check_unlocked - check for data and update tail ptr state
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -0700434 * @stream: i915 stream instance
Robert Braggd7965152016-11-07 19:49:52 +0000435 *
Robert Bragg0dd860c2017-05-11 16:43:28 +0100436 * This is either called via fops (for blocking reads in user ctx) or the poll
437 * check hrtimer (atomic ctx) to check the OA buffer tail pointer and check
438 * if there is data available for userspace to read.
Robert Braggd7965152016-11-07 19:49:52 +0000439 *
Robert Bragg0dd860c2017-05-11 16:43:28 +0100440 * This function is central to providing a workaround for the OA unit tail
441 * pointer having a race with respect to what data is visible to the CPU.
442 * It is responsible for reading tail pointers from the hardware and giving
443 * the pointers time to 'age' before they are made available for reading.
444 * (See description of OA_TAIL_MARGIN_NSEC above for further details.)
445 *
446 * Besides returning true when there is data available to read() this function
Lionel Landwerlind1df41e2020-03-24 11:54:55 -0700447 * also updates the tail, aging_tail and aging_timestamp in the oa_buffer
448 * object.
Robert Bragg0dd860c2017-05-11 16:43:28 +0100449 *
450 * Note: It's safe to read OA config state here unlocked, assuming that this is
451 * only called while the stream is enabled, while the global OA configuration
452 * can't be modified.
453 *
454 * Returns: %true if the OA buffer contains data, else %false
Robert Braggd7965152016-11-07 19:49:52 +0000455 */
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -0700456static bool oa_buffer_check_unlocked(struct i915_perf_stream *stream)
Robert Braggd7965152016-11-07 19:49:52 +0000457{
Lionel Landwerlind1df41e2020-03-24 11:54:55 -0700458 u32 gtt_offset = i915_ggtt_offset(stream->oa_buffer.vma);
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -0700459 int report_size = stream->oa_buffer.format_size;
Robert Bragg0dd860c2017-05-11 16:43:28 +0100460 unsigned long flags;
Lionel Landwerlind16e1372020-03-30 12:14:11 +0300461 bool pollin;
Lionel Landwerlind1df41e2020-03-24 11:54:55 -0700462 u32 hw_tail;
Robert Bragg0dd860c2017-05-11 16:43:28 +0100463 u64 now;
Robert Braggd7965152016-11-07 19:49:52 +0000464
Robert Bragg0dd860c2017-05-11 16:43:28 +0100465 /* We have to consider the (unlikely) possibility that read() errors
Lionel Landwerlind1df41e2020-03-24 11:54:55 -0700466 * could result in an OA buffer reset which might reset the head and
467 * tail state.
Robert Bragg0dd860c2017-05-11 16:43:28 +0100468 */
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -0700469 spin_lock_irqsave(&stream->oa_buffer.ptr_lock, flags);
Robert Bragg0dd860c2017-05-11 16:43:28 +0100470
Chris Wilson8f8b1172019-10-07 22:09:41 +0100471 hw_tail = stream->perf->ops.oa_hw_tail_read(stream);
Robert Bragg0dd860c2017-05-11 16:43:28 +0100472
473 /* The tail pointer increases in 64 byte increments,
474 * not in report_size steps...
475 */
476 hw_tail &= ~(report_size - 1);
477
478 now = ktime_get_mono_fast_ns();
479
Lionel Landwerlind1df41e2020-03-24 11:54:55 -0700480 if (hw_tail == stream->oa_buffer.aging_tail &&
481 (now - stream->oa_buffer.aging_timestamp) > OA_TAIL_MARGIN_NSEC) {
482 /* If the HW tail hasn't move since the last check and the HW
483 * tail has been aging for long enough, declare it the new
484 * tail.
Robert Bragg0dd860c2017-05-11 16:43:28 +0100485 */
Lionel Landwerlind1df41e2020-03-24 11:54:55 -0700486 stream->oa_buffer.tail = stream->oa_buffer.aging_tail;
487 } else {
488 u32 head, tail, aged_tail;
489
490 /* NB: The head we observe here might effectively be a little
491 * out of date. If a read() is in progress, the head could be
492 * anywhere between this head and stream->oa_buffer.tail.
493 */
494 head = stream->oa_buffer.head - gtt_offset;
495 aged_tail = stream->oa_buffer.tail - gtt_offset;
496
497 hw_tail -= gtt_offset;
498 tail = hw_tail;
499
500 /* Walk the stream backward until we find a report with dword 0
501 * & 1 not at 0. Since the circular buffer pointers progress by
502 * increments of 64 bytes and that reports can be up to 256
503 * bytes long, we can't tell whether a report has fully landed
504 * in memory before the first 2 dwords of the following report
505 * have effectively landed.
506 *
507 * This is assuming that the writes of the OA unit land in
508 * memory in the order they were written to.
509 * If not : (╯°□°)╯︵ ┻━┻
510 */
511 while (OA_TAKEN(tail, aged_tail) >= report_size) {
512 u32 *report32 = (void *)(stream->oa_buffer.vaddr + tail);
513
514 if (report32[0] != 0 || report32[1] != 0)
515 break;
516
517 tail = (tail - report_size) & (OA_BUFFER_SIZE - 1);
Robert Bragg0dd860c2017-05-11 16:43:28 +0100518 }
Lionel Landwerlind1df41e2020-03-24 11:54:55 -0700519
520 if (OA_TAKEN(hw_tail, tail) > report_size &&
521 __ratelimit(&stream->perf->tail_pointer_race))
522 DRM_NOTE("unlanded report(s) head=0x%x "
523 "tail=0x%x hw_tail=0x%x\n",
524 head, tail, hw_tail);
525
526 stream->oa_buffer.tail = gtt_offset + tail;
527 stream->oa_buffer.aging_tail = gtt_offset + hw_tail;
528 stream->oa_buffer.aging_timestamp = now;
Robert Bragg0dd860c2017-05-11 16:43:28 +0100529 }
530
Lionel Landwerlind16e1372020-03-30 12:14:11 +0300531 pollin = OA_TAKEN(stream->oa_buffer.tail - gtt_offset,
532 stream->oa_buffer.head - gtt_offset) >= report_size;
533
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -0700534 spin_unlock_irqrestore(&stream->oa_buffer.ptr_lock, flags);
Robert Bragg0dd860c2017-05-11 16:43:28 +0100535
Lionel Landwerlind16e1372020-03-30 12:14:11 +0300536 return pollin;
Robert Braggd7965152016-11-07 19:49:52 +0000537}
538
539/**
Robert Bragg16d98b32016-12-07 21:40:33 +0000540 * append_oa_status - Appends a status record to a userspace read() buffer.
541 * @stream: An i915-perf stream opened for OA metrics
542 * @buf: destination buffer given by userspace
543 * @count: the number of bytes userspace wants to read
544 * @offset: (inout): the current position for writing into @buf
545 * @type: The kind of status to report to userspace
546 *
547 * Writes a status record (such as `DRM_I915_PERF_RECORD_OA_REPORT_LOST`)
548 * into the userspace read() buffer.
549 *
550 * The @buf @offset will only be updated on success.
551 *
552 * Returns: 0 on success, negative error code on failure.
Robert Braggd7965152016-11-07 19:49:52 +0000553 */
554static int append_oa_status(struct i915_perf_stream *stream,
555 char __user *buf,
556 size_t count,
557 size_t *offset,
558 enum drm_i915_perf_record_type type)
559{
560 struct drm_i915_perf_record_header header = { type, 0, sizeof(header) };
561
562 if ((count - *offset) < header.size)
563 return -ENOSPC;
564
565 if (copy_to_user(buf + *offset, &header, sizeof(header)))
566 return -EFAULT;
567
568 (*offset) += header.size;
569
570 return 0;
571}
572
573/**
Robert Bragg16d98b32016-12-07 21:40:33 +0000574 * append_oa_sample - Copies single OA report into userspace read() buffer.
575 * @stream: An i915-perf stream opened for OA metrics
576 * @buf: destination buffer given by userspace
577 * @count: the number of bytes userspace wants to read
578 * @offset: (inout): the current position for writing into @buf
579 * @report: A single OA report to (optionally) include as part of the sample
580 *
581 * The contents of a sample are configured through `DRM_I915_PERF_PROP_SAMPLE_*`
582 * properties when opening a stream, tracked as `stream->sample_flags`. This
583 * function copies the requested components of a single sample to the given
584 * read() @buf.
585 *
586 * The @buf @offset will only be updated on success.
587 *
588 * Returns: 0 on success, negative error code on failure.
Robert Braggd7965152016-11-07 19:49:52 +0000589 */
590static int append_oa_sample(struct i915_perf_stream *stream,
591 char __user *buf,
592 size_t count,
593 size_t *offset,
594 const u8 *report)
595{
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -0700596 int report_size = stream->oa_buffer.format_size;
Robert Braggd7965152016-11-07 19:49:52 +0000597 struct drm_i915_perf_record_header header;
Robert Braggd7965152016-11-07 19:49:52 +0000598
599 header.type = DRM_I915_PERF_RECORD_SAMPLE;
600 header.pad = 0;
601 header.size = stream->sample_size;
602
603 if ((count - *offset) < header.size)
604 return -ENOSPC;
605
606 buf += *offset;
607 if (copy_to_user(buf, &header, sizeof(header)))
608 return -EFAULT;
609 buf += sizeof(header);
610
Umesh Nerlige Ramappabe0bdd62021-03-05 13:09:47 -0800611 if (copy_to_user(buf, report, report_size))
612 return -EFAULT;
Robert Braggd7965152016-11-07 19:49:52 +0000613
614 (*offset) += header.size;
615
616 return 0;
617}
618
619/**
Mauro Carvalho Chehabe9d28712020-11-16 11:18:01 +0100620 * gen8_append_oa_reports - Copies all buffered OA reports into
621 * userspace read() buffer.
Robert Braggd7965152016-11-07 19:49:52 +0000622 * @stream: An i915-perf stream opened for OA metrics
623 * @buf: destination buffer given by userspace
624 * @count: the number of bytes userspace wants to read
625 * @offset: (inout): the current position for writing into @buf
Robert Braggd7965152016-11-07 19:49:52 +0000626 *
Robert Bragg16d98b32016-12-07 21:40:33 +0000627 * Notably any error condition resulting in a short read (-%ENOSPC or
628 * -%EFAULT) will be returned even though one or more records may
Robert Braggd7965152016-11-07 19:49:52 +0000629 * have been successfully copied. In this case it's up to the caller
630 * to decide if the error should be squashed before returning to
631 * userspace.
632 *
633 * Note: reports are consumed from the head, and appended to the
Robert Bragge81b3a52017-05-11 16:43:24 +0100634 * tail, so the tail chases the head?... If you think that's mad
Robert Braggd7965152016-11-07 19:49:52 +0000635 * and back-to-front you're not alone, but this follows the
636 * Gen PRM naming convention.
Robert Bragg16d98b32016-12-07 21:40:33 +0000637 *
638 * Returns: 0 on success, negative error code on failure.
Robert Braggd7965152016-11-07 19:49:52 +0000639 */
Robert Bragg19f81df2017-06-13 12:23:03 +0100640static int gen8_append_oa_reports(struct i915_perf_stream *stream,
641 char __user *buf,
642 size_t count,
643 size_t *offset)
644{
Chris Wilson52111c42019-10-10 16:05:20 +0100645 struct intel_uncore *uncore = stream->uncore;
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -0700646 int report_size = stream->oa_buffer.format_size;
647 u8 *oa_buf_base = stream->oa_buffer.vaddr;
648 u32 gtt_offset = i915_ggtt_offset(stream->oa_buffer.vma);
Joonas Lahtinenfe841682018-11-16 15:55:09 +0200649 u32 mask = (OA_BUFFER_SIZE - 1);
Robert Bragg19f81df2017-06-13 12:23:03 +0100650 size_t start_offset = *offset;
651 unsigned long flags;
Robert Bragg19f81df2017-06-13 12:23:03 +0100652 u32 head, tail;
653 u32 taken;
654 int ret = 0;
655
Pankaj Bharadiyaa9f236d2020-01-15 09:14:54 +0530656 if (drm_WARN_ON(&uncore->i915->drm, !stream->enabled))
Robert Bragg19f81df2017-06-13 12:23:03 +0100657 return -EIO;
658
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -0700659 spin_lock_irqsave(&stream->oa_buffer.ptr_lock, flags);
Robert Bragg19f81df2017-06-13 12:23:03 +0100660
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -0700661 head = stream->oa_buffer.head;
Lionel Landwerlind1df41e2020-03-24 11:54:55 -0700662 tail = stream->oa_buffer.tail;
Robert Bragg19f81df2017-06-13 12:23:03 +0100663
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -0700664 spin_unlock_irqrestore(&stream->oa_buffer.ptr_lock, flags);
Robert Bragg19f81df2017-06-13 12:23:03 +0100665
666 /*
Robert Bragg19f81df2017-06-13 12:23:03 +0100667 * NB: oa_buffer.head/tail include the gtt_offset which we don't want
668 * while indexing relative to oa_buf_base.
669 */
670 head -= gtt_offset;
671 tail -= gtt_offset;
672
673 /*
674 * An out of bounds or misaligned head or tail pointer implies a driver
675 * bug since we validate + align the tail pointers we read from the
676 * hardware and we are in full control of the head pointer which should
677 * only be incremented by multiples of the report size (notably also
678 * all a power of two).
679 */
Pankaj Bharadiyaa9f236d2020-01-15 09:14:54 +0530680 if (drm_WARN_ONCE(&uncore->i915->drm,
681 head > OA_BUFFER_SIZE || head % report_size ||
682 tail > OA_BUFFER_SIZE || tail % report_size,
683 "Inconsistent OA buffer pointers: head = %u, tail = %u\n",
684 head, tail))
Robert Bragg19f81df2017-06-13 12:23:03 +0100685 return -EIO;
686
687
688 for (/* none */;
689 (taken = OA_TAKEN(tail, head));
690 head = (head + report_size) & mask) {
691 u8 *report = oa_buf_base + head;
692 u32 *report32 = (void *)report;
693 u32 ctx_id;
694 u32 reason;
695
696 /*
697 * All the report sizes factor neatly into the buffer
698 * size so we never expect to see a report split
699 * between the beginning and end of the buffer.
700 *
701 * Given the initial alignment check a misalignment
702 * here would imply a driver bug that would result
703 * in an overrun.
704 */
Pankaj Bharadiyaa9f236d2020-01-15 09:14:54 +0530705 if (drm_WARN_ON(&uncore->i915->drm,
706 (OA_BUFFER_SIZE - head) < report_size)) {
Wambui Karuga0bf85732020-02-18 20:39:36 +0300707 drm_err(&uncore->i915->drm,
708 "Spurious OA head ptr: non-integral report offset\n");
Robert Bragg19f81df2017-06-13 12:23:03 +0100709 break;
710 }
711
712 /*
713 * The reason field includes flags identifying what
714 * triggered this specific report (mostly timer
715 * triggered or e.g. due to a context switch).
716 *
717 * This field is never expected to be zero so we can
718 * check that the report isn't invalid before copying
719 * it to userspace...
720 */
721 reason = ((report32[0] >> OAREPORT_REASON_SHIFT) &
Lucas De Marchi651e7d42021-06-05 21:50:49 -0700722 (GRAPHICS_VER(stream->perf->i915) == 12 ?
Lionel Landwerlin00a7f0d2019-10-25 12:37:46 -0700723 OAREPORT_REASON_MASK_EXTENDED :
724 OAREPORT_REASON_MASK));
Robert Bragg19f81df2017-06-13 12:23:03 +0100725
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -0700726 ctx_id = report32[2] & stream->specific_ctx_id_mask;
Robert Bragg19f81df2017-06-13 12:23:03 +0100727
728 /*
729 * Squash whatever is in the CTX_ID field if it's marked as
730 * invalid to be sure we avoid false-positive, single-context
731 * filtering below...
732 *
733 * Note: that we don't clear the valid_ctx_bit so userspace can
734 * understand that the ID has been squashed by the kernel.
735 */
Lionel Landwerlin00a7f0d2019-10-25 12:37:46 -0700736 if (!(report32[0] & stream->perf->gen8_valid_ctx_bit) &&
Lucas De Marchi651e7d42021-06-05 21:50:49 -0700737 GRAPHICS_VER(stream->perf->i915) <= 11)
Robert Bragg19f81df2017-06-13 12:23:03 +0100738 ctx_id = report32[2] = INVALID_CTX_ID;
739
740 /*
741 * NB: For Gen 8 the OA unit no longer supports clock gating
742 * off for a specific context and the kernel can't securely
743 * stop the counters from updating as system-wide / global
744 * values.
745 *
746 * Automatic reports now include a context ID so reports can be
747 * filtered on the cpu but it's not worth trying to
748 * automatically subtract/hide counter progress for other
749 * contexts while filtering since we can't stop userspace
750 * issuing MI_REPORT_PERF_COUNT commands which would still
751 * provide a side-band view of the real values.
752 *
753 * To allow userspace (such as Mesa/GL_INTEL_performance_query)
754 * to normalize counters for a single filtered context then it
755 * needs be forwarded bookend context-switch reports so that it
756 * can track switches in between MI_REPORT_PERF_COUNT commands
757 * and can itself subtract/ignore the progress of counters
758 * associated with other contexts. Note that the hardware
759 * automatically triggers reports when switching to a new
760 * context which are tagged with the ID of the newly active
761 * context. To avoid the complexity (and likely fragility) of
762 * reading ahead while parsing reports to try and minimize
763 * forwarding redundant context switch reports (i.e. between
764 * other, unrelated contexts) we simply elect to forward them
765 * all.
766 *
767 * We don't rely solely on the reason field to identify context
768 * switches since it's not-uncommon for periodic samples to
769 * identify a switch before any 'context switch' report.
770 */
Chris Wilson8f8b1172019-10-07 22:09:41 +0100771 if (!stream->perf->exclusive_stream->ctx ||
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -0700772 stream->specific_ctx_id == ctx_id ||
773 stream->oa_buffer.last_ctx_id == stream->specific_ctx_id ||
Robert Bragg19f81df2017-06-13 12:23:03 +0100774 reason & OAREPORT_REASON_CTX_SWITCH) {
775
776 /*
777 * While filtering for a single context we avoid
778 * leaking the IDs of other contexts.
779 */
Chris Wilson8f8b1172019-10-07 22:09:41 +0100780 if (stream->perf->exclusive_stream->ctx &&
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -0700781 stream->specific_ctx_id != ctx_id) {
Robert Bragg19f81df2017-06-13 12:23:03 +0100782 report32[2] = INVALID_CTX_ID;
783 }
784
785 ret = append_oa_sample(stream, buf, count, offset,
786 report);
787 if (ret)
788 break;
789
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -0700790 stream->oa_buffer.last_ctx_id = ctx_id;
Robert Bragg19f81df2017-06-13 12:23:03 +0100791 }
792
793 /*
Lionel Landwerlind1df41e2020-03-24 11:54:55 -0700794 * Clear out the first 2 dword as a mean to detect unlanded
795 * reports.
Robert Bragg19f81df2017-06-13 12:23:03 +0100796 */
797 report32[0] = 0;
Lionel Landwerlind1df41e2020-03-24 11:54:55 -0700798 report32[1] = 0;
Robert Bragg19f81df2017-06-13 12:23:03 +0100799 }
800
801 if (start_offset != *offset) {
Lionel Landwerlin00a7f0d2019-10-25 12:37:46 -0700802 i915_reg_t oaheadptr;
803
Lucas De Marchi651e7d42021-06-05 21:50:49 -0700804 oaheadptr = GRAPHICS_VER(stream->perf->i915) == 12 ?
Lionel Landwerlin00a7f0d2019-10-25 12:37:46 -0700805 GEN12_OAG_OAHEADPTR : GEN8_OAHEADPTR;
806
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -0700807 spin_lock_irqsave(&stream->oa_buffer.ptr_lock, flags);
Robert Bragg19f81df2017-06-13 12:23:03 +0100808
809 /*
810 * We removed the gtt_offset for the copy loop above, indexing
811 * relative to oa_buf_base so put back here...
812 */
813 head += gtt_offset;
Lionel Landwerlin00a7f0d2019-10-25 12:37:46 -0700814 intel_uncore_write(uncore, oaheadptr,
815 head & GEN12_OAG_OAHEADPTR_MASK);
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -0700816 stream->oa_buffer.head = head;
Robert Bragg19f81df2017-06-13 12:23:03 +0100817
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -0700818 spin_unlock_irqrestore(&stream->oa_buffer.ptr_lock, flags);
Robert Bragg19f81df2017-06-13 12:23:03 +0100819 }
820
821 return ret;
822}
823
824/**
825 * gen8_oa_read - copy status records then buffered OA reports
826 * @stream: An i915-perf stream opened for OA metrics
827 * @buf: destination buffer given by userspace
828 * @count: the number of bytes userspace wants to read
829 * @offset: (inout): the current position for writing into @buf
830 *
831 * Checks OA unit status registers and if necessary appends corresponding
832 * status records for userspace (such as for a buffer full condition) and then
833 * initiate appending any buffered OA reports.
834 *
835 * Updates @offset according to the number of bytes successfully copied into
836 * the userspace buffer.
837 *
838 * NB: some data may be successfully copied to the userspace buffer
839 * even if an error is returned, and this is reflected in the
840 * updated @offset.
841 *
842 * Returns: zero on success or a negative error code
843 */
844static int gen8_oa_read(struct i915_perf_stream *stream,
845 char __user *buf,
846 size_t count,
847 size_t *offset)
848{
Chris Wilson52111c42019-10-10 16:05:20 +0100849 struct intel_uncore *uncore = stream->uncore;
Robert Bragg19f81df2017-06-13 12:23:03 +0100850 u32 oastatus;
Lionel Landwerlin00a7f0d2019-10-25 12:37:46 -0700851 i915_reg_t oastatus_reg;
Robert Bragg19f81df2017-06-13 12:23:03 +0100852 int ret;
853
Pankaj Bharadiyaa9f236d2020-01-15 09:14:54 +0530854 if (drm_WARN_ON(&uncore->i915->drm, !stream->oa_buffer.vaddr))
Robert Bragg19f81df2017-06-13 12:23:03 +0100855 return -EIO;
856
Lucas De Marchi651e7d42021-06-05 21:50:49 -0700857 oastatus_reg = GRAPHICS_VER(stream->perf->i915) == 12 ?
Lionel Landwerlin00a7f0d2019-10-25 12:37:46 -0700858 GEN12_OAG_OASTATUS : GEN8_OASTATUS;
859
860 oastatus = intel_uncore_read(uncore, oastatus_reg);
Robert Bragg19f81df2017-06-13 12:23:03 +0100861
862 /*
863 * We treat OABUFFER_OVERFLOW as a significant error:
864 *
865 * Although theoretically we could handle this more gracefully
866 * sometimes, some Gens don't correctly suppress certain
867 * automatically triggered reports in this condition and so we
868 * have to assume that old reports are now being trampled
869 * over.
Joonas Lahtinenfe841682018-11-16 15:55:09 +0200870 *
871 * Considering how we don't currently give userspace control
872 * over the OA buffer size and always configure a large 16MB
873 * buffer, then a buffer overflow does anyway likely indicate
874 * that something has gone quite badly wrong.
Robert Bragg19f81df2017-06-13 12:23:03 +0100875 */
876 if (oastatus & GEN8_OASTATUS_OABUFFER_OVERFLOW) {
877 ret = append_oa_status(stream, buf, count, offset,
878 DRM_I915_PERF_RECORD_OA_BUFFER_LOST);
879 if (ret)
880 return ret;
881
882 DRM_DEBUG("OA buffer overflow (exponent = %d): force restart\n",
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -0700883 stream->period_exponent);
Robert Bragg19f81df2017-06-13 12:23:03 +0100884
Chris Wilson8f8b1172019-10-07 22:09:41 +0100885 stream->perf->ops.oa_disable(stream);
886 stream->perf->ops.oa_enable(stream);
Robert Bragg19f81df2017-06-13 12:23:03 +0100887
888 /*
889 * Note: .oa_enable() is expected to re-init the oabuffer and
890 * reset GEN8_OASTATUS for us
891 */
Lionel Landwerlin00a7f0d2019-10-25 12:37:46 -0700892 oastatus = intel_uncore_read(uncore, oastatus_reg);
Robert Bragg19f81df2017-06-13 12:23:03 +0100893 }
894
895 if (oastatus & GEN8_OASTATUS_REPORT_LOST) {
896 ret = append_oa_status(stream, buf, count, offset,
897 DRM_I915_PERF_RECORD_OA_REPORT_LOST);
898 if (ret)
899 return ret;
Lionel Landwerlin059a0be2020-11-17 15:01:24 +0200900
901 intel_uncore_rmw(uncore, oastatus_reg,
902 GEN8_OASTATUS_COUNTER_OVERFLOW |
903 GEN8_OASTATUS_REPORT_LOST,
Lucas De Marchi651e7d42021-06-05 21:50:49 -0700904 IS_GRAPHICS_VER(uncore->i915, 8, 11) ?
Lionel Landwerlin059a0be2020-11-17 15:01:24 +0200905 (GEN8_OASTATUS_HEAD_POINTER_WRAP |
906 GEN8_OASTATUS_TAIL_POINTER_WRAP) : 0);
Robert Bragg19f81df2017-06-13 12:23:03 +0100907 }
908
909 return gen8_append_oa_reports(stream, buf, count, offset);
910}
911
912/**
Mauro Carvalho Chehabe9d28712020-11-16 11:18:01 +0100913 * gen7_append_oa_reports - Copies all buffered OA reports into
914 * userspace read() buffer.
Robert Bragg19f81df2017-06-13 12:23:03 +0100915 * @stream: An i915-perf stream opened for OA metrics
916 * @buf: destination buffer given by userspace
917 * @count: the number of bytes userspace wants to read
918 * @offset: (inout): the current position for writing into @buf
919 *
920 * Notably any error condition resulting in a short read (-%ENOSPC or
921 * -%EFAULT) will be returned even though one or more records may
922 * have been successfully copied. In this case it's up to the caller
923 * to decide if the error should be squashed before returning to
924 * userspace.
925 *
926 * Note: reports are consumed from the head, and appended to the
927 * tail, so the tail chases the head?... If you think that's mad
928 * and back-to-front you're not alone, but this follows the
929 * Gen PRM naming convention.
930 *
931 * Returns: 0 on success, negative error code on failure.
932 */
Robert Braggd7965152016-11-07 19:49:52 +0000933static int gen7_append_oa_reports(struct i915_perf_stream *stream,
934 char __user *buf,
935 size_t count,
Robert Bragg3bb335c2017-05-11 16:43:27 +0100936 size_t *offset)
Robert Braggd7965152016-11-07 19:49:52 +0000937{
Chris Wilson52111c42019-10-10 16:05:20 +0100938 struct intel_uncore *uncore = stream->uncore;
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -0700939 int report_size = stream->oa_buffer.format_size;
940 u8 *oa_buf_base = stream->oa_buffer.vaddr;
941 u32 gtt_offset = i915_ggtt_offset(stream->oa_buffer.vma);
Joonas Lahtinenfe841682018-11-16 15:55:09 +0200942 u32 mask = (OA_BUFFER_SIZE - 1);
Robert Bragg3bb335c2017-05-11 16:43:27 +0100943 size_t start_offset = *offset;
Robert Bragg0dd860c2017-05-11 16:43:28 +0100944 unsigned long flags;
Robert Bragg0dd860c2017-05-11 16:43:28 +0100945 u32 head, tail;
Robert Braggd7965152016-11-07 19:49:52 +0000946 u32 taken;
947 int ret = 0;
948
Pankaj Bharadiyaa9f236d2020-01-15 09:14:54 +0530949 if (drm_WARN_ON(&uncore->i915->drm, !stream->enabled))
Robert Braggd7965152016-11-07 19:49:52 +0000950 return -EIO;
951
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -0700952 spin_lock_irqsave(&stream->oa_buffer.ptr_lock, flags);
Robert Braggf2790202017-05-11 16:43:26 +0100953
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -0700954 head = stream->oa_buffer.head;
Lionel Landwerlind1df41e2020-03-24 11:54:55 -0700955 tail = stream->oa_buffer.tail;
Robert Bragg0dd860c2017-05-11 16:43:28 +0100956
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -0700957 spin_unlock_irqrestore(&stream->oa_buffer.ptr_lock, flags);
Robert Bragg0dd860c2017-05-11 16:43:28 +0100958
Robert Bragg0dd860c2017-05-11 16:43:28 +0100959 /* NB: oa_buffer.head/tail include the gtt_offset which we don't want
960 * while indexing relative to oa_buf_base.
961 */
962 head -= gtt_offset;
963 tail -= gtt_offset;
964
965 /* An out of bounds or misaligned head or tail pointer implies a driver
966 * bug since we validate + align the tail pointers we read from the
967 * hardware and we are in full control of the head pointer which should
968 * only be incremented by multiples of the report size (notably also
969 * all a power of two).
970 */
Pankaj Bharadiyaa9f236d2020-01-15 09:14:54 +0530971 if (drm_WARN_ONCE(&uncore->i915->drm,
972 head > OA_BUFFER_SIZE || head % report_size ||
973 tail > OA_BUFFER_SIZE || tail % report_size,
974 "Inconsistent OA buffer pointers: head = %u, tail = %u\n",
975 head, tail))
Robert Bragg0dd860c2017-05-11 16:43:28 +0100976 return -EIO;
977
Robert Braggd7965152016-11-07 19:49:52 +0000978
979 for (/* none */;
980 (taken = OA_TAKEN(tail, head));
981 head = (head + report_size) & mask) {
982 u8 *report = oa_buf_base + head;
983 u32 *report32 = (void *)report;
984
985 /* All the report sizes factor neatly into the buffer
986 * size so we never expect to see a report split
987 * between the beginning and end of the buffer.
988 *
989 * Given the initial alignment check a misalignment
990 * here would imply a driver bug that would result
991 * in an overrun.
992 */
Pankaj Bharadiyaa9f236d2020-01-15 09:14:54 +0530993 if (drm_WARN_ON(&uncore->i915->drm,
994 (OA_BUFFER_SIZE - head) < report_size)) {
Wambui Karuga0bf85732020-02-18 20:39:36 +0300995 drm_err(&uncore->i915->drm,
996 "Spurious OA head ptr: non-integral report offset\n");
Robert Braggd7965152016-11-07 19:49:52 +0000997 break;
998 }
999
1000 /* The report-ID field for periodic samples includes
1001 * some undocumented flags related to what triggered
1002 * the report and is never expected to be zero so we
1003 * can check that the report isn't invalid before
1004 * copying it to userspace...
1005 */
1006 if (report32[0] == 0) {
Chris Wilson8f8b1172019-10-07 22:09:41 +01001007 if (__ratelimit(&stream->perf->spurious_report_rs))
Robert Bragg712122e2017-05-11 16:43:31 +01001008 DRM_NOTE("Skipping spurious, invalid OA report\n");
Robert Braggd7965152016-11-07 19:49:52 +00001009 continue;
1010 }
1011
1012 ret = append_oa_sample(stream, buf, count, offset, report);
1013 if (ret)
1014 break;
1015
Lionel Landwerlind1df41e2020-03-24 11:54:55 -07001016 /* Clear out the first 2 dwords as a mean to detect unlanded
1017 * reports.
Robert Braggd7965152016-11-07 19:49:52 +00001018 */
1019 report32[0] = 0;
Lionel Landwerlind1df41e2020-03-24 11:54:55 -07001020 report32[1] = 0;
Robert Braggd7965152016-11-07 19:49:52 +00001021 }
1022
Robert Bragg3bb335c2017-05-11 16:43:27 +01001023 if (start_offset != *offset) {
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07001024 spin_lock_irqsave(&stream->oa_buffer.ptr_lock, flags);
Robert Bragg0dd860c2017-05-11 16:43:28 +01001025
Robert Bragg3bb335c2017-05-11 16:43:27 +01001026 /* We removed the gtt_offset for the copy loop above, indexing
1027 * relative to oa_buf_base so put back here...
1028 */
1029 head += gtt_offset;
1030
Chris Wilson8f8b1172019-10-07 22:09:41 +01001031 intel_uncore_write(uncore, GEN7_OASTATUS2,
1032 (head & GEN7_OASTATUS2_HEAD_MASK) |
1033 GEN7_OASTATUS2_MEM_SELECT_GGTT);
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07001034 stream->oa_buffer.head = head;
Robert Bragg0dd860c2017-05-11 16:43:28 +01001035
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07001036 spin_unlock_irqrestore(&stream->oa_buffer.ptr_lock, flags);
Robert Bragg3bb335c2017-05-11 16:43:27 +01001037 }
Robert Braggd7965152016-11-07 19:49:52 +00001038
1039 return ret;
1040}
1041
Robert Bragg16d98b32016-12-07 21:40:33 +00001042/**
1043 * gen7_oa_read - copy status records then buffered OA reports
1044 * @stream: An i915-perf stream opened for OA metrics
1045 * @buf: destination buffer given by userspace
1046 * @count: the number of bytes userspace wants to read
1047 * @offset: (inout): the current position for writing into @buf
1048 *
1049 * Checks Gen 7 specific OA unit status registers and if necessary appends
1050 * corresponding status records for userspace (such as for a buffer full
1051 * condition) and then initiate appending any buffered OA reports.
1052 *
1053 * Updates @offset according to the number of bytes successfully copied into
1054 * the userspace buffer.
1055 *
1056 * Returns: zero on success or a negative error code
1057 */
Robert Braggd7965152016-11-07 19:49:52 +00001058static int gen7_oa_read(struct i915_perf_stream *stream,
1059 char __user *buf,
1060 size_t count,
1061 size_t *offset)
1062{
Chris Wilson52111c42019-10-10 16:05:20 +01001063 struct intel_uncore *uncore = stream->uncore;
Robert Braggd7965152016-11-07 19:49:52 +00001064 u32 oastatus1;
Robert Braggd7965152016-11-07 19:49:52 +00001065 int ret;
1066
Pankaj Bharadiyaa9f236d2020-01-15 09:14:54 +05301067 if (drm_WARN_ON(&uncore->i915->drm, !stream->oa_buffer.vaddr))
Robert Braggd7965152016-11-07 19:49:52 +00001068 return -EIO;
1069
Chris Wilson8f8b1172019-10-07 22:09:41 +01001070 oastatus1 = intel_uncore_read(uncore, GEN7_OASTATUS1);
Robert Braggd7965152016-11-07 19:49:52 +00001071
Robert Braggd7965152016-11-07 19:49:52 +00001072 /* XXX: On Haswell we don't have a safe way to clear oastatus1
1073 * bits while the OA unit is enabled (while the tail pointer
1074 * may be updated asynchronously) so we ignore status bits
1075 * that have already been reported to userspace.
1076 */
Chris Wilson8f8b1172019-10-07 22:09:41 +01001077 oastatus1 &= ~stream->perf->gen7_latched_oastatus1;
Robert Braggd7965152016-11-07 19:49:52 +00001078
1079 /* We treat OABUFFER_OVERFLOW as a significant error:
1080 *
1081 * - The status can be interpreted to mean that the buffer is
1082 * currently full (with a higher precedence than OA_TAKEN()
1083 * which will start to report a near-empty buffer after an
1084 * overflow) but it's awkward that we can't clear the status
1085 * on Haswell, so without a reset we won't be able to catch
1086 * the state again.
1087 *
1088 * - Since it also implies the HW has started overwriting old
1089 * reports it may also affect our sanity checks for invalid
1090 * reports when copying to userspace that assume new reports
1091 * are being written to cleared memory.
1092 *
1093 * - In the future we may want to introduce a flight recorder
1094 * mode where the driver will automatically maintain a safe
1095 * guard band between head/tail, avoiding this overflow
1096 * condition, but we avoid the added driver complexity for
1097 * now.
1098 */
1099 if (unlikely(oastatus1 & GEN7_OASTATUS1_OABUFFER_OVERFLOW)) {
1100 ret = append_oa_status(stream, buf, count, offset,
1101 DRM_I915_PERF_RECORD_OA_BUFFER_LOST);
1102 if (ret)
1103 return ret;
1104
Robert Bragg19f81df2017-06-13 12:23:03 +01001105 DRM_DEBUG("OA buffer overflow (exponent = %d): force restart\n",
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07001106 stream->period_exponent);
Robert Braggd7965152016-11-07 19:49:52 +00001107
Chris Wilson8f8b1172019-10-07 22:09:41 +01001108 stream->perf->ops.oa_disable(stream);
1109 stream->perf->ops.oa_enable(stream);
Robert Braggd7965152016-11-07 19:49:52 +00001110
Chris Wilson8f8b1172019-10-07 22:09:41 +01001111 oastatus1 = intel_uncore_read(uncore, GEN7_OASTATUS1);
Robert Braggd7965152016-11-07 19:49:52 +00001112 }
1113
1114 if (unlikely(oastatus1 & GEN7_OASTATUS1_REPORT_LOST)) {
1115 ret = append_oa_status(stream, buf, count, offset,
1116 DRM_I915_PERF_RECORD_OA_REPORT_LOST);
1117 if (ret)
1118 return ret;
Chris Wilson8f8b1172019-10-07 22:09:41 +01001119 stream->perf->gen7_latched_oastatus1 |=
Robert Braggd7965152016-11-07 19:49:52 +00001120 GEN7_OASTATUS1_REPORT_LOST;
1121 }
1122
Robert Bragg3bb335c2017-05-11 16:43:27 +01001123 return gen7_append_oa_reports(stream, buf, count, offset);
Robert Braggd7965152016-11-07 19:49:52 +00001124}
1125
Robert Bragg16d98b32016-12-07 21:40:33 +00001126/**
1127 * i915_oa_wait_unlocked - handles blocking IO until OA data available
1128 * @stream: An i915-perf stream opened for OA metrics
1129 *
1130 * Called when userspace tries to read() from a blocking stream FD opened
1131 * for OA metrics. It waits until the hrtimer callback finds a non-empty
1132 * OA buffer and wakes us.
1133 *
1134 * Note: it's acceptable to have this return with some false positives
1135 * since any subsequent read handling will return -EAGAIN if there isn't
1136 * really data ready for userspace yet.
1137 *
1138 * Returns: zero on success or a negative error code
1139 */
Robert Braggd7965152016-11-07 19:49:52 +00001140static int i915_oa_wait_unlocked(struct i915_perf_stream *stream)
1141{
Robert Braggd7965152016-11-07 19:49:52 +00001142 /* We would wait indefinitely if periodic sampling is not enabled */
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07001143 if (!stream->periodic)
Robert Braggd7965152016-11-07 19:49:52 +00001144 return -EIO;
1145
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07001146 return wait_event_interruptible(stream->poll_wq,
1147 oa_buffer_check_unlocked(stream));
Robert Braggd7965152016-11-07 19:49:52 +00001148}
1149
Robert Bragg16d98b32016-12-07 21:40:33 +00001150/**
1151 * i915_oa_poll_wait - call poll_wait() for an OA stream poll()
1152 * @stream: An i915-perf stream opened for OA metrics
1153 * @file: An i915 perf stream file
1154 * @wait: poll() state table
1155 *
1156 * For handling userspace polling on an i915 perf stream opened for OA metrics,
1157 * this starts a poll_wait with the wait queue that our hrtimer callback wakes
1158 * when it sees data ready to read in the circular OA buffer.
1159 */
Robert Braggd7965152016-11-07 19:49:52 +00001160static void i915_oa_poll_wait(struct i915_perf_stream *stream,
1161 struct file *file,
1162 poll_table *wait)
1163{
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07001164 poll_wait(file, &stream->poll_wq, wait);
Robert Braggd7965152016-11-07 19:49:52 +00001165}
1166
Robert Bragg16d98b32016-12-07 21:40:33 +00001167/**
1168 * i915_oa_read - just calls through to &i915_oa_ops->read
1169 * @stream: An i915-perf stream opened for OA metrics
1170 * @buf: destination buffer given by userspace
1171 * @count: the number of bytes userspace wants to read
1172 * @offset: (inout): the current position for writing into @buf
1173 *
1174 * Updates @offset according to the number of bytes successfully copied into
1175 * the userspace buffer.
1176 *
1177 * Returns: zero on success or a negative error code
1178 */
Robert Braggd7965152016-11-07 19:49:52 +00001179static int i915_oa_read(struct i915_perf_stream *stream,
1180 char __user *buf,
1181 size_t count,
1182 size_t *offset)
1183{
Chris Wilson8f8b1172019-10-07 22:09:41 +01001184 return stream->perf->ops.read(stream, buf, count, offset);
Robert Braggd7965152016-11-07 19:49:52 +00001185}
1186
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07001187static struct intel_context *oa_pin_context(struct i915_perf_stream *stream)
Lionel Landwerlin61d56762018-06-02 12:29:46 +01001188{
Chris Wilson5e2a0412019-04-26 17:33:34 +01001189 struct i915_gem_engines_iter it;
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07001190 struct i915_gem_context *ctx = stream->ctx;
Lionel Landwerlin61d56762018-06-02 12:29:46 +01001191 struct intel_context *ce;
Maarten Lankhorstf00ecc22020-08-19 16:08:57 +02001192 struct i915_gem_ww_ctx ww;
1193 int err = -ENODEV;
Lionel Landwerlin61d56762018-06-02 12:29:46 +01001194
Chris Wilson5e2a0412019-04-26 17:33:34 +01001195 for_each_gem_engine(ce, i915_gem_context_lock_engines(ctx), it) {
Lionel Landwerlin9a613632019-10-10 16:05:19 +01001196 if (ce->engine != stream->engine) /* first match! */
Chris Wilson5e2a0412019-04-26 17:33:34 +01001197 continue;
Lionel Landwerlin61d56762018-06-02 12:29:46 +01001198
Maarten Lankhorstf00ecc22020-08-19 16:08:57 +02001199 err = 0;
1200 break;
Chris Wilson5e2a0412019-04-26 17:33:34 +01001201 }
1202 i915_gem_context_unlock_engines(ctx);
1203
Maarten Lankhorstf00ecc22020-08-19 16:08:57 +02001204 if (err)
1205 return ERR_PTR(err);
1206
1207 i915_gem_ww_ctx_init(&ww, true);
1208retry:
1209 /*
1210 * As the ID is the gtt offset of the context's vma we
1211 * pin the vma to ensure the ID remains fixed.
1212 */
1213 err = intel_context_pin_ww(ce, &ww);
1214 if (err == -EDEADLK) {
1215 err = i915_gem_ww_ctx_backoff(&ww);
1216 if (!err)
1217 goto retry;
1218 }
1219 i915_gem_ww_ctx_fini(&ww);
1220
1221 if (err)
1222 return ERR_PTR(err);
1223
1224 stream->pinned_ctx = ce;
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07001225 return stream->pinned_ctx;
Lionel Landwerlin61d56762018-06-02 12:29:46 +01001226}
1227
Robert Bragg16d98b32016-12-07 21:40:33 +00001228/**
1229 * oa_get_render_ctx_id - determine and hold ctx hw id
1230 * @stream: An i915-perf stream opened for OA metrics
1231 *
1232 * Determine the render context hw id, and ensure it remains fixed for the
Robert Braggd7965152016-11-07 19:49:52 +00001233 * lifetime of the stream. This ensures that we don't have to worry about
1234 * updating the context ID in OACONTROL on the fly.
Robert Bragg16d98b32016-12-07 21:40:33 +00001235 *
1236 * Returns: zero on success or a negative error code
Robert Braggd7965152016-11-07 19:49:52 +00001237 */
1238static int oa_get_render_ctx_id(struct i915_perf_stream *stream)
1239{
Lionel Landwerlin61d56762018-06-02 12:29:46 +01001240 struct intel_context *ce;
Robert Braggd7965152016-11-07 19:49:52 +00001241
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07001242 ce = oa_pin_context(stream);
Lionel Landwerlin61d56762018-06-02 12:29:46 +01001243 if (IS_ERR(ce))
1244 return PTR_ERR(ce);
Robert Braggd7965152016-11-07 19:49:52 +00001245
Lucas De Marchi651e7d42021-06-05 21:50:49 -07001246 switch (GRAPHICS_VER(ce->engine->i915)) {
Lionel Landwerlin61d56762018-06-02 12:29:46 +01001247 case 7: {
Robert Bragg19f81df2017-06-13 12:23:03 +01001248 /*
Lionel Landwerlin61d56762018-06-02 12:29:46 +01001249 * On Haswell we don't do any post processing of the reports
1250 * and don't need to use the mask.
Robert Bragg19f81df2017-06-13 12:23:03 +01001251 */
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07001252 stream->specific_ctx_id = i915_ggtt_offset(ce->state);
1253 stream->specific_ctx_id_mask = 0;
Lionel Landwerlin61d56762018-06-02 12:29:46 +01001254 break;
Robert Bragg19f81df2017-06-13 12:23:03 +01001255 }
Robert Braggd7965152016-11-07 19:49:52 +00001256
Lionel Landwerlin61d56762018-06-02 12:29:46 +01001257 case 8:
1258 case 9:
Chris Wilsonc92c36e2021-05-21 11:32:14 -07001259 if (intel_engine_uses_guc(ce->engine)) {
Lionel Landwerlin61d56762018-06-02 12:29:46 +01001260 /*
1261 * When using GuC, the context descriptor we write in
1262 * i915 is read by GuC and rewritten before it's
1263 * actually written into the hardware. The LRCA is
1264 * what is put into the context id field of the
1265 * context descriptor by GuC. Because it's aligned to
1266 * a page, the lower 12bits are always at 0 and
1267 * dropped by GuC. They won't be part of the context
1268 * ID in the OA reports, so squash those lower bits.
1269 */
Chris Wilson53b26222020-04-28 19:47:49 +01001270 stream->specific_ctx_id = ce->lrc.lrca >> 12;
Lionel Landwerlin61d56762018-06-02 12:29:46 +01001271
1272 /*
1273 * GuC uses the top bit to signal proxy submission, so
1274 * ignore that bit.
1275 */
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07001276 stream->specific_ctx_id_mask =
Lionel Landwerlin61d56762018-06-02 12:29:46 +01001277 (1U << (GEN8_CTX_ID_WIDTH - 1)) - 1;
Chris Wilsonc92c36e2021-05-21 11:32:14 -07001278 } else {
1279 stream->specific_ctx_id_mask =
1280 (1U << GEN8_CTX_ID_WIDTH) - 1;
1281 stream->specific_ctx_id = stream->specific_ctx_id_mask;
Lionel Landwerlin61d56762018-06-02 12:29:46 +01001282 }
1283 break;
1284
Michel Thierry45e9c822019-08-23 01:20:50 -07001285 case 11:
1286 case 12: {
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07001287 stream->specific_ctx_id_mask =
Chris Wilson2935ed52019-10-04 14:40:08 +01001288 ((1U << GEN11_SW_CTX_ID_WIDTH) - 1) << (GEN11_SW_CTX_ID_SHIFT - 32);
Umesh Nerlige Ramappa6f280b12020-01-23 17:37:01 -08001289 /*
1290 * Pick an unused context id
Chris Wilson1bc6a602020-04-28 19:47:50 +01001291 * 0 - BITS_PER_LONG are used by other contexts
Umesh Nerlige Ramappa6f280b12020-01-23 17:37:01 -08001292 * GEN12_MAX_CONTEXT_HW_ID (0x7ff) is used by idle context
1293 */
1294 stream->specific_ctx_id = (GEN12_MAX_CONTEXT_HW_ID - 1) << (GEN11_SW_CTX_ID_SHIFT - 32);
Lionel Landwerlin61d56762018-06-02 12:29:46 +01001295 break;
1296 }
1297
1298 default:
Lucas De Marchi651e7d42021-06-05 21:50:49 -07001299 MISSING_CASE(GRAPHICS_VER(ce->engine->i915));
Lionel Landwerlin61d56762018-06-02 12:29:46 +01001300 }
1301
Umesh Nerlige Ramappa6f280b12020-01-23 17:37:01 -08001302 ce->tag = stream->specific_ctx_id;
Chris Wilson2935ed52019-10-04 14:40:08 +01001303
Wambui Karuga0bf85732020-02-18 20:39:36 +03001304 drm_dbg(&stream->perf->i915->drm,
1305 "filtering on ctx_id=0x%x ctx_id_mask=0x%x\n",
1306 stream->specific_ctx_id,
1307 stream->specific_ctx_id_mask);
Lionel Landwerlin61d56762018-06-02 12:29:46 +01001308
Chris Wilson266a2402017-05-04 10:33:08 +01001309 return 0;
Robert Braggd7965152016-11-07 19:49:52 +00001310}
1311
Robert Bragg16d98b32016-12-07 21:40:33 +00001312/**
1313 * oa_put_render_ctx_id - counterpart to oa_get_render_ctx_id releases hold
1314 * @stream: An i915-perf stream opened for OA metrics
1315 *
1316 * In case anything needed doing to ensure the context HW ID would remain valid
1317 * for the lifetime of the stream, then that can be undone here.
1318 */
Robert Braggd7965152016-11-07 19:49:52 +00001319static void oa_put_render_ctx_id(struct i915_perf_stream *stream)
1320{
Chris Wilson1fc44d92018-05-17 22:26:32 +01001321 struct intel_context *ce;
Robert Braggd7965152016-11-07 19:49:52 +00001322
Chris Wilson2935ed52019-10-04 14:40:08 +01001323 ce = fetch_and_zero(&stream->pinned_ctx);
1324 if (ce) {
1325 ce->tag = 0; /* recomputed on next submission after parking */
1326 intel_context_unpin(ce);
1327 }
1328
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07001329 stream->specific_ctx_id = INVALID_CTX_ID;
1330 stream->specific_ctx_id_mask = 0;
Robert Braggd7965152016-11-07 19:49:52 +00001331}
1332
1333static void
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07001334free_oa_buffer(struct i915_perf_stream *stream)
Robert Braggd7965152016-11-07 19:49:52 +00001335{
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07001336 i915_vma_unpin_and_release(&stream->oa_buffer.vma,
Chris Wilson6a2f59e2018-07-21 13:50:37 +01001337 I915_VMA_RELEASE_MAP);
Robert Braggd7965152016-11-07 19:49:52 +00001338
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07001339 stream->oa_buffer.vaddr = NULL;
Robert Braggd7965152016-11-07 19:49:52 +00001340}
1341
Lionel Landwerlin6a450082019-10-12 08:23:06 +01001342static void
1343free_oa_configs(struct i915_perf_stream *stream)
1344{
1345 struct i915_oa_config_bo *oa_bo, *tmp;
1346
1347 i915_oa_config_put(stream->oa_config);
1348 llist_for_each_entry_safe(oa_bo, tmp, stream->oa_config_bos.first, node)
1349 free_oa_config_bo(oa_bo);
1350}
1351
Lionel Landwerlindaed3e42019-10-12 08:23:07 +01001352static void
1353free_noa_wait(struct i915_perf_stream *stream)
1354{
1355 i915_vma_unpin_and_release(&stream->noa_wait, 0);
1356}
1357
Robert Braggd7965152016-11-07 19:49:52 +00001358static void i915_oa_stream_destroy(struct i915_perf_stream *stream)
1359{
Chris Wilson8f8b1172019-10-07 22:09:41 +01001360 struct i915_perf *perf = stream->perf;
Robert Braggd7965152016-11-07 19:49:52 +00001361
Chris Wilson8f8b1172019-10-07 22:09:41 +01001362 BUG_ON(stream != perf->exclusive_stream);
Robert Braggd7965152016-11-07 19:49:52 +00001363
Robert Bragg19f81df2017-06-13 12:23:03 +01001364 /*
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01001365 * Unset exclusive_stream first, it will be checked while disabling
1366 * the metric set on gen8+.
Chris Wilsona5af0812020-02-27 08:57:05 +00001367 *
1368 * See i915_oa_init_reg_state() and lrc_configure_all_contexts()
Robert Bragg19f81df2017-06-13 12:23:03 +01001369 */
Chris Wilsona5af0812020-02-27 08:57:05 +00001370 WRITE_ONCE(perf->exclusive_stream, NULL);
Chris Wilson8f8b1172019-10-07 22:09:41 +01001371 perf->ops.disable_metric_set(stream);
Robert Braggd7965152016-11-07 19:49:52 +00001372
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07001373 free_oa_buffer(stream);
Robert Braggd7965152016-11-07 19:49:52 +00001374
Chris Wilson52111c42019-10-10 16:05:20 +01001375 intel_uncore_forcewake_put(stream->uncore, FORCEWAKE_ALL);
Chris Wilsona5efcde2019-10-11 20:03:17 +01001376 intel_engine_pm_put(stream->engine);
Robert Braggd7965152016-11-07 19:49:52 +00001377
1378 if (stream->ctx)
1379 oa_put_render_ctx_id(stream);
1380
Lionel Landwerlin6a450082019-10-12 08:23:06 +01001381 free_oa_configs(stream);
Lionel Landwerlindaed3e42019-10-12 08:23:07 +01001382 free_noa_wait(stream);
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01001383
Chris Wilson8f8b1172019-10-07 22:09:41 +01001384 if (perf->spurious_report_rs.missed) {
Robert Bragg712122e2017-05-11 16:43:31 +01001385 DRM_NOTE("%d spurious OA report notices suppressed due to ratelimiting\n",
Chris Wilson8f8b1172019-10-07 22:09:41 +01001386 perf->spurious_report_rs.missed);
Robert Bragg712122e2017-05-11 16:43:31 +01001387 }
Robert Braggd7965152016-11-07 19:49:52 +00001388}
1389
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07001390static void gen7_init_oa_buffer(struct i915_perf_stream *stream)
Robert Braggd7965152016-11-07 19:49:52 +00001391{
Chris Wilson52111c42019-10-10 16:05:20 +01001392 struct intel_uncore *uncore = stream->uncore;
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07001393 u32 gtt_offset = i915_ggtt_offset(stream->oa_buffer.vma);
Robert Bragg0dd860c2017-05-11 16:43:28 +01001394 unsigned long flags;
1395
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07001396 spin_lock_irqsave(&stream->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 */
Chris Wilson8f8b1172019-10-07 22:09:41 +01001401 intel_uncore_write(uncore, GEN7_OASTATUS2, /* head */
1402 gtt_offset | GEN7_OASTATUS2_MEM_SELECT_GGTT);
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07001403 stream->oa_buffer.head = gtt_offset;
Robert Braggf2790202017-05-11 16:43:26 +01001404
Chris Wilson8f8b1172019-10-07 22:09:41 +01001405 intel_uncore_write(uncore, GEN7_OABUFFER, gtt_offset);
Robert Braggf2790202017-05-11 16:43:26 +01001406
Chris Wilson8f8b1172019-10-07 22:09:41 +01001407 intel_uncore_write(uncore, GEN7_OASTATUS1, /* tail */
1408 gtt_offset | OABUFFER_SIZE_16M);
Robert Braggd7965152016-11-07 19:49:52 +00001409
Robert Bragg0dd860c2017-05-11 16:43:28 +01001410 /* Mark that we need updated tail pointers to read from... */
Lionel Landwerlind1df41e2020-03-24 11:54:55 -07001411 stream->oa_buffer.aging_tail = INVALID_TAIL_PTR;
1412 stream->oa_buffer.tail = gtt_offset;
Robert Bragg0dd860c2017-05-11 16:43:28 +01001413
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07001414 spin_unlock_irqrestore(&stream->oa_buffer.ptr_lock, flags);
Robert Bragg0dd860c2017-05-11 16:43:28 +01001415
Robert Braggd7965152016-11-07 19:49:52 +00001416 /* On Haswell we have to track which OASTATUS1 flags we've
1417 * already seen since they can't be cleared while periodic
1418 * sampling is enabled.
1419 */
Chris Wilson8f8b1172019-10-07 22:09:41 +01001420 stream->perf->gen7_latched_oastatus1 = 0;
Robert Braggd7965152016-11-07 19:49:52 +00001421
1422 /* NB: although the OA buffer will initially be allocated
1423 * zeroed via shmfs (and so this memset is redundant when
1424 * first allocating), we may re-init the OA buffer, either
1425 * when re-enabling a stream or in error/reset paths.
1426 *
1427 * The reason we clear the buffer for each re-init is for the
1428 * sanity check in gen7_append_oa_reports() that looks at the
1429 * report-id field to make sure it's non-zero which relies on
1430 * the assumption that new reports are being written to zeroed
1431 * memory...
1432 */
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07001433 memset(stream->oa_buffer.vaddr, 0, OA_BUFFER_SIZE);
Robert Braggd7965152016-11-07 19:49:52 +00001434}
1435
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07001436static void gen8_init_oa_buffer(struct i915_perf_stream *stream)
Robert Bragg19f81df2017-06-13 12:23:03 +01001437{
Chris Wilson52111c42019-10-10 16:05:20 +01001438 struct intel_uncore *uncore = stream->uncore;
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07001439 u32 gtt_offset = i915_ggtt_offset(stream->oa_buffer.vma);
Robert Bragg19f81df2017-06-13 12:23:03 +01001440 unsigned long flags;
1441
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07001442 spin_lock_irqsave(&stream->oa_buffer.ptr_lock, flags);
Robert Bragg19f81df2017-06-13 12:23:03 +01001443
Chris Wilson8f8b1172019-10-07 22:09:41 +01001444 intel_uncore_write(uncore, GEN8_OASTATUS, 0);
1445 intel_uncore_write(uncore, GEN8_OAHEADPTR, gtt_offset);
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07001446 stream->oa_buffer.head = gtt_offset;
Robert Bragg19f81df2017-06-13 12:23:03 +01001447
Chris Wilson8f8b1172019-10-07 22:09:41 +01001448 intel_uncore_write(uncore, GEN8_OABUFFER_UDW, 0);
Robert Bragg19f81df2017-06-13 12:23:03 +01001449
1450 /*
1451 * PRM says:
1452 *
1453 * "This MMIO must be set before the OATAILPTR
1454 * register and after the OAHEADPTR register. This is
1455 * to enable proper functionality of the overflow
1456 * bit."
1457 */
Chris Wilson8f8b1172019-10-07 22:09:41 +01001458 intel_uncore_write(uncore, GEN8_OABUFFER, gtt_offset |
Joonas Lahtinenfe841682018-11-16 15:55:09 +02001459 OABUFFER_SIZE_16M | GEN8_OABUFFER_MEM_SELECT_GGTT);
Chris Wilson8f8b1172019-10-07 22:09:41 +01001460 intel_uncore_write(uncore, GEN8_OATAILPTR, gtt_offset & GEN8_OATAILPTR_MASK);
Robert Bragg19f81df2017-06-13 12:23:03 +01001461
1462 /* Mark that we need updated tail pointers to read from... */
Lionel Landwerlind1df41e2020-03-24 11:54:55 -07001463 stream->oa_buffer.aging_tail = INVALID_TAIL_PTR;
1464 stream->oa_buffer.tail = gtt_offset;
Robert Bragg19f81df2017-06-13 12:23:03 +01001465
1466 /*
1467 * Reset state used to recognise context switches, affecting which
1468 * reports we will forward to userspace while filtering for a single
1469 * context.
1470 */
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07001471 stream->oa_buffer.last_ctx_id = INVALID_CTX_ID;
Robert Bragg19f81df2017-06-13 12:23:03 +01001472
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07001473 spin_unlock_irqrestore(&stream->oa_buffer.ptr_lock, flags);
Robert Bragg19f81df2017-06-13 12:23:03 +01001474
1475 /*
1476 * NB: although the OA buffer will initially be allocated
1477 * zeroed via shmfs (and so this memset is redundant when
1478 * first allocating), we may re-init the OA buffer, either
1479 * when re-enabling a stream or in error/reset paths.
1480 *
1481 * The reason we clear the buffer for each re-init is for the
1482 * sanity check in gen8_append_oa_reports() that looks at the
1483 * reason field to make sure it's non-zero which relies on
1484 * the assumption that new reports are being written to zeroed
1485 * memory...
1486 */
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07001487 memset(stream->oa_buffer.vaddr, 0, OA_BUFFER_SIZE);
Robert Bragg19f81df2017-06-13 12:23:03 +01001488}
1489
Lionel Landwerlin00a7f0d2019-10-25 12:37:46 -07001490static void gen12_init_oa_buffer(struct i915_perf_stream *stream)
1491{
1492 struct intel_uncore *uncore = stream->uncore;
1493 u32 gtt_offset = i915_ggtt_offset(stream->oa_buffer.vma);
1494 unsigned long flags;
1495
1496 spin_lock_irqsave(&stream->oa_buffer.ptr_lock, flags);
1497
1498 intel_uncore_write(uncore, GEN12_OAG_OASTATUS, 0);
1499 intel_uncore_write(uncore, GEN12_OAG_OAHEADPTR,
1500 gtt_offset & GEN12_OAG_OAHEADPTR_MASK);
1501 stream->oa_buffer.head = gtt_offset;
1502
1503 /*
1504 * PRM says:
1505 *
1506 * "This MMIO must be set before the OATAILPTR
1507 * register and after the OAHEADPTR register. This is
1508 * to enable proper functionality of the overflow
1509 * bit."
1510 */
1511 intel_uncore_write(uncore, GEN12_OAG_OABUFFER, gtt_offset |
1512 OABUFFER_SIZE_16M | GEN8_OABUFFER_MEM_SELECT_GGTT);
1513 intel_uncore_write(uncore, GEN12_OAG_OATAILPTR,
1514 gtt_offset & GEN12_OAG_OATAILPTR_MASK);
1515
1516 /* Mark that we need updated tail pointers to read from... */
Lionel Landwerlind1df41e2020-03-24 11:54:55 -07001517 stream->oa_buffer.aging_tail = INVALID_TAIL_PTR;
1518 stream->oa_buffer.tail = gtt_offset;
Lionel Landwerlin00a7f0d2019-10-25 12:37:46 -07001519
1520 /*
1521 * Reset state used to recognise context switches, affecting which
1522 * reports we will forward to userspace while filtering for a single
1523 * context.
1524 */
1525 stream->oa_buffer.last_ctx_id = INVALID_CTX_ID;
1526
1527 spin_unlock_irqrestore(&stream->oa_buffer.ptr_lock, flags);
1528
1529 /*
1530 * NB: although the OA buffer will initially be allocated
1531 * zeroed via shmfs (and so this memset is redundant when
1532 * first allocating), we may re-init the OA buffer, either
1533 * when re-enabling a stream or in error/reset paths.
1534 *
1535 * The reason we clear the buffer for each re-init is for the
1536 * sanity check in gen8_append_oa_reports() that looks at the
1537 * reason field to make sure it's non-zero which relies on
1538 * the assumption that new reports are being written to zeroed
1539 * memory...
1540 */
1541 memset(stream->oa_buffer.vaddr, 0,
1542 stream->oa_buffer.vma->size);
Lionel Landwerlin00a7f0d2019-10-25 12:37:46 -07001543}
1544
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07001545static int alloc_oa_buffer(struct i915_perf_stream *stream)
Robert Braggd7965152016-11-07 19:49:52 +00001546{
Pankaj Bharadiyaa9f236d2020-01-15 09:14:54 +05301547 struct drm_i915_private *i915 = stream->perf->i915;
Robert Braggd7965152016-11-07 19:49:52 +00001548 struct drm_i915_gem_object *bo;
1549 struct i915_vma *vma;
1550 int ret;
1551
Pankaj Bharadiyaa9f236d2020-01-15 09:14:54 +05301552 if (drm_WARN_ON(&i915->drm, stream->oa_buffer.vma))
Robert Braggd7965152016-11-07 19:49:52 +00001553 return -ENODEV;
1554
Joonas Lahtinenfe841682018-11-16 15:55:09 +02001555 BUILD_BUG_ON_NOT_POWER_OF_2(OA_BUFFER_SIZE);
1556 BUILD_BUG_ON(OA_BUFFER_SIZE < SZ_128K || OA_BUFFER_SIZE > SZ_16M);
1557
Chris Wilson8f8b1172019-10-07 22:09:41 +01001558 bo = i915_gem_object_create_shmem(stream->perf->i915, OA_BUFFER_SIZE);
Robert Braggd7965152016-11-07 19:49:52 +00001559 if (IS_ERR(bo)) {
Wambui Karuga00376cc2020-01-31 12:34:12 +03001560 drm_err(&i915->drm, "Failed to allocate OA buffer\n");
Chris Wilson28507482019-10-04 14:39:58 +01001561 return PTR_ERR(bo);
Robert Braggd7965152016-11-07 19:49:52 +00001562 }
1563
Chris Wilsona679f582019-03-21 16:19:07 +00001564 i915_gem_object_set_cache_coherency(bo, I915_CACHE_LLC);
Robert Braggd7965152016-11-07 19:49:52 +00001565
1566 /* PreHSW required 512K alignment, HSW requires 16M */
1567 vma = i915_gem_object_ggtt_pin(bo, NULL, 0, SZ_16M, 0);
1568 if (IS_ERR(vma)) {
1569 ret = PTR_ERR(vma);
1570 goto err_unref;
1571 }
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07001572 stream->oa_buffer.vma = vma;
Robert Braggd7965152016-11-07 19:49:52 +00001573
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07001574 stream->oa_buffer.vaddr =
Maarten Lankhorstef4985b2021-03-23 16:50:24 +01001575 i915_gem_object_pin_map_unlocked(bo, I915_MAP_WB);
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07001576 if (IS_ERR(stream->oa_buffer.vaddr)) {
1577 ret = PTR_ERR(stream->oa_buffer.vaddr);
Robert Braggd7965152016-11-07 19:49:52 +00001578 goto err_unpin;
1579 }
1580
Chris Wilson28507482019-10-04 14:39:58 +01001581 return 0;
Robert Braggd7965152016-11-07 19:49:52 +00001582
1583err_unpin:
1584 __i915_vma_unpin(vma);
1585
1586err_unref:
1587 i915_gem_object_put(bo);
1588
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07001589 stream->oa_buffer.vaddr = NULL;
1590 stream->oa_buffer.vma = NULL;
Robert Braggd7965152016-11-07 19:49:52 +00001591
Robert Braggd7965152016-11-07 19:49:52 +00001592 return ret;
1593}
1594
Lionel Landwerlindaed3e42019-10-12 08:23:07 +01001595static u32 *save_restore_register(struct i915_perf_stream *stream, u32 *cs,
1596 bool save, i915_reg_t reg, u32 offset,
1597 u32 dword_count)
1598{
1599 u32 cmd;
1600 u32 d;
1601
1602 cmd = save ? MI_STORE_REGISTER_MEM : MI_LOAD_REGISTER_MEM;
Umesh Nerlige Ramappae43ff992020-07-09 23:45:03 +01001603 cmd |= MI_SRM_LRM_GLOBAL_GTT;
Lucas De Marchi651e7d42021-06-05 21:50:49 -07001604 if (GRAPHICS_VER(stream->perf->i915) >= 8)
Lionel Landwerlindaed3e42019-10-12 08:23:07 +01001605 cmd++;
1606
1607 for (d = 0; d < dword_count; d++) {
1608 *cs++ = cmd;
1609 *cs++ = i915_mmio_reg_offset(reg) + 4 * d;
1610 *cs++ = intel_gt_scratch_offset(stream->engine->gt,
1611 offset) + 4 * d;
1612 *cs++ = 0;
1613 }
1614
1615 return cs;
1616}
1617
1618static int alloc_noa_wait(struct i915_perf_stream *stream)
1619{
1620 struct drm_i915_private *i915 = stream->perf->i915;
1621 struct drm_i915_gem_object *bo;
1622 struct i915_vma *vma;
1623 const u64 delay_ticks = 0xffffffffffffffff -
Chris Wilsonf1705232020-12-23 12:23:59 +00001624 intel_gt_ns_to_clock_interval(stream->perf->i915->ggtt.vm.gt,
1625 atomic64_read(&stream->perf->noa_programming_delay));
Lionel Landwerlindaed3e42019-10-12 08:23:07 +01001626 const u32 base = stream->engine->mmio_base;
1627#define CS_GPR(x) GEN8_RING_CS_GPR(base, x)
1628 u32 *batch, *ts0, *cs, *jump;
Maarten Lankhorstef4985b2021-03-23 16:50:24 +01001629 struct i915_gem_ww_ctx ww;
Lionel Landwerlindaed3e42019-10-12 08:23:07 +01001630 int ret, i;
1631 enum {
1632 START_TS,
1633 NOW_TS,
1634 DELTA_TS,
1635 JUMP_PREDICATE,
1636 DELTA_TARGET,
1637 N_CS_GPR
1638 };
1639
1640 bo = i915_gem_object_create_internal(i915, 4096);
1641 if (IS_ERR(bo)) {
Wambui Karuga00376cc2020-01-31 12:34:12 +03001642 drm_err(&i915->drm,
1643 "Failed to allocate NOA wait batchbuffer\n");
Lionel Landwerlindaed3e42019-10-12 08:23:07 +01001644 return PTR_ERR(bo);
1645 }
1646
Maarten Lankhorstef4985b2021-03-23 16:50:24 +01001647 i915_gem_ww_ctx_init(&ww, true);
1648retry:
1649 ret = i915_gem_object_lock(bo, &ww);
1650 if (ret)
1651 goto out_ww;
1652
Lionel Landwerlindaed3e42019-10-12 08:23:07 +01001653 /*
1654 * We pin in GGTT because we jump into this buffer now because
1655 * multiple OA config BOs will have a jump to this address and it
1656 * needs to be fixed during the lifetime of the i915/perf stream.
1657 */
Maarten Lankhorstef4985b2021-03-23 16:50:24 +01001658 vma = i915_gem_object_ggtt_pin_ww(bo, &ww, NULL, 0, 0, PIN_HIGH);
Lionel Landwerlindaed3e42019-10-12 08:23:07 +01001659 if (IS_ERR(vma)) {
1660 ret = PTR_ERR(vma);
Maarten Lankhorstef4985b2021-03-23 16:50:24 +01001661 goto out_ww;
Lionel Landwerlindaed3e42019-10-12 08:23:07 +01001662 }
1663
1664 batch = cs = i915_gem_object_pin_map(bo, I915_MAP_WB);
1665 if (IS_ERR(batch)) {
1666 ret = PTR_ERR(batch);
1667 goto err_unpin;
1668 }
1669
1670 /* Save registers. */
1671 for (i = 0; i < N_CS_GPR; i++)
1672 cs = save_restore_register(
1673 stream, cs, true /* save */, CS_GPR(i),
1674 INTEL_GT_SCRATCH_FIELD_PERF_CS_GPR + 8 * i, 2);
1675 cs = save_restore_register(
1676 stream, cs, true /* save */, MI_PREDICATE_RESULT_1,
1677 INTEL_GT_SCRATCH_FIELD_PERF_PREDICATE_RESULT_1, 1);
1678
1679 /* First timestamp snapshot location. */
1680 ts0 = cs;
1681
1682 /*
1683 * Initial snapshot of the timestamp register to implement the wait.
1684 * We work with 32b values, so clear out the top 32b bits of the
1685 * register because the ALU works 64bits.
1686 */
1687 *cs++ = MI_LOAD_REGISTER_IMM(1);
1688 *cs++ = i915_mmio_reg_offset(CS_GPR(START_TS)) + 4;
1689 *cs++ = 0;
1690 *cs++ = MI_LOAD_REGISTER_REG | (3 - 2);
1691 *cs++ = i915_mmio_reg_offset(RING_TIMESTAMP(base));
1692 *cs++ = i915_mmio_reg_offset(CS_GPR(START_TS));
1693
1694 /*
1695 * This is the location we're going to jump back into until the
1696 * required amount of time has passed.
1697 */
1698 jump = cs;
1699
1700 /*
1701 * Take another snapshot of the timestamp register. Take care to clear
1702 * up the top 32bits of CS_GPR(1) as we're using it for other
1703 * operations below.
1704 */
1705 *cs++ = MI_LOAD_REGISTER_IMM(1);
1706 *cs++ = i915_mmio_reg_offset(CS_GPR(NOW_TS)) + 4;
1707 *cs++ = 0;
1708 *cs++ = MI_LOAD_REGISTER_REG | (3 - 2);
1709 *cs++ = i915_mmio_reg_offset(RING_TIMESTAMP(base));
1710 *cs++ = i915_mmio_reg_offset(CS_GPR(NOW_TS));
1711
1712 /*
1713 * Do a diff between the 2 timestamps and store the result back into
1714 * CS_GPR(1).
1715 */
1716 *cs++ = MI_MATH(5);
1717 *cs++ = MI_MATH_LOAD(MI_MATH_REG_SRCA, MI_MATH_REG(NOW_TS));
1718 *cs++ = MI_MATH_LOAD(MI_MATH_REG_SRCB, MI_MATH_REG(START_TS));
1719 *cs++ = MI_MATH_SUB;
1720 *cs++ = MI_MATH_STORE(MI_MATH_REG(DELTA_TS), MI_MATH_REG_ACCU);
1721 *cs++ = MI_MATH_STORE(MI_MATH_REG(JUMP_PREDICATE), MI_MATH_REG_CF);
1722
1723 /*
1724 * Transfer the carry flag (set to 1 if ts1 < ts0, meaning the
1725 * timestamp have rolled over the 32bits) into the predicate register
1726 * to be used for the predicated jump.
1727 */
1728 *cs++ = MI_LOAD_REGISTER_REG | (3 - 2);
1729 *cs++ = i915_mmio_reg_offset(CS_GPR(JUMP_PREDICATE));
1730 *cs++ = i915_mmio_reg_offset(MI_PREDICATE_RESULT_1);
1731
1732 /* Restart from the beginning if we had timestamps roll over. */
Lucas De Marchi651e7d42021-06-05 21:50:49 -07001733 *cs++ = (GRAPHICS_VER(i915) < 8 ?
Lionel Landwerlindaed3e42019-10-12 08:23:07 +01001734 MI_BATCH_BUFFER_START :
1735 MI_BATCH_BUFFER_START_GEN8) |
1736 MI_BATCH_PREDICATE;
1737 *cs++ = i915_ggtt_offset(vma) + (ts0 - batch) * 4;
1738 *cs++ = 0;
1739
1740 /*
1741 * Now add the diff between to previous timestamps and add it to :
1742 * (((1 * << 64) - 1) - delay_ns)
1743 *
1744 * When the Carry Flag contains 1 this means the elapsed time is
1745 * longer than the expected delay, and we can exit the wait loop.
1746 */
1747 *cs++ = MI_LOAD_REGISTER_IMM(2);
1748 *cs++ = i915_mmio_reg_offset(CS_GPR(DELTA_TARGET));
1749 *cs++ = lower_32_bits(delay_ticks);
1750 *cs++ = i915_mmio_reg_offset(CS_GPR(DELTA_TARGET)) + 4;
1751 *cs++ = upper_32_bits(delay_ticks);
1752
1753 *cs++ = MI_MATH(4);
1754 *cs++ = MI_MATH_LOAD(MI_MATH_REG_SRCA, MI_MATH_REG(DELTA_TS));
1755 *cs++ = MI_MATH_LOAD(MI_MATH_REG_SRCB, MI_MATH_REG(DELTA_TARGET));
1756 *cs++ = MI_MATH_ADD;
1757 *cs++ = MI_MATH_STOREINV(MI_MATH_REG(JUMP_PREDICATE), MI_MATH_REG_CF);
1758
Lionel Landwerlindd590f62019-11-14 16:02:24 +02001759 *cs++ = MI_ARB_CHECK;
1760
Lionel Landwerlindaed3e42019-10-12 08:23:07 +01001761 /*
1762 * Transfer the result into the predicate register to be used for the
1763 * predicated jump.
1764 */
1765 *cs++ = MI_LOAD_REGISTER_REG | (3 - 2);
1766 *cs++ = i915_mmio_reg_offset(CS_GPR(JUMP_PREDICATE));
1767 *cs++ = i915_mmio_reg_offset(MI_PREDICATE_RESULT_1);
1768
1769 /* Predicate the jump. */
Lucas De Marchi651e7d42021-06-05 21:50:49 -07001770 *cs++ = (GRAPHICS_VER(i915) < 8 ?
Lionel Landwerlindaed3e42019-10-12 08:23:07 +01001771 MI_BATCH_BUFFER_START :
1772 MI_BATCH_BUFFER_START_GEN8) |
1773 MI_BATCH_PREDICATE;
1774 *cs++ = i915_ggtt_offset(vma) + (jump - batch) * 4;
1775 *cs++ = 0;
1776
1777 /* Restore registers. */
1778 for (i = 0; i < N_CS_GPR; i++)
1779 cs = save_restore_register(
1780 stream, cs, false /* restore */, CS_GPR(i),
1781 INTEL_GT_SCRATCH_FIELD_PERF_CS_GPR + 8 * i, 2);
1782 cs = save_restore_register(
1783 stream, cs, false /* restore */, MI_PREDICATE_RESULT_1,
1784 INTEL_GT_SCRATCH_FIELD_PERF_PREDICATE_RESULT_1, 1);
1785
1786 /* And return to the ring. */
1787 *cs++ = MI_BATCH_BUFFER_END;
1788
1789 GEM_BUG_ON(cs - batch > PAGE_SIZE / sizeof(*batch));
1790
1791 i915_gem_object_flush_map(bo);
Chris Wilson89d19b22020-07-08 18:37:47 +01001792 __i915_gem_object_release_map(bo);
Lionel Landwerlindaed3e42019-10-12 08:23:07 +01001793
1794 stream->noa_wait = vma;
Maarten Lankhorstef4985b2021-03-23 16:50:24 +01001795 goto out_ww;
Lionel Landwerlindaed3e42019-10-12 08:23:07 +01001796
1797err_unpin:
Lionel Landwerlin15d0ace2019-10-12 08:23:08 +01001798 i915_vma_unpin_and_release(&vma, 0);
Maarten Lankhorstef4985b2021-03-23 16:50:24 +01001799out_ww:
1800 if (ret == -EDEADLK) {
1801 ret = i915_gem_ww_ctx_backoff(&ww);
1802 if (!ret)
1803 goto retry;
1804 }
1805 i915_gem_ww_ctx_fini(&ww);
1806 if (ret)
1807 i915_gem_object_put(bo);
Lionel Landwerlindaed3e42019-10-12 08:23:07 +01001808 return ret;
1809}
1810
Lionel Landwerlin15d0ace2019-10-12 08:23:08 +01001811static u32 *write_cs_mi_lri(u32 *cs,
1812 const struct i915_oa_reg *reg_data,
1813 u32 n_regs)
Robert Braggd7965152016-11-07 19:49:52 +00001814{
Lionel Landwerlin701f8232017-08-03 17:58:08 +01001815 u32 i;
Robert Braggd7965152016-11-07 19:49:52 +00001816
1817 for (i = 0; i < n_regs; i++) {
Lionel Landwerlin15d0ace2019-10-12 08:23:08 +01001818 if ((i % MI_LOAD_REGISTER_IMM_MAX_REGS) == 0) {
1819 u32 n_lri = min_t(u32,
1820 n_regs - i,
1821 MI_LOAD_REGISTER_IMM_MAX_REGS);
Robert Braggd7965152016-11-07 19:49:52 +00001822
Lionel Landwerlin15d0ace2019-10-12 08:23:08 +01001823 *cs++ = MI_LOAD_REGISTER_IMM(n_lri);
1824 }
1825 *cs++ = i915_mmio_reg_offset(reg_data[i].addr);
1826 *cs++ = reg_data[i].value;
Robert Braggd7965152016-11-07 19:49:52 +00001827 }
Lionel Landwerlin15d0ace2019-10-12 08:23:08 +01001828
1829 return cs;
Robert Braggd7965152016-11-07 19:49:52 +00001830}
1831
Lionel Landwerlin15d0ace2019-10-12 08:23:08 +01001832static int num_lri_dwords(int num_regs)
Robert Braggd7965152016-11-07 19:49:52 +00001833{
Lionel Landwerlin15d0ace2019-10-12 08:23:08 +01001834 int count = 0;
1835
1836 if (num_regs > 0) {
1837 count += DIV_ROUND_UP(num_regs, MI_LOAD_REGISTER_IMM_MAX_REGS);
1838 count += num_regs * 2;
1839 }
1840
1841 return count;
1842}
1843
1844static struct i915_oa_config_bo *
1845alloc_oa_config_buffer(struct i915_perf_stream *stream,
1846 struct i915_oa_config *oa_config)
1847{
1848 struct drm_i915_gem_object *obj;
1849 struct i915_oa_config_bo *oa_bo;
Maarten Lankhorstef4985b2021-03-23 16:50:24 +01001850 struct i915_gem_ww_ctx ww;
Lionel Landwerlin15d0ace2019-10-12 08:23:08 +01001851 size_t config_length = 0;
1852 u32 *cs;
1853 int err;
1854
1855 oa_bo = kzalloc(sizeof(*oa_bo), GFP_KERNEL);
1856 if (!oa_bo)
1857 return ERR_PTR(-ENOMEM);
1858
1859 config_length += num_lri_dwords(oa_config->mux_regs_len);
1860 config_length += num_lri_dwords(oa_config->b_counter_regs_len);
1861 config_length += num_lri_dwords(oa_config->flex_regs_len);
Lionel Landwerlin93937652019-11-13 17:46:39 +02001862 config_length += 3; /* MI_BATCH_BUFFER_START */
Lionel Landwerlin15d0ace2019-10-12 08:23:08 +01001863 config_length = ALIGN(sizeof(u32) * config_length, I915_GTT_PAGE_SIZE);
1864
1865 obj = i915_gem_object_create_shmem(stream->perf->i915, config_length);
1866 if (IS_ERR(obj)) {
1867 err = PTR_ERR(obj);
1868 goto err_free;
1869 }
1870
Maarten Lankhorstef4985b2021-03-23 16:50:24 +01001871 i915_gem_ww_ctx_init(&ww, true);
1872retry:
1873 err = i915_gem_object_lock(obj, &ww);
1874 if (err)
1875 goto out_ww;
1876
Lionel Landwerlin15d0ace2019-10-12 08:23:08 +01001877 cs = i915_gem_object_pin_map(obj, I915_MAP_WB);
1878 if (IS_ERR(cs)) {
1879 err = PTR_ERR(cs);
Maarten Lankhorstef4985b2021-03-23 16:50:24 +01001880 goto out_ww;
Lionel Landwerlin15d0ace2019-10-12 08:23:08 +01001881 }
1882
1883 cs = write_cs_mi_lri(cs,
1884 oa_config->mux_regs,
1885 oa_config->mux_regs_len);
1886 cs = write_cs_mi_lri(cs,
1887 oa_config->b_counter_regs,
1888 oa_config->b_counter_regs_len);
1889 cs = write_cs_mi_lri(cs,
1890 oa_config->flex_regs,
1891 oa_config->flex_regs_len);
1892
Lionel Landwerlin93937652019-11-13 17:46:39 +02001893 /* Jump into the active wait. */
Lucas De Marchi651e7d42021-06-05 21:50:49 -07001894 *cs++ = (GRAPHICS_VER(stream->perf->i915) < 8 ?
Lionel Landwerlin93937652019-11-13 17:46:39 +02001895 MI_BATCH_BUFFER_START :
1896 MI_BATCH_BUFFER_START_GEN8);
1897 *cs++ = i915_ggtt_offset(stream->noa_wait);
1898 *cs++ = 0;
Lionel Landwerlin15d0ace2019-10-12 08:23:08 +01001899
1900 i915_gem_object_flush_map(obj);
Chris Wilson89d19b22020-07-08 18:37:47 +01001901 __i915_gem_object_release_map(obj);
Lionel Landwerlin15d0ace2019-10-12 08:23:08 +01001902
1903 oa_bo->vma = i915_vma_instance(obj,
1904 &stream->engine->gt->ggtt->vm,
1905 NULL);
1906 if (IS_ERR(oa_bo->vma)) {
1907 err = PTR_ERR(oa_bo->vma);
Maarten Lankhorstef4985b2021-03-23 16:50:24 +01001908 goto out_ww;
Lionel Landwerlin15d0ace2019-10-12 08:23:08 +01001909 }
1910
1911 oa_bo->oa_config = i915_oa_config_get(oa_config);
1912 llist_add(&oa_bo->node, &stream->oa_config_bos);
1913
Maarten Lankhorstef4985b2021-03-23 16:50:24 +01001914out_ww:
1915 if (err == -EDEADLK) {
1916 err = i915_gem_ww_ctx_backoff(&ww);
1917 if (!err)
1918 goto retry;
1919 }
1920 i915_gem_ww_ctx_fini(&ww);
Lionel Landwerlin15d0ace2019-10-12 08:23:08 +01001921
Maarten Lankhorstef4985b2021-03-23 16:50:24 +01001922 if (err)
1923 i915_gem_object_put(obj);
Lionel Landwerlin15d0ace2019-10-12 08:23:08 +01001924err_free:
Maarten Lankhorstef4985b2021-03-23 16:50:24 +01001925 if (err) {
1926 kfree(oa_bo);
1927 return ERR_PTR(err);
1928 }
1929 return oa_bo;
Lionel Landwerlin15d0ace2019-10-12 08:23:08 +01001930}
1931
1932static struct i915_vma *
1933get_oa_vma(struct i915_perf_stream *stream, struct i915_oa_config *oa_config)
1934{
1935 struct i915_oa_config_bo *oa_bo;
1936
Lionel Landwerlin14bfcd32019-07-10 11:55:24 +01001937 /*
Lionel Landwerlin15d0ace2019-10-12 08:23:08 +01001938 * Look for the buffer in the already allocated BOs attached
1939 * to the stream.
Robert Braggd7965152016-11-07 19:49:52 +00001940 */
Lionel Landwerlin15d0ace2019-10-12 08:23:08 +01001941 llist_for_each_entry(oa_bo, stream->oa_config_bos.first, node) {
1942 if (oa_bo->oa_config == oa_config &&
1943 memcmp(oa_bo->oa_config->uuid,
1944 oa_config->uuid,
1945 sizeof(oa_config->uuid)) == 0)
1946 goto out;
1947 }
1948
1949 oa_bo = alloc_oa_config_buffer(stream, oa_config);
1950 if (IS_ERR(oa_bo))
1951 return ERR_CAST(oa_bo);
1952
1953out:
1954 return i915_vma_get(oa_bo->vma);
1955}
1956
Chris Wilsond7d50f82020-03-27 11:22:12 +00001957static int
Chris Wilson4b4e9732020-03-02 08:57:57 +00001958emit_oa_config(struct i915_perf_stream *stream,
1959 struct i915_oa_config *oa_config,
Chris Wilsond7d50f82020-03-27 11:22:12 +00001960 struct intel_context *ce,
1961 struct i915_active *active)
Lionel Landwerlin15d0ace2019-10-12 08:23:08 +01001962{
1963 struct i915_request *rq;
1964 struct i915_vma *vma;
Maarten Lankhorstf00ecc22020-08-19 16:08:57 +02001965 struct i915_gem_ww_ctx ww;
Lionel Landwerlin15d0ace2019-10-12 08:23:08 +01001966 int err;
1967
Lionel Landwerlin8814c6d2019-10-20 00:46:47 +03001968 vma = get_oa_vma(stream, oa_config);
Lionel Landwerlin15d0ace2019-10-12 08:23:08 +01001969 if (IS_ERR(vma))
Chris Wilsond7d50f82020-03-27 11:22:12 +00001970 return PTR_ERR(vma);
Lionel Landwerlin15d0ace2019-10-12 08:23:08 +01001971
Maarten Lankhorstf00ecc22020-08-19 16:08:57 +02001972 i915_gem_ww_ctx_init(&ww, true);
1973retry:
1974 err = i915_gem_object_lock(vma->obj, &ww);
Lionel Landwerlin15d0ace2019-10-12 08:23:08 +01001975 if (err)
Maarten Lankhorstf00ecc22020-08-19 16:08:57 +02001976 goto err;
1977
1978 err = i915_vma_pin_ww(vma, &ww, 0, 0, PIN_GLOBAL | PIN_HIGH);
1979 if (err)
1980 goto err;
Lionel Landwerlin15d0ace2019-10-12 08:23:08 +01001981
Chris Wilsonde5825b2019-11-25 10:58:56 +00001982 intel_engine_pm_get(ce->engine);
Lionel Landwerlin15d0ace2019-10-12 08:23:08 +01001983 rq = i915_request_create(ce);
Chris Wilsonde5825b2019-11-25 10:58:56 +00001984 intel_engine_pm_put(ce->engine);
Lionel Landwerlin15d0ace2019-10-12 08:23:08 +01001985 if (IS_ERR(rq)) {
1986 err = PTR_ERR(rq);
1987 goto err_vma_unpin;
1988 }
1989
Chris Wilsond7d50f82020-03-27 11:22:12 +00001990 if (!IS_ERR_OR_NULL(active)) {
1991 /* After all individual context modifications */
1992 err = i915_request_await_active(rq, active,
Chris Wilson442dbc52020-04-06 16:58:38 +01001993 I915_ACTIVE_AWAIT_ACTIVE);
Chris Wilsond7d50f82020-03-27 11:22:12 +00001994 if (err)
1995 goto err_add_request;
1996
1997 err = i915_active_add_request(active, rq);
1998 if (err)
1999 goto err_add_request;
2000 }
2001
Lionel Landwerlin15d0ace2019-10-12 08:23:08 +01002002 err = i915_request_await_object(rq, vma->obj, 0);
2003 if (!err)
2004 err = i915_vma_move_to_active(vma, rq, 0);
Lionel Landwerlin15d0ace2019-10-12 08:23:08 +01002005 if (err)
2006 goto err_add_request;
2007
2008 err = rq->engine->emit_bb_start(rq,
2009 vma->node.start, 0,
2010 I915_DISPATCH_SECURE);
Chris Wilson4b4e9732020-03-02 08:57:57 +00002011 if (err)
2012 goto err_add_request;
2013
Lionel Landwerlin15d0ace2019-10-12 08:23:08 +01002014err_add_request:
2015 i915_request_add(rq);
2016err_vma_unpin:
2017 i915_vma_unpin(vma);
Maarten Lankhorstf00ecc22020-08-19 16:08:57 +02002018err:
2019 if (err == -EDEADLK) {
2020 err = i915_gem_ww_ctx_backoff(&ww);
2021 if (!err)
2022 goto retry;
2023 }
2024
2025 i915_gem_ww_ctx_fini(&ww);
Lionel Landwerlin15d0ace2019-10-12 08:23:08 +01002026 i915_vma_put(vma);
Chris Wilsond7d50f82020-03-27 11:22:12 +00002027 return err;
Lionel Landwerlin14bfcd32019-07-10 11:55:24 +01002028}
2029
Chris Wilson5f5c3822019-10-12 10:10:56 +01002030static struct intel_context *oa_context(struct i915_perf_stream *stream)
2031{
2032 return stream->pinned_ctx ?: stream->engine->kernel_context;
2033}
2034
Chris Wilsond7d50f82020-03-27 11:22:12 +00002035static int
2036hsw_enable_metric_set(struct i915_perf_stream *stream,
2037 struct i915_active *active)
Lionel Landwerlin14bfcd32019-07-10 11:55:24 +01002038{
Chris Wilson52111c42019-10-10 16:05:20 +01002039 struct intel_uncore *uncore = stream->uncore;
Lionel Landwerlin14bfcd32019-07-10 11:55:24 +01002040
2041 /*
2042 * PRM:
2043 *
2044 * OA unit is using “crclk” for its functionality. When trunk
2045 * level clock gating takes place, OA clock would be gated,
2046 * unable to count the events from non-render clock domain.
2047 * Render clock gating must be disabled when OA is enabled to
2048 * count the events from non-render domain. Unit level clock
2049 * gating for RCS should also be disabled.
2050 */
Chris Wilson8f8b1172019-10-07 22:09:41 +01002051 intel_uncore_rmw(uncore, GEN7_MISCCPCTL,
2052 GEN7_DOP_CLOCK_GATE_ENABLE, 0);
2053 intel_uncore_rmw(uncore, GEN6_UCGCTL1,
2054 0, GEN6_CSUNIT_CLOCK_GATE_DISABLE);
Lionel Landwerlin14bfcd32019-07-10 11:55:24 +01002055
Chris Wilsond7d50f82020-03-27 11:22:12 +00002056 return emit_oa_config(stream,
2057 stream->oa_config, oa_context(stream),
2058 active);
Robert Braggd7965152016-11-07 19:49:52 +00002059}
2060
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07002061static void hsw_disable_metric_set(struct i915_perf_stream *stream)
Robert Braggd7965152016-11-07 19:49:52 +00002062{
Chris Wilson52111c42019-10-10 16:05:20 +01002063 struct intel_uncore *uncore = stream->uncore;
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07002064
Chris Wilson8f8b1172019-10-07 22:09:41 +01002065 intel_uncore_rmw(uncore, GEN6_UCGCTL1,
2066 GEN6_CSUNIT_CLOCK_GATE_DISABLE, 0);
2067 intel_uncore_rmw(uncore, GEN7_MISCCPCTL,
2068 0, GEN7_DOP_CLOCK_GATE_ENABLE);
Robert Braggd7965152016-11-07 19:49:52 +00002069
Chris Wilson8f8b1172019-10-07 22:09:41 +01002070 intel_uncore_rmw(uncore, GDT_CHICKEN_BITS, GT_NOA_ENABLE, 0);
Robert Braggd7965152016-11-07 19:49:52 +00002071}
2072
Chris Wilsona9877da2019-07-16 22:34:43 +01002073static u32 oa_config_flex_reg(const struct i915_oa_config *oa_config,
2074 i915_reg_t reg)
2075{
2076 u32 mmio = i915_mmio_reg_offset(reg);
2077 int i;
2078
2079 /*
2080 * This arbitrary default will select the 'EU FPU0 Pipeline
2081 * Active' event. In the future it's anticipated that there
2082 * will be an explicit 'No Event' we can select, but not yet...
2083 */
2084 if (!oa_config)
2085 return 0;
2086
2087 for (i = 0; i < oa_config->flex_regs_len; i++) {
2088 if (i915_mmio_reg_offset(oa_config->flex_regs[i].addr) == mmio)
2089 return oa_config->flex_regs[i].value;
2090 }
2091
2092 return 0;
2093}
Robert Bragg19f81df2017-06-13 12:23:03 +01002094/*
2095 * NB: It must always remain pointer safe to run this even if the OA unit
2096 * has been disabled.
2097 *
2098 * It's fine to put out-of-date values into these per-context registers
2099 * in the case that the OA unit has been disabled.
2100 */
Chris Wilsonb146e5e2019-03-06 08:47:04 +00002101static void
Chris Wilson7dc56af2019-09-24 15:59:50 +01002102gen8_update_reg_state_unlocked(const struct intel_context *ce,
2103 const struct i915_perf_stream *stream)
Robert Bragg19f81df2017-06-13 12:23:03 +01002104{
Chris Wilson8f8b1172019-10-07 22:09:41 +01002105 u32 ctx_oactxctrl = stream->perf->ctx_oactxctrl_offset;
2106 u32 ctx_flexeu0 = stream->perf->ctx_flexeu0_offset;
Robert Bragg19f81df2017-06-13 12:23:03 +01002107 /* The MMIO offsets for Flex EU registers aren't contiguous */
Lionel Landwerlin35ab4fd2018-08-13 09:02:18 +01002108 i915_reg_t flex_regs[] = {
2109 EU_PERF_CNTL0,
2110 EU_PERF_CNTL1,
2111 EU_PERF_CNTL2,
2112 EU_PERF_CNTL3,
2113 EU_PERF_CNTL4,
2114 EU_PERF_CNTL5,
2115 EU_PERF_CNTL6,
Robert Bragg19f81df2017-06-13 12:23:03 +01002116 };
Chris Wilson7dc56af2019-09-24 15:59:50 +01002117 u32 *reg_state = ce->lrc_reg_state;
Robert Bragg19f81df2017-06-13 12:23:03 +01002118 int i;
2119
Umesh Nerlige Ramappaccdeed42019-12-06 11:43:39 -08002120 reg_state[ctx_oactxctrl + 1] =
2121 (stream->period_exponent << GEN8_OA_TIMER_PERIOD_SHIFT) |
2122 (stream->periodic ? GEN8_OA_TIMER_ENABLE : 0) |
2123 GEN8_OA_COUNTER_RESUME;
Robert Bragg19f81df2017-06-13 12:23:03 +01002124
Umesh Nerlige Ramappaccdeed42019-12-06 11:43:39 -08002125 for (i = 0; i < ARRAY_SIZE(flex_regs); i++)
Chris Wilson7dc56af2019-09-24 15:59:50 +01002126 reg_state[ctx_flexeu0 + i * 2 + 1] =
2127 oa_config_flex_reg(stream->oa_config, flex_regs[i]);
Robert Bragg19f81df2017-06-13 12:23:03 +01002128}
2129
Chris Wilsona9877da2019-07-16 22:34:43 +01002130struct flex {
2131 i915_reg_t reg;
2132 u32 offset;
2133 u32 value;
2134};
2135
2136static int
2137gen8_store_flex(struct i915_request *rq,
2138 struct intel_context *ce,
2139 const struct flex *flex, unsigned int count)
2140{
2141 u32 offset;
2142 u32 *cs;
2143
2144 cs = intel_ring_begin(rq, 4 * count);
2145 if (IS_ERR(cs))
2146 return PTR_ERR(cs);
2147
Mika Kuoppalab4892e42020-04-23 21:23:52 +03002148 offset = i915_ggtt_offset(ce->state) + LRC_STATE_OFFSET;
Chris Wilsona9877da2019-07-16 22:34:43 +01002149 do {
2150 *cs++ = MI_STORE_DWORD_IMM_GEN4 | MI_USE_GGTT;
Chris Wilson7dc56af2019-09-24 15:59:50 +01002151 *cs++ = offset + flex->offset * sizeof(u32);
Chris Wilsona9877da2019-07-16 22:34:43 +01002152 *cs++ = 0;
2153 *cs++ = flex->value;
2154 } while (flex++, --count);
2155
2156 intel_ring_advance(rq, cs);
2157
2158 return 0;
2159}
2160
2161static int
2162gen8_load_flex(struct i915_request *rq,
2163 struct intel_context *ce,
2164 const struct flex *flex, unsigned int count)
2165{
2166 u32 *cs;
2167
2168 GEM_BUG_ON(!count || count > 63);
2169
2170 cs = intel_ring_begin(rq, 2 * count + 2);
2171 if (IS_ERR(cs))
2172 return PTR_ERR(cs);
2173
2174 *cs++ = MI_LOAD_REGISTER_IMM(count);
2175 do {
2176 *cs++ = i915_mmio_reg_offset(flex->reg);
2177 *cs++ = flex->value;
2178 } while (flex++, --count);
2179 *cs++ = MI_NOOP;
2180
2181 intel_ring_advance(rq, cs);
2182
2183 return 0;
2184}
2185
2186static int gen8_modify_context(struct intel_context *ce,
2187 const struct flex *flex, unsigned int count)
2188{
2189 struct i915_request *rq;
2190 int err;
2191
Chris Wilsonde5825b2019-11-25 10:58:56 +00002192 rq = intel_engine_create_kernel_request(ce->engine);
Chris Wilsona9877da2019-07-16 22:34:43 +01002193 if (IS_ERR(rq))
2194 return PTR_ERR(rq);
2195
2196 /* Serialise with the remote context */
2197 err = intel_context_prepare_remote_request(ce, rq);
2198 if (err == 0)
2199 err = gen8_store_flex(rq, ce, flex, count);
2200
2201 i915_request_add(rq);
2202 return err;
2203}
2204
Chris Wilsond7d50f82020-03-27 11:22:12 +00002205static int
2206gen8_modify_self(struct intel_context *ce,
2207 const struct flex *flex, unsigned int count,
2208 struct i915_active *active)
Chris Wilsona9877da2019-07-16 22:34:43 +01002209{
2210 struct i915_request *rq;
2211 int err;
2212
Chris Wilsond236e2a2020-02-27 08:57:06 +00002213 intel_engine_pm_get(ce->engine);
Chris Wilsona9877da2019-07-16 22:34:43 +01002214 rq = i915_request_create(ce);
Chris Wilsond236e2a2020-02-27 08:57:06 +00002215 intel_engine_pm_put(ce->engine);
Chris Wilsona9877da2019-07-16 22:34:43 +01002216 if (IS_ERR(rq))
2217 return PTR_ERR(rq);
2218
Chris Wilsond7d50f82020-03-27 11:22:12 +00002219 if (!IS_ERR_OR_NULL(active)) {
2220 err = i915_active_add_request(active, rq);
2221 if (err)
2222 goto err_add_request;
2223 }
Chris Wilsona9877da2019-07-16 22:34:43 +01002224
Chris Wilsond7d50f82020-03-27 11:22:12 +00002225 err = gen8_load_flex(rq, ce, flex, count);
2226 if (err)
2227 goto err_add_request;
2228
2229err_add_request:
Chris Wilsona9877da2019-07-16 22:34:43 +01002230 i915_request_add(rq);
2231 return err;
2232}
2233
Chris Wilson5cca5032019-07-26 14:14:58 +01002234static int gen8_configure_context(struct i915_gem_context *ctx,
2235 struct flex *flex, unsigned int count)
2236{
2237 struct i915_gem_engines_iter it;
2238 struct intel_context *ce;
2239 int err = 0;
2240
2241 for_each_gem_engine(ce, i915_gem_context_lock_engines(ctx), it) {
2242 GEM_BUG_ON(ce == ce->engine->kernel_context);
2243
2244 if (ce->engine->class != RENDER_CLASS)
2245 continue;
2246
Chris Wilsonfeed5c72020-01-09 08:51:42 +00002247 /* Otherwise OA settings will be set upon first use */
2248 if (!intel_context_pin_if_active(ce))
2249 continue;
Chris Wilson5cca5032019-07-26 14:14:58 +01002250
Venkata Sandeep Dhanalakota0b6613c2020-07-07 17:39:50 -07002251 flex->value = intel_sseu_make_rpcs(ce->engine->gt, &ce->sseu);
Chris Wilsonfeed5c72020-01-09 08:51:42 +00002252 err = gen8_modify_context(ce, flex, count);
Chris Wilson5cca5032019-07-26 14:14:58 +01002253
Chris Wilsonfeed5c72020-01-09 08:51:42 +00002254 intel_context_unpin(ce);
Chris Wilson5cca5032019-07-26 14:14:58 +01002255 if (err)
2256 break;
2257 }
2258 i915_gem_context_unlock_engines(ctx);
2259
2260 return err;
2261}
2262
Chris Wilsond7d50f82020-03-27 11:22:12 +00002263static int gen12_configure_oar_context(struct i915_perf_stream *stream,
2264 struct i915_active *active)
Lionel Landwerlin00a7f0d2019-10-25 12:37:46 -07002265{
Umesh Nerlige Ramappaccdeed42019-12-06 11:43:39 -08002266 int err;
2267 struct intel_context *ce = stream->pinned_ctx;
2268 u32 format = stream->oa_buffer.format;
2269 struct flex regs_context[] = {
2270 {
2271 GEN8_OACTXCONTROL,
2272 stream->perf->ctx_oactxctrl_offset + 1,
Chris Wilsond7d50f82020-03-27 11:22:12 +00002273 active ? GEN8_OA_COUNTER_RESUME : 0,
Umesh Nerlige Ramappaccdeed42019-12-06 11:43:39 -08002274 },
2275 };
2276 /* Offsets in regs_lri are not used since this configuration is only
2277 * applied using LRI. Initialize the correct offsets for posterity.
2278 */
2279#define GEN12_OAR_OACONTROL_OFFSET 0x5B0
2280 struct flex regs_lri[] = {
2281 {
2282 GEN12_OAR_OACONTROL,
2283 GEN12_OAR_OACONTROL_OFFSET + 1,
2284 (format << GEN12_OAR_OACONTROL_COUNTER_FORMAT_SHIFT) |
Chris Wilsond7d50f82020-03-27 11:22:12 +00002285 (active ? GEN12_OAR_OACONTROL_COUNTER_ENABLE : 0)
Umesh Nerlige Ramappaccdeed42019-12-06 11:43:39 -08002286 },
2287 {
2288 RING_CONTEXT_CONTROL(ce->engine->mmio_base),
2289 CTX_CONTEXT_CONTROL,
2290 _MASKED_FIELD(GEN12_CTX_CTRL_OAR_CONTEXT_ENABLE,
Chris Wilsond7d50f82020-03-27 11:22:12 +00002291 active ?
Umesh Nerlige Ramappaccdeed42019-12-06 11:43:39 -08002292 GEN12_CTX_CTRL_OAR_CONTEXT_ENABLE :
2293 0)
2294 },
2295 };
Lionel Landwerlin00a7f0d2019-10-25 12:37:46 -07002296
Umesh Nerlige Ramappaccdeed42019-12-06 11:43:39 -08002297 /* Modify the context image of pinned context with regs_context*/
2298 err = intel_context_lock_pinned(ce);
2299 if (err)
2300 return err;
Lionel Landwerlin00a7f0d2019-10-25 12:37:46 -07002301
Umesh Nerlige Ramappaccdeed42019-12-06 11:43:39 -08002302 err = gen8_modify_context(ce, regs_context, ARRAY_SIZE(regs_context));
2303 intel_context_unlock_pinned(ce);
2304 if (err)
2305 return err;
Lionel Landwerlin00a7f0d2019-10-25 12:37:46 -07002306
Umesh Nerlige Ramappaccdeed42019-12-06 11:43:39 -08002307 /* Apply regs_lri using LRI with pinned context */
Chris Wilsond7d50f82020-03-27 11:22:12 +00002308 return gen8_modify_self(ce, regs_lri, ARRAY_SIZE(regs_lri), active);
Lionel Landwerlin00a7f0d2019-10-25 12:37:46 -07002309}
2310
Robert Bragg19f81df2017-06-13 12:23:03 +01002311/*
Robert Bragg19f81df2017-06-13 12:23:03 +01002312 * Manages updating the per-context aspects of the OA stream
2313 * configuration across all contexts.
2314 *
2315 * The awkward consideration here is that OACTXCONTROL controls the
2316 * exponent for periodic sampling which is primarily used for system
2317 * wide profiling where we'd like a consistent sampling period even in
2318 * the face of context switches.
2319 *
2320 * Our approach of updating the register state context (as opposed to
2321 * say using a workaround batch buffer) ensures that the hardware
2322 * won't automatically reload an out-of-date timer exponent even
2323 * transiently before a WA BB could be parsed.
2324 *
2325 * This function needs to:
2326 * - Ensure the currently running context's per-context OA state is
2327 * updated
2328 * - Ensure that all existing contexts will have the correct per-context
2329 * OA state if they are scheduled for use.
2330 * - Ensure any new contexts will be initialized with the correct
2331 * per-context OA state.
2332 *
2333 * Note: it's only the RCS/Render context that has any OA state.
Umesh Nerlige Ramappaccdeed42019-12-06 11:43:39 -08002334 * Note: the first flex register passed must always be R_PWR_CLK_STATE
Robert Bragg19f81df2017-06-13 12:23:03 +01002335 */
Chris Wilsond7d50f82020-03-27 11:22:12 +00002336static int
2337oa_configure_all_contexts(struct i915_perf_stream *stream,
2338 struct flex *regs,
2339 size_t num_regs,
2340 struct i915_active *active)
Robert Bragg19f81df2017-06-13 12:23:03 +01002341{
Chris Wilson8f8b1172019-10-07 22:09:41 +01002342 struct drm_i915_private *i915 = stream->perf->i915;
Chris Wilsona9877da2019-07-16 22:34:43 +01002343 struct intel_engine_cs *engine;
Chris Wilsona4e7ccd2019-10-04 14:40:09 +01002344 struct i915_gem_context *ctx, *cn;
Umesh Nerlige Ramappaccdeed42019-12-06 11:43:39 -08002345 int err;
Chris Wilsona9877da2019-07-16 22:34:43 +01002346
Chris Wilsona4c969d2019-10-07 22:09:42 +01002347 lockdep_assert_held(&stream->perf->lock);
Robert Bragg19f81df2017-06-13 12:23:03 +01002348
Robert Bragg19f81df2017-06-13 12:23:03 +01002349 /*
2350 * The OA register config is setup through the context image. This image
2351 * might be written to by the GPU on context switch (in particular on
2352 * lite-restore). This means we can't safely update a context's image,
2353 * if this context is scheduled/submitted to run on the GPU.
2354 *
2355 * We could emit the OA register config through the batch buffer but
2356 * this might leave small interval of time where the OA unit is
2357 * configured at an invalid sampling period.
2358 *
Chris Wilsona9877da2019-07-16 22:34:43 +01002359 * Note that since we emit all requests from a single ring, there
2360 * is still an implicit global barrier here that may cause a high
2361 * priority context to wait for an otherwise independent low priority
2362 * context. Contexts idle at the time of reconfiguration are not
2363 * trapped behind the barrier.
Robert Bragg19f81df2017-06-13 12:23:03 +01002364 */
Chris Wilsona4e7ccd2019-10-04 14:40:09 +01002365 spin_lock(&i915->gem.contexts.lock);
2366 list_for_each_entry_safe(ctx, cn, &i915->gem.contexts.list, link) {
Chris Wilsona4e7ccd2019-10-04 14:40:09 +01002367 if (!kref_get_unless_zero(&ctx->ref))
2368 continue;
2369
2370 spin_unlock(&i915->gem.contexts.lock);
2371
Umesh Nerlige Ramappaccdeed42019-12-06 11:43:39 -08002372 err = gen8_configure_context(ctx, regs, num_regs);
Chris Wilsona4e7ccd2019-10-04 14:40:09 +01002373 if (err) {
2374 i915_gem_context_put(ctx);
Chris Wilsona9877da2019-07-16 22:34:43 +01002375 return err;
Chris Wilsona4e7ccd2019-10-04 14:40:09 +01002376 }
2377
2378 spin_lock(&i915->gem.contexts.lock);
2379 list_safe_reset_next(ctx, cn, link);
2380 i915_gem_context_put(ctx);
Robert Bragg19f81df2017-06-13 12:23:03 +01002381 }
Chris Wilsona4e7ccd2019-10-04 14:40:09 +01002382 spin_unlock(&i915->gem.contexts.lock);
Robert Bragg19f81df2017-06-13 12:23:03 +01002383
Tvrtko Ursulin722f3de2018-09-12 16:29:30 +01002384 /*
Chris Wilsona9877da2019-07-16 22:34:43 +01002385 * After updating all other contexts, we need to modify ourselves.
2386 * If we don't modify the kernel_context, we do not get events while
2387 * idle.
Tvrtko Ursulin722f3de2018-09-12 16:29:30 +01002388 */
Chris Wilson750e76b2019-08-06 13:43:00 +01002389 for_each_uabi_engine(engine, i915) {
Chris Wilsona9877da2019-07-16 22:34:43 +01002390 struct intel_context *ce = engine->kernel_context;
Tvrtko Ursulin722f3de2018-09-12 16:29:30 +01002391
Chris Wilsona9877da2019-07-16 22:34:43 +01002392 if (engine->class != RENDER_CLASS)
2393 continue;
2394
Venkata Sandeep Dhanalakota0b6613c2020-07-07 17:39:50 -07002395 regs[0].value = intel_sseu_make_rpcs(engine->gt, &ce->sseu);
Chris Wilsona9877da2019-07-16 22:34:43 +01002396
Chris Wilsond7d50f82020-03-27 11:22:12 +00002397 err = gen8_modify_self(ce, regs, num_regs, active);
Chris Wilsona9877da2019-07-16 22:34:43 +01002398 if (err)
2399 return err;
2400 }
Tvrtko Ursulin722f3de2018-09-12 16:29:30 +01002401
2402 return 0;
Robert Bragg19f81df2017-06-13 12:23:03 +01002403}
2404
Chris Wilsond7d50f82020-03-27 11:22:12 +00002405static int
2406gen12_configure_all_contexts(struct i915_perf_stream *stream,
2407 const struct i915_oa_config *oa_config,
2408 struct i915_active *active)
Umesh Nerlige Ramappaccdeed42019-12-06 11:43:39 -08002409{
2410 struct flex regs[] = {
2411 {
2412 GEN8_R_PWR_CLK_STATE,
2413 CTX_R_PWR_CLK_STATE,
2414 },
2415 };
2416
Chris Wilsond7d50f82020-03-27 11:22:12 +00002417 return oa_configure_all_contexts(stream,
2418 regs, ARRAY_SIZE(regs),
2419 active);
Umesh Nerlige Ramappaccdeed42019-12-06 11:43:39 -08002420}
2421
Chris Wilsond7d50f82020-03-27 11:22:12 +00002422static int
2423lrc_configure_all_contexts(struct i915_perf_stream *stream,
2424 const struct i915_oa_config *oa_config,
2425 struct i915_active *active)
Umesh Nerlige Ramappaccdeed42019-12-06 11:43:39 -08002426{
2427 /* The MMIO offsets for Flex EU registers aren't contiguous */
2428 const u32 ctx_flexeu0 = stream->perf->ctx_flexeu0_offset;
2429#define ctx_flexeuN(N) (ctx_flexeu0 + 2 * (N) + 1)
2430 struct flex regs[] = {
2431 {
2432 GEN8_R_PWR_CLK_STATE,
2433 CTX_R_PWR_CLK_STATE,
2434 },
2435 {
2436 GEN8_OACTXCONTROL,
2437 stream->perf->ctx_oactxctrl_offset + 1,
2438 },
2439 { EU_PERF_CNTL0, ctx_flexeuN(0) },
2440 { EU_PERF_CNTL1, ctx_flexeuN(1) },
2441 { EU_PERF_CNTL2, ctx_flexeuN(2) },
2442 { EU_PERF_CNTL3, ctx_flexeuN(3) },
2443 { EU_PERF_CNTL4, ctx_flexeuN(4) },
2444 { EU_PERF_CNTL5, ctx_flexeuN(5) },
2445 { EU_PERF_CNTL6, ctx_flexeuN(6) },
2446 };
2447#undef ctx_flexeuN
2448 int i;
2449
2450 regs[1].value =
2451 (stream->period_exponent << GEN8_OA_TIMER_PERIOD_SHIFT) |
2452 (stream->periodic ? GEN8_OA_TIMER_ENABLE : 0) |
2453 GEN8_OA_COUNTER_RESUME;
2454
2455 for (i = 2; i < ARRAY_SIZE(regs); i++)
2456 regs[i].value = oa_config_flex_reg(oa_config, regs[i].reg);
2457
Chris Wilsond7d50f82020-03-27 11:22:12 +00002458 return oa_configure_all_contexts(stream,
2459 regs, ARRAY_SIZE(regs),
2460 active);
Umesh Nerlige Ramappaccdeed42019-12-06 11:43:39 -08002461}
2462
Chris Wilsond7d50f82020-03-27 11:22:12 +00002463static int
2464gen8_enable_metric_set(struct i915_perf_stream *stream,
2465 struct i915_active *active)
Robert Bragg19f81df2017-06-13 12:23:03 +01002466{
Chris Wilson52111c42019-10-10 16:05:20 +01002467 struct intel_uncore *uncore = stream->uncore;
Lionel Landwerlin8814c6d2019-10-20 00:46:47 +03002468 struct i915_oa_config *oa_config = stream->oa_config;
Lionel Landwerlin701f8232017-08-03 17:58:08 +01002469 int ret;
Robert Bragg19f81df2017-06-13 12:23:03 +01002470
2471 /*
2472 * We disable slice/unslice clock ratio change reports on SKL since
2473 * they are too noisy. The HW generates a lot of redundant reports
2474 * where the ratio hasn't really changed causing a lot of redundant
2475 * work to processes and increasing the chances we'll hit buffer
2476 * overruns.
2477 *
2478 * Although we don't currently use the 'disable overrun' OABUFFER
2479 * feature it's worth noting that clock ratio reports have to be
2480 * disabled before considering to use that feature since the HW doesn't
2481 * correctly block these reports.
2482 *
2483 * Currently none of the high-level metrics we have depend on knowing
2484 * this ratio to normalize.
2485 *
2486 * Note: This register is not power context saved and restored, but
2487 * that's OK considering that we disable RC6 while the OA unit is
2488 * enabled.
2489 *
2490 * The _INCLUDE_CLK_RATIO bit allows the slice/unslice frequency to
2491 * be read back from automatically triggered reports, as part of the
2492 * RPT_ID field.
2493 */
Lucas De Marchi651e7d42021-06-05 21:50:49 -07002494 if (IS_GRAPHICS_VER(stream->perf->i915, 9, 11)) {
Chris Wilson8f8b1172019-10-07 22:09:41 +01002495 intel_uncore_write(uncore, GEN8_OA_DEBUG,
2496 _MASKED_BIT_ENABLE(GEN9_OA_DEBUG_DISABLE_CLK_RATIO_REPORTS |
2497 GEN9_OA_DEBUG_INCLUDE_CLK_RATIO));
Robert Bragg19f81df2017-06-13 12:23:03 +01002498 }
2499
2500 /*
2501 * Update all contexts prior writing the mux configurations as we need
2502 * to make sure all slices/subslices are ON before writing to NOA
2503 * registers.
2504 */
Chris Wilsond7d50f82020-03-27 11:22:12 +00002505 ret = lrc_configure_all_contexts(stream, oa_config, active);
Robert Bragg19f81df2017-06-13 12:23:03 +01002506 if (ret)
Chris Wilsond7d50f82020-03-27 11:22:12 +00002507 return ret;
Robert Bragg19f81df2017-06-13 12:23:03 +01002508
Chris Wilsond7d50f82020-03-27 11:22:12 +00002509 return emit_oa_config(stream,
2510 stream->oa_config, oa_context(stream),
2511 active);
Robert Bragg19f81df2017-06-13 12:23:03 +01002512}
2513
Chris Wilson9278bbb2019-11-01 19:21:16 +00002514static u32 oag_report_ctx_switches(const struct i915_perf_stream *stream)
2515{
2516 return _MASKED_FIELD(GEN12_OAG_OA_DEBUG_DISABLE_CTX_SWITCH_REPORTS,
2517 (stream->sample_flags & SAMPLE_OA_REPORT) ?
2518 0 : GEN12_OAG_OA_DEBUG_DISABLE_CTX_SWITCH_REPORTS);
2519}
2520
Chris Wilsond7d50f82020-03-27 11:22:12 +00002521static int
2522gen12_enable_metric_set(struct i915_perf_stream *stream,
2523 struct i915_active *active)
Lionel Landwerlin00a7f0d2019-10-25 12:37:46 -07002524{
2525 struct intel_uncore *uncore = stream->uncore;
2526 struct i915_oa_config *oa_config = stream->oa_config;
2527 bool periodic = stream->periodic;
2528 u32 period_exponent = stream->period_exponent;
2529 int ret;
2530
2531 intel_uncore_write(uncore, GEN12_OAG_OA_DEBUG,
2532 /* Disable clk ratio reports, like previous Gens. */
2533 _MASKED_BIT_ENABLE(GEN12_OAG_OA_DEBUG_DISABLE_CLK_RATIO_REPORTS |
2534 GEN12_OAG_OA_DEBUG_INCLUDE_CLK_RATIO) |
2535 /*
Chris Wilson9278bbb2019-11-01 19:21:16 +00002536 * If the user didn't require OA reports, instruct
2537 * the hardware not to emit ctx switch reports.
Lionel Landwerlin00a7f0d2019-10-25 12:37:46 -07002538 */
Chris Wilson9278bbb2019-11-01 19:21:16 +00002539 oag_report_ctx_switches(stream));
Lionel Landwerlin00a7f0d2019-10-25 12:37:46 -07002540
2541 intel_uncore_write(uncore, GEN12_OAG_OAGLBCTXCTRL, periodic ?
2542 (GEN12_OAG_OAGLBCTXCTRL_COUNTER_RESUME |
2543 GEN12_OAG_OAGLBCTXCTRL_TIMER_ENABLE |
2544 (period_exponent << GEN12_OAG_OAGLBCTXCTRL_TIMER_PERIOD_SHIFT))
2545 : 0);
2546
2547 /*
2548 * Update all contexts prior writing the mux configurations as we need
2549 * to make sure all slices/subslices are ON before writing to NOA
2550 * registers.
2551 */
Chris Wilsond7d50f82020-03-27 11:22:12 +00002552 ret = gen12_configure_all_contexts(stream, oa_config, active);
Lionel Landwerlin00a7f0d2019-10-25 12:37:46 -07002553 if (ret)
Chris Wilsond7d50f82020-03-27 11:22:12 +00002554 return ret;
Lionel Landwerlin00a7f0d2019-10-25 12:37:46 -07002555
2556 /*
2557 * For Gen12, performance counters are context
2558 * saved/restored. Only enable it for the context that
2559 * requested this.
2560 */
2561 if (stream->ctx) {
Chris Wilsond7d50f82020-03-27 11:22:12 +00002562 ret = gen12_configure_oar_context(stream, active);
Lionel Landwerlin00a7f0d2019-10-25 12:37:46 -07002563 if (ret)
Chris Wilsond7d50f82020-03-27 11:22:12 +00002564 return ret;
Lionel Landwerlin00a7f0d2019-10-25 12:37:46 -07002565 }
2566
Chris Wilsond7d50f82020-03-27 11:22:12 +00002567 return emit_oa_config(stream,
2568 stream->oa_config, oa_context(stream),
2569 active);
Lionel Landwerlin00a7f0d2019-10-25 12:37:46 -07002570}
2571
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07002572static void gen8_disable_metric_set(struct i915_perf_stream *stream)
Robert Bragg19f81df2017-06-13 12:23:03 +01002573{
Chris Wilson52111c42019-10-10 16:05:20 +01002574 struct intel_uncore *uncore = stream->uncore;
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07002575
Robert Bragg19f81df2017-06-13 12:23:03 +01002576 /* Reset all contexts' slices/subslices configurations. */
Chris Wilsond7d50f82020-03-27 11:22:12 +00002577 lrc_configure_all_contexts(stream, NULL, NULL);
Lionel Landwerlin28964cf2017-08-03 17:58:10 +01002578
Chris Wilson8f8b1172019-10-07 22:09:41 +01002579 intel_uncore_rmw(uncore, GDT_CHICKEN_BITS, GT_NOA_ENABLE, 0);
Robert Bragg19f81df2017-06-13 12:23:03 +01002580}
2581
Lucas De Marchi5dae69a2021-07-28 14:59:44 -07002582static void gen11_disable_metric_set(struct i915_perf_stream *stream)
Lionel Landwerlin95690a02017-11-10 19:08:43 +00002583{
Chris Wilson52111c42019-10-10 16:05:20 +01002584 struct intel_uncore *uncore = stream->uncore;
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07002585
Lionel Landwerlin95690a02017-11-10 19:08:43 +00002586 /* Reset all contexts' slices/subslices configurations. */
Chris Wilsond7d50f82020-03-27 11:22:12 +00002587 lrc_configure_all_contexts(stream, NULL, NULL);
Lionel Landwerlin00a7f0d2019-10-25 12:37:46 -07002588
2589 /* Make sure we disable noa to save power. */
2590 intel_uncore_rmw(uncore, RPM_CONFIG1, GEN10_GT_NOA_ENABLE, 0);
2591}
2592
2593static void gen12_disable_metric_set(struct i915_perf_stream *stream)
2594{
2595 struct intel_uncore *uncore = stream->uncore;
2596
2597 /* Reset all contexts' slices/subslices configurations. */
Chris Wilsond7d50f82020-03-27 11:22:12 +00002598 gen12_configure_all_contexts(stream, NULL, NULL);
Lionel Landwerlin00a7f0d2019-10-25 12:37:46 -07002599
2600 /* disable the context save/restore or OAR counters */
2601 if (stream->ctx)
Chris Wilsond7d50f82020-03-27 11:22:12 +00002602 gen12_configure_oar_context(stream, NULL);
Lionel Landwerlin95690a02017-11-10 19:08:43 +00002603
2604 /* Make sure we disable noa to save power. */
Chris Wilson8f8b1172019-10-07 22:09:41 +01002605 intel_uncore_rmw(uncore, RPM_CONFIG1, GEN10_GT_NOA_ENABLE, 0);
Lionel Landwerlin95690a02017-11-10 19:08:43 +00002606}
2607
Lionel Landwerlin5728de22018-10-23 11:07:06 +01002608static void gen7_oa_enable(struct i915_perf_stream *stream)
Robert Braggd7965152016-11-07 19:49:52 +00002609{
Chris Wilson52111c42019-10-10 16:05:20 +01002610 struct intel_uncore *uncore = stream->uncore;
Lionel Landwerlin5728de22018-10-23 11:07:06 +01002611 struct i915_gem_context *ctx = stream->ctx;
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07002612 u32 ctx_id = stream->specific_ctx_id;
2613 bool periodic = stream->periodic;
2614 u32 period_exponent = stream->period_exponent;
2615 u32 report_format = stream->oa_buffer.format;
Lionel Landwerlin11051302018-03-26 10:08:23 +01002616
Robert Bragg1bef3402017-06-13 12:23:06 +01002617 /*
2618 * Reset buf pointers so we don't forward reports from before now.
2619 *
2620 * Think carefully if considering trying to avoid this, since it
2621 * also ensures status flags and the buffer itself are cleared
2622 * in error paths, and we have checks for invalid reports based
2623 * on the assumption that certain fields are written to zeroed
2624 * memory which this helps maintains.
2625 */
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07002626 gen7_init_oa_buffer(stream);
Robert Braggd7965152016-11-07 19:49:52 +00002627
Chris Wilson8f8b1172019-10-07 22:09:41 +01002628 intel_uncore_write(uncore, GEN7_OACONTROL,
2629 (ctx_id & GEN7_OACONTROL_CTX_MASK) |
2630 (period_exponent <<
2631 GEN7_OACONTROL_TIMER_PERIOD_SHIFT) |
2632 (periodic ? GEN7_OACONTROL_TIMER_ENABLE : 0) |
2633 (report_format << GEN7_OACONTROL_FORMAT_SHIFT) |
2634 (ctx ? GEN7_OACONTROL_PER_CTX_ENABLE : 0) |
2635 GEN7_OACONTROL_ENABLE);
Robert Braggd7965152016-11-07 19:49:52 +00002636}
2637
Lionel Landwerlin5728de22018-10-23 11:07:06 +01002638static void gen8_oa_enable(struct i915_perf_stream *stream)
Robert Bragg19f81df2017-06-13 12:23:03 +01002639{
Chris Wilson52111c42019-10-10 16:05:20 +01002640 struct intel_uncore *uncore = stream->uncore;
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07002641 u32 report_format = stream->oa_buffer.format;
Robert Bragg19f81df2017-06-13 12:23:03 +01002642
2643 /*
2644 * Reset buf pointers so we don't forward reports from before now.
2645 *
2646 * Think carefully if considering trying to avoid this, since it
2647 * also ensures status flags and the buffer itself are cleared
2648 * in error paths, and we have checks for invalid reports based
2649 * on the assumption that certain fields are written to zeroed
2650 * memory which this helps maintains.
2651 */
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07002652 gen8_init_oa_buffer(stream);
Robert Bragg19f81df2017-06-13 12:23:03 +01002653
2654 /*
2655 * Note: we don't rely on the hardware to perform single context
2656 * filtering and instead filter on the cpu based on the context-id
2657 * field of reports
2658 */
Chris Wilson8f8b1172019-10-07 22:09:41 +01002659 intel_uncore_write(uncore, GEN8_OACONTROL,
2660 (report_format << GEN8_OA_REPORT_FORMAT_SHIFT) |
2661 GEN8_OA_COUNTER_ENABLE);
Robert Bragg19f81df2017-06-13 12:23:03 +01002662}
2663
Lionel Landwerlin00a7f0d2019-10-25 12:37:46 -07002664static void gen12_oa_enable(struct i915_perf_stream *stream)
2665{
2666 struct intel_uncore *uncore = stream->uncore;
2667 u32 report_format = stream->oa_buffer.format;
2668
2669 /*
2670 * If we don't want OA reports from the OA buffer, then we don't even
2671 * need to program the OAG unit.
2672 */
2673 if (!(stream->sample_flags & SAMPLE_OA_REPORT))
2674 return;
2675
2676 gen12_init_oa_buffer(stream);
2677
2678 intel_uncore_write(uncore, GEN12_OAG_OACONTROL,
2679 (report_format << GEN12_OAG_OACONTROL_OA_COUNTER_FORMAT_SHIFT) |
2680 GEN12_OAG_OACONTROL_OA_COUNTER_ENABLE);
2681}
2682
Robert Bragg16d98b32016-12-07 21:40:33 +00002683/**
2684 * i915_oa_stream_enable - handle `I915_PERF_IOCTL_ENABLE` for OA stream
2685 * @stream: An i915 perf stream opened for OA metrics
2686 *
2687 * [Re]enables hardware periodic sampling according to the period configured
2688 * when opening the stream. This also starts a hrtimer that will periodically
2689 * check for data in the circular OA buffer for notifying userspace (e.g.
2690 * during a read() or poll()).
2691 */
Robert Braggd7965152016-11-07 19:49:52 +00002692static void i915_oa_stream_enable(struct i915_perf_stream *stream)
2693{
Lionel Landwerlinc51dbc62020-03-24 11:54:56 -07002694 stream->pollin = false;
2695
Chris Wilson8f8b1172019-10-07 22:09:41 +01002696 stream->perf->ops.oa_enable(stream);
Robert Braggd7965152016-11-07 19:49:52 +00002697
Umesh Nerlige Ramappabe0bdd62021-03-05 13:09:47 -08002698 if (stream->sample_flags & SAMPLE_OA_REPORT)
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07002699 hrtimer_start(&stream->poll_check_timer,
Lionel Landwerlin4ef10fe2020-03-24 11:54:57 -07002700 ns_to_ktime(stream->poll_oa_period),
Robert Braggd7965152016-11-07 19:49:52 +00002701 HRTIMER_MODE_REL_PINNED);
2702}
2703
Lionel Landwerlin5728de22018-10-23 11:07:06 +01002704static void gen7_oa_disable(struct i915_perf_stream *stream)
Robert Braggd7965152016-11-07 19:49:52 +00002705{
Chris Wilson52111c42019-10-10 16:05:20 +01002706 struct intel_uncore *uncore = stream->uncore;
Lionel Landwerlin5728de22018-10-23 11:07:06 +01002707
Daniele Ceraolo Spurio97a04e02019-03-25 14:49:39 -07002708 intel_uncore_write(uncore, GEN7_OACONTROL, 0);
2709 if (intel_wait_for_register(uncore,
Chris Wilsone896d292018-05-11 14:52:07 +01002710 GEN7_OACONTROL, GEN7_OACONTROL_ENABLE, 0,
2711 50))
Wambui Karuga0bf85732020-02-18 20:39:36 +03002712 drm_err(&stream->perf->i915->drm,
2713 "wait for OA to be disabled timed out\n");
Robert Braggd7965152016-11-07 19:49:52 +00002714}
2715
Lionel Landwerlin5728de22018-10-23 11:07:06 +01002716static void gen8_oa_disable(struct i915_perf_stream *stream)
Robert Bragg19f81df2017-06-13 12:23:03 +01002717{
Chris Wilson52111c42019-10-10 16:05:20 +01002718 struct intel_uncore *uncore = stream->uncore;
Lionel Landwerlin5728de22018-10-23 11:07:06 +01002719
Daniele Ceraolo Spurio97a04e02019-03-25 14:49:39 -07002720 intel_uncore_write(uncore, GEN8_OACONTROL, 0);
2721 if (intel_wait_for_register(uncore,
Chris Wilsone896d292018-05-11 14:52:07 +01002722 GEN8_OACONTROL, GEN8_OA_COUNTER_ENABLE, 0,
2723 50))
Wambui Karuga0bf85732020-02-18 20:39:36 +03002724 drm_err(&stream->perf->i915->drm,
2725 "wait for OA to be disabled timed out\n");
Robert Bragg19f81df2017-06-13 12:23:03 +01002726}
2727
Lionel Landwerlin00a7f0d2019-10-25 12:37:46 -07002728static void gen12_oa_disable(struct i915_perf_stream *stream)
2729{
2730 struct intel_uncore *uncore = stream->uncore;
2731
2732 intel_uncore_write(uncore, GEN12_OAG_OACONTROL, 0);
2733 if (intel_wait_for_register(uncore,
2734 GEN12_OAG_OACONTROL,
2735 GEN12_OAG_OACONTROL_OA_COUNTER_ENABLE, 0,
2736 50))
Wambui Karuga0bf85732020-02-18 20:39:36 +03002737 drm_err(&stream->perf->i915->drm,
2738 "wait for OA to be disabled timed out\n");
Umesh Nerlige Ramappac06aa1b2020-03-09 14:10:57 -07002739
2740 intel_uncore_write(uncore, GEN12_OA_TLB_INV_CR, 1);
2741 if (intel_wait_for_register(uncore,
2742 GEN12_OA_TLB_INV_CR,
2743 1, 0,
2744 50))
2745 drm_err(&stream->perf->i915->drm,
2746 "wait for OA tlb invalidate timed out\n");
Lionel Landwerlin00a7f0d2019-10-25 12:37:46 -07002747}
2748
Robert Bragg16d98b32016-12-07 21:40:33 +00002749/**
2750 * i915_oa_stream_disable - handle `I915_PERF_IOCTL_DISABLE` for OA stream
2751 * @stream: An i915 perf stream opened for OA metrics
2752 *
2753 * Stops the OA unit from periodically writing counter reports into the
2754 * circular OA buffer. This also stops the hrtimer that periodically checks for
2755 * data in the circular OA buffer, for notifying userspace.
2756 */
Robert Braggd7965152016-11-07 19:49:52 +00002757static void i915_oa_stream_disable(struct i915_perf_stream *stream)
2758{
Chris Wilson8f8b1172019-10-07 22:09:41 +01002759 stream->perf->ops.oa_disable(stream);
Robert Braggd7965152016-11-07 19:49:52 +00002760
Umesh Nerlige Ramappabe0bdd62021-03-05 13:09:47 -08002761 if (stream->sample_flags & SAMPLE_OA_REPORT)
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07002762 hrtimer_cancel(&stream->poll_check_timer);
Robert Braggd7965152016-11-07 19:49:52 +00002763}
2764
Robert Braggd7965152016-11-07 19:49:52 +00002765static const struct i915_perf_stream_ops i915_oa_stream_ops = {
2766 .destroy = i915_oa_stream_destroy,
2767 .enable = i915_oa_stream_enable,
2768 .disable = i915_oa_stream_disable,
2769 .wait_unlocked = i915_oa_wait_unlocked,
2770 .poll_wait = i915_oa_poll_wait,
2771 .read = i915_oa_read,
2772};
2773
Chris Wilson4b4e9732020-03-02 08:57:57 +00002774static int i915_perf_stream_enable_sync(struct i915_perf_stream *stream)
2775{
Chris Wilsond7d50f82020-03-27 11:22:12 +00002776 struct i915_active *active;
2777 int err;
Chris Wilson4b4e9732020-03-02 08:57:57 +00002778
Chris Wilsond7d50f82020-03-27 11:22:12 +00002779 active = i915_active_create();
2780 if (!active)
2781 return -ENOMEM;
Chris Wilson4b4e9732020-03-02 08:57:57 +00002782
Chris Wilsond7d50f82020-03-27 11:22:12 +00002783 err = stream->perf->ops.enable_metric_set(stream, active);
2784 if (err == 0)
2785 __i915_active_wait(active, TASK_UNINTERRUPTIBLE);
Chris Wilson4b4e9732020-03-02 08:57:57 +00002786
Chris Wilsond7d50f82020-03-27 11:22:12 +00002787 i915_active_put(active);
2788 return err;
Chris Wilson4b4e9732020-03-02 08:57:57 +00002789}
2790
Lionel Landwerlin11ecbdd2020-03-17 15:22:22 +02002791static void
2792get_default_sseu_config(struct intel_sseu *out_sseu,
2793 struct intel_engine_cs *engine)
2794{
Venkata Sandeep Dhanalakota0b6613c2020-07-07 17:39:50 -07002795 const struct sseu_dev_info *devinfo_sseu = &engine->gt->info.sseu;
Lionel Landwerlin11ecbdd2020-03-17 15:22:22 +02002796
2797 *out_sseu = intel_sseu_from_device_info(devinfo_sseu);
2798
Lucas De Marchi651e7d42021-06-05 21:50:49 -07002799 if (GRAPHICS_VER(engine->i915) == 11) {
Lionel Landwerlin11ecbdd2020-03-17 15:22:22 +02002800 /*
2801 * We only need subslice count so it doesn't matter which ones
2802 * we select - just turn off low bits in the amount of half of
2803 * all available subslices per slice.
2804 */
2805 out_sseu->subslice_mask =
2806 ~(~0 << (hweight8(out_sseu->subslice_mask) / 2));
2807 out_sseu->slice_mask = 0x1;
2808 }
2809}
2810
2811static int
2812get_sseu_config(struct intel_sseu *out_sseu,
2813 struct intel_engine_cs *engine,
2814 const struct drm_i915_gem_context_param_sseu *drm_sseu)
2815{
2816 if (drm_sseu->engine.engine_class != engine->uabi_class ||
2817 drm_sseu->engine.engine_instance != engine->uabi_instance)
2818 return -EINVAL;
2819
Venkata Sandeep Dhanalakota0b6613c2020-07-07 17:39:50 -07002820 return i915_gem_user_to_context_sseu(engine->gt, drm_sseu, out_sseu);
Robert Braggd7965152016-11-07 19:49:52 +00002821}
2822
Robert Bragg16d98b32016-12-07 21:40:33 +00002823/**
2824 * i915_oa_stream_init - validate combined props for OA stream and init
2825 * @stream: An i915 perf stream
2826 * @param: The open parameters passed to `DRM_I915_PERF_OPEN`
2827 * @props: The property state that configures stream (individually validated)
2828 *
2829 * While read_properties_unlocked() validates properties in isolation it
2830 * doesn't ensure that the combination necessarily makes sense.
2831 *
2832 * At this point it has been determined that userspace wants a stream of
2833 * OA metrics, but still we need to further validate the combined
2834 * properties are OK.
2835 *
2836 * If the configuration makes sense then we can allocate memory for
2837 * a circular OA buffer and apply the requested metric set configuration.
2838 *
2839 * Returns: zero on success or a negative error code.
2840 */
Robert Braggd7965152016-11-07 19:49:52 +00002841static int i915_oa_stream_init(struct i915_perf_stream *stream,
2842 struct drm_i915_perf_open_param *param,
2843 struct perf_open_properties *props)
2844{
Pankaj Bharadiyaa9f236d2020-01-15 09:14:54 +05302845 struct drm_i915_private *i915 = stream->perf->i915;
Chris Wilson8f8b1172019-10-07 22:09:41 +01002846 struct i915_perf *perf = stream->perf;
Robert Braggd7965152016-11-07 19:49:52 +00002847 int format_size;
2848 int ret;
2849
Lionel Landwerlin9a613632019-10-10 16:05:19 +01002850 if (!props->engine) {
2851 DRM_DEBUG("OA engine not specified\n");
2852 return -EINVAL;
2853 }
2854
2855 /*
2856 * If the sysfs metrics/ directory wasn't registered for some
Robert Bragg442b8c02016-11-07 19:49:53 +00002857 * reason then don't let userspace try their luck with config
2858 * IDs
2859 */
Chris Wilson8f8b1172019-10-07 22:09:41 +01002860 if (!perf->metrics_kobj) {
Robert Bragg77085502016-12-01 17:21:52 +00002861 DRM_DEBUG("OA metrics weren't advertised via sysfs\n");
Robert Bragg442b8c02016-11-07 19:49:53 +00002862 return -EINVAL;
2863 }
2864
Umesh Nerlige Ramappa322d56a2019-12-06 11:43:38 -08002865 if (!(props->sample_flags & SAMPLE_OA_REPORT) &&
Lucas De Marchi651e7d42021-06-05 21:50:49 -07002866 (GRAPHICS_VER(perf->i915) < 12 || !stream->ctx)) {
Robert Bragg77085502016-12-01 17:21:52 +00002867 DRM_DEBUG("Only OA report sampling supported\n");
Robert Braggd7965152016-11-07 19:49:52 +00002868 return -EINVAL;
2869 }
2870
Chris Wilson8f8b1172019-10-07 22:09:41 +01002871 if (!perf->ops.enable_metric_set) {
Robert Bragg77085502016-12-01 17:21:52 +00002872 DRM_DEBUG("OA unit not supported\n");
Robert Braggd7965152016-11-07 19:49:52 +00002873 return -ENODEV;
2874 }
2875
Lionel Landwerlin9a613632019-10-10 16:05:19 +01002876 /*
2877 * To avoid the complexity of having to accurately filter
Robert Braggd7965152016-11-07 19:49:52 +00002878 * counter reports and marshal to the appropriate client
2879 * we currently only allow exclusive access
2880 */
Chris Wilson8f8b1172019-10-07 22:09:41 +01002881 if (perf->exclusive_stream) {
Robert Bragg77085502016-12-01 17:21:52 +00002882 DRM_DEBUG("OA unit already in use\n");
Robert Braggd7965152016-11-07 19:49:52 +00002883 return -EBUSY;
2884 }
2885
Robert Braggd7965152016-11-07 19:49:52 +00002886 if (!props->oa_format) {
Robert Bragg77085502016-12-01 17:21:52 +00002887 DRM_DEBUG("OA report format not specified\n");
Robert Braggd7965152016-11-07 19:49:52 +00002888 return -EINVAL;
2889 }
2890
Lionel Landwerlin9a613632019-10-10 16:05:19 +01002891 stream->engine = props->engine;
Chris Wilson52111c42019-10-10 16:05:20 +01002892 stream->uncore = stream->engine->gt->uncore;
Lionel Landwerlin9a613632019-10-10 16:05:19 +01002893
Robert Braggd7965152016-11-07 19:49:52 +00002894 stream->sample_size = sizeof(struct drm_i915_perf_record_header);
2895
Chris Wilson8f8b1172019-10-07 22:09:41 +01002896 format_size = perf->oa_formats[props->oa_format].size;
Robert Braggd7965152016-11-07 19:49:52 +00002897
Umesh Nerlige Ramappa322d56a2019-12-06 11:43:38 -08002898 stream->sample_flags = props->sample_flags;
Robert Braggd7965152016-11-07 19:49:52 +00002899 stream->sample_size += format_size;
2900
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07002901 stream->oa_buffer.format_size = format_size;
Pankaj Bharadiyaa9f236d2020-01-15 09:14:54 +05302902 if (drm_WARN_ON(&i915->drm, stream->oa_buffer.format_size == 0))
Robert Braggd7965152016-11-07 19:49:52 +00002903 return -EINVAL;
2904
Lionel Landwerlin9cd20ef2019-10-14 21:14:04 +01002905 stream->hold_preemption = props->hold_preemption;
2906
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07002907 stream->oa_buffer.format =
Chris Wilson8f8b1172019-10-07 22:09:41 +01002908 perf->oa_formats[props->oa_format].format;
Robert Braggd7965152016-11-07 19:49:52 +00002909
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07002910 stream->periodic = props->oa_periodic;
2911 if (stream->periodic)
2912 stream->period_exponent = props->oa_period_exponent;
Robert Braggd7965152016-11-07 19:49:52 +00002913
Robert Braggd7965152016-11-07 19:49:52 +00002914 if (stream->ctx) {
2915 ret = oa_get_render_ctx_id(stream);
Lionel Landwerlin9bd9be62018-03-26 10:08:28 +01002916 if (ret) {
2917 DRM_DEBUG("Invalid context id to filter with\n");
Robert Braggd7965152016-11-07 19:49:52 +00002918 return ret;
Lionel Landwerlin9bd9be62018-03-26 10:08:28 +01002919 }
Robert Braggd7965152016-11-07 19:49:52 +00002920 }
2921
Lionel Landwerlindaed3e42019-10-12 08:23:07 +01002922 ret = alloc_noa_wait(stream);
2923 if (ret) {
2924 DRM_DEBUG("Unable to allocate NOA wait batch buffer\n");
2925 goto err_noa_wait_alloc;
2926 }
2927
Lionel Landwerlin6a450082019-10-12 08:23:06 +01002928 stream->oa_config = i915_perf_get_oa_config(perf, props->metrics_set);
2929 if (!stream->oa_config) {
Lionel Landwerlin9bd9be62018-03-26 10:08:28 +01002930 DRM_DEBUG("Invalid OA config id=%i\n", props->metrics_set);
Lionel Landwerlin6a450082019-10-12 08:23:06 +01002931 ret = -EINVAL;
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01002932 goto err_config;
Lionel Landwerlin9bd9be62018-03-26 10:08:28 +01002933 }
Lionel Landwerlin701f8232017-08-03 17:58:08 +01002934
Robert Braggd7965152016-11-07 19:49:52 +00002935 /* PRM - observability performance counters:
2936 *
2937 * OACONTROL, performance counter enable, note:
2938 *
2939 * "When this bit is set, in order to have coherent counts,
2940 * RC6 power state and trunk clock gating must be disabled.
2941 * This can be achieved by programming MMIO registers as
2942 * 0xA094=0 and 0xA090[31]=1"
2943 *
2944 * In our case we are expecting that taking pm + FORCEWAKE
2945 * references will effectively disable RC6.
2946 */
Chris Wilsona5efcde2019-10-11 20:03:17 +01002947 intel_engine_pm_get(stream->engine);
Chris Wilson52111c42019-10-10 16:05:20 +01002948 intel_uncore_forcewake_get(stream->uncore, FORCEWAKE_ALL);
Robert Braggd7965152016-11-07 19:49:52 +00002949
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07002950 ret = alloc_oa_buffer(stream);
sagar.a.kamble@intel.com987f8c42017-06-27 23:09:41 +05302951 if (ret)
2952 goto err_oa_buf_alloc;
2953
Lionel Landwerlinec431ea2019-02-05 09:50:29 +00002954 stream->ops = &i915_oa_stream_ops;
Lionel Landwerlin11ecbdd2020-03-17 15:22:22 +02002955
2956 perf->sseu = props->sseu;
Chris Wilsona5af0812020-02-27 08:57:05 +00002957 WRITE_ONCE(perf->exclusive_stream, stream);
Lionel Landwerlinec431ea2019-02-05 09:50:29 +00002958
Chris Wilson4b4e9732020-03-02 08:57:57 +00002959 ret = i915_perf_stream_enable_sync(stream);
Lionel Landwerlin9bd9be62018-03-26 10:08:28 +01002960 if (ret) {
2961 DRM_DEBUG("Unable to enable metric set\n");
Robert Braggd7965152016-11-07 19:49:52 +00002962 goto err_enable;
Lionel Landwerlin9bd9be62018-03-26 10:08:28 +01002963 }
Robert Braggd7965152016-11-07 19:49:52 +00002964
Lionel Landwerlin6a450082019-10-12 08:23:06 +01002965 DRM_DEBUG("opening stream oa config uuid=%s\n",
2966 stream->oa_config->uuid);
2967
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07002968 hrtimer_init(&stream->poll_check_timer,
2969 CLOCK_MONOTONIC, HRTIMER_MODE_REL);
2970 stream->poll_check_timer.function = oa_poll_check_timer_cb;
2971 init_waitqueue_head(&stream->poll_wq);
2972 spin_lock_init(&stream->oa_buffer.ptr_lock);
2973
Robert Braggd7965152016-11-07 19:49:52 +00002974 return 0;
2975
2976err_enable:
Chris Wilsona5af0812020-02-27 08:57:05 +00002977 WRITE_ONCE(perf->exclusive_stream, NULL);
Chris Wilson8f8b1172019-10-07 22:09:41 +01002978 perf->ops.disable_metric_set(stream);
Lionel Landwerlin41d3fdc2018-03-01 11:06:13 +00002979
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07002980 free_oa_buffer(stream);
Robert Braggd7965152016-11-07 19:49:52 +00002981
2982err_oa_buf_alloc:
Lionel Landwerlin6a450082019-10-12 08:23:06 +01002983 free_oa_configs(stream);
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01002984
Chris Wilson52111c42019-10-10 16:05:20 +01002985 intel_uncore_forcewake_put(stream->uncore, FORCEWAKE_ALL);
Chris Wilsona5efcde2019-10-11 20:03:17 +01002986 intel_engine_pm_put(stream->engine);
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01002987
2988err_config:
Lionel Landwerlindaed3e42019-10-12 08:23:07 +01002989 free_noa_wait(stream);
2990
2991err_noa_wait_alloc:
Robert Braggd7965152016-11-07 19:49:52 +00002992 if (stream->ctx)
2993 oa_put_render_ctx_id(stream);
2994
2995 return ret;
2996}
2997
Chris Wilson7dc56af2019-09-24 15:59:50 +01002998void i915_oa_init_reg_state(const struct intel_context *ce,
2999 const struct intel_engine_cs *engine)
Robert Bragg19f81df2017-06-13 12:23:03 +01003000{
Chris Wilson28b6cb02017-08-10 18:57:43 +01003001 struct i915_perf_stream *stream;
Robert Bragg19f81df2017-06-13 12:23:03 +01003002
Chris Wilson8a68d462019-03-05 18:03:30 +00003003 if (engine->class != RENDER_CLASS)
Robert Bragg19f81df2017-06-13 12:23:03 +01003004 return;
3005
Chris Wilsona5af0812020-02-27 08:57:05 +00003006 /* perf.exclusive_stream serialised by lrc_configure_all_contexts() */
3007 stream = READ_ONCE(engine->i915->perf.exclusive_stream);
Lucas De Marchi651e7d42021-06-05 21:50:49 -07003008 if (stream && GRAPHICS_VER(stream->perf->i915) < 12)
Chris Wilson7dc56af2019-09-24 15:59:50 +01003009 gen8_update_reg_state_unlocked(ce, stream);
Robert Bragg19f81df2017-06-13 12:23:03 +01003010}
3011
Robert Bragg16d98b32016-12-07 21:40:33 +00003012/**
Robert Bragg16d98b32016-12-07 21:40:33 +00003013 * i915_perf_read - handles read() FOP for i915 perf stream FDs
3014 * @file: An i915 perf stream file
3015 * @buf: destination buffer given by userspace
3016 * @count: the number of bytes userspace wants to read
3017 * @ppos: (inout) file seek position (unused)
3018 *
3019 * The entry point for handling a read() on a stream file descriptor from
3020 * userspace. Most of the work is left to the i915_perf_read_locked() and
3021 * &i915_perf_stream_ops->read but to save having stream implementations (of
3022 * which we might have multiple later) we handle blocking read here.
3023 *
3024 * We can also consistently treat trying to read from a disabled stream
3025 * as an IO error so implementations can assume the stream is enabled
3026 * while reading.
3027 *
3028 * Returns: The number of bytes copied or a negative error code on failure.
3029 */
Robert Braggeec688e2016-11-07 19:49:47 +00003030static ssize_t i915_perf_read(struct file *file,
3031 char __user *buf,
3032 size_t count,
3033 loff_t *ppos)
3034{
3035 struct i915_perf_stream *stream = file->private_data;
Chris Wilson8f8b1172019-10-07 22:09:41 +01003036 struct i915_perf *perf = stream->perf;
Ashutosh Dixitbcad5882020-04-08 16:42:01 -07003037 size_t offset = 0;
3038 int ret;
Robert Braggeec688e2016-11-07 19:49:47 +00003039
Robert Braggd7965152016-11-07 19:49:52 +00003040 /* To ensure it's handled consistently we simply treat all reads of a
3041 * disabled stream as an error. In particular it might otherwise lead
3042 * to a deadlock for blocking file descriptors...
3043 */
Umesh Nerlige Ramappabe0bdd62021-03-05 13:09:47 -08003044 if (!stream->enabled || !(stream->sample_flags & SAMPLE_OA_REPORT))
Robert Braggd7965152016-11-07 19:49:52 +00003045 return -EIO;
3046
Robert Braggeec688e2016-11-07 19:49:47 +00003047 if (!(file->f_flags & O_NONBLOCK)) {
Robert Braggd7965152016-11-07 19:49:52 +00003048 /* There's the small chance of false positives from
3049 * stream->ops->wait_unlocked.
3050 *
3051 * E.g. with single context filtering since we only wait until
3052 * oabuffer has >= 1 report we don't immediately know whether
3053 * any reports really belong to the current context
Robert Braggeec688e2016-11-07 19:49:47 +00003054 */
3055 do {
3056 ret = stream->ops->wait_unlocked(stream);
3057 if (ret)
3058 return ret;
3059
Chris Wilson8f8b1172019-10-07 22:09:41 +01003060 mutex_lock(&perf->lock);
Ashutosh Dixitbcad5882020-04-08 16:42:01 -07003061 ret = stream->ops->read(stream, buf, count, &offset);
Chris Wilson8f8b1172019-10-07 22:09:41 +01003062 mutex_unlock(&perf->lock);
Ashutosh Dixitbcad5882020-04-08 16:42:01 -07003063 } while (!offset && !ret);
Robert Braggeec688e2016-11-07 19:49:47 +00003064 } else {
Chris Wilson8f8b1172019-10-07 22:09:41 +01003065 mutex_lock(&perf->lock);
Ashutosh Dixitbcad5882020-04-08 16:42:01 -07003066 ret = stream->ops->read(stream, buf, count, &offset);
Chris Wilson8f8b1172019-10-07 22:09:41 +01003067 mutex_unlock(&perf->lock);
Robert Braggeec688e2016-11-07 19:49:47 +00003068 }
3069
Linus Torvaldsa9a08842018-02-11 14:34:03 -08003070 /* We allow the poll checking to sometimes report false positive EPOLLIN
Robert Bragg26ebd9c2017-05-11 16:43:25 +01003071 * events where we might actually report EAGAIN on read() if there's
3072 * not really any data available. In this situation though we don't
Linus Torvaldsa9a08842018-02-11 14:34:03 -08003073 * want to enter a busy loop between poll() reporting a EPOLLIN event
Robert Bragg26ebd9c2017-05-11 16:43:25 +01003074 * and read() returning -EAGAIN. Clearing the oa.pollin state here
3075 * effectively ensures we back off until the next hrtimer callback
Linus Torvaldsa9a08842018-02-11 14:34:03 -08003076 * before reporting another EPOLLIN event.
Ashutosh Dixitbcad5882020-04-08 16:42:01 -07003077 * The exception to this is if ops->read() returned -ENOSPC which means
3078 * that more OA data is available than could fit in the user provided
3079 * buffer. In this case we want the next poll() call to not block.
Robert Bragg26ebd9c2017-05-11 16:43:25 +01003080 */
Ashutosh Dixitbcad5882020-04-08 16:42:01 -07003081 if (ret != -ENOSPC)
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07003082 stream->pollin = false;
Robert Braggd7965152016-11-07 19:49:52 +00003083
Ashutosh Dixitbcad5882020-04-08 16:42:01 -07003084 /* Possible values for ret are 0, -EFAULT, -ENOSPC, -EIO, ... */
3085 return offset ?: (ret ?: -EAGAIN);
Robert Braggeec688e2016-11-07 19:49:47 +00003086}
3087
Robert Braggd7965152016-11-07 19:49:52 +00003088static enum hrtimer_restart oa_poll_check_timer_cb(struct hrtimer *hrtimer)
3089{
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07003090 struct i915_perf_stream *stream =
3091 container_of(hrtimer, typeof(*stream), poll_check_timer);
Robert Braggd7965152016-11-07 19:49:52 +00003092
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07003093 if (oa_buffer_check_unlocked(stream)) {
3094 stream->pollin = true;
3095 wake_up(&stream->poll_wq);
Robert Braggd7965152016-11-07 19:49:52 +00003096 }
3097
Lionel Landwerlin4ef10fe2020-03-24 11:54:57 -07003098 hrtimer_forward_now(hrtimer,
3099 ns_to_ktime(stream->poll_oa_period));
Robert Braggd7965152016-11-07 19:49:52 +00003100
3101 return HRTIMER_RESTART;
3102}
3103
Robert Bragg16d98b32016-12-07 21:40:33 +00003104/**
3105 * i915_perf_poll_locked - poll_wait() with a suitable wait queue for stream
Robert Bragg16d98b32016-12-07 21:40:33 +00003106 * @stream: An i915 perf stream
3107 * @file: An i915 perf stream file
3108 * @wait: poll() state table
3109 *
3110 * For handling userspace polling on an i915 perf stream, this calls through to
3111 * &i915_perf_stream_ops->poll_wait to call poll_wait() with a wait queue that
3112 * will be woken for new stream data.
3113 *
Chris Wilson8f8b1172019-10-07 22:09:41 +01003114 * Note: The &perf->lock mutex has been taken to serialize
Robert Bragg16d98b32016-12-07 21:40:33 +00003115 * with any non-file-operation driver hooks.
3116 *
3117 * Returns: any poll events that are ready without sleeping
3118 */
Chris Wilson8f8b1172019-10-07 22:09:41 +01003119static __poll_t i915_perf_poll_locked(struct i915_perf_stream *stream,
3120 struct file *file,
3121 poll_table *wait)
Robert Braggeec688e2016-11-07 19:49:47 +00003122{
Al Viroafc9a422017-07-03 06:39:46 -04003123 __poll_t events = 0;
Robert Braggeec688e2016-11-07 19:49:47 +00003124
3125 stream->ops->poll_wait(stream, file, wait);
3126
Robert Braggd7965152016-11-07 19:49:52 +00003127 /* Note: we don't explicitly check whether there's something to read
3128 * here since this path may be very hot depending on what else
3129 * userspace is polling, or on the timeout in use. We rely solely on
3130 * the hrtimer/oa_poll_check_timer_cb to notify us when there are
3131 * samples to read.
3132 */
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07003133 if (stream->pollin)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08003134 events |= EPOLLIN;
Robert Braggeec688e2016-11-07 19:49:47 +00003135
Robert Braggd7965152016-11-07 19:49:52 +00003136 return events;
Robert Braggeec688e2016-11-07 19:49:47 +00003137}
3138
Robert Bragg16d98b32016-12-07 21:40:33 +00003139/**
3140 * i915_perf_poll - call poll_wait() with a suitable wait queue for stream
3141 * @file: An i915 perf stream file
3142 * @wait: poll() state table
3143 *
3144 * For handling userspace polling on an i915 perf stream, this ensures
3145 * poll_wait() gets called with a wait queue that will be woken for new stream
3146 * data.
3147 *
3148 * Note: Implementation deferred to i915_perf_poll_locked()
3149 *
3150 * Returns: any poll events that are ready without sleeping
3151 */
Al Viroafc9a422017-07-03 06:39:46 -04003152static __poll_t i915_perf_poll(struct file *file, poll_table *wait)
Robert Braggeec688e2016-11-07 19:49:47 +00003153{
3154 struct i915_perf_stream *stream = file->private_data;
Chris Wilson8f8b1172019-10-07 22:09:41 +01003155 struct i915_perf *perf = stream->perf;
Al Viroafc9a422017-07-03 06:39:46 -04003156 __poll_t ret;
Robert Braggeec688e2016-11-07 19:49:47 +00003157
Chris Wilson8f8b1172019-10-07 22:09:41 +01003158 mutex_lock(&perf->lock);
3159 ret = i915_perf_poll_locked(stream, file, wait);
3160 mutex_unlock(&perf->lock);
Robert Braggeec688e2016-11-07 19:49:47 +00003161
3162 return ret;
3163}
3164
Robert Bragg16d98b32016-12-07 21:40:33 +00003165/**
3166 * i915_perf_enable_locked - handle `I915_PERF_IOCTL_ENABLE` ioctl
3167 * @stream: A disabled i915 perf stream
3168 *
3169 * [Re]enables the associated capture of data for this stream.
3170 *
3171 * If a stream was previously enabled then there's currently no intention
3172 * to provide userspace any guarantee about the preservation of previously
3173 * buffered data.
3174 */
Robert Braggeec688e2016-11-07 19:49:47 +00003175static void i915_perf_enable_locked(struct i915_perf_stream *stream)
3176{
3177 if (stream->enabled)
3178 return;
3179
3180 /* Allow stream->ops->enable() to refer to this */
3181 stream->enabled = true;
3182
3183 if (stream->ops->enable)
3184 stream->ops->enable(stream);
Lionel Landwerlin9cd20ef2019-10-14 21:14:04 +01003185
3186 if (stream->hold_preemption)
Chris Wilson9f3ccd42019-12-20 10:12:29 +00003187 intel_context_set_nopreempt(stream->pinned_ctx);
Robert Braggeec688e2016-11-07 19:49:47 +00003188}
3189
Robert Bragg16d98b32016-12-07 21:40:33 +00003190/**
3191 * i915_perf_disable_locked - handle `I915_PERF_IOCTL_DISABLE` ioctl
3192 * @stream: An enabled i915 perf stream
3193 *
3194 * Disables the associated capture of data for this stream.
3195 *
3196 * The intention is that disabling an re-enabling a stream will ideally be
3197 * cheaper than destroying and re-opening a stream with the same configuration,
3198 * though there are no formal guarantees about what state or buffered data
3199 * must be retained between disabling and re-enabling a stream.
3200 *
3201 * Note: while a stream is disabled it's considered an error for userspace
3202 * to attempt to read from the stream (-EIO).
3203 */
Robert Braggeec688e2016-11-07 19:49:47 +00003204static void i915_perf_disable_locked(struct i915_perf_stream *stream)
3205{
3206 if (!stream->enabled)
3207 return;
3208
3209 /* Allow stream->ops->disable() to refer to this */
3210 stream->enabled = false;
3211
Lionel Landwerlin9cd20ef2019-10-14 21:14:04 +01003212 if (stream->hold_preemption)
Chris Wilson9f3ccd42019-12-20 10:12:29 +00003213 intel_context_clear_nopreempt(stream->pinned_ctx);
Lionel Landwerlin9cd20ef2019-10-14 21:14:04 +01003214
Robert Braggeec688e2016-11-07 19:49:47 +00003215 if (stream->ops->disable)
3216 stream->ops->disable(stream);
3217}
3218
Chris Wilson7831e9a2019-10-14 21:14:03 +01003219static long i915_perf_config_locked(struct i915_perf_stream *stream,
3220 unsigned long metrics_set)
3221{
3222 struct i915_oa_config *config;
3223 long ret = stream->oa_config->id;
3224
3225 config = i915_perf_get_oa_config(stream->perf, metrics_set);
3226 if (!config)
3227 return -EINVAL;
3228
3229 if (config != stream->oa_config) {
Chris Wilsond7d50f82020-03-27 11:22:12 +00003230 int err;
Chris Wilson7831e9a2019-10-14 21:14:03 +01003231
3232 /*
3233 * If OA is bound to a specific context, emit the
3234 * reconfiguration inline from that context. The update
3235 * will then be ordered with respect to submission on that
3236 * context.
3237 *
3238 * When set globally, we use a low priority kernel context,
3239 * so it will effectively take effect when idle.
3240 */
Chris Wilsond7d50f82020-03-27 11:22:12 +00003241 err = emit_oa_config(stream, config, oa_context(stream), NULL);
3242 if (!err)
Chris Wilson7831e9a2019-10-14 21:14:03 +01003243 config = xchg(&stream->oa_config, config);
Chris Wilsond7d50f82020-03-27 11:22:12 +00003244 else
3245 ret = err;
Chris Wilson7831e9a2019-10-14 21:14:03 +01003246 }
3247
3248 i915_oa_config_put(config);
3249
3250 return ret;
3251}
3252
Robert Bragg16d98b32016-12-07 21:40:33 +00003253/**
Mauro Carvalho Chehabe9d28712020-11-16 11:18:01 +01003254 * i915_perf_ioctl_locked - support ioctl() usage with i915 perf stream FDs
Robert Bragg16d98b32016-12-07 21:40:33 +00003255 * @stream: An i915 perf stream
3256 * @cmd: the ioctl request
3257 * @arg: the ioctl data
3258 *
Chris Wilson8f8b1172019-10-07 22:09:41 +01003259 * Note: The &perf->lock mutex has been taken to serialize
Robert Bragg16d98b32016-12-07 21:40:33 +00003260 * with any non-file-operation driver hooks.
3261 *
3262 * Returns: zero on success or a negative error code. Returns -EINVAL for
3263 * an unknown ioctl request.
3264 */
Robert Braggeec688e2016-11-07 19:49:47 +00003265static long i915_perf_ioctl_locked(struct i915_perf_stream *stream,
3266 unsigned int cmd,
3267 unsigned long arg)
3268{
3269 switch (cmd) {
3270 case I915_PERF_IOCTL_ENABLE:
3271 i915_perf_enable_locked(stream);
3272 return 0;
3273 case I915_PERF_IOCTL_DISABLE:
3274 i915_perf_disable_locked(stream);
3275 return 0;
Chris Wilson7831e9a2019-10-14 21:14:03 +01003276 case I915_PERF_IOCTL_CONFIG:
3277 return i915_perf_config_locked(stream, arg);
Robert Braggeec688e2016-11-07 19:49:47 +00003278 }
3279
3280 return -EINVAL;
3281}
3282
Robert Bragg16d98b32016-12-07 21:40:33 +00003283/**
3284 * i915_perf_ioctl - support ioctl() usage with i915 perf stream FDs
3285 * @file: An i915 perf stream file
3286 * @cmd: the ioctl request
3287 * @arg: the ioctl data
3288 *
3289 * Implementation deferred to i915_perf_ioctl_locked().
3290 *
3291 * Returns: zero on success or a negative error code. Returns -EINVAL for
3292 * an unknown ioctl request.
3293 */
Robert Braggeec688e2016-11-07 19:49:47 +00003294static long i915_perf_ioctl(struct file *file,
3295 unsigned int cmd,
3296 unsigned long arg)
3297{
3298 struct i915_perf_stream *stream = file->private_data;
Chris Wilson8f8b1172019-10-07 22:09:41 +01003299 struct i915_perf *perf = stream->perf;
Robert Braggeec688e2016-11-07 19:49:47 +00003300 long ret;
3301
Chris Wilson8f8b1172019-10-07 22:09:41 +01003302 mutex_lock(&perf->lock);
Robert Braggeec688e2016-11-07 19:49:47 +00003303 ret = i915_perf_ioctl_locked(stream, cmd, arg);
Chris Wilson8f8b1172019-10-07 22:09:41 +01003304 mutex_unlock(&perf->lock);
Robert Braggeec688e2016-11-07 19:49:47 +00003305
3306 return ret;
3307}
3308
Robert Bragg16d98b32016-12-07 21:40:33 +00003309/**
3310 * i915_perf_destroy_locked - destroy an i915 perf stream
3311 * @stream: An i915 perf stream
3312 *
3313 * Frees all resources associated with the given i915 perf @stream, disabling
3314 * any associated data capture in the process.
3315 *
Chris Wilson8f8b1172019-10-07 22:09:41 +01003316 * Note: The &perf->lock mutex has been taken to serialize
Robert Bragg16d98b32016-12-07 21:40:33 +00003317 * with any non-file-operation driver hooks.
3318 */
Robert Braggeec688e2016-11-07 19:49:47 +00003319static void i915_perf_destroy_locked(struct i915_perf_stream *stream)
3320{
Robert Braggeec688e2016-11-07 19:49:47 +00003321 if (stream->enabled)
3322 i915_perf_disable_locked(stream);
3323
3324 if (stream->ops->destroy)
3325 stream->ops->destroy(stream);
3326
Chris Wilson69df05e2016-12-18 15:37:21 +00003327 if (stream->ctx)
Chris Wilson5f09a9c2017-06-20 12:05:46 +01003328 i915_gem_context_put(stream->ctx);
Robert Braggeec688e2016-11-07 19:49:47 +00003329
3330 kfree(stream);
3331}
3332
Robert Bragg16d98b32016-12-07 21:40:33 +00003333/**
3334 * i915_perf_release - handles userspace close() of a stream file
3335 * @inode: anonymous inode associated with file
3336 * @file: An i915 perf stream file
3337 *
3338 * Cleans up any resources associated with an open i915 perf stream file.
3339 *
3340 * NB: close() can't really fail from the userspace point of view.
3341 *
3342 * Returns: zero on success or a negative error code.
3343 */
Robert Braggeec688e2016-11-07 19:49:47 +00003344static int i915_perf_release(struct inode *inode, struct file *file)
3345{
3346 struct i915_perf_stream *stream = file->private_data;
Chris Wilson8f8b1172019-10-07 22:09:41 +01003347 struct i915_perf *perf = stream->perf;
Robert Braggeec688e2016-11-07 19:49:47 +00003348
Chris Wilson8f8b1172019-10-07 22:09:41 +01003349 mutex_lock(&perf->lock);
Robert Braggeec688e2016-11-07 19:49:47 +00003350 i915_perf_destroy_locked(stream);
Chris Wilson8f8b1172019-10-07 22:09:41 +01003351 mutex_unlock(&perf->lock);
Robert Braggeec688e2016-11-07 19:49:47 +00003352
Lionel Landwerlina5af1df2019-07-09 15:33:39 +03003353 /* Release the reference the perf stream kept on the driver. */
Chris Wilson8f8b1172019-10-07 22:09:41 +01003354 drm_dev_put(&perf->i915->drm);
Lionel Landwerlina5af1df2019-07-09 15:33:39 +03003355
Robert Braggeec688e2016-11-07 19:49:47 +00003356 return 0;
3357}
3358
3359
3360static const struct file_operations fops = {
3361 .owner = THIS_MODULE,
3362 .llseek = no_llseek,
3363 .release = i915_perf_release,
3364 .poll = i915_perf_poll,
3365 .read = i915_perf_read,
3366 .unlocked_ioctl = i915_perf_ioctl,
Lionel Landwerlin191f8962017-10-24 16:27:28 +01003367 /* Our ioctl have no arguments, so it's safe to use the same function
3368 * to handle 32bits compatibility.
3369 */
3370 .compat_ioctl = i915_perf_ioctl,
Robert Braggeec688e2016-11-07 19:49:47 +00003371};
3372
3373
Robert Bragg16d98b32016-12-07 21:40:33 +00003374/**
3375 * i915_perf_open_ioctl_locked - DRM ioctl() for userspace to open a stream FD
Chris Wilson8f8b1172019-10-07 22:09:41 +01003376 * @perf: i915 perf instance
Robert Bragg16d98b32016-12-07 21:40:33 +00003377 * @param: The open parameters passed to 'DRM_I915_PERF_OPEN`
3378 * @props: individually validated u64 property value pairs
3379 * @file: drm file
3380 *
3381 * See i915_perf_ioctl_open() for interface details.
3382 *
3383 * Implements further stream config validation and stream initialization on
Chris Wilson8f8b1172019-10-07 22:09:41 +01003384 * behalf of i915_perf_open_ioctl() with the &perf->lock mutex
Robert Bragg16d98b32016-12-07 21:40:33 +00003385 * taken to serialize with any non-file-operation driver hooks.
3386 *
3387 * Note: at this point the @props have only been validated in isolation and
3388 * it's still necessary to validate that the combination of properties makes
3389 * sense.
3390 *
3391 * In the case where userspace is interested in OA unit metrics then further
3392 * config validation and stream initialization details will be handled by
3393 * i915_oa_stream_init(). The code here should only validate config state that
3394 * will be relevant to all stream types / backends.
3395 *
3396 * Returns: zero on success or a negative error code.
3397 */
Robert Braggeec688e2016-11-07 19:49:47 +00003398static int
Chris Wilson8f8b1172019-10-07 22:09:41 +01003399i915_perf_open_ioctl_locked(struct i915_perf *perf,
Robert Braggeec688e2016-11-07 19:49:47 +00003400 struct drm_i915_perf_open_param *param,
3401 struct perf_open_properties *props,
3402 struct drm_file *file)
3403{
3404 struct i915_gem_context *specific_ctx = NULL;
3405 struct i915_perf_stream *stream = NULL;
3406 unsigned long f_flags = 0;
Robert Bragg19f81df2017-06-13 12:23:03 +01003407 bool privileged_op = true;
Robert Braggeec688e2016-11-07 19:49:47 +00003408 int stream_fd;
3409 int ret;
3410
3411 if (props->single_context) {
3412 u32 ctx_handle = props->ctx_handle;
3413 struct drm_i915_file_private *file_priv = file->driver_priv;
3414
Imre Deak635f56c2017-07-14 18:12:41 +03003415 specific_ctx = i915_gem_context_lookup(file_priv, ctx_handle);
3416 if (!specific_ctx) {
3417 DRM_DEBUG("Failed to look up context with ID %u for opening perf stream\n",
3418 ctx_handle);
3419 ret = -ENOENT;
Robert Braggeec688e2016-11-07 19:49:47 +00003420 goto err;
3421 }
3422 }
3423
Robert Bragg19f81df2017-06-13 12:23:03 +01003424 /*
3425 * On Haswell the OA unit supports clock gating off for a specific
3426 * context and in this mode there's no visibility of metrics for the
3427 * rest of the system, which we consider acceptable for a
3428 * non-privileged client.
3429 *
Lionel Landwerlin00a7f0d2019-10-25 12:37:46 -07003430 * For Gen8->11 the OA unit no longer supports clock gating off for a
Robert Bragg19f81df2017-06-13 12:23:03 +01003431 * specific context and the kernel can't securely stop the counters
3432 * from updating as system-wide / global values. Even though we can
3433 * filter reports based on the included context ID we can't block
3434 * clients from seeing the raw / global counter values via
3435 * MI_REPORT_PERF_COUNT commands and so consider it a privileged op to
3436 * enable the OA unit by default.
Lionel Landwerlin00a7f0d2019-10-25 12:37:46 -07003437 *
3438 * For Gen12+ we gain a new OAR unit that only monitors the RCS on a
3439 * per context basis. So we can relax requirements there if the user
3440 * doesn't request global stream access (i.e. query based sampling
3441 * using MI_RECORD_PERF_COUNT.
Robert Bragg19f81df2017-06-13 12:23:03 +01003442 */
Lionel Landwerlin0b0120d2019-11-11 11:53:08 +02003443 if (IS_HASWELL(perf->i915) && specific_ctx)
Robert Bragg19f81df2017-06-13 12:23:03 +01003444 privileged_op = false;
Lucas De Marchi651e7d42021-06-05 21:50:49 -07003445 else if (GRAPHICS_VER(perf->i915) == 12 && specific_ctx &&
Lionel Landwerlin00a7f0d2019-10-25 12:37:46 -07003446 (props->sample_flags & SAMPLE_OA_REPORT) == 0)
3447 privileged_op = false;
Robert Bragg19f81df2017-06-13 12:23:03 +01003448
Lionel Landwerlin0b0120d2019-11-11 11:53:08 +02003449 if (props->hold_preemption) {
3450 if (!props->single_context) {
3451 DRM_DEBUG("preemption disable with no context\n");
3452 ret = -EINVAL;
3453 goto err;
3454 }
3455 privileged_op = true;
3456 }
3457
Lionel Landwerlin11ecbdd2020-03-17 15:22:22 +02003458 /*
3459 * Asking for SSEU configuration is a priviliged operation.
3460 */
3461 if (props->has_sseu)
3462 privileged_op = true;
3463 else
3464 get_default_sseu_config(&props->sseu, props->engine);
3465
Robert Braggccdf6342016-11-07 19:49:54 +00003466 /* Similar to perf's kernel.perf_paranoid_cpu sysctl option
3467 * we check a dev.i915.perf_stream_paranoid sysctl option
3468 * to determine if it's ok to access system wide OA counters
Alexey Budankov4e3d3452020-04-02 11:48:15 +03003469 * without CAP_PERFMON or CAP_SYS_ADMIN privileges.
Robert Braggccdf6342016-11-07 19:49:54 +00003470 */
Robert Bragg19f81df2017-06-13 12:23:03 +01003471 if (privileged_op &&
Alexey Budankov4e3d3452020-04-02 11:48:15 +03003472 i915_perf_stream_paranoid && !perfmon_capable()) {
Lionel Landwerlin9cd20ef2019-10-14 21:14:04 +01003473 DRM_DEBUG("Insufficient privileges to open i915 perf stream\n");
Robert Braggeec688e2016-11-07 19:49:47 +00003474 ret = -EACCES;
3475 goto err_ctx;
3476 }
3477
3478 stream = kzalloc(sizeof(*stream), GFP_KERNEL);
3479 if (!stream) {
3480 ret = -ENOMEM;
3481 goto err_ctx;
3482 }
3483
Chris Wilson8f8b1172019-10-07 22:09:41 +01003484 stream->perf = perf;
Robert Braggeec688e2016-11-07 19:49:47 +00003485 stream->ctx = specific_ctx;
Lionel Landwerlin4ef10fe2020-03-24 11:54:57 -07003486 stream->poll_oa_period = props->poll_oa_period;
Robert Braggeec688e2016-11-07 19:49:47 +00003487
Robert Braggd7965152016-11-07 19:49:52 +00003488 ret = i915_oa_stream_init(stream, param, props);
3489 if (ret)
3490 goto err_alloc;
3491
3492 /* we avoid simply assigning stream->sample_flags = props->sample_flags
3493 * to have _stream_init check the combination of sample flags more
3494 * thoroughly, but still this is the expected result at this point.
Robert Braggeec688e2016-11-07 19:49:47 +00003495 */
Robert Braggd7965152016-11-07 19:49:52 +00003496 if (WARN_ON(stream->sample_flags != props->sample_flags)) {
3497 ret = -ENODEV;
Matthew Auld22f880c2017-03-27 21:34:59 +01003498 goto err_flags;
Robert Braggd7965152016-11-07 19:49:52 +00003499 }
Robert Braggeec688e2016-11-07 19:49:47 +00003500
Robert Braggeec688e2016-11-07 19:49:47 +00003501 if (param->flags & I915_PERF_FLAG_FD_CLOEXEC)
3502 f_flags |= O_CLOEXEC;
3503 if (param->flags & I915_PERF_FLAG_FD_NONBLOCK)
3504 f_flags |= O_NONBLOCK;
3505
3506 stream_fd = anon_inode_getfd("[i915_perf]", &fops, stream, f_flags);
3507 if (stream_fd < 0) {
3508 ret = stream_fd;
Lionel Landwerlin23b9e412019-10-08 15:01:11 +01003509 goto err_flags;
Robert Braggeec688e2016-11-07 19:49:47 +00003510 }
3511
3512 if (!(param->flags & I915_PERF_FLAG_DISABLED))
3513 i915_perf_enable_locked(stream);
3514
Lionel Landwerlina5af1df2019-07-09 15:33:39 +03003515 /* Take a reference on the driver that will be kept with stream_fd
3516 * until its release.
3517 */
Chris Wilson8f8b1172019-10-07 22:09:41 +01003518 drm_dev_get(&perf->i915->drm);
Lionel Landwerlina5af1df2019-07-09 15:33:39 +03003519
Robert Braggeec688e2016-11-07 19:49:47 +00003520 return stream_fd;
3521
Matthew Auld22f880c2017-03-27 21:34:59 +01003522err_flags:
Robert Braggeec688e2016-11-07 19:49:47 +00003523 if (stream->ops->destroy)
3524 stream->ops->destroy(stream);
3525err_alloc:
3526 kfree(stream);
3527err_ctx:
Chris Wilson69df05e2016-12-18 15:37:21 +00003528 if (specific_ctx)
Chris Wilson5f09a9c2017-06-20 12:05:46 +01003529 i915_gem_context_put(specific_ctx);
Robert Braggeec688e2016-11-07 19:49:47 +00003530err:
3531 return ret;
3532}
3533
Chris Wilson8f8b1172019-10-07 22:09:41 +01003534static u64 oa_exponent_to_ns(struct i915_perf *perf, int exponent)
Robert Bragg155e9412017-06-13 12:23:05 +01003535{
Chris Wilsonf1705232020-12-23 12:23:59 +00003536 return intel_gt_clock_interval_to_ns(perf->i915->ggtt.vm.gt,
3537 2ULL << exponent);
Robert Bragg155e9412017-06-13 12:23:05 +01003538}
3539
Umesh Nerlige Ramappa77892f42021-02-08 09:40:27 -08003540static __always_inline bool
3541oa_format_valid(struct i915_perf *perf, enum drm_i915_oa_format format)
3542{
3543 return test_bit(format, perf->format_mask);
3544}
3545
3546static __always_inline void
3547oa_format_add(struct i915_perf *perf, enum drm_i915_oa_format format)
3548{
3549 __set_bit(format, perf->format_mask);
3550}
3551
Robert Bragg16d98b32016-12-07 21:40:33 +00003552/**
3553 * read_properties_unlocked - validate + copy userspace stream open properties
Chris Wilson8f8b1172019-10-07 22:09:41 +01003554 * @perf: i915 perf instance
Robert Bragg16d98b32016-12-07 21:40:33 +00003555 * @uprops: The array of u64 key value pairs given by userspace
3556 * @n_props: The number of key value pairs expected in @uprops
3557 * @props: The stream configuration built up while validating properties
Robert Braggeec688e2016-11-07 19:49:47 +00003558 *
3559 * Note this function only validates properties in isolation it doesn't
3560 * validate that the combination of properties makes sense or that all
3561 * properties necessary for a particular kind of stream have been set.
Robert Bragg16d98b32016-12-07 21:40:33 +00003562 *
3563 * Note that there currently aren't any ordering requirements for properties so
3564 * we shouldn't validate or assume anything about ordering here. This doesn't
3565 * rule out defining new properties with ordering requirements in the future.
Robert Braggeec688e2016-11-07 19:49:47 +00003566 */
Chris Wilson8f8b1172019-10-07 22:09:41 +01003567static int read_properties_unlocked(struct i915_perf *perf,
Robert Braggeec688e2016-11-07 19:49:47 +00003568 u64 __user *uprops,
3569 u32 n_props,
3570 struct perf_open_properties *props)
3571{
3572 u64 __user *uprop = uprops;
Lionel Landwerlin701f8232017-08-03 17:58:08 +01003573 u32 i;
Lionel Landwerlin11ecbdd2020-03-17 15:22:22 +02003574 int ret;
Robert Braggeec688e2016-11-07 19:49:47 +00003575
3576 memset(props, 0, sizeof(struct perf_open_properties));
Lionel Landwerlin4ef10fe2020-03-24 11:54:57 -07003577 props->poll_oa_period = DEFAULT_POLL_PERIOD_NS;
Robert Braggeec688e2016-11-07 19:49:47 +00003578
3579 if (!n_props) {
Robert Bragg77085502016-12-01 17:21:52 +00003580 DRM_DEBUG("No i915 perf properties given\n");
Robert Braggeec688e2016-11-07 19:49:47 +00003581 return -EINVAL;
3582 }
3583
Lionel Landwerlin9a613632019-10-10 16:05:19 +01003584 /* At the moment we only support using i915-perf on the RCS. */
3585 props->engine = intel_engine_lookup_user(perf->i915,
3586 I915_ENGINE_CLASS_RENDER,
3587 0);
3588 if (!props->engine) {
3589 DRM_DEBUG("No RENDER-capable engines\n");
3590 return -EINVAL;
3591 }
3592
Robert Braggeec688e2016-11-07 19:49:47 +00003593 /* Considering that ID = 0 is reserved and assuming that we don't
3594 * (currently) expect any configurations to ever specify duplicate
3595 * values for a particular property ID then the last _PROP_MAX value is
3596 * one greater than the maximum number of properties we expect to get
3597 * from userspace.
3598 */
3599 if (n_props >= DRM_I915_PERF_PROP_MAX) {
Robert Bragg77085502016-12-01 17:21:52 +00003600 DRM_DEBUG("More i915 perf properties specified than exist\n");
Robert Braggeec688e2016-11-07 19:49:47 +00003601 return -EINVAL;
3602 }
3603
3604 for (i = 0; i < n_props; i++) {
Robert Bragg00319ba2016-11-07 19:49:55 +00003605 u64 oa_period, oa_freq_hz;
Robert Braggeec688e2016-11-07 19:49:47 +00003606 u64 id, value;
Robert Braggeec688e2016-11-07 19:49:47 +00003607
3608 ret = get_user(id, uprop);
3609 if (ret)
3610 return ret;
3611
3612 ret = get_user(value, uprop + 1);
3613 if (ret)
3614 return ret;
3615
Matthew Auld0a309f92017-03-27 21:32:36 +01003616 if (id == 0 || id >= DRM_I915_PERF_PROP_MAX) {
3617 DRM_DEBUG("Unknown i915 perf property ID\n");
3618 return -EINVAL;
3619 }
3620
Robert Braggeec688e2016-11-07 19:49:47 +00003621 switch ((enum drm_i915_perf_property_id)id) {
3622 case DRM_I915_PERF_PROP_CTX_HANDLE:
3623 props->single_context = 1;
3624 props->ctx_handle = value;
3625 break;
Robert Braggd7965152016-11-07 19:49:52 +00003626 case DRM_I915_PERF_PROP_SAMPLE_OA:
Lionel Landwerlinb6dd47b2018-03-26 10:08:22 +01003627 if (value)
3628 props->sample_flags |= SAMPLE_OA_REPORT;
Robert Braggd7965152016-11-07 19:49:52 +00003629 break;
3630 case DRM_I915_PERF_PROP_OA_METRICS_SET:
Lionel Landwerlin701f8232017-08-03 17:58:08 +01003631 if (value == 0) {
Robert Bragg77085502016-12-01 17:21:52 +00003632 DRM_DEBUG("Unknown OA metric set ID\n");
Robert Braggd7965152016-11-07 19:49:52 +00003633 return -EINVAL;
3634 }
3635 props->metrics_set = value;
3636 break;
3637 case DRM_I915_PERF_PROP_OA_FORMAT:
3638 if (value == 0 || value >= I915_OA_FORMAT_MAX) {
Robert Bragg52c57c22017-05-11 16:43:29 +01003639 DRM_DEBUG("Out-of-range OA report format %llu\n",
3640 value);
Robert Braggd7965152016-11-07 19:49:52 +00003641 return -EINVAL;
3642 }
Umesh Nerlige Ramappa77892f42021-02-08 09:40:27 -08003643 if (!oa_format_valid(perf, value)) {
Robert Bragg52c57c22017-05-11 16:43:29 +01003644 DRM_DEBUG("Unsupported OA report format %llu\n",
3645 value);
Robert Braggd7965152016-11-07 19:49:52 +00003646 return -EINVAL;
3647 }
3648 props->oa_format = value;
3649 break;
3650 case DRM_I915_PERF_PROP_OA_EXPONENT:
3651 if (value > OA_EXPONENT_MAX) {
Robert Bragg77085502016-12-01 17:21:52 +00003652 DRM_DEBUG("OA timer exponent too high (> %u)\n",
3653 OA_EXPONENT_MAX);
Robert Braggd7965152016-11-07 19:49:52 +00003654 return -EINVAL;
3655 }
3656
Robert Bragg00319ba2016-11-07 19:49:55 +00003657 /* Theoretically we can program the OA unit to sample
Robert Bragg155e9412017-06-13 12:23:05 +01003658 * e.g. every 160ns for HSW, 167ns for BDW/SKL or 104ns
3659 * for BXT. We don't allow such high sampling
3660 * frequencies by default unless root.
Robert Braggd7965152016-11-07 19:49:52 +00003661 */
Robert Bragg155e9412017-06-13 12:23:05 +01003662
Robert Bragg00319ba2016-11-07 19:49:55 +00003663 BUILD_BUG_ON(sizeof(oa_period) != 8);
Chris Wilson8f8b1172019-10-07 22:09:41 +01003664 oa_period = oa_exponent_to_ns(perf, value);
Robert Bragg00319ba2016-11-07 19:49:55 +00003665
3666 /* This check is primarily to ensure that oa_period <=
3667 * UINT32_MAX (before passing to do_div which only
3668 * accepts a u32 denominator), but we can also skip
3669 * checking anything < 1Hz which implicitly can't be
3670 * limited via an integer oa_max_sample_rate.
3671 */
3672 if (oa_period <= NSEC_PER_SEC) {
3673 u64 tmp = NSEC_PER_SEC;
3674 do_div(tmp, oa_period);
3675 oa_freq_hz = tmp;
3676 } else
3677 oa_freq_hz = 0;
3678
Alexey Budankov4e3d3452020-04-02 11:48:15 +03003679 if (oa_freq_hz > i915_oa_max_sample_rate && !perfmon_capable()) {
3680 DRM_DEBUG("OA exponent would exceed the max sampling frequency (sysctl dev.i915.oa_max_sample_rate) %uHz without CAP_PERFMON or CAP_SYS_ADMIN privileges\n",
Robert Bragg00319ba2016-11-07 19:49:55 +00003681 i915_oa_max_sample_rate);
Robert Braggd7965152016-11-07 19:49:52 +00003682 return -EACCES;
3683 }
3684
3685 props->oa_periodic = true;
3686 props->oa_period_exponent = value;
3687 break;
Lionel Landwerlin9cd20ef2019-10-14 21:14:04 +01003688 case DRM_I915_PERF_PROP_HOLD_PREEMPTION:
3689 props->hold_preemption = !!value;
3690 break;
Lionel Landwerlin11ecbdd2020-03-17 15:22:22 +02003691 case DRM_I915_PERF_PROP_GLOBAL_SSEU: {
3692 struct drm_i915_gem_context_param_sseu user_sseu;
3693
3694 if (copy_from_user(&user_sseu,
3695 u64_to_user_ptr(value),
3696 sizeof(user_sseu))) {
3697 DRM_DEBUG("Unable to copy global sseu parameter\n");
3698 return -EFAULT;
3699 }
3700
3701 ret = get_sseu_config(&props->sseu, props->engine, &user_sseu);
3702 if (ret) {
3703 DRM_DEBUG("Invalid SSEU configuration\n");
3704 return ret;
3705 }
3706 props->has_sseu = true;
3707 break;
3708 }
Lionel Landwerlin4ef10fe2020-03-24 11:54:57 -07003709 case DRM_I915_PERF_PROP_POLL_OA_PERIOD:
3710 if (value < 100000 /* 100us */) {
3711 DRM_DEBUG("OA availability timer too small (%lluns < 100us)\n",
3712 value);
3713 return -EINVAL;
3714 }
3715 props->poll_oa_period = value;
3716 break;
Matthew Auld0a309f92017-03-27 21:32:36 +01003717 case DRM_I915_PERF_PROP_MAX:
Robert Braggeec688e2016-11-07 19:49:47 +00003718 MISSING_CASE(id);
Robert Braggeec688e2016-11-07 19:49:47 +00003719 return -EINVAL;
3720 }
3721
3722 uprop += 2;
3723 }
3724
3725 return 0;
3726}
3727
Robert Bragg16d98b32016-12-07 21:40:33 +00003728/**
3729 * i915_perf_open_ioctl - DRM ioctl() for userspace to open a stream FD
3730 * @dev: drm device
3731 * @data: ioctl data copied from userspace (unvalidated)
3732 * @file: drm file
3733 *
3734 * Validates the stream open parameters given by userspace including flags
3735 * and an array of u64 key, value pair properties.
3736 *
3737 * Very little is assumed up front about the nature of the stream being
3738 * opened (for instance we don't assume it's for periodic OA unit metrics). An
3739 * i915-perf stream is expected to be a suitable interface for other forms of
3740 * buffered data written by the GPU besides periodic OA metrics.
3741 *
3742 * Note we copy the properties from userspace outside of the i915 perf
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07003743 * mutex to avoid an awkward lockdep with mmap_lock.
Robert Bragg16d98b32016-12-07 21:40:33 +00003744 *
3745 * Most of the implementation details are handled by
Chris Wilson8f8b1172019-10-07 22:09:41 +01003746 * i915_perf_open_ioctl_locked() after taking the &perf->lock
Robert Bragg16d98b32016-12-07 21:40:33 +00003747 * mutex for serializing with any non-file-operation driver hooks.
3748 *
3749 * Return: A newly opened i915 Perf stream file descriptor or negative
3750 * error code on failure.
3751 */
Robert Braggeec688e2016-11-07 19:49:47 +00003752int i915_perf_open_ioctl(struct drm_device *dev, void *data,
3753 struct drm_file *file)
3754{
Chris Wilson8f8b1172019-10-07 22:09:41 +01003755 struct i915_perf *perf = &to_i915(dev)->perf;
Robert Braggeec688e2016-11-07 19:49:47 +00003756 struct drm_i915_perf_open_param *param = data;
3757 struct perf_open_properties props;
3758 u32 known_open_flags;
3759 int ret;
3760
Chris Wilson8f8b1172019-10-07 22:09:41 +01003761 if (!perf->i915) {
Robert Bragg77085502016-12-01 17:21:52 +00003762 DRM_DEBUG("i915 perf interface not available for this system\n");
Robert Braggeec688e2016-11-07 19:49:47 +00003763 return -ENOTSUPP;
3764 }
3765
3766 known_open_flags = I915_PERF_FLAG_FD_CLOEXEC |
3767 I915_PERF_FLAG_FD_NONBLOCK |
3768 I915_PERF_FLAG_DISABLED;
3769 if (param->flags & ~known_open_flags) {
Robert Bragg77085502016-12-01 17:21:52 +00003770 DRM_DEBUG("Unknown drm_i915_perf_open_param flag\n");
Robert Braggeec688e2016-11-07 19:49:47 +00003771 return -EINVAL;
3772 }
3773
Chris Wilson8f8b1172019-10-07 22:09:41 +01003774 ret = read_properties_unlocked(perf,
Robert Braggeec688e2016-11-07 19:49:47 +00003775 u64_to_user_ptr(param->properties_ptr),
3776 param->num_properties,
3777 &props);
3778 if (ret)
3779 return ret;
3780
Chris Wilson8f8b1172019-10-07 22:09:41 +01003781 mutex_lock(&perf->lock);
3782 ret = i915_perf_open_ioctl_locked(perf, param, &props, file);
3783 mutex_unlock(&perf->lock);
Robert Braggeec688e2016-11-07 19:49:47 +00003784
3785 return ret;
3786}
3787
Robert Bragg16d98b32016-12-07 21:40:33 +00003788/**
3789 * i915_perf_register - exposes i915-perf to userspace
Chris Wilson8f8b1172019-10-07 22:09:41 +01003790 * @i915: i915 device instance
Robert Bragg16d98b32016-12-07 21:40:33 +00003791 *
3792 * In particular OA metric sets are advertised under a sysfs metrics/
3793 * directory allowing userspace to enumerate valid IDs that can be
3794 * used to open an i915-perf stream.
3795 */
Chris Wilson8f8b1172019-10-07 22:09:41 +01003796void i915_perf_register(struct drm_i915_private *i915)
Robert Bragg442b8c02016-11-07 19:49:53 +00003797{
Chris Wilson8f8b1172019-10-07 22:09:41 +01003798 struct i915_perf *perf = &i915->perf;
Lionel Landwerlin701f8232017-08-03 17:58:08 +01003799
Chris Wilson8f8b1172019-10-07 22:09:41 +01003800 if (!perf->i915)
Robert Bragg442b8c02016-11-07 19:49:53 +00003801 return;
3802
3803 /* To be sure we're synchronized with an attempted
3804 * i915_perf_open_ioctl(); considering that we register after
3805 * being exposed to userspace.
3806 */
Chris Wilson8f8b1172019-10-07 22:09:41 +01003807 mutex_lock(&perf->lock);
Robert Bragg442b8c02016-11-07 19:49:53 +00003808
Chris Wilson8f8b1172019-10-07 22:09:41 +01003809 perf->metrics_kobj =
Robert Bragg442b8c02016-11-07 19:49:53 +00003810 kobject_create_and_add("metrics",
Chris Wilson8f8b1172019-10-07 22:09:41 +01003811 &i915->drm.primary->kdev->kobj);
Robert Bragg442b8c02016-11-07 19:49:53 +00003812
Chris Wilson8f8b1172019-10-07 22:09:41 +01003813 mutex_unlock(&perf->lock);
Robert Bragg442b8c02016-11-07 19:49:53 +00003814}
3815
Robert Bragg16d98b32016-12-07 21:40:33 +00003816/**
3817 * i915_perf_unregister - hide i915-perf from userspace
Chris Wilson8f8b1172019-10-07 22:09:41 +01003818 * @i915: i915 device instance
Robert Bragg16d98b32016-12-07 21:40:33 +00003819 *
3820 * i915-perf state cleanup is split up into an 'unregister' and
3821 * 'deinit' phase where the interface is first hidden from
3822 * userspace by i915_perf_unregister() before cleaning up
3823 * remaining state in i915_perf_fini().
3824 */
Chris Wilson8f8b1172019-10-07 22:09:41 +01003825void i915_perf_unregister(struct drm_i915_private *i915)
Robert Bragg442b8c02016-11-07 19:49:53 +00003826{
Chris Wilson8f8b1172019-10-07 22:09:41 +01003827 struct i915_perf *perf = &i915->perf;
3828
3829 if (!perf->metrics_kobj)
Robert Bragg442b8c02016-11-07 19:49:53 +00003830 return;
3831
Chris Wilson8f8b1172019-10-07 22:09:41 +01003832 kobject_put(perf->metrics_kobj);
3833 perf->metrics_kobj = NULL;
Robert Bragg442b8c02016-11-07 19:49:53 +00003834}
3835
Chris Wilson8f8b1172019-10-07 22:09:41 +01003836static bool gen8_is_valid_flex_addr(struct i915_perf *perf, u32 addr)
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01003837{
3838 static const i915_reg_t flex_eu_regs[] = {
3839 EU_PERF_CNTL0,
3840 EU_PERF_CNTL1,
3841 EU_PERF_CNTL2,
3842 EU_PERF_CNTL3,
3843 EU_PERF_CNTL4,
3844 EU_PERF_CNTL5,
3845 EU_PERF_CNTL6,
3846 };
3847 int i;
3848
3849 for (i = 0; i < ARRAY_SIZE(flex_eu_regs); i++) {
Lionel Landwerlin7c52a222017-11-13 23:34:52 +00003850 if (i915_mmio_reg_offset(flex_eu_regs[i]) == addr)
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01003851 return true;
3852 }
3853 return false;
3854}
3855
Umesh Nerlige Ramappafc215232019-10-25 12:37:45 -07003856#define ADDR_IN_RANGE(addr, start, end) \
3857 ((addr) >= (start) && \
3858 (addr) <= (end))
3859
3860#define REG_IN_RANGE(addr, start, end) \
3861 ((addr) >= i915_mmio_reg_offset(start) && \
3862 (addr) <= i915_mmio_reg_offset(end))
3863
3864#define REG_EQUAL(addr, mmio) \
3865 ((addr) == i915_mmio_reg_offset(mmio))
3866
Chris Wilson8f8b1172019-10-07 22:09:41 +01003867static bool gen7_is_valid_b_counter_addr(struct i915_perf *perf, u32 addr)
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01003868{
Umesh Nerlige Ramappafc215232019-10-25 12:37:45 -07003869 return REG_IN_RANGE(addr, OASTARTTRIG1, OASTARTTRIG8) ||
3870 REG_IN_RANGE(addr, OAREPORTTRIG1, OAREPORTTRIG8) ||
3871 REG_IN_RANGE(addr, OACEC0_0, OACEC7_1);
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01003872}
3873
Chris Wilson8f8b1172019-10-07 22:09:41 +01003874static bool gen7_is_valid_mux_addr(struct i915_perf *perf, u32 addr)
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01003875{
Umesh Nerlige Ramappafc215232019-10-25 12:37:45 -07003876 return REG_EQUAL(addr, HALF_SLICE_CHICKEN2) ||
3877 REG_IN_RANGE(addr, MICRO_BP0_0, NOA_WRITE) ||
3878 REG_IN_RANGE(addr, OA_PERFCNT1_LO, OA_PERFCNT2_HI) ||
3879 REG_IN_RANGE(addr, OA_PERFMATRIX_LO, OA_PERFMATRIX_HI);
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01003880}
3881
Chris Wilson8f8b1172019-10-07 22:09:41 +01003882static bool gen8_is_valid_mux_addr(struct i915_perf *perf, u32 addr)
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01003883{
Chris Wilson8f8b1172019-10-07 22:09:41 +01003884 return gen7_is_valid_mux_addr(perf, addr) ||
Umesh Nerlige Ramappafc215232019-10-25 12:37:45 -07003885 REG_EQUAL(addr, WAIT_FOR_RC6_EXIT) ||
3886 REG_IN_RANGE(addr, RPM_CONFIG0, NOA_CONFIG(8));
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01003887}
3888
Lucas De Marchi5dae69a2021-07-28 14:59:44 -07003889static bool gen11_is_valid_mux_addr(struct i915_perf *perf, u32 addr)
Lionel Landwerlin95690a02017-11-10 19:08:43 +00003890{
Chris Wilson8f8b1172019-10-07 22:09:41 +01003891 return gen8_is_valid_mux_addr(perf, addr) ||
Umesh Nerlige Ramappafc215232019-10-25 12:37:45 -07003892 REG_EQUAL(addr, GEN10_NOA_WRITE_HIGH) ||
3893 REG_IN_RANGE(addr, OA_PERFCNT3_LO, OA_PERFCNT4_HI);
Lionel Landwerlin95690a02017-11-10 19:08:43 +00003894}
3895
Chris Wilson8f8b1172019-10-07 22:09:41 +01003896static bool hsw_is_valid_mux_addr(struct i915_perf *perf, u32 addr)
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01003897{
Chris Wilson8f8b1172019-10-07 22:09:41 +01003898 return gen7_is_valid_mux_addr(perf, addr) ||
Umesh Nerlige Ramappafc215232019-10-25 12:37:45 -07003899 ADDR_IN_RANGE(addr, 0x25100, 0x2FF90) ||
3900 REG_IN_RANGE(addr, HSW_MBVID2_NOA0, HSW_MBVID2_NOA9) ||
3901 REG_EQUAL(addr, HSW_MBVID2_MISR0);
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01003902}
3903
Chris Wilson8f8b1172019-10-07 22:09:41 +01003904static bool chv_is_valid_mux_addr(struct i915_perf *perf, u32 addr)
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01003905{
Chris Wilson8f8b1172019-10-07 22:09:41 +01003906 return gen7_is_valid_mux_addr(perf, addr) ||
Umesh Nerlige Ramappafc215232019-10-25 12:37:45 -07003907 ADDR_IN_RANGE(addr, 0x182300, 0x1823A4);
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01003908}
3909
Lionel Landwerlin00a7f0d2019-10-25 12:37:46 -07003910static bool gen12_is_valid_b_counter_addr(struct i915_perf *perf, u32 addr)
3911{
3912 return REG_IN_RANGE(addr, GEN12_OAG_OASTARTTRIG1, GEN12_OAG_OASTARTTRIG8) ||
3913 REG_IN_RANGE(addr, GEN12_OAG_OAREPORTTRIG1, GEN12_OAG_OAREPORTTRIG8) ||
3914 REG_IN_RANGE(addr, GEN12_OAG_CEC0_0, GEN12_OAG_CEC7_1) ||
3915 REG_IN_RANGE(addr, GEN12_OAG_SCEC0_0, GEN12_OAG_SCEC7_1) ||
3916 REG_EQUAL(addr, GEN12_OAA_DBG_REG) ||
3917 REG_EQUAL(addr, GEN12_OAG_OA_PESS) ||
3918 REG_EQUAL(addr, GEN12_OAG_SPCTR_CNF);
3919}
3920
3921static bool gen12_is_valid_mux_addr(struct i915_perf *perf, u32 addr)
3922{
3923 return REG_EQUAL(addr, NOA_WRITE) ||
3924 REG_EQUAL(addr, GEN10_NOA_WRITE_HIGH) ||
3925 REG_EQUAL(addr, GDT_CHICKEN_BITS) ||
3926 REG_EQUAL(addr, WAIT_FOR_RC6_EXIT) ||
3927 REG_EQUAL(addr, RPM_CONFIG0) ||
3928 REG_EQUAL(addr, RPM_CONFIG1) ||
3929 REG_IN_RANGE(addr, NOA_CONFIG(0), NOA_CONFIG(8));
3930}
3931
Jani Nikula739f3ab2019-01-16 11:15:19 +02003932static u32 mask_reg_value(u32 reg, u32 val)
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01003933{
3934 /* HALF_SLICE_CHICKEN2 is programmed with a the
3935 * WaDisableSTUnitPowerOptimization workaround. Make sure the value
3936 * programmed by userspace doesn't change this.
3937 */
Umesh Nerlige Ramappafc215232019-10-25 12:37:45 -07003938 if (REG_EQUAL(reg, HALF_SLICE_CHICKEN2))
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01003939 val = val & ~_MASKED_BIT_ENABLE(GEN8_ST_PO_DISABLE);
3940
3941 /* WAIT_FOR_RC6_EXIT has only one bit fullfilling the function
3942 * indicated by its name and a bunch of selection fields used by OA
3943 * configs.
3944 */
Umesh Nerlige Ramappafc215232019-10-25 12:37:45 -07003945 if (REG_EQUAL(reg, WAIT_FOR_RC6_EXIT))
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01003946 val = val & ~_MASKED_BIT_ENABLE(HSW_WAIT_FOR_RC6_EXIT_ENABLE);
3947
3948 return val;
3949}
3950
Chris Wilson8f8b1172019-10-07 22:09:41 +01003951static struct i915_oa_reg *alloc_oa_regs(struct i915_perf *perf,
3952 bool (*is_valid)(struct i915_perf *perf, u32 addr),
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01003953 u32 __user *regs,
3954 u32 n_regs)
3955{
3956 struct i915_oa_reg *oa_regs;
3957 int err;
3958 u32 i;
3959
3960 if (!n_regs)
3961 return NULL;
3962
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01003963 /* No is_valid function means we're not allowing any register to be programmed. */
3964 GEM_BUG_ON(!is_valid);
3965 if (!is_valid)
3966 return ERR_PTR(-EINVAL);
3967
3968 oa_regs = kmalloc_array(n_regs, sizeof(*oa_regs), GFP_KERNEL);
3969 if (!oa_regs)
3970 return ERR_PTR(-ENOMEM);
3971
3972 for (i = 0; i < n_regs; i++) {
3973 u32 addr, value;
3974
3975 err = get_user(addr, regs);
3976 if (err)
3977 goto addr_err;
3978
Chris Wilson8f8b1172019-10-07 22:09:41 +01003979 if (!is_valid(perf, addr)) {
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01003980 DRM_DEBUG("Invalid oa_reg address: %X\n", addr);
3981 err = -EINVAL;
3982 goto addr_err;
3983 }
3984
3985 err = get_user(value, regs + 1);
3986 if (err)
3987 goto addr_err;
3988
3989 oa_regs[i].addr = _MMIO(addr);
3990 oa_regs[i].value = mask_reg_value(addr, value);
3991
3992 regs += 2;
3993 }
3994
3995 return oa_regs;
3996
3997addr_err:
3998 kfree(oa_regs);
3999 return ERR_PTR(err);
4000}
4001
4002static ssize_t show_dynamic_id(struct device *dev,
4003 struct device_attribute *attr,
4004 char *buf)
4005{
4006 struct i915_oa_config *oa_config =
4007 container_of(attr, typeof(*oa_config), sysfs_metric_id);
4008
4009 return sprintf(buf, "%d\n", oa_config->id);
4010}
4011
Chris Wilson8f8b1172019-10-07 22:09:41 +01004012static int create_dynamic_oa_sysfs_entry(struct i915_perf *perf,
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01004013 struct i915_oa_config *oa_config)
4014{
Chris Wilson28152a22017-08-03 23:37:00 +01004015 sysfs_attr_init(&oa_config->sysfs_metric_id.attr);
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01004016 oa_config->sysfs_metric_id.attr.name = "id";
4017 oa_config->sysfs_metric_id.attr.mode = S_IRUGO;
4018 oa_config->sysfs_metric_id.show = show_dynamic_id;
4019 oa_config->sysfs_metric_id.store = NULL;
4020
4021 oa_config->attrs[0] = &oa_config->sysfs_metric_id.attr;
4022 oa_config->attrs[1] = NULL;
4023
4024 oa_config->sysfs_metric.name = oa_config->uuid;
4025 oa_config->sysfs_metric.attrs = oa_config->attrs;
4026
Chris Wilson8f8b1172019-10-07 22:09:41 +01004027 return sysfs_create_group(perf->metrics_kobj,
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01004028 &oa_config->sysfs_metric);
4029}
4030
4031/**
4032 * i915_perf_add_config_ioctl - DRM ioctl() for userspace to add a new OA config
4033 * @dev: drm device
4034 * @data: ioctl data (pointer to struct drm_i915_perf_oa_config) copied from
4035 * userspace (unvalidated)
4036 * @file: drm file
4037 *
4038 * Validates the submitted OA register to be saved into a new OA config that
4039 * can then be used for programming the OA unit and its NOA network.
4040 *
4041 * Returns: A new allocated config number to be used with the perf open ioctl
4042 * or a negative error code on failure.
4043 */
4044int i915_perf_add_config_ioctl(struct drm_device *dev, void *data,
4045 struct drm_file *file)
4046{
Chris Wilson8f8b1172019-10-07 22:09:41 +01004047 struct i915_perf *perf = &to_i915(dev)->perf;
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01004048 struct drm_i915_perf_oa_config *args = data;
4049 struct i915_oa_config *oa_config, *tmp;
Mao Wenanc415ef22019-12-04 09:01:54 +08004050 struct i915_oa_reg *regs;
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01004051 int err, id;
4052
Chris Wilson8f8b1172019-10-07 22:09:41 +01004053 if (!perf->i915) {
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01004054 DRM_DEBUG("i915 perf interface not available for this system\n");
4055 return -ENOTSUPP;
4056 }
4057
Chris Wilson8f8b1172019-10-07 22:09:41 +01004058 if (!perf->metrics_kobj) {
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01004059 DRM_DEBUG("OA metrics weren't advertised via sysfs\n");
4060 return -EINVAL;
4061 }
4062
Alexey Budankov4e3d3452020-04-02 11:48:15 +03004063 if (i915_perf_stream_paranoid && !perfmon_capable()) {
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01004064 DRM_DEBUG("Insufficient privileges to add i915 OA config\n");
4065 return -EACCES;
4066 }
4067
4068 if ((!args->mux_regs_ptr || !args->n_mux_regs) &&
4069 (!args->boolean_regs_ptr || !args->n_boolean_regs) &&
4070 (!args->flex_regs_ptr || !args->n_flex_regs)) {
4071 DRM_DEBUG("No OA registers given\n");
4072 return -EINVAL;
4073 }
4074
4075 oa_config = kzalloc(sizeof(*oa_config), GFP_KERNEL);
4076 if (!oa_config) {
4077 DRM_DEBUG("Failed to allocate memory for the OA config\n");
4078 return -ENOMEM;
4079 }
4080
Lionel Landwerlin6a450082019-10-12 08:23:06 +01004081 oa_config->perf = perf;
4082 kref_init(&oa_config->ref);
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01004083
4084 if (!uuid_is_valid(args->uuid)) {
4085 DRM_DEBUG("Invalid uuid format for OA config\n");
4086 err = -EINVAL;
4087 goto reg_err;
4088 }
4089
4090 /* Last character in oa_config->uuid will be 0 because oa_config is
4091 * kzalloc.
4092 */
4093 memcpy(oa_config->uuid, args->uuid, sizeof(args->uuid));
4094
4095 oa_config->mux_regs_len = args->n_mux_regs;
Chris Wilsonc2fba932019-10-13 10:52:11 +01004096 regs = alloc_oa_regs(perf,
4097 perf->ops.is_valid_mux_reg,
4098 u64_to_user_ptr(args->mux_regs_ptr),
4099 args->n_mux_regs);
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01004100
Chris Wilsonc2fba932019-10-13 10:52:11 +01004101 if (IS_ERR(regs)) {
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01004102 DRM_DEBUG("Failed to create OA config for mux_regs\n");
Chris Wilsonc2fba932019-10-13 10:52:11 +01004103 err = PTR_ERR(regs);
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01004104 goto reg_err;
4105 }
Chris Wilsonc2fba932019-10-13 10:52:11 +01004106 oa_config->mux_regs = regs;
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01004107
4108 oa_config->b_counter_regs_len = args->n_boolean_regs;
Chris Wilsonc2fba932019-10-13 10:52:11 +01004109 regs = alloc_oa_regs(perf,
4110 perf->ops.is_valid_b_counter_reg,
4111 u64_to_user_ptr(args->boolean_regs_ptr),
4112 args->n_boolean_regs);
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01004113
Chris Wilsonc2fba932019-10-13 10:52:11 +01004114 if (IS_ERR(regs)) {
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01004115 DRM_DEBUG("Failed to create OA config for b_counter_regs\n");
Chris Wilsonc2fba932019-10-13 10:52:11 +01004116 err = PTR_ERR(regs);
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01004117 goto reg_err;
4118 }
Chris Wilsonc2fba932019-10-13 10:52:11 +01004119 oa_config->b_counter_regs = regs;
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01004120
Lucas De Marchi651e7d42021-06-05 21:50:49 -07004121 if (GRAPHICS_VER(perf->i915) < 8) {
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01004122 if (args->n_flex_regs != 0) {
4123 err = -EINVAL;
4124 goto reg_err;
4125 }
4126 } else {
4127 oa_config->flex_regs_len = args->n_flex_regs;
Chris Wilsonc2fba932019-10-13 10:52:11 +01004128 regs = alloc_oa_regs(perf,
4129 perf->ops.is_valid_flex_reg,
4130 u64_to_user_ptr(args->flex_regs_ptr),
4131 args->n_flex_regs);
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01004132
Chris Wilsonc2fba932019-10-13 10:52:11 +01004133 if (IS_ERR(regs)) {
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01004134 DRM_DEBUG("Failed to create OA config for flex_regs\n");
Chris Wilsonc2fba932019-10-13 10:52:11 +01004135 err = PTR_ERR(regs);
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01004136 goto reg_err;
4137 }
Chris Wilsonc2fba932019-10-13 10:52:11 +01004138 oa_config->flex_regs = regs;
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01004139 }
4140
Chris Wilson8f8b1172019-10-07 22:09:41 +01004141 err = mutex_lock_interruptible(&perf->metrics_lock);
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01004142 if (err)
4143 goto reg_err;
4144
4145 /* We shouldn't have too many configs, so this iteration shouldn't be
4146 * too costly.
4147 */
Chris Wilson8f8b1172019-10-07 22:09:41 +01004148 idr_for_each_entry(&perf->metrics_idr, tmp, id) {
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01004149 if (!strcmp(tmp->uuid, oa_config->uuid)) {
4150 DRM_DEBUG("OA config already exists with this uuid\n");
4151 err = -EADDRINUSE;
4152 goto sysfs_err;
4153 }
4154 }
4155
Chris Wilson8f8b1172019-10-07 22:09:41 +01004156 err = create_dynamic_oa_sysfs_entry(perf, oa_config);
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01004157 if (err) {
4158 DRM_DEBUG("Failed to create sysfs entry for OA config\n");
4159 goto sysfs_err;
4160 }
4161
4162 /* Config id 0 is invalid, id 1 for kernel stored test config. */
Chris Wilson8f8b1172019-10-07 22:09:41 +01004163 oa_config->id = idr_alloc(&perf->metrics_idr,
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01004164 oa_config, 2,
4165 0, GFP_KERNEL);
4166 if (oa_config->id < 0) {
4167 DRM_DEBUG("Failed to create sysfs entry for OA config\n");
4168 err = oa_config->id;
4169 goto sysfs_err;
4170 }
4171
Chris Wilson8f8b1172019-10-07 22:09:41 +01004172 mutex_unlock(&perf->metrics_lock);
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01004173
Lionel Landwerlin9bd9be62018-03-26 10:08:28 +01004174 DRM_DEBUG("Added config %s id=%i\n", oa_config->uuid, oa_config->id);
4175
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01004176 return oa_config->id;
4177
4178sysfs_err:
Chris Wilson8f8b1172019-10-07 22:09:41 +01004179 mutex_unlock(&perf->metrics_lock);
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01004180reg_err:
Lionel Landwerlin6a450082019-10-12 08:23:06 +01004181 i915_oa_config_put(oa_config);
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01004182 DRM_DEBUG("Failed to add new OA config\n");
4183 return err;
4184}
4185
4186/**
4187 * i915_perf_remove_config_ioctl - DRM ioctl() for userspace to remove an OA config
4188 * @dev: drm device
4189 * @data: ioctl data (pointer to u64 integer) copied from userspace
4190 * @file: drm file
4191 *
4192 * Configs can be removed while being used, the will stop appearing in sysfs
4193 * and their content will be freed when the stream using the config is closed.
4194 *
4195 * Returns: 0 on success or a negative error code on failure.
4196 */
4197int i915_perf_remove_config_ioctl(struct drm_device *dev, void *data,
4198 struct drm_file *file)
4199{
Chris Wilson8f8b1172019-10-07 22:09:41 +01004200 struct i915_perf *perf = &to_i915(dev)->perf;
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01004201 u64 *arg = data;
4202 struct i915_oa_config *oa_config;
4203 int ret;
4204
Chris Wilson8f8b1172019-10-07 22:09:41 +01004205 if (!perf->i915) {
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01004206 DRM_DEBUG("i915 perf interface not available for this system\n");
4207 return -ENOTSUPP;
4208 }
4209
Alexey Budankov4e3d3452020-04-02 11:48:15 +03004210 if (i915_perf_stream_paranoid && !perfmon_capable()) {
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01004211 DRM_DEBUG("Insufficient privileges to remove i915 OA config\n");
4212 return -EACCES;
4213 }
4214
Chris Wilson8f8b1172019-10-07 22:09:41 +01004215 ret = mutex_lock_interruptible(&perf->metrics_lock);
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01004216 if (ret)
Lionel Landwerlin6a450082019-10-12 08:23:06 +01004217 return ret;
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01004218
Chris Wilson8f8b1172019-10-07 22:09:41 +01004219 oa_config = idr_find(&perf->metrics_idr, *arg);
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01004220 if (!oa_config) {
4221 DRM_DEBUG("Failed to remove unknown OA config\n");
4222 ret = -ENOENT;
Lionel Landwerlin6a450082019-10-12 08:23:06 +01004223 goto err_unlock;
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01004224 }
4225
4226 GEM_BUG_ON(*arg != oa_config->id);
4227
Lionel Landwerlin4f6ccc72019-10-14 21:14:02 +01004228 sysfs_remove_group(perf->metrics_kobj, &oa_config->sysfs_metric);
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01004229
Chris Wilson8f8b1172019-10-07 22:09:41 +01004230 idr_remove(&perf->metrics_idr, *arg);
Lionel Landwerlin9bd9be62018-03-26 10:08:28 +01004231
Lionel Landwerlin6a450082019-10-12 08:23:06 +01004232 mutex_unlock(&perf->metrics_lock);
4233
Lionel Landwerlin9bd9be62018-03-26 10:08:28 +01004234 DRM_DEBUG("Removed config %s id=%i\n", oa_config->uuid, oa_config->id);
4235
Lionel Landwerlin6a450082019-10-12 08:23:06 +01004236 i915_oa_config_put(oa_config);
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01004237
Lionel Landwerlin6a450082019-10-12 08:23:06 +01004238 return 0;
4239
4240err_unlock:
Chris Wilson8f8b1172019-10-07 22:09:41 +01004241 mutex_unlock(&perf->metrics_lock);
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01004242 return ret;
4243}
4244
Robert Braggccdf6342016-11-07 19:49:54 +00004245static struct ctl_table oa_table[] = {
4246 {
4247 .procname = "perf_stream_paranoid",
4248 .data = &i915_perf_stream_paranoid,
4249 .maxlen = sizeof(i915_perf_stream_paranoid),
4250 .mode = 0644,
4251 .proc_handler = proc_dointvec_minmax,
Matteo Croceeec48442019-07-18 15:58:50 -07004252 .extra1 = SYSCTL_ZERO,
4253 .extra2 = SYSCTL_ONE,
Robert Braggccdf6342016-11-07 19:49:54 +00004254 },
Robert Bragg00319ba2016-11-07 19:49:55 +00004255 {
4256 .procname = "oa_max_sample_rate",
4257 .data = &i915_oa_max_sample_rate,
4258 .maxlen = sizeof(i915_oa_max_sample_rate),
4259 .mode = 0644,
4260 .proc_handler = proc_dointvec_minmax,
Matteo Croceeec48442019-07-18 15:58:50 -07004261 .extra1 = SYSCTL_ZERO,
Robert Bragg00319ba2016-11-07 19:49:55 +00004262 .extra2 = &oa_sample_rate_hard_limit,
4263 },
Robert Braggccdf6342016-11-07 19:49:54 +00004264 {}
4265};
4266
4267static struct ctl_table i915_root[] = {
4268 {
4269 .procname = "i915",
4270 .maxlen = 0,
4271 .mode = 0555,
4272 .child = oa_table,
4273 },
4274 {}
4275};
4276
4277static struct ctl_table dev_root[] = {
4278 {
4279 .procname = "dev",
4280 .maxlen = 0,
4281 .mode = 0555,
4282 .child = i915_root,
4283 },
4284 {}
4285};
4286
Umesh Nerlige Ramappa77892f42021-02-08 09:40:27 -08004287static void oa_init_supported_formats(struct i915_perf *perf)
4288{
4289 struct drm_i915_private *i915 = perf->i915;
4290 enum intel_platform platform = INTEL_INFO(i915)->platform;
4291
4292 switch (platform) {
4293 case INTEL_HASWELL:
4294 oa_format_add(perf, I915_OA_FORMAT_A13);
4295 oa_format_add(perf, I915_OA_FORMAT_A13);
4296 oa_format_add(perf, I915_OA_FORMAT_A29);
4297 oa_format_add(perf, I915_OA_FORMAT_A13_B8_C8);
4298 oa_format_add(perf, I915_OA_FORMAT_B4_C8);
4299 oa_format_add(perf, I915_OA_FORMAT_A45_B8_C8);
4300 oa_format_add(perf, I915_OA_FORMAT_B4_C8_A16);
4301 oa_format_add(perf, I915_OA_FORMAT_C4_B8);
4302 break;
4303
4304 case INTEL_BROADWELL:
4305 case INTEL_CHERRYVIEW:
4306 case INTEL_SKYLAKE:
4307 case INTEL_BROXTON:
4308 case INTEL_KABYLAKE:
4309 case INTEL_GEMINILAKE:
4310 case INTEL_COFFEELAKE:
4311 case INTEL_COMETLAKE:
4312 case INTEL_CANNONLAKE:
4313 case INTEL_ICELAKE:
4314 case INTEL_ELKHARTLAKE:
4315 case INTEL_JASPERLAKE:
Umesh Nerlige Ramappa77892f42021-02-08 09:40:27 -08004316 case INTEL_TIGERLAKE:
4317 case INTEL_ROCKETLAKE:
4318 case INTEL_DG1:
4319 case INTEL_ALDERLAKE_S:
Umesh Nerlige Ramappa73c1bf02021-05-11 21:21:44 -07004320 case INTEL_ALDERLAKE_P:
Umesh Nerlige Ramappa5e4b7382021-02-08 09:40:29 -08004321 oa_format_add(perf, I915_OA_FORMAT_A12);
4322 oa_format_add(perf, I915_OA_FORMAT_A12_B8_C8);
Umesh Nerlige Ramappa77892f42021-02-08 09:40:27 -08004323 oa_format_add(perf, I915_OA_FORMAT_A32u40_A4u32_B8_C8);
Umesh Nerlige Ramappa5e4b7382021-02-08 09:40:29 -08004324 oa_format_add(perf, I915_OA_FORMAT_C4_B8);
Umesh Nerlige Ramappa77892f42021-02-08 09:40:27 -08004325 break;
4326
4327 default:
4328 MISSING_CASE(platform);
4329 }
4330}
4331
Robert Bragg16d98b32016-12-07 21:40:33 +00004332/**
Venkata Sandeep Dhanalakota3dc716fd2019-12-13 07:51:51 -08004333 * i915_perf_init - initialize i915-perf state on module bind
Chris Wilson8f8b1172019-10-07 22:09:41 +01004334 * @i915: i915 device instance
Robert Bragg16d98b32016-12-07 21:40:33 +00004335 *
4336 * Initializes i915-perf state without exposing anything to userspace.
4337 *
4338 * Note: i915-perf initialization is split into an 'init' and 'register'
4339 * phase with the i915_perf_register() exposing state to userspace.
4340 */
Chris Wilson8f8b1172019-10-07 22:09:41 +01004341void i915_perf_init(struct drm_i915_private *i915)
Robert Braggeec688e2016-11-07 19:49:47 +00004342{
Chris Wilson8f8b1172019-10-07 22:09:41 +01004343 struct i915_perf *perf = &i915->perf;
Robert Braggd7965152016-11-07 19:49:52 +00004344
Chris Wilson8f8b1172019-10-07 22:09:41 +01004345 /* XXX const struct i915_perf_ops! */
4346
Umesh Nerlige Ramappa0f15c5b2021-02-08 09:40:28 -08004347 perf->oa_formats = oa_formats;
Chris Wilson8f8b1172019-10-07 22:09:41 +01004348 if (IS_HASWELL(i915)) {
4349 perf->ops.is_valid_b_counter_reg = gen7_is_valid_b_counter_addr;
4350 perf->ops.is_valid_mux_reg = hsw_is_valid_mux_addr;
4351 perf->ops.is_valid_flex_reg = NULL;
4352 perf->ops.enable_metric_set = hsw_enable_metric_set;
4353 perf->ops.disable_metric_set = hsw_disable_metric_set;
4354 perf->ops.oa_enable = gen7_oa_enable;
4355 perf->ops.oa_disable = gen7_oa_disable;
4356 perf->ops.read = gen7_oa_read;
4357 perf->ops.oa_hw_tail_read = gen7_oa_hw_tail_read;
Chris Wilson8f8b1172019-10-07 22:09:41 +01004358 } else if (HAS_LOGICAL_RING_CONTEXTS(i915)) {
Robert Bragg19f81df2017-06-13 12:23:03 +01004359 /* Note: that although we could theoretically also support the
4360 * legacy ringbuffer mode on BDW (and earlier iterations of
4361 * this driver, before upstreaming did this) it didn't seem
4362 * worth the complexity to maintain now that BDW+ enable
4363 * execlist mode by default.
4364 */
Chris Wilson8f8b1172019-10-07 22:09:41 +01004365 perf->ops.read = gen8_oa_read;
Lionel Landwerlin701f8232017-08-03 17:58:08 +01004366
Lucas De Marchi651e7d42021-06-05 21:50:49 -07004367 if (IS_GRAPHICS_VER(i915, 8, 9)) {
Chris Wilson8f8b1172019-10-07 22:09:41 +01004368 perf->ops.is_valid_b_counter_reg =
Lionel Landwerlinba6b7c12017-11-10 19:08:41 +00004369 gen7_is_valid_b_counter_addr;
Chris Wilson8f8b1172019-10-07 22:09:41 +01004370 perf->ops.is_valid_mux_reg =
Lionel Landwerlinba6b7c12017-11-10 19:08:41 +00004371 gen8_is_valid_mux_addr;
Chris Wilson8f8b1172019-10-07 22:09:41 +01004372 perf->ops.is_valid_flex_reg =
Lionel Landwerlinba6b7c12017-11-10 19:08:41 +00004373 gen8_is_valid_flex_addr;
Lionel Landwerlin701f8232017-08-03 17:58:08 +01004374
Chris Wilson8f8b1172019-10-07 22:09:41 +01004375 if (IS_CHERRYVIEW(i915)) {
4376 perf->ops.is_valid_mux_reg =
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01004377 chv_is_valid_mux_addr;
4378 }
Robert Bragg155e9412017-06-13 12:23:05 +01004379
Lionel Landwerlin00a7f0d2019-10-25 12:37:46 -07004380 perf->ops.oa_enable = gen8_oa_enable;
4381 perf->ops.oa_disable = gen8_oa_disable;
Chris Wilson8f8b1172019-10-07 22:09:41 +01004382 perf->ops.enable_metric_set = gen8_enable_metric_set;
4383 perf->ops.disable_metric_set = gen8_disable_metric_set;
Lionel Landwerlin00a7f0d2019-10-25 12:37:46 -07004384 perf->ops.oa_hw_tail_read = gen8_oa_hw_tail_read;
Lionel Landwerlinba6b7c12017-11-10 19:08:41 +00004385
Lucas De Marchi651e7d42021-06-05 21:50:49 -07004386 if (GRAPHICS_VER(i915) == 8) {
Chris Wilson8f8b1172019-10-07 22:09:41 +01004387 perf->ctx_oactxctrl_offset = 0x120;
4388 perf->ctx_flexeu0_offset = 0x2ce;
Lionel Landwerlinba6b7c12017-11-10 19:08:41 +00004389
Chris Wilson8f8b1172019-10-07 22:09:41 +01004390 perf->gen8_valid_ctx_bit = BIT(25);
Lionel Landwerlinba6b7c12017-11-10 19:08:41 +00004391 } else {
Chris Wilson8f8b1172019-10-07 22:09:41 +01004392 perf->ctx_oactxctrl_offset = 0x128;
4393 perf->ctx_flexeu0_offset = 0x3de;
Lionel Landwerlinba6b7c12017-11-10 19:08:41 +00004394
Chris Wilson8f8b1172019-10-07 22:09:41 +01004395 perf->gen8_valid_ctx_bit = BIT(16);
Lionel Landwerlinba6b7c12017-11-10 19:08:41 +00004396 }
Lucas De Marchi5dae69a2021-07-28 14:59:44 -07004397 } else if (GRAPHICS_VER(i915) == 11) {
Chris Wilson8f8b1172019-10-07 22:09:41 +01004398 perf->ops.is_valid_b_counter_reg =
Lionel Landwerlin95690a02017-11-10 19:08:43 +00004399 gen7_is_valid_b_counter_addr;
Chris Wilson8f8b1172019-10-07 22:09:41 +01004400 perf->ops.is_valid_mux_reg =
Lucas De Marchi5dae69a2021-07-28 14:59:44 -07004401 gen11_is_valid_mux_addr;
Chris Wilson8f8b1172019-10-07 22:09:41 +01004402 perf->ops.is_valid_flex_reg =
Lionel Landwerlin95690a02017-11-10 19:08:43 +00004403 gen8_is_valid_flex_addr;
4404
Lionel Landwerlin00a7f0d2019-10-25 12:37:46 -07004405 perf->ops.oa_enable = gen8_oa_enable;
4406 perf->ops.oa_disable = gen8_oa_disable;
Chris Wilson8f8b1172019-10-07 22:09:41 +01004407 perf->ops.enable_metric_set = gen8_enable_metric_set;
Lucas De Marchi5dae69a2021-07-28 14:59:44 -07004408 perf->ops.disable_metric_set = gen11_disable_metric_set;
Lionel Landwerlin00a7f0d2019-10-25 12:37:46 -07004409 perf->ops.oa_hw_tail_read = gen8_oa_hw_tail_read;
Lionel Landwerlin95690a02017-11-10 19:08:43 +00004410
Lucas De Marchi5dae69a2021-07-28 14:59:44 -07004411 perf->ctx_oactxctrl_offset = 0x124;
4412 perf->ctx_flexeu0_offset = 0x78e;
4413
Chris Wilson8f8b1172019-10-07 22:09:41 +01004414 perf->gen8_valid_ctx_bit = BIT(16);
Lucas De Marchi651e7d42021-06-05 21:50:49 -07004415 } else if (GRAPHICS_VER(i915) == 12) {
Lionel Landwerlin00a7f0d2019-10-25 12:37:46 -07004416 perf->ops.is_valid_b_counter_reg =
4417 gen12_is_valid_b_counter_addr;
4418 perf->ops.is_valid_mux_reg =
4419 gen12_is_valid_mux_addr;
4420 perf->ops.is_valid_flex_reg =
4421 gen8_is_valid_flex_addr;
4422
4423 perf->ops.oa_enable = gen12_oa_enable;
4424 perf->ops.oa_disable = gen12_oa_disable;
4425 perf->ops.enable_metric_set = gen12_enable_metric_set;
4426 perf->ops.disable_metric_set = gen12_disable_metric_set;
4427 perf->ops.oa_hw_tail_read = gen12_oa_hw_tail_read;
4428
4429 perf->ctx_flexeu0_offset = 0;
4430 perf->ctx_oactxctrl_offset = 0x144;
Robert Bragg19f81df2017-06-13 12:23:03 +01004431 }
Robert Bragg19f81df2017-06-13 12:23:03 +01004432 }
4433
Chris Wilson8f8b1172019-10-07 22:09:41 +01004434 if (perf->ops.enable_metric_set) {
Chris Wilson8f8b1172019-10-07 22:09:41 +01004435 mutex_init(&perf->lock);
Robert Bragg19f81df2017-06-13 12:23:03 +01004436
Chris Wilsonf1705232020-12-23 12:23:59 +00004437 /* Choose a representative limit */
4438 oa_sample_rate_hard_limit = i915->gt.clock_frequency / 2;
Robert Bragg19f81df2017-06-13 12:23:03 +01004439
Chris Wilson8f8b1172019-10-07 22:09:41 +01004440 mutex_init(&perf->metrics_lock);
Deepak R Varma8d989f42020-11-04 20:33:39 +05304441 idr_init_base(&perf->metrics_idr, 1);
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01004442
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07004443 /* We set up some ratelimit state to potentially throttle any
4444 * _NOTES about spurious, invalid OA reports which we don't
4445 * forward to userspace.
4446 *
4447 * We print a _NOTE about any throttling when closing the
4448 * stream instead of waiting until driver _fini which no one
4449 * would ever see.
4450 *
4451 * Using the same limiting factors as printk_ratelimit()
4452 */
Chris Wilson8f8b1172019-10-07 22:09:41 +01004453 ratelimit_state_init(&perf->spurious_report_rs, 5 * HZ, 10);
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07004454 /* Since we use a DRM_NOTE for spurious reports it would be
4455 * inconsistent to let __ratelimit() automatically print a
4456 * warning for throttling.
4457 */
Chris Wilson8f8b1172019-10-07 22:09:41 +01004458 ratelimit_set_flags(&perf->spurious_report_rs,
Umesh Nerlige Ramappaa37f08a2019-08-06 16:30:02 -07004459 RATELIMIT_MSG_ON_RELEASE);
4460
Lionel Landwerlind1df41e2020-03-24 11:54:55 -07004461 ratelimit_state_init(&perf->tail_pointer_race,
4462 5 * HZ, 10);
4463 ratelimit_set_flags(&perf->tail_pointer_race,
4464 RATELIMIT_MSG_ON_RELEASE);
4465
Lionel Landwerlindaed3e42019-10-12 08:23:07 +01004466 atomic64_set(&perf->noa_programming_delay,
4467 500 * 1000 /* 500us */);
4468
Chris Wilson8f8b1172019-10-07 22:09:41 +01004469 perf->i915 = i915;
Umesh Nerlige Ramappa77892f42021-02-08 09:40:27 -08004470
4471 oa_init_supported_formats(perf);
Robert Bragg19f81df2017-06-13 12:23:03 +01004472 }
Robert Braggeec688e2016-11-07 19:49:47 +00004473}
4474
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01004475static int destroy_config(int id, void *p, void *data)
4476{
Lionel Landwerlin6a450082019-10-12 08:23:06 +01004477 i915_oa_config_put(p);
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01004478 return 0;
4479}
4480
Venkata Sandeep Dhanalakota3dc716fd2019-12-13 07:51:51 -08004481void i915_perf_sysctl_register(void)
4482{
4483 sysctl_header = register_sysctl_table(dev_root);
4484}
4485
4486void i915_perf_sysctl_unregister(void)
4487{
4488 unregister_sysctl_table(sysctl_header);
4489}
4490
Robert Bragg16d98b32016-12-07 21:40:33 +00004491/**
4492 * i915_perf_fini - Counter part to i915_perf_init()
Chris Wilson8f8b1172019-10-07 22:09:41 +01004493 * @i915: i915 device instance
Robert Bragg16d98b32016-12-07 21:40:33 +00004494 */
Chris Wilson8f8b1172019-10-07 22:09:41 +01004495void i915_perf_fini(struct drm_i915_private *i915)
Robert Braggeec688e2016-11-07 19:49:47 +00004496{
Chris Wilson8f8b1172019-10-07 22:09:41 +01004497 struct i915_perf *perf = &i915->perf;
4498
4499 if (!perf->i915)
Robert Braggeec688e2016-11-07 19:49:47 +00004500 return;
4501
Chris Wilson8f8b1172019-10-07 22:09:41 +01004502 idr_for_each(&perf->metrics_idr, destroy_config, perf);
4503 idr_destroy(&perf->metrics_idr);
Lionel Landwerlinf89823c2017-08-03 18:05:50 +01004504
Chris Wilson8f8b1172019-10-07 22:09:41 +01004505 memset(&perf->ops, 0, sizeof(perf->ops));
4506 perf->i915 = NULL;
Robert Braggeec688e2016-11-07 19:49:47 +00004507}
Lionel Landwerlindaed3e42019-10-12 08:23:07 +01004508
Lionel Landwerlinb8d49f22019-10-14 21:14:01 +01004509/**
4510 * i915_perf_ioctl_version - Version of the i915-perf subsystem
4511 *
4512 * This version number is used by userspace to detect available features.
4513 */
4514int i915_perf_ioctl_version(void)
4515{
Chris Wilson7831e9a2019-10-14 21:14:03 +01004516 /*
4517 * 1: Initial version
4518 * I915_PERF_IOCTL_ENABLE
4519 * I915_PERF_IOCTL_DISABLE
4520 *
4521 * 2: Added runtime modification of OA config.
4522 * I915_PERF_IOCTL_CONFIG
Lionel Landwerlin9cd20ef2019-10-14 21:14:04 +01004523 *
4524 * 3: Add DRM_I915_PERF_PROP_HOLD_PREEMPTION parameter to hold
4525 * preemption on a particular context so that performance data is
4526 * accessible from a delta of MI_RPC reports without looking at the
4527 * OA buffer.
Lionel Landwerlin11ecbdd2020-03-17 15:22:22 +02004528 *
4529 * 4: Add DRM_I915_PERF_PROP_ALLOWED_SSEU to limit what contexts can
4530 * be run for the duration of the performance recording based on
4531 * their SSEU configuration.
Lionel Landwerlin4ef10fe2020-03-24 11:54:57 -07004532 *
4533 * 5: Add DRM_I915_PERF_PROP_POLL_OA_PERIOD parameter that controls the
4534 * interval for the hrtimer used to check for OA data.
Chris Wilson7831e9a2019-10-14 21:14:03 +01004535 */
Lionel Landwerlin4ef10fe2020-03-24 11:54:57 -07004536 return 5;
Lionel Landwerlinb8d49f22019-10-14 21:14:01 +01004537}
4538
Lionel Landwerlindaed3e42019-10-12 08:23:07 +01004539#if IS_ENABLED(CONFIG_DRM_I915_SELFTEST)
4540#include "selftests/i915_perf.c"
4541#endif