blob: cc6a17d198e146dc8bfc85b7f08e0a668d34505f [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>
Robert Braggeec688e2016-11-07 19:49:47 +0000196
197#include "i915_drv.h"
Robert Braggd7965152016-11-07 19:49:52 +0000198#include "i915_oa_hsw.h"
199
200/* HW requires this to be a power of two, between 128k and 16M, though driver
201 * is currently generally designed assuming the largest 16M size is used such
202 * that the overflow cases are unlikely in normal operation.
203 */
204#define OA_BUFFER_SIZE SZ_16M
205
206#define OA_TAKEN(tail, head) ((tail - head) & (OA_BUFFER_SIZE - 1))
207
Robert Bragg0dd860c2017-05-11 16:43:28 +0100208/**
209 * DOC: OA Tail Pointer Race
210 *
211 * There's a HW race condition between OA unit tail pointer register updates and
Robert Braggd7965152016-11-07 19:49:52 +0000212 * writes to memory whereby the tail pointer can sometimes get ahead of what's
Robert Bragg0dd860c2017-05-11 16:43:28 +0100213 * been written out to the OA buffer so far (in terms of what's visible to the
214 * CPU).
Robert Braggd7965152016-11-07 19:49:52 +0000215 *
Robert Bragg0dd860c2017-05-11 16:43:28 +0100216 * Although this can be observed explicitly while copying reports to userspace
217 * by checking for a zeroed report-id field in tail reports, we want to account
218 * for this earlier, as part of the _oa_buffer_check to avoid lots of redundant
219 * read() attempts.
Robert Braggd7965152016-11-07 19:49:52 +0000220 *
Robert Bragg0dd860c2017-05-11 16:43:28 +0100221 * In effect we define a tail pointer for reading that lags the real tail
222 * pointer by at least %OA_TAIL_MARGIN_NSEC nanoseconds, which gives enough
223 * time for the corresponding reports to become visible to the CPU.
Robert Braggd7965152016-11-07 19:49:52 +0000224 *
Robert Bragg0dd860c2017-05-11 16:43:28 +0100225 * To manage this we actually track two tail pointers:
226 * 1) An 'aging' tail with an associated timestamp that is tracked until we
227 * can trust the corresponding data is visible to the CPU; at which point
228 * it is considered 'aged'.
229 * 2) An 'aged' tail that can be used for read()ing.
230 *
231 * The two separate pointers let us decouple read()s from tail pointer aging.
232 *
233 * The tail pointers are checked and updated at a limited rate within a hrtimer
234 * callback (the same callback that is used for delivering POLLIN events)
235 *
236 * Initially the tails are marked invalid with %INVALID_TAIL_PTR which
237 * indicates that an updated tail pointer is needed.
238 *
239 * Most of the implementation details for this workaround are in
240 * gen7_oa_buffer_check_unlocked() and gen7_appand_oa_reports()
241 *
242 * Note for posterity: previously the driver used to define an effective tail
243 * pointer that lagged the real pointer by a 'tail margin' measured in bytes
244 * derived from %OA_TAIL_MARGIN_NSEC and the configured sampling frequency.
245 * This was flawed considering that the OA unit may also automatically generate
246 * non-periodic reports (such as on context switch) or the OA unit may be
247 * enabled without any periodic sampling.
Robert Braggd7965152016-11-07 19:49:52 +0000248 */
249#define OA_TAIL_MARGIN_NSEC 100000ULL
Robert Bragg0dd860c2017-05-11 16:43:28 +0100250#define INVALID_TAIL_PTR 0xffffffff
Robert Braggd7965152016-11-07 19:49:52 +0000251
252/* frequency for checking whether the OA unit has written new reports to the
253 * circular OA buffer...
254 */
255#define POLL_FREQUENCY 200
256#define POLL_PERIOD (NSEC_PER_SEC / POLL_FREQUENCY)
257
Robert Braggccdf6342016-11-07 19:49:54 +0000258/* for sysctl proc_dointvec_minmax of dev.i915.perf_stream_paranoid */
259static int zero;
260static int one = 1;
261static 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
275
Robert Bragg00319ba2016-11-07 19:49:55 +0000276/* For sysctl proc_dointvec_minmax of i915_oa_max_sample_rate
277 *
278 * 160ns is the smallest sampling period we can theoretically program the OA
279 * unit with on Haswell, corresponding to 6.25MHz.
280 */
281static int oa_sample_rate_hard_limit = 6250000;
282
283/* Theoretically we can program the OA unit to sample every 160ns but don't
284 * allow that by default unless root...
285 *
286 * The default threshold of 100000Hz is based on perf's similar
287 * kernel.perf_event_max_sample_rate sysctl parameter.
288 */
289static u32 i915_oa_max_sample_rate = 100000;
290
Robert Braggd7965152016-11-07 19:49:52 +0000291/* XXX: beware if future OA HW adds new report formats that the current
292 * code assumes all reports have a power-of-two size and ~(size - 1) can
293 * be used as a mask to align the OA tail pointer.
294 */
295static struct i915_oa_format hsw_oa_formats[I915_OA_FORMAT_MAX] = {
296 [I915_OA_FORMAT_A13] = { 0, 64 },
297 [I915_OA_FORMAT_A29] = { 1, 128 },
298 [I915_OA_FORMAT_A13_B8_C8] = { 2, 128 },
299 /* A29_B8_C8 Disallowed as 192 bytes doesn't factor into buffer size */
300 [I915_OA_FORMAT_B4_C8] = { 4, 64 },
301 [I915_OA_FORMAT_A45_B8_C8] = { 5, 256 },
302 [I915_OA_FORMAT_B4_C8_A16] = { 6, 128 },
303 [I915_OA_FORMAT_C4_B8] = { 7, 64 },
304};
305
306#define SAMPLE_OA_REPORT (1<<0)
Robert Braggeec688e2016-11-07 19:49:47 +0000307
Robert Bragg16d98b32016-12-07 21:40:33 +0000308/**
309 * struct perf_open_properties - for validated properties given to open a stream
310 * @sample_flags: `DRM_I915_PERF_PROP_SAMPLE_*` properties are tracked as flags
311 * @single_context: Whether a single or all gpu contexts should be monitored
312 * @ctx_handle: A gem ctx handle for use with @single_context
313 * @metrics_set: An ID for an OA unit metric set advertised via sysfs
314 * @oa_format: An OA unit HW report format
315 * @oa_periodic: Whether to enable periodic OA unit sampling
316 * @oa_period_exponent: The OA unit sampling period is derived from this
317 *
318 * As read_properties_unlocked() enumerates and validates the properties given
319 * to open a stream of metrics the configuration is built up in the structure
320 * which starts out zero initialized.
321 */
Robert Braggeec688e2016-11-07 19:49:47 +0000322struct perf_open_properties {
323 u32 sample_flags;
324
325 u64 single_context:1;
326 u64 ctx_handle;
Robert Braggd7965152016-11-07 19:49:52 +0000327
328 /* OA sampling state */
329 int metrics_set;
330 int oa_format;
331 bool oa_periodic;
332 int oa_period_exponent;
Robert Braggeec688e2016-11-07 19:49:47 +0000333};
334
Robert Bragg0dd860c2017-05-11 16:43:28 +0100335/**
336 * gen7_oa_buffer_check_unlocked - check for data and update tail ptr state
337 * @dev_priv: i915 device instance
Robert Braggd7965152016-11-07 19:49:52 +0000338 *
Robert Bragg0dd860c2017-05-11 16:43:28 +0100339 * This is either called via fops (for blocking reads in user ctx) or the poll
340 * check hrtimer (atomic ctx) to check the OA buffer tail pointer and check
341 * if there is data available for userspace to read.
Robert Braggd7965152016-11-07 19:49:52 +0000342 *
Robert Bragg0dd860c2017-05-11 16:43:28 +0100343 * This function is central to providing a workaround for the OA unit tail
344 * pointer having a race with respect to what data is visible to the CPU.
345 * It is responsible for reading tail pointers from the hardware and giving
346 * the pointers time to 'age' before they are made available for reading.
347 * (See description of OA_TAIL_MARGIN_NSEC above for further details.)
348 *
349 * Besides returning true when there is data available to read() this function
350 * also has the side effect of updating the oa_buffer.tails[], .aging_timestamp
351 * and .aged_tail_idx state used for reading.
352 *
353 * Note: It's safe to read OA config state here unlocked, assuming that this is
354 * only called while the stream is enabled, while the global OA configuration
355 * can't be modified.
356 *
357 * Returns: %true if the OA buffer contains data, else %false
Robert Braggd7965152016-11-07 19:49:52 +0000358 */
Robert Bragg0dd860c2017-05-11 16:43:28 +0100359static bool gen7_oa_buffer_check_unlocked(struct drm_i915_private *dev_priv)
Robert Braggd7965152016-11-07 19:49:52 +0000360{
361 int report_size = dev_priv->perf.oa.oa_buffer.format_size;
Robert Bragg0dd860c2017-05-11 16:43:28 +0100362 unsigned long flags;
363 unsigned int aged_idx;
364 u32 oastatus1;
365 u32 head, hw_tail, aged_tail, aging_tail;
366 u64 now;
Robert Braggd7965152016-11-07 19:49:52 +0000367
Robert Bragg0dd860c2017-05-11 16:43:28 +0100368 /* We have to consider the (unlikely) possibility that read() errors
369 * could result in an OA buffer reset which might reset the head,
370 * tails[] and aged_tail state.
371 */
372 spin_lock_irqsave(&dev_priv->perf.oa.oa_buffer.ptr_lock, flags);
373
374 /* NB: The head we observe here might effectively be a little out of
375 * date (between head and tails[aged_idx].offset if there is currently
376 * a read() in progress.
377 */
378 head = dev_priv->perf.oa.oa_buffer.head;
379
380 aged_idx = dev_priv->perf.oa.oa_buffer.aged_tail_idx;
381 aged_tail = dev_priv->perf.oa.oa_buffer.tails[aged_idx].offset;
382 aging_tail = dev_priv->perf.oa.oa_buffer.tails[!aged_idx].offset;
383
384 oastatus1 = I915_READ(GEN7_OASTATUS1);
385 hw_tail = oastatus1 & GEN7_OASTATUS1_TAIL_MASK;
386
387 /* The tail pointer increases in 64 byte increments,
388 * not in report_size steps...
389 */
390 hw_tail &= ~(report_size - 1);
391
392 now = ktime_get_mono_fast_ns();
393
394 /* Update the aging tail
395 *
396 * We throttle aging tail updates until we have a new tail that
397 * represents >= one report more data than is already available for
398 * reading. This ensures there will be enough data for a successful
399 * read once this new pointer has aged and ensures we will give the new
400 * pointer time to age.
401 */
402 if (aging_tail == INVALID_TAIL_PTR &&
403 (aged_tail == INVALID_TAIL_PTR ||
404 OA_TAKEN(hw_tail, aged_tail) >= report_size)) {
405 struct i915_vma *vma = dev_priv->perf.oa.oa_buffer.vma;
406 u32 gtt_offset = i915_ggtt_offset(vma);
407
408 /* Be paranoid and do a bounds check on the pointer read back
409 * from hardware, just in case some spurious hardware condition
410 * could put the tail out of bounds...
411 */
412 if (hw_tail >= gtt_offset &&
413 hw_tail < (gtt_offset + OA_BUFFER_SIZE)) {
414 dev_priv->perf.oa.oa_buffer.tails[!aged_idx].offset =
415 aging_tail = hw_tail;
416 dev_priv->perf.oa.oa_buffer.aging_timestamp = now;
417 } else {
418 DRM_ERROR("Ignoring spurious out of range OA buffer tail pointer = %u\n",
419 hw_tail);
420 }
421 }
422
423 /* Update the aged tail
424 *
425 * Flip the tail pointer available for read()s once the aging tail is
426 * old enough to trust that the corresponding data will be visible to
427 * the CPU...
428 */
429 if (aging_tail != INVALID_TAIL_PTR &&
430 ((now - dev_priv->perf.oa.oa_buffer.aging_timestamp) >
431 OA_TAIL_MARGIN_NSEC)) {
432 aged_idx ^= 1;
433 dev_priv->perf.oa.oa_buffer.aged_tail_idx = aged_idx;
434
435 aged_tail = aging_tail;
436
437 /* Mark that we need a new pointer to start aging... */
438 dev_priv->perf.oa.oa_buffer.tails[!aged_idx].offset = INVALID_TAIL_PTR;
439 }
440
441 spin_unlock_irqrestore(&dev_priv->perf.oa.oa_buffer.ptr_lock, flags);
442
443 return aged_tail == INVALID_TAIL_PTR ?
444 false : OA_TAKEN(aged_tail, head) >= report_size;
Robert Braggd7965152016-11-07 19:49:52 +0000445}
446
447/**
Robert Bragg16d98b32016-12-07 21:40:33 +0000448 * append_oa_status - Appends a status record to a userspace read() buffer.
449 * @stream: An i915-perf stream opened for OA metrics
450 * @buf: destination buffer given by userspace
451 * @count: the number of bytes userspace wants to read
452 * @offset: (inout): the current position for writing into @buf
453 * @type: The kind of status to report to userspace
454 *
455 * Writes a status record (such as `DRM_I915_PERF_RECORD_OA_REPORT_LOST`)
456 * into the userspace read() buffer.
457 *
458 * The @buf @offset will only be updated on success.
459 *
460 * Returns: 0 on success, negative error code on failure.
Robert Braggd7965152016-11-07 19:49:52 +0000461 */
462static int append_oa_status(struct i915_perf_stream *stream,
463 char __user *buf,
464 size_t count,
465 size_t *offset,
466 enum drm_i915_perf_record_type type)
467{
468 struct drm_i915_perf_record_header header = { type, 0, sizeof(header) };
469
470 if ((count - *offset) < header.size)
471 return -ENOSPC;
472
473 if (copy_to_user(buf + *offset, &header, sizeof(header)))
474 return -EFAULT;
475
476 (*offset) += header.size;
477
478 return 0;
479}
480
481/**
Robert Bragg16d98b32016-12-07 21:40:33 +0000482 * append_oa_sample - Copies single OA report into userspace read() buffer.
483 * @stream: An i915-perf stream opened for OA metrics
484 * @buf: destination buffer given by userspace
485 * @count: the number of bytes userspace wants to read
486 * @offset: (inout): the current position for writing into @buf
487 * @report: A single OA report to (optionally) include as part of the sample
488 *
489 * The contents of a sample are configured through `DRM_I915_PERF_PROP_SAMPLE_*`
490 * properties when opening a stream, tracked as `stream->sample_flags`. This
491 * function copies the requested components of a single sample to the given
492 * read() @buf.
493 *
494 * The @buf @offset will only be updated on success.
495 *
496 * Returns: 0 on success, negative error code on failure.
Robert Braggd7965152016-11-07 19:49:52 +0000497 */
498static int append_oa_sample(struct i915_perf_stream *stream,
499 char __user *buf,
500 size_t count,
501 size_t *offset,
502 const u8 *report)
503{
504 struct drm_i915_private *dev_priv = stream->dev_priv;
505 int report_size = dev_priv->perf.oa.oa_buffer.format_size;
506 struct drm_i915_perf_record_header header;
507 u32 sample_flags = stream->sample_flags;
508
509 header.type = DRM_I915_PERF_RECORD_SAMPLE;
510 header.pad = 0;
511 header.size = stream->sample_size;
512
513 if ((count - *offset) < header.size)
514 return -ENOSPC;
515
516 buf += *offset;
517 if (copy_to_user(buf, &header, sizeof(header)))
518 return -EFAULT;
519 buf += sizeof(header);
520
521 if (sample_flags & SAMPLE_OA_REPORT) {
522 if (copy_to_user(buf, report, report_size))
523 return -EFAULT;
524 }
525
526 (*offset) += header.size;
527
528 return 0;
529}
530
531/**
532 * Copies all buffered OA reports into userspace read() buffer.
533 * @stream: An i915-perf stream opened for OA metrics
534 * @buf: destination buffer given by userspace
535 * @count: the number of bytes userspace wants to read
536 * @offset: (inout): the current position for writing into @buf
Robert Braggd7965152016-11-07 19:49:52 +0000537 *
Robert Bragg16d98b32016-12-07 21:40:33 +0000538 * Notably any error condition resulting in a short read (-%ENOSPC or
539 * -%EFAULT) will be returned even though one or more records may
Robert Braggd7965152016-11-07 19:49:52 +0000540 * have been successfully copied. In this case it's up to the caller
541 * to decide if the error should be squashed before returning to
542 * userspace.
543 *
544 * Note: reports are consumed from the head, and appended to the
Robert Bragge81b3a52017-05-11 16:43:24 +0100545 * tail, so the tail chases the head?... If you think that's mad
Robert Braggd7965152016-11-07 19:49:52 +0000546 * and back-to-front you're not alone, but this follows the
547 * Gen PRM naming convention.
Robert Bragg16d98b32016-12-07 21:40:33 +0000548 *
549 * Returns: 0 on success, negative error code on failure.
Robert Braggd7965152016-11-07 19:49:52 +0000550 */
551static int gen7_append_oa_reports(struct i915_perf_stream *stream,
552 char __user *buf,
553 size_t count,
Robert Bragg3bb335c2017-05-11 16:43:27 +0100554 size_t *offset)
Robert Braggd7965152016-11-07 19:49:52 +0000555{
556 struct drm_i915_private *dev_priv = stream->dev_priv;
557 int report_size = dev_priv->perf.oa.oa_buffer.format_size;
558 u8 *oa_buf_base = dev_priv->perf.oa.oa_buffer.vaddr;
Robert Braggd7965152016-11-07 19:49:52 +0000559 u32 gtt_offset = i915_ggtt_offset(dev_priv->perf.oa.oa_buffer.vma);
560 u32 mask = (OA_BUFFER_SIZE - 1);
Robert Bragg3bb335c2017-05-11 16:43:27 +0100561 size_t start_offset = *offset;
Robert Bragg0dd860c2017-05-11 16:43:28 +0100562 unsigned long flags;
563 unsigned int aged_tail_idx;
564 u32 head, tail;
Robert Braggd7965152016-11-07 19:49:52 +0000565 u32 taken;
566 int ret = 0;
567
568 if (WARN_ON(!stream->enabled))
569 return -EIO;
570
Robert Bragg0dd860c2017-05-11 16:43:28 +0100571 spin_lock_irqsave(&dev_priv->perf.oa.oa_buffer.ptr_lock, flags);
Robert Braggf2790202017-05-11 16:43:26 +0100572
Robert Bragg0dd860c2017-05-11 16:43:28 +0100573 head = dev_priv->perf.oa.oa_buffer.head;
574 aged_tail_idx = dev_priv->perf.oa.oa_buffer.aged_tail_idx;
575 tail = dev_priv->perf.oa.oa_buffer.tails[aged_tail_idx].offset;
576
577 spin_unlock_irqrestore(&dev_priv->perf.oa.oa_buffer.ptr_lock, flags);
578
579 /* An invalid tail pointer here means we're still waiting for the poll
580 * hrtimer callback to give us a pointer
Robert Braggf2790202017-05-11 16:43:26 +0100581 */
Robert Bragg0dd860c2017-05-11 16:43:28 +0100582 if (tail == INVALID_TAIL_PTR)
Robert Braggd7965152016-11-07 19:49:52 +0000583 return -EAGAIN;
584
Robert Bragg0dd860c2017-05-11 16:43:28 +0100585 /* NB: oa_buffer.head/tail include the gtt_offset which we don't want
586 * while indexing relative to oa_buf_base.
587 */
588 head -= gtt_offset;
589 tail -= gtt_offset;
590
591 /* An out of bounds or misaligned head or tail pointer implies a driver
592 * bug since we validate + align the tail pointers we read from the
593 * hardware and we are in full control of the head pointer which should
594 * only be incremented by multiples of the report size (notably also
595 * all a power of two).
596 */
597 if (WARN_ONCE(head > OA_BUFFER_SIZE || head % report_size ||
598 tail > OA_BUFFER_SIZE || tail % report_size,
599 "Inconsistent OA buffer pointers: head = %u, tail = %u\n",
600 head, tail))
601 return -EIO;
602
Robert Braggd7965152016-11-07 19:49:52 +0000603
604 for (/* none */;
605 (taken = OA_TAKEN(tail, head));
606 head = (head + report_size) & mask) {
607 u8 *report = oa_buf_base + head;
608 u32 *report32 = (void *)report;
609
610 /* All the report sizes factor neatly into the buffer
611 * size so we never expect to see a report split
612 * between the beginning and end of the buffer.
613 *
614 * Given the initial alignment check a misalignment
615 * here would imply a driver bug that would result
616 * in an overrun.
617 */
618 if (WARN_ON((OA_BUFFER_SIZE - head) < report_size)) {
619 DRM_ERROR("Spurious OA head ptr: non-integral report offset\n");
620 break;
621 }
622
623 /* The report-ID field for periodic samples includes
624 * some undocumented flags related to what triggered
625 * the report and is never expected to be zero so we
626 * can check that the report isn't invalid before
627 * copying it to userspace...
628 */
629 if (report32[0] == 0) {
Robert Bragg77085502016-12-01 17:21:52 +0000630 DRM_NOTE("Skipping spurious, invalid OA report\n");
Robert Braggd7965152016-11-07 19:49:52 +0000631 continue;
632 }
633
634 ret = append_oa_sample(stream, buf, count, offset, report);
635 if (ret)
636 break;
637
638 /* The above report-id field sanity check is based on
639 * the assumption that the OA buffer is initially
640 * zeroed and we reset the field after copying so the
641 * check is still meaningful once old reports start
642 * being overwritten.
643 */
644 report32[0] = 0;
645 }
646
Robert Bragg3bb335c2017-05-11 16:43:27 +0100647 if (start_offset != *offset) {
Robert Bragg0dd860c2017-05-11 16:43:28 +0100648 spin_lock_irqsave(&dev_priv->perf.oa.oa_buffer.ptr_lock, flags);
649
Robert Bragg3bb335c2017-05-11 16:43:27 +0100650 /* We removed the gtt_offset for the copy loop above, indexing
651 * relative to oa_buf_base so put back here...
652 */
653 head += gtt_offset;
654
655 I915_WRITE(GEN7_OASTATUS2,
656 ((head & GEN7_OASTATUS2_HEAD_MASK) |
657 OA_MEM_SELECT_GGTT));
658 dev_priv->perf.oa.oa_buffer.head = head;
Robert Bragg0dd860c2017-05-11 16:43:28 +0100659
660 spin_unlock_irqrestore(&dev_priv->perf.oa.oa_buffer.ptr_lock, flags);
Robert Bragg3bb335c2017-05-11 16:43:27 +0100661 }
Robert Braggd7965152016-11-07 19:49:52 +0000662
663 return ret;
664}
665
Robert Bragg16d98b32016-12-07 21:40:33 +0000666/**
667 * gen7_oa_read - copy status records then buffered OA reports
668 * @stream: An i915-perf stream opened for OA metrics
669 * @buf: destination buffer given by userspace
670 * @count: the number of bytes userspace wants to read
671 * @offset: (inout): the current position for writing into @buf
672 *
673 * Checks Gen 7 specific OA unit status registers and if necessary appends
674 * corresponding status records for userspace (such as for a buffer full
675 * condition) and then initiate appending any buffered OA reports.
676 *
677 * Updates @offset according to the number of bytes successfully copied into
678 * the userspace buffer.
679 *
680 * Returns: zero on success or a negative error code
681 */
Robert Braggd7965152016-11-07 19:49:52 +0000682static int gen7_oa_read(struct i915_perf_stream *stream,
683 char __user *buf,
684 size_t count,
685 size_t *offset)
686{
687 struct drm_i915_private *dev_priv = stream->dev_priv;
Robert Braggd7965152016-11-07 19:49:52 +0000688 u32 oastatus1;
Robert Braggd7965152016-11-07 19:49:52 +0000689 int ret;
690
691 if (WARN_ON(!dev_priv->perf.oa.oa_buffer.vaddr))
692 return -EIO;
693
Robert Braggd7965152016-11-07 19:49:52 +0000694 oastatus1 = I915_READ(GEN7_OASTATUS1);
695
Robert Braggd7965152016-11-07 19:49:52 +0000696 /* XXX: On Haswell we don't have a safe way to clear oastatus1
697 * bits while the OA unit is enabled (while the tail pointer
698 * may be updated asynchronously) so we ignore status bits
699 * that have already been reported to userspace.
700 */
701 oastatus1 &= ~dev_priv->perf.oa.gen7_latched_oastatus1;
702
703 /* We treat OABUFFER_OVERFLOW as a significant error:
704 *
705 * - The status can be interpreted to mean that the buffer is
706 * currently full (with a higher precedence than OA_TAKEN()
707 * which will start to report a near-empty buffer after an
708 * overflow) but it's awkward that we can't clear the status
709 * on Haswell, so without a reset we won't be able to catch
710 * the state again.
711 *
712 * - Since it also implies the HW has started overwriting old
713 * reports it may also affect our sanity checks for invalid
714 * reports when copying to userspace that assume new reports
715 * are being written to cleared memory.
716 *
717 * - In the future we may want to introduce a flight recorder
718 * mode where the driver will automatically maintain a safe
719 * guard band between head/tail, avoiding this overflow
720 * condition, but we avoid the added driver complexity for
721 * now.
722 */
723 if (unlikely(oastatus1 & GEN7_OASTATUS1_OABUFFER_OVERFLOW)) {
724 ret = append_oa_status(stream, buf, count, offset,
725 DRM_I915_PERF_RECORD_OA_BUFFER_LOST);
726 if (ret)
727 return ret;
728
Robert Bragg77085502016-12-01 17:21:52 +0000729 DRM_DEBUG("OA buffer overflow: force restart\n");
Robert Braggd7965152016-11-07 19:49:52 +0000730
731 dev_priv->perf.oa.ops.oa_disable(dev_priv);
732 dev_priv->perf.oa.ops.oa_enable(dev_priv);
733
Robert Braggd7965152016-11-07 19:49:52 +0000734 oastatus1 = I915_READ(GEN7_OASTATUS1);
Robert Braggd7965152016-11-07 19:49:52 +0000735 }
736
737 if (unlikely(oastatus1 & GEN7_OASTATUS1_REPORT_LOST)) {
738 ret = append_oa_status(stream, buf, count, offset,
739 DRM_I915_PERF_RECORD_OA_REPORT_LOST);
740 if (ret)
741 return ret;
742 dev_priv->perf.oa.gen7_latched_oastatus1 |=
743 GEN7_OASTATUS1_REPORT_LOST;
744 }
745
Robert Bragg3bb335c2017-05-11 16:43:27 +0100746 return gen7_append_oa_reports(stream, buf, count, offset);
Robert Braggd7965152016-11-07 19:49:52 +0000747}
748
Robert Bragg16d98b32016-12-07 21:40:33 +0000749/**
750 * i915_oa_wait_unlocked - handles blocking IO until OA data available
751 * @stream: An i915-perf stream opened for OA metrics
752 *
753 * Called when userspace tries to read() from a blocking stream FD opened
754 * for OA metrics. It waits until the hrtimer callback finds a non-empty
755 * OA buffer and wakes us.
756 *
757 * Note: it's acceptable to have this return with some false positives
758 * since any subsequent read handling will return -EAGAIN if there isn't
759 * really data ready for userspace yet.
760 *
761 * Returns: zero on success or a negative error code
762 */
Robert Braggd7965152016-11-07 19:49:52 +0000763static int i915_oa_wait_unlocked(struct i915_perf_stream *stream)
764{
765 struct drm_i915_private *dev_priv = stream->dev_priv;
766
767 /* We would wait indefinitely if periodic sampling is not enabled */
768 if (!dev_priv->perf.oa.periodic)
769 return -EIO;
770
Robert Braggd7965152016-11-07 19:49:52 +0000771 return wait_event_interruptible(dev_priv->perf.oa.poll_wq,
Robert Bragg0dd860c2017-05-11 16:43:28 +0100772 dev_priv->perf.oa.ops.oa_buffer_check(dev_priv));
Robert Braggd7965152016-11-07 19:49:52 +0000773}
774
Robert Bragg16d98b32016-12-07 21:40:33 +0000775/**
776 * i915_oa_poll_wait - call poll_wait() for an OA stream poll()
777 * @stream: An i915-perf stream opened for OA metrics
778 * @file: An i915 perf stream file
779 * @wait: poll() state table
780 *
781 * For handling userspace polling on an i915 perf stream opened for OA metrics,
782 * this starts a poll_wait with the wait queue that our hrtimer callback wakes
783 * when it sees data ready to read in the circular OA buffer.
784 */
Robert Braggd7965152016-11-07 19:49:52 +0000785static void i915_oa_poll_wait(struct i915_perf_stream *stream,
786 struct file *file,
787 poll_table *wait)
788{
789 struct drm_i915_private *dev_priv = stream->dev_priv;
790
791 poll_wait(file, &dev_priv->perf.oa.poll_wq, wait);
792}
793
Robert Bragg16d98b32016-12-07 21:40:33 +0000794/**
795 * i915_oa_read - just calls through to &i915_oa_ops->read
796 * @stream: An i915-perf stream opened for OA metrics
797 * @buf: destination buffer given by userspace
798 * @count: the number of bytes userspace wants to read
799 * @offset: (inout): the current position for writing into @buf
800 *
801 * Updates @offset according to the number of bytes successfully copied into
802 * the userspace buffer.
803 *
804 * Returns: zero on success or a negative error code
805 */
Robert Braggd7965152016-11-07 19:49:52 +0000806static int i915_oa_read(struct i915_perf_stream *stream,
807 char __user *buf,
808 size_t count,
809 size_t *offset)
810{
811 struct drm_i915_private *dev_priv = stream->dev_priv;
812
813 return dev_priv->perf.oa.ops.read(stream, buf, count, offset);
814}
815
Robert Bragg16d98b32016-12-07 21:40:33 +0000816/**
817 * oa_get_render_ctx_id - determine and hold ctx hw id
818 * @stream: An i915-perf stream opened for OA metrics
819 *
820 * Determine the render context hw id, and ensure it remains fixed for the
Robert Braggd7965152016-11-07 19:49:52 +0000821 * lifetime of the stream. This ensures that we don't have to worry about
822 * updating the context ID in OACONTROL on the fly.
Robert Bragg16d98b32016-12-07 21:40:33 +0000823 *
824 * Returns: zero on success or a negative error code
Robert Braggd7965152016-11-07 19:49:52 +0000825 */
826static int oa_get_render_ctx_id(struct i915_perf_stream *stream)
827{
828 struct drm_i915_private *dev_priv = stream->dev_priv;
Chris Wilsone8a9c582016-12-18 15:37:20 +0000829 struct intel_engine_cs *engine = dev_priv->engine[RCS];
Chris Wilson266a2402017-05-04 10:33:08 +0100830 struct intel_ring *ring;
Robert Braggd7965152016-11-07 19:49:52 +0000831 int ret;
832
833 ret = i915_mutex_lock_interruptible(&dev_priv->drm);
834 if (ret)
835 return ret;
836
837 /* As the ID is the gtt offset of the context's vma we pin
838 * the vma to ensure the ID remains fixed.
839 *
840 * NB: implied RCS engine...
841 */
Chris Wilson266a2402017-05-04 10:33:08 +0100842 ring = engine->context_pin(engine, stream->ctx);
843 mutex_unlock(&dev_priv->drm.struct_mutex);
844 if (IS_ERR(ring))
845 return PTR_ERR(ring);
Robert Braggd7965152016-11-07 19:49:52 +0000846
847 /* Explicitly track the ID (instead of calling i915_ggtt_offset()
848 * on the fly) considering the difference with gen8+ and
849 * execlists
850 */
Chris Wilsone8a9c582016-12-18 15:37:20 +0000851 dev_priv->perf.oa.specific_ctx_id =
852 i915_ggtt_offset(stream->ctx->engine[engine->id].state);
Robert Braggd7965152016-11-07 19:49:52 +0000853
Chris Wilson266a2402017-05-04 10:33:08 +0100854 return 0;
Robert Braggd7965152016-11-07 19:49:52 +0000855}
856
Robert Bragg16d98b32016-12-07 21:40:33 +0000857/**
858 * oa_put_render_ctx_id - counterpart to oa_get_render_ctx_id releases hold
859 * @stream: An i915-perf stream opened for OA metrics
860 *
861 * In case anything needed doing to ensure the context HW ID would remain valid
862 * for the lifetime of the stream, then that can be undone here.
863 */
Robert Braggd7965152016-11-07 19:49:52 +0000864static void oa_put_render_ctx_id(struct i915_perf_stream *stream)
865{
866 struct drm_i915_private *dev_priv = stream->dev_priv;
Chris Wilsone8a9c582016-12-18 15:37:20 +0000867 struct intel_engine_cs *engine = dev_priv->engine[RCS];
Robert Braggd7965152016-11-07 19:49:52 +0000868
869 mutex_lock(&dev_priv->drm.struct_mutex);
870
Robert Braggd7965152016-11-07 19:49:52 +0000871 dev_priv->perf.oa.specific_ctx_id = INVALID_CTX_ID;
Chris Wilsone8a9c582016-12-18 15:37:20 +0000872 engine->context_unpin(engine, stream->ctx);
Robert Braggd7965152016-11-07 19:49:52 +0000873
874 mutex_unlock(&dev_priv->drm.struct_mutex);
875}
876
877static void
878free_oa_buffer(struct drm_i915_private *i915)
879{
880 mutex_lock(&i915->drm.struct_mutex);
881
882 i915_gem_object_unpin_map(i915->perf.oa.oa_buffer.vma->obj);
883 i915_vma_unpin(i915->perf.oa.oa_buffer.vma);
884 i915_gem_object_put(i915->perf.oa.oa_buffer.vma->obj);
885
886 i915->perf.oa.oa_buffer.vma = NULL;
887 i915->perf.oa.oa_buffer.vaddr = NULL;
888
889 mutex_unlock(&i915->drm.struct_mutex);
890}
891
892static void i915_oa_stream_destroy(struct i915_perf_stream *stream)
893{
894 struct drm_i915_private *dev_priv = stream->dev_priv;
895
896 BUG_ON(stream != dev_priv->perf.oa.exclusive_stream);
897
898 dev_priv->perf.oa.ops.disable_metric_set(dev_priv);
899
900 free_oa_buffer(dev_priv);
901
902 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
903 intel_runtime_pm_put(dev_priv);
904
905 if (stream->ctx)
906 oa_put_render_ctx_id(stream);
907
908 dev_priv->perf.oa.exclusive_stream = NULL;
909}
910
911static void gen7_init_oa_buffer(struct drm_i915_private *dev_priv)
912{
913 u32 gtt_offset = i915_ggtt_offset(dev_priv->perf.oa.oa_buffer.vma);
Robert Bragg0dd860c2017-05-11 16:43:28 +0100914 unsigned long flags;
915
916 spin_lock_irqsave(&dev_priv->perf.oa.oa_buffer.ptr_lock, flags);
Robert Braggd7965152016-11-07 19:49:52 +0000917
918 /* Pre-DevBDW: OABUFFER must be set with counters off,
919 * before OASTATUS1, but after OASTATUS2
920 */
921 I915_WRITE(GEN7_OASTATUS2, gtt_offset | OA_MEM_SELECT_GGTT); /* head */
Robert Braggf2790202017-05-11 16:43:26 +0100922 dev_priv->perf.oa.oa_buffer.head = gtt_offset;
923
Robert Braggd7965152016-11-07 19:49:52 +0000924 I915_WRITE(GEN7_OABUFFER, gtt_offset);
Robert Braggf2790202017-05-11 16:43:26 +0100925
Robert Braggd7965152016-11-07 19:49:52 +0000926 I915_WRITE(GEN7_OASTATUS1, gtt_offset | OABUFFER_SIZE_16M); /* tail */
927
Robert Bragg0dd860c2017-05-11 16:43:28 +0100928 /* Mark that we need updated tail pointers to read from... */
929 dev_priv->perf.oa.oa_buffer.tails[0].offset = INVALID_TAIL_PTR;
930 dev_priv->perf.oa.oa_buffer.tails[1].offset = INVALID_TAIL_PTR;
931
932 spin_unlock_irqrestore(&dev_priv->perf.oa.oa_buffer.ptr_lock, flags);
933
Robert Braggd7965152016-11-07 19:49:52 +0000934 /* On Haswell we have to track which OASTATUS1 flags we've
935 * already seen since they can't be cleared while periodic
936 * sampling is enabled.
937 */
938 dev_priv->perf.oa.gen7_latched_oastatus1 = 0;
939
940 /* NB: although the OA buffer will initially be allocated
941 * zeroed via shmfs (and so this memset is redundant when
942 * first allocating), we may re-init the OA buffer, either
943 * when re-enabling a stream or in error/reset paths.
944 *
945 * The reason we clear the buffer for each re-init is for the
946 * sanity check in gen7_append_oa_reports() that looks at the
947 * report-id field to make sure it's non-zero which relies on
948 * the assumption that new reports are being written to zeroed
949 * memory...
950 */
951 memset(dev_priv->perf.oa.oa_buffer.vaddr, 0, OA_BUFFER_SIZE);
952
953 /* Maybe make ->pollin per-stream state if we support multiple
954 * concurrent streams in the future.
955 */
956 dev_priv->perf.oa.pollin = false;
957}
958
959static int alloc_oa_buffer(struct drm_i915_private *dev_priv)
960{
961 struct drm_i915_gem_object *bo;
962 struct i915_vma *vma;
963 int ret;
964
965 if (WARN_ON(dev_priv->perf.oa.oa_buffer.vma))
966 return -ENODEV;
967
968 ret = i915_mutex_lock_interruptible(&dev_priv->drm);
969 if (ret)
970 return ret;
971
972 BUILD_BUG_ON_NOT_POWER_OF_2(OA_BUFFER_SIZE);
973 BUILD_BUG_ON(OA_BUFFER_SIZE < SZ_128K || OA_BUFFER_SIZE > SZ_16M);
974
Tvrtko Ursulin12d79d72016-12-01 14:16:37 +0000975 bo = i915_gem_object_create(dev_priv, OA_BUFFER_SIZE);
Robert Braggd7965152016-11-07 19:49:52 +0000976 if (IS_ERR(bo)) {
977 DRM_ERROR("Failed to allocate OA buffer\n");
978 ret = PTR_ERR(bo);
979 goto unlock;
980 }
981
982 ret = i915_gem_object_set_cache_level(bo, I915_CACHE_LLC);
983 if (ret)
984 goto err_unref;
985
986 /* PreHSW required 512K alignment, HSW requires 16M */
987 vma = i915_gem_object_ggtt_pin(bo, NULL, 0, SZ_16M, 0);
988 if (IS_ERR(vma)) {
989 ret = PTR_ERR(vma);
990 goto err_unref;
991 }
992 dev_priv->perf.oa.oa_buffer.vma = vma;
993
994 dev_priv->perf.oa.oa_buffer.vaddr =
995 i915_gem_object_pin_map(bo, I915_MAP_WB);
996 if (IS_ERR(dev_priv->perf.oa.oa_buffer.vaddr)) {
997 ret = PTR_ERR(dev_priv->perf.oa.oa_buffer.vaddr);
998 goto err_unpin;
999 }
1000
1001 dev_priv->perf.oa.ops.init_oa_buffer(dev_priv);
1002
1003 DRM_DEBUG_DRIVER("OA Buffer initialized, gtt offset = 0x%x, vaddr = %p\n",
1004 i915_ggtt_offset(dev_priv->perf.oa.oa_buffer.vma),
1005 dev_priv->perf.oa.oa_buffer.vaddr);
1006
1007 goto unlock;
1008
1009err_unpin:
1010 __i915_vma_unpin(vma);
1011
1012err_unref:
1013 i915_gem_object_put(bo);
1014
1015 dev_priv->perf.oa.oa_buffer.vaddr = NULL;
1016 dev_priv->perf.oa.oa_buffer.vma = NULL;
1017
1018unlock:
1019 mutex_unlock(&dev_priv->drm.struct_mutex);
1020 return ret;
1021}
1022
1023static void config_oa_regs(struct drm_i915_private *dev_priv,
1024 const struct i915_oa_reg *regs,
1025 int n_regs)
1026{
1027 int i;
1028
1029 for (i = 0; i < n_regs; i++) {
1030 const struct i915_oa_reg *reg = regs + i;
1031
1032 I915_WRITE(reg->addr, reg->value);
1033 }
1034}
1035
1036static int hsw_enable_metric_set(struct drm_i915_private *dev_priv)
1037{
1038 int ret = i915_oa_select_metric_set_hsw(dev_priv);
1039
1040 if (ret)
1041 return ret;
1042
1043 I915_WRITE(GDT_CHICKEN_BITS, (I915_READ(GDT_CHICKEN_BITS) |
1044 GT_NOA_ENABLE));
1045
1046 /* PRM:
1047 *
1048 * OA unit is using “crclk” for its functionality. When trunk
1049 * level clock gating takes place, OA clock would be gated,
1050 * unable to count the events from non-render clock domain.
1051 * Render clock gating must be disabled when OA is enabled to
1052 * count the events from non-render domain. Unit level clock
1053 * gating for RCS should also be disabled.
1054 */
1055 I915_WRITE(GEN7_MISCCPCTL, (I915_READ(GEN7_MISCCPCTL) &
1056 ~GEN7_DOP_CLOCK_GATE_ENABLE));
1057 I915_WRITE(GEN6_UCGCTL1, (I915_READ(GEN6_UCGCTL1) |
1058 GEN6_CSUNIT_CLOCK_GATE_DISABLE));
1059
1060 config_oa_regs(dev_priv, dev_priv->perf.oa.mux_regs,
1061 dev_priv->perf.oa.mux_regs_len);
1062
1063 /* It apparently takes a fairly long time for a new MUX
1064 * configuration to be be applied after these register writes.
1065 * This delay duration was derived empirically based on the
1066 * render_basic config but hopefully it covers the maximum
1067 * configuration latency.
1068 *
1069 * As a fallback, the checks in _append_oa_reports() to skip
1070 * invalid OA reports do also seem to work to discard reports
1071 * generated before this config has completed - albeit not
1072 * silently.
1073 *
1074 * Unfortunately this is essentially a magic number, since we
1075 * don't currently know of a reliable mechanism for predicting
1076 * how long the MUX config will take to apply and besides
1077 * seeing invalid reports we don't know of a reliable way to
1078 * explicitly check that the MUX config has landed.
1079 *
1080 * It's even possible we've miss characterized the underlying
1081 * problem - it just seems like the simplest explanation why
1082 * a delay at this location would mitigate any invalid reports.
1083 */
1084 usleep_range(15000, 20000);
1085
1086 config_oa_regs(dev_priv, dev_priv->perf.oa.b_counter_regs,
1087 dev_priv->perf.oa.b_counter_regs_len);
1088
1089 return 0;
1090}
1091
1092static void hsw_disable_metric_set(struct drm_i915_private *dev_priv)
1093{
1094 I915_WRITE(GEN6_UCGCTL1, (I915_READ(GEN6_UCGCTL1) &
1095 ~GEN6_CSUNIT_CLOCK_GATE_DISABLE));
1096 I915_WRITE(GEN7_MISCCPCTL, (I915_READ(GEN7_MISCCPCTL) |
1097 GEN7_DOP_CLOCK_GATE_ENABLE));
1098
1099 I915_WRITE(GDT_CHICKEN_BITS, (I915_READ(GDT_CHICKEN_BITS) &
1100 ~GT_NOA_ENABLE));
1101}
1102
1103static void gen7_update_oacontrol_locked(struct drm_i915_private *dev_priv)
1104{
Chris Wilson67520412017-03-02 13:28:01 +00001105 lockdep_assert_held(&dev_priv->perf.hook_lock);
Robert Braggd7965152016-11-07 19:49:52 +00001106
1107 if (dev_priv->perf.oa.exclusive_stream->enabled) {
1108 struct i915_gem_context *ctx =
1109 dev_priv->perf.oa.exclusive_stream->ctx;
1110 u32 ctx_id = dev_priv->perf.oa.specific_ctx_id;
1111
1112 bool periodic = dev_priv->perf.oa.periodic;
1113 u32 period_exponent = dev_priv->perf.oa.period_exponent;
1114 u32 report_format = dev_priv->perf.oa.oa_buffer.format;
1115
1116 I915_WRITE(GEN7_OACONTROL,
1117 (ctx_id & GEN7_OACONTROL_CTX_MASK) |
1118 (period_exponent <<
1119 GEN7_OACONTROL_TIMER_PERIOD_SHIFT) |
1120 (periodic ? GEN7_OACONTROL_TIMER_ENABLE : 0) |
1121 (report_format << GEN7_OACONTROL_FORMAT_SHIFT) |
1122 (ctx ? GEN7_OACONTROL_PER_CTX_ENABLE : 0) |
1123 GEN7_OACONTROL_ENABLE);
1124 } else
1125 I915_WRITE(GEN7_OACONTROL, 0);
1126}
1127
1128static void gen7_oa_enable(struct drm_i915_private *dev_priv)
1129{
1130 unsigned long flags;
1131
1132 /* Reset buf pointers so we don't forward reports from before now.
1133 *
1134 * Think carefully if considering trying to avoid this, since it
1135 * also ensures status flags and the buffer itself are cleared
1136 * in error paths, and we have checks for invalid reports based
1137 * on the assumption that certain fields are written to zeroed
1138 * memory which this helps maintains.
1139 */
1140 gen7_init_oa_buffer(dev_priv);
1141
1142 spin_lock_irqsave(&dev_priv->perf.hook_lock, flags);
1143 gen7_update_oacontrol_locked(dev_priv);
1144 spin_unlock_irqrestore(&dev_priv->perf.hook_lock, flags);
1145}
1146
Robert Bragg16d98b32016-12-07 21:40:33 +00001147/**
1148 * i915_oa_stream_enable - handle `I915_PERF_IOCTL_ENABLE` for OA stream
1149 * @stream: An i915 perf stream opened for OA metrics
1150 *
1151 * [Re]enables hardware periodic sampling according to the period configured
1152 * when opening the stream. This also starts a hrtimer that will periodically
1153 * check for data in the circular OA buffer for notifying userspace (e.g.
1154 * during a read() or poll()).
1155 */
Robert Braggd7965152016-11-07 19:49:52 +00001156static void i915_oa_stream_enable(struct i915_perf_stream *stream)
1157{
1158 struct drm_i915_private *dev_priv = stream->dev_priv;
1159
1160 dev_priv->perf.oa.ops.oa_enable(dev_priv);
1161
1162 if (dev_priv->perf.oa.periodic)
1163 hrtimer_start(&dev_priv->perf.oa.poll_check_timer,
1164 ns_to_ktime(POLL_PERIOD),
1165 HRTIMER_MODE_REL_PINNED);
1166}
1167
1168static void gen7_oa_disable(struct drm_i915_private *dev_priv)
1169{
1170 I915_WRITE(GEN7_OACONTROL, 0);
1171}
1172
Robert Bragg16d98b32016-12-07 21:40:33 +00001173/**
1174 * i915_oa_stream_disable - handle `I915_PERF_IOCTL_DISABLE` for OA stream
1175 * @stream: An i915 perf stream opened for OA metrics
1176 *
1177 * Stops the OA unit from periodically writing counter reports into the
1178 * circular OA buffer. This also stops the hrtimer that periodically checks for
1179 * data in the circular OA buffer, for notifying userspace.
1180 */
Robert Braggd7965152016-11-07 19:49:52 +00001181static void i915_oa_stream_disable(struct i915_perf_stream *stream)
1182{
1183 struct drm_i915_private *dev_priv = stream->dev_priv;
1184
1185 dev_priv->perf.oa.ops.oa_disable(dev_priv);
1186
1187 if (dev_priv->perf.oa.periodic)
1188 hrtimer_cancel(&dev_priv->perf.oa.poll_check_timer);
1189}
1190
Robert Braggd7965152016-11-07 19:49:52 +00001191static const struct i915_perf_stream_ops i915_oa_stream_ops = {
1192 .destroy = i915_oa_stream_destroy,
1193 .enable = i915_oa_stream_enable,
1194 .disable = i915_oa_stream_disable,
1195 .wait_unlocked = i915_oa_wait_unlocked,
1196 .poll_wait = i915_oa_poll_wait,
1197 .read = i915_oa_read,
1198};
1199
Robert Bragg16d98b32016-12-07 21:40:33 +00001200/**
1201 * i915_oa_stream_init - validate combined props for OA stream and init
1202 * @stream: An i915 perf stream
1203 * @param: The open parameters passed to `DRM_I915_PERF_OPEN`
1204 * @props: The property state that configures stream (individually validated)
1205 *
1206 * While read_properties_unlocked() validates properties in isolation it
1207 * doesn't ensure that the combination necessarily makes sense.
1208 *
1209 * At this point it has been determined that userspace wants a stream of
1210 * OA metrics, but still we need to further validate the combined
1211 * properties are OK.
1212 *
1213 * If the configuration makes sense then we can allocate memory for
1214 * a circular OA buffer and apply the requested metric set configuration.
1215 *
1216 * Returns: zero on success or a negative error code.
1217 */
Robert Braggd7965152016-11-07 19:49:52 +00001218static int i915_oa_stream_init(struct i915_perf_stream *stream,
1219 struct drm_i915_perf_open_param *param,
1220 struct perf_open_properties *props)
1221{
1222 struct drm_i915_private *dev_priv = stream->dev_priv;
1223 int format_size;
1224 int ret;
1225
Robert Bragg442b8c02016-11-07 19:49:53 +00001226 /* If the sysfs metrics/ directory wasn't registered for some
1227 * reason then don't let userspace try their luck with config
1228 * IDs
1229 */
1230 if (!dev_priv->perf.metrics_kobj) {
Robert Bragg77085502016-12-01 17:21:52 +00001231 DRM_DEBUG("OA metrics weren't advertised via sysfs\n");
Robert Bragg442b8c02016-11-07 19:49:53 +00001232 return -EINVAL;
1233 }
1234
Robert Braggd7965152016-11-07 19:49:52 +00001235 if (!(props->sample_flags & SAMPLE_OA_REPORT)) {
Robert Bragg77085502016-12-01 17:21:52 +00001236 DRM_DEBUG("Only OA report sampling supported\n");
Robert Braggd7965152016-11-07 19:49:52 +00001237 return -EINVAL;
1238 }
1239
1240 if (!dev_priv->perf.oa.ops.init_oa_buffer) {
Robert Bragg77085502016-12-01 17:21:52 +00001241 DRM_DEBUG("OA unit not supported\n");
Robert Braggd7965152016-11-07 19:49:52 +00001242 return -ENODEV;
1243 }
1244
1245 /* To avoid the complexity of having to accurately filter
1246 * counter reports and marshal to the appropriate client
1247 * we currently only allow exclusive access
1248 */
1249 if (dev_priv->perf.oa.exclusive_stream) {
Robert Bragg77085502016-12-01 17:21:52 +00001250 DRM_DEBUG("OA unit already in use\n");
Robert Braggd7965152016-11-07 19:49:52 +00001251 return -EBUSY;
1252 }
1253
1254 if (!props->metrics_set) {
Robert Bragg77085502016-12-01 17:21:52 +00001255 DRM_DEBUG("OA metric set not specified\n");
Robert Braggd7965152016-11-07 19:49:52 +00001256 return -EINVAL;
1257 }
1258
1259 if (!props->oa_format) {
Robert Bragg77085502016-12-01 17:21:52 +00001260 DRM_DEBUG("OA report format not specified\n");
Robert Braggd7965152016-11-07 19:49:52 +00001261 return -EINVAL;
1262 }
1263
1264 stream->sample_size = sizeof(struct drm_i915_perf_record_header);
1265
1266 format_size = dev_priv->perf.oa.oa_formats[props->oa_format].size;
1267
1268 stream->sample_flags |= SAMPLE_OA_REPORT;
1269 stream->sample_size += format_size;
1270
1271 dev_priv->perf.oa.oa_buffer.format_size = format_size;
1272 if (WARN_ON(dev_priv->perf.oa.oa_buffer.format_size == 0))
1273 return -EINVAL;
1274
1275 dev_priv->perf.oa.oa_buffer.format =
1276 dev_priv->perf.oa.oa_formats[props->oa_format].format;
1277
1278 dev_priv->perf.oa.metrics_set = props->metrics_set;
1279
1280 dev_priv->perf.oa.periodic = props->oa_periodic;
Robert Bragg0dd860c2017-05-11 16:43:28 +01001281 if (dev_priv->perf.oa.periodic)
Robert Braggd7965152016-11-07 19:49:52 +00001282 dev_priv->perf.oa.period_exponent = props->oa_period_exponent;
1283
Robert Braggd7965152016-11-07 19:49:52 +00001284 if (stream->ctx) {
1285 ret = oa_get_render_ctx_id(stream);
1286 if (ret)
1287 return ret;
1288 }
1289
1290 ret = alloc_oa_buffer(dev_priv);
1291 if (ret)
1292 goto err_oa_buf_alloc;
1293
1294 /* PRM - observability performance counters:
1295 *
1296 * OACONTROL, performance counter enable, note:
1297 *
1298 * "When this bit is set, in order to have coherent counts,
1299 * RC6 power state and trunk clock gating must be disabled.
1300 * This can be achieved by programming MMIO registers as
1301 * 0xA094=0 and 0xA090[31]=1"
1302 *
1303 * In our case we are expecting that taking pm + FORCEWAKE
1304 * references will effectively disable RC6.
1305 */
1306 intel_runtime_pm_get(dev_priv);
1307 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
1308
1309 ret = dev_priv->perf.oa.ops.enable_metric_set(dev_priv);
1310 if (ret)
1311 goto err_enable;
1312
1313 stream->ops = &i915_oa_stream_ops;
1314
1315 dev_priv->perf.oa.exclusive_stream = stream;
1316
1317 return 0;
1318
1319err_enable:
1320 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
1321 intel_runtime_pm_put(dev_priv);
1322 free_oa_buffer(dev_priv);
1323
1324err_oa_buf_alloc:
1325 if (stream->ctx)
1326 oa_put_render_ctx_id(stream);
1327
1328 return ret;
1329}
1330
Robert Bragg16d98b32016-12-07 21:40:33 +00001331/**
1332 * i915_perf_read_locked - &i915_perf_stream_ops->read with error normalisation
1333 * @stream: An i915 perf stream
1334 * @file: An i915 perf stream file
1335 * @buf: destination buffer given by userspace
1336 * @count: the number of bytes userspace wants to read
1337 * @ppos: (inout) file seek position (unused)
1338 *
1339 * Besides wrapping &i915_perf_stream_ops->read this provides a common place to
1340 * ensure that if we've successfully copied any data then reporting that takes
1341 * precedence over any internal error status, so the data isn't lost.
1342 *
1343 * For example ret will be -ENOSPC whenever there is more buffered data than
1344 * can be copied to userspace, but that's only interesting if we weren't able
1345 * to copy some data because it implies the userspace buffer is too small to
1346 * receive a single record (and we never split records).
1347 *
1348 * Another case with ret == -EFAULT is more of a grey area since it would seem
1349 * like bad form for userspace to ask us to overrun its buffer, but the user
1350 * knows best:
1351 *
1352 * http://yarchive.net/comp/linux/partial_reads_writes.html
1353 *
1354 * Returns: The number of bytes copied or a negative error code on failure.
1355 */
Robert Braggeec688e2016-11-07 19:49:47 +00001356static ssize_t i915_perf_read_locked(struct i915_perf_stream *stream,
1357 struct file *file,
1358 char __user *buf,
1359 size_t count,
1360 loff_t *ppos)
1361{
1362 /* Note we keep the offset (aka bytes read) separate from any
1363 * error status so that the final check for whether we return
1364 * the bytes read with a higher precedence than any error (see
1365 * comment below) doesn't need to be handled/duplicated in
1366 * stream->ops->read() implementations.
1367 */
1368 size_t offset = 0;
1369 int ret = stream->ops->read(stream, buf, count, &offset);
1370
Robert Braggeec688e2016-11-07 19:49:47 +00001371 return offset ?: (ret ?: -EAGAIN);
1372}
1373
Robert Bragg16d98b32016-12-07 21:40:33 +00001374/**
1375 * i915_perf_read - handles read() FOP for i915 perf stream FDs
1376 * @file: An i915 perf stream file
1377 * @buf: destination buffer given by userspace
1378 * @count: the number of bytes userspace wants to read
1379 * @ppos: (inout) file seek position (unused)
1380 *
1381 * The entry point for handling a read() on a stream file descriptor from
1382 * userspace. Most of the work is left to the i915_perf_read_locked() and
1383 * &i915_perf_stream_ops->read but to save having stream implementations (of
1384 * which we might have multiple later) we handle blocking read here.
1385 *
1386 * We can also consistently treat trying to read from a disabled stream
1387 * as an IO error so implementations can assume the stream is enabled
1388 * while reading.
1389 *
1390 * Returns: The number of bytes copied or a negative error code on failure.
1391 */
Robert Braggeec688e2016-11-07 19:49:47 +00001392static ssize_t i915_perf_read(struct file *file,
1393 char __user *buf,
1394 size_t count,
1395 loff_t *ppos)
1396{
1397 struct i915_perf_stream *stream = file->private_data;
1398 struct drm_i915_private *dev_priv = stream->dev_priv;
1399 ssize_t ret;
1400
Robert Braggd7965152016-11-07 19:49:52 +00001401 /* To ensure it's handled consistently we simply treat all reads of a
1402 * disabled stream as an error. In particular it might otherwise lead
1403 * to a deadlock for blocking file descriptors...
1404 */
1405 if (!stream->enabled)
1406 return -EIO;
1407
Robert Braggeec688e2016-11-07 19:49:47 +00001408 if (!(file->f_flags & O_NONBLOCK)) {
Robert Braggd7965152016-11-07 19:49:52 +00001409 /* There's the small chance of false positives from
1410 * stream->ops->wait_unlocked.
1411 *
1412 * E.g. with single context filtering since we only wait until
1413 * oabuffer has >= 1 report we don't immediately know whether
1414 * any reports really belong to the current context
Robert Braggeec688e2016-11-07 19:49:47 +00001415 */
1416 do {
1417 ret = stream->ops->wait_unlocked(stream);
1418 if (ret)
1419 return ret;
1420
1421 mutex_lock(&dev_priv->perf.lock);
1422 ret = i915_perf_read_locked(stream, file,
1423 buf, count, ppos);
1424 mutex_unlock(&dev_priv->perf.lock);
1425 } while (ret == -EAGAIN);
1426 } else {
1427 mutex_lock(&dev_priv->perf.lock);
1428 ret = i915_perf_read_locked(stream, file, buf, count, ppos);
1429 mutex_unlock(&dev_priv->perf.lock);
1430 }
1431
Robert Bragg26ebd9c2017-05-11 16:43:25 +01001432 /* We allow the poll checking to sometimes report false positive POLLIN
1433 * events where we might actually report EAGAIN on read() if there's
1434 * not really any data available. In this situation though we don't
1435 * want to enter a busy loop between poll() reporting a POLLIN event
1436 * and read() returning -EAGAIN. Clearing the oa.pollin state here
1437 * effectively ensures we back off until the next hrtimer callback
1438 * before reporting another POLLIN event.
1439 */
1440 if (ret >= 0 || ret == -EAGAIN) {
Robert Braggd7965152016-11-07 19:49:52 +00001441 /* Maybe make ->pollin per-stream state if we support multiple
1442 * concurrent streams in the future.
1443 */
1444 dev_priv->perf.oa.pollin = false;
1445 }
1446
Robert Braggeec688e2016-11-07 19:49:47 +00001447 return ret;
1448}
1449
Robert Braggd7965152016-11-07 19:49:52 +00001450static enum hrtimer_restart oa_poll_check_timer_cb(struct hrtimer *hrtimer)
1451{
1452 struct drm_i915_private *dev_priv =
1453 container_of(hrtimer, typeof(*dev_priv),
1454 perf.oa.poll_check_timer);
1455
Robert Bragg0dd860c2017-05-11 16:43:28 +01001456 if (dev_priv->perf.oa.ops.oa_buffer_check(dev_priv)) {
Robert Braggd7965152016-11-07 19:49:52 +00001457 dev_priv->perf.oa.pollin = true;
1458 wake_up(&dev_priv->perf.oa.poll_wq);
1459 }
1460
1461 hrtimer_forward_now(hrtimer, ns_to_ktime(POLL_PERIOD));
1462
1463 return HRTIMER_RESTART;
1464}
1465
Robert Bragg16d98b32016-12-07 21:40:33 +00001466/**
1467 * i915_perf_poll_locked - poll_wait() with a suitable wait queue for stream
1468 * @dev_priv: i915 device instance
1469 * @stream: An i915 perf stream
1470 * @file: An i915 perf stream file
1471 * @wait: poll() state table
1472 *
1473 * For handling userspace polling on an i915 perf stream, this calls through to
1474 * &i915_perf_stream_ops->poll_wait to call poll_wait() with a wait queue that
1475 * will be woken for new stream data.
1476 *
1477 * Note: The &drm_i915_private->perf.lock mutex has been taken to serialize
1478 * with any non-file-operation driver hooks.
1479 *
1480 * Returns: any poll events that are ready without sleeping
1481 */
Robert Braggd7965152016-11-07 19:49:52 +00001482static unsigned int i915_perf_poll_locked(struct drm_i915_private *dev_priv,
1483 struct i915_perf_stream *stream,
Robert Braggeec688e2016-11-07 19:49:47 +00001484 struct file *file,
1485 poll_table *wait)
1486{
Robert Braggd7965152016-11-07 19:49:52 +00001487 unsigned int events = 0;
Robert Braggeec688e2016-11-07 19:49:47 +00001488
1489 stream->ops->poll_wait(stream, file, wait);
1490
Robert Braggd7965152016-11-07 19:49:52 +00001491 /* Note: we don't explicitly check whether there's something to read
1492 * here since this path may be very hot depending on what else
1493 * userspace is polling, or on the timeout in use. We rely solely on
1494 * the hrtimer/oa_poll_check_timer_cb to notify us when there are
1495 * samples to read.
1496 */
1497 if (dev_priv->perf.oa.pollin)
1498 events |= POLLIN;
Robert Braggeec688e2016-11-07 19:49:47 +00001499
Robert Braggd7965152016-11-07 19:49:52 +00001500 return events;
Robert Braggeec688e2016-11-07 19:49:47 +00001501}
1502
Robert Bragg16d98b32016-12-07 21:40:33 +00001503/**
1504 * i915_perf_poll - call poll_wait() with a suitable wait queue for stream
1505 * @file: An i915 perf stream file
1506 * @wait: poll() state table
1507 *
1508 * For handling userspace polling on an i915 perf stream, this ensures
1509 * poll_wait() gets called with a wait queue that will be woken for new stream
1510 * data.
1511 *
1512 * Note: Implementation deferred to i915_perf_poll_locked()
1513 *
1514 * Returns: any poll events that are ready without sleeping
1515 */
Robert Braggeec688e2016-11-07 19:49:47 +00001516static unsigned int i915_perf_poll(struct file *file, poll_table *wait)
1517{
1518 struct i915_perf_stream *stream = file->private_data;
1519 struct drm_i915_private *dev_priv = stream->dev_priv;
1520 int ret;
1521
1522 mutex_lock(&dev_priv->perf.lock);
Robert Braggd7965152016-11-07 19:49:52 +00001523 ret = i915_perf_poll_locked(dev_priv, stream, file, wait);
Robert Braggeec688e2016-11-07 19:49:47 +00001524 mutex_unlock(&dev_priv->perf.lock);
1525
1526 return ret;
1527}
1528
Robert Bragg16d98b32016-12-07 21:40:33 +00001529/**
1530 * i915_perf_enable_locked - handle `I915_PERF_IOCTL_ENABLE` ioctl
1531 * @stream: A disabled i915 perf stream
1532 *
1533 * [Re]enables the associated capture of data for this stream.
1534 *
1535 * If a stream was previously enabled then there's currently no intention
1536 * to provide userspace any guarantee about the preservation of previously
1537 * buffered data.
1538 */
Robert Braggeec688e2016-11-07 19:49:47 +00001539static void i915_perf_enable_locked(struct i915_perf_stream *stream)
1540{
1541 if (stream->enabled)
1542 return;
1543
1544 /* Allow stream->ops->enable() to refer to this */
1545 stream->enabled = true;
1546
1547 if (stream->ops->enable)
1548 stream->ops->enable(stream);
1549}
1550
Robert Bragg16d98b32016-12-07 21:40:33 +00001551/**
1552 * i915_perf_disable_locked - handle `I915_PERF_IOCTL_DISABLE` ioctl
1553 * @stream: An enabled i915 perf stream
1554 *
1555 * Disables the associated capture of data for this stream.
1556 *
1557 * The intention is that disabling an re-enabling a stream will ideally be
1558 * cheaper than destroying and re-opening a stream with the same configuration,
1559 * though there are no formal guarantees about what state or buffered data
1560 * must be retained between disabling and re-enabling a stream.
1561 *
1562 * Note: while a stream is disabled it's considered an error for userspace
1563 * to attempt to read from the stream (-EIO).
1564 */
Robert Braggeec688e2016-11-07 19:49:47 +00001565static void i915_perf_disable_locked(struct i915_perf_stream *stream)
1566{
1567 if (!stream->enabled)
1568 return;
1569
1570 /* Allow stream->ops->disable() to refer to this */
1571 stream->enabled = false;
1572
1573 if (stream->ops->disable)
1574 stream->ops->disable(stream);
1575}
1576
Robert Bragg16d98b32016-12-07 21:40:33 +00001577/**
1578 * i915_perf_ioctl - support ioctl() usage with i915 perf stream FDs
1579 * @stream: An i915 perf stream
1580 * @cmd: the ioctl request
1581 * @arg: the ioctl data
1582 *
1583 * Note: The &drm_i915_private->perf.lock mutex has been taken to serialize
1584 * with any non-file-operation driver hooks.
1585 *
1586 * Returns: zero on success or a negative error code. Returns -EINVAL for
1587 * an unknown ioctl request.
1588 */
Robert Braggeec688e2016-11-07 19:49:47 +00001589static long i915_perf_ioctl_locked(struct i915_perf_stream *stream,
1590 unsigned int cmd,
1591 unsigned long arg)
1592{
1593 switch (cmd) {
1594 case I915_PERF_IOCTL_ENABLE:
1595 i915_perf_enable_locked(stream);
1596 return 0;
1597 case I915_PERF_IOCTL_DISABLE:
1598 i915_perf_disable_locked(stream);
1599 return 0;
1600 }
1601
1602 return -EINVAL;
1603}
1604
Robert Bragg16d98b32016-12-07 21:40:33 +00001605/**
1606 * i915_perf_ioctl - support ioctl() usage with i915 perf stream FDs
1607 * @file: An i915 perf stream file
1608 * @cmd: the ioctl request
1609 * @arg: the ioctl data
1610 *
1611 * Implementation deferred to i915_perf_ioctl_locked().
1612 *
1613 * Returns: zero on success or a negative error code. Returns -EINVAL for
1614 * an unknown ioctl request.
1615 */
Robert Braggeec688e2016-11-07 19:49:47 +00001616static long i915_perf_ioctl(struct file *file,
1617 unsigned int cmd,
1618 unsigned long arg)
1619{
1620 struct i915_perf_stream *stream = file->private_data;
1621 struct drm_i915_private *dev_priv = stream->dev_priv;
1622 long ret;
1623
1624 mutex_lock(&dev_priv->perf.lock);
1625 ret = i915_perf_ioctl_locked(stream, cmd, arg);
1626 mutex_unlock(&dev_priv->perf.lock);
1627
1628 return ret;
1629}
1630
Robert Bragg16d98b32016-12-07 21:40:33 +00001631/**
1632 * i915_perf_destroy_locked - destroy an i915 perf stream
1633 * @stream: An i915 perf stream
1634 *
1635 * Frees all resources associated with the given i915 perf @stream, disabling
1636 * any associated data capture in the process.
1637 *
1638 * Note: The &drm_i915_private->perf.lock mutex has been taken to serialize
1639 * with any non-file-operation driver hooks.
1640 */
Robert Braggeec688e2016-11-07 19:49:47 +00001641static void i915_perf_destroy_locked(struct i915_perf_stream *stream)
1642{
Robert Braggeec688e2016-11-07 19:49:47 +00001643 if (stream->enabled)
1644 i915_perf_disable_locked(stream);
1645
1646 if (stream->ops->destroy)
1647 stream->ops->destroy(stream);
1648
1649 list_del(&stream->link);
1650
Chris Wilson69df05e2016-12-18 15:37:21 +00001651 if (stream->ctx)
1652 i915_gem_context_put_unlocked(stream->ctx);
Robert Braggeec688e2016-11-07 19:49:47 +00001653
1654 kfree(stream);
1655}
1656
Robert Bragg16d98b32016-12-07 21:40:33 +00001657/**
1658 * i915_perf_release - handles userspace close() of a stream file
1659 * @inode: anonymous inode associated with file
1660 * @file: An i915 perf stream file
1661 *
1662 * Cleans up any resources associated with an open i915 perf stream file.
1663 *
1664 * NB: close() can't really fail from the userspace point of view.
1665 *
1666 * Returns: zero on success or a negative error code.
1667 */
Robert Braggeec688e2016-11-07 19:49:47 +00001668static int i915_perf_release(struct inode *inode, struct file *file)
1669{
1670 struct i915_perf_stream *stream = file->private_data;
1671 struct drm_i915_private *dev_priv = stream->dev_priv;
1672
1673 mutex_lock(&dev_priv->perf.lock);
1674 i915_perf_destroy_locked(stream);
1675 mutex_unlock(&dev_priv->perf.lock);
1676
1677 return 0;
1678}
1679
1680
1681static const struct file_operations fops = {
1682 .owner = THIS_MODULE,
1683 .llseek = no_llseek,
1684 .release = i915_perf_release,
1685 .poll = i915_perf_poll,
1686 .read = i915_perf_read,
1687 .unlocked_ioctl = i915_perf_ioctl,
1688};
1689
1690
1691static struct i915_gem_context *
1692lookup_context(struct drm_i915_private *dev_priv,
1693 struct drm_i915_file_private *file_priv,
1694 u32 ctx_user_handle)
1695{
1696 struct i915_gem_context *ctx;
1697 int ret;
1698
1699 ret = i915_mutex_lock_interruptible(&dev_priv->drm);
1700 if (ret)
1701 return ERR_PTR(ret);
1702
1703 ctx = i915_gem_context_lookup(file_priv, ctx_user_handle);
1704 if (!IS_ERR(ctx))
1705 i915_gem_context_get(ctx);
1706
1707 mutex_unlock(&dev_priv->drm.struct_mutex);
1708
1709 return ctx;
1710}
1711
Robert Bragg16d98b32016-12-07 21:40:33 +00001712/**
1713 * i915_perf_open_ioctl_locked - DRM ioctl() for userspace to open a stream FD
1714 * @dev_priv: i915 device instance
1715 * @param: The open parameters passed to 'DRM_I915_PERF_OPEN`
1716 * @props: individually validated u64 property value pairs
1717 * @file: drm file
1718 *
1719 * See i915_perf_ioctl_open() for interface details.
1720 *
1721 * Implements further stream config validation and stream initialization on
1722 * behalf of i915_perf_open_ioctl() with the &drm_i915_private->perf.lock mutex
1723 * taken to serialize with any non-file-operation driver hooks.
1724 *
1725 * Note: at this point the @props have only been validated in isolation and
1726 * it's still necessary to validate that the combination of properties makes
1727 * sense.
1728 *
1729 * In the case where userspace is interested in OA unit metrics then further
1730 * config validation and stream initialization details will be handled by
1731 * i915_oa_stream_init(). The code here should only validate config state that
1732 * will be relevant to all stream types / backends.
1733 *
1734 * Returns: zero on success or a negative error code.
1735 */
Robert Braggeec688e2016-11-07 19:49:47 +00001736static int
1737i915_perf_open_ioctl_locked(struct drm_i915_private *dev_priv,
1738 struct drm_i915_perf_open_param *param,
1739 struct perf_open_properties *props,
1740 struct drm_file *file)
1741{
1742 struct i915_gem_context *specific_ctx = NULL;
1743 struct i915_perf_stream *stream = NULL;
1744 unsigned long f_flags = 0;
1745 int stream_fd;
1746 int ret;
1747
1748 if (props->single_context) {
1749 u32 ctx_handle = props->ctx_handle;
1750 struct drm_i915_file_private *file_priv = file->driver_priv;
1751
1752 specific_ctx = lookup_context(dev_priv, file_priv, ctx_handle);
1753 if (IS_ERR(specific_ctx)) {
1754 ret = PTR_ERR(specific_ctx);
1755 if (ret != -EINTR)
Robert Bragg77085502016-12-01 17:21:52 +00001756 DRM_DEBUG("Failed to look up context with ID %u for opening perf stream\n",
Robert Braggeec688e2016-11-07 19:49:47 +00001757 ctx_handle);
1758 goto err;
1759 }
1760 }
1761
Robert Braggccdf6342016-11-07 19:49:54 +00001762 /* Similar to perf's kernel.perf_paranoid_cpu sysctl option
1763 * we check a dev.i915.perf_stream_paranoid sysctl option
1764 * to determine if it's ok to access system wide OA counters
1765 * without CAP_SYS_ADMIN privileges.
1766 */
1767 if (!specific_ctx &&
1768 i915_perf_stream_paranoid && !capable(CAP_SYS_ADMIN)) {
Robert Bragg77085502016-12-01 17:21:52 +00001769 DRM_DEBUG("Insufficient privileges to open system-wide i915 perf stream\n");
Robert Braggeec688e2016-11-07 19:49:47 +00001770 ret = -EACCES;
1771 goto err_ctx;
1772 }
1773
1774 stream = kzalloc(sizeof(*stream), GFP_KERNEL);
1775 if (!stream) {
1776 ret = -ENOMEM;
1777 goto err_ctx;
1778 }
1779
Robert Braggeec688e2016-11-07 19:49:47 +00001780 stream->dev_priv = dev_priv;
1781 stream->ctx = specific_ctx;
1782
Robert Braggd7965152016-11-07 19:49:52 +00001783 ret = i915_oa_stream_init(stream, param, props);
1784 if (ret)
1785 goto err_alloc;
1786
1787 /* we avoid simply assigning stream->sample_flags = props->sample_flags
1788 * to have _stream_init check the combination of sample flags more
1789 * thoroughly, but still this is the expected result at this point.
Robert Braggeec688e2016-11-07 19:49:47 +00001790 */
Robert Braggd7965152016-11-07 19:49:52 +00001791 if (WARN_ON(stream->sample_flags != props->sample_flags)) {
1792 ret = -ENODEV;
Matthew Auld22f880c2017-03-27 21:34:59 +01001793 goto err_flags;
Robert Braggd7965152016-11-07 19:49:52 +00001794 }
Robert Braggeec688e2016-11-07 19:49:47 +00001795
1796 list_add(&stream->link, &dev_priv->perf.streams);
1797
1798 if (param->flags & I915_PERF_FLAG_FD_CLOEXEC)
1799 f_flags |= O_CLOEXEC;
1800 if (param->flags & I915_PERF_FLAG_FD_NONBLOCK)
1801 f_flags |= O_NONBLOCK;
1802
1803 stream_fd = anon_inode_getfd("[i915_perf]", &fops, stream, f_flags);
1804 if (stream_fd < 0) {
1805 ret = stream_fd;
1806 goto err_open;
1807 }
1808
1809 if (!(param->flags & I915_PERF_FLAG_DISABLED))
1810 i915_perf_enable_locked(stream);
1811
1812 return stream_fd;
1813
1814err_open:
1815 list_del(&stream->link);
Matthew Auld22f880c2017-03-27 21:34:59 +01001816err_flags:
Robert Braggeec688e2016-11-07 19:49:47 +00001817 if (stream->ops->destroy)
1818 stream->ops->destroy(stream);
1819err_alloc:
1820 kfree(stream);
1821err_ctx:
Chris Wilson69df05e2016-12-18 15:37:21 +00001822 if (specific_ctx)
1823 i915_gem_context_put_unlocked(specific_ctx);
Robert Braggeec688e2016-11-07 19:49:47 +00001824err:
1825 return ret;
1826}
1827
Robert Bragg16d98b32016-12-07 21:40:33 +00001828/**
1829 * read_properties_unlocked - validate + copy userspace stream open properties
1830 * @dev_priv: i915 device instance
1831 * @uprops: The array of u64 key value pairs given by userspace
1832 * @n_props: The number of key value pairs expected in @uprops
1833 * @props: The stream configuration built up while validating properties
Robert Braggeec688e2016-11-07 19:49:47 +00001834 *
1835 * Note this function only validates properties in isolation it doesn't
1836 * validate that the combination of properties makes sense or that all
1837 * properties necessary for a particular kind of stream have been set.
Robert Bragg16d98b32016-12-07 21:40:33 +00001838 *
1839 * Note that there currently aren't any ordering requirements for properties so
1840 * we shouldn't validate or assume anything about ordering here. This doesn't
1841 * rule out defining new properties with ordering requirements in the future.
Robert Braggeec688e2016-11-07 19:49:47 +00001842 */
1843static int read_properties_unlocked(struct drm_i915_private *dev_priv,
1844 u64 __user *uprops,
1845 u32 n_props,
1846 struct perf_open_properties *props)
1847{
1848 u64 __user *uprop = uprops;
1849 int i;
1850
1851 memset(props, 0, sizeof(struct perf_open_properties));
1852
1853 if (!n_props) {
Robert Bragg77085502016-12-01 17:21:52 +00001854 DRM_DEBUG("No i915 perf properties given\n");
Robert Braggeec688e2016-11-07 19:49:47 +00001855 return -EINVAL;
1856 }
1857
1858 /* Considering that ID = 0 is reserved and assuming that we don't
1859 * (currently) expect any configurations to ever specify duplicate
1860 * values for a particular property ID then the last _PROP_MAX value is
1861 * one greater than the maximum number of properties we expect to get
1862 * from userspace.
1863 */
1864 if (n_props >= DRM_I915_PERF_PROP_MAX) {
Robert Bragg77085502016-12-01 17:21:52 +00001865 DRM_DEBUG("More i915 perf properties specified than exist\n");
Robert Braggeec688e2016-11-07 19:49:47 +00001866 return -EINVAL;
1867 }
1868
1869 for (i = 0; i < n_props; i++) {
Robert Bragg00319ba2016-11-07 19:49:55 +00001870 u64 oa_period, oa_freq_hz;
Robert Braggeec688e2016-11-07 19:49:47 +00001871 u64 id, value;
1872 int ret;
1873
1874 ret = get_user(id, uprop);
1875 if (ret)
1876 return ret;
1877
1878 ret = get_user(value, uprop + 1);
1879 if (ret)
1880 return ret;
1881
Matthew Auld0a309f92017-03-27 21:32:36 +01001882 if (id == 0 || id >= DRM_I915_PERF_PROP_MAX) {
1883 DRM_DEBUG("Unknown i915 perf property ID\n");
1884 return -EINVAL;
1885 }
1886
Robert Braggeec688e2016-11-07 19:49:47 +00001887 switch ((enum drm_i915_perf_property_id)id) {
1888 case DRM_I915_PERF_PROP_CTX_HANDLE:
1889 props->single_context = 1;
1890 props->ctx_handle = value;
1891 break;
Robert Braggd7965152016-11-07 19:49:52 +00001892 case DRM_I915_PERF_PROP_SAMPLE_OA:
1893 props->sample_flags |= SAMPLE_OA_REPORT;
1894 break;
1895 case DRM_I915_PERF_PROP_OA_METRICS_SET:
1896 if (value == 0 ||
1897 value > dev_priv->perf.oa.n_builtin_sets) {
Robert Bragg77085502016-12-01 17:21:52 +00001898 DRM_DEBUG("Unknown OA metric set ID\n");
Robert Braggd7965152016-11-07 19:49:52 +00001899 return -EINVAL;
1900 }
1901 props->metrics_set = value;
1902 break;
1903 case DRM_I915_PERF_PROP_OA_FORMAT:
1904 if (value == 0 || value >= I915_OA_FORMAT_MAX) {
Robert Bragg77085502016-12-01 17:21:52 +00001905 DRM_DEBUG("Invalid OA report format\n");
Robert Braggd7965152016-11-07 19:49:52 +00001906 return -EINVAL;
1907 }
1908 if (!dev_priv->perf.oa.oa_formats[value].size) {
Robert Bragg77085502016-12-01 17:21:52 +00001909 DRM_DEBUG("Invalid OA report format\n");
Robert Braggd7965152016-11-07 19:49:52 +00001910 return -EINVAL;
1911 }
1912 props->oa_format = value;
1913 break;
1914 case DRM_I915_PERF_PROP_OA_EXPONENT:
1915 if (value > OA_EXPONENT_MAX) {
Robert Bragg77085502016-12-01 17:21:52 +00001916 DRM_DEBUG("OA timer exponent too high (> %u)\n",
1917 OA_EXPONENT_MAX);
Robert Braggd7965152016-11-07 19:49:52 +00001918 return -EINVAL;
1919 }
1920
Robert Bragg00319ba2016-11-07 19:49:55 +00001921 /* Theoretically we can program the OA unit to sample
Robert Braggd7965152016-11-07 19:49:52 +00001922 * every 160ns but don't allow that by default unless
1923 * root.
1924 *
Robert Bragg00319ba2016-11-07 19:49:55 +00001925 * On Haswell the period is derived from the exponent
1926 * as:
1927 *
1928 * period = 80ns * 2^(exponent + 1)
Robert Braggd7965152016-11-07 19:49:52 +00001929 */
Robert Bragg00319ba2016-11-07 19:49:55 +00001930 BUILD_BUG_ON(sizeof(oa_period) != 8);
1931 oa_period = 80ull * (2ull << value);
1932
1933 /* This check is primarily to ensure that oa_period <=
1934 * UINT32_MAX (before passing to do_div which only
1935 * accepts a u32 denominator), but we can also skip
1936 * checking anything < 1Hz which implicitly can't be
1937 * limited via an integer oa_max_sample_rate.
1938 */
1939 if (oa_period <= NSEC_PER_SEC) {
1940 u64 tmp = NSEC_PER_SEC;
1941 do_div(tmp, oa_period);
1942 oa_freq_hz = tmp;
1943 } else
1944 oa_freq_hz = 0;
1945
1946 if (oa_freq_hz > i915_oa_max_sample_rate &&
1947 !capable(CAP_SYS_ADMIN)) {
Robert Bragg77085502016-12-01 17:21:52 +00001948 DRM_DEBUG("OA exponent would exceed the max sampling frequency (sysctl dev.i915.oa_max_sample_rate) %uHz without root privileges\n",
Robert Bragg00319ba2016-11-07 19:49:55 +00001949 i915_oa_max_sample_rate);
Robert Braggd7965152016-11-07 19:49:52 +00001950 return -EACCES;
1951 }
1952
1953 props->oa_periodic = true;
1954 props->oa_period_exponent = value;
1955 break;
Matthew Auld0a309f92017-03-27 21:32:36 +01001956 case DRM_I915_PERF_PROP_MAX:
Robert Braggeec688e2016-11-07 19:49:47 +00001957 MISSING_CASE(id);
Robert Braggeec688e2016-11-07 19:49:47 +00001958 return -EINVAL;
1959 }
1960
1961 uprop += 2;
1962 }
1963
1964 return 0;
1965}
1966
Robert Bragg16d98b32016-12-07 21:40:33 +00001967/**
1968 * i915_perf_open_ioctl - DRM ioctl() for userspace to open a stream FD
1969 * @dev: drm device
1970 * @data: ioctl data copied from userspace (unvalidated)
1971 * @file: drm file
1972 *
1973 * Validates the stream open parameters given by userspace including flags
1974 * and an array of u64 key, value pair properties.
1975 *
1976 * Very little is assumed up front about the nature of the stream being
1977 * opened (for instance we don't assume it's for periodic OA unit metrics). An
1978 * i915-perf stream is expected to be a suitable interface for other forms of
1979 * buffered data written by the GPU besides periodic OA metrics.
1980 *
1981 * Note we copy the properties from userspace outside of the i915 perf
1982 * mutex to avoid an awkward lockdep with mmap_sem.
1983 *
1984 * Most of the implementation details are handled by
1985 * i915_perf_open_ioctl_locked() after taking the &drm_i915_private->perf.lock
1986 * mutex for serializing with any non-file-operation driver hooks.
1987 *
1988 * Return: A newly opened i915 Perf stream file descriptor or negative
1989 * error code on failure.
1990 */
Robert Braggeec688e2016-11-07 19:49:47 +00001991int i915_perf_open_ioctl(struct drm_device *dev, void *data,
1992 struct drm_file *file)
1993{
1994 struct drm_i915_private *dev_priv = dev->dev_private;
1995 struct drm_i915_perf_open_param *param = data;
1996 struct perf_open_properties props;
1997 u32 known_open_flags;
1998 int ret;
1999
2000 if (!dev_priv->perf.initialized) {
Robert Bragg77085502016-12-01 17:21:52 +00002001 DRM_DEBUG("i915 perf interface not available for this system\n");
Robert Braggeec688e2016-11-07 19:49:47 +00002002 return -ENOTSUPP;
2003 }
2004
2005 known_open_flags = I915_PERF_FLAG_FD_CLOEXEC |
2006 I915_PERF_FLAG_FD_NONBLOCK |
2007 I915_PERF_FLAG_DISABLED;
2008 if (param->flags & ~known_open_flags) {
Robert Bragg77085502016-12-01 17:21:52 +00002009 DRM_DEBUG("Unknown drm_i915_perf_open_param flag\n");
Robert Braggeec688e2016-11-07 19:49:47 +00002010 return -EINVAL;
2011 }
2012
2013 ret = read_properties_unlocked(dev_priv,
2014 u64_to_user_ptr(param->properties_ptr),
2015 param->num_properties,
2016 &props);
2017 if (ret)
2018 return ret;
2019
2020 mutex_lock(&dev_priv->perf.lock);
2021 ret = i915_perf_open_ioctl_locked(dev_priv, param, &props, file);
2022 mutex_unlock(&dev_priv->perf.lock);
2023
2024 return ret;
2025}
2026
Robert Bragg16d98b32016-12-07 21:40:33 +00002027/**
2028 * i915_perf_register - exposes i915-perf to userspace
2029 * @dev_priv: i915 device instance
2030 *
2031 * In particular OA metric sets are advertised under a sysfs metrics/
2032 * directory allowing userspace to enumerate valid IDs that can be
2033 * used to open an i915-perf stream.
2034 */
Robert Bragg442b8c02016-11-07 19:49:53 +00002035void i915_perf_register(struct drm_i915_private *dev_priv)
2036{
2037 if (!IS_HASWELL(dev_priv))
2038 return;
2039
2040 if (!dev_priv->perf.initialized)
2041 return;
2042
2043 /* To be sure we're synchronized with an attempted
2044 * i915_perf_open_ioctl(); considering that we register after
2045 * being exposed to userspace.
2046 */
2047 mutex_lock(&dev_priv->perf.lock);
2048
2049 dev_priv->perf.metrics_kobj =
2050 kobject_create_and_add("metrics",
2051 &dev_priv->drm.primary->kdev->kobj);
2052 if (!dev_priv->perf.metrics_kobj)
2053 goto exit;
2054
2055 if (i915_perf_register_sysfs_hsw(dev_priv)) {
2056 kobject_put(dev_priv->perf.metrics_kobj);
2057 dev_priv->perf.metrics_kobj = NULL;
2058 }
2059
2060exit:
2061 mutex_unlock(&dev_priv->perf.lock);
2062}
2063
Robert Bragg16d98b32016-12-07 21:40:33 +00002064/**
2065 * i915_perf_unregister - hide i915-perf from userspace
2066 * @dev_priv: i915 device instance
2067 *
2068 * i915-perf state cleanup is split up into an 'unregister' and
2069 * 'deinit' phase where the interface is first hidden from
2070 * userspace by i915_perf_unregister() before cleaning up
2071 * remaining state in i915_perf_fini().
2072 */
Robert Bragg442b8c02016-11-07 19:49:53 +00002073void i915_perf_unregister(struct drm_i915_private *dev_priv)
2074{
2075 if (!IS_HASWELL(dev_priv))
2076 return;
2077
2078 if (!dev_priv->perf.metrics_kobj)
2079 return;
2080
2081 i915_perf_unregister_sysfs_hsw(dev_priv);
2082
2083 kobject_put(dev_priv->perf.metrics_kobj);
2084 dev_priv->perf.metrics_kobj = NULL;
2085}
2086
Robert Braggccdf6342016-11-07 19:49:54 +00002087static struct ctl_table oa_table[] = {
2088 {
2089 .procname = "perf_stream_paranoid",
2090 .data = &i915_perf_stream_paranoid,
2091 .maxlen = sizeof(i915_perf_stream_paranoid),
2092 .mode = 0644,
2093 .proc_handler = proc_dointvec_minmax,
2094 .extra1 = &zero,
2095 .extra2 = &one,
2096 },
Robert Bragg00319ba2016-11-07 19:49:55 +00002097 {
2098 .procname = "oa_max_sample_rate",
2099 .data = &i915_oa_max_sample_rate,
2100 .maxlen = sizeof(i915_oa_max_sample_rate),
2101 .mode = 0644,
2102 .proc_handler = proc_dointvec_minmax,
2103 .extra1 = &zero,
2104 .extra2 = &oa_sample_rate_hard_limit,
2105 },
Robert Braggccdf6342016-11-07 19:49:54 +00002106 {}
2107};
2108
2109static struct ctl_table i915_root[] = {
2110 {
2111 .procname = "i915",
2112 .maxlen = 0,
2113 .mode = 0555,
2114 .child = oa_table,
2115 },
2116 {}
2117};
2118
2119static struct ctl_table dev_root[] = {
2120 {
2121 .procname = "dev",
2122 .maxlen = 0,
2123 .mode = 0555,
2124 .child = i915_root,
2125 },
2126 {}
2127};
2128
Robert Bragg16d98b32016-12-07 21:40:33 +00002129/**
2130 * i915_perf_init - initialize i915-perf state on module load
2131 * @dev_priv: i915 device instance
2132 *
2133 * Initializes i915-perf state without exposing anything to userspace.
2134 *
2135 * Note: i915-perf initialization is split into an 'init' and 'register'
2136 * phase with the i915_perf_register() exposing state to userspace.
2137 */
Robert Braggeec688e2016-11-07 19:49:47 +00002138void i915_perf_init(struct drm_i915_private *dev_priv)
2139{
Robert Braggd7965152016-11-07 19:49:52 +00002140 if (!IS_HASWELL(dev_priv))
2141 return;
2142
2143 hrtimer_init(&dev_priv->perf.oa.poll_check_timer,
2144 CLOCK_MONOTONIC, HRTIMER_MODE_REL);
2145 dev_priv->perf.oa.poll_check_timer.function = oa_poll_check_timer_cb;
2146 init_waitqueue_head(&dev_priv->perf.oa.poll_wq);
2147
Robert Braggeec688e2016-11-07 19:49:47 +00002148 INIT_LIST_HEAD(&dev_priv->perf.streams);
2149 mutex_init(&dev_priv->perf.lock);
Robert Braggd7965152016-11-07 19:49:52 +00002150 spin_lock_init(&dev_priv->perf.hook_lock);
Robert Bragg0dd860c2017-05-11 16:43:28 +01002151 spin_lock_init(&dev_priv->perf.oa.oa_buffer.ptr_lock);
Robert Braggd7965152016-11-07 19:49:52 +00002152
2153 dev_priv->perf.oa.ops.init_oa_buffer = gen7_init_oa_buffer;
2154 dev_priv->perf.oa.ops.enable_metric_set = hsw_enable_metric_set;
2155 dev_priv->perf.oa.ops.disable_metric_set = hsw_disable_metric_set;
2156 dev_priv->perf.oa.ops.oa_enable = gen7_oa_enable;
2157 dev_priv->perf.oa.ops.oa_disable = gen7_oa_disable;
2158 dev_priv->perf.oa.ops.read = gen7_oa_read;
Robert Bragg0dd860c2017-05-11 16:43:28 +01002159 dev_priv->perf.oa.ops.oa_buffer_check =
2160 gen7_oa_buffer_check_unlocked;
Robert Braggd7965152016-11-07 19:49:52 +00002161
2162 dev_priv->perf.oa.oa_formats = hsw_oa_formats;
2163
2164 dev_priv->perf.oa.n_builtin_sets =
2165 i915_oa_n_builtin_metric_sets_hsw;
Robert Braggeec688e2016-11-07 19:49:47 +00002166
Robert Braggccdf6342016-11-07 19:49:54 +00002167 dev_priv->perf.sysctl_header = register_sysctl_table(dev_root);
2168
Robert Braggeec688e2016-11-07 19:49:47 +00002169 dev_priv->perf.initialized = true;
2170}
2171
Robert Bragg16d98b32016-12-07 21:40:33 +00002172/**
2173 * i915_perf_fini - Counter part to i915_perf_init()
2174 * @dev_priv: i915 device instance
2175 */
Robert Braggeec688e2016-11-07 19:49:47 +00002176void i915_perf_fini(struct drm_i915_private *dev_priv)
2177{
2178 if (!dev_priv->perf.initialized)
2179 return;
2180
Robert Braggccdf6342016-11-07 19:49:54 +00002181 unregister_sysctl_table(dev_priv->perf.sysctl_header);
2182
Robert Braggd7965152016-11-07 19:49:52 +00002183 memset(&dev_priv->perf.oa.ops, 0, sizeof(dev_priv->perf.oa.ops));
Robert Braggeec688e2016-11-07 19:49:47 +00002184 dev_priv->perf.initialized = false;
2185}