Robert Bragg | eec688e | 2016-11-07 19:49:47 +0000 | [diff] [blame] | 1 | /* |
| 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 Bragg | 7abbd8d | 2016-11-07 19:49:57 +0000 | [diff] [blame] | 27 | |
| 28 | /** |
Robert Bragg | 16d98b3 | 2016-12-07 21:40:33 +0000 | [diff] [blame] | 29 | * DOC: i915 Perf Overview |
Robert Bragg | 7abbd8d | 2016-11-07 19:49:57 +0000 | [diff] [blame] | 30 | * |
| 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 Bragg | 16d98b3 | 2016-12-07 21:40:33 +0000 | [diff] [blame] | 48 | */ |
| 49 | |
| 50 | /** |
| 51 | * DOC: i915 Perf History and Comparison with Core Perf |
Robert Bragg | 7abbd8d | 2016-11-07 19:49:57 +0000 | [diff] [blame] | 52 | * |
| 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 Bragg | 16d98b3 | 2016-12-07 21:40:33 +0000 | [diff] [blame] | 82 | * Issues hit with first prototype based on Core Perf |
| 83 | * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
Robert Bragg | 7abbd8d | 2016-11-07 19:49:57 +0000 | [diff] [blame] | 84 | * |
| 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 Bragg | 16d98b3 | 2016-12-07 21:40:33 +0000 | [diff] [blame] | 142 | * - As a side note on perf's grouping feature; there was also some concern |
Robert Bragg | 7abbd8d | 2016-11-07 19:49:57 +0000 | [diff] [blame] | 143 | * 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 Bragg | eec688e | 2016-11-07 19:49:47 +0000 | [diff] [blame] | 194 | #include <linux/anon_inodes.h> |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 195 | #include <linux/sizes.h> |
Lionel Landwerlin | f89823c | 2017-08-03 18:05:50 +0100 | [diff] [blame] | 196 | #include <linux/uuid.h> |
Robert Bragg | eec688e | 2016-11-07 19:49:47 +0000 | [diff] [blame] | 197 | |
| 198 | #include "i915_drv.h" |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 199 | #include "i915_oa_hsw.h" |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 200 | #include "i915_oa_bdw.h" |
| 201 | #include "i915_oa_chv.h" |
| 202 | #include "i915_oa_sklgt2.h" |
| 203 | #include "i915_oa_sklgt3.h" |
| 204 | #include "i915_oa_sklgt4.h" |
| 205 | #include "i915_oa_bxt.h" |
Lionel Landwerlin | 6c5c1d8 | 2017-06-13 12:23:08 +0100 | [diff] [blame] | 206 | #include "i915_oa_kblgt2.h" |
| 207 | #include "i915_oa_kblgt3.h" |
Lionel Landwerlin | 28c7ef9 | 2017-06-13 12:23:09 +0100 | [diff] [blame] | 208 | #include "i915_oa_glk.h" |
Lionel Landwerlin | 22ea4f3 | 2017-09-18 12:21:24 +0100 | [diff] [blame] | 209 | #include "i915_oa_cflgt2.h" |
Lionel Landwerlin | 4407eaa | 2017-11-10 19:08:40 +0000 | [diff] [blame] | 210 | #include "i915_oa_cflgt3.h" |
Lionel Landwerlin | 95690a0 | 2017-11-10 19:08:43 +0000 | [diff] [blame] | 211 | #include "i915_oa_cnl.h" |
Lionel Landwerlin | 1de401c | 2018-03-26 14:39:48 +0100 | [diff] [blame] | 212 | #include "i915_oa_icl.h" |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 213 | |
| 214 | /* HW requires this to be a power of two, between 128k and 16M, though driver |
| 215 | * is currently generally designed assuming the largest 16M size is used such |
| 216 | * that the overflow cases are unlikely in normal operation. |
| 217 | */ |
| 218 | #define OA_BUFFER_SIZE SZ_16M |
| 219 | |
| 220 | #define OA_TAKEN(tail, head) ((tail - head) & (OA_BUFFER_SIZE - 1)) |
| 221 | |
Robert Bragg | 0dd860c | 2017-05-11 16:43:28 +0100 | [diff] [blame] | 222 | /** |
| 223 | * DOC: OA Tail Pointer Race |
| 224 | * |
| 225 | * There's a HW race condition between OA unit tail pointer register updates and |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 226 | * writes to memory whereby the tail pointer can sometimes get ahead of what's |
Robert Bragg | 0dd860c | 2017-05-11 16:43:28 +0100 | [diff] [blame] | 227 | * been written out to the OA buffer so far (in terms of what's visible to the |
| 228 | * CPU). |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 229 | * |
Robert Bragg | 0dd860c | 2017-05-11 16:43:28 +0100 | [diff] [blame] | 230 | * Although this can be observed explicitly while copying reports to userspace |
| 231 | * by checking for a zeroed report-id field in tail reports, we want to account |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 232 | * for this earlier, as part of the oa_buffer_check to avoid lots of redundant |
Robert Bragg | 0dd860c | 2017-05-11 16:43:28 +0100 | [diff] [blame] | 233 | * read() attempts. |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 234 | * |
Robert Bragg | 0dd860c | 2017-05-11 16:43:28 +0100 | [diff] [blame] | 235 | * In effect we define a tail pointer for reading that lags the real tail |
| 236 | * pointer by at least %OA_TAIL_MARGIN_NSEC nanoseconds, which gives enough |
| 237 | * time for the corresponding reports to become visible to the CPU. |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 238 | * |
Robert Bragg | 0dd860c | 2017-05-11 16:43:28 +0100 | [diff] [blame] | 239 | * To manage this we actually track two tail pointers: |
| 240 | * 1) An 'aging' tail with an associated timestamp that is tracked until we |
| 241 | * can trust the corresponding data is visible to the CPU; at which point |
| 242 | * it is considered 'aged'. |
| 243 | * 2) An 'aged' tail that can be used for read()ing. |
| 244 | * |
| 245 | * The two separate pointers let us decouple read()s from tail pointer aging. |
| 246 | * |
| 247 | * The tail pointers are checked and updated at a limited rate within a hrtimer |
Linus Torvalds | a9a0884 | 2018-02-11 14:34:03 -0800 | [diff] [blame] | 248 | * callback (the same callback that is used for delivering EPOLLIN events) |
Robert Bragg | 0dd860c | 2017-05-11 16:43:28 +0100 | [diff] [blame] | 249 | * |
| 250 | * Initially the tails are marked invalid with %INVALID_TAIL_PTR which |
| 251 | * indicates that an updated tail pointer is needed. |
| 252 | * |
| 253 | * Most of the implementation details for this workaround are in |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 254 | * oa_buffer_check_unlocked() and _append_oa_reports() |
Robert Bragg | 0dd860c | 2017-05-11 16:43:28 +0100 | [diff] [blame] | 255 | * |
| 256 | * Note for posterity: previously the driver used to define an effective tail |
| 257 | * pointer that lagged the real pointer by a 'tail margin' measured in bytes |
| 258 | * derived from %OA_TAIL_MARGIN_NSEC and the configured sampling frequency. |
| 259 | * This was flawed considering that the OA unit may also automatically generate |
| 260 | * non-periodic reports (such as on context switch) or the OA unit may be |
| 261 | * enabled without any periodic sampling. |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 262 | */ |
| 263 | #define OA_TAIL_MARGIN_NSEC 100000ULL |
Robert Bragg | 0dd860c | 2017-05-11 16:43:28 +0100 | [diff] [blame] | 264 | #define INVALID_TAIL_PTR 0xffffffff |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 265 | |
| 266 | /* frequency for checking whether the OA unit has written new reports to the |
| 267 | * circular OA buffer... |
| 268 | */ |
| 269 | #define POLL_FREQUENCY 200 |
| 270 | #define POLL_PERIOD (NSEC_PER_SEC / POLL_FREQUENCY) |
| 271 | |
Robert Bragg | ccdf634 | 2016-11-07 19:49:54 +0000 | [diff] [blame] | 272 | /* for sysctl proc_dointvec_minmax of dev.i915.perf_stream_paranoid */ |
| 273 | static int zero; |
| 274 | static int one = 1; |
| 275 | static u32 i915_perf_stream_paranoid = true; |
| 276 | |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 277 | /* The maximum exponent the hardware accepts is 63 (essentially it selects one |
| 278 | * of the 64bit timestamp bits to trigger reports from) but there's currently |
| 279 | * no known use case for sampling as infrequently as once per 47 thousand years. |
| 280 | * |
| 281 | * Since the timestamps included in OA reports are only 32bits it seems |
| 282 | * reasonable to limit the OA exponent where it's still possible to account for |
| 283 | * overflow in OA report timestamps. |
| 284 | */ |
| 285 | #define OA_EXPONENT_MAX 31 |
| 286 | |
| 287 | #define INVALID_CTX_ID 0xffffffff |
| 288 | |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 289 | /* On Gen8+ automatically triggered OA reports include a 'reason' field... */ |
| 290 | #define OAREPORT_REASON_MASK 0x3f |
| 291 | #define OAREPORT_REASON_SHIFT 19 |
| 292 | #define OAREPORT_REASON_TIMER (1<<0) |
| 293 | #define OAREPORT_REASON_CTX_SWITCH (1<<3) |
| 294 | #define OAREPORT_REASON_CLK_RATIO (1<<5) |
| 295 | |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 296 | |
Robert Bragg | 00319ba | 2016-11-07 19:49:55 +0000 | [diff] [blame] | 297 | /* For sysctl proc_dointvec_minmax of i915_oa_max_sample_rate |
| 298 | * |
Robert Bragg | 155e941 | 2017-06-13 12:23:05 +0100 | [diff] [blame] | 299 | * The highest sampling frequency we can theoretically program the OA unit |
| 300 | * with is always half the timestamp frequency: E.g. 6.25Mhz for Haswell. |
| 301 | * |
| 302 | * Initialized just before we register the sysctl parameter. |
Robert Bragg | 00319ba | 2016-11-07 19:49:55 +0000 | [diff] [blame] | 303 | */ |
Robert Bragg | 155e941 | 2017-06-13 12:23:05 +0100 | [diff] [blame] | 304 | static int oa_sample_rate_hard_limit; |
Robert Bragg | 00319ba | 2016-11-07 19:49:55 +0000 | [diff] [blame] | 305 | |
| 306 | /* Theoretically we can program the OA unit to sample every 160ns but don't |
| 307 | * allow that by default unless root... |
| 308 | * |
| 309 | * The default threshold of 100000Hz is based on perf's similar |
| 310 | * kernel.perf_event_max_sample_rate sysctl parameter. |
| 311 | */ |
| 312 | static u32 i915_oa_max_sample_rate = 100000; |
| 313 | |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 314 | /* XXX: beware if future OA HW adds new report formats that the current |
| 315 | * code assumes all reports have a power-of-two size and ~(size - 1) can |
| 316 | * be used as a mask to align the OA tail pointer. |
| 317 | */ |
| 318 | static struct i915_oa_format hsw_oa_formats[I915_OA_FORMAT_MAX] = { |
| 319 | [I915_OA_FORMAT_A13] = { 0, 64 }, |
| 320 | [I915_OA_FORMAT_A29] = { 1, 128 }, |
| 321 | [I915_OA_FORMAT_A13_B8_C8] = { 2, 128 }, |
| 322 | /* A29_B8_C8 Disallowed as 192 bytes doesn't factor into buffer size */ |
| 323 | [I915_OA_FORMAT_B4_C8] = { 4, 64 }, |
| 324 | [I915_OA_FORMAT_A45_B8_C8] = { 5, 256 }, |
| 325 | [I915_OA_FORMAT_B4_C8_A16] = { 6, 128 }, |
| 326 | [I915_OA_FORMAT_C4_B8] = { 7, 64 }, |
| 327 | }; |
| 328 | |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 329 | static struct i915_oa_format gen8_plus_oa_formats[I915_OA_FORMAT_MAX] = { |
| 330 | [I915_OA_FORMAT_A12] = { 0, 64 }, |
| 331 | [I915_OA_FORMAT_A12_B8_C8] = { 2, 128 }, |
| 332 | [I915_OA_FORMAT_A32u40_A4u32_B8_C8] = { 5, 256 }, |
| 333 | [I915_OA_FORMAT_C4_B8] = { 7, 64 }, |
| 334 | }; |
| 335 | |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 336 | #define SAMPLE_OA_REPORT (1<<0) |
Robert Bragg | eec688e | 2016-11-07 19:49:47 +0000 | [diff] [blame] | 337 | |
Robert Bragg | 16d98b3 | 2016-12-07 21:40:33 +0000 | [diff] [blame] | 338 | /** |
| 339 | * struct perf_open_properties - for validated properties given to open a stream |
| 340 | * @sample_flags: `DRM_I915_PERF_PROP_SAMPLE_*` properties are tracked as flags |
| 341 | * @single_context: Whether a single or all gpu contexts should be monitored |
| 342 | * @ctx_handle: A gem ctx handle for use with @single_context |
| 343 | * @metrics_set: An ID for an OA unit metric set advertised via sysfs |
| 344 | * @oa_format: An OA unit HW report format |
| 345 | * @oa_periodic: Whether to enable periodic OA unit sampling |
| 346 | * @oa_period_exponent: The OA unit sampling period is derived from this |
| 347 | * |
| 348 | * As read_properties_unlocked() enumerates and validates the properties given |
| 349 | * to open a stream of metrics the configuration is built up in the structure |
| 350 | * which starts out zero initialized. |
| 351 | */ |
Robert Bragg | eec688e | 2016-11-07 19:49:47 +0000 | [diff] [blame] | 352 | struct perf_open_properties { |
| 353 | u32 sample_flags; |
| 354 | |
| 355 | u64 single_context:1; |
| 356 | u64 ctx_handle; |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 357 | |
| 358 | /* OA sampling state */ |
| 359 | int metrics_set; |
| 360 | int oa_format; |
| 361 | bool oa_periodic; |
| 362 | int oa_period_exponent; |
Robert Bragg | eec688e | 2016-11-07 19:49:47 +0000 | [diff] [blame] | 363 | }; |
| 364 | |
Lionel Landwerlin | f89823c | 2017-08-03 18:05:50 +0100 | [diff] [blame] | 365 | static void free_oa_config(struct drm_i915_private *dev_priv, |
| 366 | struct i915_oa_config *oa_config) |
| 367 | { |
| 368 | if (!PTR_ERR(oa_config->flex_regs)) |
| 369 | kfree(oa_config->flex_regs); |
| 370 | if (!PTR_ERR(oa_config->b_counter_regs)) |
| 371 | kfree(oa_config->b_counter_regs); |
| 372 | if (!PTR_ERR(oa_config->mux_regs)) |
| 373 | kfree(oa_config->mux_regs); |
| 374 | kfree(oa_config); |
| 375 | } |
| 376 | |
| 377 | static void put_oa_config(struct drm_i915_private *dev_priv, |
| 378 | struct i915_oa_config *oa_config) |
| 379 | { |
| 380 | if (!atomic_dec_and_test(&oa_config->ref_count)) |
| 381 | return; |
| 382 | |
| 383 | free_oa_config(dev_priv, oa_config); |
| 384 | } |
| 385 | |
| 386 | static int get_oa_config(struct drm_i915_private *dev_priv, |
| 387 | int metrics_set, |
| 388 | struct i915_oa_config **out_config) |
| 389 | { |
| 390 | int ret; |
| 391 | |
| 392 | if (metrics_set == 1) { |
| 393 | *out_config = &dev_priv->perf.oa.test_config; |
| 394 | atomic_inc(&dev_priv->perf.oa.test_config.ref_count); |
| 395 | return 0; |
| 396 | } |
| 397 | |
| 398 | ret = mutex_lock_interruptible(&dev_priv->perf.metrics_lock); |
| 399 | if (ret) |
| 400 | return ret; |
| 401 | |
| 402 | *out_config = idr_find(&dev_priv->perf.metrics_idr, metrics_set); |
| 403 | if (!*out_config) |
| 404 | ret = -EINVAL; |
| 405 | else |
| 406 | atomic_inc(&(*out_config)->ref_count); |
| 407 | |
| 408 | mutex_unlock(&dev_priv->perf.metrics_lock); |
| 409 | |
| 410 | return ret; |
| 411 | } |
| 412 | |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 413 | static u32 gen8_oa_hw_tail_read(struct drm_i915_private *dev_priv) |
| 414 | { |
| 415 | return I915_READ(GEN8_OATAILPTR) & GEN8_OATAILPTR_MASK; |
| 416 | } |
| 417 | |
| 418 | static u32 gen7_oa_hw_tail_read(struct drm_i915_private *dev_priv) |
| 419 | { |
| 420 | u32 oastatus1 = I915_READ(GEN7_OASTATUS1); |
| 421 | |
| 422 | return oastatus1 & GEN7_OASTATUS1_TAIL_MASK; |
| 423 | } |
| 424 | |
Robert Bragg | 0dd860c | 2017-05-11 16:43:28 +0100 | [diff] [blame] | 425 | /** |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 426 | * oa_buffer_check_unlocked - check for data and update tail ptr state |
Robert Bragg | 0dd860c | 2017-05-11 16:43:28 +0100 | [diff] [blame] | 427 | * @dev_priv: i915 device instance |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 428 | * |
Robert Bragg | 0dd860c | 2017-05-11 16:43:28 +0100 | [diff] [blame] | 429 | * This is either called via fops (for blocking reads in user ctx) or the poll |
| 430 | * check hrtimer (atomic ctx) to check the OA buffer tail pointer and check |
| 431 | * if there is data available for userspace to read. |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 432 | * |
Robert Bragg | 0dd860c | 2017-05-11 16:43:28 +0100 | [diff] [blame] | 433 | * This function is central to providing a workaround for the OA unit tail |
| 434 | * pointer having a race with respect to what data is visible to the CPU. |
| 435 | * It is responsible for reading tail pointers from the hardware and giving |
| 436 | * the pointers time to 'age' before they are made available for reading. |
| 437 | * (See description of OA_TAIL_MARGIN_NSEC above for further details.) |
| 438 | * |
| 439 | * Besides returning true when there is data available to read() this function |
| 440 | * also has the side effect of updating the oa_buffer.tails[], .aging_timestamp |
| 441 | * and .aged_tail_idx state used for reading. |
| 442 | * |
| 443 | * Note: It's safe to read OA config state here unlocked, assuming that this is |
| 444 | * only called while the stream is enabled, while the global OA configuration |
| 445 | * can't be modified. |
| 446 | * |
| 447 | * Returns: %true if the OA buffer contains data, else %false |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 448 | */ |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 449 | static bool oa_buffer_check_unlocked(struct drm_i915_private *dev_priv) |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 450 | { |
| 451 | int report_size = dev_priv->perf.oa.oa_buffer.format_size; |
Robert Bragg | 0dd860c | 2017-05-11 16:43:28 +0100 | [diff] [blame] | 452 | unsigned long flags; |
| 453 | unsigned int aged_idx; |
Robert Bragg | 0dd860c | 2017-05-11 16:43:28 +0100 | [diff] [blame] | 454 | u32 head, hw_tail, aged_tail, aging_tail; |
| 455 | u64 now; |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 456 | |
Robert Bragg | 0dd860c | 2017-05-11 16:43:28 +0100 | [diff] [blame] | 457 | /* We have to consider the (unlikely) possibility that read() errors |
| 458 | * could result in an OA buffer reset which might reset the head, |
| 459 | * tails[] and aged_tail state. |
| 460 | */ |
| 461 | spin_lock_irqsave(&dev_priv->perf.oa.oa_buffer.ptr_lock, flags); |
| 462 | |
| 463 | /* NB: The head we observe here might effectively be a little out of |
| 464 | * date (between head and tails[aged_idx].offset if there is currently |
| 465 | * a read() in progress. |
| 466 | */ |
| 467 | head = dev_priv->perf.oa.oa_buffer.head; |
| 468 | |
| 469 | aged_idx = dev_priv->perf.oa.oa_buffer.aged_tail_idx; |
| 470 | aged_tail = dev_priv->perf.oa.oa_buffer.tails[aged_idx].offset; |
| 471 | aging_tail = dev_priv->perf.oa.oa_buffer.tails[!aged_idx].offset; |
| 472 | |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 473 | hw_tail = dev_priv->perf.oa.ops.oa_hw_tail_read(dev_priv); |
Robert Bragg | 0dd860c | 2017-05-11 16:43:28 +0100 | [diff] [blame] | 474 | |
| 475 | /* The tail pointer increases in 64 byte increments, |
| 476 | * not in report_size steps... |
| 477 | */ |
| 478 | hw_tail &= ~(report_size - 1); |
| 479 | |
| 480 | now = ktime_get_mono_fast_ns(); |
| 481 | |
Robert Bragg | 4117ebc | 2017-05-11 16:43:30 +0100 | [diff] [blame] | 482 | /* Update the aged tail |
| 483 | * |
| 484 | * Flip the tail pointer available for read()s once the aging tail is |
| 485 | * old enough to trust that the corresponding data will be visible to |
| 486 | * the CPU... |
| 487 | * |
| 488 | * Do this before updating the aging pointer in case we may be able to |
| 489 | * immediately start aging a new pointer too (if new data has become |
| 490 | * available) without needing to wait for a later hrtimer callback. |
| 491 | */ |
| 492 | if (aging_tail != INVALID_TAIL_PTR && |
| 493 | ((now - dev_priv->perf.oa.oa_buffer.aging_timestamp) > |
| 494 | OA_TAIL_MARGIN_NSEC)) { |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 495 | |
Robert Bragg | 4117ebc | 2017-05-11 16:43:30 +0100 | [diff] [blame] | 496 | aged_idx ^= 1; |
| 497 | dev_priv->perf.oa.oa_buffer.aged_tail_idx = aged_idx; |
| 498 | |
| 499 | aged_tail = aging_tail; |
| 500 | |
| 501 | /* Mark that we need a new pointer to start aging... */ |
| 502 | dev_priv->perf.oa.oa_buffer.tails[!aged_idx].offset = INVALID_TAIL_PTR; |
| 503 | aging_tail = INVALID_TAIL_PTR; |
| 504 | } |
| 505 | |
Robert Bragg | 0dd860c | 2017-05-11 16:43:28 +0100 | [diff] [blame] | 506 | /* Update the aging tail |
| 507 | * |
| 508 | * We throttle aging tail updates until we have a new tail that |
| 509 | * represents >= one report more data than is already available for |
| 510 | * reading. This ensures there will be enough data for a successful |
| 511 | * read once this new pointer has aged and ensures we will give the new |
| 512 | * pointer time to age. |
| 513 | */ |
| 514 | if (aging_tail == INVALID_TAIL_PTR && |
| 515 | (aged_tail == INVALID_TAIL_PTR || |
| 516 | OA_TAKEN(hw_tail, aged_tail) >= report_size)) { |
| 517 | struct i915_vma *vma = dev_priv->perf.oa.oa_buffer.vma; |
| 518 | u32 gtt_offset = i915_ggtt_offset(vma); |
| 519 | |
| 520 | /* Be paranoid and do a bounds check on the pointer read back |
| 521 | * from hardware, just in case some spurious hardware condition |
| 522 | * could put the tail out of bounds... |
| 523 | */ |
| 524 | if (hw_tail >= gtt_offset && |
| 525 | hw_tail < (gtt_offset + OA_BUFFER_SIZE)) { |
| 526 | dev_priv->perf.oa.oa_buffer.tails[!aged_idx].offset = |
| 527 | aging_tail = hw_tail; |
| 528 | dev_priv->perf.oa.oa_buffer.aging_timestamp = now; |
| 529 | } else { |
| 530 | DRM_ERROR("Ignoring spurious out of range OA buffer tail pointer = %u\n", |
| 531 | hw_tail); |
| 532 | } |
| 533 | } |
| 534 | |
Robert Bragg | 0dd860c | 2017-05-11 16:43:28 +0100 | [diff] [blame] | 535 | spin_unlock_irqrestore(&dev_priv->perf.oa.oa_buffer.ptr_lock, flags); |
| 536 | |
| 537 | return aged_tail == INVALID_TAIL_PTR ? |
| 538 | false : OA_TAKEN(aged_tail, head) >= report_size; |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 539 | } |
| 540 | |
| 541 | /** |
Robert Bragg | 16d98b3 | 2016-12-07 21:40:33 +0000 | [diff] [blame] | 542 | * append_oa_status - Appends a status record to a userspace read() buffer. |
| 543 | * @stream: An i915-perf stream opened for OA metrics |
| 544 | * @buf: destination buffer given by userspace |
| 545 | * @count: the number of bytes userspace wants to read |
| 546 | * @offset: (inout): the current position for writing into @buf |
| 547 | * @type: The kind of status to report to userspace |
| 548 | * |
| 549 | * Writes a status record (such as `DRM_I915_PERF_RECORD_OA_REPORT_LOST`) |
| 550 | * into the userspace read() buffer. |
| 551 | * |
| 552 | * The @buf @offset will only be updated on success. |
| 553 | * |
| 554 | * Returns: 0 on success, negative error code on failure. |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 555 | */ |
| 556 | static int append_oa_status(struct i915_perf_stream *stream, |
| 557 | char __user *buf, |
| 558 | size_t count, |
| 559 | size_t *offset, |
| 560 | enum drm_i915_perf_record_type type) |
| 561 | { |
| 562 | struct drm_i915_perf_record_header header = { type, 0, sizeof(header) }; |
| 563 | |
| 564 | if ((count - *offset) < header.size) |
| 565 | return -ENOSPC; |
| 566 | |
| 567 | if (copy_to_user(buf + *offset, &header, sizeof(header))) |
| 568 | return -EFAULT; |
| 569 | |
| 570 | (*offset) += header.size; |
| 571 | |
| 572 | return 0; |
| 573 | } |
| 574 | |
| 575 | /** |
Robert Bragg | 16d98b3 | 2016-12-07 21:40:33 +0000 | [diff] [blame] | 576 | * append_oa_sample - Copies single OA report into userspace read() buffer. |
| 577 | * @stream: An i915-perf stream opened for OA metrics |
| 578 | * @buf: destination buffer given by userspace |
| 579 | * @count: the number of bytes userspace wants to read |
| 580 | * @offset: (inout): the current position for writing into @buf |
| 581 | * @report: A single OA report to (optionally) include as part of the sample |
| 582 | * |
| 583 | * The contents of a sample are configured through `DRM_I915_PERF_PROP_SAMPLE_*` |
| 584 | * properties when opening a stream, tracked as `stream->sample_flags`. This |
| 585 | * function copies the requested components of a single sample to the given |
| 586 | * read() @buf. |
| 587 | * |
| 588 | * The @buf @offset will only be updated on success. |
| 589 | * |
| 590 | * Returns: 0 on success, negative error code on failure. |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 591 | */ |
| 592 | static int append_oa_sample(struct i915_perf_stream *stream, |
| 593 | char __user *buf, |
| 594 | size_t count, |
| 595 | size_t *offset, |
| 596 | const u8 *report) |
| 597 | { |
| 598 | struct drm_i915_private *dev_priv = stream->dev_priv; |
| 599 | int report_size = dev_priv->perf.oa.oa_buffer.format_size; |
| 600 | struct drm_i915_perf_record_header header; |
| 601 | u32 sample_flags = stream->sample_flags; |
| 602 | |
| 603 | header.type = DRM_I915_PERF_RECORD_SAMPLE; |
| 604 | header.pad = 0; |
| 605 | header.size = stream->sample_size; |
| 606 | |
| 607 | if ((count - *offset) < header.size) |
| 608 | return -ENOSPC; |
| 609 | |
| 610 | buf += *offset; |
| 611 | if (copy_to_user(buf, &header, sizeof(header))) |
| 612 | return -EFAULT; |
| 613 | buf += sizeof(header); |
| 614 | |
| 615 | if (sample_flags & SAMPLE_OA_REPORT) { |
| 616 | if (copy_to_user(buf, report, report_size)) |
| 617 | return -EFAULT; |
| 618 | } |
| 619 | |
| 620 | (*offset) += header.size; |
| 621 | |
| 622 | return 0; |
| 623 | } |
| 624 | |
| 625 | /** |
| 626 | * Copies all buffered OA reports into userspace read() buffer. |
| 627 | * @stream: An i915-perf stream opened for OA metrics |
| 628 | * @buf: destination buffer given by userspace |
| 629 | * @count: the number of bytes userspace wants to read |
| 630 | * @offset: (inout): the current position for writing into @buf |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 631 | * |
Robert Bragg | 16d98b3 | 2016-12-07 21:40:33 +0000 | [diff] [blame] | 632 | * Notably any error condition resulting in a short read (-%ENOSPC or |
| 633 | * -%EFAULT) will be returned even though one or more records may |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 634 | * have been successfully copied. In this case it's up to the caller |
| 635 | * to decide if the error should be squashed before returning to |
| 636 | * userspace. |
| 637 | * |
| 638 | * Note: reports are consumed from the head, and appended to the |
Robert Bragg | e81b3a5 | 2017-05-11 16:43:24 +0100 | [diff] [blame] | 639 | * tail, so the tail chases the head?... If you think that's mad |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 640 | * and back-to-front you're not alone, but this follows the |
| 641 | * Gen PRM naming convention. |
Robert Bragg | 16d98b3 | 2016-12-07 21:40:33 +0000 | [diff] [blame] | 642 | * |
| 643 | * Returns: 0 on success, negative error code on failure. |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 644 | */ |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 645 | static int gen8_append_oa_reports(struct i915_perf_stream *stream, |
| 646 | char __user *buf, |
| 647 | size_t count, |
| 648 | size_t *offset) |
| 649 | { |
| 650 | struct drm_i915_private *dev_priv = stream->dev_priv; |
| 651 | int report_size = dev_priv->perf.oa.oa_buffer.format_size; |
| 652 | u8 *oa_buf_base = dev_priv->perf.oa.oa_buffer.vaddr; |
| 653 | u32 gtt_offset = i915_ggtt_offset(dev_priv->perf.oa.oa_buffer.vma); |
| 654 | u32 mask = (OA_BUFFER_SIZE - 1); |
| 655 | size_t start_offset = *offset; |
| 656 | unsigned long flags; |
| 657 | unsigned int aged_tail_idx; |
| 658 | u32 head, tail; |
| 659 | u32 taken; |
| 660 | int ret = 0; |
| 661 | |
| 662 | if (WARN_ON(!stream->enabled)) |
| 663 | return -EIO; |
| 664 | |
| 665 | spin_lock_irqsave(&dev_priv->perf.oa.oa_buffer.ptr_lock, flags); |
| 666 | |
| 667 | head = dev_priv->perf.oa.oa_buffer.head; |
| 668 | aged_tail_idx = dev_priv->perf.oa.oa_buffer.aged_tail_idx; |
| 669 | tail = dev_priv->perf.oa.oa_buffer.tails[aged_tail_idx].offset; |
| 670 | |
| 671 | spin_unlock_irqrestore(&dev_priv->perf.oa.oa_buffer.ptr_lock, flags); |
| 672 | |
| 673 | /* |
| 674 | * An invalid tail pointer here means we're still waiting for the poll |
| 675 | * hrtimer callback to give us a pointer |
| 676 | */ |
| 677 | if (tail == INVALID_TAIL_PTR) |
| 678 | return -EAGAIN; |
| 679 | |
| 680 | /* |
| 681 | * NB: oa_buffer.head/tail include the gtt_offset which we don't want |
| 682 | * while indexing relative to oa_buf_base. |
| 683 | */ |
| 684 | head -= gtt_offset; |
| 685 | tail -= gtt_offset; |
| 686 | |
| 687 | /* |
| 688 | * An out of bounds or misaligned head or tail pointer implies a driver |
| 689 | * bug since we validate + align the tail pointers we read from the |
| 690 | * hardware and we are in full control of the head pointer which should |
| 691 | * only be incremented by multiples of the report size (notably also |
| 692 | * all a power of two). |
| 693 | */ |
| 694 | if (WARN_ONCE(head > OA_BUFFER_SIZE || head % report_size || |
| 695 | tail > OA_BUFFER_SIZE || tail % report_size, |
| 696 | "Inconsistent OA buffer pointers: head = %u, tail = %u\n", |
| 697 | head, tail)) |
| 698 | return -EIO; |
| 699 | |
| 700 | |
| 701 | for (/* none */; |
| 702 | (taken = OA_TAKEN(tail, head)); |
| 703 | head = (head + report_size) & mask) { |
| 704 | u8 *report = oa_buf_base + head; |
| 705 | u32 *report32 = (void *)report; |
| 706 | u32 ctx_id; |
| 707 | u32 reason; |
| 708 | |
| 709 | /* |
| 710 | * All the report sizes factor neatly into the buffer |
| 711 | * size so we never expect to see a report split |
| 712 | * between the beginning and end of the buffer. |
| 713 | * |
| 714 | * Given the initial alignment check a misalignment |
| 715 | * here would imply a driver bug that would result |
| 716 | * in an overrun. |
| 717 | */ |
| 718 | if (WARN_ON((OA_BUFFER_SIZE - head) < report_size)) { |
| 719 | DRM_ERROR("Spurious OA head ptr: non-integral report offset\n"); |
| 720 | break; |
| 721 | } |
| 722 | |
| 723 | /* |
| 724 | * The reason field includes flags identifying what |
| 725 | * triggered this specific report (mostly timer |
| 726 | * triggered or e.g. due to a context switch). |
| 727 | * |
| 728 | * This field is never expected to be zero so we can |
| 729 | * check that the report isn't invalid before copying |
| 730 | * it to userspace... |
| 731 | */ |
| 732 | reason = ((report32[0] >> OAREPORT_REASON_SHIFT) & |
| 733 | OAREPORT_REASON_MASK); |
| 734 | if (reason == 0) { |
| 735 | if (__ratelimit(&dev_priv->perf.oa.spurious_report_rs)) |
| 736 | DRM_NOTE("Skipping spurious, invalid OA report\n"); |
| 737 | continue; |
| 738 | } |
| 739 | |
| 740 | /* |
| 741 | * XXX: Just keep the lower 21 bits for now since I'm not |
| 742 | * entirely sure if the HW touches any of the higher bits in |
| 743 | * this field |
| 744 | */ |
| 745 | ctx_id = report32[2] & 0x1fffff; |
| 746 | |
| 747 | /* |
| 748 | * Squash whatever is in the CTX_ID field if it's marked as |
| 749 | * invalid to be sure we avoid false-positive, single-context |
| 750 | * filtering below... |
| 751 | * |
| 752 | * Note: that we don't clear the valid_ctx_bit so userspace can |
| 753 | * understand that the ID has been squashed by the kernel. |
| 754 | */ |
| 755 | if (!(report32[0] & dev_priv->perf.oa.gen8_valid_ctx_bit)) |
| 756 | ctx_id = report32[2] = INVALID_CTX_ID; |
| 757 | |
| 758 | /* |
| 759 | * NB: For Gen 8 the OA unit no longer supports clock gating |
| 760 | * off for a specific context and the kernel can't securely |
| 761 | * stop the counters from updating as system-wide / global |
| 762 | * values. |
| 763 | * |
| 764 | * Automatic reports now include a context ID so reports can be |
| 765 | * filtered on the cpu but it's not worth trying to |
| 766 | * automatically subtract/hide counter progress for other |
| 767 | * contexts while filtering since we can't stop userspace |
| 768 | * issuing MI_REPORT_PERF_COUNT commands which would still |
| 769 | * provide a side-band view of the real values. |
| 770 | * |
| 771 | * To allow userspace (such as Mesa/GL_INTEL_performance_query) |
| 772 | * to normalize counters for a single filtered context then it |
| 773 | * needs be forwarded bookend context-switch reports so that it |
| 774 | * can track switches in between MI_REPORT_PERF_COUNT commands |
| 775 | * and can itself subtract/ignore the progress of counters |
| 776 | * associated with other contexts. Note that the hardware |
| 777 | * automatically triggers reports when switching to a new |
| 778 | * context which are tagged with the ID of the newly active |
| 779 | * context. To avoid the complexity (and likely fragility) of |
| 780 | * reading ahead while parsing reports to try and minimize |
| 781 | * forwarding redundant context switch reports (i.e. between |
| 782 | * other, unrelated contexts) we simply elect to forward them |
| 783 | * all. |
| 784 | * |
| 785 | * We don't rely solely on the reason field to identify context |
| 786 | * switches since it's not-uncommon for periodic samples to |
| 787 | * identify a switch before any 'context switch' report. |
| 788 | */ |
| 789 | if (!dev_priv->perf.oa.exclusive_stream->ctx || |
| 790 | dev_priv->perf.oa.specific_ctx_id == ctx_id || |
| 791 | (dev_priv->perf.oa.oa_buffer.last_ctx_id == |
| 792 | dev_priv->perf.oa.specific_ctx_id) || |
| 793 | reason & OAREPORT_REASON_CTX_SWITCH) { |
| 794 | |
| 795 | /* |
| 796 | * While filtering for a single context we avoid |
| 797 | * leaking the IDs of other contexts. |
| 798 | */ |
| 799 | if (dev_priv->perf.oa.exclusive_stream->ctx && |
| 800 | dev_priv->perf.oa.specific_ctx_id != ctx_id) { |
| 801 | report32[2] = INVALID_CTX_ID; |
| 802 | } |
| 803 | |
| 804 | ret = append_oa_sample(stream, buf, count, offset, |
| 805 | report); |
| 806 | if (ret) |
| 807 | break; |
| 808 | |
| 809 | dev_priv->perf.oa.oa_buffer.last_ctx_id = ctx_id; |
| 810 | } |
| 811 | |
| 812 | /* |
| 813 | * The above reason field sanity check is based on |
| 814 | * the assumption that the OA buffer is initially |
| 815 | * zeroed and we reset the field after copying so the |
| 816 | * check is still meaningful once old reports start |
| 817 | * being overwritten. |
| 818 | */ |
| 819 | report32[0] = 0; |
| 820 | } |
| 821 | |
| 822 | if (start_offset != *offset) { |
| 823 | spin_lock_irqsave(&dev_priv->perf.oa.oa_buffer.ptr_lock, flags); |
| 824 | |
| 825 | /* |
| 826 | * We removed the gtt_offset for the copy loop above, indexing |
| 827 | * relative to oa_buf_base so put back here... |
| 828 | */ |
| 829 | head += gtt_offset; |
| 830 | |
| 831 | I915_WRITE(GEN8_OAHEADPTR, head & GEN8_OAHEADPTR_MASK); |
| 832 | dev_priv->perf.oa.oa_buffer.head = head; |
| 833 | |
| 834 | spin_unlock_irqrestore(&dev_priv->perf.oa.oa_buffer.ptr_lock, flags); |
| 835 | } |
| 836 | |
| 837 | return ret; |
| 838 | } |
| 839 | |
| 840 | /** |
| 841 | * gen8_oa_read - copy status records then buffered OA reports |
| 842 | * @stream: An i915-perf stream opened for OA metrics |
| 843 | * @buf: destination buffer given by userspace |
| 844 | * @count: the number of bytes userspace wants to read |
| 845 | * @offset: (inout): the current position for writing into @buf |
| 846 | * |
| 847 | * Checks OA unit status registers and if necessary appends corresponding |
| 848 | * status records for userspace (such as for a buffer full condition) and then |
| 849 | * initiate appending any buffered OA reports. |
| 850 | * |
| 851 | * Updates @offset according to the number of bytes successfully copied into |
| 852 | * the userspace buffer. |
| 853 | * |
| 854 | * NB: some data may be successfully copied to the userspace buffer |
| 855 | * even if an error is returned, and this is reflected in the |
| 856 | * updated @offset. |
| 857 | * |
| 858 | * Returns: zero on success or a negative error code |
| 859 | */ |
| 860 | static int gen8_oa_read(struct i915_perf_stream *stream, |
| 861 | char __user *buf, |
| 862 | size_t count, |
| 863 | size_t *offset) |
| 864 | { |
| 865 | struct drm_i915_private *dev_priv = stream->dev_priv; |
| 866 | u32 oastatus; |
| 867 | int ret; |
| 868 | |
| 869 | if (WARN_ON(!dev_priv->perf.oa.oa_buffer.vaddr)) |
| 870 | return -EIO; |
| 871 | |
| 872 | oastatus = I915_READ(GEN8_OASTATUS); |
| 873 | |
| 874 | /* |
| 875 | * We treat OABUFFER_OVERFLOW as a significant error: |
| 876 | * |
| 877 | * Although theoretically we could handle this more gracefully |
| 878 | * sometimes, some Gens don't correctly suppress certain |
| 879 | * automatically triggered reports in this condition and so we |
| 880 | * have to assume that old reports are now being trampled |
| 881 | * over. |
| 882 | * |
| 883 | * Considering how we don't currently give userspace control |
| 884 | * over the OA buffer size and always configure a large 16MB |
| 885 | * buffer, then a buffer overflow does anyway likely indicate |
| 886 | * that something has gone quite badly wrong. |
| 887 | */ |
| 888 | if (oastatus & GEN8_OASTATUS_OABUFFER_OVERFLOW) { |
| 889 | ret = append_oa_status(stream, buf, count, offset, |
| 890 | DRM_I915_PERF_RECORD_OA_BUFFER_LOST); |
| 891 | if (ret) |
| 892 | return ret; |
| 893 | |
| 894 | DRM_DEBUG("OA buffer overflow (exponent = %d): force restart\n", |
| 895 | dev_priv->perf.oa.period_exponent); |
| 896 | |
| 897 | dev_priv->perf.oa.ops.oa_disable(dev_priv); |
| 898 | dev_priv->perf.oa.ops.oa_enable(dev_priv); |
| 899 | |
| 900 | /* |
| 901 | * Note: .oa_enable() is expected to re-init the oabuffer and |
| 902 | * reset GEN8_OASTATUS for us |
| 903 | */ |
| 904 | oastatus = I915_READ(GEN8_OASTATUS); |
| 905 | } |
| 906 | |
| 907 | if (oastatus & GEN8_OASTATUS_REPORT_LOST) { |
| 908 | ret = append_oa_status(stream, buf, count, offset, |
| 909 | DRM_I915_PERF_RECORD_OA_REPORT_LOST); |
| 910 | if (ret) |
| 911 | return ret; |
| 912 | I915_WRITE(GEN8_OASTATUS, |
| 913 | oastatus & ~GEN8_OASTATUS_REPORT_LOST); |
| 914 | } |
| 915 | |
| 916 | return gen8_append_oa_reports(stream, buf, count, offset); |
| 917 | } |
| 918 | |
| 919 | /** |
| 920 | * Copies all buffered OA reports into userspace read() buffer. |
| 921 | * @stream: An i915-perf stream opened for OA metrics |
| 922 | * @buf: destination buffer given by userspace |
| 923 | * @count: the number of bytes userspace wants to read |
| 924 | * @offset: (inout): the current position for writing into @buf |
| 925 | * |
| 926 | * Notably any error condition resulting in a short read (-%ENOSPC or |
| 927 | * -%EFAULT) will be returned even though one or more records may |
| 928 | * have been successfully copied. In this case it's up to the caller |
| 929 | * to decide if the error should be squashed before returning to |
| 930 | * userspace. |
| 931 | * |
| 932 | * Note: reports are consumed from the head, and appended to the |
| 933 | * tail, so the tail chases the head?... If you think that's mad |
| 934 | * and back-to-front you're not alone, but this follows the |
| 935 | * Gen PRM naming convention. |
| 936 | * |
| 937 | * Returns: 0 on success, negative error code on failure. |
| 938 | */ |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 939 | static int gen7_append_oa_reports(struct i915_perf_stream *stream, |
| 940 | char __user *buf, |
| 941 | size_t count, |
Robert Bragg | 3bb335c | 2017-05-11 16:43:27 +0100 | [diff] [blame] | 942 | size_t *offset) |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 943 | { |
| 944 | struct drm_i915_private *dev_priv = stream->dev_priv; |
| 945 | int report_size = dev_priv->perf.oa.oa_buffer.format_size; |
| 946 | u8 *oa_buf_base = dev_priv->perf.oa.oa_buffer.vaddr; |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 947 | u32 gtt_offset = i915_ggtt_offset(dev_priv->perf.oa.oa_buffer.vma); |
| 948 | u32 mask = (OA_BUFFER_SIZE - 1); |
Robert Bragg | 3bb335c | 2017-05-11 16:43:27 +0100 | [diff] [blame] | 949 | size_t start_offset = *offset; |
Robert Bragg | 0dd860c | 2017-05-11 16:43:28 +0100 | [diff] [blame] | 950 | unsigned long flags; |
| 951 | unsigned int aged_tail_idx; |
| 952 | u32 head, tail; |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 953 | u32 taken; |
| 954 | int ret = 0; |
| 955 | |
| 956 | if (WARN_ON(!stream->enabled)) |
| 957 | return -EIO; |
| 958 | |
Robert Bragg | 0dd860c | 2017-05-11 16:43:28 +0100 | [diff] [blame] | 959 | spin_lock_irqsave(&dev_priv->perf.oa.oa_buffer.ptr_lock, flags); |
Robert Bragg | f279020 | 2017-05-11 16:43:26 +0100 | [diff] [blame] | 960 | |
Robert Bragg | 0dd860c | 2017-05-11 16:43:28 +0100 | [diff] [blame] | 961 | head = dev_priv->perf.oa.oa_buffer.head; |
| 962 | aged_tail_idx = dev_priv->perf.oa.oa_buffer.aged_tail_idx; |
| 963 | tail = dev_priv->perf.oa.oa_buffer.tails[aged_tail_idx].offset; |
| 964 | |
| 965 | spin_unlock_irqrestore(&dev_priv->perf.oa.oa_buffer.ptr_lock, flags); |
| 966 | |
| 967 | /* An invalid tail pointer here means we're still waiting for the poll |
| 968 | * hrtimer callback to give us a pointer |
Robert Bragg | f279020 | 2017-05-11 16:43:26 +0100 | [diff] [blame] | 969 | */ |
Robert Bragg | 0dd860c | 2017-05-11 16:43:28 +0100 | [diff] [blame] | 970 | if (tail == INVALID_TAIL_PTR) |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 971 | return -EAGAIN; |
| 972 | |
Robert Bragg | 0dd860c | 2017-05-11 16:43:28 +0100 | [diff] [blame] | 973 | /* NB: oa_buffer.head/tail include the gtt_offset which we don't want |
| 974 | * while indexing relative to oa_buf_base. |
| 975 | */ |
| 976 | head -= gtt_offset; |
| 977 | tail -= gtt_offset; |
| 978 | |
| 979 | /* An out of bounds or misaligned head or tail pointer implies a driver |
| 980 | * bug since we validate + align the tail pointers we read from the |
| 981 | * hardware and we are in full control of the head pointer which should |
| 982 | * only be incremented by multiples of the report size (notably also |
| 983 | * all a power of two). |
| 984 | */ |
| 985 | if (WARN_ONCE(head > OA_BUFFER_SIZE || head % report_size || |
| 986 | tail > OA_BUFFER_SIZE || tail % report_size, |
| 987 | "Inconsistent OA buffer pointers: head = %u, tail = %u\n", |
| 988 | head, tail)) |
| 989 | return -EIO; |
| 990 | |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 991 | |
| 992 | for (/* none */; |
| 993 | (taken = OA_TAKEN(tail, head)); |
| 994 | head = (head + report_size) & mask) { |
| 995 | u8 *report = oa_buf_base + head; |
| 996 | u32 *report32 = (void *)report; |
| 997 | |
| 998 | /* All the report sizes factor neatly into the buffer |
| 999 | * size so we never expect to see a report split |
| 1000 | * between the beginning and end of the buffer. |
| 1001 | * |
| 1002 | * Given the initial alignment check a misalignment |
| 1003 | * here would imply a driver bug that would result |
| 1004 | * in an overrun. |
| 1005 | */ |
| 1006 | if (WARN_ON((OA_BUFFER_SIZE - head) < report_size)) { |
| 1007 | DRM_ERROR("Spurious OA head ptr: non-integral report offset\n"); |
| 1008 | break; |
| 1009 | } |
| 1010 | |
| 1011 | /* The report-ID field for periodic samples includes |
| 1012 | * some undocumented flags related to what triggered |
| 1013 | * the report and is never expected to be zero so we |
| 1014 | * can check that the report isn't invalid before |
| 1015 | * copying it to userspace... |
| 1016 | */ |
| 1017 | if (report32[0] == 0) { |
Robert Bragg | 712122e | 2017-05-11 16:43:31 +0100 | [diff] [blame] | 1018 | if (__ratelimit(&dev_priv->perf.oa.spurious_report_rs)) |
| 1019 | DRM_NOTE("Skipping spurious, invalid OA report\n"); |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 1020 | continue; |
| 1021 | } |
| 1022 | |
| 1023 | ret = append_oa_sample(stream, buf, count, offset, report); |
| 1024 | if (ret) |
| 1025 | break; |
| 1026 | |
| 1027 | /* The above report-id field sanity check is based on |
| 1028 | * the assumption that the OA buffer is initially |
| 1029 | * zeroed and we reset the field after copying so the |
| 1030 | * check is still meaningful once old reports start |
| 1031 | * being overwritten. |
| 1032 | */ |
| 1033 | report32[0] = 0; |
| 1034 | } |
| 1035 | |
Robert Bragg | 3bb335c | 2017-05-11 16:43:27 +0100 | [diff] [blame] | 1036 | if (start_offset != *offset) { |
Robert Bragg | 0dd860c | 2017-05-11 16:43:28 +0100 | [diff] [blame] | 1037 | spin_lock_irqsave(&dev_priv->perf.oa.oa_buffer.ptr_lock, flags); |
| 1038 | |
Robert Bragg | 3bb335c | 2017-05-11 16:43:27 +0100 | [diff] [blame] | 1039 | /* We removed the gtt_offset for the copy loop above, indexing |
| 1040 | * relative to oa_buf_base so put back here... |
| 1041 | */ |
| 1042 | head += gtt_offset; |
| 1043 | |
| 1044 | I915_WRITE(GEN7_OASTATUS2, |
| 1045 | ((head & GEN7_OASTATUS2_HEAD_MASK) | |
Lionel Landwerlin | b82ed43 | 2018-03-26 10:08:26 +0100 | [diff] [blame] | 1046 | GEN7_OASTATUS2_MEM_SELECT_GGTT)); |
Robert Bragg | 3bb335c | 2017-05-11 16:43:27 +0100 | [diff] [blame] | 1047 | dev_priv->perf.oa.oa_buffer.head = head; |
Robert Bragg | 0dd860c | 2017-05-11 16:43:28 +0100 | [diff] [blame] | 1048 | |
| 1049 | spin_unlock_irqrestore(&dev_priv->perf.oa.oa_buffer.ptr_lock, flags); |
Robert Bragg | 3bb335c | 2017-05-11 16:43:27 +0100 | [diff] [blame] | 1050 | } |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 1051 | |
| 1052 | return ret; |
| 1053 | } |
| 1054 | |
Robert Bragg | 16d98b3 | 2016-12-07 21:40:33 +0000 | [diff] [blame] | 1055 | /** |
| 1056 | * gen7_oa_read - copy status records then buffered OA reports |
| 1057 | * @stream: An i915-perf stream opened for OA metrics |
| 1058 | * @buf: destination buffer given by userspace |
| 1059 | * @count: the number of bytes userspace wants to read |
| 1060 | * @offset: (inout): the current position for writing into @buf |
| 1061 | * |
| 1062 | * Checks Gen 7 specific OA unit status registers and if necessary appends |
| 1063 | * corresponding status records for userspace (such as for a buffer full |
| 1064 | * condition) and then initiate appending any buffered OA reports. |
| 1065 | * |
| 1066 | * Updates @offset according to the number of bytes successfully copied into |
| 1067 | * the userspace buffer. |
| 1068 | * |
| 1069 | * Returns: zero on success or a negative error code |
| 1070 | */ |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 1071 | static int gen7_oa_read(struct i915_perf_stream *stream, |
| 1072 | char __user *buf, |
| 1073 | size_t count, |
| 1074 | size_t *offset) |
| 1075 | { |
| 1076 | struct drm_i915_private *dev_priv = stream->dev_priv; |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 1077 | u32 oastatus1; |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 1078 | int ret; |
| 1079 | |
| 1080 | if (WARN_ON(!dev_priv->perf.oa.oa_buffer.vaddr)) |
| 1081 | return -EIO; |
| 1082 | |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 1083 | oastatus1 = I915_READ(GEN7_OASTATUS1); |
| 1084 | |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 1085 | /* XXX: On Haswell we don't have a safe way to clear oastatus1 |
| 1086 | * bits while the OA unit is enabled (while the tail pointer |
| 1087 | * may be updated asynchronously) so we ignore status bits |
| 1088 | * that have already been reported to userspace. |
| 1089 | */ |
| 1090 | oastatus1 &= ~dev_priv->perf.oa.gen7_latched_oastatus1; |
| 1091 | |
| 1092 | /* We treat OABUFFER_OVERFLOW as a significant error: |
| 1093 | * |
| 1094 | * - The status can be interpreted to mean that the buffer is |
| 1095 | * currently full (with a higher precedence than OA_TAKEN() |
| 1096 | * which will start to report a near-empty buffer after an |
| 1097 | * overflow) but it's awkward that we can't clear the status |
| 1098 | * on Haswell, so without a reset we won't be able to catch |
| 1099 | * the state again. |
| 1100 | * |
| 1101 | * - Since it also implies the HW has started overwriting old |
| 1102 | * reports it may also affect our sanity checks for invalid |
| 1103 | * reports when copying to userspace that assume new reports |
| 1104 | * are being written to cleared memory. |
| 1105 | * |
| 1106 | * - In the future we may want to introduce a flight recorder |
| 1107 | * mode where the driver will automatically maintain a safe |
| 1108 | * guard band between head/tail, avoiding this overflow |
| 1109 | * condition, but we avoid the added driver complexity for |
| 1110 | * now. |
| 1111 | */ |
| 1112 | if (unlikely(oastatus1 & GEN7_OASTATUS1_OABUFFER_OVERFLOW)) { |
| 1113 | ret = append_oa_status(stream, buf, count, offset, |
| 1114 | DRM_I915_PERF_RECORD_OA_BUFFER_LOST); |
| 1115 | if (ret) |
| 1116 | return ret; |
| 1117 | |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 1118 | DRM_DEBUG("OA buffer overflow (exponent = %d): force restart\n", |
| 1119 | dev_priv->perf.oa.period_exponent); |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 1120 | |
| 1121 | dev_priv->perf.oa.ops.oa_disable(dev_priv); |
| 1122 | dev_priv->perf.oa.ops.oa_enable(dev_priv); |
| 1123 | |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 1124 | oastatus1 = I915_READ(GEN7_OASTATUS1); |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 1125 | } |
| 1126 | |
| 1127 | if (unlikely(oastatus1 & GEN7_OASTATUS1_REPORT_LOST)) { |
| 1128 | ret = append_oa_status(stream, buf, count, offset, |
| 1129 | DRM_I915_PERF_RECORD_OA_REPORT_LOST); |
| 1130 | if (ret) |
| 1131 | return ret; |
| 1132 | dev_priv->perf.oa.gen7_latched_oastatus1 |= |
| 1133 | GEN7_OASTATUS1_REPORT_LOST; |
| 1134 | } |
| 1135 | |
Robert Bragg | 3bb335c | 2017-05-11 16:43:27 +0100 | [diff] [blame] | 1136 | return gen7_append_oa_reports(stream, buf, count, offset); |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 1137 | } |
| 1138 | |
Robert Bragg | 16d98b3 | 2016-12-07 21:40:33 +0000 | [diff] [blame] | 1139 | /** |
| 1140 | * i915_oa_wait_unlocked - handles blocking IO until OA data available |
| 1141 | * @stream: An i915-perf stream opened for OA metrics |
| 1142 | * |
| 1143 | * Called when userspace tries to read() from a blocking stream FD opened |
| 1144 | * for OA metrics. It waits until the hrtimer callback finds a non-empty |
| 1145 | * OA buffer and wakes us. |
| 1146 | * |
| 1147 | * Note: it's acceptable to have this return with some false positives |
| 1148 | * since any subsequent read handling will return -EAGAIN if there isn't |
| 1149 | * really data ready for userspace yet. |
| 1150 | * |
| 1151 | * Returns: zero on success or a negative error code |
| 1152 | */ |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 1153 | static int i915_oa_wait_unlocked(struct i915_perf_stream *stream) |
| 1154 | { |
| 1155 | struct drm_i915_private *dev_priv = stream->dev_priv; |
| 1156 | |
| 1157 | /* We would wait indefinitely if periodic sampling is not enabled */ |
| 1158 | if (!dev_priv->perf.oa.periodic) |
| 1159 | return -EIO; |
| 1160 | |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 1161 | return wait_event_interruptible(dev_priv->perf.oa.poll_wq, |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 1162 | oa_buffer_check_unlocked(dev_priv)); |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 1163 | } |
| 1164 | |
Robert Bragg | 16d98b3 | 2016-12-07 21:40:33 +0000 | [diff] [blame] | 1165 | /** |
| 1166 | * i915_oa_poll_wait - call poll_wait() for an OA stream poll() |
| 1167 | * @stream: An i915-perf stream opened for OA metrics |
| 1168 | * @file: An i915 perf stream file |
| 1169 | * @wait: poll() state table |
| 1170 | * |
| 1171 | * For handling userspace polling on an i915 perf stream opened for OA metrics, |
| 1172 | * this starts a poll_wait with the wait queue that our hrtimer callback wakes |
| 1173 | * when it sees data ready to read in the circular OA buffer. |
| 1174 | */ |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 1175 | static void i915_oa_poll_wait(struct i915_perf_stream *stream, |
| 1176 | struct file *file, |
| 1177 | poll_table *wait) |
| 1178 | { |
| 1179 | struct drm_i915_private *dev_priv = stream->dev_priv; |
| 1180 | |
| 1181 | poll_wait(file, &dev_priv->perf.oa.poll_wq, wait); |
| 1182 | } |
| 1183 | |
Robert Bragg | 16d98b3 | 2016-12-07 21:40:33 +0000 | [diff] [blame] | 1184 | /** |
| 1185 | * i915_oa_read - just calls through to &i915_oa_ops->read |
| 1186 | * @stream: An i915-perf stream opened for OA metrics |
| 1187 | * @buf: destination buffer given by userspace |
| 1188 | * @count: the number of bytes userspace wants to read |
| 1189 | * @offset: (inout): the current position for writing into @buf |
| 1190 | * |
| 1191 | * Updates @offset according to the number of bytes successfully copied into |
| 1192 | * the userspace buffer. |
| 1193 | * |
| 1194 | * Returns: zero on success or a negative error code |
| 1195 | */ |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 1196 | static int i915_oa_read(struct i915_perf_stream *stream, |
| 1197 | char __user *buf, |
| 1198 | size_t count, |
| 1199 | size_t *offset) |
| 1200 | { |
| 1201 | struct drm_i915_private *dev_priv = stream->dev_priv; |
| 1202 | |
| 1203 | return dev_priv->perf.oa.ops.read(stream, buf, count, offset); |
| 1204 | } |
| 1205 | |
Robert Bragg | 16d98b3 | 2016-12-07 21:40:33 +0000 | [diff] [blame] | 1206 | /** |
| 1207 | * oa_get_render_ctx_id - determine and hold ctx hw id |
| 1208 | * @stream: An i915-perf stream opened for OA metrics |
| 1209 | * |
| 1210 | * Determine the render context hw id, and ensure it remains fixed for the |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 1211 | * lifetime of the stream. This ensures that we don't have to worry about |
| 1212 | * updating the context ID in OACONTROL on the fly. |
Robert Bragg | 16d98b3 | 2016-12-07 21:40:33 +0000 | [diff] [blame] | 1213 | * |
| 1214 | * Returns: zero on success or a negative error code |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 1215 | */ |
| 1216 | static int oa_get_render_ctx_id(struct i915_perf_stream *stream) |
| 1217 | { |
| 1218 | struct drm_i915_private *dev_priv = stream->dev_priv; |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 1219 | |
Chris Wilson | fb5c551 | 2017-11-20 20:55:00 +0000 | [diff] [blame] | 1220 | if (HAS_LOGICAL_RING_CONTEXTS(dev_priv)) { |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 1221 | dev_priv->perf.oa.specific_ctx_id = stream->ctx->hw_id; |
Chris Wilson | fb5c551 | 2017-11-20 20:55:00 +0000 | [diff] [blame] | 1222 | } else { |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 1223 | struct intel_engine_cs *engine = dev_priv->engine[RCS]; |
Chris Wilson | 1fc44d9 | 2018-05-17 22:26:32 +0100 | [diff] [blame^] | 1224 | struct intel_context *ce; |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 1225 | int ret; |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 1226 | |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 1227 | ret = i915_mutex_lock_interruptible(&dev_priv->drm); |
| 1228 | if (ret) |
| 1229 | return ret; |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 1230 | |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 1231 | /* |
| 1232 | * As the ID is the gtt offset of the context's vma we |
| 1233 | * pin the vma to ensure the ID remains fixed. |
| 1234 | * |
| 1235 | * NB: implied RCS engine... |
| 1236 | */ |
Chris Wilson | 1fc44d9 | 2018-05-17 22:26:32 +0100 | [diff] [blame^] | 1237 | ce = intel_context_pin(stream->ctx, engine); |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 1238 | mutex_unlock(&dev_priv->drm.struct_mutex); |
Chris Wilson | 1fc44d9 | 2018-05-17 22:26:32 +0100 | [diff] [blame^] | 1239 | if (IS_ERR(ce)) |
| 1240 | return PTR_ERR(ce); |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 1241 | |
Chris Wilson | 1fc44d9 | 2018-05-17 22:26:32 +0100 | [diff] [blame^] | 1242 | dev_priv->perf.oa.pinned_ctx = ce; |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 1243 | |
| 1244 | /* |
| 1245 | * Explicitly track the ID (instead of calling |
| 1246 | * i915_ggtt_offset() on the fly) considering the difference |
| 1247 | * with gen8+ and execlists |
| 1248 | */ |
Chris Wilson | 1fc44d9 | 2018-05-17 22:26:32 +0100 | [diff] [blame^] | 1249 | dev_priv->perf.oa.specific_ctx_id = i915_ggtt_offset(ce->state); |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 1250 | } |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 1251 | |
Chris Wilson | 266a240 | 2017-05-04 10:33:08 +0100 | [diff] [blame] | 1252 | return 0; |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 1253 | } |
| 1254 | |
Robert Bragg | 16d98b3 | 2016-12-07 21:40:33 +0000 | [diff] [blame] | 1255 | /** |
| 1256 | * oa_put_render_ctx_id - counterpart to oa_get_render_ctx_id releases hold |
| 1257 | * @stream: An i915-perf stream opened for OA metrics |
| 1258 | * |
| 1259 | * In case anything needed doing to ensure the context HW ID would remain valid |
| 1260 | * for the lifetime of the stream, then that can be undone here. |
| 1261 | */ |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 1262 | static void oa_put_render_ctx_id(struct i915_perf_stream *stream) |
| 1263 | { |
| 1264 | struct drm_i915_private *dev_priv = stream->dev_priv; |
Chris Wilson | 1fc44d9 | 2018-05-17 22:26:32 +0100 | [diff] [blame^] | 1265 | struct intel_context *ce; |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 1266 | |
Chris Wilson | 1fc44d9 | 2018-05-17 22:26:32 +0100 | [diff] [blame^] | 1267 | dev_priv->perf.oa.specific_ctx_id = INVALID_CTX_ID; |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 1268 | |
Chris Wilson | 1fc44d9 | 2018-05-17 22:26:32 +0100 | [diff] [blame^] | 1269 | ce = fetch_and_zero(&dev_priv->perf.oa.pinned_ctx); |
| 1270 | if (ce) { |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 1271 | mutex_lock(&dev_priv->drm.struct_mutex); |
Chris Wilson | 1fc44d9 | 2018-05-17 22:26:32 +0100 | [diff] [blame^] | 1272 | intel_context_unpin(ce); |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 1273 | mutex_unlock(&dev_priv->drm.struct_mutex); |
| 1274 | } |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 1275 | } |
| 1276 | |
| 1277 | static void |
| 1278 | free_oa_buffer(struct drm_i915_private *i915) |
| 1279 | { |
| 1280 | mutex_lock(&i915->drm.struct_mutex); |
| 1281 | |
| 1282 | i915_gem_object_unpin_map(i915->perf.oa.oa_buffer.vma->obj); |
| 1283 | i915_vma_unpin(i915->perf.oa.oa_buffer.vma); |
| 1284 | i915_gem_object_put(i915->perf.oa.oa_buffer.vma->obj); |
| 1285 | |
| 1286 | i915->perf.oa.oa_buffer.vma = NULL; |
| 1287 | i915->perf.oa.oa_buffer.vaddr = NULL; |
| 1288 | |
| 1289 | mutex_unlock(&i915->drm.struct_mutex); |
| 1290 | } |
| 1291 | |
| 1292 | static void i915_oa_stream_destroy(struct i915_perf_stream *stream) |
| 1293 | { |
| 1294 | struct drm_i915_private *dev_priv = stream->dev_priv; |
| 1295 | |
| 1296 | BUG_ON(stream != dev_priv->perf.oa.exclusive_stream); |
| 1297 | |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 1298 | /* |
Lionel Landwerlin | f89823c | 2017-08-03 18:05:50 +0100 | [diff] [blame] | 1299 | * Unset exclusive_stream first, it will be checked while disabling |
| 1300 | * the metric set on gen8+. |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 1301 | */ |
Lionel Landwerlin | 701f823 | 2017-08-03 17:58:08 +0100 | [diff] [blame] | 1302 | mutex_lock(&dev_priv->drm.struct_mutex); |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 1303 | dev_priv->perf.oa.exclusive_stream = NULL; |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 1304 | dev_priv->perf.oa.ops.disable_metric_set(dev_priv); |
Lionel Landwerlin | 41d3fdc | 2018-03-01 11:06:13 +0000 | [diff] [blame] | 1305 | mutex_unlock(&dev_priv->drm.struct_mutex); |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 1306 | |
| 1307 | free_oa_buffer(dev_priv); |
| 1308 | |
| 1309 | intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL); |
| 1310 | intel_runtime_pm_put(dev_priv); |
| 1311 | |
| 1312 | if (stream->ctx) |
| 1313 | oa_put_render_ctx_id(stream); |
| 1314 | |
Lionel Landwerlin | f89823c | 2017-08-03 18:05:50 +0100 | [diff] [blame] | 1315 | put_oa_config(dev_priv, stream->oa_config); |
| 1316 | |
Robert Bragg | 712122e | 2017-05-11 16:43:31 +0100 | [diff] [blame] | 1317 | if (dev_priv->perf.oa.spurious_report_rs.missed) { |
| 1318 | DRM_NOTE("%d spurious OA report notices suppressed due to ratelimiting\n", |
| 1319 | dev_priv->perf.oa.spurious_report_rs.missed); |
| 1320 | } |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 1321 | } |
| 1322 | |
| 1323 | static void gen7_init_oa_buffer(struct drm_i915_private *dev_priv) |
| 1324 | { |
| 1325 | u32 gtt_offset = i915_ggtt_offset(dev_priv->perf.oa.oa_buffer.vma); |
Robert Bragg | 0dd860c | 2017-05-11 16:43:28 +0100 | [diff] [blame] | 1326 | unsigned long flags; |
| 1327 | |
| 1328 | spin_lock_irqsave(&dev_priv->perf.oa.oa_buffer.ptr_lock, flags); |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 1329 | |
| 1330 | /* Pre-DevBDW: OABUFFER must be set with counters off, |
| 1331 | * before OASTATUS1, but after OASTATUS2 |
| 1332 | */ |
Lionel Landwerlin | b82ed43 | 2018-03-26 10:08:26 +0100 | [diff] [blame] | 1333 | I915_WRITE(GEN7_OASTATUS2, |
| 1334 | gtt_offset | GEN7_OASTATUS2_MEM_SELECT_GGTT); /* head */ |
Robert Bragg | f279020 | 2017-05-11 16:43:26 +0100 | [diff] [blame] | 1335 | dev_priv->perf.oa.oa_buffer.head = gtt_offset; |
| 1336 | |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 1337 | I915_WRITE(GEN7_OABUFFER, gtt_offset); |
Robert Bragg | f279020 | 2017-05-11 16:43:26 +0100 | [diff] [blame] | 1338 | |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 1339 | I915_WRITE(GEN7_OASTATUS1, gtt_offset | OABUFFER_SIZE_16M); /* tail */ |
| 1340 | |
Robert Bragg | 0dd860c | 2017-05-11 16:43:28 +0100 | [diff] [blame] | 1341 | /* Mark that we need updated tail pointers to read from... */ |
| 1342 | dev_priv->perf.oa.oa_buffer.tails[0].offset = INVALID_TAIL_PTR; |
| 1343 | dev_priv->perf.oa.oa_buffer.tails[1].offset = INVALID_TAIL_PTR; |
| 1344 | |
| 1345 | spin_unlock_irqrestore(&dev_priv->perf.oa.oa_buffer.ptr_lock, flags); |
| 1346 | |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 1347 | /* On Haswell we have to track which OASTATUS1 flags we've |
| 1348 | * already seen since they can't be cleared while periodic |
| 1349 | * sampling is enabled. |
| 1350 | */ |
| 1351 | dev_priv->perf.oa.gen7_latched_oastatus1 = 0; |
| 1352 | |
| 1353 | /* NB: although the OA buffer will initially be allocated |
| 1354 | * zeroed via shmfs (and so this memset is redundant when |
| 1355 | * first allocating), we may re-init the OA buffer, either |
| 1356 | * when re-enabling a stream or in error/reset paths. |
| 1357 | * |
| 1358 | * The reason we clear the buffer for each re-init is for the |
| 1359 | * sanity check in gen7_append_oa_reports() that looks at the |
| 1360 | * report-id field to make sure it's non-zero which relies on |
| 1361 | * the assumption that new reports are being written to zeroed |
| 1362 | * memory... |
| 1363 | */ |
| 1364 | memset(dev_priv->perf.oa.oa_buffer.vaddr, 0, OA_BUFFER_SIZE); |
| 1365 | |
| 1366 | /* Maybe make ->pollin per-stream state if we support multiple |
| 1367 | * concurrent streams in the future. |
| 1368 | */ |
| 1369 | dev_priv->perf.oa.pollin = false; |
| 1370 | } |
| 1371 | |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 1372 | static void gen8_init_oa_buffer(struct drm_i915_private *dev_priv) |
| 1373 | { |
| 1374 | u32 gtt_offset = i915_ggtt_offset(dev_priv->perf.oa.oa_buffer.vma); |
| 1375 | unsigned long flags; |
| 1376 | |
| 1377 | spin_lock_irqsave(&dev_priv->perf.oa.oa_buffer.ptr_lock, flags); |
| 1378 | |
| 1379 | I915_WRITE(GEN8_OASTATUS, 0); |
| 1380 | I915_WRITE(GEN8_OAHEADPTR, gtt_offset); |
| 1381 | dev_priv->perf.oa.oa_buffer.head = gtt_offset; |
| 1382 | |
| 1383 | I915_WRITE(GEN8_OABUFFER_UDW, 0); |
| 1384 | |
| 1385 | /* |
| 1386 | * PRM says: |
| 1387 | * |
| 1388 | * "This MMIO must be set before the OATAILPTR |
| 1389 | * register and after the OAHEADPTR register. This is |
| 1390 | * to enable proper functionality of the overflow |
| 1391 | * bit." |
| 1392 | */ |
| 1393 | I915_WRITE(GEN8_OABUFFER, gtt_offset | |
Lionel Landwerlin | b82ed43 | 2018-03-26 10:08:26 +0100 | [diff] [blame] | 1394 | OABUFFER_SIZE_16M | GEN8_OABUFFER_MEM_SELECT_GGTT); |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 1395 | I915_WRITE(GEN8_OATAILPTR, gtt_offset & GEN8_OATAILPTR_MASK); |
| 1396 | |
| 1397 | /* Mark that we need updated tail pointers to read from... */ |
| 1398 | dev_priv->perf.oa.oa_buffer.tails[0].offset = INVALID_TAIL_PTR; |
| 1399 | dev_priv->perf.oa.oa_buffer.tails[1].offset = INVALID_TAIL_PTR; |
| 1400 | |
| 1401 | /* |
| 1402 | * Reset state used to recognise context switches, affecting which |
| 1403 | * reports we will forward to userspace while filtering for a single |
| 1404 | * context. |
| 1405 | */ |
| 1406 | dev_priv->perf.oa.oa_buffer.last_ctx_id = INVALID_CTX_ID; |
| 1407 | |
| 1408 | spin_unlock_irqrestore(&dev_priv->perf.oa.oa_buffer.ptr_lock, flags); |
| 1409 | |
| 1410 | /* |
| 1411 | * NB: although the OA buffer will initially be allocated |
| 1412 | * zeroed via shmfs (and so this memset is redundant when |
| 1413 | * first allocating), we may re-init the OA buffer, either |
| 1414 | * when re-enabling a stream or in error/reset paths. |
| 1415 | * |
| 1416 | * The reason we clear the buffer for each re-init is for the |
| 1417 | * sanity check in gen8_append_oa_reports() that looks at the |
| 1418 | * reason field to make sure it's non-zero which relies on |
| 1419 | * the assumption that new reports are being written to zeroed |
| 1420 | * memory... |
| 1421 | */ |
| 1422 | memset(dev_priv->perf.oa.oa_buffer.vaddr, 0, OA_BUFFER_SIZE); |
| 1423 | |
| 1424 | /* |
| 1425 | * Maybe make ->pollin per-stream state if we support multiple |
| 1426 | * concurrent streams in the future. |
| 1427 | */ |
| 1428 | dev_priv->perf.oa.pollin = false; |
| 1429 | } |
| 1430 | |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 1431 | static int alloc_oa_buffer(struct drm_i915_private *dev_priv) |
| 1432 | { |
| 1433 | struct drm_i915_gem_object *bo; |
| 1434 | struct i915_vma *vma; |
| 1435 | int ret; |
| 1436 | |
| 1437 | if (WARN_ON(dev_priv->perf.oa.oa_buffer.vma)) |
| 1438 | return -ENODEV; |
| 1439 | |
| 1440 | ret = i915_mutex_lock_interruptible(&dev_priv->drm); |
| 1441 | if (ret) |
| 1442 | return ret; |
| 1443 | |
| 1444 | BUILD_BUG_ON_NOT_POWER_OF_2(OA_BUFFER_SIZE); |
| 1445 | BUILD_BUG_ON(OA_BUFFER_SIZE < SZ_128K || OA_BUFFER_SIZE > SZ_16M); |
| 1446 | |
Tvrtko Ursulin | 12d79d7 | 2016-12-01 14:16:37 +0000 | [diff] [blame] | 1447 | bo = i915_gem_object_create(dev_priv, OA_BUFFER_SIZE); |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 1448 | if (IS_ERR(bo)) { |
| 1449 | DRM_ERROR("Failed to allocate OA buffer\n"); |
| 1450 | ret = PTR_ERR(bo); |
| 1451 | goto unlock; |
| 1452 | } |
| 1453 | |
| 1454 | ret = i915_gem_object_set_cache_level(bo, I915_CACHE_LLC); |
| 1455 | if (ret) |
| 1456 | goto err_unref; |
| 1457 | |
| 1458 | /* PreHSW required 512K alignment, HSW requires 16M */ |
| 1459 | vma = i915_gem_object_ggtt_pin(bo, NULL, 0, SZ_16M, 0); |
| 1460 | if (IS_ERR(vma)) { |
| 1461 | ret = PTR_ERR(vma); |
| 1462 | goto err_unref; |
| 1463 | } |
| 1464 | dev_priv->perf.oa.oa_buffer.vma = vma; |
| 1465 | |
| 1466 | dev_priv->perf.oa.oa_buffer.vaddr = |
| 1467 | i915_gem_object_pin_map(bo, I915_MAP_WB); |
| 1468 | if (IS_ERR(dev_priv->perf.oa.oa_buffer.vaddr)) { |
| 1469 | ret = PTR_ERR(dev_priv->perf.oa.oa_buffer.vaddr); |
| 1470 | goto err_unpin; |
| 1471 | } |
| 1472 | |
| 1473 | dev_priv->perf.oa.ops.init_oa_buffer(dev_priv); |
| 1474 | |
| 1475 | DRM_DEBUG_DRIVER("OA Buffer initialized, gtt offset = 0x%x, vaddr = %p\n", |
| 1476 | i915_ggtt_offset(dev_priv->perf.oa.oa_buffer.vma), |
| 1477 | dev_priv->perf.oa.oa_buffer.vaddr); |
| 1478 | |
| 1479 | goto unlock; |
| 1480 | |
| 1481 | err_unpin: |
| 1482 | __i915_vma_unpin(vma); |
| 1483 | |
| 1484 | err_unref: |
| 1485 | i915_gem_object_put(bo); |
| 1486 | |
| 1487 | dev_priv->perf.oa.oa_buffer.vaddr = NULL; |
| 1488 | dev_priv->perf.oa.oa_buffer.vma = NULL; |
| 1489 | |
| 1490 | unlock: |
| 1491 | mutex_unlock(&dev_priv->drm.struct_mutex); |
| 1492 | return ret; |
| 1493 | } |
| 1494 | |
| 1495 | static void config_oa_regs(struct drm_i915_private *dev_priv, |
| 1496 | const struct i915_oa_reg *regs, |
Lionel Landwerlin | 701f823 | 2017-08-03 17:58:08 +0100 | [diff] [blame] | 1497 | u32 n_regs) |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 1498 | { |
Lionel Landwerlin | 701f823 | 2017-08-03 17:58:08 +0100 | [diff] [blame] | 1499 | u32 i; |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 1500 | |
| 1501 | for (i = 0; i < n_regs; i++) { |
| 1502 | const struct i915_oa_reg *reg = regs + i; |
| 1503 | |
| 1504 | I915_WRITE(reg->addr, reg->value); |
| 1505 | } |
| 1506 | } |
| 1507 | |
Lionel Landwerlin | 701f823 | 2017-08-03 17:58:08 +0100 | [diff] [blame] | 1508 | static int hsw_enable_metric_set(struct drm_i915_private *dev_priv, |
| 1509 | const struct i915_oa_config *oa_config) |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 1510 | { |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 1511 | /* PRM: |
| 1512 | * |
| 1513 | * OA unit is using “crclk” for its functionality. When trunk |
| 1514 | * level clock gating takes place, OA clock would be gated, |
| 1515 | * unable to count the events from non-render clock domain. |
| 1516 | * Render clock gating must be disabled when OA is enabled to |
| 1517 | * count the events from non-render domain. Unit level clock |
| 1518 | * gating for RCS should also be disabled. |
| 1519 | */ |
| 1520 | I915_WRITE(GEN7_MISCCPCTL, (I915_READ(GEN7_MISCCPCTL) & |
| 1521 | ~GEN7_DOP_CLOCK_GATE_ENABLE)); |
| 1522 | I915_WRITE(GEN6_UCGCTL1, (I915_READ(GEN6_UCGCTL1) | |
| 1523 | GEN6_CSUNIT_CLOCK_GATE_DISABLE)); |
| 1524 | |
Lionel Landwerlin | 701f823 | 2017-08-03 17:58:08 +0100 | [diff] [blame] | 1525 | config_oa_regs(dev_priv, oa_config->mux_regs, oa_config->mux_regs_len); |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 1526 | |
| 1527 | /* It apparently takes a fairly long time for a new MUX |
| 1528 | * configuration to be be applied after these register writes. |
| 1529 | * This delay duration was derived empirically based on the |
| 1530 | * render_basic config but hopefully it covers the maximum |
| 1531 | * configuration latency. |
| 1532 | * |
| 1533 | * As a fallback, the checks in _append_oa_reports() to skip |
| 1534 | * invalid OA reports do also seem to work to discard reports |
| 1535 | * generated before this config has completed - albeit not |
| 1536 | * silently. |
| 1537 | * |
| 1538 | * Unfortunately this is essentially a magic number, since we |
| 1539 | * don't currently know of a reliable mechanism for predicting |
| 1540 | * how long the MUX config will take to apply and besides |
| 1541 | * seeing invalid reports we don't know of a reliable way to |
| 1542 | * explicitly check that the MUX config has landed. |
| 1543 | * |
| 1544 | * It's even possible we've miss characterized the underlying |
| 1545 | * problem - it just seems like the simplest explanation why |
| 1546 | * a delay at this location would mitigate any invalid reports. |
| 1547 | */ |
| 1548 | usleep_range(15000, 20000); |
| 1549 | |
Lionel Landwerlin | 701f823 | 2017-08-03 17:58:08 +0100 | [diff] [blame] | 1550 | config_oa_regs(dev_priv, oa_config->b_counter_regs, |
| 1551 | oa_config->b_counter_regs_len); |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 1552 | |
| 1553 | return 0; |
| 1554 | } |
| 1555 | |
| 1556 | static void hsw_disable_metric_set(struct drm_i915_private *dev_priv) |
| 1557 | { |
| 1558 | I915_WRITE(GEN6_UCGCTL1, (I915_READ(GEN6_UCGCTL1) & |
| 1559 | ~GEN6_CSUNIT_CLOCK_GATE_DISABLE)); |
| 1560 | I915_WRITE(GEN7_MISCCPCTL, (I915_READ(GEN7_MISCCPCTL) | |
| 1561 | GEN7_DOP_CLOCK_GATE_ENABLE)); |
| 1562 | |
| 1563 | I915_WRITE(GDT_CHICKEN_BITS, (I915_READ(GDT_CHICKEN_BITS) & |
| 1564 | ~GT_NOA_ENABLE)); |
| 1565 | } |
| 1566 | |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 1567 | /* |
| 1568 | * NB: It must always remain pointer safe to run this even if the OA unit |
| 1569 | * has been disabled. |
| 1570 | * |
| 1571 | * It's fine to put out-of-date values into these per-context registers |
| 1572 | * in the case that the OA unit has been disabled. |
| 1573 | */ |
| 1574 | static void gen8_update_reg_state_unlocked(struct i915_gem_context *ctx, |
Lionel Landwerlin | 701f823 | 2017-08-03 17:58:08 +0100 | [diff] [blame] | 1575 | u32 *reg_state, |
| 1576 | const struct i915_oa_config *oa_config) |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 1577 | { |
| 1578 | struct drm_i915_private *dev_priv = ctx->i915; |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 1579 | u32 ctx_oactxctrl = dev_priv->perf.oa.ctx_oactxctrl_offset; |
| 1580 | u32 ctx_flexeu0 = dev_priv->perf.oa.ctx_flexeu0_offset; |
| 1581 | /* The MMIO offsets for Flex EU registers aren't contiguous */ |
| 1582 | u32 flex_mmio[] = { |
| 1583 | i915_mmio_reg_offset(EU_PERF_CNTL0), |
| 1584 | i915_mmio_reg_offset(EU_PERF_CNTL1), |
| 1585 | i915_mmio_reg_offset(EU_PERF_CNTL2), |
| 1586 | i915_mmio_reg_offset(EU_PERF_CNTL3), |
| 1587 | i915_mmio_reg_offset(EU_PERF_CNTL4), |
| 1588 | i915_mmio_reg_offset(EU_PERF_CNTL5), |
| 1589 | i915_mmio_reg_offset(EU_PERF_CNTL6), |
| 1590 | }; |
| 1591 | int i; |
| 1592 | |
| 1593 | reg_state[ctx_oactxctrl] = i915_mmio_reg_offset(GEN8_OACTXCONTROL); |
| 1594 | reg_state[ctx_oactxctrl+1] = (dev_priv->perf.oa.period_exponent << |
| 1595 | GEN8_OA_TIMER_PERIOD_SHIFT) | |
| 1596 | (dev_priv->perf.oa.periodic ? |
| 1597 | GEN8_OA_TIMER_ENABLE : 0) | |
| 1598 | GEN8_OA_COUNTER_RESUME; |
| 1599 | |
| 1600 | for (i = 0; i < ARRAY_SIZE(flex_mmio); i++) { |
| 1601 | u32 state_offset = ctx_flexeu0 + i * 2; |
| 1602 | u32 mmio = flex_mmio[i]; |
| 1603 | |
| 1604 | /* |
| 1605 | * This arbitrary default will select the 'EU FPU0 Pipeline |
| 1606 | * Active' event. In the future it's anticipated that there |
| 1607 | * will be an explicit 'No Event' we can select, but not yet... |
| 1608 | */ |
| 1609 | u32 value = 0; |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 1610 | |
Lionel Landwerlin | 701f823 | 2017-08-03 17:58:08 +0100 | [diff] [blame] | 1611 | if (oa_config) { |
| 1612 | u32 j; |
| 1613 | |
| 1614 | for (j = 0; j < oa_config->flex_regs_len; j++) { |
| 1615 | if (i915_mmio_reg_offset(oa_config->flex_regs[j].addr) == mmio) { |
| 1616 | value = oa_config->flex_regs[j].value; |
| 1617 | break; |
| 1618 | } |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 1619 | } |
| 1620 | } |
| 1621 | |
| 1622 | reg_state[state_offset] = mmio; |
| 1623 | reg_state[state_offset+1] = value; |
| 1624 | } |
| 1625 | } |
| 1626 | |
| 1627 | /* |
| 1628 | * Same as gen8_update_reg_state_unlocked only through the batchbuffer. This |
| 1629 | * is only used by the kernel context. |
| 1630 | */ |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1631 | static int gen8_emit_oa_config(struct i915_request *rq, |
Lionel Landwerlin | 701f823 | 2017-08-03 17:58:08 +0100 | [diff] [blame] | 1632 | const struct i915_oa_config *oa_config) |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 1633 | { |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1634 | struct drm_i915_private *dev_priv = rq->i915; |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 1635 | /* The MMIO offsets for Flex EU registers aren't contiguous */ |
| 1636 | u32 flex_mmio[] = { |
| 1637 | i915_mmio_reg_offset(EU_PERF_CNTL0), |
| 1638 | i915_mmio_reg_offset(EU_PERF_CNTL1), |
| 1639 | i915_mmio_reg_offset(EU_PERF_CNTL2), |
| 1640 | i915_mmio_reg_offset(EU_PERF_CNTL3), |
| 1641 | i915_mmio_reg_offset(EU_PERF_CNTL4), |
| 1642 | i915_mmio_reg_offset(EU_PERF_CNTL5), |
| 1643 | i915_mmio_reg_offset(EU_PERF_CNTL6), |
| 1644 | }; |
| 1645 | u32 *cs; |
| 1646 | int i; |
| 1647 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1648 | cs = intel_ring_begin(rq, ARRAY_SIZE(flex_mmio) * 2 + 4); |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 1649 | if (IS_ERR(cs)) |
| 1650 | return PTR_ERR(cs); |
| 1651 | |
Lionel Landwerlin | 01d928e | 2017-08-03 17:58:07 +0100 | [diff] [blame] | 1652 | *cs++ = MI_LOAD_REGISTER_IMM(ARRAY_SIZE(flex_mmio) + 1); |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 1653 | |
| 1654 | *cs++ = i915_mmio_reg_offset(GEN8_OACTXCONTROL); |
| 1655 | *cs++ = (dev_priv->perf.oa.period_exponent << GEN8_OA_TIMER_PERIOD_SHIFT) | |
| 1656 | (dev_priv->perf.oa.periodic ? GEN8_OA_TIMER_ENABLE : 0) | |
| 1657 | GEN8_OA_COUNTER_RESUME; |
| 1658 | |
| 1659 | for (i = 0; i < ARRAY_SIZE(flex_mmio); i++) { |
| 1660 | u32 mmio = flex_mmio[i]; |
| 1661 | |
| 1662 | /* |
| 1663 | * This arbitrary default will select the 'EU FPU0 Pipeline |
| 1664 | * Active' event. In the future it's anticipated that there |
| 1665 | * will be an explicit 'No Event' we can select, but not |
| 1666 | * yet... |
| 1667 | */ |
| 1668 | u32 value = 0; |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 1669 | |
Lionel Landwerlin | 701f823 | 2017-08-03 17:58:08 +0100 | [diff] [blame] | 1670 | if (oa_config) { |
| 1671 | u32 j; |
| 1672 | |
| 1673 | for (j = 0; j < oa_config->flex_regs_len; j++) { |
| 1674 | if (i915_mmio_reg_offset(oa_config->flex_regs[j].addr) == mmio) { |
| 1675 | value = oa_config->flex_regs[j].value; |
| 1676 | break; |
| 1677 | } |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 1678 | } |
| 1679 | } |
| 1680 | |
| 1681 | *cs++ = mmio; |
| 1682 | *cs++ = value; |
| 1683 | } |
| 1684 | |
| 1685 | *cs++ = MI_NOOP; |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1686 | intel_ring_advance(rq, cs); |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 1687 | |
| 1688 | return 0; |
| 1689 | } |
| 1690 | |
Lionel Landwerlin | 701f823 | 2017-08-03 17:58:08 +0100 | [diff] [blame] | 1691 | static int gen8_switch_to_updated_kernel_context(struct drm_i915_private *dev_priv, |
| 1692 | const struct i915_oa_config *oa_config) |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 1693 | { |
| 1694 | struct intel_engine_cs *engine = dev_priv->engine[RCS]; |
Chris Wilson | a89d1f9 | 2018-05-02 17:38:39 +0100 | [diff] [blame] | 1695 | struct i915_timeline *timeline; |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1696 | struct i915_request *rq; |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 1697 | int ret; |
| 1698 | |
| 1699 | lockdep_assert_held(&dev_priv->drm.struct_mutex); |
| 1700 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1701 | i915_retire_requests(dev_priv); |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 1702 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1703 | rq = i915_request_alloc(engine, dev_priv->kernel_context); |
| 1704 | if (IS_ERR(rq)) |
| 1705 | return PTR_ERR(rq); |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 1706 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1707 | ret = gen8_emit_oa_config(rq, oa_config); |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 1708 | if (ret) { |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1709 | i915_request_add(rq); |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 1710 | return ret; |
| 1711 | } |
| 1712 | |
| 1713 | /* Queue this switch after all other activity */ |
| 1714 | list_for_each_entry(timeline, &dev_priv->gt.timelines, link) { |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1715 | struct i915_request *prev; |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 1716 | |
Chris Wilson | a89d1f9 | 2018-05-02 17:38:39 +0100 | [diff] [blame] | 1717 | prev = i915_gem_active_raw(&timeline->last_request, |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 1718 | &dev_priv->drm.struct_mutex); |
| 1719 | if (prev) |
Chris Wilson | a89d1f9 | 2018-05-02 17:38:39 +0100 | [diff] [blame] | 1720 | i915_request_await_dma_fence(rq, &prev->fence); |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 1721 | } |
| 1722 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1723 | i915_request_add(rq); |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 1724 | |
Chris Wilson | 3fef5cd | 2017-11-20 10:20:02 +0000 | [diff] [blame] | 1725 | return 0; |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 1726 | } |
| 1727 | |
| 1728 | /* |
| 1729 | * Manages updating the per-context aspects of the OA stream |
| 1730 | * configuration across all contexts. |
| 1731 | * |
| 1732 | * The awkward consideration here is that OACTXCONTROL controls the |
| 1733 | * exponent for periodic sampling which is primarily used for system |
| 1734 | * wide profiling where we'd like a consistent sampling period even in |
| 1735 | * the face of context switches. |
| 1736 | * |
| 1737 | * Our approach of updating the register state context (as opposed to |
| 1738 | * say using a workaround batch buffer) ensures that the hardware |
| 1739 | * won't automatically reload an out-of-date timer exponent even |
| 1740 | * transiently before a WA BB could be parsed. |
| 1741 | * |
| 1742 | * This function needs to: |
| 1743 | * - Ensure the currently running context's per-context OA state is |
| 1744 | * updated |
| 1745 | * - Ensure that all existing contexts will have the correct per-context |
| 1746 | * OA state if they are scheduled for use. |
| 1747 | * - Ensure any new contexts will be initialized with the correct |
| 1748 | * per-context OA state. |
| 1749 | * |
| 1750 | * Note: it's only the RCS/Render context that has any OA state. |
| 1751 | */ |
| 1752 | static int gen8_configure_all_contexts(struct drm_i915_private *dev_priv, |
Lionel Landwerlin | 41d3fdc | 2018-03-01 11:06:13 +0000 | [diff] [blame] | 1753 | const struct i915_oa_config *oa_config) |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 1754 | { |
Chris Wilson | ab82a06 | 2018-04-30 14:15:01 +0100 | [diff] [blame] | 1755 | struct intel_engine_cs *engine = dev_priv->engine[RCS]; |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 1756 | struct i915_gem_context *ctx; |
| 1757 | int ret; |
| 1758 | unsigned int wait_flags = I915_WAIT_LOCKED; |
| 1759 | |
Lionel Landwerlin | 41d3fdc | 2018-03-01 11:06:13 +0000 | [diff] [blame] | 1760 | lockdep_assert_held(&dev_priv->drm.struct_mutex); |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 1761 | |
| 1762 | /* Switch away from any user context. */ |
Lionel Landwerlin | 701f823 | 2017-08-03 17:58:08 +0100 | [diff] [blame] | 1763 | ret = gen8_switch_to_updated_kernel_context(dev_priv, oa_config); |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 1764 | if (ret) |
| 1765 | goto out; |
| 1766 | |
| 1767 | /* |
| 1768 | * The OA register config is setup through the context image. This image |
| 1769 | * might be written to by the GPU on context switch (in particular on |
| 1770 | * lite-restore). This means we can't safely update a context's image, |
| 1771 | * if this context is scheduled/submitted to run on the GPU. |
| 1772 | * |
| 1773 | * We could emit the OA register config through the batch buffer but |
| 1774 | * this might leave small interval of time where the OA unit is |
| 1775 | * configured at an invalid sampling period. |
| 1776 | * |
| 1777 | * So far the best way to work around this issue seems to be draining |
| 1778 | * the GPU from any submitted work. |
| 1779 | */ |
| 1780 | ret = i915_gem_wait_for_idle(dev_priv, wait_flags); |
| 1781 | if (ret) |
| 1782 | goto out; |
| 1783 | |
| 1784 | /* Update all contexts now that we've stalled the submission. */ |
Chris Wilson | 829a0af | 2017-06-20 12:05:45 +0100 | [diff] [blame] | 1785 | list_for_each_entry(ctx, &dev_priv->contexts.list, link) { |
Chris Wilson | ab82a06 | 2018-04-30 14:15:01 +0100 | [diff] [blame] | 1786 | struct intel_context *ce = to_intel_context(ctx, engine); |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 1787 | u32 *regs; |
| 1788 | |
| 1789 | /* OA settings will be set upon first use */ |
| 1790 | if (!ce->state) |
| 1791 | continue; |
| 1792 | |
| 1793 | regs = i915_gem_object_pin_map(ce->state->obj, I915_MAP_WB); |
| 1794 | if (IS_ERR(regs)) { |
| 1795 | ret = PTR_ERR(regs); |
| 1796 | goto out; |
| 1797 | } |
| 1798 | |
| 1799 | ce->state->obj->mm.dirty = true; |
| 1800 | regs += LRC_STATE_PN * PAGE_SIZE / sizeof(*regs); |
| 1801 | |
Lionel Landwerlin | 701f823 | 2017-08-03 17:58:08 +0100 | [diff] [blame] | 1802 | gen8_update_reg_state_unlocked(ctx, regs, oa_config); |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 1803 | |
| 1804 | i915_gem_object_unpin_map(ce->state->obj); |
| 1805 | } |
| 1806 | |
| 1807 | out: |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 1808 | return ret; |
| 1809 | } |
| 1810 | |
Lionel Landwerlin | 701f823 | 2017-08-03 17:58:08 +0100 | [diff] [blame] | 1811 | static int gen8_enable_metric_set(struct drm_i915_private *dev_priv, |
| 1812 | const struct i915_oa_config *oa_config) |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 1813 | { |
Lionel Landwerlin | 701f823 | 2017-08-03 17:58:08 +0100 | [diff] [blame] | 1814 | int ret; |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 1815 | |
| 1816 | /* |
| 1817 | * We disable slice/unslice clock ratio change reports on SKL since |
| 1818 | * they are too noisy. The HW generates a lot of redundant reports |
| 1819 | * where the ratio hasn't really changed causing a lot of redundant |
| 1820 | * work to processes and increasing the chances we'll hit buffer |
| 1821 | * overruns. |
| 1822 | * |
| 1823 | * Although we don't currently use the 'disable overrun' OABUFFER |
| 1824 | * feature it's worth noting that clock ratio reports have to be |
| 1825 | * disabled before considering to use that feature since the HW doesn't |
| 1826 | * correctly block these reports. |
| 1827 | * |
| 1828 | * Currently none of the high-level metrics we have depend on knowing |
| 1829 | * this ratio to normalize. |
| 1830 | * |
| 1831 | * Note: This register is not power context saved and restored, but |
| 1832 | * that's OK considering that we disable RC6 while the OA unit is |
| 1833 | * enabled. |
| 1834 | * |
| 1835 | * The _INCLUDE_CLK_RATIO bit allows the slice/unslice frequency to |
| 1836 | * be read back from automatically triggered reports, as part of the |
| 1837 | * RPT_ID field. |
| 1838 | */ |
Lionel Landwerlin | 1de401c | 2018-03-26 14:39:48 +0100 | [diff] [blame] | 1839 | if (IS_GEN(dev_priv, 9, 11)) { |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 1840 | I915_WRITE(GEN8_OA_DEBUG, |
| 1841 | _MASKED_BIT_ENABLE(GEN9_OA_DEBUG_DISABLE_CLK_RATIO_REPORTS | |
| 1842 | GEN9_OA_DEBUG_INCLUDE_CLK_RATIO)); |
| 1843 | } |
| 1844 | |
| 1845 | /* |
| 1846 | * Update all contexts prior writing the mux configurations as we need |
| 1847 | * to make sure all slices/subslices are ON before writing to NOA |
| 1848 | * registers. |
| 1849 | */ |
Lionel Landwerlin | 41d3fdc | 2018-03-01 11:06:13 +0000 | [diff] [blame] | 1850 | ret = gen8_configure_all_contexts(dev_priv, oa_config); |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 1851 | if (ret) |
| 1852 | return ret; |
| 1853 | |
Lionel Landwerlin | 701f823 | 2017-08-03 17:58:08 +0100 | [diff] [blame] | 1854 | config_oa_regs(dev_priv, oa_config->mux_regs, oa_config->mux_regs_len); |
| 1855 | |
Lionel Landwerlin | 701f823 | 2017-08-03 17:58:08 +0100 | [diff] [blame] | 1856 | config_oa_regs(dev_priv, oa_config->b_counter_regs, |
| 1857 | oa_config->b_counter_regs_len); |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 1858 | |
| 1859 | return 0; |
| 1860 | } |
| 1861 | |
| 1862 | static void gen8_disable_metric_set(struct drm_i915_private *dev_priv) |
| 1863 | { |
| 1864 | /* Reset all contexts' slices/subslices configurations. */ |
Lionel Landwerlin | 41d3fdc | 2018-03-01 11:06:13 +0000 | [diff] [blame] | 1865 | gen8_configure_all_contexts(dev_priv, NULL); |
Lionel Landwerlin | 28964cf | 2017-08-03 17:58:10 +0100 | [diff] [blame] | 1866 | |
| 1867 | I915_WRITE(GDT_CHICKEN_BITS, (I915_READ(GDT_CHICKEN_BITS) & |
| 1868 | ~GT_NOA_ENABLE)); |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 1869 | } |
| 1870 | |
Lionel Landwerlin | 95690a0 | 2017-11-10 19:08:43 +0000 | [diff] [blame] | 1871 | static void gen10_disable_metric_set(struct drm_i915_private *dev_priv) |
| 1872 | { |
| 1873 | /* Reset all contexts' slices/subslices configurations. */ |
Lionel Landwerlin | 41d3fdc | 2018-03-01 11:06:13 +0000 | [diff] [blame] | 1874 | gen8_configure_all_contexts(dev_priv, NULL); |
Lionel Landwerlin | 95690a0 | 2017-11-10 19:08:43 +0000 | [diff] [blame] | 1875 | |
| 1876 | /* Make sure we disable noa to save power. */ |
| 1877 | I915_WRITE(RPM_CONFIG1, |
| 1878 | I915_READ(RPM_CONFIG1) & ~GEN10_GT_NOA_ENABLE); |
| 1879 | } |
| 1880 | |
Robert Bragg | 1bef340 | 2017-06-13 12:23:06 +0100 | [diff] [blame] | 1881 | static void gen7_oa_enable(struct drm_i915_private *dev_priv) |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 1882 | { |
Lionel Landwerlin | 1105130 | 2018-03-26 10:08:23 +0100 | [diff] [blame] | 1883 | struct i915_gem_context *ctx = |
| 1884 | dev_priv->perf.oa.exclusive_stream->ctx; |
| 1885 | u32 ctx_id = dev_priv->perf.oa.specific_ctx_id; |
| 1886 | bool periodic = dev_priv->perf.oa.periodic; |
| 1887 | u32 period_exponent = dev_priv->perf.oa.period_exponent; |
| 1888 | u32 report_format = dev_priv->perf.oa.oa_buffer.format; |
| 1889 | |
Robert Bragg | 1bef340 | 2017-06-13 12:23:06 +0100 | [diff] [blame] | 1890 | /* |
| 1891 | * Reset buf pointers so we don't forward reports from before now. |
| 1892 | * |
| 1893 | * Think carefully if considering trying to avoid this, since it |
| 1894 | * also ensures status flags and the buffer itself are cleared |
| 1895 | * in error paths, and we have checks for invalid reports based |
| 1896 | * on the assumption that certain fields are written to zeroed |
| 1897 | * memory which this helps maintains. |
| 1898 | */ |
| 1899 | gen7_init_oa_buffer(dev_priv); |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 1900 | |
Lionel Landwerlin | 1105130 | 2018-03-26 10:08:23 +0100 | [diff] [blame] | 1901 | I915_WRITE(GEN7_OACONTROL, |
| 1902 | (ctx_id & GEN7_OACONTROL_CTX_MASK) | |
| 1903 | (period_exponent << |
| 1904 | GEN7_OACONTROL_TIMER_PERIOD_SHIFT) | |
| 1905 | (periodic ? GEN7_OACONTROL_TIMER_ENABLE : 0) | |
| 1906 | (report_format << GEN7_OACONTROL_FORMAT_SHIFT) | |
| 1907 | (ctx ? GEN7_OACONTROL_PER_CTX_ENABLE : 0) | |
| 1908 | GEN7_OACONTROL_ENABLE); |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 1909 | } |
| 1910 | |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 1911 | static void gen8_oa_enable(struct drm_i915_private *dev_priv) |
| 1912 | { |
| 1913 | u32 report_format = dev_priv->perf.oa.oa_buffer.format; |
| 1914 | |
| 1915 | /* |
| 1916 | * Reset buf pointers so we don't forward reports from before now. |
| 1917 | * |
| 1918 | * Think carefully if considering trying to avoid this, since it |
| 1919 | * also ensures status flags and the buffer itself are cleared |
| 1920 | * in error paths, and we have checks for invalid reports based |
| 1921 | * on the assumption that certain fields are written to zeroed |
| 1922 | * memory which this helps maintains. |
| 1923 | */ |
| 1924 | gen8_init_oa_buffer(dev_priv); |
| 1925 | |
| 1926 | /* |
| 1927 | * Note: we don't rely on the hardware to perform single context |
| 1928 | * filtering and instead filter on the cpu based on the context-id |
| 1929 | * field of reports |
| 1930 | */ |
| 1931 | I915_WRITE(GEN8_OACONTROL, (report_format << |
| 1932 | GEN8_OA_REPORT_FORMAT_SHIFT) | |
| 1933 | GEN8_OA_COUNTER_ENABLE); |
| 1934 | } |
| 1935 | |
Robert Bragg | 16d98b3 | 2016-12-07 21:40:33 +0000 | [diff] [blame] | 1936 | /** |
| 1937 | * i915_oa_stream_enable - handle `I915_PERF_IOCTL_ENABLE` for OA stream |
| 1938 | * @stream: An i915 perf stream opened for OA metrics |
| 1939 | * |
| 1940 | * [Re]enables hardware periodic sampling according to the period configured |
| 1941 | * when opening the stream. This also starts a hrtimer that will periodically |
| 1942 | * check for data in the circular OA buffer for notifying userspace (e.g. |
| 1943 | * during a read() or poll()). |
| 1944 | */ |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 1945 | static void i915_oa_stream_enable(struct i915_perf_stream *stream) |
| 1946 | { |
| 1947 | struct drm_i915_private *dev_priv = stream->dev_priv; |
| 1948 | |
| 1949 | dev_priv->perf.oa.ops.oa_enable(dev_priv); |
| 1950 | |
| 1951 | if (dev_priv->perf.oa.periodic) |
| 1952 | hrtimer_start(&dev_priv->perf.oa.poll_check_timer, |
| 1953 | ns_to_ktime(POLL_PERIOD), |
| 1954 | HRTIMER_MODE_REL_PINNED); |
| 1955 | } |
| 1956 | |
| 1957 | static void gen7_oa_disable(struct drm_i915_private *dev_priv) |
| 1958 | { |
| 1959 | I915_WRITE(GEN7_OACONTROL, 0); |
Chris Wilson | e896d29 | 2018-05-11 14:52:07 +0100 | [diff] [blame] | 1960 | if (intel_wait_for_register(dev_priv, |
| 1961 | GEN7_OACONTROL, GEN7_OACONTROL_ENABLE, 0, |
| 1962 | 50)) |
| 1963 | DRM_ERROR("wait for OA to be disabled timed out\n"); |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 1964 | } |
| 1965 | |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 1966 | static void gen8_oa_disable(struct drm_i915_private *dev_priv) |
| 1967 | { |
| 1968 | I915_WRITE(GEN8_OACONTROL, 0); |
Chris Wilson | e896d29 | 2018-05-11 14:52:07 +0100 | [diff] [blame] | 1969 | if (intel_wait_for_register(dev_priv, |
| 1970 | GEN8_OACONTROL, GEN8_OA_COUNTER_ENABLE, 0, |
| 1971 | 50)) |
| 1972 | DRM_ERROR("wait for OA to be disabled timed out\n"); |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 1973 | } |
| 1974 | |
Robert Bragg | 16d98b3 | 2016-12-07 21:40:33 +0000 | [diff] [blame] | 1975 | /** |
| 1976 | * i915_oa_stream_disable - handle `I915_PERF_IOCTL_DISABLE` for OA stream |
| 1977 | * @stream: An i915 perf stream opened for OA metrics |
| 1978 | * |
| 1979 | * Stops the OA unit from periodically writing counter reports into the |
| 1980 | * circular OA buffer. This also stops the hrtimer that periodically checks for |
| 1981 | * data in the circular OA buffer, for notifying userspace. |
| 1982 | */ |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 1983 | static void i915_oa_stream_disable(struct i915_perf_stream *stream) |
| 1984 | { |
| 1985 | struct drm_i915_private *dev_priv = stream->dev_priv; |
| 1986 | |
| 1987 | dev_priv->perf.oa.ops.oa_disable(dev_priv); |
| 1988 | |
| 1989 | if (dev_priv->perf.oa.periodic) |
| 1990 | hrtimer_cancel(&dev_priv->perf.oa.poll_check_timer); |
| 1991 | } |
| 1992 | |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 1993 | static const struct i915_perf_stream_ops i915_oa_stream_ops = { |
| 1994 | .destroy = i915_oa_stream_destroy, |
| 1995 | .enable = i915_oa_stream_enable, |
| 1996 | .disable = i915_oa_stream_disable, |
| 1997 | .wait_unlocked = i915_oa_wait_unlocked, |
| 1998 | .poll_wait = i915_oa_poll_wait, |
| 1999 | .read = i915_oa_read, |
| 2000 | }; |
| 2001 | |
Robert Bragg | 16d98b3 | 2016-12-07 21:40:33 +0000 | [diff] [blame] | 2002 | /** |
| 2003 | * i915_oa_stream_init - validate combined props for OA stream and init |
| 2004 | * @stream: An i915 perf stream |
| 2005 | * @param: The open parameters passed to `DRM_I915_PERF_OPEN` |
| 2006 | * @props: The property state that configures stream (individually validated) |
| 2007 | * |
| 2008 | * While read_properties_unlocked() validates properties in isolation it |
| 2009 | * doesn't ensure that the combination necessarily makes sense. |
| 2010 | * |
| 2011 | * At this point it has been determined that userspace wants a stream of |
| 2012 | * OA metrics, but still we need to further validate the combined |
| 2013 | * properties are OK. |
| 2014 | * |
| 2015 | * If the configuration makes sense then we can allocate memory for |
| 2016 | * a circular OA buffer and apply the requested metric set configuration. |
| 2017 | * |
| 2018 | * Returns: zero on success or a negative error code. |
| 2019 | */ |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 2020 | static int i915_oa_stream_init(struct i915_perf_stream *stream, |
| 2021 | struct drm_i915_perf_open_param *param, |
| 2022 | struct perf_open_properties *props) |
| 2023 | { |
| 2024 | struct drm_i915_private *dev_priv = stream->dev_priv; |
| 2025 | int format_size; |
| 2026 | int ret; |
| 2027 | |
Robert Bragg | 442b8c0 | 2016-11-07 19:49:53 +0000 | [diff] [blame] | 2028 | /* If the sysfs metrics/ directory wasn't registered for some |
| 2029 | * reason then don't let userspace try their luck with config |
| 2030 | * IDs |
| 2031 | */ |
| 2032 | if (!dev_priv->perf.metrics_kobj) { |
Robert Bragg | 7708550 | 2016-12-01 17:21:52 +0000 | [diff] [blame] | 2033 | DRM_DEBUG("OA metrics weren't advertised via sysfs\n"); |
Robert Bragg | 442b8c0 | 2016-11-07 19:49:53 +0000 | [diff] [blame] | 2034 | return -EINVAL; |
| 2035 | } |
| 2036 | |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 2037 | if (!(props->sample_flags & SAMPLE_OA_REPORT)) { |
Robert Bragg | 7708550 | 2016-12-01 17:21:52 +0000 | [diff] [blame] | 2038 | DRM_DEBUG("Only OA report sampling supported\n"); |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 2039 | return -EINVAL; |
| 2040 | } |
| 2041 | |
| 2042 | if (!dev_priv->perf.oa.ops.init_oa_buffer) { |
Robert Bragg | 7708550 | 2016-12-01 17:21:52 +0000 | [diff] [blame] | 2043 | DRM_DEBUG("OA unit not supported\n"); |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 2044 | return -ENODEV; |
| 2045 | } |
| 2046 | |
| 2047 | /* To avoid the complexity of having to accurately filter |
| 2048 | * counter reports and marshal to the appropriate client |
| 2049 | * we currently only allow exclusive access |
| 2050 | */ |
| 2051 | if (dev_priv->perf.oa.exclusive_stream) { |
Robert Bragg | 7708550 | 2016-12-01 17:21:52 +0000 | [diff] [blame] | 2052 | DRM_DEBUG("OA unit already in use\n"); |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 2053 | return -EBUSY; |
| 2054 | } |
| 2055 | |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 2056 | if (!props->oa_format) { |
Robert Bragg | 7708550 | 2016-12-01 17:21:52 +0000 | [diff] [blame] | 2057 | DRM_DEBUG("OA report format not specified\n"); |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 2058 | return -EINVAL; |
| 2059 | } |
| 2060 | |
Robert Bragg | 712122e | 2017-05-11 16:43:31 +0100 | [diff] [blame] | 2061 | /* We set up some ratelimit state to potentially throttle any _NOTES |
| 2062 | * about spurious, invalid OA reports which we don't forward to |
| 2063 | * userspace. |
| 2064 | * |
| 2065 | * The initialization is associated with opening the stream (not driver |
| 2066 | * init) considering we print a _NOTE about any throttling when closing |
| 2067 | * the stream instead of waiting until driver _fini which no one would |
| 2068 | * ever see. |
| 2069 | * |
| 2070 | * Using the same limiting factors as printk_ratelimit() |
| 2071 | */ |
| 2072 | ratelimit_state_init(&dev_priv->perf.oa.spurious_report_rs, |
| 2073 | 5 * HZ, 10); |
| 2074 | /* Since we use a DRM_NOTE for spurious reports it would be |
| 2075 | * inconsistent to let __ratelimit() automatically print a warning for |
| 2076 | * throttling. |
| 2077 | */ |
| 2078 | ratelimit_set_flags(&dev_priv->perf.oa.spurious_report_rs, |
| 2079 | RATELIMIT_MSG_ON_RELEASE); |
| 2080 | |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 2081 | stream->sample_size = sizeof(struct drm_i915_perf_record_header); |
| 2082 | |
| 2083 | format_size = dev_priv->perf.oa.oa_formats[props->oa_format].size; |
| 2084 | |
| 2085 | stream->sample_flags |= SAMPLE_OA_REPORT; |
| 2086 | stream->sample_size += format_size; |
| 2087 | |
| 2088 | dev_priv->perf.oa.oa_buffer.format_size = format_size; |
| 2089 | if (WARN_ON(dev_priv->perf.oa.oa_buffer.format_size == 0)) |
| 2090 | return -EINVAL; |
| 2091 | |
| 2092 | dev_priv->perf.oa.oa_buffer.format = |
| 2093 | dev_priv->perf.oa.oa_formats[props->oa_format].format; |
| 2094 | |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 2095 | dev_priv->perf.oa.periodic = props->oa_periodic; |
Robert Bragg | 0dd860c | 2017-05-11 16:43:28 +0100 | [diff] [blame] | 2096 | if (dev_priv->perf.oa.periodic) |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 2097 | dev_priv->perf.oa.period_exponent = props->oa_period_exponent; |
| 2098 | |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 2099 | if (stream->ctx) { |
| 2100 | ret = oa_get_render_ctx_id(stream); |
Lionel Landwerlin | 9bd9be6 | 2018-03-26 10:08:28 +0100 | [diff] [blame] | 2101 | if (ret) { |
| 2102 | DRM_DEBUG("Invalid context id to filter with\n"); |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 2103 | return ret; |
Lionel Landwerlin | 9bd9be6 | 2018-03-26 10:08:28 +0100 | [diff] [blame] | 2104 | } |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 2105 | } |
| 2106 | |
Lionel Landwerlin | f89823c | 2017-08-03 18:05:50 +0100 | [diff] [blame] | 2107 | ret = get_oa_config(dev_priv, props->metrics_set, &stream->oa_config); |
Lionel Landwerlin | 9bd9be6 | 2018-03-26 10:08:28 +0100 | [diff] [blame] | 2108 | if (ret) { |
| 2109 | DRM_DEBUG("Invalid OA config id=%i\n", props->metrics_set); |
Lionel Landwerlin | f89823c | 2017-08-03 18:05:50 +0100 | [diff] [blame] | 2110 | goto err_config; |
Lionel Landwerlin | 9bd9be6 | 2018-03-26 10:08:28 +0100 | [diff] [blame] | 2111 | } |
Lionel Landwerlin | 701f823 | 2017-08-03 17:58:08 +0100 | [diff] [blame] | 2112 | |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 2113 | /* PRM - observability performance counters: |
| 2114 | * |
| 2115 | * OACONTROL, performance counter enable, note: |
| 2116 | * |
| 2117 | * "When this bit is set, in order to have coherent counts, |
| 2118 | * RC6 power state and trunk clock gating must be disabled. |
| 2119 | * This can be achieved by programming MMIO registers as |
| 2120 | * 0xA094=0 and 0xA090[31]=1" |
| 2121 | * |
| 2122 | * In our case we are expecting that taking pm + FORCEWAKE |
| 2123 | * references will effectively disable RC6. |
| 2124 | */ |
| 2125 | intel_runtime_pm_get(dev_priv); |
| 2126 | intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL); |
| 2127 | |
sagar.a.kamble@intel.com | 987f8c4 | 2017-06-27 23:09:41 +0530 | [diff] [blame] | 2128 | ret = alloc_oa_buffer(dev_priv); |
| 2129 | if (ret) |
| 2130 | goto err_oa_buf_alloc; |
| 2131 | |
Lionel Landwerlin | 41d3fdc | 2018-03-01 11:06:13 +0000 | [diff] [blame] | 2132 | ret = i915_mutex_lock_interruptible(&dev_priv->drm); |
| 2133 | if (ret) |
| 2134 | goto err_lock; |
| 2135 | |
Lionel Landwerlin | 701f823 | 2017-08-03 17:58:08 +0100 | [diff] [blame] | 2136 | ret = dev_priv->perf.oa.ops.enable_metric_set(dev_priv, |
| 2137 | stream->oa_config); |
Lionel Landwerlin | 9bd9be6 | 2018-03-26 10:08:28 +0100 | [diff] [blame] | 2138 | if (ret) { |
| 2139 | DRM_DEBUG("Unable to enable metric set\n"); |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 2140 | goto err_enable; |
Lionel Landwerlin | 9bd9be6 | 2018-03-26 10:08:28 +0100 | [diff] [blame] | 2141 | } |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 2142 | |
| 2143 | stream->ops = &i915_oa_stream_ops; |
| 2144 | |
| 2145 | dev_priv->perf.oa.exclusive_stream = stream; |
| 2146 | |
Lionel Landwerlin | 701f823 | 2017-08-03 17:58:08 +0100 | [diff] [blame] | 2147 | mutex_unlock(&dev_priv->drm.struct_mutex); |
| 2148 | |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 2149 | return 0; |
| 2150 | |
| 2151 | err_enable: |
Lionel Landwerlin | 41d3fdc | 2018-03-01 11:06:13 +0000 | [diff] [blame] | 2152 | dev_priv->perf.oa.ops.disable_metric_set(dev_priv); |
| 2153 | mutex_unlock(&dev_priv->drm.struct_mutex); |
| 2154 | |
| 2155 | err_lock: |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 2156 | free_oa_buffer(dev_priv); |
| 2157 | |
| 2158 | err_oa_buf_alloc: |
Lionel Landwerlin | f89823c | 2017-08-03 18:05:50 +0100 | [diff] [blame] | 2159 | put_oa_config(dev_priv, stream->oa_config); |
| 2160 | |
sagar.a.kamble@intel.com | 987f8c4 | 2017-06-27 23:09:41 +0530 | [diff] [blame] | 2161 | intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL); |
| 2162 | intel_runtime_pm_put(dev_priv); |
Lionel Landwerlin | f89823c | 2017-08-03 18:05:50 +0100 | [diff] [blame] | 2163 | |
| 2164 | err_config: |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 2165 | if (stream->ctx) |
| 2166 | oa_put_render_ctx_id(stream); |
| 2167 | |
| 2168 | return ret; |
| 2169 | } |
| 2170 | |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 2171 | void i915_oa_init_reg_state(struct intel_engine_cs *engine, |
| 2172 | struct i915_gem_context *ctx, |
| 2173 | u32 *reg_state) |
| 2174 | { |
Chris Wilson | 28b6cb0 | 2017-08-10 18:57:43 +0100 | [diff] [blame] | 2175 | struct i915_perf_stream *stream; |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 2176 | |
| 2177 | if (engine->id != RCS) |
| 2178 | return; |
| 2179 | |
Chris Wilson | 28b6cb0 | 2017-08-10 18:57:43 +0100 | [diff] [blame] | 2180 | stream = engine->i915->perf.oa.exclusive_stream; |
Lionel Landwerlin | 701f823 | 2017-08-03 17:58:08 +0100 | [diff] [blame] | 2181 | if (stream) |
| 2182 | gen8_update_reg_state_unlocked(ctx, reg_state, stream->oa_config); |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 2183 | } |
| 2184 | |
Robert Bragg | 16d98b3 | 2016-12-07 21:40:33 +0000 | [diff] [blame] | 2185 | /** |
| 2186 | * i915_perf_read_locked - &i915_perf_stream_ops->read with error normalisation |
| 2187 | * @stream: An i915 perf stream |
| 2188 | * @file: An i915 perf stream file |
| 2189 | * @buf: destination buffer given by userspace |
| 2190 | * @count: the number of bytes userspace wants to read |
| 2191 | * @ppos: (inout) file seek position (unused) |
| 2192 | * |
| 2193 | * Besides wrapping &i915_perf_stream_ops->read this provides a common place to |
| 2194 | * ensure that if we've successfully copied any data then reporting that takes |
| 2195 | * precedence over any internal error status, so the data isn't lost. |
| 2196 | * |
| 2197 | * For example ret will be -ENOSPC whenever there is more buffered data than |
| 2198 | * can be copied to userspace, but that's only interesting if we weren't able |
| 2199 | * to copy some data because it implies the userspace buffer is too small to |
| 2200 | * receive a single record (and we never split records). |
| 2201 | * |
| 2202 | * Another case with ret == -EFAULT is more of a grey area since it would seem |
| 2203 | * like bad form for userspace to ask us to overrun its buffer, but the user |
| 2204 | * knows best: |
| 2205 | * |
| 2206 | * http://yarchive.net/comp/linux/partial_reads_writes.html |
| 2207 | * |
| 2208 | * Returns: The number of bytes copied or a negative error code on failure. |
| 2209 | */ |
Robert Bragg | eec688e | 2016-11-07 19:49:47 +0000 | [diff] [blame] | 2210 | static ssize_t i915_perf_read_locked(struct i915_perf_stream *stream, |
| 2211 | struct file *file, |
| 2212 | char __user *buf, |
| 2213 | size_t count, |
| 2214 | loff_t *ppos) |
| 2215 | { |
| 2216 | /* Note we keep the offset (aka bytes read) separate from any |
| 2217 | * error status so that the final check for whether we return |
| 2218 | * the bytes read with a higher precedence than any error (see |
| 2219 | * comment below) doesn't need to be handled/duplicated in |
| 2220 | * stream->ops->read() implementations. |
| 2221 | */ |
| 2222 | size_t offset = 0; |
| 2223 | int ret = stream->ops->read(stream, buf, count, &offset); |
| 2224 | |
Robert Bragg | eec688e | 2016-11-07 19:49:47 +0000 | [diff] [blame] | 2225 | return offset ?: (ret ?: -EAGAIN); |
| 2226 | } |
| 2227 | |
Robert Bragg | 16d98b3 | 2016-12-07 21:40:33 +0000 | [diff] [blame] | 2228 | /** |
| 2229 | * i915_perf_read - handles read() FOP for i915 perf stream FDs |
| 2230 | * @file: An i915 perf stream file |
| 2231 | * @buf: destination buffer given by userspace |
| 2232 | * @count: the number of bytes userspace wants to read |
| 2233 | * @ppos: (inout) file seek position (unused) |
| 2234 | * |
| 2235 | * The entry point for handling a read() on a stream file descriptor from |
| 2236 | * userspace. Most of the work is left to the i915_perf_read_locked() and |
| 2237 | * &i915_perf_stream_ops->read but to save having stream implementations (of |
| 2238 | * which we might have multiple later) we handle blocking read here. |
| 2239 | * |
| 2240 | * We can also consistently treat trying to read from a disabled stream |
| 2241 | * as an IO error so implementations can assume the stream is enabled |
| 2242 | * while reading. |
| 2243 | * |
| 2244 | * Returns: The number of bytes copied or a negative error code on failure. |
| 2245 | */ |
Robert Bragg | eec688e | 2016-11-07 19:49:47 +0000 | [diff] [blame] | 2246 | static ssize_t i915_perf_read(struct file *file, |
| 2247 | char __user *buf, |
| 2248 | size_t count, |
| 2249 | loff_t *ppos) |
| 2250 | { |
| 2251 | struct i915_perf_stream *stream = file->private_data; |
| 2252 | struct drm_i915_private *dev_priv = stream->dev_priv; |
| 2253 | ssize_t ret; |
| 2254 | |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 2255 | /* To ensure it's handled consistently we simply treat all reads of a |
| 2256 | * disabled stream as an error. In particular it might otherwise lead |
| 2257 | * to a deadlock for blocking file descriptors... |
| 2258 | */ |
| 2259 | if (!stream->enabled) |
| 2260 | return -EIO; |
| 2261 | |
Robert Bragg | eec688e | 2016-11-07 19:49:47 +0000 | [diff] [blame] | 2262 | if (!(file->f_flags & O_NONBLOCK)) { |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 2263 | /* There's the small chance of false positives from |
| 2264 | * stream->ops->wait_unlocked. |
| 2265 | * |
| 2266 | * E.g. with single context filtering since we only wait until |
| 2267 | * oabuffer has >= 1 report we don't immediately know whether |
| 2268 | * any reports really belong to the current context |
Robert Bragg | eec688e | 2016-11-07 19:49:47 +0000 | [diff] [blame] | 2269 | */ |
| 2270 | do { |
| 2271 | ret = stream->ops->wait_unlocked(stream); |
| 2272 | if (ret) |
| 2273 | return ret; |
| 2274 | |
| 2275 | mutex_lock(&dev_priv->perf.lock); |
| 2276 | ret = i915_perf_read_locked(stream, file, |
| 2277 | buf, count, ppos); |
| 2278 | mutex_unlock(&dev_priv->perf.lock); |
| 2279 | } while (ret == -EAGAIN); |
| 2280 | } else { |
| 2281 | mutex_lock(&dev_priv->perf.lock); |
| 2282 | ret = i915_perf_read_locked(stream, file, buf, count, ppos); |
| 2283 | mutex_unlock(&dev_priv->perf.lock); |
| 2284 | } |
| 2285 | |
Linus Torvalds | a9a0884 | 2018-02-11 14:34:03 -0800 | [diff] [blame] | 2286 | /* We allow the poll checking to sometimes report false positive EPOLLIN |
Robert Bragg | 26ebd9c | 2017-05-11 16:43:25 +0100 | [diff] [blame] | 2287 | * events where we might actually report EAGAIN on read() if there's |
| 2288 | * not really any data available. In this situation though we don't |
Linus Torvalds | a9a0884 | 2018-02-11 14:34:03 -0800 | [diff] [blame] | 2289 | * want to enter a busy loop between poll() reporting a EPOLLIN event |
Robert Bragg | 26ebd9c | 2017-05-11 16:43:25 +0100 | [diff] [blame] | 2290 | * and read() returning -EAGAIN. Clearing the oa.pollin state here |
| 2291 | * effectively ensures we back off until the next hrtimer callback |
Linus Torvalds | a9a0884 | 2018-02-11 14:34:03 -0800 | [diff] [blame] | 2292 | * before reporting another EPOLLIN event. |
Robert Bragg | 26ebd9c | 2017-05-11 16:43:25 +0100 | [diff] [blame] | 2293 | */ |
| 2294 | if (ret >= 0 || ret == -EAGAIN) { |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 2295 | /* Maybe make ->pollin per-stream state if we support multiple |
| 2296 | * concurrent streams in the future. |
| 2297 | */ |
| 2298 | dev_priv->perf.oa.pollin = false; |
| 2299 | } |
| 2300 | |
Robert Bragg | eec688e | 2016-11-07 19:49:47 +0000 | [diff] [blame] | 2301 | return ret; |
| 2302 | } |
| 2303 | |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 2304 | static enum hrtimer_restart oa_poll_check_timer_cb(struct hrtimer *hrtimer) |
| 2305 | { |
| 2306 | struct drm_i915_private *dev_priv = |
| 2307 | container_of(hrtimer, typeof(*dev_priv), |
| 2308 | perf.oa.poll_check_timer); |
| 2309 | |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 2310 | if (oa_buffer_check_unlocked(dev_priv)) { |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 2311 | dev_priv->perf.oa.pollin = true; |
| 2312 | wake_up(&dev_priv->perf.oa.poll_wq); |
| 2313 | } |
| 2314 | |
| 2315 | hrtimer_forward_now(hrtimer, ns_to_ktime(POLL_PERIOD)); |
| 2316 | |
| 2317 | return HRTIMER_RESTART; |
| 2318 | } |
| 2319 | |
Robert Bragg | 16d98b3 | 2016-12-07 21:40:33 +0000 | [diff] [blame] | 2320 | /** |
| 2321 | * i915_perf_poll_locked - poll_wait() with a suitable wait queue for stream |
| 2322 | * @dev_priv: i915 device instance |
| 2323 | * @stream: An i915 perf stream |
| 2324 | * @file: An i915 perf stream file |
| 2325 | * @wait: poll() state table |
| 2326 | * |
| 2327 | * For handling userspace polling on an i915 perf stream, this calls through to |
| 2328 | * &i915_perf_stream_ops->poll_wait to call poll_wait() with a wait queue that |
| 2329 | * will be woken for new stream data. |
| 2330 | * |
| 2331 | * Note: The &drm_i915_private->perf.lock mutex has been taken to serialize |
| 2332 | * with any non-file-operation driver hooks. |
| 2333 | * |
| 2334 | * Returns: any poll events that are ready without sleeping |
| 2335 | */ |
Al Viro | afc9a42 | 2017-07-03 06:39:46 -0400 | [diff] [blame] | 2336 | static __poll_t i915_perf_poll_locked(struct drm_i915_private *dev_priv, |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 2337 | struct i915_perf_stream *stream, |
Robert Bragg | eec688e | 2016-11-07 19:49:47 +0000 | [diff] [blame] | 2338 | struct file *file, |
| 2339 | poll_table *wait) |
| 2340 | { |
Al Viro | afc9a42 | 2017-07-03 06:39:46 -0400 | [diff] [blame] | 2341 | __poll_t events = 0; |
Robert Bragg | eec688e | 2016-11-07 19:49:47 +0000 | [diff] [blame] | 2342 | |
| 2343 | stream->ops->poll_wait(stream, file, wait); |
| 2344 | |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 2345 | /* Note: we don't explicitly check whether there's something to read |
| 2346 | * here since this path may be very hot depending on what else |
| 2347 | * userspace is polling, or on the timeout in use. We rely solely on |
| 2348 | * the hrtimer/oa_poll_check_timer_cb to notify us when there are |
| 2349 | * samples to read. |
| 2350 | */ |
| 2351 | if (dev_priv->perf.oa.pollin) |
Linus Torvalds | a9a0884 | 2018-02-11 14:34:03 -0800 | [diff] [blame] | 2352 | events |= EPOLLIN; |
Robert Bragg | eec688e | 2016-11-07 19:49:47 +0000 | [diff] [blame] | 2353 | |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 2354 | return events; |
Robert Bragg | eec688e | 2016-11-07 19:49:47 +0000 | [diff] [blame] | 2355 | } |
| 2356 | |
Robert Bragg | 16d98b3 | 2016-12-07 21:40:33 +0000 | [diff] [blame] | 2357 | /** |
| 2358 | * i915_perf_poll - call poll_wait() with a suitable wait queue for stream |
| 2359 | * @file: An i915 perf stream file |
| 2360 | * @wait: poll() state table |
| 2361 | * |
| 2362 | * For handling userspace polling on an i915 perf stream, this ensures |
| 2363 | * poll_wait() gets called with a wait queue that will be woken for new stream |
| 2364 | * data. |
| 2365 | * |
| 2366 | * Note: Implementation deferred to i915_perf_poll_locked() |
| 2367 | * |
| 2368 | * Returns: any poll events that are ready without sleeping |
| 2369 | */ |
Al Viro | afc9a42 | 2017-07-03 06:39:46 -0400 | [diff] [blame] | 2370 | static __poll_t i915_perf_poll(struct file *file, poll_table *wait) |
Robert Bragg | eec688e | 2016-11-07 19:49:47 +0000 | [diff] [blame] | 2371 | { |
| 2372 | struct i915_perf_stream *stream = file->private_data; |
| 2373 | struct drm_i915_private *dev_priv = stream->dev_priv; |
Al Viro | afc9a42 | 2017-07-03 06:39:46 -0400 | [diff] [blame] | 2374 | __poll_t ret; |
Robert Bragg | eec688e | 2016-11-07 19:49:47 +0000 | [diff] [blame] | 2375 | |
| 2376 | mutex_lock(&dev_priv->perf.lock); |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 2377 | ret = i915_perf_poll_locked(dev_priv, stream, file, wait); |
Robert Bragg | eec688e | 2016-11-07 19:49:47 +0000 | [diff] [blame] | 2378 | mutex_unlock(&dev_priv->perf.lock); |
| 2379 | |
| 2380 | return ret; |
| 2381 | } |
| 2382 | |
Robert Bragg | 16d98b3 | 2016-12-07 21:40:33 +0000 | [diff] [blame] | 2383 | /** |
| 2384 | * i915_perf_enable_locked - handle `I915_PERF_IOCTL_ENABLE` ioctl |
| 2385 | * @stream: A disabled i915 perf stream |
| 2386 | * |
| 2387 | * [Re]enables the associated capture of data for this stream. |
| 2388 | * |
| 2389 | * If a stream was previously enabled then there's currently no intention |
| 2390 | * to provide userspace any guarantee about the preservation of previously |
| 2391 | * buffered data. |
| 2392 | */ |
Robert Bragg | eec688e | 2016-11-07 19:49:47 +0000 | [diff] [blame] | 2393 | static void i915_perf_enable_locked(struct i915_perf_stream *stream) |
| 2394 | { |
| 2395 | if (stream->enabled) |
| 2396 | return; |
| 2397 | |
| 2398 | /* Allow stream->ops->enable() to refer to this */ |
| 2399 | stream->enabled = true; |
| 2400 | |
| 2401 | if (stream->ops->enable) |
| 2402 | stream->ops->enable(stream); |
| 2403 | } |
| 2404 | |
Robert Bragg | 16d98b3 | 2016-12-07 21:40:33 +0000 | [diff] [blame] | 2405 | /** |
| 2406 | * i915_perf_disable_locked - handle `I915_PERF_IOCTL_DISABLE` ioctl |
| 2407 | * @stream: An enabled i915 perf stream |
| 2408 | * |
| 2409 | * Disables the associated capture of data for this stream. |
| 2410 | * |
| 2411 | * The intention is that disabling an re-enabling a stream will ideally be |
| 2412 | * cheaper than destroying and re-opening a stream with the same configuration, |
| 2413 | * though there are no formal guarantees about what state or buffered data |
| 2414 | * must be retained between disabling and re-enabling a stream. |
| 2415 | * |
| 2416 | * Note: while a stream is disabled it's considered an error for userspace |
| 2417 | * to attempt to read from the stream (-EIO). |
| 2418 | */ |
Robert Bragg | eec688e | 2016-11-07 19:49:47 +0000 | [diff] [blame] | 2419 | static void i915_perf_disable_locked(struct i915_perf_stream *stream) |
| 2420 | { |
| 2421 | if (!stream->enabled) |
| 2422 | return; |
| 2423 | |
| 2424 | /* Allow stream->ops->disable() to refer to this */ |
| 2425 | stream->enabled = false; |
| 2426 | |
| 2427 | if (stream->ops->disable) |
| 2428 | stream->ops->disable(stream); |
| 2429 | } |
| 2430 | |
Robert Bragg | 16d98b3 | 2016-12-07 21:40:33 +0000 | [diff] [blame] | 2431 | /** |
| 2432 | * i915_perf_ioctl - support ioctl() usage with i915 perf stream FDs |
| 2433 | * @stream: An i915 perf stream |
| 2434 | * @cmd: the ioctl request |
| 2435 | * @arg: the ioctl data |
| 2436 | * |
| 2437 | * Note: The &drm_i915_private->perf.lock mutex has been taken to serialize |
| 2438 | * with any non-file-operation driver hooks. |
| 2439 | * |
| 2440 | * Returns: zero on success or a negative error code. Returns -EINVAL for |
| 2441 | * an unknown ioctl request. |
| 2442 | */ |
Robert Bragg | eec688e | 2016-11-07 19:49:47 +0000 | [diff] [blame] | 2443 | static long i915_perf_ioctl_locked(struct i915_perf_stream *stream, |
| 2444 | unsigned int cmd, |
| 2445 | unsigned long arg) |
| 2446 | { |
| 2447 | switch (cmd) { |
| 2448 | case I915_PERF_IOCTL_ENABLE: |
| 2449 | i915_perf_enable_locked(stream); |
| 2450 | return 0; |
| 2451 | case I915_PERF_IOCTL_DISABLE: |
| 2452 | i915_perf_disable_locked(stream); |
| 2453 | return 0; |
| 2454 | } |
| 2455 | |
| 2456 | return -EINVAL; |
| 2457 | } |
| 2458 | |
Robert Bragg | 16d98b3 | 2016-12-07 21:40:33 +0000 | [diff] [blame] | 2459 | /** |
| 2460 | * i915_perf_ioctl - support ioctl() usage with i915 perf stream FDs |
| 2461 | * @file: An i915 perf stream file |
| 2462 | * @cmd: the ioctl request |
| 2463 | * @arg: the ioctl data |
| 2464 | * |
| 2465 | * Implementation deferred to i915_perf_ioctl_locked(). |
| 2466 | * |
| 2467 | * Returns: zero on success or a negative error code. Returns -EINVAL for |
| 2468 | * an unknown ioctl request. |
| 2469 | */ |
Robert Bragg | eec688e | 2016-11-07 19:49:47 +0000 | [diff] [blame] | 2470 | static long i915_perf_ioctl(struct file *file, |
| 2471 | unsigned int cmd, |
| 2472 | unsigned long arg) |
| 2473 | { |
| 2474 | struct i915_perf_stream *stream = file->private_data; |
| 2475 | struct drm_i915_private *dev_priv = stream->dev_priv; |
| 2476 | long ret; |
| 2477 | |
| 2478 | mutex_lock(&dev_priv->perf.lock); |
| 2479 | ret = i915_perf_ioctl_locked(stream, cmd, arg); |
| 2480 | mutex_unlock(&dev_priv->perf.lock); |
| 2481 | |
| 2482 | return ret; |
| 2483 | } |
| 2484 | |
Robert Bragg | 16d98b3 | 2016-12-07 21:40:33 +0000 | [diff] [blame] | 2485 | /** |
| 2486 | * i915_perf_destroy_locked - destroy an i915 perf stream |
| 2487 | * @stream: An i915 perf stream |
| 2488 | * |
| 2489 | * Frees all resources associated with the given i915 perf @stream, disabling |
| 2490 | * any associated data capture in the process. |
| 2491 | * |
| 2492 | * Note: The &drm_i915_private->perf.lock mutex has been taken to serialize |
| 2493 | * with any non-file-operation driver hooks. |
| 2494 | */ |
Robert Bragg | eec688e | 2016-11-07 19:49:47 +0000 | [diff] [blame] | 2495 | static void i915_perf_destroy_locked(struct i915_perf_stream *stream) |
| 2496 | { |
Robert Bragg | eec688e | 2016-11-07 19:49:47 +0000 | [diff] [blame] | 2497 | if (stream->enabled) |
| 2498 | i915_perf_disable_locked(stream); |
| 2499 | |
| 2500 | if (stream->ops->destroy) |
| 2501 | stream->ops->destroy(stream); |
| 2502 | |
| 2503 | list_del(&stream->link); |
| 2504 | |
Chris Wilson | 69df05e | 2016-12-18 15:37:21 +0000 | [diff] [blame] | 2505 | if (stream->ctx) |
Chris Wilson | 5f09a9c | 2017-06-20 12:05:46 +0100 | [diff] [blame] | 2506 | i915_gem_context_put(stream->ctx); |
Robert Bragg | eec688e | 2016-11-07 19:49:47 +0000 | [diff] [blame] | 2507 | |
| 2508 | kfree(stream); |
| 2509 | } |
| 2510 | |
Robert Bragg | 16d98b3 | 2016-12-07 21:40:33 +0000 | [diff] [blame] | 2511 | /** |
| 2512 | * i915_perf_release - handles userspace close() of a stream file |
| 2513 | * @inode: anonymous inode associated with file |
| 2514 | * @file: An i915 perf stream file |
| 2515 | * |
| 2516 | * Cleans up any resources associated with an open i915 perf stream file. |
| 2517 | * |
| 2518 | * NB: close() can't really fail from the userspace point of view. |
| 2519 | * |
| 2520 | * Returns: zero on success or a negative error code. |
| 2521 | */ |
Robert Bragg | eec688e | 2016-11-07 19:49:47 +0000 | [diff] [blame] | 2522 | static int i915_perf_release(struct inode *inode, struct file *file) |
| 2523 | { |
| 2524 | struct i915_perf_stream *stream = file->private_data; |
| 2525 | struct drm_i915_private *dev_priv = stream->dev_priv; |
| 2526 | |
| 2527 | mutex_lock(&dev_priv->perf.lock); |
| 2528 | i915_perf_destroy_locked(stream); |
| 2529 | mutex_unlock(&dev_priv->perf.lock); |
| 2530 | |
| 2531 | return 0; |
| 2532 | } |
| 2533 | |
| 2534 | |
| 2535 | static const struct file_operations fops = { |
| 2536 | .owner = THIS_MODULE, |
| 2537 | .llseek = no_llseek, |
| 2538 | .release = i915_perf_release, |
| 2539 | .poll = i915_perf_poll, |
| 2540 | .read = i915_perf_read, |
| 2541 | .unlocked_ioctl = i915_perf_ioctl, |
Lionel Landwerlin | 191f896 | 2017-10-24 16:27:28 +0100 | [diff] [blame] | 2542 | /* Our ioctl have no arguments, so it's safe to use the same function |
| 2543 | * to handle 32bits compatibility. |
| 2544 | */ |
| 2545 | .compat_ioctl = i915_perf_ioctl, |
Robert Bragg | eec688e | 2016-11-07 19:49:47 +0000 | [diff] [blame] | 2546 | }; |
| 2547 | |
| 2548 | |
Robert Bragg | 16d98b3 | 2016-12-07 21:40:33 +0000 | [diff] [blame] | 2549 | /** |
| 2550 | * i915_perf_open_ioctl_locked - DRM ioctl() for userspace to open a stream FD |
| 2551 | * @dev_priv: i915 device instance |
| 2552 | * @param: The open parameters passed to 'DRM_I915_PERF_OPEN` |
| 2553 | * @props: individually validated u64 property value pairs |
| 2554 | * @file: drm file |
| 2555 | * |
| 2556 | * See i915_perf_ioctl_open() for interface details. |
| 2557 | * |
| 2558 | * Implements further stream config validation and stream initialization on |
| 2559 | * behalf of i915_perf_open_ioctl() with the &drm_i915_private->perf.lock mutex |
| 2560 | * taken to serialize with any non-file-operation driver hooks. |
| 2561 | * |
| 2562 | * Note: at this point the @props have only been validated in isolation and |
| 2563 | * it's still necessary to validate that the combination of properties makes |
| 2564 | * sense. |
| 2565 | * |
| 2566 | * In the case where userspace is interested in OA unit metrics then further |
| 2567 | * config validation and stream initialization details will be handled by |
| 2568 | * i915_oa_stream_init(). The code here should only validate config state that |
| 2569 | * will be relevant to all stream types / backends. |
| 2570 | * |
| 2571 | * Returns: zero on success or a negative error code. |
| 2572 | */ |
Robert Bragg | eec688e | 2016-11-07 19:49:47 +0000 | [diff] [blame] | 2573 | static int |
| 2574 | i915_perf_open_ioctl_locked(struct drm_i915_private *dev_priv, |
| 2575 | struct drm_i915_perf_open_param *param, |
| 2576 | struct perf_open_properties *props, |
| 2577 | struct drm_file *file) |
| 2578 | { |
| 2579 | struct i915_gem_context *specific_ctx = NULL; |
| 2580 | struct i915_perf_stream *stream = NULL; |
| 2581 | unsigned long f_flags = 0; |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 2582 | bool privileged_op = true; |
Robert Bragg | eec688e | 2016-11-07 19:49:47 +0000 | [diff] [blame] | 2583 | int stream_fd; |
| 2584 | int ret; |
| 2585 | |
| 2586 | if (props->single_context) { |
| 2587 | u32 ctx_handle = props->ctx_handle; |
| 2588 | struct drm_i915_file_private *file_priv = file->driver_priv; |
| 2589 | |
Imre Deak | 635f56c | 2017-07-14 18:12:41 +0300 | [diff] [blame] | 2590 | specific_ctx = i915_gem_context_lookup(file_priv, ctx_handle); |
| 2591 | if (!specific_ctx) { |
| 2592 | DRM_DEBUG("Failed to look up context with ID %u for opening perf stream\n", |
| 2593 | ctx_handle); |
| 2594 | ret = -ENOENT; |
Robert Bragg | eec688e | 2016-11-07 19:49:47 +0000 | [diff] [blame] | 2595 | goto err; |
| 2596 | } |
| 2597 | } |
| 2598 | |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 2599 | /* |
| 2600 | * On Haswell the OA unit supports clock gating off for a specific |
| 2601 | * context and in this mode there's no visibility of metrics for the |
| 2602 | * rest of the system, which we consider acceptable for a |
| 2603 | * non-privileged client. |
| 2604 | * |
| 2605 | * For Gen8+ the OA unit no longer supports clock gating off for a |
| 2606 | * specific context and the kernel can't securely stop the counters |
| 2607 | * from updating as system-wide / global values. Even though we can |
| 2608 | * filter reports based on the included context ID we can't block |
| 2609 | * clients from seeing the raw / global counter values via |
| 2610 | * MI_REPORT_PERF_COUNT commands and so consider it a privileged op to |
| 2611 | * enable the OA unit by default. |
| 2612 | */ |
| 2613 | if (IS_HASWELL(dev_priv) && specific_ctx) |
| 2614 | privileged_op = false; |
| 2615 | |
Robert Bragg | ccdf634 | 2016-11-07 19:49:54 +0000 | [diff] [blame] | 2616 | /* Similar to perf's kernel.perf_paranoid_cpu sysctl option |
| 2617 | * we check a dev.i915.perf_stream_paranoid sysctl option |
| 2618 | * to determine if it's ok to access system wide OA counters |
| 2619 | * without CAP_SYS_ADMIN privileges. |
| 2620 | */ |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 2621 | if (privileged_op && |
Robert Bragg | ccdf634 | 2016-11-07 19:49:54 +0000 | [diff] [blame] | 2622 | i915_perf_stream_paranoid && !capable(CAP_SYS_ADMIN)) { |
Robert Bragg | 7708550 | 2016-12-01 17:21:52 +0000 | [diff] [blame] | 2623 | DRM_DEBUG("Insufficient privileges to open system-wide i915 perf stream\n"); |
Robert Bragg | eec688e | 2016-11-07 19:49:47 +0000 | [diff] [blame] | 2624 | ret = -EACCES; |
| 2625 | goto err_ctx; |
| 2626 | } |
| 2627 | |
| 2628 | stream = kzalloc(sizeof(*stream), GFP_KERNEL); |
| 2629 | if (!stream) { |
| 2630 | ret = -ENOMEM; |
| 2631 | goto err_ctx; |
| 2632 | } |
| 2633 | |
Robert Bragg | eec688e | 2016-11-07 19:49:47 +0000 | [diff] [blame] | 2634 | stream->dev_priv = dev_priv; |
| 2635 | stream->ctx = specific_ctx; |
| 2636 | |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 2637 | ret = i915_oa_stream_init(stream, param, props); |
| 2638 | if (ret) |
| 2639 | goto err_alloc; |
| 2640 | |
| 2641 | /* we avoid simply assigning stream->sample_flags = props->sample_flags |
| 2642 | * to have _stream_init check the combination of sample flags more |
| 2643 | * thoroughly, but still this is the expected result at this point. |
Robert Bragg | eec688e | 2016-11-07 19:49:47 +0000 | [diff] [blame] | 2644 | */ |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 2645 | if (WARN_ON(stream->sample_flags != props->sample_flags)) { |
| 2646 | ret = -ENODEV; |
Matthew Auld | 22f880c | 2017-03-27 21:34:59 +0100 | [diff] [blame] | 2647 | goto err_flags; |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 2648 | } |
Robert Bragg | eec688e | 2016-11-07 19:49:47 +0000 | [diff] [blame] | 2649 | |
| 2650 | list_add(&stream->link, &dev_priv->perf.streams); |
| 2651 | |
| 2652 | if (param->flags & I915_PERF_FLAG_FD_CLOEXEC) |
| 2653 | f_flags |= O_CLOEXEC; |
| 2654 | if (param->flags & I915_PERF_FLAG_FD_NONBLOCK) |
| 2655 | f_flags |= O_NONBLOCK; |
| 2656 | |
| 2657 | stream_fd = anon_inode_getfd("[i915_perf]", &fops, stream, f_flags); |
| 2658 | if (stream_fd < 0) { |
| 2659 | ret = stream_fd; |
| 2660 | goto err_open; |
| 2661 | } |
| 2662 | |
| 2663 | if (!(param->flags & I915_PERF_FLAG_DISABLED)) |
| 2664 | i915_perf_enable_locked(stream); |
| 2665 | |
| 2666 | return stream_fd; |
| 2667 | |
| 2668 | err_open: |
| 2669 | list_del(&stream->link); |
Matthew Auld | 22f880c | 2017-03-27 21:34:59 +0100 | [diff] [blame] | 2670 | err_flags: |
Robert Bragg | eec688e | 2016-11-07 19:49:47 +0000 | [diff] [blame] | 2671 | if (stream->ops->destroy) |
| 2672 | stream->ops->destroy(stream); |
| 2673 | err_alloc: |
| 2674 | kfree(stream); |
| 2675 | err_ctx: |
Chris Wilson | 69df05e | 2016-12-18 15:37:21 +0000 | [diff] [blame] | 2676 | if (specific_ctx) |
Chris Wilson | 5f09a9c | 2017-06-20 12:05:46 +0100 | [diff] [blame] | 2677 | i915_gem_context_put(specific_ctx); |
Robert Bragg | eec688e | 2016-11-07 19:49:47 +0000 | [diff] [blame] | 2678 | err: |
| 2679 | return ret; |
| 2680 | } |
| 2681 | |
Robert Bragg | 155e941 | 2017-06-13 12:23:05 +0100 | [diff] [blame] | 2682 | static u64 oa_exponent_to_ns(struct drm_i915_private *dev_priv, int exponent) |
| 2683 | { |
Lionel Landwerlin | 9f9b279 | 2017-10-27 15:59:31 +0100 | [diff] [blame] | 2684 | return div64_u64(1000000000ULL * (2ULL << exponent), |
| 2685 | 1000ULL * INTEL_INFO(dev_priv)->cs_timestamp_frequency_khz); |
Robert Bragg | 155e941 | 2017-06-13 12:23:05 +0100 | [diff] [blame] | 2686 | } |
| 2687 | |
Robert Bragg | 16d98b3 | 2016-12-07 21:40:33 +0000 | [diff] [blame] | 2688 | /** |
| 2689 | * read_properties_unlocked - validate + copy userspace stream open properties |
| 2690 | * @dev_priv: i915 device instance |
| 2691 | * @uprops: The array of u64 key value pairs given by userspace |
| 2692 | * @n_props: The number of key value pairs expected in @uprops |
| 2693 | * @props: The stream configuration built up while validating properties |
Robert Bragg | eec688e | 2016-11-07 19:49:47 +0000 | [diff] [blame] | 2694 | * |
| 2695 | * Note this function only validates properties in isolation it doesn't |
| 2696 | * validate that the combination of properties makes sense or that all |
| 2697 | * properties necessary for a particular kind of stream have been set. |
Robert Bragg | 16d98b3 | 2016-12-07 21:40:33 +0000 | [diff] [blame] | 2698 | * |
| 2699 | * Note that there currently aren't any ordering requirements for properties so |
| 2700 | * we shouldn't validate or assume anything about ordering here. This doesn't |
| 2701 | * rule out defining new properties with ordering requirements in the future. |
Robert Bragg | eec688e | 2016-11-07 19:49:47 +0000 | [diff] [blame] | 2702 | */ |
| 2703 | static int read_properties_unlocked(struct drm_i915_private *dev_priv, |
| 2704 | u64 __user *uprops, |
| 2705 | u32 n_props, |
| 2706 | struct perf_open_properties *props) |
| 2707 | { |
| 2708 | u64 __user *uprop = uprops; |
Lionel Landwerlin | 701f823 | 2017-08-03 17:58:08 +0100 | [diff] [blame] | 2709 | u32 i; |
Robert Bragg | eec688e | 2016-11-07 19:49:47 +0000 | [diff] [blame] | 2710 | |
| 2711 | memset(props, 0, sizeof(struct perf_open_properties)); |
| 2712 | |
| 2713 | if (!n_props) { |
Robert Bragg | 7708550 | 2016-12-01 17:21:52 +0000 | [diff] [blame] | 2714 | DRM_DEBUG("No i915 perf properties given\n"); |
Robert Bragg | eec688e | 2016-11-07 19:49:47 +0000 | [diff] [blame] | 2715 | return -EINVAL; |
| 2716 | } |
| 2717 | |
| 2718 | /* Considering that ID = 0 is reserved and assuming that we don't |
| 2719 | * (currently) expect any configurations to ever specify duplicate |
| 2720 | * values for a particular property ID then the last _PROP_MAX value is |
| 2721 | * one greater than the maximum number of properties we expect to get |
| 2722 | * from userspace. |
| 2723 | */ |
| 2724 | if (n_props >= DRM_I915_PERF_PROP_MAX) { |
Robert Bragg | 7708550 | 2016-12-01 17:21:52 +0000 | [diff] [blame] | 2725 | DRM_DEBUG("More i915 perf properties specified than exist\n"); |
Robert Bragg | eec688e | 2016-11-07 19:49:47 +0000 | [diff] [blame] | 2726 | return -EINVAL; |
| 2727 | } |
| 2728 | |
| 2729 | for (i = 0; i < n_props; i++) { |
Robert Bragg | 00319ba | 2016-11-07 19:49:55 +0000 | [diff] [blame] | 2730 | u64 oa_period, oa_freq_hz; |
Robert Bragg | eec688e | 2016-11-07 19:49:47 +0000 | [diff] [blame] | 2731 | u64 id, value; |
| 2732 | int ret; |
| 2733 | |
| 2734 | ret = get_user(id, uprop); |
| 2735 | if (ret) |
| 2736 | return ret; |
| 2737 | |
| 2738 | ret = get_user(value, uprop + 1); |
| 2739 | if (ret) |
| 2740 | return ret; |
| 2741 | |
Matthew Auld | 0a309f9 | 2017-03-27 21:32:36 +0100 | [diff] [blame] | 2742 | if (id == 0 || id >= DRM_I915_PERF_PROP_MAX) { |
| 2743 | DRM_DEBUG("Unknown i915 perf property ID\n"); |
| 2744 | return -EINVAL; |
| 2745 | } |
| 2746 | |
Robert Bragg | eec688e | 2016-11-07 19:49:47 +0000 | [diff] [blame] | 2747 | switch ((enum drm_i915_perf_property_id)id) { |
| 2748 | case DRM_I915_PERF_PROP_CTX_HANDLE: |
| 2749 | props->single_context = 1; |
| 2750 | props->ctx_handle = value; |
| 2751 | break; |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 2752 | case DRM_I915_PERF_PROP_SAMPLE_OA: |
Lionel Landwerlin | b6dd47b | 2018-03-26 10:08:22 +0100 | [diff] [blame] | 2753 | if (value) |
| 2754 | props->sample_flags |= SAMPLE_OA_REPORT; |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 2755 | break; |
| 2756 | case DRM_I915_PERF_PROP_OA_METRICS_SET: |
Lionel Landwerlin | 701f823 | 2017-08-03 17:58:08 +0100 | [diff] [blame] | 2757 | if (value == 0) { |
Robert Bragg | 7708550 | 2016-12-01 17:21:52 +0000 | [diff] [blame] | 2758 | DRM_DEBUG("Unknown OA metric set ID\n"); |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 2759 | return -EINVAL; |
| 2760 | } |
| 2761 | props->metrics_set = value; |
| 2762 | break; |
| 2763 | case DRM_I915_PERF_PROP_OA_FORMAT: |
| 2764 | if (value == 0 || value >= I915_OA_FORMAT_MAX) { |
Robert Bragg | 52c57c2 | 2017-05-11 16:43:29 +0100 | [diff] [blame] | 2765 | DRM_DEBUG("Out-of-range OA report format %llu\n", |
| 2766 | value); |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 2767 | return -EINVAL; |
| 2768 | } |
| 2769 | if (!dev_priv->perf.oa.oa_formats[value].size) { |
Robert Bragg | 52c57c2 | 2017-05-11 16:43:29 +0100 | [diff] [blame] | 2770 | DRM_DEBUG("Unsupported OA report format %llu\n", |
| 2771 | value); |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 2772 | return -EINVAL; |
| 2773 | } |
| 2774 | props->oa_format = value; |
| 2775 | break; |
| 2776 | case DRM_I915_PERF_PROP_OA_EXPONENT: |
| 2777 | if (value > OA_EXPONENT_MAX) { |
Robert Bragg | 7708550 | 2016-12-01 17:21:52 +0000 | [diff] [blame] | 2778 | DRM_DEBUG("OA timer exponent too high (> %u)\n", |
| 2779 | OA_EXPONENT_MAX); |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 2780 | return -EINVAL; |
| 2781 | } |
| 2782 | |
Robert Bragg | 00319ba | 2016-11-07 19:49:55 +0000 | [diff] [blame] | 2783 | /* Theoretically we can program the OA unit to sample |
Robert Bragg | 155e941 | 2017-06-13 12:23:05 +0100 | [diff] [blame] | 2784 | * e.g. every 160ns for HSW, 167ns for BDW/SKL or 104ns |
| 2785 | * for BXT. We don't allow such high sampling |
| 2786 | * frequencies by default unless root. |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 2787 | */ |
Robert Bragg | 155e941 | 2017-06-13 12:23:05 +0100 | [diff] [blame] | 2788 | |
Robert Bragg | 00319ba | 2016-11-07 19:49:55 +0000 | [diff] [blame] | 2789 | BUILD_BUG_ON(sizeof(oa_period) != 8); |
Robert Bragg | 155e941 | 2017-06-13 12:23:05 +0100 | [diff] [blame] | 2790 | oa_period = oa_exponent_to_ns(dev_priv, value); |
Robert Bragg | 00319ba | 2016-11-07 19:49:55 +0000 | [diff] [blame] | 2791 | |
| 2792 | /* This check is primarily to ensure that oa_period <= |
| 2793 | * UINT32_MAX (before passing to do_div which only |
| 2794 | * accepts a u32 denominator), but we can also skip |
| 2795 | * checking anything < 1Hz which implicitly can't be |
| 2796 | * limited via an integer oa_max_sample_rate. |
| 2797 | */ |
| 2798 | if (oa_period <= NSEC_PER_SEC) { |
| 2799 | u64 tmp = NSEC_PER_SEC; |
| 2800 | do_div(tmp, oa_period); |
| 2801 | oa_freq_hz = tmp; |
| 2802 | } else |
| 2803 | oa_freq_hz = 0; |
| 2804 | |
| 2805 | if (oa_freq_hz > i915_oa_max_sample_rate && |
| 2806 | !capable(CAP_SYS_ADMIN)) { |
Robert Bragg | 7708550 | 2016-12-01 17:21:52 +0000 | [diff] [blame] | 2807 | DRM_DEBUG("OA exponent would exceed the max sampling frequency (sysctl dev.i915.oa_max_sample_rate) %uHz without root privileges\n", |
Robert Bragg | 00319ba | 2016-11-07 19:49:55 +0000 | [diff] [blame] | 2808 | i915_oa_max_sample_rate); |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 2809 | return -EACCES; |
| 2810 | } |
| 2811 | |
| 2812 | props->oa_periodic = true; |
| 2813 | props->oa_period_exponent = value; |
| 2814 | break; |
Matthew Auld | 0a309f9 | 2017-03-27 21:32:36 +0100 | [diff] [blame] | 2815 | case DRM_I915_PERF_PROP_MAX: |
Robert Bragg | eec688e | 2016-11-07 19:49:47 +0000 | [diff] [blame] | 2816 | MISSING_CASE(id); |
Robert Bragg | eec688e | 2016-11-07 19:49:47 +0000 | [diff] [blame] | 2817 | return -EINVAL; |
| 2818 | } |
| 2819 | |
| 2820 | uprop += 2; |
| 2821 | } |
| 2822 | |
| 2823 | return 0; |
| 2824 | } |
| 2825 | |
Robert Bragg | 16d98b3 | 2016-12-07 21:40:33 +0000 | [diff] [blame] | 2826 | /** |
| 2827 | * i915_perf_open_ioctl - DRM ioctl() for userspace to open a stream FD |
| 2828 | * @dev: drm device |
| 2829 | * @data: ioctl data copied from userspace (unvalidated) |
| 2830 | * @file: drm file |
| 2831 | * |
| 2832 | * Validates the stream open parameters given by userspace including flags |
| 2833 | * and an array of u64 key, value pair properties. |
| 2834 | * |
| 2835 | * Very little is assumed up front about the nature of the stream being |
| 2836 | * opened (for instance we don't assume it's for periodic OA unit metrics). An |
| 2837 | * i915-perf stream is expected to be a suitable interface for other forms of |
| 2838 | * buffered data written by the GPU besides periodic OA metrics. |
| 2839 | * |
| 2840 | * Note we copy the properties from userspace outside of the i915 perf |
| 2841 | * mutex to avoid an awkward lockdep with mmap_sem. |
| 2842 | * |
| 2843 | * Most of the implementation details are handled by |
| 2844 | * i915_perf_open_ioctl_locked() after taking the &drm_i915_private->perf.lock |
| 2845 | * mutex for serializing with any non-file-operation driver hooks. |
| 2846 | * |
| 2847 | * Return: A newly opened i915 Perf stream file descriptor or negative |
| 2848 | * error code on failure. |
| 2849 | */ |
Robert Bragg | eec688e | 2016-11-07 19:49:47 +0000 | [diff] [blame] | 2850 | int i915_perf_open_ioctl(struct drm_device *dev, void *data, |
| 2851 | struct drm_file *file) |
| 2852 | { |
| 2853 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2854 | struct drm_i915_perf_open_param *param = data; |
| 2855 | struct perf_open_properties props; |
| 2856 | u32 known_open_flags; |
| 2857 | int ret; |
| 2858 | |
| 2859 | if (!dev_priv->perf.initialized) { |
Robert Bragg | 7708550 | 2016-12-01 17:21:52 +0000 | [diff] [blame] | 2860 | DRM_DEBUG("i915 perf interface not available for this system\n"); |
Robert Bragg | eec688e | 2016-11-07 19:49:47 +0000 | [diff] [blame] | 2861 | return -ENOTSUPP; |
| 2862 | } |
| 2863 | |
| 2864 | known_open_flags = I915_PERF_FLAG_FD_CLOEXEC | |
| 2865 | I915_PERF_FLAG_FD_NONBLOCK | |
| 2866 | I915_PERF_FLAG_DISABLED; |
| 2867 | if (param->flags & ~known_open_flags) { |
Robert Bragg | 7708550 | 2016-12-01 17:21:52 +0000 | [diff] [blame] | 2868 | DRM_DEBUG("Unknown drm_i915_perf_open_param flag\n"); |
Robert Bragg | eec688e | 2016-11-07 19:49:47 +0000 | [diff] [blame] | 2869 | return -EINVAL; |
| 2870 | } |
| 2871 | |
| 2872 | ret = read_properties_unlocked(dev_priv, |
| 2873 | u64_to_user_ptr(param->properties_ptr), |
| 2874 | param->num_properties, |
| 2875 | &props); |
| 2876 | if (ret) |
| 2877 | return ret; |
| 2878 | |
| 2879 | mutex_lock(&dev_priv->perf.lock); |
| 2880 | ret = i915_perf_open_ioctl_locked(dev_priv, param, &props, file); |
| 2881 | mutex_unlock(&dev_priv->perf.lock); |
| 2882 | |
| 2883 | return ret; |
| 2884 | } |
| 2885 | |
Robert Bragg | 16d98b3 | 2016-12-07 21:40:33 +0000 | [diff] [blame] | 2886 | /** |
| 2887 | * i915_perf_register - exposes i915-perf to userspace |
| 2888 | * @dev_priv: i915 device instance |
| 2889 | * |
| 2890 | * In particular OA metric sets are advertised under a sysfs metrics/ |
| 2891 | * directory allowing userspace to enumerate valid IDs that can be |
| 2892 | * used to open an i915-perf stream. |
| 2893 | */ |
Robert Bragg | 442b8c0 | 2016-11-07 19:49:53 +0000 | [diff] [blame] | 2894 | void i915_perf_register(struct drm_i915_private *dev_priv) |
| 2895 | { |
Lionel Landwerlin | 701f823 | 2017-08-03 17:58:08 +0100 | [diff] [blame] | 2896 | int ret; |
| 2897 | |
Robert Bragg | 442b8c0 | 2016-11-07 19:49:53 +0000 | [diff] [blame] | 2898 | if (!dev_priv->perf.initialized) |
| 2899 | return; |
| 2900 | |
| 2901 | /* To be sure we're synchronized with an attempted |
| 2902 | * i915_perf_open_ioctl(); considering that we register after |
| 2903 | * being exposed to userspace. |
| 2904 | */ |
| 2905 | mutex_lock(&dev_priv->perf.lock); |
| 2906 | |
| 2907 | dev_priv->perf.metrics_kobj = |
| 2908 | kobject_create_and_add("metrics", |
| 2909 | &dev_priv->drm.primary->kdev->kobj); |
| 2910 | if (!dev_priv->perf.metrics_kobj) |
| 2911 | goto exit; |
| 2912 | |
Chris Wilson | 40f75ea | 2017-08-10 18:57:41 +0100 | [diff] [blame] | 2913 | sysfs_attr_init(&dev_priv->perf.oa.test_config.sysfs_metric_id.attr); |
Lionel Landwerlin | 701f823 | 2017-08-03 17:58:08 +0100 | [diff] [blame] | 2914 | |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 2915 | if (IS_HASWELL(dev_priv)) { |
Lionel Landwerlin | 701f823 | 2017-08-03 17:58:08 +0100 | [diff] [blame] | 2916 | i915_perf_load_test_config_hsw(dev_priv); |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 2917 | } else if (IS_BROADWELL(dev_priv)) { |
Lionel Landwerlin | 701f823 | 2017-08-03 17:58:08 +0100 | [diff] [blame] | 2918 | i915_perf_load_test_config_bdw(dev_priv); |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 2919 | } else if (IS_CHERRYVIEW(dev_priv)) { |
Lionel Landwerlin | 701f823 | 2017-08-03 17:58:08 +0100 | [diff] [blame] | 2920 | i915_perf_load_test_config_chv(dev_priv); |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 2921 | } else if (IS_SKYLAKE(dev_priv)) { |
Lionel Landwerlin | 701f823 | 2017-08-03 17:58:08 +0100 | [diff] [blame] | 2922 | if (IS_SKL_GT2(dev_priv)) |
| 2923 | i915_perf_load_test_config_sklgt2(dev_priv); |
| 2924 | else if (IS_SKL_GT3(dev_priv)) |
| 2925 | i915_perf_load_test_config_sklgt3(dev_priv); |
| 2926 | else if (IS_SKL_GT4(dev_priv)) |
| 2927 | i915_perf_load_test_config_sklgt4(dev_priv); |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 2928 | } else if (IS_BROXTON(dev_priv)) { |
Lionel Landwerlin | 701f823 | 2017-08-03 17:58:08 +0100 | [diff] [blame] | 2929 | i915_perf_load_test_config_bxt(dev_priv); |
Lionel Landwerlin | 6c5c1d8 | 2017-06-13 12:23:08 +0100 | [diff] [blame] | 2930 | } else if (IS_KABYLAKE(dev_priv)) { |
Lionel Landwerlin | 701f823 | 2017-08-03 17:58:08 +0100 | [diff] [blame] | 2931 | if (IS_KBL_GT2(dev_priv)) |
| 2932 | i915_perf_load_test_config_kblgt2(dev_priv); |
| 2933 | else if (IS_KBL_GT3(dev_priv)) |
| 2934 | i915_perf_load_test_config_kblgt3(dev_priv); |
Lionel Landwerlin | 28c7ef9 | 2017-06-13 12:23:09 +0100 | [diff] [blame] | 2935 | } else if (IS_GEMINILAKE(dev_priv)) { |
Lionel Landwerlin | 701f823 | 2017-08-03 17:58:08 +0100 | [diff] [blame] | 2936 | i915_perf_load_test_config_glk(dev_priv); |
Lionel Landwerlin | 22ea4f3 | 2017-09-18 12:21:24 +0100 | [diff] [blame] | 2937 | } else if (IS_COFFEELAKE(dev_priv)) { |
| 2938 | if (IS_CFL_GT2(dev_priv)) |
| 2939 | i915_perf_load_test_config_cflgt2(dev_priv); |
Lionel Landwerlin | 4407eaa | 2017-11-10 19:08:40 +0000 | [diff] [blame] | 2940 | if (IS_CFL_GT3(dev_priv)) |
| 2941 | i915_perf_load_test_config_cflgt3(dev_priv); |
Lionel Landwerlin | 95690a0 | 2017-11-10 19:08:43 +0000 | [diff] [blame] | 2942 | } else if (IS_CANNONLAKE(dev_priv)) { |
| 2943 | i915_perf_load_test_config_cnl(dev_priv); |
Lionel Landwerlin | 1de401c | 2018-03-26 14:39:48 +0100 | [diff] [blame] | 2944 | } else if (IS_ICELAKE(dev_priv)) { |
| 2945 | i915_perf_load_test_config_icl(dev_priv); |
Robert Bragg | 442b8c0 | 2016-11-07 19:49:53 +0000 | [diff] [blame] | 2946 | } |
| 2947 | |
Lionel Landwerlin | 701f823 | 2017-08-03 17:58:08 +0100 | [diff] [blame] | 2948 | if (dev_priv->perf.oa.test_config.id == 0) |
| 2949 | goto sysfs_error; |
| 2950 | |
| 2951 | ret = sysfs_create_group(dev_priv->perf.metrics_kobj, |
| 2952 | &dev_priv->perf.oa.test_config.sysfs_metric); |
| 2953 | if (ret) |
| 2954 | goto sysfs_error; |
Lionel Landwerlin | f89823c | 2017-08-03 18:05:50 +0100 | [diff] [blame] | 2955 | |
| 2956 | atomic_set(&dev_priv->perf.oa.test_config.ref_count, 1); |
| 2957 | |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 2958 | goto exit; |
| 2959 | |
| 2960 | sysfs_error: |
| 2961 | kobject_put(dev_priv->perf.metrics_kobj); |
| 2962 | dev_priv->perf.metrics_kobj = NULL; |
| 2963 | |
Robert Bragg | 442b8c0 | 2016-11-07 19:49:53 +0000 | [diff] [blame] | 2964 | exit: |
| 2965 | mutex_unlock(&dev_priv->perf.lock); |
| 2966 | } |
| 2967 | |
Robert Bragg | 16d98b3 | 2016-12-07 21:40:33 +0000 | [diff] [blame] | 2968 | /** |
| 2969 | * i915_perf_unregister - hide i915-perf from userspace |
| 2970 | * @dev_priv: i915 device instance |
| 2971 | * |
| 2972 | * i915-perf state cleanup is split up into an 'unregister' and |
| 2973 | * 'deinit' phase where the interface is first hidden from |
| 2974 | * userspace by i915_perf_unregister() before cleaning up |
| 2975 | * remaining state in i915_perf_fini(). |
| 2976 | */ |
Robert Bragg | 442b8c0 | 2016-11-07 19:49:53 +0000 | [diff] [blame] | 2977 | void i915_perf_unregister(struct drm_i915_private *dev_priv) |
| 2978 | { |
Robert Bragg | 442b8c0 | 2016-11-07 19:49:53 +0000 | [diff] [blame] | 2979 | if (!dev_priv->perf.metrics_kobj) |
| 2980 | return; |
| 2981 | |
Lionel Landwerlin | 701f823 | 2017-08-03 17:58:08 +0100 | [diff] [blame] | 2982 | sysfs_remove_group(dev_priv->perf.metrics_kobj, |
| 2983 | &dev_priv->perf.oa.test_config.sysfs_metric); |
Robert Bragg | 442b8c0 | 2016-11-07 19:49:53 +0000 | [diff] [blame] | 2984 | |
| 2985 | kobject_put(dev_priv->perf.metrics_kobj); |
| 2986 | dev_priv->perf.metrics_kobj = NULL; |
| 2987 | } |
| 2988 | |
Lionel Landwerlin | f89823c | 2017-08-03 18:05:50 +0100 | [diff] [blame] | 2989 | static bool gen8_is_valid_flex_addr(struct drm_i915_private *dev_priv, u32 addr) |
| 2990 | { |
| 2991 | static const i915_reg_t flex_eu_regs[] = { |
| 2992 | EU_PERF_CNTL0, |
| 2993 | EU_PERF_CNTL1, |
| 2994 | EU_PERF_CNTL2, |
| 2995 | EU_PERF_CNTL3, |
| 2996 | EU_PERF_CNTL4, |
| 2997 | EU_PERF_CNTL5, |
| 2998 | EU_PERF_CNTL6, |
| 2999 | }; |
| 3000 | int i; |
| 3001 | |
| 3002 | for (i = 0; i < ARRAY_SIZE(flex_eu_regs); i++) { |
Lionel Landwerlin | 7c52a22 | 2017-11-13 23:34:52 +0000 | [diff] [blame] | 3003 | if (i915_mmio_reg_offset(flex_eu_regs[i]) == addr) |
Lionel Landwerlin | f89823c | 2017-08-03 18:05:50 +0100 | [diff] [blame] | 3004 | return true; |
| 3005 | } |
| 3006 | return false; |
| 3007 | } |
| 3008 | |
| 3009 | static bool gen7_is_valid_b_counter_addr(struct drm_i915_private *dev_priv, u32 addr) |
| 3010 | { |
Lionel Landwerlin | 7c52a22 | 2017-11-13 23:34:52 +0000 | [diff] [blame] | 3011 | return (addr >= i915_mmio_reg_offset(OASTARTTRIG1) && |
| 3012 | addr <= i915_mmio_reg_offset(OASTARTTRIG8)) || |
| 3013 | (addr >= i915_mmio_reg_offset(OAREPORTTRIG1) && |
| 3014 | addr <= i915_mmio_reg_offset(OAREPORTTRIG8)) || |
| 3015 | (addr >= i915_mmio_reg_offset(OACEC0_0) && |
| 3016 | addr <= i915_mmio_reg_offset(OACEC7_1)); |
Lionel Landwerlin | f89823c | 2017-08-03 18:05:50 +0100 | [diff] [blame] | 3017 | } |
| 3018 | |
| 3019 | static bool gen7_is_valid_mux_addr(struct drm_i915_private *dev_priv, u32 addr) |
| 3020 | { |
Lionel Landwerlin | 7c52a22 | 2017-11-13 23:34:52 +0000 | [diff] [blame] | 3021 | return addr == i915_mmio_reg_offset(HALF_SLICE_CHICKEN2) || |
| 3022 | (addr >= i915_mmio_reg_offset(MICRO_BP0_0) && |
| 3023 | addr <= i915_mmio_reg_offset(NOA_WRITE)) || |
| 3024 | (addr >= i915_mmio_reg_offset(OA_PERFCNT1_LO) && |
| 3025 | addr <= i915_mmio_reg_offset(OA_PERFCNT2_HI)) || |
| 3026 | (addr >= i915_mmio_reg_offset(OA_PERFMATRIX_LO) && |
| 3027 | addr <= i915_mmio_reg_offset(OA_PERFMATRIX_HI)); |
Lionel Landwerlin | f89823c | 2017-08-03 18:05:50 +0100 | [diff] [blame] | 3028 | } |
| 3029 | |
| 3030 | static bool gen8_is_valid_mux_addr(struct drm_i915_private *dev_priv, u32 addr) |
| 3031 | { |
| 3032 | return gen7_is_valid_mux_addr(dev_priv, addr) || |
Lionel Landwerlin | 7c52a22 | 2017-11-13 23:34:52 +0000 | [diff] [blame] | 3033 | addr == i915_mmio_reg_offset(WAIT_FOR_RC6_EXIT) || |
| 3034 | (addr >= i915_mmio_reg_offset(RPM_CONFIG0) && |
| 3035 | addr <= i915_mmio_reg_offset(NOA_CONFIG(8))); |
Lionel Landwerlin | f89823c | 2017-08-03 18:05:50 +0100 | [diff] [blame] | 3036 | } |
| 3037 | |
Lionel Landwerlin | 95690a0 | 2017-11-10 19:08:43 +0000 | [diff] [blame] | 3038 | static bool gen10_is_valid_mux_addr(struct drm_i915_private *dev_priv, u32 addr) |
| 3039 | { |
| 3040 | return gen8_is_valid_mux_addr(dev_priv, addr) || |
Lionel Landwerlin | 7c52a22 | 2017-11-13 23:34:52 +0000 | [diff] [blame] | 3041 | (addr >= i915_mmio_reg_offset(OA_PERFCNT3_LO) && |
| 3042 | addr <= i915_mmio_reg_offset(OA_PERFCNT4_HI)); |
Lionel Landwerlin | 95690a0 | 2017-11-10 19:08:43 +0000 | [diff] [blame] | 3043 | } |
| 3044 | |
Lionel Landwerlin | f89823c | 2017-08-03 18:05:50 +0100 | [diff] [blame] | 3045 | static bool hsw_is_valid_mux_addr(struct drm_i915_private *dev_priv, u32 addr) |
| 3046 | { |
| 3047 | return gen7_is_valid_mux_addr(dev_priv, addr) || |
| 3048 | (addr >= 0x25100 && addr <= 0x2FF90) || |
Lionel Landwerlin | 7c52a22 | 2017-11-13 23:34:52 +0000 | [diff] [blame] | 3049 | (addr >= i915_mmio_reg_offset(HSW_MBVID2_NOA0) && |
| 3050 | addr <= i915_mmio_reg_offset(HSW_MBVID2_NOA9)) || |
| 3051 | addr == i915_mmio_reg_offset(HSW_MBVID2_MISR0); |
Lionel Landwerlin | f89823c | 2017-08-03 18:05:50 +0100 | [diff] [blame] | 3052 | } |
| 3053 | |
| 3054 | static bool chv_is_valid_mux_addr(struct drm_i915_private *dev_priv, u32 addr) |
| 3055 | { |
| 3056 | return gen7_is_valid_mux_addr(dev_priv, addr) || |
| 3057 | (addr >= 0x182300 && addr <= 0x1823A4); |
| 3058 | } |
| 3059 | |
| 3060 | static uint32_t mask_reg_value(u32 reg, u32 val) |
| 3061 | { |
| 3062 | /* HALF_SLICE_CHICKEN2 is programmed with a the |
| 3063 | * WaDisableSTUnitPowerOptimization workaround. Make sure the value |
| 3064 | * programmed by userspace doesn't change this. |
| 3065 | */ |
Lionel Landwerlin | 7c52a22 | 2017-11-13 23:34:52 +0000 | [diff] [blame] | 3066 | if (i915_mmio_reg_offset(HALF_SLICE_CHICKEN2) == reg) |
Lionel Landwerlin | f89823c | 2017-08-03 18:05:50 +0100 | [diff] [blame] | 3067 | val = val & ~_MASKED_BIT_ENABLE(GEN8_ST_PO_DISABLE); |
| 3068 | |
| 3069 | /* WAIT_FOR_RC6_EXIT has only one bit fullfilling the function |
| 3070 | * indicated by its name and a bunch of selection fields used by OA |
| 3071 | * configs. |
| 3072 | */ |
Lionel Landwerlin | 7c52a22 | 2017-11-13 23:34:52 +0000 | [diff] [blame] | 3073 | if (i915_mmio_reg_offset(WAIT_FOR_RC6_EXIT) == reg) |
Lionel Landwerlin | f89823c | 2017-08-03 18:05:50 +0100 | [diff] [blame] | 3074 | val = val & ~_MASKED_BIT_ENABLE(HSW_WAIT_FOR_RC6_EXIT_ENABLE); |
| 3075 | |
| 3076 | return val; |
| 3077 | } |
| 3078 | |
| 3079 | static struct i915_oa_reg *alloc_oa_regs(struct drm_i915_private *dev_priv, |
| 3080 | bool (*is_valid)(struct drm_i915_private *dev_priv, u32 addr), |
| 3081 | u32 __user *regs, |
| 3082 | u32 n_regs) |
| 3083 | { |
| 3084 | struct i915_oa_reg *oa_regs; |
| 3085 | int err; |
| 3086 | u32 i; |
| 3087 | |
| 3088 | if (!n_regs) |
| 3089 | return NULL; |
| 3090 | |
| 3091 | if (!access_ok(VERIFY_READ, regs, n_regs * sizeof(u32) * 2)) |
| 3092 | return ERR_PTR(-EFAULT); |
| 3093 | |
| 3094 | /* No is_valid function means we're not allowing any register to be programmed. */ |
| 3095 | GEM_BUG_ON(!is_valid); |
| 3096 | if (!is_valid) |
| 3097 | return ERR_PTR(-EINVAL); |
| 3098 | |
| 3099 | oa_regs = kmalloc_array(n_regs, sizeof(*oa_regs), GFP_KERNEL); |
| 3100 | if (!oa_regs) |
| 3101 | return ERR_PTR(-ENOMEM); |
| 3102 | |
| 3103 | for (i = 0; i < n_regs; i++) { |
| 3104 | u32 addr, value; |
| 3105 | |
| 3106 | err = get_user(addr, regs); |
| 3107 | if (err) |
| 3108 | goto addr_err; |
| 3109 | |
| 3110 | if (!is_valid(dev_priv, addr)) { |
| 3111 | DRM_DEBUG("Invalid oa_reg address: %X\n", addr); |
| 3112 | err = -EINVAL; |
| 3113 | goto addr_err; |
| 3114 | } |
| 3115 | |
| 3116 | err = get_user(value, regs + 1); |
| 3117 | if (err) |
| 3118 | goto addr_err; |
| 3119 | |
| 3120 | oa_regs[i].addr = _MMIO(addr); |
| 3121 | oa_regs[i].value = mask_reg_value(addr, value); |
| 3122 | |
| 3123 | regs += 2; |
| 3124 | } |
| 3125 | |
| 3126 | return oa_regs; |
| 3127 | |
| 3128 | addr_err: |
| 3129 | kfree(oa_regs); |
| 3130 | return ERR_PTR(err); |
| 3131 | } |
| 3132 | |
| 3133 | static ssize_t show_dynamic_id(struct device *dev, |
| 3134 | struct device_attribute *attr, |
| 3135 | char *buf) |
| 3136 | { |
| 3137 | struct i915_oa_config *oa_config = |
| 3138 | container_of(attr, typeof(*oa_config), sysfs_metric_id); |
| 3139 | |
| 3140 | return sprintf(buf, "%d\n", oa_config->id); |
| 3141 | } |
| 3142 | |
| 3143 | static int create_dynamic_oa_sysfs_entry(struct drm_i915_private *dev_priv, |
| 3144 | struct i915_oa_config *oa_config) |
| 3145 | { |
Chris Wilson | 28152a2 | 2017-08-03 23:37:00 +0100 | [diff] [blame] | 3146 | sysfs_attr_init(&oa_config->sysfs_metric_id.attr); |
Lionel Landwerlin | f89823c | 2017-08-03 18:05:50 +0100 | [diff] [blame] | 3147 | oa_config->sysfs_metric_id.attr.name = "id"; |
| 3148 | oa_config->sysfs_metric_id.attr.mode = S_IRUGO; |
| 3149 | oa_config->sysfs_metric_id.show = show_dynamic_id; |
| 3150 | oa_config->sysfs_metric_id.store = NULL; |
| 3151 | |
| 3152 | oa_config->attrs[0] = &oa_config->sysfs_metric_id.attr; |
| 3153 | oa_config->attrs[1] = NULL; |
| 3154 | |
| 3155 | oa_config->sysfs_metric.name = oa_config->uuid; |
| 3156 | oa_config->sysfs_metric.attrs = oa_config->attrs; |
| 3157 | |
| 3158 | return sysfs_create_group(dev_priv->perf.metrics_kobj, |
| 3159 | &oa_config->sysfs_metric); |
| 3160 | } |
| 3161 | |
| 3162 | /** |
| 3163 | * i915_perf_add_config_ioctl - DRM ioctl() for userspace to add a new OA config |
| 3164 | * @dev: drm device |
| 3165 | * @data: ioctl data (pointer to struct drm_i915_perf_oa_config) copied from |
| 3166 | * userspace (unvalidated) |
| 3167 | * @file: drm file |
| 3168 | * |
| 3169 | * Validates the submitted OA register to be saved into a new OA config that |
| 3170 | * can then be used for programming the OA unit and its NOA network. |
| 3171 | * |
| 3172 | * Returns: A new allocated config number to be used with the perf open ioctl |
| 3173 | * or a negative error code on failure. |
| 3174 | */ |
| 3175 | int i915_perf_add_config_ioctl(struct drm_device *dev, void *data, |
| 3176 | struct drm_file *file) |
| 3177 | { |
| 3178 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3179 | struct drm_i915_perf_oa_config *args = data; |
| 3180 | struct i915_oa_config *oa_config, *tmp; |
| 3181 | int err, id; |
| 3182 | |
| 3183 | if (!dev_priv->perf.initialized) { |
| 3184 | DRM_DEBUG("i915 perf interface not available for this system\n"); |
| 3185 | return -ENOTSUPP; |
| 3186 | } |
| 3187 | |
| 3188 | if (!dev_priv->perf.metrics_kobj) { |
| 3189 | DRM_DEBUG("OA metrics weren't advertised via sysfs\n"); |
| 3190 | return -EINVAL; |
| 3191 | } |
| 3192 | |
| 3193 | if (i915_perf_stream_paranoid && !capable(CAP_SYS_ADMIN)) { |
| 3194 | DRM_DEBUG("Insufficient privileges to add i915 OA config\n"); |
| 3195 | return -EACCES; |
| 3196 | } |
| 3197 | |
| 3198 | if ((!args->mux_regs_ptr || !args->n_mux_regs) && |
| 3199 | (!args->boolean_regs_ptr || !args->n_boolean_regs) && |
| 3200 | (!args->flex_regs_ptr || !args->n_flex_regs)) { |
| 3201 | DRM_DEBUG("No OA registers given\n"); |
| 3202 | return -EINVAL; |
| 3203 | } |
| 3204 | |
| 3205 | oa_config = kzalloc(sizeof(*oa_config), GFP_KERNEL); |
| 3206 | if (!oa_config) { |
| 3207 | DRM_DEBUG("Failed to allocate memory for the OA config\n"); |
| 3208 | return -ENOMEM; |
| 3209 | } |
| 3210 | |
| 3211 | atomic_set(&oa_config->ref_count, 1); |
| 3212 | |
| 3213 | if (!uuid_is_valid(args->uuid)) { |
| 3214 | DRM_DEBUG("Invalid uuid format for OA config\n"); |
| 3215 | err = -EINVAL; |
| 3216 | goto reg_err; |
| 3217 | } |
| 3218 | |
| 3219 | /* Last character in oa_config->uuid will be 0 because oa_config is |
| 3220 | * kzalloc. |
| 3221 | */ |
| 3222 | memcpy(oa_config->uuid, args->uuid, sizeof(args->uuid)); |
| 3223 | |
| 3224 | oa_config->mux_regs_len = args->n_mux_regs; |
| 3225 | oa_config->mux_regs = |
| 3226 | alloc_oa_regs(dev_priv, |
| 3227 | dev_priv->perf.oa.ops.is_valid_mux_reg, |
| 3228 | u64_to_user_ptr(args->mux_regs_ptr), |
| 3229 | args->n_mux_regs); |
| 3230 | |
| 3231 | if (IS_ERR(oa_config->mux_regs)) { |
| 3232 | DRM_DEBUG("Failed to create OA config for mux_regs\n"); |
| 3233 | err = PTR_ERR(oa_config->mux_regs); |
| 3234 | goto reg_err; |
| 3235 | } |
| 3236 | |
| 3237 | oa_config->b_counter_regs_len = args->n_boolean_regs; |
| 3238 | oa_config->b_counter_regs = |
| 3239 | alloc_oa_regs(dev_priv, |
| 3240 | dev_priv->perf.oa.ops.is_valid_b_counter_reg, |
| 3241 | u64_to_user_ptr(args->boolean_regs_ptr), |
| 3242 | args->n_boolean_regs); |
| 3243 | |
| 3244 | if (IS_ERR(oa_config->b_counter_regs)) { |
| 3245 | DRM_DEBUG("Failed to create OA config for b_counter_regs\n"); |
| 3246 | err = PTR_ERR(oa_config->b_counter_regs); |
| 3247 | goto reg_err; |
| 3248 | } |
| 3249 | |
| 3250 | if (INTEL_GEN(dev_priv) < 8) { |
| 3251 | if (args->n_flex_regs != 0) { |
| 3252 | err = -EINVAL; |
| 3253 | goto reg_err; |
| 3254 | } |
| 3255 | } else { |
| 3256 | oa_config->flex_regs_len = args->n_flex_regs; |
| 3257 | oa_config->flex_regs = |
| 3258 | alloc_oa_regs(dev_priv, |
| 3259 | dev_priv->perf.oa.ops.is_valid_flex_reg, |
| 3260 | u64_to_user_ptr(args->flex_regs_ptr), |
| 3261 | args->n_flex_regs); |
| 3262 | |
| 3263 | if (IS_ERR(oa_config->flex_regs)) { |
| 3264 | DRM_DEBUG("Failed to create OA config for flex_regs\n"); |
| 3265 | err = PTR_ERR(oa_config->flex_regs); |
| 3266 | goto reg_err; |
| 3267 | } |
| 3268 | } |
| 3269 | |
| 3270 | err = mutex_lock_interruptible(&dev_priv->perf.metrics_lock); |
| 3271 | if (err) |
| 3272 | goto reg_err; |
| 3273 | |
| 3274 | /* We shouldn't have too many configs, so this iteration shouldn't be |
| 3275 | * too costly. |
| 3276 | */ |
| 3277 | idr_for_each_entry(&dev_priv->perf.metrics_idr, tmp, id) { |
| 3278 | if (!strcmp(tmp->uuid, oa_config->uuid)) { |
| 3279 | DRM_DEBUG("OA config already exists with this uuid\n"); |
| 3280 | err = -EADDRINUSE; |
| 3281 | goto sysfs_err; |
| 3282 | } |
| 3283 | } |
| 3284 | |
| 3285 | err = create_dynamic_oa_sysfs_entry(dev_priv, oa_config); |
| 3286 | if (err) { |
| 3287 | DRM_DEBUG("Failed to create sysfs entry for OA config\n"); |
| 3288 | goto sysfs_err; |
| 3289 | } |
| 3290 | |
| 3291 | /* Config id 0 is invalid, id 1 for kernel stored test config. */ |
| 3292 | oa_config->id = idr_alloc(&dev_priv->perf.metrics_idr, |
| 3293 | oa_config, 2, |
| 3294 | 0, GFP_KERNEL); |
| 3295 | if (oa_config->id < 0) { |
| 3296 | DRM_DEBUG("Failed to create sysfs entry for OA config\n"); |
| 3297 | err = oa_config->id; |
| 3298 | goto sysfs_err; |
| 3299 | } |
| 3300 | |
| 3301 | mutex_unlock(&dev_priv->perf.metrics_lock); |
| 3302 | |
Lionel Landwerlin | 9bd9be6 | 2018-03-26 10:08:28 +0100 | [diff] [blame] | 3303 | DRM_DEBUG("Added config %s id=%i\n", oa_config->uuid, oa_config->id); |
| 3304 | |
Lionel Landwerlin | f89823c | 2017-08-03 18:05:50 +0100 | [diff] [blame] | 3305 | return oa_config->id; |
| 3306 | |
| 3307 | sysfs_err: |
| 3308 | mutex_unlock(&dev_priv->perf.metrics_lock); |
| 3309 | reg_err: |
| 3310 | put_oa_config(dev_priv, oa_config); |
| 3311 | DRM_DEBUG("Failed to add new OA config\n"); |
| 3312 | return err; |
| 3313 | } |
| 3314 | |
| 3315 | /** |
| 3316 | * i915_perf_remove_config_ioctl - DRM ioctl() for userspace to remove an OA config |
| 3317 | * @dev: drm device |
| 3318 | * @data: ioctl data (pointer to u64 integer) copied from userspace |
| 3319 | * @file: drm file |
| 3320 | * |
| 3321 | * Configs can be removed while being used, the will stop appearing in sysfs |
| 3322 | * and their content will be freed when the stream using the config is closed. |
| 3323 | * |
| 3324 | * Returns: 0 on success or a negative error code on failure. |
| 3325 | */ |
| 3326 | int i915_perf_remove_config_ioctl(struct drm_device *dev, void *data, |
| 3327 | struct drm_file *file) |
| 3328 | { |
| 3329 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3330 | u64 *arg = data; |
| 3331 | struct i915_oa_config *oa_config; |
| 3332 | int ret; |
| 3333 | |
| 3334 | if (!dev_priv->perf.initialized) { |
| 3335 | DRM_DEBUG("i915 perf interface not available for this system\n"); |
| 3336 | return -ENOTSUPP; |
| 3337 | } |
| 3338 | |
| 3339 | if (i915_perf_stream_paranoid && !capable(CAP_SYS_ADMIN)) { |
| 3340 | DRM_DEBUG("Insufficient privileges to remove i915 OA config\n"); |
| 3341 | return -EACCES; |
| 3342 | } |
| 3343 | |
| 3344 | ret = mutex_lock_interruptible(&dev_priv->perf.metrics_lock); |
| 3345 | if (ret) |
| 3346 | goto lock_err; |
| 3347 | |
| 3348 | oa_config = idr_find(&dev_priv->perf.metrics_idr, *arg); |
| 3349 | if (!oa_config) { |
| 3350 | DRM_DEBUG("Failed to remove unknown OA config\n"); |
| 3351 | ret = -ENOENT; |
| 3352 | goto config_err; |
| 3353 | } |
| 3354 | |
| 3355 | GEM_BUG_ON(*arg != oa_config->id); |
| 3356 | |
| 3357 | sysfs_remove_group(dev_priv->perf.metrics_kobj, |
| 3358 | &oa_config->sysfs_metric); |
| 3359 | |
| 3360 | idr_remove(&dev_priv->perf.metrics_idr, *arg); |
Lionel Landwerlin | 9bd9be6 | 2018-03-26 10:08:28 +0100 | [diff] [blame] | 3361 | |
| 3362 | DRM_DEBUG("Removed config %s id=%i\n", oa_config->uuid, oa_config->id); |
| 3363 | |
Lionel Landwerlin | f89823c | 2017-08-03 18:05:50 +0100 | [diff] [blame] | 3364 | put_oa_config(dev_priv, oa_config); |
| 3365 | |
| 3366 | config_err: |
| 3367 | mutex_unlock(&dev_priv->perf.metrics_lock); |
| 3368 | lock_err: |
| 3369 | return ret; |
| 3370 | } |
| 3371 | |
Robert Bragg | ccdf634 | 2016-11-07 19:49:54 +0000 | [diff] [blame] | 3372 | static struct ctl_table oa_table[] = { |
| 3373 | { |
| 3374 | .procname = "perf_stream_paranoid", |
| 3375 | .data = &i915_perf_stream_paranoid, |
| 3376 | .maxlen = sizeof(i915_perf_stream_paranoid), |
| 3377 | .mode = 0644, |
| 3378 | .proc_handler = proc_dointvec_minmax, |
| 3379 | .extra1 = &zero, |
| 3380 | .extra2 = &one, |
| 3381 | }, |
Robert Bragg | 00319ba | 2016-11-07 19:49:55 +0000 | [diff] [blame] | 3382 | { |
| 3383 | .procname = "oa_max_sample_rate", |
| 3384 | .data = &i915_oa_max_sample_rate, |
| 3385 | .maxlen = sizeof(i915_oa_max_sample_rate), |
| 3386 | .mode = 0644, |
| 3387 | .proc_handler = proc_dointvec_minmax, |
| 3388 | .extra1 = &zero, |
| 3389 | .extra2 = &oa_sample_rate_hard_limit, |
| 3390 | }, |
Robert Bragg | ccdf634 | 2016-11-07 19:49:54 +0000 | [diff] [blame] | 3391 | {} |
| 3392 | }; |
| 3393 | |
| 3394 | static struct ctl_table i915_root[] = { |
| 3395 | { |
| 3396 | .procname = "i915", |
| 3397 | .maxlen = 0, |
| 3398 | .mode = 0555, |
| 3399 | .child = oa_table, |
| 3400 | }, |
| 3401 | {} |
| 3402 | }; |
| 3403 | |
| 3404 | static struct ctl_table dev_root[] = { |
| 3405 | { |
| 3406 | .procname = "dev", |
| 3407 | .maxlen = 0, |
| 3408 | .mode = 0555, |
| 3409 | .child = i915_root, |
| 3410 | }, |
| 3411 | {} |
| 3412 | }; |
| 3413 | |
Robert Bragg | 16d98b3 | 2016-12-07 21:40:33 +0000 | [diff] [blame] | 3414 | /** |
| 3415 | * i915_perf_init - initialize i915-perf state on module load |
| 3416 | * @dev_priv: i915 device instance |
| 3417 | * |
| 3418 | * Initializes i915-perf state without exposing anything to userspace. |
| 3419 | * |
| 3420 | * Note: i915-perf initialization is split into an 'init' and 'register' |
| 3421 | * phase with the i915_perf_register() exposing state to userspace. |
| 3422 | */ |
Robert Bragg | eec688e | 2016-11-07 19:49:47 +0000 | [diff] [blame] | 3423 | void i915_perf_init(struct drm_i915_private *dev_priv) |
| 3424 | { |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 3425 | if (IS_HASWELL(dev_priv)) { |
Lionel Landwerlin | f89823c | 2017-08-03 18:05:50 +0100 | [diff] [blame] | 3426 | dev_priv->perf.oa.ops.is_valid_b_counter_reg = |
| 3427 | gen7_is_valid_b_counter_addr; |
| 3428 | dev_priv->perf.oa.ops.is_valid_mux_reg = |
| 3429 | hsw_is_valid_mux_addr; |
| 3430 | dev_priv->perf.oa.ops.is_valid_flex_reg = NULL; |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 3431 | dev_priv->perf.oa.ops.init_oa_buffer = gen7_init_oa_buffer; |
| 3432 | dev_priv->perf.oa.ops.enable_metric_set = hsw_enable_metric_set; |
| 3433 | dev_priv->perf.oa.ops.disable_metric_set = hsw_disable_metric_set; |
| 3434 | dev_priv->perf.oa.ops.oa_enable = gen7_oa_enable; |
| 3435 | dev_priv->perf.oa.ops.oa_disable = gen7_oa_disable; |
| 3436 | dev_priv->perf.oa.ops.read = gen7_oa_read; |
| 3437 | dev_priv->perf.oa.ops.oa_hw_tail_read = |
| 3438 | gen7_oa_hw_tail_read; |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 3439 | |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 3440 | dev_priv->perf.oa.oa_formats = hsw_oa_formats; |
Chris Wilson | fb5c551 | 2017-11-20 20:55:00 +0000 | [diff] [blame] | 3441 | } else if (HAS_LOGICAL_RING_CONTEXTS(dev_priv)) { |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 3442 | /* Note: that although we could theoretically also support the |
| 3443 | * legacy ringbuffer mode on BDW (and earlier iterations of |
| 3444 | * this driver, before upstreaming did this) it didn't seem |
| 3445 | * worth the complexity to maintain now that BDW+ enable |
| 3446 | * execlist mode by default. |
| 3447 | */ |
Lionel Landwerlin | ba6b7c1 | 2017-11-10 19:08:41 +0000 | [diff] [blame] | 3448 | dev_priv->perf.oa.oa_formats = gen8_plus_oa_formats; |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 3449 | |
Lionel Landwerlin | 701f823 | 2017-08-03 17:58:08 +0100 | [diff] [blame] | 3450 | dev_priv->perf.oa.ops.init_oa_buffer = gen8_init_oa_buffer; |
Lionel Landwerlin | 701f823 | 2017-08-03 17:58:08 +0100 | [diff] [blame] | 3451 | dev_priv->perf.oa.ops.oa_enable = gen8_oa_enable; |
| 3452 | dev_priv->perf.oa.ops.oa_disable = gen8_oa_disable; |
| 3453 | dev_priv->perf.oa.ops.read = gen8_oa_read; |
| 3454 | dev_priv->perf.oa.ops.oa_hw_tail_read = gen8_oa_hw_tail_read; |
| 3455 | |
Lionel Landwerlin | ba6b7c1 | 2017-11-10 19:08:41 +0000 | [diff] [blame] | 3456 | if (IS_GEN8(dev_priv) || IS_GEN9(dev_priv)) { |
| 3457 | dev_priv->perf.oa.ops.is_valid_b_counter_reg = |
| 3458 | gen7_is_valid_b_counter_addr; |
| 3459 | dev_priv->perf.oa.ops.is_valid_mux_reg = |
| 3460 | gen8_is_valid_mux_addr; |
| 3461 | dev_priv->perf.oa.ops.is_valid_flex_reg = |
| 3462 | gen8_is_valid_flex_addr; |
Lionel Landwerlin | 701f823 | 2017-08-03 17:58:08 +0100 | [diff] [blame] | 3463 | |
Lionel Landwerlin | f89823c | 2017-08-03 18:05:50 +0100 | [diff] [blame] | 3464 | if (IS_CHERRYVIEW(dev_priv)) { |
| 3465 | dev_priv->perf.oa.ops.is_valid_mux_reg = |
| 3466 | chv_is_valid_mux_addr; |
| 3467 | } |
Robert Bragg | 155e941 | 2017-06-13 12:23:05 +0100 | [diff] [blame] | 3468 | |
Lionel Landwerlin | ba6b7c1 | 2017-11-10 19:08:41 +0000 | [diff] [blame] | 3469 | dev_priv->perf.oa.ops.enable_metric_set = gen8_enable_metric_set; |
| 3470 | dev_priv->perf.oa.ops.disable_metric_set = gen8_disable_metric_set; |
| 3471 | |
| 3472 | if (IS_GEN8(dev_priv)) { |
| 3473 | dev_priv->perf.oa.ctx_oactxctrl_offset = 0x120; |
| 3474 | dev_priv->perf.oa.ctx_flexeu0_offset = 0x2ce; |
| 3475 | |
| 3476 | dev_priv->perf.oa.gen8_valid_ctx_bit = (1<<25); |
| 3477 | } else { |
| 3478 | dev_priv->perf.oa.ctx_oactxctrl_offset = 0x128; |
| 3479 | dev_priv->perf.oa.ctx_flexeu0_offset = 0x3de; |
| 3480 | |
| 3481 | dev_priv->perf.oa.gen8_valid_ctx_bit = (1<<16); |
| 3482 | } |
Lionel Landwerlin | 1de401c | 2018-03-26 14:39:48 +0100 | [diff] [blame] | 3483 | } else if (IS_GEN(dev_priv, 10, 11)) { |
Lionel Landwerlin | 95690a0 | 2017-11-10 19:08:43 +0000 | [diff] [blame] | 3484 | dev_priv->perf.oa.ops.is_valid_b_counter_reg = |
| 3485 | gen7_is_valid_b_counter_addr; |
| 3486 | dev_priv->perf.oa.ops.is_valid_mux_reg = |
| 3487 | gen10_is_valid_mux_addr; |
| 3488 | dev_priv->perf.oa.ops.is_valid_flex_reg = |
| 3489 | gen8_is_valid_flex_addr; |
| 3490 | |
| 3491 | dev_priv->perf.oa.ops.enable_metric_set = gen8_enable_metric_set; |
| 3492 | dev_priv->perf.oa.ops.disable_metric_set = gen10_disable_metric_set; |
| 3493 | |
| 3494 | dev_priv->perf.oa.ctx_oactxctrl_offset = 0x128; |
| 3495 | dev_priv->perf.oa.ctx_flexeu0_offset = 0x3de; |
| 3496 | |
| 3497 | dev_priv->perf.oa.gen8_valid_ctx_bit = (1<<16); |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 3498 | } |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 3499 | } |
| 3500 | |
Lionel Landwerlin | 9f9b279 | 2017-10-27 15:59:31 +0100 | [diff] [blame] | 3501 | if (dev_priv->perf.oa.ops.enable_metric_set) { |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 3502 | hrtimer_init(&dev_priv->perf.oa.poll_check_timer, |
| 3503 | CLOCK_MONOTONIC, HRTIMER_MODE_REL); |
| 3504 | dev_priv->perf.oa.poll_check_timer.function = oa_poll_check_timer_cb; |
| 3505 | init_waitqueue_head(&dev_priv->perf.oa.poll_wq); |
| 3506 | |
| 3507 | INIT_LIST_HEAD(&dev_priv->perf.streams); |
| 3508 | mutex_init(&dev_priv->perf.lock); |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 3509 | spin_lock_init(&dev_priv->perf.oa.oa_buffer.ptr_lock); |
| 3510 | |
Lionel Landwerlin | 9f9b279 | 2017-10-27 15:59:31 +0100 | [diff] [blame] | 3511 | oa_sample_rate_hard_limit = 1000 * |
| 3512 | (INTEL_INFO(dev_priv)->cs_timestamp_frequency_khz / 2); |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 3513 | dev_priv->perf.sysctl_header = register_sysctl_table(dev_root); |
| 3514 | |
Lionel Landwerlin | f89823c | 2017-08-03 18:05:50 +0100 | [diff] [blame] | 3515 | mutex_init(&dev_priv->perf.metrics_lock); |
| 3516 | idr_init(&dev_priv->perf.metrics_idr); |
| 3517 | |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 3518 | dev_priv->perf.initialized = true; |
| 3519 | } |
Robert Bragg | eec688e | 2016-11-07 19:49:47 +0000 | [diff] [blame] | 3520 | } |
| 3521 | |
Lionel Landwerlin | f89823c | 2017-08-03 18:05:50 +0100 | [diff] [blame] | 3522 | static int destroy_config(int id, void *p, void *data) |
| 3523 | { |
| 3524 | struct drm_i915_private *dev_priv = data; |
| 3525 | struct i915_oa_config *oa_config = p; |
| 3526 | |
| 3527 | put_oa_config(dev_priv, oa_config); |
| 3528 | |
| 3529 | return 0; |
| 3530 | } |
| 3531 | |
Robert Bragg | 16d98b3 | 2016-12-07 21:40:33 +0000 | [diff] [blame] | 3532 | /** |
| 3533 | * i915_perf_fini - Counter part to i915_perf_init() |
| 3534 | * @dev_priv: i915 device instance |
| 3535 | */ |
Robert Bragg | eec688e | 2016-11-07 19:49:47 +0000 | [diff] [blame] | 3536 | void i915_perf_fini(struct drm_i915_private *dev_priv) |
| 3537 | { |
| 3538 | if (!dev_priv->perf.initialized) |
| 3539 | return; |
| 3540 | |
Lionel Landwerlin | f89823c | 2017-08-03 18:05:50 +0100 | [diff] [blame] | 3541 | idr_for_each(&dev_priv->perf.metrics_idr, destroy_config, dev_priv); |
| 3542 | idr_destroy(&dev_priv->perf.metrics_idr); |
| 3543 | |
Robert Bragg | ccdf634 | 2016-11-07 19:49:54 +0000 | [diff] [blame] | 3544 | unregister_sysctl_table(dev_priv->perf.sysctl_header); |
| 3545 | |
Robert Bragg | d796515 | 2016-11-07 19:49:52 +0000 | [diff] [blame] | 3546 | memset(&dev_priv->perf.oa.ops, 0, sizeof(dev_priv->perf.oa.ops)); |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 3547 | |
Robert Bragg | eec688e | 2016-11-07 19:49:47 +0000 | [diff] [blame] | 3548 | dev_priv->perf.initialized = false; |
| 3549 | } |