Oscar Mateo | b20385f | 2014-07-24 17:04:10 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright © 2014 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 | * Ben Widawsky <ben@bwidawsk.net> |
| 25 | * Michel Thierry <michel.thierry@intel.com> |
| 26 | * Thomas Daniel <thomas.daniel@intel.com> |
| 27 | * Oscar Mateo <oscar.mateo@intel.com> |
| 28 | * |
| 29 | */ |
| 30 | |
Oscar Mateo | 73e4d07 | 2014-07-24 17:04:48 +0100 | [diff] [blame] | 31 | /** |
| 32 | * DOC: Logical Rings, Logical Ring Contexts and Execlists |
| 33 | * |
| 34 | * Motivation: |
Oscar Mateo | b20385f | 2014-07-24 17:04:10 +0100 | [diff] [blame] | 35 | * GEN8 brings an expansion of the HW contexts: "Logical Ring Contexts". |
| 36 | * These expanded contexts enable a number of new abilities, especially |
| 37 | * "Execlists" (also implemented in this file). |
| 38 | * |
Oscar Mateo | 73e4d07 | 2014-07-24 17:04:48 +0100 | [diff] [blame] | 39 | * One of the main differences with the legacy HW contexts is that logical |
| 40 | * ring contexts incorporate many more things to the context's state, like |
| 41 | * PDPs or ringbuffer control registers: |
| 42 | * |
| 43 | * The reason why PDPs are included in the context is straightforward: as |
| 44 | * PPGTTs (per-process GTTs) are actually per-context, having the PDPs |
| 45 | * contained there mean you don't need to do a ppgtt->switch_mm yourself, |
| 46 | * instead, the GPU will do it for you on the context switch. |
| 47 | * |
| 48 | * But, what about the ringbuffer control registers (head, tail, etc..)? |
| 49 | * shouldn't we just need a set of those per engine command streamer? This is |
| 50 | * where the name "Logical Rings" starts to make sense: by virtualizing the |
| 51 | * rings, the engine cs shifts to a new "ring buffer" with every context |
| 52 | * switch. When you want to submit a workload to the GPU you: A) choose your |
| 53 | * context, B) find its appropriate virtualized ring, C) write commands to it |
| 54 | * and then, finally, D) tell the GPU to switch to that context. |
| 55 | * |
| 56 | * Instead of the legacy MI_SET_CONTEXT, the way you tell the GPU to switch |
| 57 | * to a contexts is via a context execution list, ergo "Execlists". |
| 58 | * |
| 59 | * LRC implementation: |
| 60 | * Regarding the creation of contexts, we have: |
| 61 | * |
| 62 | * - One global default context. |
| 63 | * - One local default context for each opened fd. |
| 64 | * - One local extra context for each context create ioctl call. |
| 65 | * |
| 66 | * Now that ringbuffers belong per-context (and not per-engine, like before) |
| 67 | * and that contexts are uniquely tied to a given engine (and not reusable, |
| 68 | * like before) we need: |
| 69 | * |
| 70 | * - One ringbuffer per-engine inside each context. |
| 71 | * - One backing object per-engine inside each context. |
| 72 | * |
| 73 | * The global default context starts its life with these new objects fully |
| 74 | * allocated and populated. The local default context for each opened fd is |
| 75 | * more complex, because we don't know at creation time which engine is going |
| 76 | * to use them. To handle this, we have implemented a deferred creation of LR |
| 77 | * contexts: |
| 78 | * |
| 79 | * The local context starts its life as a hollow or blank holder, that only |
| 80 | * gets populated for a given engine once we receive an execbuffer. If later |
| 81 | * on we receive another execbuffer ioctl for the same context but a different |
| 82 | * engine, we allocate/populate a new ringbuffer and context backing object and |
| 83 | * so on. |
| 84 | * |
| 85 | * Finally, regarding local contexts created using the ioctl call: as they are |
| 86 | * only allowed with the render ring, we can allocate & populate them right |
| 87 | * away (no need to defer anything, at least for now). |
| 88 | * |
| 89 | * Execlists implementation: |
Oscar Mateo | b20385f | 2014-07-24 17:04:10 +0100 | [diff] [blame] | 90 | * Execlists are the new method by which, on gen8+ hardware, workloads are |
| 91 | * submitted for execution (as opposed to the legacy, ringbuffer-based, method). |
Oscar Mateo | 73e4d07 | 2014-07-24 17:04:48 +0100 | [diff] [blame] | 92 | * This method works as follows: |
| 93 | * |
| 94 | * When a request is committed, its commands (the BB start and any leading or |
| 95 | * trailing commands, like the seqno breadcrumbs) are placed in the ringbuffer |
| 96 | * for the appropriate context. The tail pointer in the hardware context is not |
| 97 | * updated at this time, but instead, kept by the driver in the ringbuffer |
| 98 | * structure. A structure representing this request is added to a request queue |
| 99 | * for the appropriate engine: this structure contains a copy of the context's |
| 100 | * tail after the request was written to the ring buffer and a pointer to the |
| 101 | * context itself. |
| 102 | * |
| 103 | * If the engine's request queue was empty before the request was added, the |
| 104 | * queue is processed immediately. Otherwise the queue will be processed during |
| 105 | * a context switch interrupt. In any case, elements on the queue will get sent |
| 106 | * (in pairs) to the GPU's ExecLists Submit Port (ELSP, for short) with a |
| 107 | * globally unique 20-bits submission ID. |
| 108 | * |
| 109 | * When execution of a request completes, the GPU updates the context status |
| 110 | * buffer with a context complete event and generates a context switch interrupt. |
| 111 | * During the interrupt handling, the driver examines the events in the buffer: |
| 112 | * for each context complete event, if the announced ID matches that on the head |
| 113 | * of the request queue, then that request is retired and removed from the queue. |
| 114 | * |
| 115 | * After processing, if any requests were retired and the queue is not empty |
| 116 | * then a new execution list can be submitted. The two requests at the front of |
| 117 | * the queue are next to be submitted but since a context may not occur twice in |
| 118 | * an execution list, if subsequent requests have the same ID as the first then |
| 119 | * the two requests must be combined. This is done simply by discarding requests |
| 120 | * at the head of the queue until either only one requests is left (in which case |
| 121 | * we use a NULL second context) or the first two requests have unique IDs. |
| 122 | * |
| 123 | * By always executing the first two requests in the queue the driver ensures |
| 124 | * that the GPU is kept as busy as possible. In the case where a single context |
| 125 | * completes but a second context is still executing, the request for this second |
| 126 | * context will be at the head of the queue when we remove the first one. This |
| 127 | * request will then be resubmitted along with a new request for a different context, |
| 128 | * which will cause the hardware to continue executing the second request and queue |
| 129 | * the new request (the GPU detects the condition of a context getting preempted |
| 130 | * with the same context and optimizes the context switch flow by not doing |
| 131 | * preemption, but just sampling the new tail pointer). |
| 132 | * |
Oscar Mateo | b20385f | 2014-07-24 17:04:10 +0100 | [diff] [blame] | 133 | */ |
| 134 | |
| 135 | #include <drm/drmP.h> |
| 136 | #include <drm/i915_drm.h> |
| 137 | #include "i915_drv.h" |
Oscar Mateo | 127f100 | 2014-07-24 17:04:11 +0100 | [diff] [blame] | 138 | |
Michael H. Nguyen | 468c681 | 2014-11-13 17:51:49 +0000 | [diff] [blame] | 139 | #define GEN9_LR_CONTEXT_RENDER_SIZE (22 * PAGE_SIZE) |
Oscar Mateo | 8c857917 | 2014-07-24 17:04:14 +0100 | [diff] [blame] | 140 | #define GEN8_LR_CONTEXT_RENDER_SIZE (20 * PAGE_SIZE) |
| 141 | #define GEN8_LR_CONTEXT_OTHER_SIZE (2 * PAGE_SIZE) |
| 142 | |
Thomas Daniel | e981e7b | 2014-07-24 17:04:39 +0100 | [diff] [blame] | 143 | #define RING_EXECLIST_QFULL (1 << 0x2) |
| 144 | #define RING_EXECLIST1_VALID (1 << 0x3) |
| 145 | #define RING_EXECLIST0_VALID (1 << 0x4) |
| 146 | #define RING_EXECLIST_ACTIVE_STATUS (3 << 0xE) |
| 147 | #define RING_EXECLIST1_ACTIVE (1 << 0x11) |
| 148 | #define RING_EXECLIST0_ACTIVE (1 << 0x12) |
| 149 | |
| 150 | #define GEN8_CTX_STATUS_IDLE_ACTIVE (1 << 0) |
| 151 | #define GEN8_CTX_STATUS_PREEMPTED (1 << 1) |
| 152 | #define GEN8_CTX_STATUS_ELEMENT_SWITCH (1 << 2) |
| 153 | #define GEN8_CTX_STATUS_ACTIVE_IDLE (1 << 3) |
| 154 | #define GEN8_CTX_STATUS_COMPLETE (1 << 4) |
| 155 | #define GEN8_CTX_STATUS_LITE_RESTORE (1 << 15) |
Oscar Mateo | 8670d6f | 2014-07-24 17:04:17 +0100 | [diff] [blame] | 156 | |
| 157 | #define CTX_LRI_HEADER_0 0x01 |
| 158 | #define CTX_CONTEXT_CONTROL 0x02 |
| 159 | #define CTX_RING_HEAD 0x04 |
| 160 | #define CTX_RING_TAIL 0x06 |
| 161 | #define CTX_RING_BUFFER_START 0x08 |
| 162 | #define CTX_RING_BUFFER_CONTROL 0x0a |
| 163 | #define CTX_BB_HEAD_U 0x0c |
| 164 | #define CTX_BB_HEAD_L 0x0e |
| 165 | #define CTX_BB_STATE 0x10 |
| 166 | #define CTX_SECOND_BB_HEAD_U 0x12 |
| 167 | #define CTX_SECOND_BB_HEAD_L 0x14 |
| 168 | #define CTX_SECOND_BB_STATE 0x16 |
| 169 | #define CTX_BB_PER_CTX_PTR 0x18 |
| 170 | #define CTX_RCS_INDIRECT_CTX 0x1a |
| 171 | #define CTX_RCS_INDIRECT_CTX_OFFSET 0x1c |
| 172 | #define CTX_LRI_HEADER_1 0x21 |
| 173 | #define CTX_CTX_TIMESTAMP 0x22 |
| 174 | #define CTX_PDP3_UDW 0x24 |
| 175 | #define CTX_PDP3_LDW 0x26 |
| 176 | #define CTX_PDP2_UDW 0x28 |
| 177 | #define CTX_PDP2_LDW 0x2a |
| 178 | #define CTX_PDP1_UDW 0x2c |
| 179 | #define CTX_PDP1_LDW 0x2e |
| 180 | #define CTX_PDP0_UDW 0x30 |
| 181 | #define CTX_PDP0_LDW 0x32 |
| 182 | #define CTX_LRI_HEADER_2 0x41 |
| 183 | #define CTX_R_PWR_CLK_STATE 0x42 |
| 184 | #define CTX_GPGPU_CSR_BASE_ADDRESS 0x44 |
| 185 | |
Ben Widawsky | 84b790f | 2014-07-24 17:04:36 +0100 | [diff] [blame] | 186 | #define GEN8_CTX_VALID (1<<0) |
| 187 | #define GEN8_CTX_FORCE_PD_RESTORE (1<<1) |
| 188 | #define GEN8_CTX_FORCE_RESTORE (1<<2) |
| 189 | #define GEN8_CTX_L3LLC_COHERENT (1<<5) |
| 190 | #define GEN8_CTX_PRIVILEGE (1<<8) |
Michel Thierry | e5815a2 | 2015-04-08 12:13:32 +0100 | [diff] [blame] | 191 | |
| 192 | #define ASSIGN_CTX_PDP(ppgtt, reg_state, n) { \ |
| 193 | const u64 _addr = ppgtt->pdp.page_directory[n] ? \ |
| 194 | ppgtt->pdp.page_directory[n]->daddr : \ |
| 195 | ppgtt->scratch_pd->daddr; \ |
| 196 | reg_state[CTX_PDP ## n ## _UDW+1] = upper_32_bits(_addr); \ |
| 197 | reg_state[CTX_PDP ## n ## _LDW+1] = lower_32_bits(_addr); \ |
| 198 | } |
| 199 | |
Ben Widawsky | 84b790f | 2014-07-24 17:04:36 +0100 | [diff] [blame] | 200 | enum { |
| 201 | ADVANCED_CONTEXT = 0, |
| 202 | LEGACY_CONTEXT, |
| 203 | ADVANCED_AD_CONTEXT, |
| 204 | LEGACY_64B_CONTEXT |
| 205 | }; |
| 206 | #define GEN8_CTX_MODE_SHIFT 3 |
| 207 | enum { |
| 208 | FAULT_AND_HANG = 0, |
| 209 | FAULT_AND_HALT, /* Debug only */ |
| 210 | FAULT_AND_STREAM, |
| 211 | FAULT_AND_CONTINUE /* Unsupported */ |
| 212 | }; |
| 213 | #define GEN8_CTX_ID_SHIFT 32 |
| 214 | |
Thomas Daniel | 7ba717c | 2014-11-13 10:28:56 +0000 | [diff] [blame] | 215 | static int intel_lr_context_pin(struct intel_engine_cs *ring, |
| 216 | struct intel_context *ctx); |
| 217 | |
Oscar Mateo | 73e4d07 | 2014-07-24 17:04:48 +0100 | [diff] [blame] | 218 | /** |
| 219 | * intel_sanitize_enable_execlists() - sanitize i915.enable_execlists |
| 220 | * @dev: DRM device. |
| 221 | * @enable_execlists: value of i915.enable_execlists module parameter. |
| 222 | * |
| 223 | * Only certain platforms support Execlists (the prerequisites being |
Thomas Daniel | 27401d1 | 2014-12-11 12:48:35 +0000 | [diff] [blame] | 224 | * support for Logical Ring Contexts and Aliasing PPGTT or better). |
Oscar Mateo | 73e4d07 | 2014-07-24 17:04:48 +0100 | [diff] [blame] | 225 | * |
| 226 | * Return: 1 if Execlists is supported and has to be enabled. |
| 227 | */ |
Oscar Mateo | 127f100 | 2014-07-24 17:04:11 +0100 | [diff] [blame] | 228 | int intel_sanitize_enable_execlists(struct drm_device *dev, int enable_execlists) |
| 229 | { |
Daniel Vetter | bd84b1e | 2014-08-11 15:57:57 +0200 | [diff] [blame] | 230 | WARN_ON(i915.enable_ppgtt == -1); |
| 231 | |
Damien Lespiau | 70ee45e | 2014-11-14 15:05:59 +0000 | [diff] [blame] | 232 | if (INTEL_INFO(dev)->gen >= 9) |
| 233 | return 1; |
| 234 | |
Oscar Mateo | 127f100 | 2014-07-24 17:04:11 +0100 | [diff] [blame] | 235 | if (enable_execlists == 0) |
| 236 | return 0; |
| 237 | |
Oscar Mateo | 14bf993 | 2014-07-24 17:04:34 +0100 | [diff] [blame] | 238 | if (HAS_LOGICAL_RING_CONTEXTS(dev) && USES_PPGTT(dev) && |
| 239 | i915.use_mmio_flip >= 0) |
Oscar Mateo | 127f100 | 2014-07-24 17:04:11 +0100 | [diff] [blame] | 240 | return 1; |
| 241 | |
| 242 | return 0; |
| 243 | } |
Oscar Mateo | ede7d42 | 2014-07-24 17:04:12 +0100 | [diff] [blame] | 244 | |
Oscar Mateo | 73e4d07 | 2014-07-24 17:04:48 +0100 | [diff] [blame] | 245 | /** |
| 246 | * intel_execlists_ctx_id() - get the Execlists Context ID |
| 247 | * @ctx_obj: Logical Ring Context backing object. |
| 248 | * |
| 249 | * Do not confuse with ctx->id! Unfortunately we have a name overload |
| 250 | * here: the old context ID we pass to userspace as a handler so that |
| 251 | * they can refer to a context, and the new context ID we pass to the |
| 252 | * ELSP so that the GPU can inform us of the context status via |
| 253 | * interrupts. |
| 254 | * |
| 255 | * Return: 20-bits globally unique context ID. |
| 256 | */ |
Ben Widawsky | 84b790f | 2014-07-24 17:04:36 +0100 | [diff] [blame] | 257 | u32 intel_execlists_ctx_id(struct drm_i915_gem_object *ctx_obj) |
| 258 | { |
| 259 | u32 lrca = i915_gem_obj_ggtt_offset(ctx_obj); |
| 260 | |
| 261 | /* LRCA is required to be 4K aligned so the more significant 20 bits |
| 262 | * are globally unique */ |
| 263 | return lrca >> 12; |
| 264 | } |
| 265 | |
Nick Hoath | 203a571 | 2015-02-06 11:30:04 +0000 | [diff] [blame] | 266 | static uint64_t execlists_ctx_descriptor(struct intel_engine_cs *ring, |
| 267 | struct drm_i915_gem_object *ctx_obj) |
Ben Widawsky | 84b790f | 2014-07-24 17:04:36 +0100 | [diff] [blame] | 268 | { |
Nick Hoath | 203a571 | 2015-02-06 11:30:04 +0000 | [diff] [blame] | 269 | struct drm_device *dev = ring->dev; |
Ben Widawsky | 84b790f | 2014-07-24 17:04:36 +0100 | [diff] [blame] | 270 | uint64_t desc; |
| 271 | uint64_t lrca = i915_gem_obj_ggtt_offset(ctx_obj); |
Michel Thierry | acdd884 | 2014-07-24 17:04:38 +0100 | [diff] [blame] | 272 | |
| 273 | WARN_ON(lrca & 0xFFFFFFFF00000FFFULL); |
Ben Widawsky | 84b790f | 2014-07-24 17:04:36 +0100 | [diff] [blame] | 274 | |
| 275 | desc = GEN8_CTX_VALID; |
| 276 | desc |= LEGACY_CONTEXT << GEN8_CTX_MODE_SHIFT; |
Arun Siluvery | 51847fb | 2015-04-07 14:01:33 +0100 | [diff] [blame] | 277 | if (IS_GEN8(ctx_obj->base.dev)) |
| 278 | desc |= GEN8_CTX_L3LLC_COHERENT; |
Ben Widawsky | 84b790f | 2014-07-24 17:04:36 +0100 | [diff] [blame] | 279 | desc |= GEN8_CTX_PRIVILEGE; |
| 280 | desc |= lrca; |
| 281 | desc |= (u64)intel_execlists_ctx_id(ctx_obj) << GEN8_CTX_ID_SHIFT; |
| 282 | |
| 283 | /* TODO: WaDisableLiteRestore when we start using semaphore |
| 284 | * signalling between Command Streamers */ |
| 285 | /* desc |= GEN8_CTX_FORCE_RESTORE; */ |
| 286 | |
Nick Hoath | 203a571 | 2015-02-06 11:30:04 +0000 | [diff] [blame] | 287 | /* WaEnableForceRestoreInCtxtDescForVCS:skl */ |
| 288 | if (IS_GEN9(dev) && |
| 289 | INTEL_REVID(dev) <= SKL_REVID_B0 && |
| 290 | (ring->id == BCS || ring->id == VCS || |
| 291 | ring->id == VECS || ring->id == VCS2)) |
| 292 | desc |= GEN8_CTX_FORCE_RESTORE; |
| 293 | |
Ben Widawsky | 84b790f | 2014-07-24 17:04:36 +0100 | [diff] [blame] | 294 | return desc; |
| 295 | } |
| 296 | |
| 297 | static void execlists_elsp_write(struct intel_engine_cs *ring, |
| 298 | struct drm_i915_gem_object *ctx_obj0, |
| 299 | struct drm_i915_gem_object *ctx_obj1) |
| 300 | { |
Tvrtko Ursulin | 6e7cc47 | 2014-11-13 17:51:51 +0000 | [diff] [blame] | 301 | struct drm_device *dev = ring->dev; |
| 302 | struct drm_i915_private *dev_priv = dev->dev_private; |
Ben Widawsky | 84b790f | 2014-07-24 17:04:36 +0100 | [diff] [blame] | 303 | uint64_t temp = 0; |
| 304 | uint32_t desc[4]; |
| 305 | |
| 306 | /* XXX: You must always write both descriptors in the order below. */ |
| 307 | if (ctx_obj1) |
Nick Hoath | 203a571 | 2015-02-06 11:30:04 +0000 | [diff] [blame] | 308 | temp = execlists_ctx_descriptor(ring, ctx_obj1); |
Ben Widawsky | 84b790f | 2014-07-24 17:04:36 +0100 | [diff] [blame] | 309 | else |
| 310 | temp = 0; |
| 311 | desc[1] = (u32)(temp >> 32); |
| 312 | desc[0] = (u32)temp; |
| 313 | |
Nick Hoath | 203a571 | 2015-02-06 11:30:04 +0000 | [diff] [blame] | 314 | temp = execlists_ctx_descriptor(ring, ctx_obj0); |
Ben Widawsky | 84b790f | 2014-07-24 17:04:36 +0100 | [diff] [blame] | 315 | desc[3] = (u32)(temp >> 32); |
| 316 | desc[2] = (u32)temp; |
| 317 | |
Mika Kuoppala | 59bad94 | 2015-01-16 11:34:40 +0200 | [diff] [blame] | 318 | intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL); |
Ben Widawsky | 84b790f | 2014-07-24 17:04:36 +0100 | [diff] [blame] | 319 | I915_WRITE(RING_ELSP(ring), desc[1]); |
| 320 | I915_WRITE(RING_ELSP(ring), desc[0]); |
| 321 | I915_WRITE(RING_ELSP(ring), desc[3]); |
Chris Wilson | 6daccb0 | 2015-01-16 11:34:35 +0200 | [diff] [blame] | 322 | |
Ben Widawsky | 84b790f | 2014-07-24 17:04:36 +0100 | [diff] [blame] | 323 | /* The context is automatically loaded after the following */ |
| 324 | I915_WRITE(RING_ELSP(ring), desc[2]); |
| 325 | |
| 326 | /* ELSP is a wo register, so use another nearby reg for posting instead */ |
| 327 | POSTING_READ(RING_EXECLIST_STATUS(ring)); |
Mika Kuoppala | 59bad94 | 2015-01-16 11:34:40 +0200 | [diff] [blame] | 328 | intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL); |
Ben Widawsky | 84b790f | 2014-07-24 17:04:36 +0100 | [diff] [blame] | 329 | } |
| 330 | |
Thomas Daniel | 7ba717c | 2014-11-13 10:28:56 +0000 | [diff] [blame] | 331 | static int execlists_update_context(struct drm_i915_gem_object *ctx_obj, |
| 332 | struct drm_i915_gem_object *ring_obj, |
| 333 | u32 tail) |
Oscar Mateo | ae1250b | 2014-07-24 17:04:37 +0100 | [diff] [blame] | 334 | { |
| 335 | struct page *page; |
| 336 | uint32_t *reg_state; |
| 337 | |
| 338 | page = i915_gem_object_get_page(ctx_obj, 1); |
| 339 | reg_state = kmap_atomic(page); |
| 340 | |
| 341 | reg_state[CTX_RING_TAIL+1] = tail; |
Thomas Daniel | 7ba717c | 2014-11-13 10:28:56 +0000 | [diff] [blame] | 342 | reg_state[CTX_RING_BUFFER_START+1] = i915_gem_obj_ggtt_offset(ring_obj); |
Oscar Mateo | ae1250b | 2014-07-24 17:04:37 +0100 | [diff] [blame] | 343 | |
| 344 | kunmap_atomic(reg_state); |
| 345 | |
| 346 | return 0; |
| 347 | } |
| 348 | |
Dave Gordon | cd0707c | 2014-10-30 15:41:56 +0000 | [diff] [blame] | 349 | static void execlists_submit_contexts(struct intel_engine_cs *ring, |
| 350 | struct intel_context *to0, u32 tail0, |
| 351 | struct intel_context *to1, u32 tail1) |
Ben Widawsky | 84b790f | 2014-07-24 17:04:36 +0100 | [diff] [blame] | 352 | { |
Thomas Daniel | 7ba717c | 2014-11-13 10:28:56 +0000 | [diff] [blame] | 353 | struct drm_i915_gem_object *ctx_obj0 = to0->engine[ring->id].state; |
| 354 | struct intel_ringbuffer *ringbuf0 = to0->engine[ring->id].ringbuf; |
Ben Widawsky | 84b790f | 2014-07-24 17:04:36 +0100 | [diff] [blame] | 355 | struct drm_i915_gem_object *ctx_obj1 = NULL; |
Thomas Daniel | 7ba717c | 2014-11-13 10:28:56 +0000 | [diff] [blame] | 356 | struct intel_ringbuffer *ringbuf1 = NULL; |
Ben Widawsky | 84b790f | 2014-07-24 17:04:36 +0100 | [diff] [blame] | 357 | |
Ben Widawsky | 84b790f | 2014-07-24 17:04:36 +0100 | [diff] [blame] | 358 | BUG_ON(!ctx_obj0); |
Michel Thierry | acdd884 | 2014-07-24 17:04:38 +0100 | [diff] [blame] | 359 | WARN_ON(!i915_gem_obj_is_pinned(ctx_obj0)); |
Thomas Daniel | 7ba717c | 2014-11-13 10:28:56 +0000 | [diff] [blame] | 360 | WARN_ON(!i915_gem_obj_is_pinned(ringbuf0->obj)); |
Ben Widawsky | 84b790f | 2014-07-24 17:04:36 +0100 | [diff] [blame] | 361 | |
Thomas Daniel | 7ba717c | 2014-11-13 10:28:56 +0000 | [diff] [blame] | 362 | execlists_update_context(ctx_obj0, ringbuf0->obj, tail0); |
Oscar Mateo | ae1250b | 2014-07-24 17:04:37 +0100 | [diff] [blame] | 363 | |
Ben Widawsky | 84b790f | 2014-07-24 17:04:36 +0100 | [diff] [blame] | 364 | if (to1) { |
Thomas Daniel | 7ba717c | 2014-11-13 10:28:56 +0000 | [diff] [blame] | 365 | ringbuf1 = to1->engine[ring->id].ringbuf; |
Ben Widawsky | 84b790f | 2014-07-24 17:04:36 +0100 | [diff] [blame] | 366 | ctx_obj1 = to1->engine[ring->id].state; |
| 367 | BUG_ON(!ctx_obj1); |
Michel Thierry | acdd884 | 2014-07-24 17:04:38 +0100 | [diff] [blame] | 368 | WARN_ON(!i915_gem_obj_is_pinned(ctx_obj1)); |
Thomas Daniel | 7ba717c | 2014-11-13 10:28:56 +0000 | [diff] [blame] | 369 | WARN_ON(!i915_gem_obj_is_pinned(ringbuf1->obj)); |
Oscar Mateo | ae1250b | 2014-07-24 17:04:37 +0100 | [diff] [blame] | 370 | |
Thomas Daniel | 7ba717c | 2014-11-13 10:28:56 +0000 | [diff] [blame] | 371 | execlists_update_context(ctx_obj1, ringbuf1->obj, tail1); |
Ben Widawsky | 84b790f | 2014-07-24 17:04:36 +0100 | [diff] [blame] | 372 | } |
| 373 | |
| 374 | execlists_elsp_write(ring, ctx_obj0, ctx_obj1); |
Ben Widawsky | 84b790f | 2014-07-24 17:04:36 +0100 | [diff] [blame] | 375 | } |
| 376 | |
Michel Thierry | acdd884 | 2014-07-24 17:04:38 +0100 | [diff] [blame] | 377 | static void execlists_context_unqueue(struct intel_engine_cs *ring) |
| 378 | { |
Nick Hoath | 6d3d827 | 2015-01-15 13:10:39 +0000 | [diff] [blame] | 379 | struct drm_i915_gem_request *req0 = NULL, *req1 = NULL; |
| 380 | struct drm_i915_gem_request *cursor = NULL, *tmp = NULL; |
Thomas Daniel | e981e7b | 2014-07-24 17:04:39 +0100 | [diff] [blame] | 381 | |
| 382 | assert_spin_locked(&ring->execlist_lock); |
Michel Thierry | acdd884 | 2014-07-24 17:04:38 +0100 | [diff] [blame] | 383 | |
| 384 | if (list_empty(&ring->execlist_queue)) |
| 385 | return; |
| 386 | |
| 387 | /* Try to read in pairs */ |
| 388 | list_for_each_entry_safe(cursor, tmp, &ring->execlist_queue, |
| 389 | execlist_link) { |
| 390 | if (!req0) { |
| 391 | req0 = cursor; |
Nick Hoath | 6d3d827 | 2015-01-15 13:10:39 +0000 | [diff] [blame] | 392 | } else if (req0->ctx == cursor->ctx) { |
Michel Thierry | acdd884 | 2014-07-24 17:04:38 +0100 | [diff] [blame] | 393 | /* Same ctx: ignore first request, as second request |
| 394 | * will update tail past first request's workload */ |
Oscar Mateo | e1fee72 | 2014-07-24 17:04:40 +0100 | [diff] [blame] | 395 | cursor->elsp_submitted = req0->elsp_submitted; |
Michel Thierry | acdd884 | 2014-07-24 17:04:38 +0100 | [diff] [blame] | 396 | list_del(&req0->execlist_link); |
Thomas Daniel | c86ee3a9 | 2014-11-13 10:27:05 +0000 | [diff] [blame] | 397 | list_add_tail(&req0->execlist_link, |
| 398 | &ring->execlist_retired_req_list); |
Michel Thierry | acdd884 | 2014-07-24 17:04:38 +0100 | [diff] [blame] | 399 | req0 = cursor; |
| 400 | } else { |
| 401 | req1 = cursor; |
| 402 | break; |
| 403 | } |
| 404 | } |
| 405 | |
Oscar Mateo | e1fee72 | 2014-07-24 17:04:40 +0100 | [diff] [blame] | 406 | WARN_ON(req1 && req1->elsp_submitted); |
| 407 | |
Nick Hoath | 6d3d827 | 2015-01-15 13:10:39 +0000 | [diff] [blame] | 408 | execlists_submit_contexts(ring, req0->ctx, req0->tail, |
| 409 | req1 ? req1->ctx : NULL, |
| 410 | req1 ? req1->tail : 0); |
Oscar Mateo | e1fee72 | 2014-07-24 17:04:40 +0100 | [diff] [blame] | 411 | |
| 412 | req0->elsp_submitted++; |
| 413 | if (req1) |
| 414 | req1->elsp_submitted++; |
Michel Thierry | acdd884 | 2014-07-24 17:04:38 +0100 | [diff] [blame] | 415 | } |
| 416 | |
Thomas Daniel | e981e7b | 2014-07-24 17:04:39 +0100 | [diff] [blame] | 417 | static bool execlists_check_remove_request(struct intel_engine_cs *ring, |
| 418 | u32 request_id) |
| 419 | { |
Nick Hoath | 6d3d827 | 2015-01-15 13:10:39 +0000 | [diff] [blame] | 420 | struct drm_i915_gem_request *head_req; |
Thomas Daniel | e981e7b | 2014-07-24 17:04:39 +0100 | [diff] [blame] | 421 | |
| 422 | assert_spin_locked(&ring->execlist_lock); |
| 423 | |
| 424 | head_req = list_first_entry_or_null(&ring->execlist_queue, |
Nick Hoath | 6d3d827 | 2015-01-15 13:10:39 +0000 | [diff] [blame] | 425 | struct drm_i915_gem_request, |
Thomas Daniel | e981e7b | 2014-07-24 17:04:39 +0100 | [diff] [blame] | 426 | execlist_link); |
| 427 | |
| 428 | if (head_req != NULL) { |
| 429 | struct drm_i915_gem_object *ctx_obj = |
Nick Hoath | 6d3d827 | 2015-01-15 13:10:39 +0000 | [diff] [blame] | 430 | head_req->ctx->engine[ring->id].state; |
Thomas Daniel | e981e7b | 2014-07-24 17:04:39 +0100 | [diff] [blame] | 431 | if (intel_execlists_ctx_id(ctx_obj) == request_id) { |
Oscar Mateo | e1fee72 | 2014-07-24 17:04:40 +0100 | [diff] [blame] | 432 | WARN(head_req->elsp_submitted == 0, |
| 433 | "Never submitted head request\n"); |
| 434 | |
| 435 | if (--head_req->elsp_submitted <= 0) { |
| 436 | list_del(&head_req->execlist_link); |
Thomas Daniel | c86ee3a9 | 2014-11-13 10:27:05 +0000 | [diff] [blame] | 437 | list_add_tail(&head_req->execlist_link, |
| 438 | &ring->execlist_retired_req_list); |
Oscar Mateo | e1fee72 | 2014-07-24 17:04:40 +0100 | [diff] [blame] | 439 | return true; |
| 440 | } |
Thomas Daniel | e981e7b | 2014-07-24 17:04:39 +0100 | [diff] [blame] | 441 | } |
| 442 | } |
| 443 | |
| 444 | return false; |
| 445 | } |
| 446 | |
Oscar Mateo | 73e4d07 | 2014-07-24 17:04:48 +0100 | [diff] [blame] | 447 | /** |
Daniel Vetter | 3f7531c | 2014-12-10 17:41:43 +0100 | [diff] [blame] | 448 | * intel_lrc_irq_handler() - handle Context Switch interrupts |
Oscar Mateo | 73e4d07 | 2014-07-24 17:04:48 +0100 | [diff] [blame] | 449 | * @ring: Engine Command Streamer to handle. |
| 450 | * |
| 451 | * Check the unread Context Status Buffers and manage the submission of new |
| 452 | * contexts to the ELSP accordingly. |
| 453 | */ |
Daniel Vetter | 3f7531c | 2014-12-10 17:41:43 +0100 | [diff] [blame] | 454 | void intel_lrc_irq_handler(struct intel_engine_cs *ring) |
Thomas Daniel | e981e7b | 2014-07-24 17:04:39 +0100 | [diff] [blame] | 455 | { |
| 456 | struct drm_i915_private *dev_priv = ring->dev->dev_private; |
| 457 | u32 status_pointer; |
| 458 | u8 read_pointer; |
| 459 | u8 write_pointer; |
| 460 | u32 status; |
| 461 | u32 status_id; |
| 462 | u32 submit_contexts = 0; |
| 463 | |
| 464 | status_pointer = I915_READ(RING_CONTEXT_STATUS_PTR(ring)); |
| 465 | |
| 466 | read_pointer = ring->next_context_status_buffer; |
| 467 | write_pointer = status_pointer & 0x07; |
| 468 | if (read_pointer > write_pointer) |
| 469 | write_pointer += 6; |
| 470 | |
| 471 | spin_lock(&ring->execlist_lock); |
| 472 | |
| 473 | while (read_pointer < write_pointer) { |
| 474 | read_pointer++; |
| 475 | status = I915_READ(RING_CONTEXT_STATUS_BUF(ring) + |
| 476 | (read_pointer % 6) * 8); |
| 477 | status_id = I915_READ(RING_CONTEXT_STATUS_BUF(ring) + |
| 478 | (read_pointer % 6) * 8 + 4); |
| 479 | |
Oscar Mateo | e1fee72 | 2014-07-24 17:04:40 +0100 | [diff] [blame] | 480 | if (status & GEN8_CTX_STATUS_PREEMPTED) { |
| 481 | if (status & GEN8_CTX_STATUS_LITE_RESTORE) { |
| 482 | if (execlists_check_remove_request(ring, status_id)) |
| 483 | WARN(1, "Lite Restored request removed from queue\n"); |
| 484 | } else |
| 485 | WARN(1, "Preemption without Lite Restore\n"); |
| 486 | } |
| 487 | |
| 488 | if ((status & GEN8_CTX_STATUS_ACTIVE_IDLE) || |
| 489 | (status & GEN8_CTX_STATUS_ELEMENT_SWITCH)) { |
Thomas Daniel | e981e7b | 2014-07-24 17:04:39 +0100 | [diff] [blame] | 490 | if (execlists_check_remove_request(ring, status_id)) |
| 491 | submit_contexts++; |
| 492 | } |
| 493 | } |
| 494 | |
| 495 | if (submit_contexts != 0) |
| 496 | execlists_context_unqueue(ring); |
| 497 | |
| 498 | spin_unlock(&ring->execlist_lock); |
| 499 | |
| 500 | WARN(submit_contexts > 2, "More than two context complete events?\n"); |
| 501 | ring->next_context_status_buffer = write_pointer % 6; |
| 502 | |
| 503 | I915_WRITE(RING_CONTEXT_STATUS_PTR(ring), |
| 504 | ((u32)ring->next_context_status_buffer & 0x07) << 8); |
| 505 | } |
| 506 | |
Michel Thierry | acdd884 | 2014-07-24 17:04:38 +0100 | [diff] [blame] | 507 | static int execlists_context_queue(struct intel_engine_cs *ring, |
| 508 | struct intel_context *to, |
Nick Hoath | 2d12955 | 2015-01-15 13:10:36 +0000 | [diff] [blame] | 509 | u32 tail, |
| 510 | struct drm_i915_gem_request *request) |
Michel Thierry | acdd884 | 2014-07-24 17:04:38 +0100 | [diff] [blame] | 511 | { |
Nick Hoath | 6d3d827 | 2015-01-15 13:10:39 +0000 | [diff] [blame] | 512 | struct drm_i915_gem_request *cursor; |
Thomas Daniel | e981e7b | 2014-07-24 17:04:39 +0100 | [diff] [blame] | 513 | struct drm_i915_private *dev_priv = ring->dev->dev_private; |
Michel Thierry | acdd884 | 2014-07-24 17:04:38 +0100 | [diff] [blame] | 514 | unsigned long flags; |
Oscar Mateo | f1ad5a1 | 2014-07-24 17:04:41 +0100 | [diff] [blame] | 515 | int num_elements = 0; |
Michel Thierry | acdd884 | 2014-07-24 17:04:38 +0100 | [diff] [blame] | 516 | |
Thomas Daniel | 7ba717c | 2014-11-13 10:28:56 +0000 | [diff] [blame] | 517 | if (to != ring->default_context) |
| 518 | intel_lr_context_pin(ring, to); |
| 519 | |
Nick Hoath | 2d12955 | 2015-01-15 13:10:36 +0000 | [diff] [blame] | 520 | if (!request) { |
| 521 | /* |
| 522 | * If there isn't a request associated with this submission, |
| 523 | * create one as a temporary holder. |
| 524 | */ |
Nick Hoath | 2d12955 | 2015-01-15 13:10:36 +0000 | [diff] [blame] | 525 | request = kzalloc(sizeof(*request), GFP_KERNEL); |
| 526 | if (request == NULL) |
| 527 | return -ENOMEM; |
Nick Hoath | 2d12955 | 2015-01-15 13:10:36 +0000 | [diff] [blame] | 528 | request->ring = ring; |
Nick Hoath | 6d3d827 | 2015-01-15 13:10:39 +0000 | [diff] [blame] | 529 | request->ctx = to; |
Nick Hoath | b3a3899 | 2015-02-19 16:30:47 +0000 | [diff] [blame] | 530 | kref_init(&request->ref); |
| 531 | request->uniq = dev_priv->request_uniq++; |
| 532 | i915_gem_context_reference(request->ctx); |
Nick Hoath | 2107637 | 2015-01-15 13:10:38 +0000 | [diff] [blame] | 533 | } else { |
Nick Hoath | b3a3899 | 2015-02-19 16:30:47 +0000 | [diff] [blame] | 534 | i915_gem_request_reference(request); |
Nick Hoath | 2107637 | 2015-01-15 13:10:38 +0000 | [diff] [blame] | 535 | WARN_ON(to != request->ctx); |
Nick Hoath | 2d12955 | 2015-01-15 13:10:36 +0000 | [diff] [blame] | 536 | } |
Nick Hoath | 72f95af | 2015-01-15 13:10:37 +0000 | [diff] [blame] | 537 | request->tail = tail; |
Nick Hoath | 2d12955 | 2015-01-15 13:10:36 +0000 | [diff] [blame] | 538 | |
Thomas Daniel | e981e7b | 2014-07-24 17:04:39 +0100 | [diff] [blame] | 539 | intel_runtime_pm_get(dev_priv); |
Michel Thierry | acdd884 | 2014-07-24 17:04:38 +0100 | [diff] [blame] | 540 | |
| 541 | spin_lock_irqsave(&ring->execlist_lock, flags); |
| 542 | |
Oscar Mateo | f1ad5a1 | 2014-07-24 17:04:41 +0100 | [diff] [blame] | 543 | list_for_each_entry(cursor, &ring->execlist_queue, execlist_link) |
| 544 | if (++num_elements > 2) |
| 545 | break; |
| 546 | |
| 547 | if (num_elements > 2) { |
Nick Hoath | 6d3d827 | 2015-01-15 13:10:39 +0000 | [diff] [blame] | 548 | struct drm_i915_gem_request *tail_req; |
Oscar Mateo | f1ad5a1 | 2014-07-24 17:04:41 +0100 | [diff] [blame] | 549 | |
| 550 | tail_req = list_last_entry(&ring->execlist_queue, |
Nick Hoath | 6d3d827 | 2015-01-15 13:10:39 +0000 | [diff] [blame] | 551 | struct drm_i915_gem_request, |
Oscar Mateo | f1ad5a1 | 2014-07-24 17:04:41 +0100 | [diff] [blame] | 552 | execlist_link); |
| 553 | |
Nick Hoath | 6d3d827 | 2015-01-15 13:10:39 +0000 | [diff] [blame] | 554 | if (to == tail_req->ctx) { |
Oscar Mateo | f1ad5a1 | 2014-07-24 17:04:41 +0100 | [diff] [blame] | 555 | WARN(tail_req->elsp_submitted != 0, |
Thomas Daniel | 7ba717c | 2014-11-13 10:28:56 +0000 | [diff] [blame] | 556 | "More than 2 already-submitted reqs queued\n"); |
Oscar Mateo | f1ad5a1 | 2014-07-24 17:04:41 +0100 | [diff] [blame] | 557 | list_del(&tail_req->execlist_link); |
Thomas Daniel | c86ee3a9 | 2014-11-13 10:27:05 +0000 | [diff] [blame] | 558 | list_add_tail(&tail_req->execlist_link, |
| 559 | &ring->execlist_retired_req_list); |
Oscar Mateo | f1ad5a1 | 2014-07-24 17:04:41 +0100 | [diff] [blame] | 560 | } |
| 561 | } |
| 562 | |
Nick Hoath | 6d3d827 | 2015-01-15 13:10:39 +0000 | [diff] [blame] | 563 | list_add_tail(&request->execlist_link, &ring->execlist_queue); |
Oscar Mateo | f1ad5a1 | 2014-07-24 17:04:41 +0100 | [diff] [blame] | 564 | if (num_elements == 0) |
Michel Thierry | acdd884 | 2014-07-24 17:04:38 +0100 | [diff] [blame] | 565 | execlists_context_unqueue(ring); |
| 566 | |
| 567 | spin_unlock_irqrestore(&ring->execlist_lock, flags); |
| 568 | |
| 569 | return 0; |
| 570 | } |
| 571 | |
Nick Hoath | 2107637 | 2015-01-15 13:10:38 +0000 | [diff] [blame] | 572 | static int logical_ring_invalidate_all_caches(struct intel_ringbuffer *ringbuf, |
| 573 | struct intel_context *ctx) |
Oscar Mateo | ba8b7cc | 2014-07-24 17:04:33 +0100 | [diff] [blame] | 574 | { |
| 575 | struct intel_engine_cs *ring = ringbuf->ring; |
| 576 | uint32_t flush_domains; |
| 577 | int ret; |
| 578 | |
| 579 | flush_domains = 0; |
| 580 | if (ring->gpu_caches_dirty) |
| 581 | flush_domains = I915_GEM_GPU_DOMAINS; |
| 582 | |
Nick Hoath | 2107637 | 2015-01-15 13:10:38 +0000 | [diff] [blame] | 583 | ret = ring->emit_flush(ringbuf, ctx, |
| 584 | I915_GEM_GPU_DOMAINS, flush_domains); |
Oscar Mateo | ba8b7cc | 2014-07-24 17:04:33 +0100 | [diff] [blame] | 585 | if (ret) |
| 586 | return ret; |
| 587 | |
| 588 | ring->gpu_caches_dirty = false; |
| 589 | return 0; |
| 590 | } |
| 591 | |
| 592 | static int execlists_move_to_gpu(struct intel_ringbuffer *ringbuf, |
Nick Hoath | 2107637 | 2015-01-15 13:10:38 +0000 | [diff] [blame] | 593 | struct intel_context *ctx, |
Oscar Mateo | ba8b7cc | 2014-07-24 17:04:33 +0100 | [diff] [blame] | 594 | struct list_head *vmas) |
| 595 | { |
| 596 | struct intel_engine_cs *ring = ringbuf->ring; |
| 597 | struct i915_vma *vma; |
| 598 | uint32_t flush_domains = 0; |
| 599 | bool flush_chipset = false; |
| 600 | int ret; |
| 601 | |
| 602 | list_for_each_entry(vma, vmas, exec_list) { |
| 603 | struct drm_i915_gem_object *obj = vma->obj; |
| 604 | |
| 605 | ret = i915_gem_object_sync(obj, ring); |
| 606 | if (ret) |
| 607 | return ret; |
| 608 | |
| 609 | if (obj->base.write_domain & I915_GEM_DOMAIN_CPU) |
| 610 | flush_chipset |= i915_gem_clflush_object(obj, false); |
| 611 | |
| 612 | flush_domains |= obj->base.write_domain; |
| 613 | } |
| 614 | |
| 615 | if (flush_domains & I915_GEM_DOMAIN_GTT) |
| 616 | wmb(); |
| 617 | |
| 618 | /* Unconditionally invalidate gpu caches and ensure that we do flush |
| 619 | * any residual writes from the previous batch. |
| 620 | */ |
Nick Hoath | 2107637 | 2015-01-15 13:10:38 +0000 | [diff] [blame] | 621 | return logical_ring_invalidate_all_caches(ringbuf, ctx); |
Oscar Mateo | ba8b7cc | 2014-07-24 17:04:33 +0100 | [diff] [blame] | 622 | } |
| 623 | |
John Harrison | 6689cb2 | 2015-03-19 12:30:08 +0000 | [diff] [blame] | 624 | int intel_logical_ring_alloc_request_extras(struct drm_i915_gem_request *request, |
| 625 | struct intel_context *ctx) |
John Harrison | bc0dce3 | 2015-03-19 12:30:07 +0000 | [diff] [blame] | 626 | { |
John Harrison | bc0dce3 | 2015-03-19 12:30:07 +0000 | [diff] [blame] | 627 | int ret; |
| 628 | |
John Harrison | 6689cb2 | 2015-03-19 12:30:08 +0000 | [diff] [blame] | 629 | if (ctx != request->ring->default_context) { |
| 630 | ret = intel_lr_context_pin(request->ring, ctx); |
| 631 | if (ret) |
John Harrison | bc0dce3 | 2015-03-19 12:30:07 +0000 | [diff] [blame] | 632 | return ret; |
John Harrison | bc0dce3 | 2015-03-19 12:30:07 +0000 | [diff] [blame] | 633 | } |
| 634 | |
John Harrison | 6689cb2 | 2015-03-19 12:30:08 +0000 | [diff] [blame] | 635 | request->ringbuf = ctx->engine[request->ring->id].ringbuf; |
| 636 | request->ctx = ctx; |
John Harrison | bc0dce3 | 2015-03-19 12:30:07 +0000 | [diff] [blame] | 637 | i915_gem_context_reference(request->ctx); |
John Harrison | bc0dce3 | 2015-03-19 12:30:07 +0000 | [diff] [blame] | 638 | |
John Harrison | bc0dce3 | 2015-03-19 12:30:07 +0000 | [diff] [blame] | 639 | return 0; |
| 640 | } |
| 641 | |
| 642 | static int logical_ring_wait_request(struct intel_ringbuffer *ringbuf, |
| 643 | int bytes) |
| 644 | { |
| 645 | struct intel_engine_cs *ring = ringbuf->ring; |
| 646 | struct drm_i915_gem_request *request; |
John Harrison | dbe4646 | 2015-03-19 12:30:09 +0000 | [diff] [blame] | 647 | int ret, new_space; |
John Harrison | bc0dce3 | 2015-03-19 12:30:07 +0000 | [diff] [blame] | 648 | |
| 649 | if (intel_ring_space(ringbuf) >= bytes) |
| 650 | return 0; |
| 651 | |
| 652 | list_for_each_entry(request, &ring->request_list, list) { |
| 653 | /* |
| 654 | * The request queue is per-engine, so can contain requests |
| 655 | * from multiple ringbuffers. Here, we must ignore any that |
| 656 | * aren't from the ringbuffer we're considering. |
| 657 | */ |
| 658 | struct intel_context *ctx = request->ctx; |
| 659 | if (ctx->engine[ring->id].ringbuf != ringbuf) |
| 660 | continue; |
| 661 | |
| 662 | /* Would completion of this request free enough space? */ |
John Harrison | dbe4646 | 2015-03-19 12:30:09 +0000 | [diff] [blame] | 663 | new_space = __intel_ring_space(request->postfix, ringbuf->tail, |
| 664 | ringbuf->size); |
| 665 | if (new_space >= bytes) |
John Harrison | bc0dce3 | 2015-03-19 12:30:07 +0000 | [diff] [blame] | 666 | break; |
John Harrison | bc0dce3 | 2015-03-19 12:30:07 +0000 | [diff] [blame] | 667 | } |
| 668 | |
| 669 | if (&request->list == &ring->request_list) |
| 670 | return -ENOSPC; |
| 671 | |
| 672 | ret = i915_wait_request(request); |
| 673 | if (ret) |
| 674 | return ret; |
| 675 | |
| 676 | i915_gem_retire_requests_ring(ring); |
| 677 | |
John Harrison | dbe4646 | 2015-03-19 12:30:09 +0000 | [diff] [blame] | 678 | WARN_ON(intel_ring_space(ringbuf) < new_space); |
| 679 | |
John Harrison | bc0dce3 | 2015-03-19 12:30:07 +0000 | [diff] [blame] | 680 | return intel_ring_space(ringbuf) >= bytes ? 0 : -ENOSPC; |
| 681 | } |
| 682 | |
| 683 | /* |
| 684 | * intel_logical_ring_advance_and_submit() - advance the tail and submit the workload |
| 685 | * @ringbuf: Logical Ringbuffer to advance. |
| 686 | * |
| 687 | * The tail is updated in our logical ringbuffer struct, not in the actual context. What |
| 688 | * really happens during submission is that the context and current tail will be placed |
| 689 | * on a queue waiting for the ELSP to be ready to accept a new context submission. At that |
| 690 | * point, the tail *inside* the context is updated and the ELSP written to. |
| 691 | */ |
| 692 | static void |
| 693 | intel_logical_ring_advance_and_submit(struct intel_ringbuffer *ringbuf, |
| 694 | struct intel_context *ctx, |
| 695 | struct drm_i915_gem_request *request) |
| 696 | { |
| 697 | struct intel_engine_cs *ring = ringbuf->ring; |
| 698 | |
| 699 | intel_logical_ring_advance(ringbuf); |
| 700 | |
| 701 | if (intel_ring_stopped(ring)) |
| 702 | return; |
| 703 | |
| 704 | execlists_context_queue(ring, ctx, ringbuf->tail, request); |
| 705 | } |
| 706 | |
| 707 | static int logical_ring_wait_for_space(struct intel_ringbuffer *ringbuf, |
| 708 | struct intel_context *ctx, |
| 709 | int bytes) |
| 710 | { |
| 711 | struct intel_engine_cs *ring = ringbuf->ring; |
| 712 | struct drm_device *dev = ring->dev; |
| 713 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 714 | unsigned long end; |
| 715 | int ret; |
| 716 | |
| 717 | ret = logical_ring_wait_request(ringbuf, bytes); |
| 718 | if (ret != -ENOSPC) |
| 719 | return ret; |
| 720 | |
| 721 | /* Force the context submission in case we have been skipping it */ |
| 722 | intel_logical_ring_advance_and_submit(ringbuf, ctx, NULL); |
| 723 | |
| 724 | /* With GEM the hangcheck timer should kick us out of the loop, |
| 725 | * leaving it early runs the risk of corrupting GEM state (due |
| 726 | * to running on almost untested codepaths). But on resume |
| 727 | * timers don't work yet, so prevent a complete hang in that |
| 728 | * case by choosing an insanely large timeout. */ |
| 729 | end = jiffies + 60 * HZ; |
| 730 | |
| 731 | ret = 0; |
| 732 | do { |
| 733 | if (intel_ring_space(ringbuf) >= bytes) |
| 734 | break; |
| 735 | |
| 736 | msleep(1); |
| 737 | |
| 738 | if (dev_priv->mm.interruptible && signal_pending(current)) { |
| 739 | ret = -ERESTARTSYS; |
| 740 | break; |
| 741 | } |
| 742 | |
| 743 | ret = i915_gem_check_wedge(&dev_priv->gpu_error, |
| 744 | dev_priv->mm.interruptible); |
| 745 | if (ret) |
| 746 | break; |
| 747 | |
| 748 | if (time_after(jiffies, end)) { |
| 749 | ret = -EBUSY; |
| 750 | break; |
| 751 | } |
| 752 | } while (1); |
| 753 | |
| 754 | return ret; |
| 755 | } |
| 756 | |
| 757 | static int logical_ring_wrap_buffer(struct intel_ringbuffer *ringbuf, |
| 758 | struct intel_context *ctx) |
| 759 | { |
| 760 | uint32_t __iomem *virt; |
| 761 | int rem = ringbuf->size - ringbuf->tail; |
| 762 | |
| 763 | if (ringbuf->space < rem) { |
| 764 | int ret = logical_ring_wait_for_space(ringbuf, ctx, rem); |
| 765 | |
| 766 | if (ret) |
| 767 | return ret; |
| 768 | } |
| 769 | |
| 770 | virt = ringbuf->virtual_start + ringbuf->tail; |
| 771 | rem /= 4; |
| 772 | while (rem--) |
| 773 | iowrite32(MI_NOOP, virt++); |
| 774 | |
| 775 | ringbuf->tail = 0; |
| 776 | intel_ring_update_space(ringbuf); |
| 777 | |
| 778 | return 0; |
| 779 | } |
| 780 | |
| 781 | static int logical_ring_prepare(struct intel_ringbuffer *ringbuf, |
| 782 | struct intel_context *ctx, int bytes) |
| 783 | { |
| 784 | int ret; |
| 785 | |
| 786 | if (unlikely(ringbuf->tail + bytes > ringbuf->effective_size)) { |
| 787 | ret = logical_ring_wrap_buffer(ringbuf, ctx); |
| 788 | if (unlikely(ret)) |
| 789 | return ret; |
| 790 | } |
| 791 | |
| 792 | if (unlikely(ringbuf->space < bytes)) { |
| 793 | ret = logical_ring_wait_for_space(ringbuf, ctx, bytes); |
| 794 | if (unlikely(ret)) |
| 795 | return ret; |
| 796 | } |
| 797 | |
| 798 | return 0; |
| 799 | } |
| 800 | |
| 801 | /** |
| 802 | * intel_logical_ring_begin() - prepare the logical ringbuffer to accept some commands |
| 803 | * |
| 804 | * @ringbuf: Logical ringbuffer. |
| 805 | * @num_dwords: number of DWORDs that we plan to write to the ringbuffer. |
| 806 | * |
| 807 | * The ringbuffer might not be ready to accept the commands right away (maybe it needs to |
| 808 | * be wrapped, or wait a bit for the tail to be updated). This function takes care of that |
| 809 | * and also preallocates a request (every workload submission is still mediated through |
| 810 | * requests, same as it did with legacy ringbuffer submission). |
| 811 | * |
| 812 | * Return: non-zero if the ringbuffer is not ready to be written to. |
| 813 | */ |
| 814 | static int intel_logical_ring_begin(struct intel_ringbuffer *ringbuf, |
| 815 | struct intel_context *ctx, int num_dwords) |
| 816 | { |
| 817 | struct intel_engine_cs *ring = ringbuf->ring; |
| 818 | struct drm_device *dev = ring->dev; |
| 819 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 820 | int ret; |
| 821 | |
| 822 | ret = i915_gem_check_wedge(&dev_priv->gpu_error, |
| 823 | dev_priv->mm.interruptible); |
| 824 | if (ret) |
| 825 | return ret; |
| 826 | |
| 827 | ret = logical_ring_prepare(ringbuf, ctx, num_dwords * sizeof(uint32_t)); |
| 828 | if (ret) |
| 829 | return ret; |
| 830 | |
| 831 | /* Preallocate the olr before touching the ring */ |
John Harrison | 6689cb2 | 2015-03-19 12:30:08 +0000 | [diff] [blame] | 832 | ret = i915_gem_request_alloc(ring, ctx); |
John Harrison | bc0dce3 | 2015-03-19 12:30:07 +0000 | [diff] [blame] | 833 | if (ret) |
| 834 | return ret; |
| 835 | |
| 836 | ringbuf->space -= num_dwords * sizeof(uint32_t); |
| 837 | return 0; |
| 838 | } |
| 839 | |
Oscar Mateo | 73e4d07 | 2014-07-24 17:04:48 +0100 | [diff] [blame] | 840 | /** |
| 841 | * execlists_submission() - submit a batchbuffer for execution, Execlists style |
| 842 | * @dev: DRM device. |
| 843 | * @file: DRM file. |
| 844 | * @ring: Engine Command Streamer to submit to. |
| 845 | * @ctx: Context to employ for this submission. |
| 846 | * @args: execbuffer call arguments. |
| 847 | * @vmas: list of vmas. |
| 848 | * @batch_obj: the batchbuffer to submit. |
| 849 | * @exec_start: batchbuffer start virtual address pointer. |
John Harrison | 8e004ef | 2015-02-13 11:48:10 +0000 | [diff] [blame] | 850 | * @dispatch_flags: translated execbuffer call flags. |
Oscar Mateo | 73e4d07 | 2014-07-24 17:04:48 +0100 | [diff] [blame] | 851 | * |
| 852 | * This is the evil twin version of i915_gem_ringbuffer_submission. It abstracts |
| 853 | * away the submission details of the execbuffer ioctl call. |
| 854 | * |
| 855 | * Return: non-zero if the submission fails. |
| 856 | */ |
Oscar Mateo | 454afeb | 2014-07-24 17:04:22 +0100 | [diff] [blame] | 857 | int intel_execlists_submission(struct drm_device *dev, struct drm_file *file, |
| 858 | struct intel_engine_cs *ring, |
| 859 | struct intel_context *ctx, |
| 860 | struct drm_i915_gem_execbuffer2 *args, |
| 861 | struct list_head *vmas, |
| 862 | struct drm_i915_gem_object *batch_obj, |
John Harrison | 8e004ef | 2015-02-13 11:48:10 +0000 | [diff] [blame] | 863 | u64 exec_start, u32 dispatch_flags) |
Oscar Mateo | 454afeb | 2014-07-24 17:04:22 +0100 | [diff] [blame] | 864 | { |
Oscar Mateo | ba8b7cc | 2014-07-24 17:04:33 +0100 | [diff] [blame] | 865 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 866 | struct intel_ringbuffer *ringbuf = ctx->engine[ring->id].ringbuf; |
| 867 | int instp_mode; |
| 868 | u32 instp_mask; |
| 869 | int ret; |
| 870 | |
| 871 | instp_mode = args->flags & I915_EXEC_CONSTANTS_MASK; |
| 872 | instp_mask = I915_EXEC_CONSTANTS_MASK; |
| 873 | switch (instp_mode) { |
| 874 | case I915_EXEC_CONSTANTS_REL_GENERAL: |
| 875 | case I915_EXEC_CONSTANTS_ABSOLUTE: |
| 876 | case I915_EXEC_CONSTANTS_REL_SURFACE: |
| 877 | if (instp_mode != 0 && ring != &dev_priv->ring[RCS]) { |
| 878 | DRM_DEBUG("non-0 rel constants mode on non-RCS\n"); |
| 879 | return -EINVAL; |
| 880 | } |
| 881 | |
| 882 | if (instp_mode != dev_priv->relative_constants_mode) { |
| 883 | if (instp_mode == I915_EXEC_CONSTANTS_REL_SURFACE) { |
| 884 | DRM_DEBUG("rel surface constants mode invalid on gen5+\n"); |
| 885 | return -EINVAL; |
| 886 | } |
| 887 | |
| 888 | /* The HW changed the meaning on this bit on gen6 */ |
| 889 | instp_mask &= ~I915_EXEC_CONSTANTS_REL_SURFACE; |
| 890 | } |
| 891 | break; |
| 892 | default: |
| 893 | DRM_DEBUG("execbuf with unknown constants: %d\n", instp_mode); |
| 894 | return -EINVAL; |
| 895 | } |
| 896 | |
| 897 | if (args->num_cliprects != 0) { |
| 898 | DRM_DEBUG("clip rectangles are only valid on pre-gen5\n"); |
| 899 | return -EINVAL; |
| 900 | } else { |
| 901 | if (args->DR4 == 0xffffffff) { |
| 902 | DRM_DEBUG("UXA submitting garbage DR4, fixing up\n"); |
| 903 | args->DR4 = 0; |
| 904 | } |
| 905 | |
| 906 | if (args->DR1 || args->DR4 || args->cliprects_ptr) { |
| 907 | DRM_DEBUG("0 cliprects but dirt in cliprects fields\n"); |
| 908 | return -EINVAL; |
| 909 | } |
| 910 | } |
| 911 | |
| 912 | if (args->flags & I915_EXEC_GEN7_SOL_RESET) { |
| 913 | DRM_DEBUG("sol reset is gen7 only\n"); |
| 914 | return -EINVAL; |
| 915 | } |
| 916 | |
Nick Hoath | 2107637 | 2015-01-15 13:10:38 +0000 | [diff] [blame] | 917 | ret = execlists_move_to_gpu(ringbuf, ctx, vmas); |
Oscar Mateo | ba8b7cc | 2014-07-24 17:04:33 +0100 | [diff] [blame] | 918 | if (ret) |
| 919 | return ret; |
| 920 | |
| 921 | if (ring == &dev_priv->ring[RCS] && |
| 922 | instp_mode != dev_priv->relative_constants_mode) { |
Nick Hoath | 2107637 | 2015-01-15 13:10:38 +0000 | [diff] [blame] | 923 | ret = intel_logical_ring_begin(ringbuf, ctx, 4); |
Oscar Mateo | ba8b7cc | 2014-07-24 17:04:33 +0100 | [diff] [blame] | 924 | if (ret) |
| 925 | return ret; |
| 926 | |
| 927 | intel_logical_ring_emit(ringbuf, MI_NOOP); |
| 928 | intel_logical_ring_emit(ringbuf, MI_LOAD_REGISTER_IMM(1)); |
| 929 | intel_logical_ring_emit(ringbuf, INSTPM); |
| 930 | intel_logical_ring_emit(ringbuf, instp_mask << 16 | instp_mode); |
| 931 | intel_logical_ring_advance(ringbuf); |
| 932 | |
| 933 | dev_priv->relative_constants_mode = instp_mode; |
| 934 | } |
| 935 | |
John Harrison | 8e004ef | 2015-02-13 11:48:10 +0000 | [diff] [blame] | 936 | ret = ring->emit_bb_start(ringbuf, ctx, exec_start, dispatch_flags); |
Oscar Mateo | ba8b7cc | 2014-07-24 17:04:33 +0100 | [diff] [blame] | 937 | if (ret) |
| 938 | return ret; |
| 939 | |
John Harrison | 5e4be7b | 2015-02-13 11:48:11 +0000 | [diff] [blame] | 940 | trace_i915_gem_ring_dispatch(intel_ring_get_request(ring), dispatch_flags); |
| 941 | |
Oscar Mateo | ba8b7cc | 2014-07-24 17:04:33 +0100 | [diff] [blame] | 942 | i915_gem_execbuffer_move_to_active(vmas, ring); |
| 943 | i915_gem_execbuffer_retire_commands(dev, file, ring, batch_obj); |
| 944 | |
Oscar Mateo | 454afeb | 2014-07-24 17:04:22 +0100 | [diff] [blame] | 945 | return 0; |
| 946 | } |
| 947 | |
Thomas Daniel | c86ee3a9 | 2014-11-13 10:27:05 +0000 | [diff] [blame] | 948 | void intel_execlists_retire_requests(struct intel_engine_cs *ring) |
| 949 | { |
Nick Hoath | 6d3d827 | 2015-01-15 13:10:39 +0000 | [diff] [blame] | 950 | struct drm_i915_gem_request *req, *tmp; |
Thomas Daniel | c86ee3a9 | 2014-11-13 10:27:05 +0000 | [diff] [blame] | 951 | struct drm_i915_private *dev_priv = ring->dev->dev_private; |
| 952 | unsigned long flags; |
| 953 | struct list_head retired_list; |
| 954 | |
| 955 | WARN_ON(!mutex_is_locked(&ring->dev->struct_mutex)); |
| 956 | if (list_empty(&ring->execlist_retired_req_list)) |
| 957 | return; |
| 958 | |
| 959 | INIT_LIST_HEAD(&retired_list); |
| 960 | spin_lock_irqsave(&ring->execlist_lock, flags); |
| 961 | list_replace_init(&ring->execlist_retired_req_list, &retired_list); |
| 962 | spin_unlock_irqrestore(&ring->execlist_lock, flags); |
| 963 | |
| 964 | list_for_each_entry_safe(req, tmp, &retired_list, execlist_link) { |
Nick Hoath | 6d3d827 | 2015-01-15 13:10:39 +0000 | [diff] [blame] | 965 | struct intel_context *ctx = req->ctx; |
Thomas Daniel | 7ba717c | 2014-11-13 10:28:56 +0000 | [diff] [blame] | 966 | struct drm_i915_gem_object *ctx_obj = |
| 967 | ctx->engine[ring->id].state; |
| 968 | |
| 969 | if (ctx_obj && (ctx != ring->default_context)) |
| 970 | intel_lr_context_unpin(ring, ctx); |
Thomas Daniel | c86ee3a9 | 2014-11-13 10:27:05 +0000 | [diff] [blame] | 971 | intel_runtime_pm_put(dev_priv); |
Thomas Daniel | c86ee3a9 | 2014-11-13 10:27:05 +0000 | [diff] [blame] | 972 | list_del(&req->execlist_link); |
Nick Hoath | f821079 | 2015-01-29 16:55:07 +0000 | [diff] [blame] | 973 | i915_gem_request_unreference(req); |
Thomas Daniel | c86ee3a9 | 2014-11-13 10:27:05 +0000 | [diff] [blame] | 974 | } |
| 975 | } |
| 976 | |
Oscar Mateo | 454afeb | 2014-07-24 17:04:22 +0100 | [diff] [blame] | 977 | void intel_logical_ring_stop(struct intel_engine_cs *ring) |
| 978 | { |
Oscar Mateo | 9832b9d | 2014-07-24 17:04:30 +0100 | [diff] [blame] | 979 | struct drm_i915_private *dev_priv = ring->dev->dev_private; |
| 980 | int ret; |
| 981 | |
| 982 | if (!intel_ring_initialized(ring)) |
| 983 | return; |
| 984 | |
| 985 | ret = intel_ring_idle(ring); |
| 986 | if (ret && !i915_reset_in_progress(&to_i915(ring->dev)->gpu_error)) |
| 987 | DRM_ERROR("failed to quiesce %s whilst cleaning up: %d\n", |
| 988 | ring->name, ret); |
| 989 | |
| 990 | /* TODO: Is this correct with Execlists enabled? */ |
| 991 | I915_WRITE_MODE(ring, _MASKED_BIT_ENABLE(STOP_RING)); |
| 992 | if (wait_for_atomic((I915_READ_MODE(ring) & MODE_IDLE) != 0, 1000)) { |
| 993 | DRM_ERROR("%s :timed out trying to stop ring\n", ring->name); |
| 994 | return; |
| 995 | } |
| 996 | I915_WRITE_MODE(ring, _MASKED_BIT_DISABLE(STOP_RING)); |
Oscar Mateo | 454afeb | 2014-07-24 17:04:22 +0100 | [diff] [blame] | 997 | } |
| 998 | |
Nick Hoath | 2107637 | 2015-01-15 13:10:38 +0000 | [diff] [blame] | 999 | int logical_ring_flush_all_caches(struct intel_ringbuffer *ringbuf, |
| 1000 | struct intel_context *ctx) |
Oscar Mateo | 48e29f5 | 2014-07-24 17:04:29 +0100 | [diff] [blame] | 1001 | { |
| 1002 | struct intel_engine_cs *ring = ringbuf->ring; |
| 1003 | int ret; |
| 1004 | |
| 1005 | if (!ring->gpu_caches_dirty) |
| 1006 | return 0; |
| 1007 | |
Nick Hoath | 2107637 | 2015-01-15 13:10:38 +0000 | [diff] [blame] | 1008 | ret = ring->emit_flush(ringbuf, ctx, 0, I915_GEM_GPU_DOMAINS); |
Oscar Mateo | 48e29f5 | 2014-07-24 17:04:29 +0100 | [diff] [blame] | 1009 | if (ret) |
| 1010 | return ret; |
| 1011 | |
| 1012 | ring->gpu_caches_dirty = false; |
| 1013 | return 0; |
| 1014 | } |
| 1015 | |
Oscar Mateo | dcb4c12 | 2014-11-13 10:28:10 +0000 | [diff] [blame] | 1016 | static int intel_lr_context_pin(struct intel_engine_cs *ring, |
| 1017 | struct intel_context *ctx) |
| 1018 | { |
| 1019 | struct drm_i915_gem_object *ctx_obj = ctx->engine[ring->id].state; |
Thomas Daniel | 7ba717c | 2014-11-13 10:28:56 +0000 | [diff] [blame] | 1020 | struct intel_ringbuffer *ringbuf = ctx->engine[ring->id].ringbuf; |
Oscar Mateo | dcb4c12 | 2014-11-13 10:28:10 +0000 | [diff] [blame] | 1021 | int ret = 0; |
| 1022 | |
| 1023 | WARN_ON(!mutex_is_locked(&ring->dev->struct_mutex)); |
Mika Kuoppala | a7cbede | 2015-01-13 11:32:25 +0200 | [diff] [blame] | 1024 | if (ctx->engine[ring->id].pin_count++ == 0) { |
Oscar Mateo | dcb4c12 | 2014-11-13 10:28:10 +0000 | [diff] [blame] | 1025 | ret = i915_gem_obj_ggtt_pin(ctx_obj, |
| 1026 | GEN8_LR_CONTEXT_ALIGN, 0); |
| 1027 | if (ret) |
Mika Kuoppala | a7cbede | 2015-01-13 11:32:25 +0200 | [diff] [blame] | 1028 | goto reset_pin_count; |
Thomas Daniel | 7ba717c | 2014-11-13 10:28:56 +0000 | [diff] [blame] | 1029 | |
| 1030 | ret = intel_pin_and_map_ringbuffer_obj(ring->dev, ringbuf); |
| 1031 | if (ret) |
| 1032 | goto unpin_ctx_obj; |
Oscar Mateo | dcb4c12 | 2014-11-13 10:28:10 +0000 | [diff] [blame] | 1033 | } |
| 1034 | |
| 1035 | return ret; |
Thomas Daniel | 7ba717c | 2014-11-13 10:28:56 +0000 | [diff] [blame] | 1036 | |
| 1037 | unpin_ctx_obj: |
| 1038 | i915_gem_object_ggtt_unpin(ctx_obj); |
Mika Kuoppala | a7cbede | 2015-01-13 11:32:25 +0200 | [diff] [blame] | 1039 | reset_pin_count: |
| 1040 | ctx->engine[ring->id].pin_count = 0; |
Thomas Daniel | 7ba717c | 2014-11-13 10:28:56 +0000 | [diff] [blame] | 1041 | |
| 1042 | return ret; |
Oscar Mateo | dcb4c12 | 2014-11-13 10:28:10 +0000 | [diff] [blame] | 1043 | } |
| 1044 | |
| 1045 | void intel_lr_context_unpin(struct intel_engine_cs *ring, |
| 1046 | struct intel_context *ctx) |
| 1047 | { |
| 1048 | struct drm_i915_gem_object *ctx_obj = ctx->engine[ring->id].state; |
Thomas Daniel | 7ba717c | 2014-11-13 10:28:56 +0000 | [diff] [blame] | 1049 | struct intel_ringbuffer *ringbuf = ctx->engine[ring->id].ringbuf; |
Oscar Mateo | dcb4c12 | 2014-11-13 10:28:10 +0000 | [diff] [blame] | 1050 | |
| 1051 | if (ctx_obj) { |
| 1052 | WARN_ON(!mutex_is_locked(&ring->dev->struct_mutex)); |
Mika Kuoppala | a7cbede | 2015-01-13 11:32:25 +0200 | [diff] [blame] | 1053 | if (--ctx->engine[ring->id].pin_count == 0) { |
Thomas Daniel | 7ba717c | 2014-11-13 10:28:56 +0000 | [diff] [blame] | 1054 | intel_unpin_ringbuffer_obj(ringbuf); |
Oscar Mateo | dcb4c12 | 2014-11-13 10:28:10 +0000 | [diff] [blame] | 1055 | i915_gem_object_ggtt_unpin(ctx_obj); |
Thomas Daniel | 7ba717c | 2014-11-13 10:28:56 +0000 | [diff] [blame] | 1056 | } |
Oscar Mateo | dcb4c12 | 2014-11-13 10:28:10 +0000 | [diff] [blame] | 1057 | } |
| 1058 | } |
| 1059 | |
Michel Thierry | 771b9a5 | 2014-11-11 16:47:33 +0000 | [diff] [blame] | 1060 | static int intel_logical_ring_workarounds_emit(struct intel_engine_cs *ring, |
| 1061 | struct intel_context *ctx) |
| 1062 | { |
| 1063 | int ret, i; |
| 1064 | struct intel_ringbuffer *ringbuf = ctx->engine[ring->id].ringbuf; |
| 1065 | struct drm_device *dev = ring->dev; |
| 1066 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1067 | struct i915_workarounds *w = &dev_priv->workarounds; |
| 1068 | |
Michel Thierry | e6c1abb | 2014-11-26 14:21:02 +0000 | [diff] [blame] | 1069 | if (WARN_ON_ONCE(w->count == 0)) |
Michel Thierry | 771b9a5 | 2014-11-11 16:47:33 +0000 | [diff] [blame] | 1070 | return 0; |
| 1071 | |
| 1072 | ring->gpu_caches_dirty = true; |
Nick Hoath | 2107637 | 2015-01-15 13:10:38 +0000 | [diff] [blame] | 1073 | ret = logical_ring_flush_all_caches(ringbuf, ctx); |
Michel Thierry | 771b9a5 | 2014-11-11 16:47:33 +0000 | [diff] [blame] | 1074 | if (ret) |
| 1075 | return ret; |
| 1076 | |
Nick Hoath | 2107637 | 2015-01-15 13:10:38 +0000 | [diff] [blame] | 1077 | ret = intel_logical_ring_begin(ringbuf, ctx, w->count * 2 + 2); |
Michel Thierry | 771b9a5 | 2014-11-11 16:47:33 +0000 | [diff] [blame] | 1078 | if (ret) |
| 1079 | return ret; |
| 1080 | |
| 1081 | intel_logical_ring_emit(ringbuf, MI_LOAD_REGISTER_IMM(w->count)); |
| 1082 | for (i = 0; i < w->count; i++) { |
| 1083 | intel_logical_ring_emit(ringbuf, w->reg[i].addr); |
| 1084 | intel_logical_ring_emit(ringbuf, w->reg[i].value); |
| 1085 | } |
| 1086 | intel_logical_ring_emit(ringbuf, MI_NOOP); |
| 1087 | |
| 1088 | intel_logical_ring_advance(ringbuf); |
| 1089 | |
| 1090 | ring->gpu_caches_dirty = true; |
Nick Hoath | 2107637 | 2015-01-15 13:10:38 +0000 | [diff] [blame] | 1091 | ret = logical_ring_flush_all_caches(ringbuf, ctx); |
Michel Thierry | 771b9a5 | 2014-11-11 16:47:33 +0000 | [diff] [blame] | 1092 | if (ret) |
| 1093 | return ret; |
| 1094 | |
| 1095 | return 0; |
| 1096 | } |
| 1097 | |
Oscar Mateo | 9b1136d | 2014-07-24 17:04:24 +0100 | [diff] [blame] | 1098 | static int gen8_init_common_ring(struct intel_engine_cs *ring) |
| 1099 | { |
| 1100 | struct drm_device *dev = ring->dev; |
| 1101 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1102 | |
Oscar Mateo | 73d477f | 2014-07-24 17:04:31 +0100 | [diff] [blame] | 1103 | I915_WRITE_IMR(ring, ~(ring->irq_enable_mask | ring->irq_keep_mask)); |
| 1104 | I915_WRITE(RING_HWSTAM(ring->mmio_base), 0xffffffff); |
| 1105 | |
Oscar Mateo | 9b1136d | 2014-07-24 17:04:24 +0100 | [diff] [blame] | 1106 | I915_WRITE(RING_MODE_GEN7(ring), |
| 1107 | _MASKED_BIT_DISABLE(GFX_REPLAY_MODE) | |
| 1108 | _MASKED_BIT_ENABLE(GFX_RUN_LIST_ENABLE)); |
| 1109 | POSTING_READ(RING_MODE_GEN7(ring)); |
Thomas Daniel | c0a03a2 | 2015-01-09 11:09:37 +0000 | [diff] [blame] | 1110 | ring->next_context_status_buffer = 0; |
Oscar Mateo | 9b1136d | 2014-07-24 17:04:24 +0100 | [diff] [blame] | 1111 | DRM_DEBUG_DRIVER("Execlists enabled for %s\n", ring->name); |
| 1112 | |
| 1113 | memset(&ring->hangcheck, 0, sizeof(ring->hangcheck)); |
| 1114 | |
| 1115 | return 0; |
| 1116 | } |
| 1117 | |
| 1118 | static int gen8_init_render_ring(struct intel_engine_cs *ring) |
| 1119 | { |
| 1120 | struct drm_device *dev = ring->dev; |
| 1121 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1122 | int ret; |
| 1123 | |
| 1124 | ret = gen8_init_common_ring(ring); |
| 1125 | if (ret) |
| 1126 | return ret; |
| 1127 | |
| 1128 | /* We need to disable the AsyncFlip performance optimisations in order |
| 1129 | * to use MI_WAIT_FOR_EVENT within the CS. It should already be |
| 1130 | * programmed to '1' on all products. |
| 1131 | * |
| 1132 | * WaDisableAsyncFlipPerfMode:snb,ivb,hsw,vlv,bdw,chv |
| 1133 | */ |
| 1134 | I915_WRITE(MI_MODE, _MASKED_BIT_ENABLE(ASYNC_FLIP_PERF_DISABLE)); |
| 1135 | |
Oscar Mateo | 9b1136d | 2014-07-24 17:04:24 +0100 | [diff] [blame] | 1136 | I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_FORCE_ORDERING)); |
| 1137 | |
Michel Thierry | 771b9a5 | 2014-11-11 16:47:33 +0000 | [diff] [blame] | 1138 | return init_workarounds_ring(ring); |
Oscar Mateo | 9b1136d | 2014-07-24 17:04:24 +0100 | [diff] [blame] | 1139 | } |
| 1140 | |
Damien Lespiau | 82ef822 | 2015-02-09 19:33:08 +0000 | [diff] [blame] | 1141 | static int gen9_init_render_ring(struct intel_engine_cs *ring) |
| 1142 | { |
| 1143 | int ret; |
| 1144 | |
| 1145 | ret = gen8_init_common_ring(ring); |
| 1146 | if (ret) |
| 1147 | return ret; |
| 1148 | |
| 1149 | return init_workarounds_ring(ring); |
| 1150 | } |
| 1151 | |
Oscar Mateo | 1564858 | 2014-07-24 17:04:32 +0100 | [diff] [blame] | 1152 | static int gen8_emit_bb_start(struct intel_ringbuffer *ringbuf, |
Nick Hoath | 2107637 | 2015-01-15 13:10:38 +0000 | [diff] [blame] | 1153 | struct intel_context *ctx, |
John Harrison | 8e004ef | 2015-02-13 11:48:10 +0000 | [diff] [blame] | 1154 | u64 offset, unsigned dispatch_flags) |
Oscar Mateo | 1564858 | 2014-07-24 17:04:32 +0100 | [diff] [blame] | 1155 | { |
John Harrison | 8e004ef | 2015-02-13 11:48:10 +0000 | [diff] [blame] | 1156 | bool ppgtt = !(dispatch_flags & I915_DISPATCH_SECURE); |
Oscar Mateo | 1564858 | 2014-07-24 17:04:32 +0100 | [diff] [blame] | 1157 | int ret; |
| 1158 | |
Nick Hoath | 2107637 | 2015-01-15 13:10:38 +0000 | [diff] [blame] | 1159 | ret = intel_logical_ring_begin(ringbuf, ctx, 4); |
Oscar Mateo | 1564858 | 2014-07-24 17:04:32 +0100 | [diff] [blame] | 1160 | if (ret) |
| 1161 | return ret; |
| 1162 | |
| 1163 | /* FIXME(BDW): Address space and security selectors. */ |
| 1164 | intel_logical_ring_emit(ringbuf, MI_BATCH_BUFFER_START_GEN8 | (ppgtt<<8)); |
| 1165 | intel_logical_ring_emit(ringbuf, lower_32_bits(offset)); |
| 1166 | intel_logical_ring_emit(ringbuf, upper_32_bits(offset)); |
| 1167 | intel_logical_ring_emit(ringbuf, MI_NOOP); |
| 1168 | intel_logical_ring_advance(ringbuf); |
| 1169 | |
| 1170 | return 0; |
| 1171 | } |
| 1172 | |
Oscar Mateo | 73d477f | 2014-07-24 17:04:31 +0100 | [diff] [blame] | 1173 | static bool gen8_logical_ring_get_irq(struct intel_engine_cs *ring) |
| 1174 | { |
| 1175 | struct drm_device *dev = ring->dev; |
| 1176 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1177 | unsigned long flags; |
| 1178 | |
Daniel Vetter | 7cd512f | 2014-09-15 11:38:57 +0200 | [diff] [blame] | 1179 | if (WARN_ON(!intel_irqs_enabled(dev_priv))) |
Oscar Mateo | 73d477f | 2014-07-24 17:04:31 +0100 | [diff] [blame] | 1180 | return false; |
| 1181 | |
| 1182 | spin_lock_irqsave(&dev_priv->irq_lock, flags); |
| 1183 | if (ring->irq_refcount++ == 0) { |
| 1184 | I915_WRITE_IMR(ring, ~(ring->irq_enable_mask | ring->irq_keep_mask)); |
| 1185 | POSTING_READ(RING_IMR(ring->mmio_base)); |
| 1186 | } |
| 1187 | spin_unlock_irqrestore(&dev_priv->irq_lock, flags); |
| 1188 | |
| 1189 | return true; |
| 1190 | } |
| 1191 | |
| 1192 | static void gen8_logical_ring_put_irq(struct intel_engine_cs *ring) |
| 1193 | { |
| 1194 | struct drm_device *dev = ring->dev; |
| 1195 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1196 | unsigned long flags; |
| 1197 | |
| 1198 | spin_lock_irqsave(&dev_priv->irq_lock, flags); |
| 1199 | if (--ring->irq_refcount == 0) { |
| 1200 | I915_WRITE_IMR(ring, ~ring->irq_keep_mask); |
| 1201 | POSTING_READ(RING_IMR(ring->mmio_base)); |
| 1202 | } |
| 1203 | spin_unlock_irqrestore(&dev_priv->irq_lock, flags); |
| 1204 | } |
| 1205 | |
Oscar Mateo | 4712274 | 2014-07-24 17:04:28 +0100 | [diff] [blame] | 1206 | static int gen8_emit_flush(struct intel_ringbuffer *ringbuf, |
Nick Hoath | 2107637 | 2015-01-15 13:10:38 +0000 | [diff] [blame] | 1207 | struct intel_context *ctx, |
Oscar Mateo | 4712274 | 2014-07-24 17:04:28 +0100 | [diff] [blame] | 1208 | u32 invalidate_domains, |
| 1209 | u32 unused) |
| 1210 | { |
| 1211 | struct intel_engine_cs *ring = ringbuf->ring; |
| 1212 | struct drm_device *dev = ring->dev; |
| 1213 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1214 | uint32_t cmd; |
| 1215 | int ret; |
| 1216 | |
Nick Hoath | 2107637 | 2015-01-15 13:10:38 +0000 | [diff] [blame] | 1217 | ret = intel_logical_ring_begin(ringbuf, ctx, 4); |
Oscar Mateo | 4712274 | 2014-07-24 17:04:28 +0100 | [diff] [blame] | 1218 | if (ret) |
| 1219 | return ret; |
| 1220 | |
| 1221 | cmd = MI_FLUSH_DW + 1; |
| 1222 | |
Chris Wilson | f0a1fb1 | 2015-01-22 13:42:00 +0000 | [diff] [blame] | 1223 | /* We always require a command barrier so that subsequent |
| 1224 | * commands, such as breadcrumb interrupts, are strictly ordered |
| 1225 | * wrt the contents of the write cache being flushed to memory |
| 1226 | * (and thus being coherent from the CPU). |
| 1227 | */ |
| 1228 | cmd |= MI_FLUSH_DW_STORE_INDEX | MI_FLUSH_DW_OP_STOREDW; |
| 1229 | |
| 1230 | if (invalidate_domains & I915_GEM_GPU_DOMAINS) { |
| 1231 | cmd |= MI_INVALIDATE_TLB; |
| 1232 | if (ring == &dev_priv->ring[VCS]) |
| 1233 | cmd |= MI_INVALIDATE_BSD; |
Oscar Mateo | 4712274 | 2014-07-24 17:04:28 +0100 | [diff] [blame] | 1234 | } |
| 1235 | |
| 1236 | intel_logical_ring_emit(ringbuf, cmd); |
| 1237 | intel_logical_ring_emit(ringbuf, |
| 1238 | I915_GEM_HWS_SCRATCH_ADDR | |
| 1239 | MI_FLUSH_DW_USE_GTT); |
| 1240 | intel_logical_ring_emit(ringbuf, 0); /* upper addr */ |
| 1241 | intel_logical_ring_emit(ringbuf, 0); /* value */ |
| 1242 | intel_logical_ring_advance(ringbuf); |
| 1243 | |
| 1244 | return 0; |
| 1245 | } |
| 1246 | |
| 1247 | static int gen8_emit_flush_render(struct intel_ringbuffer *ringbuf, |
Nick Hoath | 2107637 | 2015-01-15 13:10:38 +0000 | [diff] [blame] | 1248 | struct intel_context *ctx, |
Oscar Mateo | 4712274 | 2014-07-24 17:04:28 +0100 | [diff] [blame] | 1249 | u32 invalidate_domains, |
| 1250 | u32 flush_domains) |
| 1251 | { |
| 1252 | struct intel_engine_cs *ring = ringbuf->ring; |
| 1253 | u32 scratch_addr = ring->scratch.gtt_offset + 2 * CACHELINE_BYTES; |
| 1254 | u32 flags = 0; |
| 1255 | int ret; |
| 1256 | |
| 1257 | flags |= PIPE_CONTROL_CS_STALL; |
| 1258 | |
| 1259 | if (flush_domains) { |
| 1260 | flags |= PIPE_CONTROL_RENDER_TARGET_CACHE_FLUSH; |
| 1261 | flags |= PIPE_CONTROL_DEPTH_CACHE_FLUSH; |
| 1262 | } |
| 1263 | |
| 1264 | if (invalidate_domains) { |
| 1265 | flags |= PIPE_CONTROL_TLB_INVALIDATE; |
| 1266 | flags |= PIPE_CONTROL_INSTRUCTION_CACHE_INVALIDATE; |
| 1267 | flags |= PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE; |
| 1268 | flags |= PIPE_CONTROL_VF_CACHE_INVALIDATE; |
| 1269 | flags |= PIPE_CONTROL_CONST_CACHE_INVALIDATE; |
| 1270 | flags |= PIPE_CONTROL_STATE_CACHE_INVALIDATE; |
| 1271 | flags |= PIPE_CONTROL_QW_WRITE; |
| 1272 | flags |= PIPE_CONTROL_GLOBAL_GTT_IVB; |
| 1273 | } |
| 1274 | |
Nick Hoath | 2107637 | 2015-01-15 13:10:38 +0000 | [diff] [blame] | 1275 | ret = intel_logical_ring_begin(ringbuf, ctx, 6); |
Oscar Mateo | 4712274 | 2014-07-24 17:04:28 +0100 | [diff] [blame] | 1276 | if (ret) |
| 1277 | return ret; |
| 1278 | |
| 1279 | intel_logical_ring_emit(ringbuf, GFX_OP_PIPE_CONTROL(6)); |
| 1280 | intel_logical_ring_emit(ringbuf, flags); |
| 1281 | intel_logical_ring_emit(ringbuf, scratch_addr); |
| 1282 | intel_logical_ring_emit(ringbuf, 0); |
| 1283 | intel_logical_ring_emit(ringbuf, 0); |
| 1284 | intel_logical_ring_emit(ringbuf, 0); |
| 1285 | intel_logical_ring_advance(ringbuf); |
| 1286 | |
| 1287 | return 0; |
| 1288 | } |
| 1289 | |
Oscar Mateo | e94e37a | 2014-07-24 17:04:25 +0100 | [diff] [blame] | 1290 | static u32 gen8_get_seqno(struct intel_engine_cs *ring, bool lazy_coherency) |
| 1291 | { |
| 1292 | return intel_read_status_page(ring, I915_GEM_HWS_INDEX); |
| 1293 | } |
| 1294 | |
| 1295 | static void gen8_set_seqno(struct intel_engine_cs *ring, u32 seqno) |
| 1296 | { |
| 1297 | intel_write_status_page(ring, I915_GEM_HWS_INDEX, seqno); |
| 1298 | } |
| 1299 | |
Nick Hoath | 2d12955 | 2015-01-15 13:10:36 +0000 | [diff] [blame] | 1300 | static int gen8_emit_request(struct intel_ringbuffer *ringbuf, |
| 1301 | struct drm_i915_gem_request *request) |
Oscar Mateo | 4da46e1 | 2014-07-24 17:04:27 +0100 | [diff] [blame] | 1302 | { |
| 1303 | struct intel_engine_cs *ring = ringbuf->ring; |
| 1304 | u32 cmd; |
| 1305 | int ret; |
| 1306 | |
Nick Hoath | 2107637 | 2015-01-15 13:10:38 +0000 | [diff] [blame] | 1307 | ret = intel_logical_ring_begin(ringbuf, request->ctx, 6); |
Oscar Mateo | 4da46e1 | 2014-07-24 17:04:27 +0100 | [diff] [blame] | 1308 | if (ret) |
| 1309 | return ret; |
| 1310 | |
Ville Syrjälä | 8edfbb8 | 2014-11-14 18:16:56 +0200 | [diff] [blame] | 1311 | cmd = MI_STORE_DWORD_IMM_GEN4; |
Oscar Mateo | 4da46e1 | 2014-07-24 17:04:27 +0100 | [diff] [blame] | 1312 | cmd |= MI_GLOBAL_GTT; |
| 1313 | |
| 1314 | intel_logical_ring_emit(ringbuf, cmd); |
| 1315 | intel_logical_ring_emit(ringbuf, |
| 1316 | (ring->status_page.gfx_addr + |
| 1317 | (I915_GEM_HWS_INDEX << MI_STORE_DWORD_INDEX_SHIFT))); |
| 1318 | intel_logical_ring_emit(ringbuf, 0); |
John Harrison | 6259cea | 2014-11-24 18:49:29 +0000 | [diff] [blame] | 1319 | intel_logical_ring_emit(ringbuf, |
| 1320 | i915_gem_request_get_seqno(ring->outstanding_lazy_request)); |
Oscar Mateo | 4da46e1 | 2014-07-24 17:04:27 +0100 | [diff] [blame] | 1321 | intel_logical_ring_emit(ringbuf, MI_USER_INTERRUPT); |
| 1322 | intel_logical_ring_emit(ringbuf, MI_NOOP); |
Nick Hoath | 2107637 | 2015-01-15 13:10:38 +0000 | [diff] [blame] | 1323 | intel_logical_ring_advance_and_submit(ringbuf, request->ctx, request); |
Oscar Mateo | 4da46e1 | 2014-07-24 17:04:27 +0100 | [diff] [blame] | 1324 | |
| 1325 | return 0; |
| 1326 | } |
| 1327 | |
Damien Lespiau | cef437a | 2015-02-10 19:32:19 +0000 | [diff] [blame] | 1328 | static int intel_lr_context_render_state_init(struct intel_engine_cs *ring, |
| 1329 | struct intel_context *ctx) |
| 1330 | { |
| 1331 | struct intel_ringbuffer *ringbuf = ctx->engine[ring->id].ringbuf; |
| 1332 | struct render_state so; |
| 1333 | struct drm_i915_file_private *file_priv = ctx->file_priv; |
| 1334 | struct drm_file *file = file_priv ? file_priv->file : NULL; |
| 1335 | int ret; |
| 1336 | |
| 1337 | ret = i915_gem_render_state_prepare(ring, &so); |
| 1338 | if (ret) |
| 1339 | return ret; |
| 1340 | |
| 1341 | if (so.rodata == NULL) |
| 1342 | return 0; |
| 1343 | |
| 1344 | ret = ring->emit_bb_start(ringbuf, |
| 1345 | ctx, |
| 1346 | so.ggtt_offset, |
| 1347 | I915_DISPATCH_SECURE); |
| 1348 | if (ret) |
| 1349 | goto out; |
| 1350 | |
| 1351 | i915_vma_move_to_active(i915_gem_obj_to_ggtt(so.obj), ring); |
| 1352 | |
| 1353 | ret = __i915_add_request(ring, file, so.obj); |
| 1354 | /* intel_logical_ring_add_request moves object to inactive if it |
| 1355 | * fails */ |
| 1356 | out: |
| 1357 | i915_gem_render_state_fini(&so); |
| 1358 | return ret; |
| 1359 | } |
| 1360 | |
Thomas Daniel | e7778be | 2014-12-02 12:50:48 +0000 | [diff] [blame] | 1361 | static int gen8_init_rcs_context(struct intel_engine_cs *ring, |
| 1362 | struct intel_context *ctx) |
| 1363 | { |
| 1364 | int ret; |
| 1365 | |
| 1366 | ret = intel_logical_ring_workarounds_emit(ring, ctx); |
| 1367 | if (ret) |
| 1368 | return ret; |
| 1369 | |
| 1370 | return intel_lr_context_render_state_init(ring, ctx); |
| 1371 | } |
| 1372 | |
Oscar Mateo | 73e4d07 | 2014-07-24 17:04:48 +0100 | [diff] [blame] | 1373 | /** |
| 1374 | * intel_logical_ring_cleanup() - deallocate the Engine Command Streamer |
| 1375 | * |
| 1376 | * @ring: Engine Command Streamer. |
| 1377 | * |
| 1378 | */ |
Oscar Mateo | 454afeb | 2014-07-24 17:04:22 +0100 | [diff] [blame] | 1379 | void intel_logical_ring_cleanup(struct intel_engine_cs *ring) |
| 1380 | { |
John Harrison | 6402c33 | 2014-10-31 12:00:26 +0000 | [diff] [blame] | 1381 | struct drm_i915_private *dev_priv; |
Oscar Mateo | 9832b9d | 2014-07-24 17:04:30 +0100 | [diff] [blame] | 1382 | |
Oscar Mateo | 48d8238 | 2014-07-24 17:04:23 +0100 | [diff] [blame] | 1383 | if (!intel_ring_initialized(ring)) |
| 1384 | return; |
| 1385 | |
John Harrison | 6402c33 | 2014-10-31 12:00:26 +0000 | [diff] [blame] | 1386 | dev_priv = ring->dev->dev_private; |
| 1387 | |
Oscar Mateo | 9832b9d | 2014-07-24 17:04:30 +0100 | [diff] [blame] | 1388 | intel_logical_ring_stop(ring); |
| 1389 | WARN_ON((I915_READ_MODE(ring) & MODE_IDLE) == 0); |
John Harrison | 6259cea | 2014-11-24 18:49:29 +0000 | [diff] [blame] | 1390 | i915_gem_request_assign(&ring->outstanding_lazy_request, NULL); |
Oscar Mateo | 48d8238 | 2014-07-24 17:04:23 +0100 | [diff] [blame] | 1391 | |
| 1392 | if (ring->cleanup) |
| 1393 | ring->cleanup(ring); |
| 1394 | |
| 1395 | i915_cmd_parser_fini_ring(ring); |
Chris Wilson | 06fbca7 | 2015-04-07 16:20:36 +0100 | [diff] [blame] | 1396 | i915_gem_batch_pool_fini(&ring->batch_pool); |
Oscar Mateo | 48d8238 | 2014-07-24 17:04:23 +0100 | [diff] [blame] | 1397 | |
| 1398 | if (ring->status_page.obj) { |
| 1399 | kunmap(sg_page(ring->status_page.obj->pages->sgl)); |
| 1400 | ring->status_page.obj = NULL; |
| 1401 | } |
Oscar Mateo | 454afeb | 2014-07-24 17:04:22 +0100 | [diff] [blame] | 1402 | } |
| 1403 | |
| 1404 | static int logical_ring_init(struct drm_device *dev, struct intel_engine_cs *ring) |
| 1405 | { |
Oscar Mateo | 48d8238 | 2014-07-24 17:04:23 +0100 | [diff] [blame] | 1406 | int ret; |
Oscar Mateo | 48d8238 | 2014-07-24 17:04:23 +0100 | [diff] [blame] | 1407 | |
| 1408 | /* Intentionally left blank. */ |
| 1409 | ring->buffer = NULL; |
| 1410 | |
| 1411 | ring->dev = dev; |
| 1412 | INIT_LIST_HEAD(&ring->active_list); |
| 1413 | INIT_LIST_HEAD(&ring->request_list); |
Chris Wilson | 06fbca7 | 2015-04-07 16:20:36 +0100 | [diff] [blame] | 1414 | i915_gem_batch_pool_init(dev, &ring->batch_pool); |
Oscar Mateo | 48d8238 | 2014-07-24 17:04:23 +0100 | [diff] [blame] | 1415 | init_waitqueue_head(&ring->irq_queue); |
| 1416 | |
Michel Thierry | acdd884 | 2014-07-24 17:04:38 +0100 | [diff] [blame] | 1417 | INIT_LIST_HEAD(&ring->execlist_queue); |
Thomas Daniel | c86ee3a9 | 2014-11-13 10:27:05 +0000 | [diff] [blame] | 1418 | INIT_LIST_HEAD(&ring->execlist_retired_req_list); |
Michel Thierry | acdd884 | 2014-07-24 17:04:38 +0100 | [diff] [blame] | 1419 | spin_lock_init(&ring->execlist_lock); |
| 1420 | |
Oscar Mateo | 48d8238 | 2014-07-24 17:04:23 +0100 | [diff] [blame] | 1421 | ret = i915_cmd_parser_init_ring(ring); |
| 1422 | if (ret) |
| 1423 | return ret; |
| 1424 | |
Oscar Mateo | 564ddb2 | 2014-08-21 11:40:54 +0100 | [diff] [blame] | 1425 | ret = intel_lr_context_deferred_create(ring->default_context, ring); |
| 1426 | |
| 1427 | return ret; |
Oscar Mateo | 454afeb | 2014-07-24 17:04:22 +0100 | [diff] [blame] | 1428 | } |
| 1429 | |
| 1430 | static int logical_render_ring_init(struct drm_device *dev) |
| 1431 | { |
| 1432 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1433 | struct intel_engine_cs *ring = &dev_priv->ring[RCS]; |
Daniel Vetter | 99be1df | 2014-11-20 00:33:06 +0100 | [diff] [blame] | 1434 | int ret; |
Oscar Mateo | 454afeb | 2014-07-24 17:04:22 +0100 | [diff] [blame] | 1435 | |
| 1436 | ring->name = "render ring"; |
| 1437 | ring->id = RCS; |
| 1438 | ring->mmio_base = RENDER_RING_BASE; |
| 1439 | ring->irq_enable_mask = |
| 1440 | GT_RENDER_USER_INTERRUPT << GEN8_RCS_IRQ_SHIFT; |
Oscar Mateo | 73d477f | 2014-07-24 17:04:31 +0100 | [diff] [blame] | 1441 | ring->irq_keep_mask = |
| 1442 | GT_CONTEXT_SWITCH_INTERRUPT << GEN8_RCS_IRQ_SHIFT; |
| 1443 | if (HAS_L3_DPF(dev)) |
| 1444 | ring->irq_keep_mask |= GT_RENDER_L3_PARITY_ERROR_INTERRUPT; |
Oscar Mateo | 454afeb | 2014-07-24 17:04:22 +0100 | [diff] [blame] | 1445 | |
Damien Lespiau | 82ef822 | 2015-02-09 19:33:08 +0000 | [diff] [blame] | 1446 | if (INTEL_INFO(dev)->gen >= 9) |
| 1447 | ring->init_hw = gen9_init_render_ring; |
| 1448 | else |
| 1449 | ring->init_hw = gen8_init_render_ring; |
Thomas Daniel | e7778be | 2014-12-02 12:50:48 +0000 | [diff] [blame] | 1450 | ring->init_context = gen8_init_rcs_context; |
Oscar Mateo | 9b1136d | 2014-07-24 17:04:24 +0100 | [diff] [blame] | 1451 | ring->cleanup = intel_fini_pipe_control; |
Oscar Mateo | e94e37a | 2014-07-24 17:04:25 +0100 | [diff] [blame] | 1452 | ring->get_seqno = gen8_get_seqno; |
| 1453 | ring->set_seqno = gen8_set_seqno; |
Oscar Mateo | 4da46e1 | 2014-07-24 17:04:27 +0100 | [diff] [blame] | 1454 | ring->emit_request = gen8_emit_request; |
Oscar Mateo | 4712274 | 2014-07-24 17:04:28 +0100 | [diff] [blame] | 1455 | ring->emit_flush = gen8_emit_flush_render; |
Oscar Mateo | 73d477f | 2014-07-24 17:04:31 +0100 | [diff] [blame] | 1456 | ring->irq_get = gen8_logical_ring_get_irq; |
| 1457 | ring->irq_put = gen8_logical_ring_put_irq; |
Oscar Mateo | 1564858 | 2014-07-24 17:04:32 +0100 | [diff] [blame] | 1458 | ring->emit_bb_start = gen8_emit_bb_start; |
Oscar Mateo | 9b1136d | 2014-07-24 17:04:24 +0100 | [diff] [blame] | 1459 | |
Daniel Vetter | 99be1df | 2014-11-20 00:33:06 +0100 | [diff] [blame] | 1460 | ring->dev = dev; |
| 1461 | ret = logical_ring_init(dev, ring); |
| 1462 | if (ret) |
| 1463 | return ret; |
| 1464 | |
| 1465 | return intel_init_pipe_control(ring); |
Oscar Mateo | 454afeb | 2014-07-24 17:04:22 +0100 | [diff] [blame] | 1466 | } |
| 1467 | |
| 1468 | static int logical_bsd_ring_init(struct drm_device *dev) |
| 1469 | { |
| 1470 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1471 | struct intel_engine_cs *ring = &dev_priv->ring[VCS]; |
| 1472 | |
| 1473 | ring->name = "bsd ring"; |
| 1474 | ring->id = VCS; |
| 1475 | ring->mmio_base = GEN6_BSD_RING_BASE; |
| 1476 | ring->irq_enable_mask = |
| 1477 | GT_RENDER_USER_INTERRUPT << GEN8_VCS1_IRQ_SHIFT; |
Oscar Mateo | 73d477f | 2014-07-24 17:04:31 +0100 | [diff] [blame] | 1478 | ring->irq_keep_mask = |
| 1479 | GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VCS1_IRQ_SHIFT; |
Oscar Mateo | 454afeb | 2014-07-24 17:04:22 +0100 | [diff] [blame] | 1480 | |
Daniel Vetter | ecfe00d | 2014-11-20 00:33:04 +0100 | [diff] [blame] | 1481 | ring->init_hw = gen8_init_common_ring; |
Oscar Mateo | e94e37a | 2014-07-24 17:04:25 +0100 | [diff] [blame] | 1482 | ring->get_seqno = gen8_get_seqno; |
| 1483 | ring->set_seqno = gen8_set_seqno; |
Oscar Mateo | 4da46e1 | 2014-07-24 17:04:27 +0100 | [diff] [blame] | 1484 | ring->emit_request = gen8_emit_request; |
Oscar Mateo | 4712274 | 2014-07-24 17:04:28 +0100 | [diff] [blame] | 1485 | ring->emit_flush = gen8_emit_flush; |
Oscar Mateo | 73d477f | 2014-07-24 17:04:31 +0100 | [diff] [blame] | 1486 | ring->irq_get = gen8_logical_ring_get_irq; |
| 1487 | ring->irq_put = gen8_logical_ring_put_irq; |
Oscar Mateo | 1564858 | 2014-07-24 17:04:32 +0100 | [diff] [blame] | 1488 | ring->emit_bb_start = gen8_emit_bb_start; |
Oscar Mateo | 9b1136d | 2014-07-24 17:04:24 +0100 | [diff] [blame] | 1489 | |
Oscar Mateo | 454afeb | 2014-07-24 17:04:22 +0100 | [diff] [blame] | 1490 | return logical_ring_init(dev, ring); |
| 1491 | } |
| 1492 | |
| 1493 | static int logical_bsd2_ring_init(struct drm_device *dev) |
| 1494 | { |
| 1495 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1496 | struct intel_engine_cs *ring = &dev_priv->ring[VCS2]; |
| 1497 | |
| 1498 | ring->name = "bds2 ring"; |
| 1499 | ring->id = VCS2; |
| 1500 | ring->mmio_base = GEN8_BSD2_RING_BASE; |
| 1501 | ring->irq_enable_mask = |
| 1502 | GT_RENDER_USER_INTERRUPT << GEN8_VCS2_IRQ_SHIFT; |
Oscar Mateo | 73d477f | 2014-07-24 17:04:31 +0100 | [diff] [blame] | 1503 | ring->irq_keep_mask = |
| 1504 | GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VCS2_IRQ_SHIFT; |
Oscar Mateo | 454afeb | 2014-07-24 17:04:22 +0100 | [diff] [blame] | 1505 | |
Daniel Vetter | ecfe00d | 2014-11-20 00:33:04 +0100 | [diff] [blame] | 1506 | ring->init_hw = gen8_init_common_ring; |
Oscar Mateo | e94e37a | 2014-07-24 17:04:25 +0100 | [diff] [blame] | 1507 | ring->get_seqno = gen8_get_seqno; |
| 1508 | ring->set_seqno = gen8_set_seqno; |
Oscar Mateo | 4da46e1 | 2014-07-24 17:04:27 +0100 | [diff] [blame] | 1509 | ring->emit_request = gen8_emit_request; |
Oscar Mateo | 4712274 | 2014-07-24 17:04:28 +0100 | [diff] [blame] | 1510 | ring->emit_flush = gen8_emit_flush; |
Oscar Mateo | 73d477f | 2014-07-24 17:04:31 +0100 | [diff] [blame] | 1511 | ring->irq_get = gen8_logical_ring_get_irq; |
| 1512 | ring->irq_put = gen8_logical_ring_put_irq; |
Oscar Mateo | 1564858 | 2014-07-24 17:04:32 +0100 | [diff] [blame] | 1513 | ring->emit_bb_start = gen8_emit_bb_start; |
Oscar Mateo | 9b1136d | 2014-07-24 17:04:24 +0100 | [diff] [blame] | 1514 | |
Oscar Mateo | 454afeb | 2014-07-24 17:04:22 +0100 | [diff] [blame] | 1515 | return logical_ring_init(dev, ring); |
| 1516 | } |
| 1517 | |
| 1518 | static int logical_blt_ring_init(struct drm_device *dev) |
| 1519 | { |
| 1520 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1521 | struct intel_engine_cs *ring = &dev_priv->ring[BCS]; |
| 1522 | |
| 1523 | ring->name = "blitter ring"; |
| 1524 | ring->id = BCS; |
| 1525 | ring->mmio_base = BLT_RING_BASE; |
| 1526 | ring->irq_enable_mask = |
| 1527 | GT_RENDER_USER_INTERRUPT << GEN8_BCS_IRQ_SHIFT; |
Oscar Mateo | 73d477f | 2014-07-24 17:04:31 +0100 | [diff] [blame] | 1528 | ring->irq_keep_mask = |
| 1529 | GT_CONTEXT_SWITCH_INTERRUPT << GEN8_BCS_IRQ_SHIFT; |
Oscar Mateo | 454afeb | 2014-07-24 17:04:22 +0100 | [diff] [blame] | 1530 | |
Daniel Vetter | ecfe00d | 2014-11-20 00:33:04 +0100 | [diff] [blame] | 1531 | ring->init_hw = gen8_init_common_ring; |
Oscar Mateo | e94e37a | 2014-07-24 17:04:25 +0100 | [diff] [blame] | 1532 | ring->get_seqno = gen8_get_seqno; |
| 1533 | ring->set_seqno = gen8_set_seqno; |
Oscar Mateo | 4da46e1 | 2014-07-24 17:04:27 +0100 | [diff] [blame] | 1534 | ring->emit_request = gen8_emit_request; |
Oscar Mateo | 4712274 | 2014-07-24 17:04:28 +0100 | [diff] [blame] | 1535 | ring->emit_flush = gen8_emit_flush; |
Oscar Mateo | 73d477f | 2014-07-24 17:04:31 +0100 | [diff] [blame] | 1536 | ring->irq_get = gen8_logical_ring_get_irq; |
| 1537 | ring->irq_put = gen8_logical_ring_put_irq; |
Oscar Mateo | 1564858 | 2014-07-24 17:04:32 +0100 | [diff] [blame] | 1538 | ring->emit_bb_start = gen8_emit_bb_start; |
Oscar Mateo | 9b1136d | 2014-07-24 17:04:24 +0100 | [diff] [blame] | 1539 | |
Oscar Mateo | 454afeb | 2014-07-24 17:04:22 +0100 | [diff] [blame] | 1540 | return logical_ring_init(dev, ring); |
| 1541 | } |
| 1542 | |
| 1543 | static int logical_vebox_ring_init(struct drm_device *dev) |
| 1544 | { |
| 1545 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1546 | struct intel_engine_cs *ring = &dev_priv->ring[VECS]; |
| 1547 | |
| 1548 | ring->name = "video enhancement ring"; |
| 1549 | ring->id = VECS; |
| 1550 | ring->mmio_base = VEBOX_RING_BASE; |
| 1551 | ring->irq_enable_mask = |
| 1552 | GT_RENDER_USER_INTERRUPT << GEN8_VECS_IRQ_SHIFT; |
Oscar Mateo | 73d477f | 2014-07-24 17:04:31 +0100 | [diff] [blame] | 1553 | ring->irq_keep_mask = |
| 1554 | GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VECS_IRQ_SHIFT; |
Oscar Mateo | 454afeb | 2014-07-24 17:04:22 +0100 | [diff] [blame] | 1555 | |
Daniel Vetter | ecfe00d | 2014-11-20 00:33:04 +0100 | [diff] [blame] | 1556 | ring->init_hw = gen8_init_common_ring; |
Oscar Mateo | e94e37a | 2014-07-24 17:04:25 +0100 | [diff] [blame] | 1557 | ring->get_seqno = gen8_get_seqno; |
| 1558 | ring->set_seqno = gen8_set_seqno; |
Oscar Mateo | 4da46e1 | 2014-07-24 17:04:27 +0100 | [diff] [blame] | 1559 | ring->emit_request = gen8_emit_request; |
Oscar Mateo | 4712274 | 2014-07-24 17:04:28 +0100 | [diff] [blame] | 1560 | ring->emit_flush = gen8_emit_flush; |
Oscar Mateo | 73d477f | 2014-07-24 17:04:31 +0100 | [diff] [blame] | 1561 | ring->irq_get = gen8_logical_ring_get_irq; |
| 1562 | ring->irq_put = gen8_logical_ring_put_irq; |
Oscar Mateo | 1564858 | 2014-07-24 17:04:32 +0100 | [diff] [blame] | 1563 | ring->emit_bb_start = gen8_emit_bb_start; |
Oscar Mateo | 9b1136d | 2014-07-24 17:04:24 +0100 | [diff] [blame] | 1564 | |
Oscar Mateo | 454afeb | 2014-07-24 17:04:22 +0100 | [diff] [blame] | 1565 | return logical_ring_init(dev, ring); |
| 1566 | } |
| 1567 | |
Oscar Mateo | 73e4d07 | 2014-07-24 17:04:48 +0100 | [diff] [blame] | 1568 | /** |
| 1569 | * intel_logical_rings_init() - allocate, populate and init the Engine Command Streamers |
| 1570 | * @dev: DRM device. |
| 1571 | * |
| 1572 | * This function inits the engines for an Execlists submission style (the equivalent in the |
| 1573 | * legacy ringbuffer submission world would be i915_gem_init_rings). It does it only for |
| 1574 | * those engines that are present in the hardware. |
| 1575 | * |
| 1576 | * Return: non-zero if the initialization failed. |
| 1577 | */ |
Oscar Mateo | 454afeb | 2014-07-24 17:04:22 +0100 | [diff] [blame] | 1578 | int intel_logical_rings_init(struct drm_device *dev) |
| 1579 | { |
| 1580 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1581 | int ret; |
| 1582 | |
| 1583 | ret = logical_render_ring_init(dev); |
| 1584 | if (ret) |
| 1585 | return ret; |
| 1586 | |
| 1587 | if (HAS_BSD(dev)) { |
| 1588 | ret = logical_bsd_ring_init(dev); |
| 1589 | if (ret) |
| 1590 | goto cleanup_render_ring; |
| 1591 | } |
| 1592 | |
| 1593 | if (HAS_BLT(dev)) { |
| 1594 | ret = logical_blt_ring_init(dev); |
| 1595 | if (ret) |
| 1596 | goto cleanup_bsd_ring; |
| 1597 | } |
| 1598 | |
| 1599 | if (HAS_VEBOX(dev)) { |
| 1600 | ret = logical_vebox_ring_init(dev); |
| 1601 | if (ret) |
| 1602 | goto cleanup_blt_ring; |
| 1603 | } |
| 1604 | |
| 1605 | if (HAS_BSD2(dev)) { |
| 1606 | ret = logical_bsd2_ring_init(dev); |
| 1607 | if (ret) |
| 1608 | goto cleanup_vebox_ring; |
| 1609 | } |
| 1610 | |
| 1611 | ret = i915_gem_set_seqno(dev, ((u32)~0 - 0x1000)); |
| 1612 | if (ret) |
| 1613 | goto cleanup_bsd2_ring; |
| 1614 | |
| 1615 | return 0; |
| 1616 | |
| 1617 | cleanup_bsd2_ring: |
| 1618 | intel_logical_ring_cleanup(&dev_priv->ring[VCS2]); |
| 1619 | cleanup_vebox_ring: |
| 1620 | intel_logical_ring_cleanup(&dev_priv->ring[VECS]); |
| 1621 | cleanup_blt_ring: |
| 1622 | intel_logical_ring_cleanup(&dev_priv->ring[BCS]); |
| 1623 | cleanup_bsd_ring: |
| 1624 | intel_logical_ring_cleanup(&dev_priv->ring[VCS]); |
| 1625 | cleanup_render_ring: |
| 1626 | intel_logical_ring_cleanup(&dev_priv->ring[RCS]); |
| 1627 | |
| 1628 | return ret; |
| 1629 | } |
| 1630 | |
Jeff McGee | 0cea650 | 2015-02-13 10:27:56 -0600 | [diff] [blame] | 1631 | static u32 |
| 1632 | make_rpcs(struct drm_device *dev) |
| 1633 | { |
| 1634 | u32 rpcs = 0; |
| 1635 | |
| 1636 | /* |
| 1637 | * No explicit RPCS request is needed to ensure full |
| 1638 | * slice/subslice/EU enablement prior to Gen9. |
| 1639 | */ |
| 1640 | if (INTEL_INFO(dev)->gen < 9) |
| 1641 | return 0; |
| 1642 | |
| 1643 | /* |
| 1644 | * Starting in Gen9, render power gating can leave |
| 1645 | * slice/subslice/EU in a partially enabled state. We |
| 1646 | * must make an explicit request through RPCS for full |
| 1647 | * enablement. |
| 1648 | */ |
| 1649 | if (INTEL_INFO(dev)->has_slice_pg) { |
| 1650 | rpcs |= GEN8_RPCS_S_CNT_ENABLE; |
| 1651 | rpcs |= INTEL_INFO(dev)->slice_total << |
| 1652 | GEN8_RPCS_S_CNT_SHIFT; |
| 1653 | rpcs |= GEN8_RPCS_ENABLE; |
| 1654 | } |
| 1655 | |
| 1656 | if (INTEL_INFO(dev)->has_subslice_pg) { |
| 1657 | rpcs |= GEN8_RPCS_SS_CNT_ENABLE; |
| 1658 | rpcs |= INTEL_INFO(dev)->subslice_per_slice << |
| 1659 | GEN8_RPCS_SS_CNT_SHIFT; |
| 1660 | rpcs |= GEN8_RPCS_ENABLE; |
| 1661 | } |
| 1662 | |
| 1663 | if (INTEL_INFO(dev)->has_eu_pg) { |
| 1664 | rpcs |= INTEL_INFO(dev)->eu_per_subslice << |
| 1665 | GEN8_RPCS_EU_MIN_SHIFT; |
| 1666 | rpcs |= INTEL_INFO(dev)->eu_per_subslice << |
| 1667 | GEN8_RPCS_EU_MAX_SHIFT; |
| 1668 | rpcs |= GEN8_RPCS_ENABLE; |
| 1669 | } |
| 1670 | |
| 1671 | return rpcs; |
| 1672 | } |
| 1673 | |
Oscar Mateo | 8670d6f | 2014-07-24 17:04:17 +0100 | [diff] [blame] | 1674 | static int |
| 1675 | populate_lr_context(struct intel_context *ctx, struct drm_i915_gem_object *ctx_obj, |
| 1676 | struct intel_engine_cs *ring, struct intel_ringbuffer *ringbuf) |
| 1677 | { |
Thomas Daniel | 2d96553 | 2014-08-19 10:13:36 +0100 | [diff] [blame] | 1678 | struct drm_device *dev = ring->dev; |
| 1679 | struct drm_i915_private *dev_priv = dev->dev_private; |
Daniel Vetter | ae6c480 | 2014-08-06 15:04:53 +0200 | [diff] [blame] | 1680 | struct i915_hw_ppgtt *ppgtt = ctx->ppgtt; |
Oscar Mateo | 8670d6f | 2014-07-24 17:04:17 +0100 | [diff] [blame] | 1681 | struct page *page; |
| 1682 | uint32_t *reg_state; |
| 1683 | int ret; |
| 1684 | |
Thomas Daniel | 2d96553 | 2014-08-19 10:13:36 +0100 | [diff] [blame] | 1685 | if (!ppgtt) |
| 1686 | ppgtt = dev_priv->mm.aliasing_ppgtt; |
| 1687 | |
Oscar Mateo | 8670d6f | 2014-07-24 17:04:17 +0100 | [diff] [blame] | 1688 | ret = i915_gem_object_set_to_cpu_domain(ctx_obj, true); |
| 1689 | if (ret) { |
| 1690 | DRM_DEBUG_DRIVER("Could not set to CPU domain\n"); |
| 1691 | return ret; |
| 1692 | } |
| 1693 | |
| 1694 | ret = i915_gem_object_get_pages(ctx_obj); |
| 1695 | if (ret) { |
| 1696 | DRM_DEBUG_DRIVER("Could not get object pages\n"); |
| 1697 | return ret; |
| 1698 | } |
| 1699 | |
| 1700 | i915_gem_object_pin_pages(ctx_obj); |
| 1701 | |
| 1702 | /* The second page of the context object contains some fields which must |
| 1703 | * be set up prior to the first execution. */ |
| 1704 | page = i915_gem_object_get_page(ctx_obj, 1); |
| 1705 | reg_state = kmap_atomic(page); |
| 1706 | |
| 1707 | /* A context is actually a big batch buffer with several MI_LOAD_REGISTER_IMM |
| 1708 | * commands followed by (reg, value) pairs. The values we are setting here are |
| 1709 | * only for the first context restore: on a subsequent save, the GPU will |
| 1710 | * recreate this batchbuffer with new values (including all the missing |
| 1711 | * MI_LOAD_REGISTER_IMM commands that we are not initializing here). */ |
| 1712 | if (ring->id == RCS) |
| 1713 | reg_state[CTX_LRI_HEADER_0] = MI_LOAD_REGISTER_IMM(14); |
| 1714 | else |
| 1715 | reg_state[CTX_LRI_HEADER_0] = MI_LOAD_REGISTER_IMM(11); |
| 1716 | reg_state[CTX_LRI_HEADER_0] |= MI_LRI_FORCE_POSTED; |
| 1717 | reg_state[CTX_CONTEXT_CONTROL] = RING_CONTEXT_CONTROL(ring); |
| 1718 | reg_state[CTX_CONTEXT_CONTROL+1] = |
Zhi Wang | 5baa22c5 | 2015-02-10 17:11:36 +0800 | [diff] [blame] | 1719 | _MASKED_BIT_ENABLE(CTX_CTRL_INHIBIT_SYN_CTX_SWITCH | |
| 1720 | CTX_CTRL_ENGINE_CTX_RESTORE_INHIBIT); |
Oscar Mateo | 8670d6f | 2014-07-24 17:04:17 +0100 | [diff] [blame] | 1721 | reg_state[CTX_RING_HEAD] = RING_HEAD(ring->mmio_base); |
| 1722 | reg_state[CTX_RING_HEAD+1] = 0; |
| 1723 | reg_state[CTX_RING_TAIL] = RING_TAIL(ring->mmio_base); |
| 1724 | reg_state[CTX_RING_TAIL+1] = 0; |
| 1725 | reg_state[CTX_RING_BUFFER_START] = RING_START(ring->mmio_base); |
Thomas Daniel | 7ba717c | 2014-11-13 10:28:56 +0000 | [diff] [blame] | 1726 | /* Ring buffer start address is not known until the buffer is pinned. |
| 1727 | * It is written to the context image in execlists_update_context() |
| 1728 | */ |
Oscar Mateo | 8670d6f | 2014-07-24 17:04:17 +0100 | [diff] [blame] | 1729 | reg_state[CTX_RING_BUFFER_CONTROL] = RING_CTL(ring->mmio_base); |
| 1730 | reg_state[CTX_RING_BUFFER_CONTROL+1] = |
| 1731 | ((ringbuf->size - PAGE_SIZE) & RING_NR_PAGES) | RING_VALID; |
| 1732 | reg_state[CTX_BB_HEAD_U] = ring->mmio_base + 0x168; |
| 1733 | reg_state[CTX_BB_HEAD_U+1] = 0; |
| 1734 | reg_state[CTX_BB_HEAD_L] = ring->mmio_base + 0x140; |
| 1735 | reg_state[CTX_BB_HEAD_L+1] = 0; |
| 1736 | reg_state[CTX_BB_STATE] = ring->mmio_base + 0x110; |
| 1737 | reg_state[CTX_BB_STATE+1] = (1<<5); |
| 1738 | reg_state[CTX_SECOND_BB_HEAD_U] = ring->mmio_base + 0x11c; |
| 1739 | reg_state[CTX_SECOND_BB_HEAD_U+1] = 0; |
| 1740 | reg_state[CTX_SECOND_BB_HEAD_L] = ring->mmio_base + 0x114; |
| 1741 | reg_state[CTX_SECOND_BB_HEAD_L+1] = 0; |
| 1742 | reg_state[CTX_SECOND_BB_STATE] = ring->mmio_base + 0x118; |
| 1743 | reg_state[CTX_SECOND_BB_STATE+1] = 0; |
| 1744 | if (ring->id == RCS) { |
| 1745 | /* TODO: according to BSpec, the register state context |
| 1746 | * for CHV does not have these. OTOH, these registers do |
| 1747 | * exist in CHV. I'm waiting for a clarification */ |
| 1748 | reg_state[CTX_BB_PER_CTX_PTR] = ring->mmio_base + 0x1c0; |
| 1749 | reg_state[CTX_BB_PER_CTX_PTR+1] = 0; |
| 1750 | reg_state[CTX_RCS_INDIRECT_CTX] = ring->mmio_base + 0x1c4; |
| 1751 | reg_state[CTX_RCS_INDIRECT_CTX+1] = 0; |
| 1752 | reg_state[CTX_RCS_INDIRECT_CTX_OFFSET] = ring->mmio_base + 0x1c8; |
| 1753 | reg_state[CTX_RCS_INDIRECT_CTX_OFFSET+1] = 0; |
| 1754 | } |
| 1755 | reg_state[CTX_LRI_HEADER_1] = MI_LOAD_REGISTER_IMM(9); |
| 1756 | reg_state[CTX_LRI_HEADER_1] |= MI_LRI_FORCE_POSTED; |
| 1757 | reg_state[CTX_CTX_TIMESTAMP] = ring->mmio_base + 0x3a8; |
| 1758 | reg_state[CTX_CTX_TIMESTAMP+1] = 0; |
| 1759 | reg_state[CTX_PDP3_UDW] = GEN8_RING_PDP_UDW(ring, 3); |
| 1760 | reg_state[CTX_PDP3_LDW] = GEN8_RING_PDP_LDW(ring, 3); |
| 1761 | reg_state[CTX_PDP2_UDW] = GEN8_RING_PDP_UDW(ring, 2); |
| 1762 | reg_state[CTX_PDP2_LDW] = GEN8_RING_PDP_LDW(ring, 2); |
| 1763 | reg_state[CTX_PDP1_UDW] = GEN8_RING_PDP_UDW(ring, 1); |
| 1764 | reg_state[CTX_PDP1_LDW] = GEN8_RING_PDP_LDW(ring, 1); |
| 1765 | reg_state[CTX_PDP0_UDW] = GEN8_RING_PDP_UDW(ring, 0); |
| 1766 | reg_state[CTX_PDP0_LDW] = GEN8_RING_PDP_LDW(ring, 0); |
Michel Thierry | e5815a2 | 2015-04-08 12:13:32 +0100 | [diff] [blame] | 1767 | /* XXX: Systems with less than 4GB of memory do not have |
| 1768 | * all PDPs. Proper PDP tracking will be added in a |
| 1769 | * subsequent patch. |
| 1770 | */ |
| 1771 | ASSIGN_CTX_PDP(ppgtt, reg_state, 3); |
| 1772 | ASSIGN_CTX_PDP(ppgtt, reg_state, 2); |
| 1773 | ASSIGN_CTX_PDP(ppgtt, reg_state, 1); |
| 1774 | ASSIGN_CTX_PDP(ppgtt, reg_state, 0); |
Oscar Mateo | 8670d6f | 2014-07-24 17:04:17 +0100 | [diff] [blame] | 1775 | if (ring->id == RCS) { |
| 1776 | reg_state[CTX_LRI_HEADER_2] = MI_LOAD_REGISTER_IMM(1); |
Jeff McGee | 0cea650 | 2015-02-13 10:27:56 -0600 | [diff] [blame] | 1777 | reg_state[CTX_R_PWR_CLK_STATE] = GEN8_R_PWR_CLK_STATE; |
| 1778 | reg_state[CTX_R_PWR_CLK_STATE+1] = make_rpcs(dev); |
Oscar Mateo | 8670d6f | 2014-07-24 17:04:17 +0100 | [diff] [blame] | 1779 | } |
| 1780 | |
| 1781 | kunmap_atomic(reg_state); |
| 1782 | |
| 1783 | ctx_obj->dirty = 1; |
| 1784 | set_page_dirty(page); |
| 1785 | i915_gem_object_unpin_pages(ctx_obj); |
| 1786 | |
| 1787 | return 0; |
| 1788 | } |
| 1789 | |
Oscar Mateo | 73e4d07 | 2014-07-24 17:04:48 +0100 | [diff] [blame] | 1790 | /** |
| 1791 | * intel_lr_context_free() - free the LRC specific bits of a context |
| 1792 | * @ctx: the LR context to free. |
| 1793 | * |
| 1794 | * The real context freeing is done in i915_gem_context_free: this only |
| 1795 | * takes care of the bits that are LRC related: the per-engine backing |
| 1796 | * objects and the logical ringbuffer. |
| 1797 | */ |
Oscar Mateo | ede7d42 | 2014-07-24 17:04:12 +0100 | [diff] [blame] | 1798 | void intel_lr_context_free(struct intel_context *ctx) |
| 1799 | { |
Oscar Mateo | 8c857917 | 2014-07-24 17:04:14 +0100 | [diff] [blame] | 1800 | int i; |
| 1801 | |
| 1802 | for (i = 0; i < I915_NUM_RINGS; i++) { |
| 1803 | struct drm_i915_gem_object *ctx_obj = ctx->engine[i].state; |
Oscar Mateo | 84c2377 | 2014-07-24 17:04:15 +0100 | [diff] [blame] | 1804 | |
Oscar Mateo | 8c857917 | 2014-07-24 17:04:14 +0100 | [diff] [blame] | 1805 | if (ctx_obj) { |
Oscar Mateo | dcb4c12 | 2014-11-13 10:28:10 +0000 | [diff] [blame] | 1806 | struct intel_ringbuffer *ringbuf = |
| 1807 | ctx->engine[i].ringbuf; |
| 1808 | struct intel_engine_cs *ring = ringbuf->ring; |
| 1809 | |
Thomas Daniel | 7ba717c | 2014-11-13 10:28:56 +0000 | [diff] [blame] | 1810 | if (ctx == ring->default_context) { |
| 1811 | intel_unpin_ringbuffer_obj(ringbuf); |
| 1812 | i915_gem_object_ggtt_unpin(ctx_obj); |
| 1813 | } |
Mika Kuoppala | a7cbede | 2015-01-13 11:32:25 +0200 | [diff] [blame] | 1814 | WARN_ON(ctx->engine[ring->id].pin_count); |
Oscar Mateo | 84c2377 | 2014-07-24 17:04:15 +0100 | [diff] [blame] | 1815 | intel_destroy_ringbuffer_obj(ringbuf); |
| 1816 | kfree(ringbuf); |
Oscar Mateo | 8c857917 | 2014-07-24 17:04:14 +0100 | [diff] [blame] | 1817 | drm_gem_object_unreference(&ctx_obj->base); |
| 1818 | } |
| 1819 | } |
| 1820 | } |
| 1821 | |
| 1822 | static uint32_t get_lr_context_size(struct intel_engine_cs *ring) |
| 1823 | { |
| 1824 | int ret = 0; |
| 1825 | |
Michael H. Nguyen | 468c681 | 2014-11-13 17:51:49 +0000 | [diff] [blame] | 1826 | WARN_ON(INTEL_INFO(ring->dev)->gen < 8); |
Oscar Mateo | 8c857917 | 2014-07-24 17:04:14 +0100 | [diff] [blame] | 1827 | |
| 1828 | switch (ring->id) { |
| 1829 | case RCS: |
Michael H. Nguyen | 468c681 | 2014-11-13 17:51:49 +0000 | [diff] [blame] | 1830 | if (INTEL_INFO(ring->dev)->gen >= 9) |
| 1831 | ret = GEN9_LR_CONTEXT_RENDER_SIZE; |
| 1832 | else |
| 1833 | ret = GEN8_LR_CONTEXT_RENDER_SIZE; |
Oscar Mateo | 8c857917 | 2014-07-24 17:04:14 +0100 | [diff] [blame] | 1834 | break; |
| 1835 | case VCS: |
| 1836 | case BCS: |
| 1837 | case VECS: |
| 1838 | case VCS2: |
| 1839 | ret = GEN8_LR_CONTEXT_OTHER_SIZE; |
| 1840 | break; |
| 1841 | } |
| 1842 | |
| 1843 | return ret; |
Oscar Mateo | ede7d42 | 2014-07-24 17:04:12 +0100 | [diff] [blame] | 1844 | } |
| 1845 | |
Daniel Vetter | 70b0ea8 | 2014-11-18 09:09:32 +0100 | [diff] [blame] | 1846 | static void lrc_setup_hardware_status_page(struct intel_engine_cs *ring, |
Thomas Daniel | 1df06b7 | 2014-10-29 09:52:51 +0000 | [diff] [blame] | 1847 | struct drm_i915_gem_object *default_ctx_obj) |
| 1848 | { |
| 1849 | struct drm_i915_private *dev_priv = ring->dev->dev_private; |
| 1850 | |
| 1851 | /* The status page is offset 0 from the default context object |
| 1852 | * in LRC mode. */ |
| 1853 | ring->status_page.gfx_addr = i915_gem_obj_ggtt_offset(default_ctx_obj); |
| 1854 | ring->status_page.page_addr = |
| 1855 | kmap(sg_page(default_ctx_obj->pages->sgl)); |
Thomas Daniel | 1df06b7 | 2014-10-29 09:52:51 +0000 | [diff] [blame] | 1856 | ring->status_page.obj = default_ctx_obj; |
| 1857 | |
| 1858 | I915_WRITE(RING_HWS_PGA(ring->mmio_base), |
| 1859 | (u32)ring->status_page.gfx_addr); |
| 1860 | POSTING_READ(RING_HWS_PGA(ring->mmio_base)); |
Thomas Daniel | 1df06b7 | 2014-10-29 09:52:51 +0000 | [diff] [blame] | 1861 | } |
| 1862 | |
Oscar Mateo | 73e4d07 | 2014-07-24 17:04:48 +0100 | [diff] [blame] | 1863 | /** |
| 1864 | * intel_lr_context_deferred_create() - create the LRC specific bits of a context |
| 1865 | * @ctx: LR context to create. |
| 1866 | * @ring: engine to be used with the context. |
| 1867 | * |
| 1868 | * This function can be called more than once, with different engines, if we plan |
| 1869 | * to use the context with them. The context backing objects and the ringbuffers |
| 1870 | * (specially the ringbuffer backing objects) suck a lot of memory up, and that's why |
| 1871 | * the creation is a deferred call: it's better to make sure first that we need to use |
| 1872 | * a given ring with the context. |
| 1873 | * |
Masanari Iida | 32197aa | 2014-10-20 23:53:13 +0900 | [diff] [blame] | 1874 | * Return: non-zero on error. |
Oscar Mateo | 73e4d07 | 2014-07-24 17:04:48 +0100 | [diff] [blame] | 1875 | */ |
Oscar Mateo | ede7d42 | 2014-07-24 17:04:12 +0100 | [diff] [blame] | 1876 | int intel_lr_context_deferred_create(struct intel_context *ctx, |
| 1877 | struct intel_engine_cs *ring) |
| 1878 | { |
Oscar Mateo | dcb4c12 | 2014-11-13 10:28:10 +0000 | [diff] [blame] | 1879 | const bool is_global_default_ctx = (ctx == ring->default_context); |
Oscar Mateo | 8c857917 | 2014-07-24 17:04:14 +0100 | [diff] [blame] | 1880 | struct drm_device *dev = ring->dev; |
| 1881 | struct drm_i915_gem_object *ctx_obj; |
| 1882 | uint32_t context_size; |
Oscar Mateo | 84c2377 | 2014-07-24 17:04:15 +0100 | [diff] [blame] | 1883 | struct intel_ringbuffer *ringbuf; |
Oscar Mateo | 8c857917 | 2014-07-24 17:04:14 +0100 | [diff] [blame] | 1884 | int ret; |
| 1885 | |
Oscar Mateo | ede7d42 | 2014-07-24 17:04:12 +0100 | [diff] [blame] | 1886 | WARN_ON(ctx->legacy_hw_ctx.rcs_state != NULL); |
Daniel Vetter | bfc882b | 2014-11-20 00:33:08 +0100 | [diff] [blame] | 1887 | WARN_ON(ctx->engine[ring->id].state); |
Oscar Mateo | ede7d42 | 2014-07-24 17:04:12 +0100 | [diff] [blame] | 1888 | |
Oscar Mateo | 8c857917 | 2014-07-24 17:04:14 +0100 | [diff] [blame] | 1889 | context_size = round_up(get_lr_context_size(ring), 4096); |
| 1890 | |
| 1891 | ctx_obj = i915_gem_alloc_context_obj(dev, context_size); |
| 1892 | if (IS_ERR(ctx_obj)) { |
| 1893 | ret = PTR_ERR(ctx_obj); |
| 1894 | DRM_DEBUG_DRIVER("Alloc LRC backing obj failed: %d\n", ret); |
| 1895 | return ret; |
| 1896 | } |
| 1897 | |
Oscar Mateo | dcb4c12 | 2014-11-13 10:28:10 +0000 | [diff] [blame] | 1898 | if (is_global_default_ctx) { |
| 1899 | ret = i915_gem_obj_ggtt_pin(ctx_obj, GEN8_LR_CONTEXT_ALIGN, 0); |
| 1900 | if (ret) { |
| 1901 | DRM_DEBUG_DRIVER("Pin LRC backing obj failed: %d\n", |
| 1902 | ret); |
| 1903 | drm_gem_object_unreference(&ctx_obj->base); |
| 1904 | return ret; |
| 1905 | } |
Oscar Mateo | 8c857917 | 2014-07-24 17:04:14 +0100 | [diff] [blame] | 1906 | } |
| 1907 | |
Oscar Mateo | 84c2377 | 2014-07-24 17:04:15 +0100 | [diff] [blame] | 1908 | ringbuf = kzalloc(sizeof(*ringbuf), GFP_KERNEL); |
| 1909 | if (!ringbuf) { |
| 1910 | DRM_DEBUG_DRIVER("Failed to allocate ringbuffer %s\n", |
| 1911 | ring->name); |
Oscar Mateo | 84c2377 | 2014-07-24 17:04:15 +0100 | [diff] [blame] | 1912 | ret = -ENOMEM; |
Thomas Daniel | 7ba717c | 2014-11-13 10:28:56 +0000 | [diff] [blame] | 1913 | goto error_unpin_ctx; |
Oscar Mateo | 84c2377 | 2014-07-24 17:04:15 +0100 | [diff] [blame] | 1914 | } |
| 1915 | |
Daniel Vetter | 0c7dd53 | 2014-08-11 16:17:44 +0200 | [diff] [blame] | 1916 | ringbuf->ring = ring; |
Oscar Mateo | 582d67f | 2014-07-24 17:04:16 +0100 | [diff] [blame] | 1917 | |
Oscar Mateo | 84c2377 | 2014-07-24 17:04:15 +0100 | [diff] [blame] | 1918 | ringbuf->size = 32 * PAGE_SIZE; |
| 1919 | ringbuf->effective_size = ringbuf->size; |
| 1920 | ringbuf->head = 0; |
| 1921 | ringbuf->tail = 0; |
Oscar Mateo | 84c2377 | 2014-07-24 17:04:15 +0100 | [diff] [blame] | 1922 | ringbuf->last_retired_head = -1; |
Dave Gordon | ebd0fd4 | 2014-11-27 11:22:49 +0000 | [diff] [blame] | 1923 | intel_ring_update_space(ringbuf); |
Oscar Mateo | 84c2377 | 2014-07-24 17:04:15 +0100 | [diff] [blame] | 1924 | |
Thomas Daniel | 7ba717c | 2014-11-13 10:28:56 +0000 | [diff] [blame] | 1925 | if (ringbuf->obj == NULL) { |
| 1926 | ret = intel_alloc_ringbuffer_obj(dev, ringbuf); |
| 1927 | if (ret) { |
| 1928 | DRM_DEBUG_DRIVER( |
| 1929 | "Failed to allocate ringbuffer obj %s: %d\n", |
Oscar Mateo | 84c2377 | 2014-07-24 17:04:15 +0100 | [diff] [blame] | 1930 | ring->name, ret); |
Thomas Daniel | 7ba717c | 2014-11-13 10:28:56 +0000 | [diff] [blame] | 1931 | goto error_free_rbuf; |
| 1932 | } |
| 1933 | |
| 1934 | if (is_global_default_ctx) { |
| 1935 | ret = intel_pin_and_map_ringbuffer_obj(dev, ringbuf); |
| 1936 | if (ret) { |
| 1937 | DRM_ERROR( |
| 1938 | "Failed to pin and map ringbuffer %s: %d\n", |
| 1939 | ring->name, ret); |
| 1940 | goto error_destroy_rbuf; |
| 1941 | } |
| 1942 | } |
| 1943 | |
Oscar Mateo | 8670d6f | 2014-07-24 17:04:17 +0100 | [diff] [blame] | 1944 | } |
| 1945 | |
| 1946 | ret = populate_lr_context(ctx, ctx_obj, ring, ringbuf); |
| 1947 | if (ret) { |
| 1948 | DRM_DEBUG_DRIVER("Failed to populate LRC: %d\n", ret); |
Oscar Mateo | 8670d6f | 2014-07-24 17:04:17 +0100 | [diff] [blame] | 1949 | goto error; |
Oscar Mateo | 84c2377 | 2014-07-24 17:04:15 +0100 | [diff] [blame] | 1950 | } |
| 1951 | |
| 1952 | ctx->engine[ring->id].ringbuf = ringbuf; |
Oscar Mateo | 8c857917 | 2014-07-24 17:04:14 +0100 | [diff] [blame] | 1953 | ctx->engine[ring->id].state = ctx_obj; |
Oscar Mateo | ede7d42 | 2014-07-24 17:04:12 +0100 | [diff] [blame] | 1954 | |
Daniel Vetter | 70b0ea8 | 2014-11-18 09:09:32 +0100 | [diff] [blame] | 1955 | if (ctx == ring->default_context) |
| 1956 | lrc_setup_hardware_status_page(ring, ctx_obj); |
Thomas Daniel | e7778be | 2014-12-02 12:50:48 +0000 | [diff] [blame] | 1957 | else if (ring->id == RCS && !ctx->rcs_initialized) { |
Michel Thierry | 771b9a5 | 2014-11-11 16:47:33 +0000 | [diff] [blame] | 1958 | if (ring->init_context) { |
| 1959 | ret = ring->init_context(ring, ctx); |
Thomas Daniel | e7778be | 2014-12-02 12:50:48 +0000 | [diff] [blame] | 1960 | if (ret) { |
Michel Thierry | 771b9a5 | 2014-11-11 16:47:33 +0000 | [diff] [blame] | 1961 | DRM_ERROR("ring init context: %d\n", ret); |
Thomas Daniel | e7778be | 2014-12-02 12:50:48 +0000 | [diff] [blame] | 1962 | ctx->engine[ring->id].ringbuf = NULL; |
| 1963 | ctx->engine[ring->id].state = NULL; |
| 1964 | goto error; |
| 1965 | } |
Michel Thierry | 771b9a5 | 2014-11-11 16:47:33 +0000 | [diff] [blame] | 1966 | } |
| 1967 | |
Oscar Mateo | 564ddb2 | 2014-08-21 11:40:54 +0100 | [diff] [blame] | 1968 | ctx->rcs_initialized = true; |
| 1969 | } |
| 1970 | |
Oscar Mateo | ede7d42 | 2014-07-24 17:04:12 +0100 | [diff] [blame] | 1971 | return 0; |
Oscar Mateo | 8670d6f | 2014-07-24 17:04:17 +0100 | [diff] [blame] | 1972 | |
| 1973 | error: |
Thomas Daniel | 7ba717c | 2014-11-13 10:28:56 +0000 | [diff] [blame] | 1974 | if (is_global_default_ctx) |
| 1975 | intel_unpin_ringbuffer_obj(ringbuf); |
| 1976 | error_destroy_rbuf: |
| 1977 | intel_destroy_ringbuffer_obj(ringbuf); |
| 1978 | error_free_rbuf: |
Oscar Mateo | 8670d6f | 2014-07-24 17:04:17 +0100 | [diff] [blame] | 1979 | kfree(ringbuf); |
Thomas Daniel | 7ba717c | 2014-11-13 10:28:56 +0000 | [diff] [blame] | 1980 | error_unpin_ctx: |
Oscar Mateo | dcb4c12 | 2014-11-13 10:28:10 +0000 | [diff] [blame] | 1981 | if (is_global_default_ctx) |
| 1982 | i915_gem_object_ggtt_unpin(ctx_obj); |
Oscar Mateo | 8670d6f | 2014-07-24 17:04:17 +0100 | [diff] [blame] | 1983 | drm_gem_object_unreference(&ctx_obj->base); |
| 1984 | return ret; |
Oscar Mateo | ede7d42 | 2014-07-24 17:04:12 +0100 | [diff] [blame] | 1985 | } |
Thomas Daniel | 3e5b6f0 | 2015-02-16 16:12:53 +0000 | [diff] [blame] | 1986 | |
| 1987 | void intel_lr_context_reset(struct drm_device *dev, |
| 1988 | struct intel_context *ctx) |
| 1989 | { |
| 1990 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1991 | struct intel_engine_cs *ring; |
| 1992 | int i; |
| 1993 | |
| 1994 | for_each_ring(ring, dev_priv, i) { |
| 1995 | struct drm_i915_gem_object *ctx_obj = |
| 1996 | ctx->engine[ring->id].state; |
| 1997 | struct intel_ringbuffer *ringbuf = |
| 1998 | ctx->engine[ring->id].ringbuf; |
| 1999 | uint32_t *reg_state; |
| 2000 | struct page *page; |
| 2001 | |
| 2002 | if (!ctx_obj) |
| 2003 | continue; |
| 2004 | |
| 2005 | if (i915_gem_object_get_pages(ctx_obj)) { |
| 2006 | WARN(1, "Failed get_pages for context obj\n"); |
| 2007 | continue; |
| 2008 | } |
| 2009 | page = i915_gem_object_get_page(ctx_obj, 1); |
| 2010 | reg_state = kmap_atomic(page); |
| 2011 | |
| 2012 | reg_state[CTX_RING_HEAD+1] = 0; |
| 2013 | reg_state[CTX_RING_TAIL+1] = 0; |
| 2014 | |
| 2015 | kunmap_atomic(reg_state); |
| 2016 | |
| 2017 | ringbuf->head = 0; |
| 2018 | ringbuf->tail = 0; |
| 2019 | } |
| 2020 | } |