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