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 | */ |
Tvrtko Ursulin | 27af5ee | 2016-04-04 12:11:56 +0100 | [diff] [blame] | 134 | #include <linux/interrupt.h> |
Oscar Mateo | b20385f | 2014-07-24 17:04:10 +0100 | [diff] [blame] | 135 | |
| 136 | #include <drm/drmP.h> |
| 137 | #include <drm/i915_drm.h> |
| 138 | #include "i915_drv.h" |
Chris Wilson | 7c2fa7f | 2017-11-10 14:26:34 +0000 | [diff] [blame] | 139 | #include "i915_gem_render_state.h" |
Michel Thierry | 578f1ac | 2018-01-23 16:43:49 -0800 | [diff] [blame] | 140 | #include "intel_lrc_reg.h" |
Peter Antoine | 3bbaba0 | 2015-07-10 20:13:11 +0300 | [diff] [blame] | 141 | #include "intel_mocs.h" |
Oscar Mateo | 127f100 | 2014-07-24 17:04:11 +0100 | [diff] [blame] | 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 | |
Chris Wilson | 70c2a24 | 2016-09-09 14:11:46 +0100 | [diff] [blame] | 157 | #define GEN8_CTX_STATUS_COMPLETED_MASK \ |
Chris Wilson | d8747af | 2017-11-20 12:34:56 +0000 | [diff] [blame] | 158 | (GEN8_CTX_STATUS_COMPLETE | GEN8_CTX_STATUS_PREEMPTED) |
Chris Wilson | 70c2a24 | 2016-09-09 14:11:46 +0100 | [diff] [blame] | 159 | |
Chris Wilson | 0e93cdd | 2016-04-29 09:07:06 +0100 | [diff] [blame] | 160 | /* Typical size of the average request (2 pipecontrols and a MI_BB) */ |
| 161 | #define EXECLISTS_REQUEST_SIZE 64 /* bytes */ |
Chris Wilson | a3aabe8 | 2016-10-04 21:11:26 +0100 | [diff] [blame] | 162 | #define WA_TAIL_DWORDS 2 |
Chris Wilson | 7e4992a | 2017-09-28 20:38:59 +0100 | [diff] [blame] | 163 | #define WA_TAIL_BYTES (sizeof(u32) * WA_TAIL_DWORDS) |
Chris Wilson | a3aabe8 | 2016-10-04 21:11:26 +0100 | [diff] [blame] | 164 | |
Chris Wilson | e2efd13 | 2016-05-24 14:53:34 +0100 | [diff] [blame] | 165 | static int execlists_context_deferred_alloc(struct i915_gem_context *ctx, |
Chris Wilson | 978f1e0 | 2016-04-28 09:56:54 +0100 | [diff] [blame] | 166 | struct intel_engine_cs *engine); |
Chris Wilson | a3aabe8 | 2016-10-04 21:11:26 +0100 | [diff] [blame] | 167 | static void execlists_init_reg_state(u32 *reg_state, |
| 168 | struct i915_gem_context *ctx, |
| 169 | struct intel_engine_cs *engine, |
| 170 | struct intel_ring *ring); |
Thomas Daniel | 7ba717c | 2014-11-13 10:28:56 +0000 | [diff] [blame] | 171 | |
Chris Wilson | f6322ed | 2018-02-22 14:22:29 +0000 | [diff] [blame] | 172 | static inline struct i915_priolist *to_priolist(struct rb_node *rb) |
| 173 | { |
| 174 | return rb_entry(rb, struct i915_priolist, node); |
| 175 | } |
| 176 | |
| 177 | static inline int rq_prio(const struct i915_request *rq) |
| 178 | { |
| 179 | return rq->priotree.priority; |
| 180 | } |
| 181 | |
| 182 | static inline bool need_preempt(const struct intel_engine_cs *engine, |
| 183 | const struct i915_request *last, |
| 184 | int prio) |
| 185 | { |
| 186 | return engine->i915->preempt_context && prio > max(rq_prio(last), 0); |
| 187 | } |
| 188 | |
Oscar Mateo | 73e4d07 | 2014-07-24 17:04:48 +0100 | [diff] [blame] | 189 | /** |
Tvrtko Ursulin | ca82580 | 2016-01-15 15:10:27 +0000 | [diff] [blame] | 190 | * intel_lr_context_descriptor_update() - calculate & cache the descriptor |
| 191 | * descriptor for a pinned context |
Tvrtko Ursulin | ca82580 | 2016-01-15 15:10:27 +0000 | [diff] [blame] | 192 | * @ctx: Context to work on |
Chris Wilson | 9021ad0 | 2016-05-24 14:53:37 +0100 | [diff] [blame] | 193 | * @engine: Engine the descriptor will be used with |
Tvrtko Ursulin | ca82580 | 2016-01-15 15:10:27 +0000 | [diff] [blame] | 194 | * |
| 195 | * The context descriptor encodes various attributes of a context, |
| 196 | * including its GTT address and some flags. Because it's fairly |
| 197 | * expensive to calculate, we'll just do it once and cache the result, |
| 198 | * which remains valid until the context is unpinned. |
| 199 | * |
Daniel Vetter | 6e5248b | 2016-07-15 21:48:06 +0200 | [diff] [blame] | 200 | * This is what a descriptor looks like, from LSB to MSB:: |
| 201 | * |
Mika Kuoppala | 2355cf0 | 2017-01-27 15:03:09 +0200 | [diff] [blame] | 202 | * bits 0-11: flags, GEN8_CTX_* (cached in ctx->desc_template) |
Daniel Vetter | 6e5248b | 2016-07-15 21:48:06 +0200 | [diff] [blame] | 203 | * bits 12-31: LRCA, GTT address of (the HWSP of) this context |
| 204 | * bits 32-52: ctx ID, a globally unique tag |
| 205 | * bits 53-54: mbz, reserved for use by hardware |
| 206 | * bits 55-63: group ID, currently unused and set to 0 |
Tvrtko Ursulin | ca82580 | 2016-01-15 15:10:27 +0000 | [diff] [blame] | 207 | */ |
| 208 | static void |
Chris Wilson | e2efd13 | 2016-05-24 14:53:34 +0100 | [diff] [blame] | 209 | intel_lr_context_descriptor_update(struct i915_gem_context *ctx, |
Tvrtko Ursulin | 0bc40be | 2016-03-16 11:00:37 +0000 | [diff] [blame] | 210 | struct intel_engine_cs *engine) |
Tvrtko Ursulin | ca82580 | 2016-01-15 15:10:27 +0000 | [diff] [blame] | 211 | { |
Chris Wilson | 9021ad0 | 2016-05-24 14:53:37 +0100 | [diff] [blame] | 212 | struct intel_context *ce = &ctx->engine[engine->id]; |
Chris Wilson | 7069b14 | 2016-04-28 09:56:52 +0100 | [diff] [blame] | 213 | u64 desc; |
Tvrtko Ursulin | ca82580 | 2016-01-15 15:10:27 +0000 | [diff] [blame] | 214 | |
Chris Wilson | 7069b14 | 2016-04-28 09:56:52 +0100 | [diff] [blame] | 215 | BUILD_BUG_ON(MAX_CONTEXT_HW_ID > (1<<GEN8_CTX_ID_WIDTH)); |
| 216 | |
Mika Kuoppala | 2355cf0 | 2017-01-27 15:03:09 +0200 | [diff] [blame] | 217 | desc = ctx->desc_template; /* bits 0-11 */ |
Michel Thierry | 0b29c75 | 2017-09-13 09:56:00 +0100 | [diff] [blame] | 218 | desc |= i915_ggtt_offset(ce->state) + LRC_HEADER_PAGES * PAGE_SIZE; |
Chris Wilson | 9021ad0 | 2016-05-24 14:53:37 +0100 | [diff] [blame] | 219 | /* bits 12-31 */ |
Chris Wilson | 7069b14 | 2016-04-28 09:56:52 +0100 | [diff] [blame] | 220 | desc |= (u64)ctx->hw_id << GEN8_CTX_ID_SHIFT; /* bits 32-52 */ |
Tvrtko Ursulin | ca82580 | 2016-01-15 15:10:27 +0000 | [diff] [blame] | 221 | |
Chris Wilson | 9021ad0 | 2016-05-24 14:53:37 +0100 | [diff] [blame] | 222 | ce->lrc_desc = desc; |
Tvrtko Ursulin | ca82580 | 2016-01-15 15:10:27 +0000 | [diff] [blame] | 223 | } |
| 224 | |
Chris Wilson | 27606fd | 2017-09-16 21:44:13 +0100 | [diff] [blame] | 225 | static struct i915_priolist * |
| 226 | lookup_priolist(struct intel_engine_cs *engine, |
| 227 | struct i915_priotree *pt, |
| 228 | int prio) |
Chris Wilson | 08dd3e1 | 2017-09-16 21:44:12 +0100 | [diff] [blame] | 229 | { |
Mika Kuoppala | b620e87 | 2017-09-22 15:43:03 +0300 | [diff] [blame] | 230 | struct intel_engine_execlists * const execlists = &engine->execlists; |
Chris Wilson | 08dd3e1 | 2017-09-16 21:44:12 +0100 | [diff] [blame] | 231 | struct i915_priolist *p; |
| 232 | struct rb_node **parent, *rb; |
| 233 | bool first = true; |
| 234 | |
Mika Kuoppala | b620e87 | 2017-09-22 15:43:03 +0300 | [diff] [blame] | 235 | if (unlikely(execlists->no_priolist)) |
Chris Wilson | 08dd3e1 | 2017-09-16 21:44:12 +0100 | [diff] [blame] | 236 | prio = I915_PRIORITY_NORMAL; |
| 237 | |
| 238 | find_priolist: |
| 239 | /* most positive priority is scheduled first, equal priorities fifo */ |
| 240 | rb = NULL; |
Mika Kuoppala | b620e87 | 2017-09-22 15:43:03 +0300 | [diff] [blame] | 241 | parent = &execlists->queue.rb_node; |
Chris Wilson | 08dd3e1 | 2017-09-16 21:44:12 +0100 | [diff] [blame] | 242 | while (*parent) { |
| 243 | rb = *parent; |
Chris Wilson | f6322ed | 2018-02-22 14:22:29 +0000 | [diff] [blame] | 244 | p = to_priolist(rb); |
Chris Wilson | 08dd3e1 | 2017-09-16 21:44:12 +0100 | [diff] [blame] | 245 | if (prio > p->priority) { |
| 246 | parent = &rb->rb_left; |
| 247 | } else if (prio < p->priority) { |
| 248 | parent = &rb->rb_right; |
| 249 | first = false; |
| 250 | } else { |
Chris Wilson | 27606fd | 2017-09-16 21:44:13 +0100 | [diff] [blame] | 251 | return p; |
Chris Wilson | 08dd3e1 | 2017-09-16 21:44:12 +0100 | [diff] [blame] | 252 | } |
| 253 | } |
| 254 | |
| 255 | if (prio == I915_PRIORITY_NORMAL) { |
Mika Kuoppala | b620e87 | 2017-09-22 15:43:03 +0300 | [diff] [blame] | 256 | p = &execlists->default_priolist; |
Chris Wilson | 08dd3e1 | 2017-09-16 21:44:12 +0100 | [diff] [blame] | 257 | } else { |
| 258 | p = kmem_cache_alloc(engine->i915->priorities, GFP_ATOMIC); |
| 259 | /* Convert an allocation failure to a priority bump */ |
| 260 | if (unlikely(!p)) { |
| 261 | prio = I915_PRIORITY_NORMAL; /* recurses just once */ |
| 262 | |
| 263 | /* To maintain ordering with all rendering, after an |
| 264 | * allocation failure we have to disable all scheduling. |
| 265 | * Requests will then be executed in fifo, and schedule |
| 266 | * will ensure that dependencies are emitted in fifo. |
| 267 | * There will be still some reordering with existing |
| 268 | * requests, so if userspace lied about their |
| 269 | * dependencies that reordering may be visible. |
| 270 | */ |
Mika Kuoppala | b620e87 | 2017-09-22 15:43:03 +0300 | [diff] [blame] | 271 | execlists->no_priolist = true; |
Chris Wilson | 08dd3e1 | 2017-09-16 21:44:12 +0100 | [diff] [blame] | 272 | goto find_priolist; |
| 273 | } |
| 274 | } |
| 275 | |
| 276 | p->priority = prio; |
Chris Wilson | 27606fd | 2017-09-16 21:44:13 +0100 | [diff] [blame] | 277 | INIT_LIST_HEAD(&p->requests); |
Chris Wilson | 08dd3e1 | 2017-09-16 21:44:12 +0100 | [diff] [blame] | 278 | rb_link_node(&p->node, rb, parent); |
Mika Kuoppala | b620e87 | 2017-09-22 15:43:03 +0300 | [diff] [blame] | 279 | rb_insert_color(&p->node, &execlists->queue); |
Chris Wilson | 08dd3e1 | 2017-09-16 21:44:12 +0100 | [diff] [blame] | 280 | |
Chris Wilson | 08dd3e1 | 2017-09-16 21:44:12 +0100 | [diff] [blame] | 281 | if (first) |
Mika Kuoppala | b620e87 | 2017-09-22 15:43:03 +0300 | [diff] [blame] | 282 | execlists->first = &p->node; |
Chris Wilson | 08dd3e1 | 2017-09-16 21:44:12 +0100 | [diff] [blame] | 283 | |
Chris Wilson | f6322ed | 2018-02-22 14:22:29 +0000 | [diff] [blame] | 284 | return p; |
Chris Wilson | 08dd3e1 | 2017-09-16 21:44:12 +0100 | [diff] [blame] | 285 | } |
| 286 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 287 | static void unwind_wa_tail(struct i915_request *rq) |
Chris Wilson | 7e4992a | 2017-09-28 20:38:59 +0100 | [diff] [blame] | 288 | { |
| 289 | rq->tail = intel_ring_wrap(rq->ring, rq->wa_tail - WA_TAIL_BYTES); |
| 290 | assert_ring_tail_valid(rq->ring, rq->tail); |
| 291 | } |
| 292 | |
Michał Winiarski | a4598d1 | 2017-10-25 22:00:18 +0200 | [diff] [blame] | 293 | static void __unwind_incomplete_requests(struct intel_engine_cs *engine) |
Chris Wilson | 7e4992a | 2017-09-28 20:38:59 +0100 | [diff] [blame] | 294 | { |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 295 | struct i915_request *rq, *rn; |
Michał Winiarski | 097a948 | 2017-09-28 20:39:01 +0100 | [diff] [blame] | 296 | struct i915_priolist *uninitialized_var(p); |
| 297 | int last_prio = I915_PRIORITY_INVALID; |
Chris Wilson | 7e4992a | 2017-09-28 20:38:59 +0100 | [diff] [blame] | 298 | |
| 299 | lockdep_assert_held(&engine->timeline->lock); |
| 300 | |
| 301 | list_for_each_entry_safe_reverse(rq, rn, |
| 302 | &engine->timeline->requests, |
| 303 | link) { |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 304 | if (i915_request_completed(rq)) |
Chris Wilson | 7e4992a | 2017-09-28 20:38:59 +0100 | [diff] [blame] | 305 | return; |
| 306 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 307 | __i915_request_unsubmit(rq); |
Chris Wilson | 7e4992a | 2017-09-28 20:38:59 +0100 | [diff] [blame] | 308 | unwind_wa_tail(rq); |
| 309 | |
Chris Wilson | f6322ed | 2018-02-22 14:22:29 +0000 | [diff] [blame] | 310 | GEM_BUG_ON(rq_prio(rq) == I915_PRIORITY_INVALID); |
| 311 | if (rq_prio(rq) != last_prio) { |
| 312 | last_prio = rq_prio(rq); |
| 313 | p = lookup_priolist(engine, &rq->priotree, last_prio); |
Michał Winiarski | 097a948 | 2017-09-28 20:39:01 +0100 | [diff] [blame] | 314 | } |
| 315 | |
| 316 | list_add(&rq->priotree.link, &p->requests); |
Chris Wilson | 7e4992a | 2017-09-28 20:38:59 +0100 | [diff] [blame] | 317 | } |
| 318 | } |
| 319 | |
Michał Winiarski | c41937f | 2017-10-26 15:35:58 +0200 | [diff] [blame] | 320 | void |
Michał Winiarski | a4598d1 | 2017-10-25 22:00:18 +0200 | [diff] [blame] | 321 | execlists_unwind_incomplete_requests(struct intel_engine_execlists *execlists) |
| 322 | { |
| 323 | struct intel_engine_cs *engine = |
| 324 | container_of(execlists, typeof(*engine), execlists); |
| 325 | |
| 326 | spin_lock_irq(&engine->timeline->lock); |
| 327 | __unwind_incomplete_requests(engine); |
| 328 | spin_unlock_irq(&engine->timeline->lock); |
| 329 | } |
| 330 | |
Chris Wilson | bbd6c47 | 2016-09-09 14:11:45 +0100 | [diff] [blame] | 331 | static inline void |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 332 | execlists_context_status_change(struct i915_request *rq, unsigned long status) |
Ben Widawsky | 84b790f | 2014-07-24 17:04:36 +0100 | [diff] [blame] | 333 | { |
Chris Wilson | bbd6c47 | 2016-09-09 14:11:45 +0100 | [diff] [blame] | 334 | /* |
| 335 | * Only used when GVT-g is enabled now. When GVT-g is disabled, |
| 336 | * The compiler should eliminate this function as dead-code. |
| 337 | */ |
| 338 | if (!IS_ENABLED(CONFIG_DRM_I915_GVT)) |
| 339 | return; |
Ben Widawsky | 84b790f | 2014-07-24 17:04:36 +0100 | [diff] [blame] | 340 | |
Changbin Du | 3fc0306 | 2017-03-13 10:47:11 +0800 | [diff] [blame] | 341 | atomic_notifier_call_chain(&rq->engine->context_status_notifier, |
| 342 | status, rq); |
Ben Widawsky | 84b790f | 2014-07-24 17:04:36 +0100 | [diff] [blame] | 343 | } |
| 344 | |
Tvrtko Ursulin | 73fd9d3 | 2017-11-21 18:18:47 +0000 | [diff] [blame] | 345 | static inline void |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 346 | execlists_context_schedule_in(struct i915_request *rq) |
Tvrtko Ursulin | 73fd9d3 | 2017-11-21 18:18:47 +0000 | [diff] [blame] | 347 | { |
| 348 | execlists_context_status_change(rq, INTEL_CONTEXT_SCHEDULE_IN); |
Tvrtko Ursulin | 30e17b7 | 2017-11-21 18:18:48 +0000 | [diff] [blame] | 349 | intel_engine_context_in(rq->engine); |
Tvrtko Ursulin | 73fd9d3 | 2017-11-21 18:18:47 +0000 | [diff] [blame] | 350 | } |
| 351 | |
| 352 | static inline void |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 353 | execlists_context_schedule_out(struct i915_request *rq) |
Tvrtko Ursulin | 73fd9d3 | 2017-11-21 18:18:47 +0000 | [diff] [blame] | 354 | { |
Tvrtko Ursulin | 30e17b7 | 2017-11-21 18:18:48 +0000 | [diff] [blame] | 355 | intel_engine_context_out(rq->engine); |
Tvrtko Ursulin | 73fd9d3 | 2017-11-21 18:18:47 +0000 | [diff] [blame] | 356 | execlists_context_status_change(rq, INTEL_CONTEXT_SCHEDULE_OUT); |
| 357 | } |
| 358 | |
Tvrtko Ursulin | c6a2ac7 | 2016-02-26 16:58:32 +0000 | [diff] [blame] | 359 | static void |
| 360 | execlists_update_context_pdps(struct i915_hw_ppgtt *ppgtt, u32 *reg_state) |
| 361 | { |
| 362 | ASSIGN_CTX_PDP(ppgtt, reg_state, 3); |
| 363 | ASSIGN_CTX_PDP(ppgtt, reg_state, 2); |
| 364 | ASSIGN_CTX_PDP(ppgtt, reg_state, 1); |
| 365 | ASSIGN_CTX_PDP(ppgtt, reg_state, 0); |
| 366 | } |
| 367 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 368 | static u64 execlists_update_context(struct i915_request *rq) |
Oscar Mateo | ae1250b | 2014-07-24 17:04:37 +0100 | [diff] [blame] | 369 | { |
Chris Wilson | 70c2a24 | 2016-09-09 14:11:46 +0100 | [diff] [blame] | 370 | struct intel_context *ce = &rq->ctx->engine[rq->engine->id]; |
Zhi Wang | 04da811 | 2017-02-06 18:37:16 +0800 | [diff] [blame] | 371 | struct i915_hw_ppgtt *ppgtt = |
| 372 | rq->ctx->ppgtt ?: rq->i915->mm.aliasing_ppgtt; |
Chris Wilson | 70c2a24 | 2016-09-09 14:11:46 +0100 | [diff] [blame] | 373 | u32 *reg_state = ce->lrc_reg_state; |
Oscar Mateo | ae1250b | 2014-07-24 17:04:37 +0100 | [diff] [blame] | 374 | |
Chris Wilson | e6ba999 | 2017-04-25 14:00:49 +0100 | [diff] [blame] | 375 | reg_state[CTX_RING_TAIL+1] = intel_ring_set_tail(rq->ring, rq->tail); |
Oscar Mateo | ae1250b | 2014-07-24 17:04:37 +0100 | [diff] [blame] | 376 | |
Tvrtko Ursulin | c6a2ac7 | 2016-02-26 16:58:32 +0000 | [diff] [blame] | 377 | /* True 32b PPGTT with dynamic page allocation: update PDP |
| 378 | * registers and point the unallocated PDPs to scratch page. |
| 379 | * PML4 is allocated during ppgtt init, so this is not needed |
| 380 | * in 48-bit mode. |
| 381 | */ |
Chris Wilson | 949e8ab | 2017-02-09 14:40:36 +0000 | [diff] [blame] | 382 | if (ppgtt && !i915_vm_is_48bit(&ppgtt->base)) |
Tvrtko Ursulin | c6a2ac7 | 2016-02-26 16:58:32 +0000 | [diff] [blame] | 383 | execlists_update_context_pdps(ppgtt, reg_state); |
Chris Wilson | 70c2a24 | 2016-09-09 14:11:46 +0100 | [diff] [blame] | 384 | |
| 385 | return ce->lrc_desc; |
Oscar Mateo | ae1250b | 2014-07-24 17:04:37 +0100 | [diff] [blame] | 386 | } |
| 387 | |
Chris Wilson | beecec9 | 2017-10-03 21:34:52 +0100 | [diff] [blame] | 388 | static inline void elsp_write(u64 desc, u32 __iomem *elsp) |
| 389 | { |
| 390 | writel(upper_32_bits(desc), elsp); |
| 391 | writel(lower_32_bits(desc), elsp); |
| 392 | } |
| 393 | |
Chris Wilson | 70c2a24 | 2016-09-09 14:11:46 +0100 | [diff] [blame] | 394 | static void execlists_submit_ports(struct intel_engine_cs *engine) |
Chris Wilson | bbd6c47 | 2016-09-09 14:11:45 +0100 | [diff] [blame] | 395 | { |
Mika Kuoppala | b620e87 | 2017-09-22 15:43:03 +0300 | [diff] [blame] | 396 | struct execlist_port *port = engine->execlists.port; |
Chris Wilson | 77f0d0e | 2017-05-17 13:10:00 +0100 | [diff] [blame] | 397 | unsigned int n; |
Chris Wilson | bbd6c47 | 2016-09-09 14:11:45 +0100 | [diff] [blame] | 398 | |
Mika Kuoppala | 76e7008 | 2017-09-22 15:43:07 +0300 | [diff] [blame] | 399 | for (n = execlists_num_ports(&engine->execlists); n--; ) { |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 400 | struct i915_request *rq; |
Chris Wilson | 77f0d0e | 2017-05-17 13:10:00 +0100 | [diff] [blame] | 401 | unsigned int count; |
| 402 | u64 desc; |
Chris Wilson | 70c2a24 | 2016-09-09 14:11:46 +0100 | [diff] [blame] | 403 | |
Chris Wilson | 77f0d0e | 2017-05-17 13:10:00 +0100 | [diff] [blame] | 404 | rq = port_unpack(&port[n], &count); |
| 405 | if (rq) { |
| 406 | GEM_BUG_ON(count > !n); |
| 407 | if (!count++) |
Tvrtko Ursulin | 73fd9d3 | 2017-11-21 18:18:47 +0000 | [diff] [blame] | 408 | execlists_context_schedule_in(rq); |
Chris Wilson | 77f0d0e | 2017-05-17 13:10:00 +0100 | [diff] [blame] | 409 | port_set(&port[n], port_pack(rq, count)); |
| 410 | desc = execlists_update_context(rq); |
| 411 | GEM_DEBUG_EXEC(port[n].context_id = upper_32_bits(desc)); |
Chris Wilson | bccd3b8 | 2017-11-09 14:30:19 +0000 | [diff] [blame] | 412 | |
Chris Wilson | f6322ed | 2018-02-22 14:22:29 +0000 | [diff] [blame] | 413 | GEM_TRACE("%s in[%d]: ctx=%d.%d, seqno=%x, prio=%d\n", |
Chris Wilson | bccd3b8 | 2017-11-09 14:30:19 +0000 | [diff] [blame] | 414 | engine->name, n, |
Chris Wilson | 16c8619 | 2017-12-19 22:09:16 +0000 | [diff] [blame] | 415 | port[n].context_id, count, |
Chris Wilson | f6322ed | 2018-02-22 14:22:29 +0000 | [diff] [blame] | 416 | rq->global_seqno, |
| 417 | rq_prio(rq)); |
Chris Wilson | 77f0d0e | 2017-05-17 13:10:00 +0100 | [diff] [blame] | 418 | } else { |
| 419 | GEM_BUG_ON(!n); |
| 420 | desc = 0; |
| 421 | } |
| 422 | |
Chris Wilson | 2fc7a06 | 2017-12-07 22:24:34 +0000 | [diff] [blame] | 423 | elsp_write(desc, engine->execlists.elsp); |
Chris Wilson | bbd6c47 | 2016-09-09 14:11:45 +0100 | [diff] [blame] | 424 | } |
Michel Thierry | ba74cb1 | 2017-11-20 12:34:58 +0000 | [diff] [blame] | 425 | execlists_clear_active(&engine->execlists, EXECLISTS_ACTIVE_HWACK); |
Chris Wilson | bbd6c47 | 2016-09-09 14:11:45 +0100 | [diff] [blame] | 426 | } |
| 427 | |
Chris Wilson | 70c2a24 | 2016-09-09 14:11:46 +0100 | [diff] [blame] | 428 | static bool ctx_single_port_submission(const struct i915_gem_context *ctx) |
Ben Widawsky | 84b790f | 2014-07-24 17:04:36 +0100 | [diff] [blame] | 429 | { |
Chris Wilson | 70c2a24 | 2016-09-09 14:11:46 +0100 | [diff] [blame] | 430 | return (IS_ENABLED(CONFIG_DRM_I915_GVT) && |
Chris Wilson | 6095868 | 2016-12-31 11:20:11 +0000 | [diff] [blame] | 431 | i915_gem_context_force_single_submission(ctx)); |
Ben Widawsky | 84b790f | 2014-07-24 17:04:36 +0100 | [diff] [blame] | 432 | } |
| 433 | |
Chris Wilson | 70c2a24 | 2016-09-09 14:11:46 +0100 | [diff] [blame] | 434 | static bool can_merge_ctx(const struct i915_gem_context *prev, |
| 435 | const struct i915_gem_context *next) |
Michel Thierry | acdd884 | 2014-07-24 17:04:38 +0100 | [diff] [blame] | 436 | { |
Chris Wilson | 70c2a24 | 2016-09-09 14:11:46 +0100 | [diff] [blame] | 437 | if (prev != next) |
| 438 | return false; |
Thomas Daniel | e981e7b | 2014-07-24 17:04:39 +0100 | [diff] [blame] | 439 | |
Chris Wilson | 70c2a24 | 2016-09-09 14:11:46 +0100 | [diff] [blame] | 440 | if (ctx_single_port_submission(prev)) |
| 441 | return false; |
Michel Thierry | acdd884 | 2014-07-24 17:04:38 +0100 | [diff] [blame] | 442 | |
Chris Wilson | 70c2a24 | 2016-09-09 14:11:46 +0100 | [diff] [blame] | 443 | return true; |
| 444 | } |
Peter Antoine | 779949f | 2015-05-11 16:03:27 +0100 | [diff] [blame] | 445 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 446 | static void port_assign(struct execlist_port *port, struct i915_request *rq) |
Chris Wilson | 77f0d0e | 2017-05-17 13:10:00 +0100 | [diff] [blame] | 447 | { |
| 448 | GEM_BUG_ON(rq == port_request(port)); |
| 449 | |
| 450 | if (port_isset(port)) |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 451 | i915_request_put(port_request(port)); |
Chris Wilson | 77f0d0e | 2017-05-17 13:10:00 +0100 | [diff] [blame] | 452 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 453 | port_set(port, port_pack(i915_request_get(rq), port_count(port))); |
Chris Wilson | 77f0d0e | 2017-05-17 13:10:00 +0100 | [diff] [blame] | 454 | } |
| 455 | |
Chris Wilson | beecec9 | 2017-10-03 21:34:52 +0100 | [diff] [blame] | 456 | static void inject_preempt_context(struct intel_engine_cs *engine) |
| 457 | { |
| 458 | struct intel_context *ce = |
| 459 | &engine->i915->preempt_context->engine[engine->id]; |
Chris Wilson | beecec9 | 2017-10-03 21:34:52 +0100 | [diff] [blame] | 460 | unsigned int n; |
| 461 | |
Chris Wilson | d637637 | 2018-02-07 21:05:44 +0000 | [diff] [blame] | 462 | GEM_BUG_ON(engine->execlists.preempt_complete_status != |
| 463 | upper_32_bits(ce->lrc_desc)); |
Chris Wilson | 09b1a4e | 2018-01-25 11:24:42 +0000 | [diff] [blame] | 464 | GEM_BUG_ON((ce->lrc_reg_state[CTX_CONTEXT_CONTROL + 1] & |
| 465 | _MASKED_BIT_ENABLE(CTX_CTRL_ENGINE_CTX_RESTORE_INHIBIT | |
| 466 | CTX_CTRL_ENGINE_CTX_SAVE_INHIBIT)) != |
| 467 | _MASKED_BIT_ENABLE(CTX_CTRL_ENGINE_CTX_RESTORE_INHIBIT | |
| 468 | CTX_CTRL_ENGINE_CTX_SAVE_INHIBIT)); |
| 469 | |
Chris Wilson | f6322ed | 2018-02-22 14:22:29 +0000 | [diff] [blame] | 470 | /* |
| 471 | * Switch to our empty preempt context so |
| 472 | * the state of the GPU is known (idle). |
| 473 | */ |
Chris Wilson | 16a8739 | 2017-12-20 09:06:26 +0000 | [diff] [blame] | 474 | GEM_TRACE("%s\n", engine->name); |
Chris Wilson | beecec9 | 2017-10-03 21:34:52 +0100 | [diff] [blame] | 475 | for (n = execlists_num_ports(&engine->execlists); --n; ) |
Chris Wilson | 2fc7a06 | 2017-12-07 22:24:34 +0000 | [diff] [blame] | 476 | elsp_write(0, engine->execlists.elsp); |
Chris Wilson | beecec9 | 2017-10-03 21:34:52 +0100 | [diff] [blame] | 477 | |
Chris Wilson | 2fc7a06 | 2017-12-07 22:24:34 +0000 | [diff] [blame] | 478 | elsp_write(ce->lrc_desc, engine->execlists.elsp); |
Michel Thierry | ba74cb1 | 2017-11-20 12:34:58 +0000 | [diff] [blame] | 479 | execlists_clear_active(&engine->execlists, EXECLISTS_ACTIVE_HWACK); |
Chris Wilson | f6322ed | 2018-02-22 14:22:29 +0000 | [diff] [blame] | 480 | execlists_set_active(&engine->execlists, EXECLISTS_ACTIVE_PREEMPT); |
Chris Wilson | beecec9 | 2017-10-03 21:34:52 +0100 | [diff] [blame] | 481 | } |
| 482 | |
Chris Wilson | 70c2a24 | 2016-09-09 14:11:46 +0100 | [diff] [blame] | 483 | static void execlists_dequeue(struct intel_engine_cs *engine) |
| 484 | { |
Mika Kuoppala | 7a62cc6 | 2017-09-22 15:43:06 +0300 | [diff] [blame] | 485 | struct intel_engine_execlists * const execlists = &engine->execlists; |
| 486 | struct execlist_port *port = execlists->port; |
Mika Kuoppala | 76e7008 | 2017-09-22 15:43:07 +0300 | [diff] [blame] | 487 | const struct execlist_port * const last_port = |
| 488 | &execlists->port[execlists->port_mask]; |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 489 | struct i915_request *last = port_request(port); |
Chris Wilson | 20311bd | 2016-11-14 20:41:03 +0000 | [diff] [blame] | 490 | struct rb_node *rb; |
Chris Wilson | 70c2a24 | 2016-09-09 14:11:46 +0100 | [diff] [blame] | 491 | bool submit = false; |
Michel Thierry | acdd884 | 2014-07-24 17:04:38 +0100 | [diff] [blame] | 492 | |
Chris Wilson | 70c2a24 | 2016-09-09 14:11:46 +0100 | [diff] [blame] | 493 | /* Hardware submission is through 2 ports. Conceptually each port |
| 494 | * has a (RING_START, RING_HEAD, RING_TAIL) tuple. RING_START is |
| 495 | * static for a context, and unique to each, so we only execute |
| 496 | * requests belonging to a single context from each ring. RING_HEAD |
| 497 | * is maintained by the CS in the context image, it marks the place |
| 498 | * where it got up to last time, and through RING_TAIL we tell the CS |
| 499 | * where we want to execute up to this time. |
| 500 | * |
| 501 | * In this list the requests are in order of execution. Consecutive |
| 502 | * requests from the same context are adjacent in the ringbuffer. We |
| 503 | * can combine these requests into a single RING_TAIL update: |
| 504 | * |
| 505 | * RING_HEAD...req1...req2 |
| 506 | * ^- RING_TAIL |
| 507 | * since to execute req2 the CS must first execute req1. |
| 508 | * |
| 509 | * Our goal then is to point each port to the end of a consecutive |
| 510 | * sequence of requests as being the most optimal (fewest wake ups |
| 511 | * and context switches) submission. |
| 512 | */ |
| 513 | |
Tvrtko Ursulin | 9f7886d | 2017-03-21 10:55:11 +0000 | [diff] [blame] | 514 | spin_lock_irq(&engine->timeline->lock); |
Mika Kuoppala | 7a62cc6 | 2017-09-22 15:43:06 +0300 | [diff] [blame] | 515 | rb = execlists->first; |
| 516 | GEM_BUG_ON(rb_first(&execlists->queue) != rb); |
Chris Wilson | beecec9 | 2017-10-03 21:34:52 +0100 | [diff] [blame] | 517 | |
| 518 | if (last) { |
| 519 | /* |
| 520 | * Don't resubmit or switch until all outstanding |
| 521 | * preemptions (lite-restore) are seen. Then we |
| 522 | * know the next preemption status we see corresponds |
| 523 | * to this ELSP update. |
| 524 | */ |
Michel Thierry | ba74cb1 | 2017-11-20 12:34:58 +0000 | [diff] [blame] | 525 | GEM_BUG_ON(!port_count(&port[0])); |
Chris Wilson | beecec9 | 2017-10-03 21:34:52 +0100 | [diff] [blame] | 526 | if (port_count(&port[0]) > 1) |
| 527 | goto unlock; |
| 528 | |
Michel Thierry | ba74cb1 | 2017-11-20 12:34:58 +0000 | [diff] [blame] | 529 | /* |
| 530 | * If we write to ELSP a second time before the HW has had |
| 531 | * a chance to respond to the previous write, we can confuse |
| 532 | * the HW and hit "undefined behaviour". After writing to ELSP, |
| 533 | * we must then wait until we see a context-switch event from |
| 534 | * the HW to indicate that it has had a chance to respond. |
| 535 | */ |
| 536 | if (!execlists_is_active(execlists, EXECLISTS_ACTIVE_HWACK)) |
| 537 | goto unlock; |
| 538 | |
Chris Wilson | f6322ed | 2018-02-22 14:22:29 +0000 | [diff] [blame] | 539 | if (need_preempt(engine, last, execlists->queue_priority)) { |
Chris Wilson | beecec9 | 2017-10-03 21:34:52 +0100 | [diff] [blame] | 540 | inject_preempt_context(engine); |
Chris Wilson | beecec9 | 2017-10-03 21:34:52 +0100 | [diff] [blame] | 541 | goto unlock; |
Chris Wilson | beecec9 | 2017-10-03 21:34:52 +0100 | [diff] [blame] | 542 | } |
Chris Wilson | f6322ed | 2018-02-22 14:22:29 +0000 | [diff] [blame] | 543 | |
| 544 | /* |
| 545 | * In theory, we could coalesce more requests onto |
| 546 | * the second port (the first port is active, with |
| 547 | * no preemptions pending). However, that means we |
| 548 | * then have to deal with the possible lite-restore |
| 549 | * of the second port (as we submit the ELSP, there |
| 550 | * may be a context-switch) but also we may complete |
| 551 | * the resubmission before the context-switch. Ergo, |
| 552 | * coalescing onto the second port will cause a |
| 553 | * preemption event, but we cannot predict whether |
| 554 | * that will affect port[0] or port[1]. |
| 555 | * |
| 556 | * If the second port is already active, we can wait |
| 557 | * until the next context-switch before contemplating |
| 558 | * new requests. The GPU will be busy and we should be |
| 559 | * able to resubmit the new ELSP before it idles, |
| 560 | * avoiding pipeline bubbles (momentary pauses where |
| 561 | * the driver is unable to keep up the supply of new |
| 562 | * work). However, we have to double check that the |
| 563 | * priorities of the ports haven't been switch. |
| 564 | */ |
| 565 | if (port_count(&port[1])) |
| 566 | goto unlock; |
| 567 | |
| 568 | /* |
| 569 | * WaIdleLiteRestore:bdw,skl |
| 570 | * Apply the wa NOOPs to prevent |
| 571 | * ring:HEAD == rq:TAIL as we resubmit the |
| 572 | * request. See gen8_emit_breadcrumb() for |
| 573 | * where we prepare the padding after the |
| 574 | * end of the request. |
| 575 | */ |
| 576 | last->tail = last->wa_tail; |
Chris Wilson | beecec9 | 2017-10-03 21:34:52 +0100 | [diff] [blame] | 577 | } |
| 578 | |
Chris Wilson | f6322ed | 2018-02-22 14:22:29 +0000 | [diff] [blame] | 579 | while (rb) { |
| 580 | struct i915_priolist *p = to_priolist(rb); |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 581 | struct i915_request *rq, *rn; |
Chris Wilson | 20311bd | 2016-11-14 20:41:03 +0000 | [diff] [blame] | 582 | |
Chris Wilson | 6c06757 | 2017-05-17 13:10:03 +0100 | [diff] [blame] | 583 | list_for_each_entry_safe(rq, rn, &p->requests, priotree.link) { |
| 584 | /* |
| 585 | * Can we combine this request with the current port? |
| 586 | * It has to be the same context/ringbuffer and not |
| 587 | * have any exceptions (e.g. GVT saying never to |
| 588 | * combine contexts). |
| 589 | * |
| 590 | * If we can combine the requests, we can execute both |
| 591 | * by updating the RING_TAIL to point to the end of the |
| 592 | * second request, and so we never need to tell the |
| 593 | * hardware about the first. |
Chris Wilson | 70c2a24 | 2016-09-09 14:11:46 +0100 | [diff] [blame] | 594 | */ |
Chris Wilson | 6c06757 | 2017-05-17 13:10:03 +0100 | [diff] [blame] | 595 | if (last && !can_merge_ctx(rq->ctx, last->ctx)) { |
| 596 | /* |
| 597 | * If we are on the second port and cannot |
| 598 | * combine this request with the last, then we |
| 599 | * are done. |
| 600 | */ |
Mika Kuoppala | 76e7008 | 2017-09-22 15:43:07 +0300 | [diff] [blame] | 601 | if (port == last_port) { |
Chris Wilson | 6c06757 | 2017-05-17 13:10:03 +0100 | [diff] [blame] | 602 | __list_del_many(&p->requests, |
| 603 | &rq->priotree.link); |
| 604 | goto done; |
| 605 | } |
Chris Wilson | 70c2a24 | 2016-09-09 14:11:46 +0100 | [diff] [blame] | 606 | |
Chris Wilson | 6c06757 | 2017-05-17 13:10:03 +0100 | [diff] [blame] | 607 | /* |
| 608 | * If GVT overrides us we only ever submit |
| 609 | * port[0], leaving port[1] empty. Note that we |
| 610 | * also have to be careful that we don't queue |
| 611 | * the same context (even though a different |
| 612 | * request) to the second port. |
| 613 | */ |
| 614 | if (ctx_single_port_submission(last->ctx) || |
| 615 | ctx_single_port_submission(rq->ctx)) { |
| 616 | __list_del_many(&p->requests, |
| 617 | &rq->priotree.link); |
| 618 | goto done; |
| 619 | } |
Chris Wilson | 70c2a24 | 2016-09-09 14:11:46 +0100 | [diff] [blame] | 620 | |
Chris Wilson | 6c06757 | 2017-05-17 13:10:03 +0100 | [diff] [blame] | 621 | GEM_BUG_ON(last->ctx == rq->ctx); |
Chris Wilson | 70c2a24 | 2016-09-09 14:11:46 +0100 | [diff] [blame] | 622 | |
Chris Wilson | 6c06757 | 2017-05-17 13:10:03 +0100 | [diff] [blame] | 623 | if (submit) |
| 624 | port_assign(port, last); |
| 625 | port++; |
Mika Kuoppala | 7a62cc6 | 2017-09-22 15:43:06 +0300 | [diff] [blame] | 626 | |
| 627 | GEM_BUG_ON(port_isset(port)); |
Chris Wilson | 6c06757 | 2017-05-17 13:10:03 +0100 | [diff] [blame] | 628 | } |
| 629 | |
| 630 | INIT_LIST_HEAD(&rq->priotree.link); |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 631 | __i915_request_submit(rq); |
| 632 | trace_i915_request_in(rq, port_index(port, execlists)); |
Chris Wilson | 6c06757 | 2017-05-17 13:10:03 +0100 | [diff] [blame] | 633 | last = rq; |
| 634 | submit = true; |
Chris Wilson | 70c2a24 | 2016-09-09 14:11:46 +0100 | [diff] [blame] | 635 | } |
Chris Wilson | d55ac5b | 2016-11-14 20:40:59 +0000 | [diff] [blame] | 636 | |
Chris Wilson | 20311bd | 2016-11-14 20:41:03 +0000 | [diff] [blame] | 637 | rb = rb_next(rb); |
Mika Kuoppala | 7a62cc6 | 2017-09-22 15:43:06 +0300 | [diff] [blame] | 638 | rb_erase(&p->node, &execlists->queue); |
Chris Wilson | 6c06757 | 2017-05-17 13:10:03 +0100 | [diff] [blame] | 639 | INIT_LIST_HEAD(&p->requests); |
| 640 | if (p->priority != I915_PRIORITY_NORMAL) |
Chris Wilson | c5cf9a9 | 2017-05-17 13:10:04 +0100 | [diff] [blame] | 641 | kmem_cache_free(engine->i915->priorities, p); |
Chris Wilson | f6322ed | 2018-02-22 14:22:29 +0000 | [diff] [blame] | 642 | } |
Chris Wilson | 6c06757 | 2017-05-17 13:10:03 +0100 | [diff] [blame] | 643 | done: |
Chris Wilson | f6322ed | 2018-02-22 14:22:29 +0000 | [diff] [blame] | 644 | execlists->queue_priority = rb ? to_priolist(rb)->priority : INT_MIN; |
Mika Kuoppala | 7a62cc6 | 2017-09-22 15:43:06 +0300 | [diff] [blame] | 645 | execlists->first = rb; |
Chris Wilson | 6c06757 | 2017-05-17 13:10:03 +0100 | [diff] [blame] | 646 | if (submit) |
Chris Wilson | 77f0d0e | 2017-05-17 13:10:00 +0100 | [diff] [blame] | 647 | port_assign(port, last); |
Chris Wilson | 339ccd3 | 2018-02-15 16:25:53 +0000 | [diff] [blame] | 648 | |
| 649 | /* We must always keep the beast fed if we have work piled up */ |
Chris Wilson | 339ccd3 | 2018-02-15 16:25:53 +0000 | [diff] [blame] | 650 | GEM_BUG_ON(execlists->first && !port_isset(execlists->port)); |
| 651 | |
Chris Wilson | beecec9 | 2017-10-03 21:34:52 +0100 | [diff] [blame] | 652 | unlock: |
Tvrtko Ursulin | 9f7886d | 2017-03-21 10:55:11 +0000 | [diff] [blame] | 653 | spin_unlock_irq(&engine->timeline->lock); |
Chris Wilson | 70c2a24 | 2016-09-09 14:11:46 +0100 | [diff] [blame] | 654 | |
Chris Wilson | 4a118ec | 2017-10-23 22:32:36 +0100 | [diff] [blame] | 655 | if (submit) { |
| 656 | execlists_set_active(execlists, EXECLISTS_ACTIVE_USER); |
Chris Wilson | 70c2a24 | 2016-09-09 14:11:46 +0100 | [diff] [blame] | 657 | execlists_submit_ports(engine); |
Chris Wilson | 4a118ec | 2017-10-23 22:32:36 +0100 | [diff] [blame] | 658 | } |
Chris Wilson | d081e02 | 2018-02-16 15:32:10 +0000 | [diff] [blame] | 659 | |
| 660 | GEM_BUG_ON(port_isset(execlists->port) && |
| 661 | !execlists_is_active(execlists, EXECLISTS_ACTIVE_USER)); |
Michel Thierry | acdd884 | 2014-07-24 17:04:38 +0100 | [diff] [blame] | 662 | } |
| 663 | |
Michał Winiarski | c41937f | 2017-10-26 15:35:58 +0200 | [diff] [blame] | 664 | void |
Michał Winiarski | a4598d1 | 2017-10-25 22:00:18 +0200 | [diff] [blame] | 665 | execlists_cancel_port_requests(struct intel_engine_execlists * const execlists) |
Mika Kuoppala | cf4591d | 2017-09-22 15:43:05 +0300 | [diff] [blame] | 666 | { |
Chris Wilson | 3f9e6cd | 2017-09-25 13:49:27 +0100 | [diff] [blame] | 667 | struct execlist_port *port = execlists->port; |
Mika Kuoppala | dc2279e | 2017-10-10 14:48:57 +0300 | [diff] [blame] | 668 | unsigned int num_ports = execlists_num_ports(execlists); |
Mika Kuoppala | cf4591d | 2017-09-22 15:43:05 +0300 | [diff] [blame] | 669 | |
Chris Wilson | 3f9e6cd | 2017-09-25 13:49:27 +0100 | [diff] [blame] | 670 | while (num_ports-- && port_isset(port)) { |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 671 | struct i915_request *rq = port_request(port); |
Chris Wilson | 7e44fc2 | 2017-09-26 11:17:19 +0100 | [diff] [blame] | 672 | |
Chris Wilson | 4a118ec | 2017-10-23 22:32:36 +0100 | [diff] [blame] | 673 | GEM_BUG_ON(!execlists->active); |
Tvrtko Ursulin | 30e17b7 | 2017-11-21 18:18:48 +0000 | [diff] [blame] | 674 | intel_engine_context_out(rq->engine); |
Chris Wilson | d6c0511 | 2017-10-03 21:34:47 +0100 | [diff] [blame] | 675 | execlists_context_status_change(rq, INTEL_CONTEXT_SCHEDULE_PREEMPTED); |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 676 | i915_request_put(rq); |
Chris Wilson | 7e44fc2 | 2017-09-26 11:17:19 +0100 | [diff] [blame] | 677 | |
Chris Wilson | 3f9e6cd | 2017-09-25 13:49:27 +0100 | [diff] [blame] | 678 | memset(port, 0, sizeof(*port)); |
| 679 | port++; |
| 680 | } |
Mika Kuoppala | cf4591d | 2017-09-22 15:43:05 +0300 | [diff] [blame] | 681 | } |
| 682 | |
Chris Wilson | 27a5f61 | 2017-09-15 18:31:00 +0100 | [diff] [blame] | 683 | static void execlists_cancel_requests(struct intel_engine_cs *engine) |
| 684 | { |
Mika Kuoppala | b620e87 | 2017-09-22 15:43:03 +0300 | [diff] [blame] | 685 | struct intel_engine_execlists * const execlists = &engine->execlists; |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 686 | struct i915_request *rq, *rn; |
Chris Wilson | 27a5f61 | 2017-09-15 18:31:00 +0100 | [diff] [blame] | 687 | struct rb_node *rb; |
| 688 | unsigned long flags; |
Chris Wilson | 27a5f61 | 2017-09-15 18:31:00 +0100 | [diff] [blame] | 689 | |
Chris Wilson | 963ddd6 | 2018-03-02 11:33:24 +0000 | [diff] [blame] | 690 | GEM_TRACE("%s\n", engine->name); |
| 691 | |
Chris Wilson | a3e3883 | 2018-03-02 14:32:45 +0000 | [diff] [blame^] | 692 | /* |
| 693 | * Before we call engine->cancel_requests(), we should have exclusive |
| 694 | * access to the submission state. This is arranged for us by the |
| 695 | * caller disabling the interrupt generation, the tasklet and other |
| 696 | * threads that may then access the same state, giving us a free hand |
| 697 | * to reset state. However, we still need to let lockdep be aware that |
| 698 | * we know this state may be accessed in hardirq context, so we |
| 699 | * disable the irq around this manipulation and we want to keep |
| 700 | * the spinlock focused on its duties and not accidentally conflate |
| 701 | * coverage to the submission's irq state. (Similarly, although we |
| 702 | * shouldn't need to disable irq around the manipulation of the |
| 703 | * submission's irq state, we also wish to remind ourselves that |
| 704 | * it is irq state.) |
| 705 | */ |
| 706 | local_irq_save(flags); |
Chris Wilson | 27a5f61 | 2017-09-15 18:31:00 +0100 | [diff] [blame] | 707 | |
| 708 | /* Cancel the requests on the HW and clear the ELSP tracker. */ |
Michał Winiarski | a4598d1 | 2017-10-25 22:00:18 +0200 | [diff] [blame] | 709 | execlists_cancel_port_requests(execlists); |
Chris Wilson | 27a5f61 | 2017-09-15 18:31:00 +0100 | [diff] [blame] | 710 | |
Chris Wilson | a3e3883 | 2018-03-02 14:32:45 +0000 | [diff] [blame^] | 711 | spin_lock(&engine->timeline->lock); |
| 712 | |
Chris Wilson | 27a5f61 | 2017-09-15 18:31:00 +0100 | [diff] [blame] | 713 | /* Mark all executing requests as skipped. */ |
| 714 | list_for_each_entry(rq, &engine->timeline->requests, link) { |
| 715 | GEM_BUG_ON(!rq->global_seqno); |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 716 | if (!i915_request_completed(rq)) |
Chris Wilson | 27a5f61 | 2017-09-15 18:31:00 +0100 | [diff] [blame] | 717 | dma_fence_set_error(&rq->fence, -EIO); |
| 718 | } |
| 719 | |
| 720 | /* Flush the queued requests to the timeline list (for retiring). */ |
Mika Kuoppala | b620e87 | 2017-09-22 15:43:03 +0300 | [diff] [blame] | 721 | rb = execlists->first; |
Chris Wilson | 27a5f61 | 2017-09-15 18:31:00 +0100 | [diff] [blame] | 722 | while (rb) { |
Chris Wilson | f6322ed | 2018-02-22 14:22:29 +0000 | [diff] [blame] | 723 | struct i915_priolist *p = to_priolist(rb); |
Chris Wilson | 27a5f61 | 2017-09-15 18:31:00 +0100 | [diff] [blame] | 724 | |
| 725 | list_for_each_entry_safe(rq, rn, &p->requests, priotree.link) { |
| 726 | INIT_LIST_HEAD(&rq->priotree.link); |
Chris Wilson | 27a5f61 | 2017-09-15 18:31:00 +0100 | [diff] [blame] | 727 | |
| 728 | dma_fence_set_error(&rq->fence, -EIO); |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 729 | __i915_request_submit(rq); |
Chris Wilson | 27a5f61 | 2017-09-15 18:31:00 +0100 | [diff] [blame] | 730 | } |
| 731 | |
| 732 | rb = rb_next(rb); |
Mika Kuoppala | b620e87 | 2017-09-22 15:43:03 +0300 | [diff] [blame] | 733 | rb_erase(&p->node, &execlists->queue); |
Chris Wilson | 27a5f61 | 2017-09-15 18:31:00 +0100 | [diff] [blame] | 734 | INIT_LIST_HEAD(&p->requests); |
| 735 | if (p->priority != I915_PRIORITY_NORMAL) |
| 736 | kmem_cache_free(engine->i915->priorities, p); |
| 737 | } |
| 738 | |
| 739 | /* Remaining _unready_ requests will be nop'ed when submitted */ |
| 740 | |
Chris Wilson | f6322ed | 2018-02-22 14:22:29 +0000 | [diff] [blame] | 741 | execlists->queue_priority = INT_MIN; |
Mika Kuoppala | b620e87 | 2017-09-22 15:43:03 +0300 | [diff] [blame] | 742 | execlists->queue = RB_ROOT; |
| 743 | execlists->first = NULL; |
Chris Wilson | 3f9e6cd | 2017-09-25 13:49:27 +0100 | [diff] [blame] | 744 | GEM_BUG_ON(port_isset(execlists->port)); |
Chris Wilson | 27a5f61 | 2017-09-15 18:31:00 +0100 | [diff] [blame] | 745 | |
Chris Wilson | a3e3883 | 2018-03-02 14:32:45 +0000 | [diff] [blame^] | 746 | spin_unlock(&engine->timeline->lock); |
| 747 | |
Chris Wilson | 27a5f61 | 2017-09-15 18:31:00 +0100 | [diff] [blame] | 748 | /* |
| 749 | * The port is checked prior to scheduling a tasklet, but |
| 750 | * just in case we have suspended the tasklet to do the |
| 751 | * wedging make sure that when it wakes, it decides there |
| 752 | * is no work to do by clearing the irq_posted bit. |
| 753 | */ |
| 754 | clear_bit(ENGINE_IRQ_EXECLIST, &engine->irq_posted); |
| 755 | |
Chris Wilson | 963ddd6 | 2018-03-02 11:33:24 +0000 | [diff] [blame] | 756 | /* Mark all CS interrupts as complete */ |
| 757 | execlists->active = 0; |
| 758 | |
Chris Wilson | a3e3883 | 2018-03-02 14:32:45 +0000 | [diff] [blame^] | 759 | local_irq_restore(flags); |
Chris Wilson | 27a5f61 | 2017-09-15 18:31:00 +0100 | [diff] [blame] | 760 | } |
| 761 | |
Daniel Vetter | 6e5248b | 2016-07-15 21:48:06 +0200 | [diff] [blame] | 762 | /* |
Oscar Mateo | 73e4d07 | 2014-07-24 17:04:48 +0100 | [diff] [blame] | 763 | * Check the unread Context Status Buffers and manage the submission of new |
| 764 | * contexts to the ELSP accordingly. |
| 765 | */ |
Sagar Arun Kamble | c6dce8f | 2017-11-16 19:02:37 +0530 | [diff] [blame] | 766 | static void execlists_submission_tasklet(unsigned long data) |
Thomas Daniel | e981e7b | 2014-07-24 17:04:39 +0100 | [diff] [blame] | 767 | { |
Mika Kuoppala | b620e87 | 2017-09-22 15:43:03 +0300 | [diff] [blame] | 768 | struct intel_engine_cs * const engine = (struct intel_engine_cs *)data; |
| 769 | struct intel_engine_execlists * const execlists = &engine->execlists; |
Chris Wilson | beecec9 | 2017-10-03 21:34:52 +0100 | [diff] [blame] | 770 | struct execlist_port * const port = execlists->port; |
Chris Wilson | c033666 | 2016-05-06 15:40:21 +0100 | [diff] [blame] | 771 | struct drm_i915_private *dev_priv = engine->i915; |
Chris Wilson | bb5db7e | 2018-01-22 10:07:14 +0000 | [diff] [blame] | 772 | bool fw = false; |
Thomas Daniel | e981e7b | 2014-07-24 17:04:39 +0100 | [diff] [blame] | 773 | |
Chris Wilson | 4892126 | 2017-04-11 18:58:50 +0100 | [diff] [blame] | 774 | /* We can skip acquiring intel_runtime_pm_get() here as it was taken |
| 775 | * on our behalf by the request (see i915_gem_mark_busy()) and it will |
| 776 | * not be relinquished until the device is idle (see |
| 777 | * i915_gem_idle_work_handler()). As a precaution, we make sure |
| 778 | * that all ELSP are drained i.e. we have processed the CSB, |
| 779 | * before allowing ourselves to idle and calling intel_runtime_pm_put(). |
| 780 | */ |
| 781 | GEM_BUG_ON(!dev_priv->gt.awake); |
| 782 | |
Chris Wilson | 899f620 | 2017-03-21 11:33:20 +0000 | [diff] [blame] | 783 | /* Prefer doing test_and_clear_bit() as a two stage operation to avoid |
| 784 | * imposing the cost of a locked atomic transaction when submitting a |
| 785 | * new request (outside of the context-switch interrupt). |
| 786 | */ |
| 787 | while (test_bit(ENGINE_IRQ_EXECLIST, &engine->irq_posted)) { |
Chris Wilson | 6d2cb5a | 2017-09-13 14:35:34 +0100 | [diff] [blame] | 788 | /* The HWSP contains a (cacheable) mirror of the CSB */ |
| 789 | const u32 *buf = |
| 790 | &engine->status_page.page_addr[I915_HWS_CSB_BUF0_INDEX]; |
Chris Wilson | 4af0d72 | 2017-03-25 20:10:53 +0000 | [diff] [blame] | 791 | unsigned int head, tail; |
Thomas Daniel | e981e7b | 2014-07-24 17:04:39 +0100 | [diff] [blame] | 792 | |
Mika Kuoppala | b620e87 | 2017-09-22 15:43:03 +0300 | [diff] [blame] | 793 | if (unlikely(execlists->csb_use_mmio)) { |
Chris Wilson | 6d2cb5a | 2017-09-13 14:35:34 +0100 | [diff] [blame] | 794 | buf = (u32 * __force) |
| 795 | (dev_priv->regs + i915_mmio_reg_offset(RING_CONTEXT_STATUS_BUF_LO(engine, 0))); |
Mika Kuoppala | b620e87 | 2017-09-22 15:43:03 +0300 | [diff] [blame] | 796 | execlists->csb_head = -1; /* force mmio read of CSB ptrs */ |
Chris Wilson | 6d2cb5a | 2017-09-13 14:35:34 +0100 | [diff] [blame] | 797 | } |
| 798 | |
Chris Wilson | 2e70b8c | 2017-03-23 13:48:03 +0000 | [diff] [blame] | 799 | /* The write will be ordered by the uncached read (itself |
| 800 | * a memory barrier), so we do not need another in the form |
| 801 | * of a locked instruction. The race between the interrupt |
| 802 | * handler and the split test/clear is harmless as we order |
| 803 | * our clear before the CSB read. If the interrupt arrived |
| 804 | * first between the test and the clear, we read the updated |
| 805 | * CSB and clear the bit. If the interrupt arrives as we read |
| 806 | * the CSB or later (i.e. after we had cleared the bit) the bit |
| 807 | * is set and we do a new loop. |
| 808 | */ |
| 809 | __clear_bit(ENGINE_IRQ_EXECLIST, &engine->irq_posted); |
Mika Kuoppala | b620e87 | 2017-09-22 15:43:03 +0300 | [diff] [blame] | 810 | if (unlikely(execlists->csb_head == -1)) { /* following a reset */ |
Chris Wilson | bb5db7e | 2018-01-22 10:07:14 +0000 | [diff] [blame] | 811 | if (!fw) { |
| 812 | intel_uncore_forcewake_get(dev_priv, |
| 813 | execlists->fw_domains); |
| 814 | fw = true; |
| 815 | } |
| 816 | |
Chris Wilson | 767a983 | 2017-09-13 09:56:05 +0100 | [diff] [blame] | 817 | head = readl(dev_priv->regs + i915_mmio_reg_offset(RING_CONTEXT_STATUS_PTR(engine))); |
| 818 | tail = GEN8_CSB_WRITE_PTR(head); |
| 819 | head = GEN8_CSB_READ_PTR(head); |
Mika Kuoppala | b620e87 | 2017-09-22 15:43:03 +0300 | [diff] [blame] | 820 | execlists->csb_head = head; |
Chris Wilson | 767a983 | 2017-09-13 09:56:05 +0100 | [diff] [blame] | 821 | } else { |
| 822 | const int write_idx = |
| 823 | intel_hws_csb_write_index(dev_priv) - |
| 824 | I915_HWS_CSB_BUF0_INDEX; |
| 825 | |
Mika Kuoppala | b620e87 | 2017-09-22 15:43:03 +0300 | [diff] [blame] | 826 | head = execlists->csb_head; |
Chris Wilson | 767a983 | 2017-09-13 09:56:05 +0100 | [diff] [blame] | 827 | tail = READ_ONCE(buf[write_idx]); |
| 828 | } |
Chris Wilson | bb5db7e | 2018-01-22 10:07:14 +0000 | [diff] [blame] | 829 | GEM_TRACE("%s cs-irq head=%d [%d%s], tail=%d [%d%s]\n", |
Chris Wilson | bccd3b8 | 2017-11-09 14:30:19 +0000 | [diff] [blame] | 830 | engine->name, |
Chris Wilson | bb5db7e | 2018-01-22 10:07:14 +0000 | [diff] [blame] | 831 | head, GEN8_CSB_READ_PTR(readl(dev_priv->regs + i915_mmio_reg_offset(RING_CONTEXT_STATUS_PTR(engine)))), fw ? "" : "?", |
| 832 | tail, GEN8_CSB_WRITE_PTR(readl(dev_priv->regs + i915_mmio_reg_offset(RING_CONTEXT_STATUS_PTR(engine)))), fw ? "" : "?"); |
Mika Kuoppala | b620e87 | 2017-09-22 15:43:03 +0300 | [diff] [blame] | 833 | |
Chris Wilson | 4af0d72 | 2017-03-25 20:10:53 +0000 | [diff] [blame] | 834 | while (head != tail) { |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 835 | struct i915_request *rq; |
Chris Wilson | 4af0d72 | 2017-03-25 20:10:53 +0000 | [diff] [blame] | 836 | unsigned int status; |
Chris Wilson | 77f0d0e | 2017-05-17 13:10:00 +0100 | [diff] [blame] | 837 | unsigned int count; |
Chris Wilson | a37951a | 2017-01-24 11:00:06 +0000 | [diff] [blame] | 838 | |
Chris Wilson | 4af0d72 | 2017-03-25 20:10:53 +0000 | [diff] [blame] | 839 | if (++head == GEN8_CSB_ENTRIES) |
| 840 | head = 0; |
Thomas Daniel | e981e7b | 2014-07-24 17:04:39 +0100 | [diff] [blame] | 841 | |
Chris Wilson | 2ffe80a | 2017-02-06 17:05:02 +0000 | [diff] [blame] | 842 | /* We are flying near dragons again. |
| 843 | * |
| 844 | * We hold a reference to the request in execlist_port[] |
| 845 | * but no more than that. We are operating in softirq |
| 846 | * context and so cannot hold any mutex or sleep. That |
| 847 | * prevents us stopping the requests we are processing |
| 848 | * in port[] from being retired simultaneously (the |
| 849 | * breadcrumb will be complete before we see the |
| 850 | * context-switch). As we only hold the reference to the |
| 851 | * request, any pointer chasing underneath the request |
| 852 | * is subject to a potential use-after-free. Thus we |
| 853 | * store all of the bookkeeping within port[] as |
| 854 | * required, and avoid using unguarded pointers beneath |
| 855 | * request itself. The same applies to the atomic |
| 856 | * status notifier. |
| 857 | */ |
| 858 | |
Chris Wilson | 6d2cb5a | 2017-09-13 14:35:34 +0100 | [diff] [blame] | 859 | status = READ_ONCE(buf[2 * head]); /* maybe mmio! */ |
Chris Wilson | 193a98d | 2017-12-22 13:27:42 +0000 | [diff] [blame] | 860 | GEM_TRACE("%s csb[%d]: status=0x%08x:0x%08x, active=0x%x\n", |
Chris Wilson | bccd3b8 | 2017-11-09 14:30:19 +0000 | [diff] [blame] | 861 | engine->name, head, |
Chris Wilson | 193a98d | 2017-12-22 13:27:42 +0000 | [diff] [blame] | 862 | status, buf[2*head + 1], |
| 863 | execlists->active); |
Michel Thierry | ba74cb1 | 2017-11-20 12:34:58 +0000 | [diff] [blame] | 864 | |
| 865 | if (status & (GEN8_CTX_STATUS_IDLE_ACTIVE | |
| 866 | GEN8_CTX_STATUS_PREEMPTED)) |
| 867 | execlists_set_active(execlists, |
| 868 | EXECLISTS_ACTIVE_HWACK); |
| 869 | if (status & GEN8_CTX_STATUS_ACTIVE_IDLE) |
| 870 | execlists_clear_active(execlists, |
| 871 | EXECLISTS_ACTIVE_HWACK); |
| 872 | |
Chris Wilson | 70c2a24 | 2016-09-09 14:11:46 +0100 | [diff] [blame] | 873 | if (!(status & GEN8_CTX_STATUS_COMPLETED_MASK)) |
| 874 | continue; |
Thomas Daniel | e981e7b | 2014-07-24 17:04:39 +0100 | [diff] [blame] | 875 | |
Chris Wilson | 1f5f9ed | 2017-11-20 12:34:57 +0000 | [diff] [blame] | 876 | /* We should never get a COMPLETED | IDLE_ACTIVE! */ |
| 877 | GEM_BUG_ON(status & GEN8_CTX_STATUS_IDLE_ACTIVE); |
| 878 | |
Chris Wilson | e40dd22 | 2017-11-20 12:34:55 +0000 | [diff] [blame] | 879 | if (status & GEN8_CTX_STATUS_COMPLETE && |
Chris Wilson | d637637 | 2018-02-07 21:05:44 +0000 | [diff] [blame] | 880 | buf[2*head + 1] == execlists->preempt_complete_status) { |
Chris Wilson | 193a98d | 2017-12-22 13:27:42 +0000 | [diff] [blame] | 881 | GEM_TRACE("%s preempt-idle\n", engine->name); |
| 882 | |
Michał Winiarski | a4598d1 | 2017-10-25 22:00:18 +0200 | [diff] [blame] | 883 | execlists_cancel_port_requests(execlists); |
| 884 | execlists_unwind_incomplete_requests(execlists); |
Chris Wilson | beecec9 | 2017-10-03 21:34:52 +0100 | [diff] [blame] | 885 | |
Chris Wilson | 4a118ec | 2017-10-23 22:32:36 +0100 | [diff] [blame] | 886 | GEM_BUG_ON(!execlists_is_active(execlists, |
| 887 | EXECLISTS_ACTIVE_PREEMPT)); |
| 888 | execlists_clear_active(execlists, |
| 889 | EXECLISTS_ACTIVE_PREEMPT); |
Chris Wilson | beecec9 | 2017-10-03 21:34:52 +0100 | [diff] [blame] | 890 | continue; |
| 891 | } |
| 892 | |
| 893 | if (status & GEN8_CTX_STATUS_PREEMPTED && |
Chris Wilson | 4a118ec | 2017-10-23 22:32:36 +0100 | [diff] [blame] | 894 | execlists_is_active(execlists, |
| 895 | EXECLISTS_ACTIVE_PREEMPT)) |
Chris Wilson | beecec9 | 2017-10-03 21:34:52 +0100 | [diff] [blame] | 896 | continue; |
| 897 | |
Chris Wilson | 4a118ec | 2017-10-23 22:32:36 +0100 | [diff] [blame] | 898 | GEM_BUG_ON(!execlists_is_active(execlists, |
| 899 | EXECLISTS_ACTIVE_USER)); |
| 900 | |
Chris Wilson | 77f0d0e | 2017-05-17 13:10:00 +0100 | [diff] [blame] | 901 | rq = port_unpack(port, &count); |
Chris Wilson | f6322ed | 2018-02-22 14:22:29 +0000 | [diff] [blame] | 902 | GEM_TRACE("%s out[0]: ctx=%d.%d, seqno=%x, prio=%d\n", |
Chris Wilson | bccd3b8 | 2017-11-09 14:30:19 +0000 | [diff] [blame] | 903 | engine->name, |
Chris Wilson | 16c8619 | 2017-12-19 22:09:16 +0000 | [diff] [blame] | 904 | port->context_id, count, |
Chris Wilson | f6322ed | 2018-02-22 14:22:29 +0000 | [diff] [blame] | 905 | rq ? rq->global_seqno : 0, |
| 906 | rq ? rq_prio(rq) : 0); |
Chris Wilson | e084039 | 2018-02-21 15:23:01 +0000 | [diff] [blame] | 907 | |
| 908 | /* Check the context/desc id for this event matches */ |
| 909 | GEM_DEBUG_BUG_ON(buf[2 * head + 1] != port->context_id); |
| 910 | |
Chris Wilson | 77f0d0e | 2017-05-17 13:10:00 +0100 | [diff] [blame] | 911 | GEM_BUG_ON(count == 0); |
| 912 | if (--count == 0) { |
Chris Wilson | 70c2a24 | 2016-09-09 14:11:46 +0100 | [diff] [blame] | 913 | GEM_BUG_ON(status & GEN8_CTX_STATUS_PREEMPTED); |
Chris Wilson | d8747af | 2017-11-20 12:34:56 +0000 | [diff] [blame] | 914 | GEM_BUG_ON(port_isset(&port[1]) && |
| 915 | !(status & GEN8_CTX_STATUS_ELEMENT_SWITCH)); |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 916 | GEM_BUG_ON(!i915_request_completed(rq)); |
Tvrtko Ursulin | 73fd9d3 | 2017-11-21 18:18:47 +0000 | [diff] [blame] | 917 | execlists_context_schedule_out(rq); |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 918 | trace_i915_request_out(rq); |
| 919 | i915_request_put(rq); |
Chris Wilson | 77f0d0e | 2017-05-17 13:10:00 +0100 | [diff] [blame] | 920 | |
Chris Wilson | 65cb8c0 | 2018-02-21 15:15:53 +0000 | [diff] [blame] | 921 | GEM_TRACE("%s completed ctx=%d\n", |
| 922 | engine->name, port->context_id); |
| 923 | |
Mika Kuoppala | 7a62cc6 | 2017-09-22 15:43:06 +0300 | [diff] [blame] | 924 | execlists_port_complete(execlists, port); |
Chris Wilson | 77f0d0e | 2017-05-17 13:10:00 +0100 | [diff] [blame] | 925 | } else { |
| 926 | port_set(port, port_pack(rq, count)); |
Chris Wilson | 70c2a24 | 2016-09-09 14:11:46 +0100 | [diff] [blame] | 927 | } |
Tvrtko Ursulin | c6a2ac7 | 2016-02-26 16:58:32 +0000 | [diff] [blame] | 928 | |
Chris Wilson | 77f0d0e | 2017-05-17 13:10:00 +0100 | [diff] [blame] | 929 | /* After the final element, the hw should be idle */ |
| 930 | GEM_BUG_ON(port_count(port) == 0 && |
Chris Wilson | 70c2a24 | 2016-09-09 14:11:46 +0100 | [diff] [blame] | 931 | !(status & GEN8_CTX_STATUS_ACTIVE_IDLE)); |
Chris Wilson | 4a118ec | 2017-10-23 22:32:36 +0100 | [diff] [blame] | 932 | if (port_count(port) == 0) |
| 933 | execlists_clear_active(execlists, |
| 934 | EXECLISTS_ACTIVE_USER); |
Chris Wilson | 4af0d72 | 2017-03-25 20:10:53 +0000 | [diff] [blame] | 935 | } |
Tvrtko Ursulin | 26720ab | 2016-03-17 12:59:46 +0000 | [diff] [blame] | 936 | |
Mika Kuoppala | b620e87 | 2017-09-22 15:43:03 +0300 | [diff] [blame] | 937 | if (head != execlists->csb_head) { |
| 938 | execlists->csb_head = head; |
Chris Wilson | 767a983 | 2017-09-13 09:56:05 +0100 | [diff] [blame] | 939 | writel(_MASKED_FIELD(GEN8_CSB_READ_PTR_MASK, head << 8), |
| 940 | dev_priv->regs + i915_mmio_reg_offset(RING_CONTEXT_STATUS_PTR(engine))); |
| 941 | } |
Tvrtko Ursulin | 26720ab | 2016-03-17 12:59:46 +0000 | [diff] [blame] | 942 | } |
| 943 | |
Chris Wilson | 4a118ec | 2017-10-23 22:32:36 +0100 | [diff] [blame] | 944 | if (!execlists_is_active(execlists, EXECLISTS_ACTIVE_PREEMPT)) |
Chris Wilson | 70c2a24 | 2016-09-09 14:11:46 +0100 | [diff] [blame] | 945 | execlists_dequeue(engine); |
Tvrtko Ursulin | 26720ab | 2016-03-17 12:59:46 +0000 | [diff] [blame] | 946 | |
Chris Wilson | bb5db7e | 2018-01-22 10:07:14 +0000 | [diff] [blame] | 947 | if (fw) |
| 948 | intel_uncore_forcewake_put(dev_priv, execlists->fw_domains); |
Thomas Daniel | e981e7b | 2014-07-24 17:04:39 +0100 | [diff] [blame] | 949 | } |
| 950 | |
Chris Wilson | f6322ed | 2018-02-22 14:22:29 +0000 | [diff] [blame] | 951 | static void queue_request(struct intel_engine_cs *engine, |
| 952 | struct i915_priotree *pt, |
| 953 | int prio) |
Chris Wilson | 27606fd | 2017-09-16 21:44:13 +0100 | [diff] [blame] | 954 | { |
Chris Wilson | f6322ed | 2018-02-22 14:22:29 +0000 | [diff] [blame] | 955 | list_add_tail(&pt->link, &lookup_priolist(engine, pt, prio)->requests); |
| 956 | } |
Chris Wilson | 27606fd | 2017-09-16 21:44:13 +0100 | [diff] [blame] | 957 | |
Chris Wilson | f6322ed | 2018-02-22 14:22:29 +0000 | [diff] [blame] | 958 | static void submit_queue(struct intel_engine_cs *engine, int prio) |
| 959 | { |
| 960 | if (prio > engine->execlists.queue_priority) { |
| 961 | engine->execlists.queue_priority = prio; |
Sagar Arun Kamble | c6dce8f | 2017-11-16 19:02:37 +0530 | [diff] [blame] | 962 | tasklet_hi_schedule(&engine->execlists.tasklet); |
Chris Wilson | f6322ed | 2018-02-22 14:22:29 +0000 | [diff] [blame] | 963 | } |
Chris Wilson | 27606fd | 2017-09-16 21:44:13 +0100 | [diff] [blame] | 964 | } |
| 965 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 966 | static void execlists_submit_request(struct i915_request *request) |
Michel Thierry | acdd884 | 2014-07-24 17:04:38 +0100 | [diff] [blame] | 967 | { |
Tvrtko Ursulin | 4a570db | 2016-03-16 11:00:38 +0000 | [diff] [blame] | 968 | struct intel_engine_cs *engine = request->engine; |
Chris Wilson | 5590af3 | 2016-09-09 14:11:54 +0100 | [diff] [blame] | 969 | unsigned long flags; |
Michel Thierry | acdd884 | 2014-07-24 17:04:38 +0100 | [diff] [blame] | 970 | |
Chris Wilson | 663f71e | 2016-11-14 20:41:00 +0000 | [diff] [blame] | 971 | /* Will be called from irq-context when using foreign fences. */ |
| 972 | spin_lock_irqsave(&engine->timeline->lock, flags); |
Michel Thierry | acdd884 | 2014-07-24 17:04:38 +0100 | [diff] [blame] | 973 | |
Chris Wilson | f6322ed | 2018-02-22 14:22:29 +0000 | [diff] [blame] | 974 | queue_request(engine, &request->priotree, rq_prio(request)); |
| 975 | submit_queue(engine, rq_prio(request)); |
Michel Thierry | acdd884 | 2014-07-24 17:04:38 +0100 | [diff] [blame] | 976 | |
Mika Kuoppala | b620e87 | 2017-09-22 15:43:03 +0300 | [diff] [blame] | 977 | GEM_BUG_ON(!engine->execlists.first); |
Chris Wilson | 6c06757 | 2017-05-17 13:10:03 +0100 | [diff] [blame] | 978 | GEM_BUG_ON(list_empty(&request->priotree.link)); |
| 979 | |
Chris Wilson | 663f71e | 2016-11-14 20:41:00 +0000 | [diff] [blame] | 980 | spin_unlock_irqrestore(&engine->timeline->lock, flags); |
Michel Thierry | acdd884 | 2014-07-24 17:04:38 +0100 | [diff] [blame] | 981 | } |
| 982 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 983 | static struct i915_request *pt_to_request(struct i915_priotree *pt) |
Chris Wilson | 1f18122 | 2017-10-03 21:34:50 +0100 | [diff] [blame] | 984 | { |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 985 | return container_of(pt, struct i915_request, priotree); |
Chris Wilson | 1f18122 | 2017-10-03 21:34:50 +0100 | [diff] [blame] | 986 | } |
| 987 | |
Chris Wilson | 20311bd | 2016-11-14 20:41:03 +0000 | [diff] [blame] | 988 | static struct intel_engine_cs * |
| 989 | pt_lock_engine(struct i915_priotree *pt, struct intel_engine_cs *locked) |
| 990 | { |
Chris Wilson | 1f18122 | 2017-10-03 21:34:50 +0100 | [diff] [blame] | 991 | struct intel_engine_cs *engine = pt_to_request(pt)->engine; |
Chris Wilson | 20311bd | 2016-11-14 20:41:03 +0000 | [diff] [blame] | 992 | |
Chris Wilson | a79a524 | 2017-03-27 21:21:43 +0100 | [diff] [blame] | 993 | GEM_BUG_ON(!locked); |
| 994 | |
Chris Wilson | 20311bd | 2016-11-14 20:41:03 +0000 | [diff] [blame] | 995 | if (engine != locked) { |
Chris Wilson | a79a524 | 2017-03-27 21:21:43 +0100 | [diff] [blame] | 996 | spin_unlock(&locked->timeline->lock); |
| 997 | spin_lock(&engine->timeline->lock); |
Chris Wilson | 20311bd | 2016-11-14 20:41:03 +0000 | [diff] [blame] | 998 | } |
| 999 | |
| 1000 | return engine; |
| 1001 | } |
| 1002 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1003 | static void execlists_schedule(struct i915_request *request, int prio) |
Chris Wilson | 20311bd | 2016-11-14 20:41:03 +0000 | [diff] [blame] | 1004 | { |
Chris Wilson | a79a524 | 2017-03-27 21:21:43 +0100 | [diff] [blame] | 1005 | struct intel_engine_cs *engine; |
Chris Wilson | 20311bd | 2016-11-14 20:41:03 +0000 | [diff] [blame] | 1006 | struct i915_dependency *dep, *p; |
| 1007 | struct i915_dependency stack; |
| 1008 | LIST_HEAD(dfs); |
| 1009 | |
Chris Wilson | 7d1ea60 | 2017-09-28 20:39:00 +0100 | [diff] [blame] | 1010 | GEM_BUG_ON(prio == I915_PRIORITY_INVALID); |
| 1011 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1012 | if (i915_request_completed(request)) |
Chris Wilson | c218ee0 | 2018-01-06 10:56:18 +0000 | [diff] [blame] | 1013 | return; |
| 1014 | |
Chris Wilson | 20311bd | 2016-11-14 20:41:03 +0000 | [diff] [blame] | 1015 | if (prio <= READ_ONCE(request->priotree.priority)) |
| 1016 | return; |
| 1017 | |
Chris Wilson | 70cd147 | 2016-11-28 14:36:49 +0000 | [diff] [blame] | 1018 | /* Need BKL in order to use the temporary link inside i915_dependency */ |
| 1019 | lockdep_assert_held(&request->i915->drm.struct_mutex); |
Chris Wilson | 20311bd | 2016-11-14 20:41:03 +0000 | [diff] [blame] | 1020 | |
| 1021 | stack.signaler = &request->priotree; |
| 1022 | list_add(&stack.dfs_link, &dfs); |
| 1023 | |
Chris Wilson | ce01b17 | 2018-01-02 15:12:26 +0000 | [diff] [blame] | 1024 | /* |
| 1025 | * Recursively bump all dependent priorities to match the new request. |
Chris Wilson | 20311bd | 2016-11-14 20:41:03 +0000 | [diff] [blame] | 1026 | * |
| 1027 | * A naive approach would be to use recursion: |
| 1028 | * static void update_priorities(struct i915_priotree *pt, prio) { |
| 1029 | * list_for_each_entry(dep, &pt->signalers_list, signal_link) |
| 1030 | * update_priorities(dep->signal, prio) |
Chris Wilson | f6322ed | 2018-02-22 14:22:29 +0000 | [diff] [blame] | 1031 | * queue_request(pt); |
Chris Wilson | 20311bd | 2016-11-14 20:41:03 +0000 | [diff] [blame] | 1032 | * } |
| 1033 | * but that may have unlimited recursion depth and so runs a very |
| 1034 | * real risk of overunning the kernel stack. Instead, we build |
| 1035 | * a flat list of all dependencies starting with the current request. |
| 1036 | * As we walk the list of dependencies, we add all of its dependencies |
| 1037 | * to the end of the list (this may include an already visited |
| 1038 | * request) and continue to walk onwards onto the new dependencies. The |
| 1039 | * end result is a topological list of requests in reverse order, the |
| 1040 | * last element in the list is the request we must execute first. |
| 1041 | */ |
Chris Wilson | 2221c5b | 2018-01-02 15:12:27 +0000 | [diff] [blame] | 1042 | list_for_each_entry(dep, &dfs, dfs_link) { |
Chris Wilson | 20311bd | 2016-11-14 20:41:03 +0000 | [diff] [blame] | 1043 | struct i915_priotree *pt = dep->signaler; |
| 1044 | |
Chris Wilson | ce01b17 | 2018-01-02 15:12:26 +0000 | [diff] [blame] | 1045 | /* |
| 1046 | * Within an engine, there can be no cycle, but we may |
Chris Wilson | a79a524 | 2017-03-27 21:21:43 +0100 | [diff] [blame] | 1047 | * refer to the same dependency chain multiple times |
| 1048 | * (redundant dependencies are not eliminated) and across |
| 1049 | * engines. |
| 1050 | */ |
| 1051 | list_for_each_entry(p, &pt->signalers_list, signal_link) { |
Chris Wilson | ce01b17 | 2018-01-02 15:12:26 +0000 | [diff] [blame] | 1052 | GEM_BUG_ON(p == dep); /* no cycles! */ |
| 1053 | |
Chris Wilson | 83cc84c | 2018-01-02 15:12:25 +0000 | [diff] [blame] | 1054 | if (i915_priotree_signaled(p->signaler)) |
Chris Wilson | 1f18122 | 2017-10-03 21:34:50 +0100 | [diff] [blame] | 1055 | continue; |
| 1056 | |
Chris Wilson | a79a524 | 2017-03-27 21:21:43 +0100 | [diff] [blame] | 1057 | GEM_BUG_ON(p->signaler->priority < pt->priority); |
Chris Wilson | 20311bd | 2016-11-14 20:41:03 +0000 | [diff] [blame] | 1058 | if (prio > READ_ONCE(p->signaler->priority)) |
| 1059 | list_move_tail(&p->dfs_link, &dfs); |
Chris Wilson | a79a524 | 2017-03-27 21:21:43 +0100 | [diff] [blame] | 1060 | } |
Chris Wilson | 20311bd | 2016-11-14 20:41:03 +0000 | [diff] [blame] | 1061 | } |
| 1062 | |
Chris Wilson | ce01b17 | 2018-01-02 15:12:26 +0000 | [diff] [blame] | 1063 | /* |
| 1064 | * If we didn't need to bump any existing priorities, and we haven't |
Chris Wilson | 349bdb6 | 2017-05-17 13:10:05 +0100 | [diff] [blame] | 1065 | * yet submitted this request (i.e. there is no potential race with |
| 1066 | * execlists_submit_request()), we can set our own priority and skip |
| 1067 | * acquiring the engine locks. |
| 1068 | */ |
Chris Wilson | 7d1ea60 | 2017-09-28 20:39:00 +0100 | [diff] [blame] | 1069 | if (request->priotree.priority == I915_PRIORITY_INVALID) { |
Chris Wilson | 349bdb6 | 2017-05-17 13:10:05 +0100 | [diff] [blame] | 1070 | GEM_BUG_ON(!list_empty(&request->priotree.link)); |
| 1071 | request->priotree.priority = prio; |
| 1072 | if (stack.dfs_link.next == stack.dfs_link.prev) |
| 1073 | return; |
| 1074 | __list_del_entry(&stack.dfs_link); |
| 1075 | } |
| 1076 | |
Chris Wilson | a79a524 | 2017-03-27 21:21:43 +0100 | [diff] [blame] | 1077 | engine = request->engine; |
| 1078 | spin_lock_irq(&engine->timeline->lock); |
| 1079 | |
Chris Wilson | 20311bd | 2016-11-14 20:41:03 +0000 | [diff] [blame] | 1080 | /* Fifo and depth-first replacement ensure our deps execute before us */ |
| 1081 | list_for_each_entry_safe_reverse(dep, p, &dfs, dfs_link) { |
| 1082 | struct i915_priotree *pt = dep->signaler; |
| 1083 | |
| 1084 | INIT_LIST_HEAD(&dep->dfs_link); |
| 1085 | |
| 1086 | engine = pt_lock_engine(pt, engine); |
| 1087 | |
| 1088 | if (prio <= pt->priority) |
| 1089 | continue; |
| 1090 | |
Chris Wilson | 20311bd | 2016-11-14 20:41:03 +0000 | [diff] [blame] | 1091 | pt->priority = prio; |
Chris Wilson | 6c06757 | 2017-05-17 13:10:03 +0100 | [diff] [blame] | 1092 | if (!list_empty(&pt->link)) { |
| 1093 | __list_del_entry(&pt->link); |
Chris Wilson | f6322ed | 2018-02-22 14:22:29 +0000 | [diff] [blame] | 1094 | queue_request(engine, pt, prio); |
Chris Wilson | a79a524 | 2017-03-27 21:21:43 +0100 | [diff] [blame] | 1095 | } |
Chris Wilson | f6322ed | 2018-02-22 14:22:29 +0000 | [diff] [blame] | 1096 | submit_queue(engine, prio); |
Chris Wilson | 20311bd | 2016-11-14 20:41:03 +0000 | [diff] [blame] | 1097 | } |
| 1098 | |
Chris Wilson | a79a524 | 2017-03-27 21:21:43 +0100 | [diff] [blame] | 1099 | spin_unlock_irq(&engine->timeline->lock); |
Chris Wilson | 20311bd | 2016-11-14 20:41:03 +0000 | [diff] [blame] | 1100 | } |
| 1101 | |
Chris Wilson | f4e15af | 2017-11-10 14:26:32 +0000 | [diff] [blame] | 1102 | static int __context_pin(struct i915_gem_context *ctx, struct i915_vma *vma) |
| 1103 | { |
| 1104 | unsigned int flags; |
| 1105 | int err; |
| 1106 | |
| 1107 | /* |
| 1108 | * Clear this page out of any CPU caches for coherent swap-in/out. |
| 1109 | * We only want to do this on the first bind so that we do not stall |
| 1110 | * on an active context (which by nature is already on the GPU). |
| 1111 | */ |
| 1112 | if (!(vma->flags & I915_VMA_GLOBAL_BIND)) { |
| 1113 | err = i915_gem_object_set_to_gtt_domain(vma->obj, true); |
| 1114 | if (err) |
| 1115 | return err; |
| 1116 | } |
| 1117 | |
| 1118 | flags = PIN_GLOBAL | PIN_HIGH; |
| 1119 | if (ctx->ggtt_offset_bias) |
| 1120 | flags |= PIN_OFFSET_BIAS | ctx->ggtt_offset_bias; |
| 1121 | |
| 1122 | return i915_vma_pin(vma, 0, GEN8_LR_CONTEXT_ALIGN, flags); |
| 1123 | } |
| 1124 | |
Chris Wilson | 266a240 | 2017-05-04 10:33:08 +0100 | [diff] [blame] | 1125 | static struct intel_ring * |
| 1126 | execlists_context_pin(struct intel_engine_cs *engine, |
| 1127 | struct i915_gem_context *ctx) |
Oscar Mateo | dcb4c12 | 2014-11-13 10:28:10 +0000 | [diff] [blame] | 1128 | { |
Chris Wilson | 9021ad0 | 2016-05-24 14:53:37 +0100 | [diff] [blame] | 1129 | struct intel_context *ce = &ctx->engine[engine->id]; |
Tvrtko Ursulin | 7d774ca | 2016-04-12 15:40:42 +0100 | [diff] [blame] | 1130 | void *vaddr; |
Tvrtko Ursulin | ca82580 | 2016-01-15 15:10:27 +0000 | [diff] [blame] | 1131 | int ret; |
Oscar Mateo | dcb4c12 | 2014-11-13 10:28:10 +0000 | [diff] [blame] | 1132 | |
Chris Wilson | 91c8a32 | 2016-07-05 10:40:23 +0100 | [diff] [blame] | 1133 | lockdep_assert_held(&ctx->i915->drm.struct_mutex); |
Tvrtko Ursulin | ca82580 | 2016-01-15 15:10:27 +0000 | [diff] [blame] | 1134 | |
Chris Wilson | 266a240 | 2017-05-04 10:33:08 +0100 | [diff] [blame] | 1135 | if (likely(ce->pin_count++)) |
| 1136 | goto out; |
Chris Wilson | a533b4b | 2017-03-16 17:16:28 +0000 | [diff] [blame] | 1137 | GEM_BUG_ON(!ce->pin_count); /* no overflow please! */ |
Chris Wilson | 24f1d3c | 2016-04-28 09:56:53 +0100 | [diff] [blame] | 1138 | |
Chris Wilson | 1d2a19c | 2018-01-26 12:18:46 +0000 | [diff] [blame] | 1139 | ret = execlists_context_deferred_alloc(ctx, engine); |
| 1140 | if (ret) |
| 1141 | goto err; |
Chris Wilson | 56f6e0a | 2017-01-05 15:30:20 +0000 | [diff] [blame] | 1142 | GEM_BUG_ON(!ce->state); |
Chris Wilson | e8a9c58 | 2016-12-18 15:37:20 +0000 | [diff] [blame] | 1143 | |
Chris Wilson | f4e15af | 2017-11-10 14:26:32 +0000 | [diff] [blame] | 1144 | ret = __context_pin(ctx, ce->state); |
Nick Hoath | e84fe80 | 2015-09-11 12:53:46 +0100 | [diff] [blame] | 1145 | if (ret) |
Chris Wilson | 24f1d3c | 2016-04-28 09:56:53 +0100 | [diff] [blame] | 1146 | goto err; |
Thomas Daniel | 7ba717c | 2014-11-13 10:28:56 +0000 | [diff] [blame] | 1147 | |
Chris Wilson | bf3783e | 2016-08-15 10:48:54 +0100 | [diff] [blame] | 1148 | vaddr = i915_gem_object_pin_map(ce->state->obj, I915_MAP_WB); |
Tvrtko Ursulin | 7d774ca | 2016-04-12 15:40:42 +0100 | [diff] [blame] | 1149 | if (IS_ERR(vaddr)) { |
| 1150 | ret = PTR_ERR(vaddr); |
Chris Wilson | bf3783e | 2016-08-15 10:48:54 +0100 | [diff] [blame] | 1151 | goto unpin_vma; |
Tvrtko Ursulin | 82352e9 | 2016-01-15 17:12:45 +0000 | [diff] [blame] | 1152 | } |
| 1153 | |
Chris Wilson | d822bb1 | 2017-04-03 12:34:25 +0100 | [diff] [blame] | 1154 | ret = intel_ring_pin(ce->ring, ctx->i915, ctx->ggtt_offset_bias); |
Nick Hoath | e84fe80 | 2015-09-11 12:53:46 +0100 | [diff] [blame] | 1155 | if (ret) |
Tvrtko Ursulin | 7d774ca | 2016-04-12 15:40:42 +0100 | [diff] [blame] | 1156 | goto unpin_map; |
Alex Dai | d167519 | 2015-08-12 15:43:43 +0100 | [diff] [blame] | 1157 | |
Tvrtko Ursulin | 0bc40be | 2016-03-16 11:00:37 +0000 | [diff] [blame] | 1158 | intel_lr_context_descriptor_update(ctx, engine); |
Chris Wilson | 9021ad0 | 2016-05-24 14:53:37 +0100 | [diff] [blame] | 1159 | |
Chris Wilson | a3aabe8 | 2016-10-04 21:11:26 +0100 | [diff] [blame] | 1160 | ce->lrc_reg_state = vaddr + LRC_STATE_PN * PAGE_SIZE; |
| 1161 | ce->lrc_reg_state[CTX_RING_BUFFER_START+1] = |
Chris Wilson | bde13eb | 2016-08-15 10:49:07 +0100 | [diff] [blame] | 1162 | i915_ggtt_offset(ce->ring->vma); |
Chris Wilson | a3aabe8 | 2016-10-04 21:11:26 +0100 | [diff] [blame] | 1163 | |
Chris Wilson | 3d574a6 | 2017-10-13 21:26:16 +0100 | [diff] [blame] | 1164 | ce->state->obj->pin_global++; |
Chris Wilson | 9a6feaf | 2016-07-20 13:31:50 +0100 | [diff] [blame] | 1165 | i915_gem_context_get(ctx); |
Chris Wilson | 266a240 | 2017-05-04 10:33:08 +0100 | [diff] [blame] | 1166 | out: |
| 1167 | return ce->ring; |
Thomas Daniel | 7ba717c | 2014-11-13 10:28:56 +0000 | [diff] [blame] | 1168 | |
Tvrtko Ursulin | 7d774ca | 2016-04-12 15:40:42 +0100 | [diff] [blame] | 1169 | unpin_map: |
Chris Wilson | bf3783e | 2016-08-15 10:48:54 +0100 | [diff] [blame] | 1170 | i915_gem_object_unpin_map(ce->state->obj); |
| 1171 | unpin_vma: |
| 1172 | __i915_vma_unpin(ce->state); |
Chris Wilson | 24f1d3c | 2016-04-28 09:56:53 +0100 | [diff] [blame] | 1173 | err: |
Chris Wilson | 9021ad0 | 2016-05-24 14:53:37 +0100 | [diff] [blame] | 1174 | ce->pin_count = 0; |
Chris Wilson | 266a240 | 2017-05-04 10:33:08 +0100 | [diff] [blame] | 1175 | return ERR_PTR(ret); |
Oscar Mateo | dcb4c12 | 2014-11-13 10:28:10 +0000 | [diff] [blame] | 1176 | } |
| 1177 | |
Chris Wilson | e8a9c58 | 2016-12-18 15:37:20 +0000 | [diff] [blame] | 1178 | static void execlists_context_unpin(struct intel_engine_cs *engine, |
| 1179 | struct i915_gem_context *ctx) |
Oscar Mateo | dcb4c12 | 2014-11-13 10:28:10 +0000 | [diff] [blame] | 1180 | { |
Chris Wilson | 9021ad0 | 2016-05-24 14:53:37 +0100 | [diff] [blame] | 1181 | struct intel_context *ce = &ctx->engine[engine->id]; |
Daniel Vetter | af3302b | 2015-12-04 17:27:15 +0100 | [diff] [blame] | 1182 | |
Chris Wilson | 91c8a32 | 2016-07-05 10:40:23 +0100 | [diff] [blame] | 1183 | lockdep_assert_held(&ctx->i915->drm.struct_mutex); |
Chris Wilson | 9021ad0 | 2016-05-24 14:53:37 +0100 | [diff] [blame] | 1184 | GEM_BUG_ON(ce->pin_count == 0); |
Tvrtko Ursulin | 321fe30 | 2016-01-28 10:29:55 +0000 | [diff] [blame] | 1185 | |
Chris Wilson | 9021ad0 | 2016-05-24 14:53:37 +0100 | [diff] [blame] | 1186 | if (--ce->pin_count) |
Chris Wilson | 24f1d3c | 2016-04-28 09:56:53 +0100 | [diff] [blame] | 1187 | return; |
| 1188 | |
Chris Wilson | aad29fb | 2016-08-02 22:50:23 +0100 | [diff] [blame] | 1189 | intel_ring_unpin(ce->ring); |
Chris Wilson | 24f1d3c | 2016-04-28 09:56:53 +0100 | [diff] [blame] | 1190 | |
Chris Wilson | 3d574a6 | 2017-10-13 21:26:16 +0100 | [diff] [blame] | 1191 | ce->state->obj->pin_global--; |
Chris Wilson | bf3783e | 2016-08-15 10:48:54 +0100 | [diff] [blame] | 1192 | i915_gem_object_unpin_map(ce->state->obj); |
| 1193 | i915_vma_unpin(ce->state); |
Chris Wilson | 24f1d3c | 2016-04-28 09:56:53 +0100 | [diff] [blame] | 1194 | |
Chris Wilson | 9a6feaf | 2016-07-20 13:31:50 +0100 | [diff] [blame] | 1195 | i915_gem_context_put(ctx); |
Oscar Mateo | dcb4c12 | 2014-11-13 10:28:10 +0000 | [diff] [blame] | 1196 | } |
| 1197 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1198 | static int execlists_request_alloc(struct i915_request *request) |
Chris Wilson | ef11c01 | 2016-12-18 15:37:19 +0000 | [diff] [blame] | 1199 | { |
| 1200 | struct intel_engine_cs *engine = request->engine; |
| 1201 | struct intel_context *ce = &request->ctx->engine[engine->id]; |
Chris Wilson | fd13821 | 2017-11-15 15:12:04 +0000 | [diff] [blame] | 1202 | int ret; |
Chris Wilson | ef11c01 | 2016-12-18 15:37:19 +0000 | [diff] [blame] | 1203 | |
Chris Wilson | e8a9c58 | 2016-12-18 15:37:20 +0000 | [diff] [blame] | 1204 | GEM_BUG_ON(!ce->pin_count); |
| 1205 | |
Chris Wilson | ef11c01 | 2016-12-18 15:37:19 +0000 | [diff] [blame] | 1206 | /* Flush enough space to reduce the likelihood of waiting after |
| 1207 | * we start building the request - in which case we will just |
| 1208 | * have to repeat work. |
| 1209 | */ |
| 1210 | request->reserved_space += EXECLISTS_REQUEST_SIZE; |
| 1211 | |
Chris Wilson | fd13821 | 2017-11-15 15:12:04 +0000 | [diff] [blame] | 1212 | ret = intel_ring_wait_for_space(request->ring, request->reserved_space); |
| 1213 | if (ret) |
| 1214 | return ret; |
Chris Wilson | ef11c01 | 2016-12-18 15:37:19 +0000 | [diff] [blame] | 1215 | |
Chris Wilson | ef11c01 | 2016-12-18 15:37:19 +0000 | [diff] [blame] | 1216 | /* Note that after this point, we have committed to using |
| 1217 | * this request as it is being used to both track the |
| 1218 | * state of engine initialisation and liveness of the |
| 1219 | * golden renderstate above. Think twice before you try |
| 1220 | * to cancel/unwind this request now. |
| 1221 | */ |
| 1222 | |
| 1223 | request->reserved_space -= EXECLISTS_REQUEST_SIZE; |
| 1224 | return 0; |
Chris Wilson | ef11c01 | 2016-12-18 15:37:19 +0000 | [diff] [blame] | 1225 | } |
| 1226 | |
Arun Siluvery | 9e00084 | 2015-07-03 14:27:31 +0100 | [diff] [blame] | 1227 | /* |
| 1228 | * In this WA we need to set GEN8_L3SQCREG4[21:21] and reset it after |
| 1229 | * PIPE_CONTROL instruction. This is required for the flush to happen correctly |
| 1230 | * but there is a slight complication as this is applied in WA batch where the |
| 1231 | * values are only initialized once so we cannot take register value at the |
| 1232 | * beginning and reuse it further; hence we save its value to memory, upload a |
| 1233 | * constant value with bit21 set and then we restore it back with the saved value. |
| 1234 | * To simplify the WA, a constant value is formed by using the default value |
| 1235 | * of this register. This shouldn't be a problem because we are only modifying |
| 1236 | * it for a short period and this batch in non-premptible. We can ofcourse |
| 1237 | * use additional instructions that read the actual value of the register |
| 1238 | * at that time and set our bit of interest but it makes the WA complicated. |
| 1239 | * |
| 1240 | * This WA is also required for Gen9 so extracting as a function avoids |
| 1241 | * code duplication. |
| 1242 | */ |
Tvrtko Ursulin | 097d4f1 | 2017-02-17 07:58:59 +0000 | [diff] [blame] | 1243 | static u32 * |
| 1244 | gen8_emit_flush_coherentl3_wa(struct intel_engine_cs *engine, u32 *batch) |
Arun Siluvery | 9e00084 | 2015-07-03 14:27:31 +0100 | [diff] [blame] | 1245 | { |
Tvrtko Ursulin | 097d4f1 | 2017-02-17 07:58:59 +0000 | [diff] [blame] | 1246 | *batch++ = MI_STORE_REGISTER_MEM_GEN8 | MI_SRM_LRM_GLOBAL_GTT; |
| 1247 | *batch++ = i915_mmio_reg_offset(GEN8_L3SQCREG4); |
| 1248 | *batch++ = i915_ggtt_offset(engine->scratch) + 256; |
| 1249 | *batch++ = 0; |
Arun Siluvery | 9e00084 | 2015-07-03 14:27:31 +0100 | [diff] [blame] | 1250 | |
Tvrtko Ursulin | 097d4f1 | 2017-02-17 07:58:59 +0000 | [diff] [blame] | 1251 | *batch++ = MI_LOAD_REGISTER_IMM(1); |
| 1252 | *batch++ = i915_mmio_reg_offset(GEN8_L3SQCREG4); |
| 1253 | *batch++ = 0x40400000 | GEN8_LQSC_FLUSH_COHERENT_LINES; |
Arun Siluvery | 9e00084 | 2015-07-03 14:27:31 +0100 | [diff] [blame] | 1254 | |
Tvrtko Ursulin | 9f235df | 2017-02-16 12:23:25 +0000 | [diff] [blame] | 1255 | batch = gen8_emit_pipe_control(batch, |
| 1256 | PIPE_CONTROL_CS_STALL | |
| 1257 | PIPE_CONTROL_DC_FLUSH_ENABLE, |
| 1258 | 0); |
Arun Siluvery | 9e00084 | 2015-07-03 14:27:31 +0100 | [diff] [blame] | 1259 | |
Tvrtko Ursulin | 097d4f1 | 2017-02-17 07:58:59 +0000 | [diff] [blame] | 1260 | *batch++ = MI_LOAD_REGISTER_MEM_GEN8 | MI_SRM_LRM_GLOBAL_GTT; |
| 1261 | *batch++ = i915_mmio_reg_offset(GEN8_L3SQCREG4); |
| 1262 | *batch++ = i915_ggtt_offset(engine->scratch) + 256; |
| 1263 | *batch++ = 0; |
Arun Siluvery | 9e00084 | 2015-07-03 14:27:31 +0100 | [diff] [blame] | 1264 | |
Tvrtko Ursulin | 097d4f1 | 2017-02-17 07:58:59 +0000 | [diff] [blame] | 1265 | return batch; |
Arun Siluvery | 17ee950 | 2015-06-19 19:07:01 +0100 | [diff] [blame] | 1266 | } |
| 1267 | |
Daniel Vetter | 6e5248b | 2016-07-15 21:48:06 +0200 | [diff] [blame] | 1268 | /* |
| 1269 | * Typically we only have one indirect_ctx and per_ctx batch buffer which are |
| 1270 | * initialized at the beginning and shared across all contexts but this field |
| 1271 | * helps us to have multiple batches at different offsets and select them based |
| 1272 | * on a criteria. At the moment this batch always start at the beginning of the page |
| 1273 | * and at this point we don't have multiple wa_ctx batch buffers. |
Arun Siluvery | 17ee950 | 2015-06-19 19:07:01 +0100 | [diff] [blame] | 1274 | * |
Daniel Vetter | 6e5248b | 2016-07-15 21:48:06 +0200 | [diff] [blame] | 1275 | * The number of WA applied are not known at the beginning; we use this field |
| 1276 | * to return the no of DWORDS written. |
Arun Siluvery | 17ee950 | 2015-06-19 19:07:01 +0100 | [diff] [blame] | 1277 | * |
Daniel Vetter | 6e5248b | 2016-07-15 21:48:06 +0200 | [diff] [blame] | 1278 | * It is to be noted that this batch does not contain MI_BATCH_BUFFER_END |
| 1279 | * so it adds NOOPs as padding to make it cacheline aligned. |
| 1280 | * MI_BATCH_BUFFER_END will be added to perctx batch and both of them together |
| 1281 | * makes a complete batch buffer. |
Arun Siluvery | 17ee950 | 2015-06-19 19:07:01 +0100 | [diff] [blame] | 1282 | */ |
Tvrtko Ursulin | 097d4f1 | 2017-02-17 07:58:59 +0000 | [diff] [blame] | 1283 | static u32 *gen8_init_indirectctx_bb(struct intel_engine_cs *engine, u32 *batch) |
Arun Siluvery | 17ee950 | 2015-06-19 19:07:01 +0100 | [diff] [blame] | 1284 | { |
Arun Siluvery | 7ad00d1 | 2015-06-19 18:37:12 +0100 | [diff] [blame] | 1285 | /* WaDisableCtxRestoreArbitration:bdw,chv */ |
Tvrtko Ursulin | 097d4f1 | 2017-02-17 07:58:59 +0000 | [diff] [blame] | 1286 | *batch++ = MI_ARB_ON_OFF | MI_ARB_DISABLE; |
Arun Siluvery | 17ee950 | 2015-06-19 19:07:01 +0100 | [diff] [blame] | 1287 | |
Arun Siluvery | c82435b | 2015-06-19 18:37:13 +0100 | [diff] [blame] | 1288 | /* WaFlushCoherentL3CacheLinesAtContextSwitch:bdw */ |
Tvrtko Ursulin | 097d4f1 | 2017-02-17 07:58:59 +0000 | [diff] [blame] | 1289 | if (IS_BROADWELL(engine->i915)) |
| 1290 | batch = gen8_emit_flush_coherentl3_wa(engine, batch); |
Arun Siluvery | c82435b | 2015-06-19 18:37:13 +0100 | [diff] [blame] | 1291 | |
Arun Siluvery | 0160f05 | 2015-06-23 15:46:57 +0100 | [diff] [blame] | 1292 | /* WaClearSlmSpaceAtContextSwitch:bdw,chv */ |
| 1293 | /* Actual scratch location is at 128 bytes offset */ |
Tvrtko Ursulin | 9f235df | 2017-02-16 12:23:25 +0000 | [diff] [blame] | 1294 | batch = gen8_emit_pipe_control(batch, |
| 1295 | PIPE_CONTROL_FLUSH_L3 | |
| 1296 | PIPE_CONTROL_GLOBAL_GTT_IVB | |
| 1297 | PIPE_CONTROL_CS_STALL | |
| 1298 | PIPE_CONTROL_QW_WRITE, |
| 1299 | i915_ggtt_offset(engine->scratch) + |
| 1300 | 2 * CACHELINE_BYTES); |
Arun Siluvery | 0160f05 | 2015-06-23 15:46:57 +0100 | [diff] [blame] | 1301 | |
Chris Wilson | beecec9 | 2017-10-03 21:34:52 +0100 | [diff] [blame] | 1302 | *batch++ = MI_ARB_ON_OFF | MI_ARB_ENABLE; |
| 1303 | |
Arun Siluvery | 17ee950 | 2015-06-19 19:07:01 +0100 | [diff] [blame] | 1304 | /* Pad to end of cacheline */ |
Tvrtko Ursulin | 097d4f1 | 2017-02-17 07:58:59 +0000 | [diff] [blame] | 1305 | while ((unsigned long)batch % CACHELINE_BYTES) |
| 1306 | *batch++ = MI_NOOP; |
Arun Siluvery | 17ee950 | 2015-06-19 19:07:01 +0100 | [diff] [blame] | 1307 | |
| 1308 | /* |
| 1309 | * MI_BATCH_BUFFER_END is not required in Indirect ctx BB because |
| 1310 | * execution depends on the length specified in terms of cache lines |
| 1311 | * in the register CTX_RCS_INDIRECT_CTX |
| 1312 | */ |
| 1313 | |
Tvrtko Ursulin | 097d4f1 | 2017-02-17 07:58:59 +0000 | [diff] [blame] | 1314 | return batch; |
Arun Siluvery | 17ee950 | 2015-06-19 19:07:01 +0100 | [diff] [blame] | 1315 | } |
| 1316 | |
Tvrtko Ursulin | 097d4f1 | 2017-02-17 07:58:59 +0000 | [diff] [blame] | 1317 | static u32 *gen9_init_indirectctx_bb(struct intel_engine_cs *engine, u32 *batch) |
Arun Siluvery | 0504cff | 2015-07-14 15:01:27 +0100 | [diff] [blame] | 1318 | { |
Chris Wilson | beecec9 | 2017-10-03 21:34:52 +0100 | [diff] [blame] | 1319 | *batch++ = MI_ARB_ON_OFF | MI_ARB_DISABLE; |
| 1320 | |
Ander Conselvan de Oliveira | 9fb5026 | 2017-01-26 11:16:58 +0200 | [diff] [blame] | 1321 | /* WaFlushCoherentL3CacheLinesAtContextSwitch:skl,bxt,glk */ |
Tvrtko Ursulin | 097d4f1 | 2017-02-17 07:58:59 +0000 | [diff] [blame] | 1322 | batch = gen8_emit_flush_coherentl3_wa(engine, batch); |
Arun Siluvery | a4106a7 | 2015-07-14 15:01:29 +0100 | [diff] [blame] | 1323 | |
Ander Conselvan de Oliveira | 9fb5026 | 2017-01-26 11:16:58 +0200 | [diff] [blame] | 1324 | /* WaDisableGatherAtSetShaderCommonSlice:skl,bxt,kbl,glk */ |
Tvrtko Ursulin | 097d4f1 | 2017-02-17 07:58:59 +0000 | [diff] [blame] | 1325 | *batch++ = MI_LOAD_REGISTER_IMM(1); |
| 1326 | *batch++ = i915_mmio_reg_offset(COMMON_SLICE_CHICKEN2); |
| 1327 | *batch++ = _MASKED_BIT_DISABLE( |
| 1328 | GEN9_DISABLE_GATHER_AT_SET_SHADER_COMMON_SLICE); |
| 1329 | *batch++ = MI_NOOP; |
Mika Kuoppala | 873e817 | 2016-07-20 14:26:13 +0300 | [diff] [blame] | 1330 | |
Mika Kuoppala | 066d462 | 2016-06-07 17:19:15 +0300 | [diff] [blame] | 1331 | /* WaClearSlmSpaceAtContextSwitch:kbl */ |
| 1332 | /* Actual scratch location is at 128 bytes offset */ |
Tvrtko Ursulin | 097d4f1 | 2017-02-17 07:58:59 +0000 | [diff] [blame] | 1333 | if (IS_KBL_REVID(engine->i915, 0, KBL_REVID_A0)) { |
Tvrtko Ursulin | 9f235df | 2017-02-16 12:23:25 +0000 | [diff] [blame] | 1334 | batch = gen8_emit_pipe_control(batch, |
| 1335 | PIPE_CONTROL_FLUSH_L3 | |
| 1336 | PIPE_CONTROL_GLOBAL_GTT_IVB | |
| 1337 | PIPE_CONTROL_CS_STALL | |
| 1338 | PIPE_CONTROL_QW_WRITE, |
| 1339 | i915_ggtt_offset(engine->scratch) |
| 1340 | + 2 * CACHELINE_BYTES); |
Mika Kuoppala | 066d462 | 2016-06-07 17:19:15 +0300 | [diff] [blame] | 1341 | } |
Tim Gore | 3485d99 | 2016-07-05 10:01:30 +0100 | [diff] [blame] | 1342 | |
Ander Conselvan de Oliveira | 9fb5026 | 2017-01-26 11:16:58 +0200 | [diff] [blame] | 1343 | /* WaMediaPoolStateCmdInWABB:bxt,glk */ |
Tim Gore | 3485d99 | 2016-07-05 10:01:30 +0100 | [diff] [blame] | 1344 | if (HAS_POOLED_EU(engine->i915)) { |
| 1345 | /* |
| 1346 | * EU pool configuration is setup along with golden context |
| 1347 | * during context initialization. This value depends on |
| 1348 | * device type (2x6 or 3x6) and needs to be updated based |
| 1349 | * on which subslice is disabled especially for 2x6 |
| 1350 | * devices, however it is safe to load default |
| 1351 | * configuration of 3x6 device instead of masking off |
| 1352 | * corresponding bits because HW ignores bits of a disabled |
| 1353 | * subslice and drops down to appropriate config. Please |
| 1354 | * see render_state_setup() in i915_gem_render_state.c for |
| 1355 | * possible configurations, to avoid duplication they are |
| 1356 | * not shown here again. |
| 1357 | */ |
Tvrtko Ursulin | 097d4f1 | 2017-02-17 07:58:59 +0000 | [diff] [blame] | 1358 | *batch++ = GEN9_MEDIA_POOL_STATE; |
| 1359 | *batch++ = GEN9_MEDIA_POOL_ENABLE; |
| 1360 | *batch++ = 0x00777000; |
| 1361 | *batch++ = 0; |
| 1362 | *batch++ = 0; |
| 1363 | *batch++ = 0; |
Tim Gore | 3485d99 | 2016-07-05 10:01:30 +0100 | [diff] [blame] | 1364 | } |
| 1365 | |
Chris Wilson | beecec9 | 2017-10-03 21:34:52 +0100 | [diff] [blame] | 1366 | *batch++ = MI_ARB_ON_OFF | MI_ARB_ENABLE; |
| 1367 | |
Arun Siluvery | 0504cff | 2015-07-14 15:01:27 +0100 | [diff] [blame] | 1368 | /* Pad to end of cacheline */ |
Tvrtko Ursulin | 097d4f1 | 2017-02-17 07:58:59 +0000 | [diff] [blame] | 1369 | while ((unsigned long)batch % CACHELINE_BYTES) |
| 1370 | *batch++ = MI_NOOP; |
Arun Siluvery | 0504cff | 2015-07-14 15:01:27 +0100 | [diff] [blame] | 1371 | |
Tvrtko Ursulin | 097d4f1 | 2017-02-17 07:58:59 +0000 | [diff] [blame] | 1372 | return batch; |
Arun Siluvery | 0504cff | 2015-07-14 15:01:27 +0100 | [diff] [blame] | 1373 | } |
| 1374 | |
Rafael Antognolli | 4b6ce68 | 2018-02-05 15:33:30 -0800 | [diff] [blame] | 1375 | static u32 * |
| 1376 | gen10_init_indirectctx_bb(struct intel_engine_cs *engine, u32 *batch) |
| 1377 | { |
| 1378 | int i; |
| 1379 | |
| 1380 | /* |
| 1381 | * WaPipeControlBefore3DStateSamplePattern: cnl |
| 1382 | * |
| 1383 | * Ensure the engine is idle prior to programming a |
| 1384 | * 3DSTATE_SAMPLE_PATTERN during a context restore. |
| 1385 | */ |
| 1386 | batch = gen8_emit_pipe_control(batch, |
| 1387 | PIPE_CONTROL_CS_STALL, |
| 1388 | 0); |
| 1389 | /* |
| 1390 | * WaPipeControlBefore3DStateSamplePattern says we need 4 dwords for |
| 1391 | * the PIPE_CONTROL followed by 12 dwords of 0x0, so 16 dwords in |
| 1392 | * total. However, a PIPE_CONTROL is 6 dwords long, not 4, which is |
| 1393 | * confusing. Since gen8_emit_pipe_control() already advances the |
| 1394 | * batch by 6 dwords, we advance the other 10 here, completing a |
| 1395 | * cacheline. It's not clear if the workaround requires this padding |
| 1396 | * before other commands, or if it's just the regular padding we would |
| 1397 | * already have for the workaround bb, so leave it here for now. |
| 1398 | */ |
| 1399 | for (i = 0; i < 10; i++) |
| 1400 | *batch++ = MI_NOOP; |
| 1401 | |
| 1402 | /* Pad to end of cacheline */ |
| 1403 | while ((unsigned long)batch % CACHELINE_BYTES) |
| 1404 | *batch++ = MI_NOOP; |
| 1405 | |
| 1406 | return batch; |
| 1407 | } |
| 1408 | |
Tvrtko Ursulin | 097d4f1 | 2017-02-17 07:58:59 +0000 | [diff] [blame] | 1409 | #define CTX_WA_BB_OBJ_SIZE (PAGE_SIZE) |
| 1410 | |
| 1411 | static int lrc_setup_wa_ctx(struct intel_engine_cs *engine) |
Arun Siluvery | 17ee950 | 2015-06-19 19:07:01 +0100 | [diff] [blame] | 1412 | { |
Chris Wilson | 48bb74e | 2016-08-15 10:49:04 +0100 | [diff] [blame] | 1413 | struct drm_i915_gem_object *obj; |
| 1414 | struct i915_vma *vma; |
| 1415 | int err; |
Arun Siluvery | 17ee950 | 2015-06-19 19:07:01 +0100 | [diff] [blame] | 1416 | |
Tvrtko Ursulin | 097d4f1 | 2017-02-17 07:58:59 +0000 | [diff] [blame] | 1417 | obj = i915_gem_object_create(engine->i915, CTX_WA_BB_OBJ_SIZE); |
Chris Wilson | 48bb74e | 2016-08-15 10:49:04 +0100 | [diff] [blame] | 1418 | if (IS_ERR(obj)) |
| 1419 | return PTR_ERR(obj); |
| 1420 | |
Chris Wilson | a01cb37 | 2017-01-16 15:21:30 +0000 | [diff] [blame] | 1421 | vma = i915_vma_instance(obj, &engine->i915->ggtt.base, NULL); |
Chris Wilson | 48bb74e | 2016-08-15 10:49:04 +0100 | [diff] [blame] | 1422 | if (IS_ERR(vma)) { |
| 1423 | err = PTR_ERR(vma); |
| 1424 | goto err; |
Arun Siluvery | 17ee950 | 2015-06-19 19:07:01 +0100 | [diff] [blame] | 1425 | } |
| 1426 | |
Chris Wilson | 48bb74e | 2016-08-15 10:49:04 +0100 | [diff] [blame] | 1427 | err = i915_vma_pin(vma, 0, PAGE_SIZE, PIN_GLOBAL | PIN_HIGH); |
| 1428 | if (err) |
| 1429 | goto err; |
Arun Siluvery | 17ee950 | 2015-06-19 19:07:01 +0100 | [diff] [blame] | 1430 | |
Chris Wilson | 48bb74e | 2016-08-15 10:49:04 +0100 | [diff] [blame] | 1431 | engine->wa_ctx.vma = vma; |
Arun Siluvery | 17ee950 | 2015-06-19 19:07:01 +0100 | [diff] [blame] | 1432 | return 0; |
Chris Wilson | 48bb74e | 2016-08-15 10:49:04 +0100 | [diff] [blame] | 1433 | |
| 1434 | err: |
| 1435 | i915_gem_object_put(obj); |
| 1436 | return err; |
Arun Siluvery | 17ee950 | 2015-06-19 19:07:01 +0100 | [diff] [blame] | 1437 | } |
| 1438 | |
Tvrtko Ursulin | 097d4f1 | 2017-02-17 07:58:59 +0000 | [diff] [blame] | 1439 | static void lrc_destroy_wa_ctx(struct intel_engine_cs *engine) |
Arun Siluvery | 17ee950 | 2015-06-19 19:07:01 +0100 | [diff] [blame] | 1440 | { |
Chris Wilson | 19880c4 | 2016-08-15 10:49:05 +0100 | [diff] [blame] | 1441 | i915_vma_unpin_and_release(&engine->wa_ctx.vma); |
Arun Siluvery | 17ee950 | 2015-06-19 19:07:01 +0100 | [diff] [blame] | 1442 | } |
| 1443 | |
Tvrtko Ursulin | 097d4f1 | 2017-02-17 07:58:59 +0000 | [diff] [blame] | 1444 | typedef u32 *(*wa_bb_func_t)(struct intel_engine_cs *engine, u32 *batch); |
| 1445 | |
Tvrtko Ursulin | 0bc40be | 2016-03-16 11:00:37 +0000 | [diff] [blame] | 1446 | static int intel_init_workaround_bb(struct intel_engine_cs *engine) |
Arun Siluvery | 17ee950 | 2015-06-19 19:07:01 +0100 | [diff] [blame] | 1447 | { |
Chris Wilson | 48bb74e | 2016-08-15 10:49:04 +0100 | [diff] [blame] | 1448 | struct i915_ctx_workarounds *wa_ctx = &engine->wa_ctx; |
Tvrtko Ursulin | 097d4f1 | 2017-02-17 07:58:59 +0000 | [diff] [blame] | 1449 | struct i915_wa_ctx_bb *wa_bb[2] = { &wa_ctx->indirect_ctx, |
| 1450 | &wa_ctx->per_ctx }; |
| 1451 | wa_bb_func_t wa_bb_fn[2]; |
Arun Siluvery | 17ee950 | 2015-06-19 19:07:01 +0100 | [diff] [blame] | 1452 | struct page *page; |
Tvrtko Ursulin | 097d4f1 | 2017-02-17 07:58:59 +0000 | [diff] [blame] | 1453 | void *batch, *batch_ptr; |
| 1454 | unsigned int i; |
Chris Wilson | 48bb74e | 2016-08-15 10:49:04 +0100 | [diff] [blame] | 1455 | int ret; |
Arun Siluvery | 17ee950 | 2015-06-19 19:07:01 +0100 | [diff] [blame] | 1456 | |
Tvrtko Ursulin | 10bde23 | 2018-01-19 10:00:04 +0000 | [diff] [blame] | 1457 | if (GEM_WARN_ON(engine->id != RCS)) |
Tvrtko Ursulin | 097d4f1 | 2017-02-17 07:58:59 +0000 | [diff] [blame] | 1458 | return -EINVAL; |
Arun Siluvery | 17ee950 | 2015-06-19 19:07:01 +0100 | [diff] [blame] | 1459 | |
Tvrtko Ursulin | 097d4f1 | 2017-02-17 07:58:59 +0000 | [diff] [blame] | 1460 | switch (INTEL_GEN(engine->i915)) { |
Rodrigo Vivi | 90007bc | 2017-08-15 16:16:48 -0700 | [diff] [blame] | 1461 | case 10: |
Rafael Antognolli | 4b6ce68 | 2018-02-05 15:33:30 -0800 | [diff] [blame] | 1462 | wa_bb_fn[0] = gen10_init_indirectctx_bb; |
| 1463 | wa_bb_fn[1] = NULL; |
| 1464 | break; |
Tvrtko Ursulin | 097d4f1 | 2017-02-17 07:58:59 +0000 | [diff] [blame] | 1465 | case 9: |
| 1466 | wa_bb_fn[0] = gen9_init_indirectctx_bb; |
Chris Wilson | b8aa223 | 2017-09-21 14:54:44 +0100 | [diff] [blame] | 1467 | wa_bb_fn[1] = NULL; |
Tvrtko Ursulin | 097d4f1 | 2017-02-17 07:58:59 +0000 | [diff] [blame] | 1468 | break; |
| 1469 | case 8: |
| 1470 | wa_bb_fn[0] = gen8_init_indirectctx_bb; |
Chris Wilson | 3ad7b52 | 2017-10-03 21:34:49 +0100 | [diff] [blame] | 1471 | wa_bb_fn[1] = NULL; |
Tvrtko Ursulin | 097d4f1 | 2017-02-17 07:58:59 +0000 | [diff] [blame] | 1472 | break; |
| 1473 | default: |
| 1474 | MISSING_CASE(INTEL_GEN(engine->i915)); |
Arun Siluvery | 5e60d79 | 2015-06-23 15:50:44 +0100 | [diff] [blame] | 1475 | return 0; |
Arun Siluvery | 0504cff | 2015-07-14 15:01:27 +0100 | [diff] [blame] | 1476 | } |
Arun Siluvery | 5e60d79 | 2015-06-23 15:50:44 +0100 | [diff] [blame] | 1477 | |
Tvrtko Ursulin | 097d4f1 | 2017-02-17 07:58:59 +0000 | [diff] [blame] | 1478 | ret = lrc_setup_wa_ctx(engine); |
Arun Siluvery | 17ee950 | 2015-06-19 19:07:01 +0100 | [diff] [blame] | 1479 | if (ret) { |
| 1480 | DRM_DEBUG_DRIVER("Failed to setup context WA page: %d\n", ret); |
| 1481 | return ret; |
| 1482 | } |
| 1483 | |
Chris Wilson | 48bb74e | 2016-08-15 10:49:04 +0100 | [diff] [blame] | 1484 | page = i915_gem_object_get_dirty_page(wa_ctx->vma->obj, 0); |
Tvrtko Ursulin | 097d4f1 | 2017-02-17 07:58:59 +0000 | [diff] [blame] | 1485 | batch = batch_ptr = kmap_atomic(page); |
Arun Siluvery | 17ee950 | 2015-06-19 19:07:01 +0100 | [diff] [blame] | 1486 | |
Tvrtko Ursulin | 097d4f1 | 2017-02-17 07:58:59 +0000 | [diff] [blame] | 1487 | /* |
| 1488 | * Emit the two workaround batch buffers, recording the offset from the |
| 1489 | * start of the workaround batch buffer object for each and their |
| 1490 | * respective sizes. |
| 1491 | */ |
| 1492 | for (i = 0; i < ARRAY_SIZE(wa_bb_fn); i++) { |
| 1493 | wa_bb[i]->offset = batch_ptr - batch; |
Chris Wilson | 1d2a19c | 2018-01-26 12:18:46 +0000 | [diff] [blame] | 1494 | if (GEM_WARN_ON(!IS_ALIGNED(wa_bb[i]->offset, |
| 1495 | CACHELINE_BYTES))) { |
Tvrtko Ursulin | 097d4f1 | 2017-02-17 07:58:59 +0000 | [diff] [blame] | 1496 | ret = -EINVAL; |
| 1497 | break; |
| 1498 | } |
Chris Wilson | 604a8f6 | 2017-09-21 14:54:43 +0100 | [diff] [blame] | 1499 | if (wa_bb_fn[i]) |
| 1500 | batch_ptr = wa_bb_fn[i](engine, batch_ptr); |
Tvrtko Ursulin | 097d4f1 | 2017-02-17 07:58:59 +0000 | [diff] [blame] | 1501 | wa_bb[i]->size = batch_ptr - (batch + wa_bb[i]->offset); |
Arun Siluvery | 17ee950 | 2015-06-19 19:07:01 +0100 | [diff] [blame] | 1502 | } |
| 1503 | |
Tvrtko Ursulin | 097d4f1 | 2017-02-17 07:58:59 +0000 | [diff] [blame] | 1504 | BUG_ON(batch_ptr - batch > CTX_WA_BB_OBJ_SIZE); |
| 1505 | |
Arun Siluvery | 17ee950 | 2015-06-19 19:07:01 +0100 | [diff] [blame] | 1506 | kunmap_atomic(batch); |
| 1507 | if (ret) |
Tvrtko Ursulin | 097d4f1 | 2017-02-17 07:58:59 +0000 | [diff] [blame] | 1508 | lrc_destroy_wa_ctx(engine); |
Arun Siluvery | 17ee950 | 2015-06-19 19:07:01 +0100 | [diff] [blame] | 1509 | |
| 1510 | return ret; |
| 1511 | } |
| 1512 | |
Chris Wilson | 64f09f0 | 2017-08-07 13:19:19 +0100 | [diff] [blame] | 1513 | static u8 gtiir[] = { |
| 1514 | [RCS] = 0, |
| 1515 | [BCS] = 0, |
| 1516 | [VCS] = 1, |
| 1517 | [VCS2] = 1, |
| 1518 | [VECS] = 3, |
| 1519 | }; |
| 1520 | |
Chris Wilson | f3c9d407 | 2018-01-02 15:12:34 +0000 | [diff] [blame] | 1521 | static void enable_execlists(struct intel_engine_cs *engine) |
Oscar Mateo | 9b1136d | 2014-07-24 17:04:24 +0100 | [diff] [blame] | 1522 | { |
Chris Wilson | c033666 | 2016-05-06 15:40:21 +0100 | [diff] [blame] | 1523 | struct drm_i915_private *dev_priv = engine->i915; |
Chris Wilson | f3c9d407 | 2018-01-02 15:12:34 +0000 | [diff] [blame] | 1524 | |
| 1525 | I915_WRITE(RING_HWSTAM(engine->mmio_base), 0xffffffff); |
Kelvin Gardiner | 225701f | 2018-01-30 11:49:17 -0200 | [diff] [blame] | 1526 | |
| 1527 | /* |
| 1528 | * Make sure we're not enabling the new 12-deep CSB |
| 1529 | * FIFO as that requires a slightly updated handling |
| 1530 | * in the ctx switch irq. Since we're currently only |
| 1531 | * using only 2 elements of the enhanced execlists the |
| 1532 | * deeper FIFO it's not needed and it's not worth adding |
| 1533 | * more statements to the irq handler to support it. |
| 1534 | */ |
| 1535 | if (INTEL_GEN(dev_priv) >= 11) |
| 1536 | I915_WRITE(RING_MODE_GEN7(engine), |
| 1537 | _MASKED_BIT_DISABLE(GEN11_GFX_DISABLE_LEGACY_MODE)); |
| 1538 | else |
| 1539 | I915_WRITE(RING_MODE_GEN7(engine), |
| 1540 | _MASKED_BIT_ENABLE(GFX_RUN_LIST_ENABLE)); |
| 1541 | |
Chris Wilson | f3c9d407 | 2018-01-02 15:12:34 +0000 | [diff] [blame] | 1542 | I915_WRITE(RING_HWS_PGA(engine->mmio_base), |
| 1543 | engine->status_page.ggtt_offset); |
| 1544 | POSTING_READ(RING_HWS_PGA(engine->mmio_base)); |
Chris Wilson | e840130 | 2018-02-05 15:24:30 +0000 | [diff] [blame] | 1545 | |
| 1546 | /* Following the reset, we need to reload the CSB read/write pointers */ |
| 1547 | engine->execlists.csb_head = -1; |
Chris Wilson | f3c9d407 | 2018-01-02 15:12:34 +0000 | [diff] [blame] | 1548 | } |
| 1549 | |
| 1550 | static int gen8_init_common_ring(struct intel_engine_cs *engine) |
| 1551 | { |
Mika Kuoppala | b620e87 | 2017-09-22 15:43:03 +0300 | [diff] [blame] | 1552 | struct intel_engine_execlists * const execlists = &engine->execlists; |
Chris Wilson | 821ed7d | 2016-09-09 14:11:53 +0100 | [diff] [blame] | 1553 | int ret; |
| 1554 | |
| 1555 | ret = intel_mocs_init_engine(engine); |
| 1556 | if (ret) |
| 1557 | return ret; |
Oscar Mateo | 9b1136d | 2014-07-24 17:04:24 +0100 | [diff] [blame] | 1558 | |
Chris Wilson | ad07dfc | 2016-10-07 07:53:26 +0100 | [diff] [blame] | 1559 | intel_engine_reset_breadcrumbs(engine); |
Chris Wilson | f3b8f91 | 2017-01-05 15:30:21 +0000 | [diff] [blame] | 1560 | intel_engine_init_hangcheck(engine); |
Chris Wilson | 821ed7d | 2016-09-09 14:11:53 +0100 | [diff] [blame] | 1561 | |
Chris Wilson | f3c9d407 | 2018-01-02 15:12:34 +0000 | [diff] [blame] | 1562 | enable_execlists(engine); |
Oscar Mateo | 9b1136d | 2014-07-24 17:04:24 +0100 | [diff] [blame] | 1563 | |
Chris Wilson | 64f09f0 | 2017-08-07 13:19:19 +0100 | [diff] [blame] | 1564 | /* After a GPU reset, we may have requests to replay */ |
Michał Winiarski | 9bdc357 | 2017-10-25 18:25:19 +0100 | [diff] [blame] | 1565 | if (execlists->first) |
Sagar Arun Kamble | c6dce8f | 2017-11-16 19:02:37 +0530 | [diff] [blame] | 1566 | tasklet_schedule(&execlists->tasklet); |
Chris Wilson | 6b764a5 | 2017-04-25 11:38:35 +0100 | [diff] [blame] | 1567 | |
Chris Wilson | 821ed7d | 2016-09-09 14:11:53 +0100 | [diff] [blame] | 1568 | return 0; |
Oscar Mateo | 9b1136d | 2014-07-24 17:04:24 +0100 | [diff] [blame] | 1569 | } |
| 1570 | |
Tvrtko Ursulin | 0bc40be | 2016-03-16 11:00:37 +0000 | [diff] [blame] | 1571 | static int gen8_init_render_ring(struct intel_engine_cs *engine) |
Oscar Mateo | 9b1136d | 2014-07-24 17:04:24 +0100 | [diff] [blame] | 1572 | { |
Chris Wilson | c033666 | 2016-05-06 15:40:21 +0100 | [diff] [blame] | 1573 | struct drm_i915_private *dev_priv = engine->i915; |
Oscar Mateo | 9b1136d | 2014-07-24 17:04:24 +0100 | [diff] [blame] | 1574 | int ret; |
| 1575 | |
Tvrtko Ursulin | 0bc40be | 2016-03-16 11:00:37 +0000 | [diff] [blame] | 1576 | ret = gen8_init_common_ring(engine); |
Oscar Mateo | 9b1136d | 2014-07-24 17:04:24 +0100 | [diff] [blame] | 1577 | if (ret) |
| 1578 | return ret; |
| 1579 | |
| 1580 | /* We need to disable the AsyncFlip performance optimisations in order |
| 1581 | * to use MI_WAIT_FOR_EVENT within the CS. It should already be |
| 1582 | * programmed to '1' on all products. |
| 1583 | * |
| 1584 | * WaDisableAsyncFlipPerfMode:snb,ivb,hsw,vlv,bdw,chv |
| 1585 | */ |
| 1586 | I915_WRITE(MI_MODE, _MASKED_BIT_ENABLE(ASYNC_FLIP_PERF_DISABLE)); |
| 1587 | |
Oscar Mateo | 9b1136d | 2014-07-24 17:04:24 +0100 | [diff] [blame] | 1588 | I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_FORCE_ORDERING)); |
| 1589 | |
Tvrtko Ursulin | 0bc40be | 2016-03-16 11:00:37 +0000 | [diff] [blame] | 1590 | return init_workarounds_ring(engine); |
Oscar Mateo | 9b1136d | 2014-07-24 17:04:24 +0100 | [diff] [blame] | 1591 | } |
| 1592 | |
Tvrtko Ursulin | 0bc40be | 2016-03-16 11:00:37 +0000 | [diff] [blame] | 1593 | static int gen9_init_render_ring(struct intel_engine_cs *engine) |
Damien Lespiau | 82ef822 | 2015-02-09 19:33:08 +0000 | [diff] [blame] | 1594 | { |
| 1595 | int ret; |
| 1596 | |
Tvrtko Ursulin | 0bc40be | 2016-03-16 11:00:37 +0000 | [diff] [blame] | 1597 | ret = gen8_init_common_ring(engine); |
Damien Lespiau | 82ef822 | 2015-02-09 19:33:08 +0000 | [diff] [blame] | 1598 | if (ret) |
| 1599 | return ret; |
| 1600 | |
Tvrtko Ursulin | 0bc40be | 2016-03-16 11:00:37 +0000 | [diff] [blame] | 1601 | return init_workarounds_ring(engine); |
Damien Lespiau | 82ef822 | 2015-02-09 19:33:08 +0000 | [diff] [blame] | 1602 | } |
| 1603 | |
Chris Wilson | 4223221 | 2018-01-02 15:12:32 +0000 | [diff] [blame] | 1604 | static void reset_irq(struct intel_engine_cs *engine) |
| 1605 | { |
| 1606 | struct drm_i915_private *dev_priv = engine->i915; |
Chris Wilson | 274de87 | 2018-02-02 14:54:55 +0000 | [diff] [blame] | 1607 | int i; |
Chris Wilson | 4223221 | 2018-01-02 15:12:32 +0000 | [diff] [blame] | 1608 | |
Chris Wilson | e840130 | 2018-02-05 15:24:30 +0000 | [diff] [blame] | 1609 | GEM_BUG_ON(engine->id >= ARRAY_SIZE(gtiir)); |
| 1610 | |
Chris Wilson | 4223221 | 2018-01-02 15:12:32 +0000 | [diff] [blame] | 1611 | /* |
| 1612 | * Clear any pending interrupt state. |
| 1613 | * |
| 1614 | * We do it twice out of paranoia that some of the IIR are double |
| 1615 | * buffered, and if we only reset it once there may still be |
| 1616 | * an interrupt pending. |
| 1617 | */ |
Chris Wilson | 274de87 | 2018-02-02 14:54:55 +0000 | [diff] [blame] | 1618 | for (i = 0; i < 2; i++) { |
| 1619 | I915_WRITE(GEN8_GT_IIR(gtiir[engine->id]), |
| 1620 | GT_CONTEXT_SWITCH_INTERRUPT << engine->irq_shift); |
| 1621 | POSTING_READ(GEN8_GT_IIR(gtiir[engine->id])); |
| 1622 | } |
| 1623 | GEM_BUG_ON(I915_READ(GEN8_GT_IIR(gtiir[engine->id])) & |
| 1624 | (GT_CONTEXT_SWITCH_INTERRUPT << engine->irq_shift)); |
| 1625 | |
Chris Wilson | 4223221 | 2018-01-02 15:12:32 +0000 | [diff] [blame] | 1626 | clear_bit(ENGINE_IRQ_EXECLIST, &engine->irq_posted); |
| 1627 | } |
| 1628 | |
Chris Wilson | 821ed7d | 2016-09-09 14:11:53 +0100 | [diff] [blame] | 1629 | static void reset_common_ring(struct intel_engine_cs *engine, |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1630 | struct i915_request *request) |
Chris Wilson | 821ed7d | 2016-09-09 14:11:53 +0100 | [diff] [blame] | 1631 | { |
Mika Kuoppala | b620e87 | 2017-09-22 15:43:03 +0300 | [diff] [blame] | 1632 | struct intel_engine_execlists * const execlists = &engine->execlists; |
Chris Wilson | c0dcb20 | 2017-02-07 15:24:37 +0000 | [diff] [blame] | 1633 | struct intel_context *ce; |
Chris Wilson | 221ab9719 | 2017-09-16 21:44:14 +0100 | [diff] [blame] | 1634 | unsigned long flags; |
Chris Wilson | cdb6ded | 2017-07-21 13:32:22 +0100 | [diff] [blame] | 1635 | |
Chris Wilson | 16a8739 | 2017-12-20 09:06:26 +0000 | [diff] [blame] | 1636 | GEM_TRACE("%s seqno=%x\n", |
| 1637 | engine->name, request ? request->global_seqno : 0); |
Chris Wilson | 4223221 | 2018-01-02 15:12:32 +0000 | [diff] [blame] | 1638 | |
Chris Wilson | a3e3883 | 2018-03-02 14:32:45 +0000 | [diff] [blame^] | 1639 | /* See execlists_cancel_requests() for the irq/spinlock split. */ |
| 1640 | local_irq_save(flags); |
Chris Wilson | 221ab9719 | 2017-09-16 21:44:14 +0100 | [diff] [blame] | 1641 | |
Chris Wilson | aebbc2d | 2018-03-02 13:12:46 +0000 | [diff] [blame] | 1642 | reset_irq(engine); |
| 1643 | |
Chris Wilson | cdb6ded | 2017-07-21 13:32:22 +0100 | [diff] [blame] | 1644 | /* |
| 1645 | * Catch up with any missed context-switch interrupts. |
| 1646 | * |
| 1647 | * Ideally we would just read the remaining CSB entries now that we |
| 1648 | * know the gpu is idle. However, the CSB registers are sometimes^W |
| 1649 | * often trashed across a GPU reset! Instead we have to rely on |
| 1650 | * guessing the missed context-switch events by looking at what |
| 1651 | * requests were completed. |
| 1652 | */ |
Michał Winiarski | a4598d1 | 2017-10-25 22:00:18 +0200 | [diff] [blame] | 1653 | execlists_cancel_port_requests(execlists); |
Chris Wilson | 221ab9719 | 2017-09-16 21:44:14 +0100 | [diff] [blame] | 1654 | |
| 1655 | /* Push back any incomplete requests for replay after the reset. */ |
Chris Wilson | a3e3883 | 2018-03-02 14:32:45 +0000 | [diff] [blame^] | 1656 | spin_lock(&engine->timeline->lock); |
Michał Winiarski | a4598d1 | 2017-10-25 22:00:18 +0200 | [diff] [blame] | 1657 | __unwind_incomplete_requests(engine); |
Chris Wilson | a3e3883 | 2018-03-02 14:32:45 +0000 | [diff] [blame^] | 1658 | spin_unlock(&engine->timeline->lock); |
Chris Wilson | cdb6ded | 2017-07-21 13:32:22 +0100 | [diff] [blame] | 1659 | |
Chris Wilson | e840130 | 2018-02-05 15:24:30 +0000 | [diff] [blame] | 1660 | /* Mark all CS interrupts as complete */ |
| 1661 | execlists->active = 0; |
| 1662 | |
Chris Wilson | a3e3883 | 2018-03-02 14:32:45 +0000 | [diff] [blame^] | 1663 | local_irq_restore(flags); |
Chris Wilson | aebbc2d | 2018-03-02 13:12:46 +0000 | [diff] [blame] | 1664 | |
Chris Wilson | a3e3883 | 2018-03-02 14:32:45 +0000 | [diff] [blame^] | 1665 | /* |
| 1666 | * If the request was innocent, we leave the request in the ELSP |
Chris Wilson | c0dcb20 | 2017-02-07 15:24:37 +0000 | [diff] [blame] | 1667 | * and will try to replay it on restarting. The context image may |
| 1668 | * have been corrupted by the reset, in which case we may have |
| 1669 | * to service a new GPU hang, but more likely we can continue on |
| 1670 | * without impact. |
| 1671 | * |
| 1672 | * If the request was guilty, we presume the context is corrupt |
| 1673 | * and have to at least restore the RING register in the context |
| 1674 | * image back to the expected values to skip over the guilty request. |
| 1675 | */ |
Chris Wilson | 221ab9719 | 2017-09-16 21:44:14 +0100 | [diff] [blame] | 1676 | if (!request || request->fence.error != -EIO) |
Chris Wilson | c0dcb20 | 2017-02-07 15:24:37 +0000 | [diff] [blame] | 1677 | return; |
Chris Wilson | 821ed7d | 2016-09-09 14:11:53 +0100 | [diff] [blame] | 1678 | |
Chris Wilson | a3e3883 | 2018-03-02 14:32:45 +0000 | [diff] [blame^] | 1679 | /* |
| 1680 | * We want a simple context + ring to execute the breadcrumb update. |
Chris Wilson | a3aabe8 | 2016-10-04 21:11:26 +0100 | [diff] [blame] | 1681 | * We cannot rely on the context being intact across the GPU hang, |
| 1682 | * so clear it and rebuild just what we need for the breadcrumb. |
| 1683 | * All pending requests for this context will be zapped, and any |
| 1684 | * future request will be after userspace has had the opportunity |
| 1685 | * to recreate its own state. |
| 1686 | */ |
Chris Wilson | c0dcb20 | 2017-02-07 15:24:37 +0000 | [diff] [blame] | 1687 | ce = &request->ctx->engine[engine->id]; |
Chris Wilson | a3aabe8 | 2016-10-04 21:11:26 +0100 | [diff] [blame] | 1688 | execlists_init_reg_state(ce->lrc_reg_state, |
| 1689 | request->ctx, engine, ce->ring); |
| 1690 | |
Chris Wilson | 821ed7d | 2016-09-09 14:11:53 +0100 | [diff] [blame] | 1691 | /* Move the RING_HEAD onto the breadcrumb, past the hanging batch */ |
Chris Wilson | a3aabe8 | 2016-10-04 21:11:26 +0100 | [diff] [blame] | 1692 | ce->lrc_reg_state[CTX_RING_BUFFER_START+1] = |
| 1693 | i915_ggtt_offset(ce->ring->vma); |
Chris Wilson | 821ed7d | 2016-09-09 14:11:53 +0100 | [diff] [blame] | 1694 | ce->lrc_reg_state[CTX_RING_HEAD+1] = request->postfix; |
Chris Wilson | a3aabe8 | 2016-10-04 21:11:26 +0100 | [diff] [blame] | 1695 | |
Chris Wilson | 821ed7d | 2016-09-09 14:11:53 +0100 | [diff] [blame] | 1696 | request->ring->head = request->postfix; |
Chris Wilson | 821ed7d | 2016-09-09 14:11:53 +0100 | [diff] [blame] | 1697 | intel_ring_update_space(request->ring); |
| 1698 | |
Chris Wilson | a3aabe8 | 2016-10-04 21:11:26 +0100 | [diff] [blame] | 1699 | /* Reset WaIdleLiteRestore:bdw,skl as well */ |
Chris Wilson | 7e4992a | 2017-09-28 20:38:59 +0100 | [diff] [blame] | 1700 | unwind_wa_tail(request); |
Chris Wilson | 821ed7d | 2016-09-09 14:11:53 +0100 | [diff] [blame] | 1701 | } |
| 1702 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1703 | static int intel_logical_ring_emit_pdps(struct i915_request *rq) |
Michel Thierry | 7a01a0a | 2015-06-26 13:46:14 +0100 | [diff] [blame] | 1704 | { |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1705 | struct i915_hw_ppgtt *ppgtt = rq->ctx->ppgtt; |
| 1706 | struct intel_engine_cs *engine = rq->engine; |
Mika Kuoppala | e716776 | 2017-02-28 17:28:10 +0200 | [diff] [blame] | 1707 | const int num_lri_cmds = GEN8_3LVL_PDPES * 2; |
Tvrtko Ursulin | 73dec95 | 2017-02-14 11:32:42 +0000 | [diff] [blame] | 1708 | u32 *cs; |
| 1709 | int i; |
Michel Thierry | 7a01a0a | 2015-06-26 13:46:14 +0100 | [diff] [blame] | 1710 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1711 | cs = intel_ring_begin(rq, num_lri_cmds * 2 + 2); |
Tvrtko Ursulin | 73dec95 | 2017-02-14 11:32:42 +0000 | [diff] [blame] | 1712 | if (IS_ERR(cs)) |
| 1713 | return PTR_ERR(cs); |
Michel Thierry | 7a01a0a | 2015-06-26 13:46:14 +0100 | [diff] [blame] | 1714 | |
Tvrtko Ursulin | 73dec95 | 2017-02-14 11:32:42 +0000 | [diff] [blame] | 1715 | *cs++ = MI_LOAD_REGISTER_IMM(num_lri_cmds); |
Mika Kuoppala | e716776 | 2017-02-28 17:28:10 +0200 | [diff] [blame] | 1716 | for (i = GEN8_3LVL_PDPES - 1; i >= 0; i--) { |
Michel Thierry | 7a01a0a | 2015-06-26 13:46:14 +0100 | [diff] [blame] | 1717 | const dma_addr_t pd_daddr = i915_page_dir_dma_addr(ppgtt, i); |
| 1718 | |
Tvrtko Ursulin | 73dec95 | 2017-02-14 11:32:42 +0000 | [diff] [blame] | 1719 | *cs++ = i915_mmio_reg_offset(GEN8_RING_PDP_UDW(engine, i)); |
| 1720 | *cs++ = upper_32_bits(pd_daddr); |
| 1721 | *cs++ = i915_mmio_reg_offset(GEN8_RING_PDP_LDW(engine, i)); |
| 1722 | *cs++ = lower_32_bits(pd_daddr); |
Michel Thierry | 7a01a0a | 2015-06-26 13:46:14 +0100 | [diff] [blame] | 1723 | } |
| 1724 | |
Tvrtko Ursulin | 73dec95 | 2017-02-14 11:32:42 +0000 | [diff] [blame] | 1725 | *cs++ = MI_NOOP; |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1726 | intel_ring_advance(rq, cs); |
Michel Thierry | 7a01a0a | 2015-06-26 13:46:14 +0100 | [diff] [blame] | 1727 | |
| 1728 | return 0; |
| 1729 | } |
| 1730 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1731 | static int gen8_emit_bb_start(struct i915_request *rq, |
Chris Wilson | 803688b | 2016-08-02 22:50:27 +0100 | [diff] [blame] | 1732 | u64 offset, u32 len, |
Mika Kuoppala | 54af56d | 2017-02-28 17:28:08 +0200 | [diff] [blame] | 1733 | const unsigned int flags) |
Oscar Mateo | 1564858 | 2014-07-24 17:04:32 +0100 | [diff] [blame] | 1734 | { |
Tvrtko Ursulin | 73dec95 | 2017-02-14 11:32:42 +0000 | [diff] [blame] | 1735 | u32 *cs; |
Oscar Mateo | 1564858 | 2014-07-24 17:04:32 +0100 | [diff] [blame] | 1736 | int ret; |
| 1737 | |
Michel Thierry | 7a01a0a | 2015-06-26 13:46:14 +0100 | [diff] [blame] | 1738 | /* Don't rely in hw updating PDPs, specially in lite-restore. |
| 1739 | * Ideally, we should set Force PD Restore in ctx descriptor, |
| 1740 | * but we can't. Force Restore would be a second option, but |
| 1741 | * it is unsafe in case of lite-restore (because the ctx is |
Michel Thierry | 2dba323 | 2015-07-30 11:06:23 +0100 | [diff] [blame] | 1742 | * not idle). PML4 is allocated during ppgtt init so this is |
| 1743 | * not needed in 48-bit.*/ |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1744 | if (rq->ctx->ppgtt && |
| 1745 | (intel_engine_flag(rq->engine) & rq->ctx->ppgtt->pd_dirty_rings) && |
| 1746 | !i915_vm_is_48bit(&rq->ctx->ppgtt->base) && |
| 1747 | !intel_vgpu_active(rq->i915)) { |
| 1748 | ret = intel_logical_ring_emit_pdps(rq); |
Mika Kuoppala | 54af56d | 2017-02-28 17:28:08 +0200 | [diff] [blame] | 1749 | if (ret) |
| 1750 | return ret; |
Michel Thierry | 7a01a0a | 2015-06-26 13:46:14 +0100 | [diff] [blame] | 1751 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1752 | rq->ctx->ppgtt->pd_dirty_rings &= ~intel_engine_flag(rq->engine); |
Michel Thierry | 7a01a0a | 2015-06-26 13:46:14 +0100 | [diff] [blame] | 1753 | } |
| 1754 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1755 | cs = intel_ring_begin(rq, 4); |
Tvrtko Ursulin | 73dec95 | 2017-02-14 11:32:42 +0000 | [diff] [blame] | 1756 | if (IS_ERR(cs)) |
| 1757 | return PTR_ERR(cs); |
Oscar Mateo | 1564858 | 2014-07-24 17:04:32 +0100 | [diff] [blame] | 1758 | |
Chris Wilson | 279f5a0 | 2017-10-05 20:10:05 +0100 | [diff] [blame] | 1759 | /* |
| 1760 | * WaDisableCtxRestoreArbitration:bdw,chv |
| 1761 | * |
| 1762 | * We don't need to perform MI_ARB_ENABLE as often as we do (in |
| 1763 | * particular all the gen that do not need the w/a at all!), if we |
| 1764 | * took care to make sure that on every switch into this context |
| 1765 | * (both ordinary and for preemption) that arbitrartion was enabled |
| 1766 | * we would be fine. However, there doesn't seem to be a downside to |
| 1767 | * being paranoid and making sure it is set before each batch and |
| 1768 | * every context-switch. |
| 1769 | * |
| 1770 | * Note that if we fail to enable arbitration before the request |
| 1771 | * is complete, then we do not see the context-switch interrupt and |
| 1772 | * the engine hangs (with RING_HEAD == RING_TAIL). |
| 1773 | * |
| 1774 | * That satisfies both the GPGPU w/a and our heavy-handed paranoia. |
| 1775 | */ |
Chris Wilson | 3ad7b52 | 2017-10-03 21:34:49 +0100 | [diff] [blame] | 1776 | *cs++ = MI_ARB_ON_OFF | MI_ARB_ENABLE; |
| 1777 | |
Oscar Mateo | 1564858 | 2014-07-24 17:04:32 +0100 | [diff] [blame] | 1778 | /* FIXME(BDW): Address space and security selectors. */ |
Mika Kuoppala | 54af56d | 2017-02-28 17:28:08 +0200 | [diff] [blame] | 1779 | *cs++ = MI_BATCH_BUFFER_START_GEN8 | |
| 1780 | (flags & I915_DISPATCH_SECURE ? 0 : BIT(8)) | |
| 1781 | (flags & I915_DISPATCH_RS ? MI_BATCH_RESOURCE_STREAMER : 0); |
Tvrtko Ursulin | 73dec95 | 2017-02-14 11:32:42 +0000 | [diff] [blame] | 1782 | *cs++ = lower_32_bits(offset); |
| 1783 | *cs++ = upper_32_bits(offset); |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1784 | intel_ring_advance(rq, cs); |
Oscar Mateo | 1564858 | 2014-07-24 17:04:32 +0100 | [diff] [blame] | 1785 | |
| 1786 | return 0; |
| 1787 | } |
| 1788 | |
Chris Wilson | 31bb59c | 2016-07-01 17:23:27 +0100 | [diff] [blame] | 1789 | static void gen8_logical_ring_enable_irq(struct intel_engine_cs *engine) |
Oscar Mateo | 73d477f | 2014-07-24 17:04:31 +0100 | [diff] [blame] | 1790 | { |
Chris Wilson | c033666 | 2016-05-06 15:40:21 +0100 | [diff] [blame] | 1791 | struct drm_i915_private *dev_priv = engine->i915; |
Chris Wilson | 31bb59c | 2016-07-01 17:23:27 +0100 | [diff] [blame] | 1792 | I915_WRITE_IMR(engine, |
| 1793 | ~(engine->irq_enable_mask | engine->irq_keep_mask)); |
| 1794 | POSTING_READ_FW(RING_IMR(engine->mmio_base)); |
Oscar Mateo | 73d477f | 2014-07-24 17:04:31 +0100 | [diff] [blame] | 1795 | } |
| 1796 | |
Chris Wilson | 31bb59c | 2016-07-01 17:23:27 +0100 | [diff] [blame] | 1797 | static void gen8_logical_ring_disable_irq(struct intel_engine_cs *engine) |
Oscar Mateo | 73d477f | 2014-07-24 17:04:31 +0100 | [diff] [blame] | 1798 | { |
Chris Wilson | c033666 | 2016-05-06 15:40:21 +0100 | [diff] [blame] | 1799 | struct drm_i915_private *dev_priv = engine->i915; |
Chris Wilson | 31bb59c | 2016-07-01 17:23:27 +0100 | [diff] [blame] | 1800 | I915_WRITE_IMR(engine, ~engine->irq_keep_mask); |
Oscar Mateo | 73d477f | 2014-07-24 17:04:31 +0100 | [diff] [blame] | 1801 | } |
| 1802 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1803 | static int gen8_emit_flush(struct i915_request *request, u32 mode) |
Oscar Mateo | 4712274 | 2014-07-24 17:04:28 +0100 | [diff] [blame] | 1804 | { |
Tvrtko Ursulin | 73dec95 | 2017-02-14 11:32:42 +0000 | [diff] [blame] | 1805 | u32 cmd, *cs; |
Oscar Mateo | 4712274 | 2014-07-24 17:04:28 +0100 | [diff] [blame] | 1806 | |
Tvrtko Ursulin | 73dec95 | 2017-02-14 11:32:42 +0000 | [diff] [blame] | 1807 | cs = intel_ring_begin(request, 4); |
| 1808 | if (IS_ERR(cs)) |
| 1809 | return PTR_ERR(cs); |
Oscar Mateo | 4712274 | 2014-07-24 17:04:28 +0100 | [diff] [blame] | 1810 | |
| 1811 | cmd = MI_FLUSH_DW + 1; |
| 1812 | |
Chris Wilson | f0a1fb1 | 2015-01-22 13:42:00 +0000 | [diff] [blame] | 1813 | /* We always require a command barrier so that subsequent |
| 1814 | * commands, such as breadcrumb interrupts, are strictly ordered |
| 1815 | * wrt the contents of the write cache being flushed to memory |
| 1816 | * (and thus being coherent from the CPU). |
| 1817 | */ |
| 1818 | cmd |= MI_FLUSH_DW_STORE_INDEX | MI_FLUSH_DW_OP_STOREDW; |
| 1819 | |
Chris Wilson | 7c9cf4e | 2016-08-02 22:50:25 +0100 | [diff] [blame] | 1820 | if (mode & EMIT_INVALIDATE) { |
Chris Wilson | f0a1fb1 | 2015-01-22 13:42:00 +0000 | [diff] [blame] | 1821 | cmd |= MI_INVALIDATE_TLB; |
Chris Wilson | 1dae2df | 2016-08-02 22:50:19 +0100 | [diff] [blame] | 1822 | if (request->engine->id == VCS) |
Chris Wilson | f0a1fb1 | 2015-01-22 13:42:00 +0000 | [diff] [blame] | 1823 | cmd |= MI_INVALIDATE_BSD; |
Oscar Mateo | 4712274 | 2014-07-24 17:04:28 +0100 | [diff] [blame] | 1824 | } |
| 1825 | |
Tvrtko Ursulin | 73dec95 | 2017-02-14 11:32:42 +0000 | [diff] [blame] | 1826 | *cs++ = cmd; |
| 1827 | *cs++ = I915_GEM_HWS_SCRATCH_ADDR | MI_FLUSH_DW_USE_GTT; |
| 1828 | *cs++ = 0; /* upper addr */ |
| 1829 | *cs++ = 0; /* value */ |
| 1830 | intel_ring_advance(request, cs); |
Oscar Mateo | 4712274 | 2014-07-24 17:04:28 +0100 | [diff] [blame] | 1831 | |
| 1832 | return 0; |
| 1833 | } |
| 1834 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1835 | static int gen8_emit_flush_render(struct i915_request *request, |
Chris Wilson | 7c9cf4e | 2016-08-02 22:50:25 +0100 | [diff] [blame] | 1836 | u32 mode) |
Oscar Mateo | 4712274 | 2014-07-24 17:04:28 +0100 | [diff] [blame] | 1837 | { |
Chris Wilson | b5321f3 | 2016-08-02 22:50:18 +0100 | [diff] [blame] | 1838 | struct intel_engine_cs *engine = request->engine; |
Chris Wilson | bde13eb | 2016-08-15 10:49:07 +0100 | [diff] [blame] | 1839 | u32 scratch_addr = |
| 1840 | i915_ggtt_offset(engine->scratch) + 2 * CACHELINE_BYTES; |
Mika Kuoppala | 0b2d093 | 2016-06-07 17:19:10 +0300 | [diff] [blame] | 1841 | bool vf_flush_wa = false, dc_flush_wa = false; |
Tvrtko Ursulin | 73dec95 | 2017-02-14 11:32:42 +0000 | [diff] [blame] | 1842 | u32 *cs, flags = 0; |
Mika Kuoppala | 0b2d093 | 2016-06-07 17:19:10 +0300 | [diff] [blame] | 1843 | int len; |
Oscar Mateo | 4712274 | 2014-07-24 17:04:28 +0100 | [diff] [blame] | 1844 | |
| 1845 | flags |= PIPE_CONTROL_CS_STALL; |
| 1846 | |
Chris Wilson | 7c9cf4e | 2016-08-02 22:50:25 +0100 | [diff] [blame] | 1847 | if (mode & EMIT_FLUSH) { |
Oscar Mateo | 4712274 | 2014-07-24 17:04:28 +0100 | [diff] [blame] | 1848 | flags |= PIPE_CONTROL_RENDER_TARGET_CACHE_FLUSH; |
| 1849 | flags |= PIPE_CONTROL_DEPTH_CACHE_FLUSH; |
Francisco Jerez | 965fd60 | 2016-01-13 18:59:39 -0800 | [diff] [blame] | 1850 | flags |= PIPE_CONTROL_DC_FLUSH_ENABLE; |
Chris Wilson | 40a2448 | 2015-08-21 16:08:41 +0100 | [diff] [blame] | 1851 | flags |= PIPE_CONTROL_FLUSH_ENABLE; |
Oscar Mateo | 4712274 | 2014-07-24 17:04:28 +0100 | [diff] [blame] | 1852 | } |
| 1853 | |
Chris Wilson | 7c9cf4e | 2016-08-02 22:50:25 +0100 | [diff] [blame] | 1854 | if (mode & EMIT_INVALIDATE) { |
Oscar Mateo | 4712274 | 2014-07-24 17:04:28 +0100 | [diff] [blame] | 1855 | flags |= PIPE_CONTROL_TLB_INVALIDATE; |
| 1856 | flags |= PIPE_CONTROL_INSTRUCTION_CACHE_INVALIDATE; |
| 1857 | flags |= PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE; |
| 1858 | flags |= PIPE_CONTROL_VF_CACHE_INVALIDATE; |
| 1859 | flags |= PIPE_CONTROL_CONST_CACHE_INVALIDATE; |
| 1860 | flags |= PIPE_CONTROL_STATE_CACHE_INVALIDATE; |
| 1861 | flags |= PIPE_CONTROL_QW_WRITE; |
| 1862 | flags |= PIPE_CONTROL_GLOBAL_GTT_IVB; |
Oscar Mateo | 4712274 | 2014-07-24 17:04:28 +0100 | [diff] [blame] | 1863 | |
Ben Widawsky | 1a5a9ce | 2015-12-17 09:49:57 -0800 | [diff] [blame] | 1864 | /* |
| 1865 | * On GEN9: before VF_CACHE_INVALIDATE we need to emit a NULL |
| 1866 | * pipe control. |
| 1867 | */ |
Chris Wilson | c033666 | 2016-05-06 15:40:21 +0100 | [diff] [blame] | 1868 | if (IS_GEN9(request->i915)) |
Ben Widawsky | 1a5a9ce | 2015-12-17 09:49:57 -0800 | [diff] [blame] | 1869 | vf_flush_wa = true; |
Mika Kuoppala | 0b2d093 | 2016-06-07 17:19:10 +0300 | [diff] [blame] | 1870 | |
| 1871 | /* WaForGAMHang:kbl */ |
| 1872 | if (IS_KBL_REVID(request->i915, 0, KBL_REVID_B0)) |
| 1873 | dc_flush_wa = true; |
Ben Widawsky | 1a5a9ce | 2015-12-17 09:49:57 -0800 | [diff] [blame] | 1874 | } |
Imre Deak | 9647ff3 | 2015-01-25 13:27:11 -0800 | [diff] [blame] | 1875 | |
Mika Kuoppala | 0b2d093 | 2016-06-07 17:19:10 +0300 | [diff] [blame] | 1876 | len = 6; |
| 1877 | |
| 1878 | if (vf_flush_wa) |
| 1879 | len += 6; |
| 1880 | |
| 1881 | if (dc_flush_wa) |
| 1882 | len += 12; |
| 1883 | |
Tvrtko Ursulin | 73dec95 | 2017-02-14 11:32:42 +0000 | [diff] [blame] | 1884 | cs = intel_ring_begin(request, len); |
| 1885 | if (IS_ERR(cs)) |
| 1886 | return PTR_ERR(cs); |
Oscar Mateo | 4712274 | 2014-07-24 17:04:28 +0100 | [diff] [blame] | 1887 | |
Tvrtko Ursulin | 9f235df | 2017-02-16 12:23:25 +0000 | [diff] [blame] | 1888 | if (vf_flush_wa) |
| 1889 | cs = gen8_emit_pipe_control(cs, 0, 0); |
Imre Deak | 9647ff3 | 2015-01-25 13:27:11 -0800 | [diff] [blame] | 1890 | |
Tvrtko Ursulin | 9f235df | 2017-02-16 12:23:25 +0000 | [diff] [blame] | 1891 | if (dc_flush_wa) |
| 1892 | cs = gen8_emit_pipe_control(cs, PIPE_CONTROL_DC_FLUSH_ENABLE, |
| 1893 | 0); |
Mika Kuoppala | 0b2d093 | 2016-06-07 17:19:10 +0300 | [diff] [blame] | 1894 | |
Tvrtko Ursulin | 9f235df | 2017-02-16 12:23:25 +0000 | [diff] [blame] | 1895 | cs = gen8_emit_pipe_control(cs, flags, scratch_addr); |
Mika Kuoppala | 0b2d093 | 2016-06-07 17:19:10 +0300 | [diff] [blame] | 1896 | |
Tvrtko Ursulin | 9f235df | 2017-02-16 12:23:25 +0000 | [diff] [blame] | 1897 | if (dc_flush_wa) |
| 1898 | cs = gen8_emit_pipe_control(cs, PIPE_CONTROL_CS_STALL, 0); |
Mika Kuoppala | 0b2d093 | 2016-06-07 17:19:10 +0300 | [diff] [blame] | 1899 | |
Tvrtko Ursulin | 73dec95 | 2017-02-14 11:32:42 +0000 | [diff] [blame] | 1900 | intel_ring_advance(request, cs); |
Oscar Mateo | 4712274 | 2014-07-24 17:04:28 +0100 | [diff] [blame] | 1901 | |
| 1902 | return 0; |
| 1903 | } |
| 1904 | |
Chris Wilson | 7c17d37 | 2016-01-20 15:43:35 +0200 | [diff] [blame] | 1905 | /* |
| 1906 | * Reserve space for 2 NOOPs at the end of each request to be |
| 1907 | * used as a workaround for not being allowed to do lite |
| 1908 | * restore with HEAD==TAIL (WaIdleLiteRestore). |
| 1909 | */ |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1910 | static void gen8_emit_wa_tail(struct i915_request *request, u32 *cs) |
Oscar Mateo | 4da46e1 | 2014-07-24 17:04:27 +0100 | [diff] [blame] | 1911 | { |
Chris Wilson | beecec9 | 2017-10-03 21:34:52 +0100 | [diff] [blame] | 1912 | /* Ensure there's always at least one preemption point per-request. */ |
| 1913 | *cs++ = MI_ARB_CHECK; |
Tvrtko Ursulin | 73dec95 | 2017-02-14 11:32:42 +0000 | [diff] [blame] | 1914 | *cs++ = MI_NOOP; |
| 1915 | request->wa_tail = intel_ring_offset(request, cs); |
Chris Wilson | caddfe7 | 2016-10-28 13:58:52 +0100 | [diff] [blame] | 1916 | } |
Oscar Mateo | 4da46e1 | 2014-07-24 17:04:27 +0100 | [diff] [blame] | 1917 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1918 | static void gen8_emit_breadcrumb(struct i915_request *request, u32 *cs) |
Chris Wilson | caddfe7 | 2016-10-28 13:58:52 +0100 | [diff] [blame] | 1919 | { |
Chris Wilson | 7c17d37 | 2016-01-20 15:43:35 +0200 | [diff] [blame] | 1920 | /* w/a: bit 5 needs to be zero for MI_FLUSH_DW address. */ |
| 1921 | BUILD_BUG_ON(I915_GEM_HWS_INDEX_ADDR & (1 << 5)); |
Oscar Mateo | 4da46e1 | 2014-07-24 17:04:27 +0100 | [diff] [blame] | 1922 | |
Michał Winiarski | df77cd8 | 2017-10-25 22:00:15 +0200 | [diff] [blame] | 1923 | cs = gen8_emit_ggtt_write(cs, request->global_seqno, |
| 1924 | intel_hws_seqno_address(request->engine)); |
Tvrtko Ursulin | 73dec95 | 2017-02-14 11:32:42 +0000 | [diff] [blame] | 1925 | *cs++ = MI_USER_INTERRUPT; |
| 1926 | *cs++ = MI_NOOP; |
| 1927 | request->tail = intel_ring_offset(request, cs); |
Chris Wilson | ed1501d | 2017-03-27 14:14:12 +0100 | [diff] [blame] | 1928 | assert_ring_tail_valid(request->ring, request->tail); |
Chris Wilson | caddfe7 | 2016-10-28 13:58:52 +0100 | [diff] [blame] | 1929 | |
Tvrtko Ursulin | 73dec95 | 2017-02-14 11:32:42 +0000 | [diff] [blame] | 1930 | gen8_emit_wa_tail(request, cs); |
Chris Wilson | 7c17d37 | 2016-01-20 15:43:35 +0200 | [diff] [blame] | 1931 | } |
Chris Wilson | 98f29e8 | 2016-10-28 13:58:51 +0100 | [diff] [blame] | 1932 | static const int gen8_emit_breadcrumb_sz = 6 + WA_TAIL_DWORDS; |
| 1933 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1934 | static void gen8_emit_breadcrumb_rcs(struct i915_request *request, u32 *cs) |
Chris Wilson | 7c17d37 | 2016-01-20 15:43:35 +0200 | [diff] [blame] | 1935 | { |
Michał Winiarski | ce81a65 | 2016-04-12 15:51:55 +0200 | [diff] [blame] | 1936 | /* We're using qword write, seqno should be aligned to 8 bytes. */ |
| 1937 | BUILD_BUG_ON(I915_GEM_HWS_INDEX & 1); |
| 1938 | |
Michał Winiarski | df77cd8 | 2017-10-25 22:00:15 +0200 | [diff] [blame] | 1939 | cs = gen8_emit_ggtt_write_rcs(cs, request->global_seqno, |
| 1940 | intel_hws_seqno_address(request->engine)); |
Tvrtko Ursulin | 73dec95 | 2017-02-14 11:32:42 +0000 | [diff] [blame] | 1941 | *cs++ = MI_USER_INTERRUPT; |
| 1942 | *cs++ = MI_NOOP; |
| 1943 | request->tail = intel_ring_offset(request, cs); |
Chris Wilson | ed1501d | 2017-03-27 14:14:12 +0100 | [diff] [blame] | 1944 | assert_ring_tail_valid(request->ring, request->tail); |
Chris Wilson | caddfe7 | 2016-10-28 13:58:52 +0100 | [diff] [blame] | 1945 | |
Tvrtko Ursulin | 73dec95 | 2017-02-14 11:32:42 +0000 | [diff] [blame] | 1946 | gen8_emit_wa_tail(request, cs); |
Oscar Mateo | 4da46e1 | 2014-07-24 17:04:27 +0100 | [diff] [blame] | 1947 | } |
Michał Winiarski | df77cd8 | 2017-10-25 22:00:15 +0200 | [diff] [blame] | 1948 | static const int gen8_emit_breadcrumb_rcs_sz = 8 + WA_TAIL_DWORDS; |
Chris Wilson | 98f29e8 | 2016-10-28 13:58:51 +0100 | [diff] [blame] | 1949 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1950 | static int gen8_init_rcs_context(struct i915_request *rq) |
Thomas Daniel | e7778be | 2014-12-02 12:50:48 +0000 | [diff] [blame] | 1951 | { |
| 1952 | int ret; |
| 1953 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1954 | ret = intel_ring_workarounds_emit(rq); |
Thomas Daniel | e7778be | 2014-12-02 12:50:48 +0000 | [diff] [blame] | 1955 | if (ret) |
| 1956 | return ret; |
| 1957 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1958 | ret = intel_rcs_context_init_mocs(rq); |
Peter Antoine | 3bbaba0 | 2015-07-10 20:13:11 +0300 | [diff] [blame] | 1959 | /* |
| 1960 | * Failing to program the MOCS is non-fatal.The system will not |
| 1961 | * run at peak performance. So generate an error and carry on. |
| 1962 | */ |
| 1963 | if (ret) |
| 1964 | DRM_ERROR("MOCS failed to program: expect performance issues.\n"); |
| 1965 | |
Chris Wilson | e61e0f5 | 2018-02-21 09:56:36 +0000 | [diff] [blame] | 1966 | return i915_gem_render_state_emit(rq); |
Thomas Daniel | e7778be | 2014-12-02 12:50:48 +0000 | [diff] [blame] | 1967 | } |
| 1968 | |
Oscar Mateo | 73e4d07 | 2014-07-24 17:04:48 +0100 | [diff] [blame] | 1969 | /** |
| 1970 | * intel_logical_ring_cleanup() - deallocate the Engine Command Streamer |
Tvrtko Ursulin | 14bb2c1 | 2016-06-03 14:02:17 +0100 | [diff] [blame] | 1971 | * @engine: Engine Command Streamer. |
Oscar Mateo | 73e4d07 | 2014-07-24 17:04:48 +0100 | [diff] [blame] | 1972 | */ |
Tvrtko Ursulin | 0bc40be | 2016-03-16 11:00:37 +0000 | [diff] [blame] | 1973 | void intel_logical_ring_cleanup(struct intel_engine_cs *engine) |
Oscar Mateo | 454afeb | 2014-07-24 17:04:22 +0100 | [diff] [blame] | 1974 | { |
John Harrison | 6402c33 | 2014-10-31 12:00:26 +0000 | [diff] [blame] | 1975 | struct drm_i915_private *dev_priv; |
Oscar Mateo | 9832b9d | 2014-07-24 17:04:30 +0100 | [diff] [blame] | 1976 | |
Tvrtko Ursulin | 27af5ee | 2016-04-04 12:11:56 +0100 | [diff] [blame] | 1977 | /* |
| 1978 | * Tasklet cannot be active at this point due intel_mark_active/idle |
| 1979 | * so this is just for documentation. |
| 1980 | */ |
Sagar Arun Kamble | c6dce8f | 2017-11-16 19:02:37 +0530 | [diff] [blame] | 1981 | if (WARN_ON(test_bit(TASKLET_STATE_SCHED, |
| 1982 | &engine->execlists.tasklet.state))) |
| 1983 | tasklet_kill(&engine->execlists.tasklet); |
Tvrtko Ursulin | 27af5ee | 2016-04-04 12:11:56 +0100 | [diff] [blame] | 1984 | |
Chris Wilson | c033666 | 2016-05-06 15:40:21 +0100 | [diff] [blame] | 1985 | dev_priv = engine->i915; |
John Harrison | 6402c33 | 2014-10-31 12:00:26 +0000 | [diff] [blame] | 1986 | |
Tvrtko Ursulin | 0bc40be | 2016-03-16 11:00:37 +0000 | [diff] [blame] | 1987 | if (engine->buffer) { |
Tvrtko Ursulin | 0bc40be | 2016-03-16 11:00:37 +0000 | [diff] [blame] | 1988 | WARN_ON((I915_READ_MODE(engine) & MODE_IDLE) == 0); |
Dave Gordon | b0366a5 | 2015-12-08 15:02:36 +0000 | [diff] [blame] | 1989 | } |
Oscar Mateo | 48d8238 | 2014-07-24 17:04:23 +0100 | [diff] [blame] | 1990 | |
Tvrtko Ursulin | 0bc40be | 2016-03-16 11:00:37 +0000 | [diff] [blame] | 1991 | if (engine->cleanup) |
| 1992 | engine->cleanup(engine); |
Oscar Mateo | 48d8238 | 2014-07-24 17:04:23 +0100 | [diff] [blame] | 1993 | |
Chris Wilson | e8a9c58 | 2016-12-18 15:37:20 +0000 | [diff] [blame] | 1994 | intel_engine_cleanup_common(engine); |
Arun Siluvery | 17ee950 | 2015-06-19 19:07:01 +0100 | [diff] [blame] | 1995 | |
Tvrtko Ursulin | 097d4f1 | 2017-02-17 07:58:59 +0000 | [diff] [blame] | 1996 | lrc_destroy_wa_ctx(engine); |
Chris Wilson | f3c9d407 | 2018-01-02 15:12:34 +0000 | [diff] [blame] | 1997 | |
Chris Wilson | c033666 | 2016-05-06 15:40:21 +0100 | [diff] [blame] | 1998 | engine->i915 = NULL; |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 1999 | dev_priv->engine[engine->id] = NULL; |
| 2000 | kfree(engine); |
Oscar Mateo | 454afeb | 2014-07-24 17:04:22 +0100 | [diff] [blame] | 2001 | } |
| 2002 | |
Chris Wilson | ff44ad5 | 2017-03-16 17:13:03 +0000 | [diff] [blame] | 2003 | static void execlists_set_default_submission(struct intel_engine_cs *engine) |
Chris Wilson | ddd66c5 | 2016-08-02 22:50:31 +0100 | [diff] [blame] | 2004 | { |
Chris Wilson | ff44ad5 | 2017-03-16 17:13:03 +0000 | [diff] [blame] | 2005 | engine->submit_request = execlists_submit_request; |
Chris Wilson | 27a5f61 | 2017-09-15 18:31:00 +0100 | [diff] [blame] | 2006 | engine->cancel_requests = execlists_cancel_requests; |
Chris Wilson | ff44ad5 | 2017-03-16 17:13:03 +0000 | [diff] [blame] | 2007 | engine->schedule = execlists_schedule; |
Sagar Arun Kamble | c6dce8f | 2017-11-16 19:02:37 +0530 | [diff] [blame] | 2008 | engine->execlists.tasklet.func = execlists_submission_tasklet; |
Chris Wilson | aba5e27 | 2017-10-25 15:39:41 +0100 | [diff] [blame] | 2009 | |
| 2010 | engine->park = NULL; |
| 2011 | engine->unpark = NULL; |
Tvrtko Ursulin | cf669b4 | 2017-11-29 10:28:05 +0000 | [diff] [blame] | 2012 | |
| 2013 | engine->flags |= I915_ENGINE_SUPPORTS_STATS; |
Chris Wilson | 3fed180 | 2018-02-07 21:05:43 +0000 | [diff] [blame] | 2014 | |
| 2015 | engine->i915->caps.scheduler = |
| 2016 | I915_SCHEDULER_CAP_ENABLED | |
| 2017 | I915_SCHEDULER_CAP_PRIORITY; |
Chris Wilson | d637637 | 2018-02-07 21:05:44 +0000 | [diff] [blame] | 2018 | if (engine->i915->preempt_context) |
Chris Wilson | 3fed180 | 2018-02-07 21:05:43 +0000 | [diff] [blame] | 2019 | engine->i915->caps.scheduler |= I915_SCHEDULER_CAP_PREEMPTION; |
Chris Wilson | ddd66c5 | 2016-08-02 22:50:31 +0100 | [diff] [blame] | 2020 | } |
| 2021 | |
Tvrtko Ursulin | c9cacf9 | 2016-01-12 17:32:34 +0000 | [diff] [blame] | 2022 | static void |
Chris Wilson | e1382ef | 2016-05-06 15:40:20 +0100 | [diff] [blame] | 2023 | logical_ring_default_vfuncs(struct intel_engine_cs *engine) |
Tvrtko Ursulin | c9cacf9 | 2016-01-12 17:32:34 +0000 | [diff] [blame] | 2024 | { |
| 2025 | /* Default vfuncs which can be overriden by each engine. */ |
Tvrtko Ursulin | 0bc40be | 2016-03-16 11:00:37 +0000 | [diff] [blame] | 2026 | engine->init_hw = gen8_init_common_ring; |
Chris Wilson | 821ed7d | 2016-09-09 14:11:53 +0100 | [diff] [blame] | 2027 | engine->reset_hw = reset_common_ring; |
Chris Wilson | e8a9c58 | 2016-12-18 15:37:20 +0000 | [diff] [blame] | 2028 | |
| 2029 | engine->context_pin = execlists_context_pin; |
| 2030 | engine->context_unpin = execlists_context_unpin; |
| 2031 | |
Chris Wilson | f73e739 | 2016-12-18 15:37:24 +0000 | [diff] [blame] | 2032 | engine->request_alloc = execlists_request_alloc; |
| 2033 | |
Tvrtko Ursulin | 0bc40be | 2016-03-16 11:00:37 +0000 | [diff] [blame] | 2034 | engine->emit_flush = gen8_emit_flush; |
Chris Wilson | 9b81d55 | 2016-10-28 13:58:50 +0100 | [diff] [blame] | 2035 | engine->emit_breadcrumb = gen8_emit_breadcrumb; |
Chris Wilson | 98f29e8 | 2016-10-28 13:58:51 +0100 | [diff] [blame] | 2036 | engine->emit_breadcrumb_sz = gen8_emit_breadcrumb_sz; |
Chris Wilson | ff44ad5 | 2017-03-16 17:13:03 +0000 | [diff] [blame] | 2037 | |
| 2038 | engine->set_default_submission = execlists_set_default_submission; |
Chris Wilson | ddd66c5 | 2016-08-02 22:50:31 +0100 | [diff] [blame] | 2039 | |
Chris Wilson | 31bb59c | 2016-07-01 17:23:27 +0100 | [diff] [blame] | 2040 | engine->irq_enable = gen8_logical_ring_enable_irq; |
| 2041 | engine->irq_disable = gen8_logical_ring_disable_irq; |
Tvrtko Ursulin | 0bc40be | 2016-03-16 11:00:37 +0000 | [diff] [blame] | 2042 | engine->emit_bb_start = gen8_emit_bb_start; |
Tvrtko Ursulin | c9cacf9 | 2016-01-12 17:32:34 +0000 | [diff] [blame] | 2043 | } |
| 2044 | |
Tvrtko Ursulin | d9f3af9 | 2016-01-12 17:32:35 +0000 | [diff] [blame] | 2045 | static inline void |
Dave Gordon | c2c7f24 | 2016-07-13 16:03:35 +0100 | [diff] [blame] | 2046 | logical_ring_default_irqs(struct intel_engine_cs *engine) |
Tvrtko Ursulin | d9f3af9 | 2016-01-12 17:32:35 +0000 | [diff] [blame] | 2047 | { |
Dave Gordon | c2c7f24 | 2016-07-13 16:03:35 +0100 | [diff] [blame] | 2048 | unsigned shift = engine->irq_shift; |
Tvrtko Ursulin | 0bc40be | 2016-03-16 11:00:37 +0000 | [diff] [blame] | 2049 | engine->irq_enable_mask = GT_RENDER_USER_INTERRUPT << shift; |
| 2050 | engine->irq_keep_mask = GT_CONTEXT_SWITCH_INTERRUPT << shift; |
Tvrtko Ursulin | d9f3af9 | 2016-01-12 17:32:35 +0000 | [diff] [blame] | 2051 | } |
| 2052 | |
Tvrtko Ursulin | bb45438 | 2016-07-13 16:03:36 +0100 | [diff] [blame] | 2053 | static void |
| 2054 | logical_ring_setup(struct intel_engine_cs *engine) |
| 2055 | { |
| 2056 | struct drm_i915_private *dev_priv = engine->i915; |
| 2057 | enum forcewake_domains fw_domains; |
| 2058 | |
Tvrtko Ursulin | 019bf27 | 2016-07-13 16:03:41 +0100 | [diff] [blame] | 2059 | intel_engine_setup_common(engine); |
| 2060 | |
Tvrtko Ursulin | bb45438 | 2016-07-13 16:03:36 +0100 | [diff] [blame] | 2061 | /* Intentionally left blank. */ |
| 2062 | engine->buffer = NULL; |
| 2063 | |
| 2064 | fw_domains = intel_uncore_forcewake_for_reg(dev_priv, |
| 2065 | RING_ELSP(engine), |
| 2066 | FW_REG_WRITE); |
| 2067 | |
| 2068 | fw_domains |= intel_uncore_forcewake_for_reg(dev_priv, |
| 2069 | RING_CONTEXT_STATUS_PTR(engine), |
| 2070 | FW_REG_READ | FW_REG_WRITE); |
| 2071 | |
| 2072 | fw_domains |= intel_uncore_forcewake_for_reg(dev_priv, |
| 2073 | RING_CONTEXT_STATUS_BUF_BASE(engine), |
| 2074 | FW_REG_READ); |
| 2075 | |
Mika Kuoppala | b620e87 | 2017-09-22 15:43:03 +0300 | [diff] [blame] | 2076 | engine->execlists.fw_domains = fw_domains; |
Tvrtko Ursulin | bb45438 | 2016-07-13 16:03:36 +0100 | [diff] [blame] | 2077 | |
Sagar Arun Kamble | c6dce8f | 2017-11-16 19:02:37 +0530 | [diff] [blame] | 2078 | tasklet_init(&engine->execlists.tasklet, |
| 2079 | execlists_submission_tasklet, (unsigned long)engine); |
Tvrtko Ursulin | bb45438 | 2016-07-13 16:03:36 +0100 | [diff] [blame] | 2080 | |
Tvrtko Ursulin | bb45438 | 2016-07-13 16:03:36 +0100 | [diff] [blame] | 2081 | logical_ring_default_vfuncs(engine); |
| 2082 | logical_ring_default_irqs(engine); |
Tvrtko Ursulin | bb45438 | 2016-07-13 16:03:36 +0100 | [diff] [blame] | 2083 | } |
| 2084 | |
Daniele Ceraolo Spurio | 486e93f | 2017-09-13 09:56:02 +0100 | [diff] [blame] | 2085 | static int logical_ring_init(struct intel_engine_cs *engine) |
Tvrtko Ursulin | a19d6ff | 2016-06-23 14:52:41 +0100 | [diff] [blame] | 2086 | { |
Tvrtko Ursulin | a19d6ff | 2016-06-23 14:52:41 +0100 | [diff] [blame] | 2087 | int ret; |
| 2088 | |
Tvrtko Ursulin | 019bf27 | 2016-07-13 16:03:41 +0100 | [diff] [blame] | 2089 | ret = intel_engine_init_common(engine); |
Tvrtko Ursulin | a19d6ff | 2016-06-23 14:52:41 +0100 | [diff] [blame] | 2090 | if (ret) |
| 2091 | goto error; |
| 2092 | |
Chris Wilson | 693cfbf | 2018-01-02 15:12:33 +0000 | [diff] [blame] | 2093 | engine->execlists.elsp = |
| 2094 | engine->i915->regs + i915_mmio_reg_offset(RING_ELSP(engine)); |
| 2095 | |
Chris Wilson | d637637 | 2018-02-07 21:05:44 +0000 | [diff] [blame] | 2096 | engine->execlists.preempt_complete_status = ~0u; |
| 2097 | if (engine->i915->preempt_context) |
| 2098 | engine->execlists.preempt_complete_status = |
| 2099 | upper_32_bits(engine->i915->preempt_context->engine[engine->id].lrc_desc); |
| 2100 | |
Tvrtko Ursulin | a19d6ff | 2016-06-23 14:52:41 +0100 | [diff] [blame] | 2101 | return 0; |
| 2102 | |
| 2103 | error: |
| 2104 | intel_logical_ring_cleanup(engine); |
| 2105 | return ret; |
| 2106 | } |
| 2107 | |
Tvrtko Ursulin | 88d2ba2 | 2016-07-13 16:03:40 +0100 | [diff] [blame] | 2108 | int logical_render_ring_init(struct intel_engine_cs *engine) |
Tvrtko Ursulin | a19d6ff | 2016-06-23 14:52:41 +0100 | [diff] [blame] | 2109 | { |
| 2110 | struct drm_i915_private *dev_priv = engine->i915; |
| 2111 | int ret; |
| 2112 | |
Tvrtko Ursulin | bb45438 | 2016-07-13 16:03:36 +0100 | [diff] [blame] | 2113 | logical_ring_setup(engine); |
| 2114 | |
Tvrtko Ursulin | a19d6ff | 2016-06-23 14:52:41 +0100 | [diff] [blame] | 2115 | if (HAS_L3_DPF(dev_priv)) |
| 2116 | engine->irq_keep_mask |= GT_RENDER_L3_PARITY_ERROR_INTERRUPT; |
| 2117 | |
| 2118 | /* Override some for render ring. */ |
| 2119 | if (INTEL_GEN(dev_priv) >= 9) |
| 2120 | engine->init_hw = gen9_init_render_ring; |
| 2121 | else |
| 2122 | engine->init_hw = gen8_init_render_ring; |
| 2123 | engine->init_context = gen8_init_rcs_context; |
Tvrtko Ursulin | a19d6ff | 2016-06-23 14:52:41 +0100 | [diff] [blame] | 2124 | engine->emit_flush = gen8_emit_flush_render; |
Michał Winiarski | df77cd8 | 2017-10-25 22:00:15 +0200 | [diff] [blame] | 2125 | engine->emit_breadcrumb = gen8_emit_breadcrumb_rcs; |
| 2126 | engine->emit_breadcrumb_sz = gen8_emit_breadcrumb_rcs_sz; |
Tvrtko Ursulin | a19d6ff | 2016-06-23 14:52:41 +0100 | [diff] [blame] | 2127 | |
Chris Wilson | f51455d | 2017-01-10 14:47:34 +0000 | [diff] [blame] | 2128 | ret = intel_engine_create_scratch(engine, PAGE_SIZE); |
Tvrtko Ursulin | a19d6ff | 2016-06-23 14:52:41 +0100 | [diff] [blame] | 2129 | if (ret) |
| 2130 | return ret; |
| 2131 | |
| 2132 | ret = intel_init_workaround_bb(engine); |
| 2133 | if (ret) { |
| 2134 | /* |
| 2135 | * We continue even if we fail to initialize WA batch |
| 2136 | * because we only expect rare glitches but nothing |
| 2137 | * critical to prevent us from using GPU |
| 2138 | */ |
| 2139 | DRM_ERROR("WA batch buffer initialization failed: %d\n", |
| 2140 | ret); |
| 2141 | } |
| 2142 | |
Tvrtko Ursulin | d038fc7 | 2016-12-16 13:18:42 +0000 | [diff] [blame] | 2143 | return logical_ring_init(engine); |
Tvrtko Ursulin | a19d6ff | 2016-06-23 14:52:41 +0100 | [diff] [blame] | 2144 | } |
| 2145 | |
Tvrtko Ursulin | 88d2ba2 | 2016-07-13 16:03:40 +0100 | [diff] [blame] | 2146 | int logical_xcs_ring_init(struct intel_engine_cs *engine) |
Tvrtko Ursulin | bb45438 | 2016-07-13 16:03:36 +0100 | [diff] [blame] | 2147 | { |
| 2148 | logical_ring_setup(engine); |
| 2149 | |
| 2150 | return logical_ring_init(engine); |
| 2151 | } |
| 2152 | |
Jeff McGee | 0cea650 | 2015-02-13 10:27:56 -0600 | [diff] [blame] | 2153 | static u32 |
Chris Wilson | c033666 | 2016-05-06 15:40:21 +0100 | [diff] [blame] | 2154 | make_rpcs(struct drm_i915_private *dev_priv) |
Jeff McGee | 0cea650 | 2015-02-13 10:27:56 -0600 | [diff] [blame] | 2155 | { |
| 2156 | u32 rpcs = 0; |
| 2157 | |
| 2158 | /* |
| 2159 | * No explicit RPCS request is needed to ensure full |
| 2160 | * slice/subslice/EU enablement prior to Gen9. |
| 2161 | */ |
Chris Wilson | c033666 | 2016-05-06 15:40:21 +0100 | [diff] [blame] | 2162 | if (INTEL_GEN(dev_priv) < 9) |
Jeff McGee | 0cea650 | 2015-02-13 10:27:56 -0600 | [diff] [blame] | 2163 | return 0; |
| 2164 | |
| 2165 | /* |
| 2166 | * Starting in Gen9, render power gating can leave |
| 2167 | * slice/subslice/EU in a partially enabled state. We |
| 2168 | * must make an explicit request through RPCS for full |
| 2169 | * enablement. |
| 2170 | */ |
Imre Deak | 43b6799 | 2016-08-31 19:13:02 +0300 | [diff] [blame] | 2171 | if (INTEL_INFO(dev_priv)->sseu.has_slice_pg) { |
Jeff McGee | 0cea650 | 2015-02-13 10:27:56 -0600 | [diff] [blame] | 2172 | rpcs |= GEN8_RPCS_S_CNT_ENABLE; |
Imre Deak | f08a0c9 | 2016-08-31 19:13:04 +0300 | [diff] [blame] | 2173 | rpcs |= hweight8(INTEL_INFO(dev_priv)->sseu.slice_mask) << |
Jeff McGee | 0cea650 | 2015-02-13 10:27:56 -0600 | [diff] [blame] | 2174 | GEN8_RPCS_S_CNT_SHIFT; |
| 2175 | rpcs |= GEN8_RPCS_ENABLE; |
| 2176 | } |
| 2177 | |
Imre Deak | 43b6799 | 2016-08-31 19:13:02 +0300 | [diff] [blame] | 2178 | if (INTEL_INFO(dev_priv)->sseu.has_subslice_pg) { |
Jeff McGee | 0cea650 | 2015-02-13 10:27:56 -0600 | [diff] [blame] | 2179 | rpcs |= GEN8_RPCS_SS_CNT_ENABLE; |
Imre Deak | 57ec171 | 2016-08-31 19:13:05 +0300 | [diff] [blame] | 2180 | rpcs |= hweight8(INTEL_INFO(dev_priv)->sseu.subslice_mask) << |
Jeff McGee | 0cea650 | 2015-02-13 10:27:56 -0600 | [diff] [blame] | 2181 | GEN8_RPCS_SS_CNT_SHIFT; |
| 2182 | rpcs |= GEN8_RPCS_ENABLE; |
| 2183 | } |
| 2184 | |
Imre Deak | 43b6799 | 2016-08-31 19:13:02 +0300 | [diff] [blame] | 2185 | if (INTEL_INFO(dev_priv)->sseu.has_eu_pg) { |
| 2186 | rpcs |= INTEL_INFO(dev_priv)->sseu.eu_per_subslice << |
Jeff McGee | 0cea650 | 2015-02-13 10:27:56 -0600 | [diff] [blame] | 2187 | GEN8_RPCS_EU_MIN_SHIFT; |
Imre Deak | 43b6799 | 2016-08-31 19:13:02 +0300 | [diff] [blame] | 2188 | rpcs |= INTEL_INFO(dev_priv)->sseu.eu_per_subslice << |
Jeff McGee | 0cea650 | 2015-02-13 10:27:56 -0600 | [diff] [blame] | 2189 | GEN8_RPCS_EU_MAX_SHIFT; |
| 2190 | rpcs |= GEN8_RPCS_ENABLE; |
| 2191 | } |
| 2192 | |
| 2193 | return rpcs; |
| 2194 | } |
| 2195 | |
Tvrtko Ursulin | 0bc40be | 2016-03-16 11:00:37 +0000 | [diff] [blame] | 2196 | static u32 intel_lr_indirect_ctx_offset(struct intel_engine_cs *engine) |
Michel Thierry | 7156291 | 2016-02-23 10:31:49 +0000 | [diff] [blame] | 2197 | { |
| 2198 | u32 indirect_ctx_offset; |
| 2199 | |
Chris Wilson | c033666 | 2016-05-06 15:40:21 +0100 | [diff] [blame] | 2200 | switch (INTEL_GEN(engine->i915)) { |
Michel Thierry | 7156291 | 2016-02-23 10:31:49 +0000 | [diff] [blame] | 2201 | default: |
Chris Wilson | c033666 | 2016-05-06 15:40:21 +0100 | [diff] [blame] | 2202 | MISSING_CASE(INTEL_GEN(engine->i915)); |
Michel Thierry | 7156291 | 2016-02-23 10:31:49 +0000 | [diff] [blame] | 2203 | /* fall through */ |
Michel Thierry | 7bd0a2c | 2017-06-06 13:30:38 -0700 | [diff] [blame] | 2204 | case 10: |
| 2205 | indirect_ctx_offset = |
| 2206 | GEN10_CTX_RCS_INDIRECT_CTX_OFFSET_DEFAULT; |
| 2207 | break; |
Michel Thierry | 7156291 | 2016-02-23 10:31:49 +0000 | [diff] [blame] | 2208 | case 9: |
| 2209 | indirect_ctx_offset = |
| 2210 | GEN9_CTX_RCS_INDIRECT_CTX_OFFSET_DEFAULT; |
| 2211 | break; |
| 2212 | case 8: |
| 2213 | indirect_ctx_offset = |
| 2214 | GEN8_CTX_RCS_INDIRECT_CTX_OFFSET_DEFAULT; |
| 2215 | break; |
| 2216 | } |
| 2217 | |
| 2218 | return indirect_ctx_offset; |
| 2219 | } |
| 2220 | |
Tvrtko Ursulin | 56e51bf | 2017-02-21 09:58:39 +0000 | [diff] [blame] | 2221 | static void execlists_init_reg_state(u32 *regs, |
Chris Wilson | a3aabe8 | 2016-10-04 21:11:26 +0100 | [diff] [blame] | 2222 | struct i915_gem_context *ctx, |
| 2223 | struct intel_engine_cs *engine, |
| 2224 | struct intel_ring *ring) |
Oscar Mateo | 8670d6f | 2014-07-24 17:04:17 +0100 | [diff] [blame] | 2225 | { |
Chris Wilson | a3aabe8 | 2016-10-04 21:11:26 +0100 | [diff] [blame] | 2226 | struct drm_i915_private *dev_priv = engine->i915; |
| 2227 | struct i915_hw_ppgtt *ppgtt = ctx->ppgtt ?: dev_priv->mm.aliasing_ppgtt; |
Tvrtko Ursulin | 56e51bf | 2017-02-21 09:58:39 +0000 | [diff] [blame] | 2228 | u32 base = engine->mmio_base; |
| 2229 | bool rcs = engine->id == RCS; |
Oscar Mateo | 8670d6f | 2014-07-24 17:04:17 +0100 | [diff] [blame] | 2230 | |
Tvrtko Ursulin | 56e51bf | 2017-02-21 09:58:39 +0000 | [diff] [blame] | 2231 | /* A context is actually a big batch buffer with several |
| 2232 | * MI_LOAD_REGISTER_IMM commands followed by (reg, value) pairs. The |
| 2233 | * values we are setting here are only for the first context restore: |
| 2234 | * on a subsequent save, the GPU will recreate this batchbuffer with new |
| 2235 | * values (including all the missing MI_LOAD_REGISTER_IMM commands that |
| 2236 | * we are not initializing here). |
| 2237 | */ |
| 2238 | regs[CTX_LRI_HEADER_0] = MI_LOAD_REGISTER_IMM(rcs ? 14 : 11) | |
| 2239 | MI_LRI_FORCE_POSTED; |
| 2240 | |
| 2241 | CTX_REG(regs, CTX_CONTEXT_CONTROL, RING_CONTEXT_CONTROL(engine), |
Chris Wilson | 09b1a4e | 2018-01-25 11:24:42 +0000 | [diff] [blame] | 2242 | _MASKED_BIT_DISABLE(CTX_CTRL_ENGINE_CTX_RESTORE_INHIBIT | |
| 2243 | CTX_CTRL_ENGINE_CTX_SAVE_INHIBIT) | |
Tvrtko Ursulin | 56e51bf | 2017-02-21 09:58:39 +0000 | [diff] [blame] | 2244 | _MASKED_BIT_ENABLE(CTX_CTRL_INHIBIT_SYN_CTX_SWITCH | |
Tvrtko Ursulin | 56e51bf | 2017-02-21 09:58:39 +0000 | [diff] [blame] | 2245 | (HAS_RESOURCE_STREAMER(dev_priv) ? |
| 2246 | CTX_CTRL_RS_CTX_ENABLE : 0))); |
| 2247 | CTX_REG(regs, CTX_RING_HEAD, RING_HEAD(base), 0); |
| 2248 | CTX_REG(regs, CTX_RING_TAIL, RING_TAIL(base), 0); |
| 2249 | CTX_REG(regs, CTX_RING_BUFFER_START, RING_START(base), 0); |
| 2250 | CTX_REG(regs, CTX_RING_BUFFER_CONTROL, RING_CTL(base), |
| 2251 | RING_CTL_SIZE(ring->size) | RING_VALID); |
| 2252 | CTX_REG(regs, CTX_BB_HEAD_U, RING_BBADDR_UDW(base), 0); |
| 2253 | CTX_REG(regs, CTX_BB_HEAD_L, RING_BBADDR(base), 0); |
| 2254 | CTX_REG(regs, CTX_BB_STATE, RING_BBSTATE(base), RING_BB_PPGTT); |
| 2255 | CTX_REG(regs, CTX_SECOND_BB_HEAD_U, RING_SBBADDR_UDW(base), 0); |
| 2256 | CTX_REG(regs, CTX_SECOND_BB_HEAD_L, RING_SBBADDR(base), 0); |
| 2257 | CTX_REG(regs, CTX_SECOND_BB_STATE, RING_SBBSTATE(base), 0); |
| 2258 | if (rcs) { |
Chris Wilson | 604a8f6 | 2017-09-21 14:54:43 +0100 | [diff] [blame] | 2259 | struct i915_ctx_workarounds *wa_ctx = &engine->wa_ctx; |
| 2260 | |
Tvrtko Ursulin | 56e51bf | 2017-02-21 09:58:39 +0000 | [diff] [blame] | 2261 | CTX_REG(regs, CTX_RCS_INDIRECT_CTX, RING_INDIRECT_CTX(base), 0); |
| 2262 | CTX_REG(regs, CTX_RCS_INDIRECT_CTX_OFFSET, |
| 2263 | RING_INDIRECT_CTX_OFFSET(base), 0); |
Chris Wilson | 604a8f6 | 2017-09-21 14:54:43 +0100 | [diff] [blame] | 2264 | if (wa_ctx->indirect_ctx.size) { |
Chris Wilson | bde13eb | 2016-08-15 10:49:07 +0100 | [diff] [blame] | 2265 | u32 ggtt_offset = i915_ggtt_offset(wa_ctx->vma); |
Arun Siluvery | 17ee950 | 2015-06-19 19:07:01 +0100 | [diff] [blame] | 2266 | |
Tvrtko Ursulin | 56e51bf | 2017-02-21 09:58:39 +0000 | [diff] [blame] | 2267 | regs[CTX_RCS_INDIRECT_CTX + 1] = |
Tvrtko Ursulin | 097d4f1 | 2017-02-17 07:58:59 +0000 | [diff] [blame] | 2268 | (ggtt_offset + wa_ctx->indirect_ctx.offset) | |
| 2269 | (wa_ctx->indirect_ctx.size / CACHELINE_BYTES); |
Arun Siluvery | 17ee950 | 2015-06-19 19:07:01 +0100 | [diff] [blame] | 2270 | |
Tvrtko Ursulin | 56e51bf | 2017-02-21 09:58:39 +0000 | [diff] [blame] | 2271 | regs[CTX_RCS_INDIRECT_CTX_OFFSET + 1] = |
Tvrtko Ursulin | 0bc40be | 2016-03-16 11:00:37 +0000 | [diff] [blame] | 2272 | intel_lr_indirect_ctx_offset(engine) << 6; |
Chris Wilson | 604a8f6 | 2017-09-21 14:54:43 +0100 | [diff] [blame] | 2273 | } |
| 2274 | |
| 2275 | CTX_REG(regs, CTX_BB_PER_CTX_PTR, RING_BB_PER_CTX_PTR(base), 0); |
| 2276 | if (wa_ctx->per_ctx.size) { |
| 2277 | u32 ggtt_offset = i915_ggtt_offset(wa_ctx->vma); |
Arun Siluvery | 17ee950 | 2015-06-19 19:07:01 +0100 | [diff] [blame] | 2278 | |
Tvrtko Ursulin | 56e51bf | 2017-02-21 09:58:39 +0000 | [diff] [blame] | 2279 | regs[CTX_BB_PER_CTX_PTR + 1] = |
Tvrtko Ursulin | 097d4f1 | 2017-02-17 07:58:59 +0000 | [diff] [blame] | 2280 | (ggtt_offset + wa_ctx->per_ctx.offset) | 0x01; |
Arun Siluvery | 17ee950 | 2015-06-19 19:07:01 +0100 | [diff] [blame] | 2281 | } |
Oscar Mateo | 8670d6f | 2014-07-24 17:04:17 +0100 | [diff] [blame] | 2282 | } |
Tvrtko Ursulin | 56e51bf | 2017-02-21 09:58:39 +0000 | [diff] [blame] | 2283 | |
| 2284 | regs[CTX_LRI_HEADER_1] = MI_LOAD_REGISTER_IMM(9) | MI_LRI_FORCE_POSTED; |
| 2285 | |
| 2286 | CTX_REG(regs, CTX_CTX_TIMESTAMP, RING_CTX_TIMESTAMP(base), 0); |
Ville Syrjälä | 0d925ea | 2015-11-04 23:20:11 +0200 | [diff] [blame] | 2287 | /* PDP values well be assigned later if needed */ |
Tvrtko Ursulin | 56e51bf | 2017-02-21 09:58:39 +0000 | [diff] [blame] | 2288 | CTX_REG(regs, CTX_PDP3_UDW, GEN8_RING_PDP_UDW(engine, 3), 0); |
| 2289 | CTX_REG(regs, CTX_PDP3_LDW, GEN8_RING_PDP_LDW(engine, 3), 0); |
| 2290 | CTX_REG(regs, CTX_PDP2_UDW, GEN8_RING_PDP_UDW(engine, 2), 0); |
| 2291 | CTX_REG(regs, CTX_PDP2_LDW, GEN8_RING_PDP_LDW(engine, 2), 0); |
| 2292 | CTX_REG(regs, CTX_PDP1_UDW, GEN8_RING_PDP_UDW(engine, 1), 0); |
| 2293 | CTX_REG(regs, CTX_PDP1_LDW, GEN8_RING_PDP_LDW(engine, 1), 0); |
| 2294 | CTX_REG(regs, CTX_PDP0_UDW, GEN8_RING_PDP_UDW(engine, 0), 0); |
| 2295 | CTX_REG(regs, CTX_PDP0_LDW, GEN8_RING_PDP_LDW(engine, 0), 0); |
Michel Thierry | d7b2633 | 2015-04-08 12:13:34 +0100 | [diff] [blame] | 2296 | |
Chris Wilson | 949e8ab | 2017-02-09 14:40:36 +0000 | [diff] [blame] | 2297 | if (ppgtt && i915_vm_is_48bit(&ppgtt->base)) { |
Michel Thierry | 2dba323 | 2015-07-30 11:06:23 +0100 | [diff] [blame] | 2298 | /* 64b PPGTT (48bit canonical) |
| 2299 | * PDP0_DESCRIPTOR contains the base address to PML4 and |
| 2300 | * other PDP Descriptors are ignored. |
| 2301 | */ |
Tvrtko Ursulin | 56e51bf | 2017-02-21 09:58:39 +0000 | [diff] [blame] | 2302 | ASSIGN_CTX_PML4(ppgtt, regs); |
Michel Thierry | 2dba323 | 2015-07-30 11:06:23 +0100 | [diff] [blame] | 2303 | } |
| 2304 | |
Tvrtko Ursulin | 56e51bf | 2017-02-21 09:58:39 +0000 | [diff] [blame] | 2305 | if (rcs) { |
| 2306 | regs[CTX_LRI_HEADER_2] = MI_LOAD_REGISTER_IMM(1); |
| 2307 | CTX_REG(regs, CTX_R_PWR_CLK_STATE, GEN8_R_PWR_CLK_STATE, |
| 2308 | make_rpcs(dev_priv)); |
Robert Bragg | 19f81df | 2017-06-13 12:23:03 +0100 | [diff] [blame] | 2309 | |
| 2310 | i915_oa_init_reg_state(engine, ctx, regs); |
Oscar Mateo | 8670d6f | 2014-07-24 17:04:17 +0100 | [diff] [blame] | 2311 | } |
Chris Wilson | a3aabe8 | 2016-10-04 21:11:26 +0100 | [diff] [blame] | 2312 | } |
| 2313 | |
| 2314 | static int |
| 2315 | populate_lr_context(struct i915_gem_context *ctx, |
| 2316 | struct drm_i915_gem_object *ctx_obj, |
| 2317 | struct intel_engine_cs *engine, |
| 2318 | struct intel_ring *ring) |
| 2319 | { |
| 2320 | void *vaddr; |
Chris Wilson | d2b4b97 | 2017-11-10 14:26:33 +0000 | [diff] [blame] | 2321 | u32 *regs; |
Chris Wilson | a3aabe8 | 2016-10-04 21:11:26 +0100 | [diff] [blame] | 2322 | int ret; |
| 2323 | |
| 2324 | ret = i915_gem_object_set_to_cpu_domain(ctx_obj, true); |
| 2325 | if (ret) { |
| 2326 | DRM_DEBUG_DRIVER("Could not set to CPU domain\n"); |
| 2327 | return ret; |
| 2328 | } |
| 2329 | |
| 2330 | vaddr = i915_gem_object_pin_map(ctx_obj, I915_MAP_WB); |
| 2331 | if (IS_ERR(vaddr)) { |
| 2332 | ret = PTR_ERR(vaddr); |
| 2333 | DRM_DEBUG_DRIVER("Could not map object pages! (%d)\n", ret); |
| 2334 | return ret; |
| 2335 | } |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 2336 | ctx_obj->mm.dirty = true; |
Chris Wilson | a3aabe8 | 2016-10-04 21:11:26 +0100 | [diff] [blame] | 2337 | |
Chris Wilson | d2b4b97 | 2017-11-10 14:26:33 +0000 | [diff] [blame] | 2338 | if (engine->default_state) { |
| 2339 | /* |
| 2340 | * We only want to copy over the template context state; |
| 2341 | * skipping over the headers reserved for GuC communication, |
| 2342 | * leaving those as zero. |
| 2343 | */ |
| 2344 | const unsigned long start = LRC_HEADER_PAGES * PAGE_SIZE; |
| 2345 | void *defaults; |
| 2346 | |
| 2347 | defaults = i915_gem_object_pin_map(engine->default_state, |
| 2348 | I915_MAP_WB); |
| 2349 | if (IS_ERR(defaults)) |
| 2350 | return PTR_ERR(defaults); |
| 2351 | |
| 2352 | memcpy(vaddr + start, defaults + start, engine->context_size); |
| 2353 | i915_gem_object_unpin_map(engine->default_state); |
| 2354 | } |
| 2355 | |
Chris Wilson | a3aabe8 | 2016-10-04 21:11:26 +0100 | [diff] [blame] | 2356 | /* The second page of the context object contains some fields which must |
| 2357 | * be set up prior to the first execution. */ |
Chris Wilson | d2b4b97 | 2017-11-10 14:26:33 +0000 | [diff] [blame] | 2358 | regs = vaddr + LRC_STATE_PN * PAGE_SIZE; |
| 2359 | execlists_init_reg_state(regs, ctx, engine, ring); |
| 2360 | if (!engine->default_state) |
| 2361 | regs[CTX_CONTEXT_CONTROL + 1] |= |
| 2362 | _MASKED_BIT_ENABLE(CTX_CTRL_ENGINE_CTX_RESTORE_INHIBIT); |
Chris Wilson | d637637 | 2018-02-07 21:05:44 +0000 | [diff] [blame] | 2363 | if (ctx == ctx->i915->preempt_context) |
Chris Wilson | 517aaff | 2018-01-23 21:04:12 +0000 | [diff] [blame] | 2364 | regs[CTX_CONTEXT_CONTROL + 1] |= |
| 2365 | _MASKED_BIT_ENABLE(CTX_CTRL_ENGINE_CTX_RESTORE_INHIBIT | |
| 2366 | CTX_CTRL_ENGINE_CTX_SAVE_INHIBIT); |
Oscar Mateo | 8670d6f | 2014-07-24 17:04:17 +0100 | [diff] [blame] | 2367 | |
Tvrtko Ursulin | 7d774ca | 2016-04-12 15:40:42 +0100 | [diff] [blame] | 2368 | i915_gem_object_unpin_map(ctx_obj); |
Oscar Mateo | 8670d6f | 2014-07-24 17:04:17 +0100 | [diff] [blame] | 2369 | |
| 2370 | return 0; |
| 2371 | } |
| 2372 | |
Chris Wilson | e2efd13 | 2016-05-24 14:53:34 +0100 | [diff] [blame] | 2373 | static int execlists_context_deferred_alloc(struct i915_gem_context *ctx, |
Chris Wilson | 978f1e0 | 2016-04-28 09:56:54 +0100 | [diff] [blame] | 2374 | struct intel_engine_cs *engine) |
Oscar Mateo | ede7d42 | 2014-07-24 17:04:12 +0100 | [diff] [blame] | 2375 | { |
Oscar Mateo | 8c857917 | 2014-07-24 17:04:14 +0100 | [diff] [blame] | 2376 | struct drm_i915_gem_object *ctx_obj; |
Chris Wilson | 9021ad0 | 2016-05-24 14:53:37 +0100 | [diff] [blame] | 2377 | struct intel_context *ce = &ctx->engine[engine->id]; |
Chris Wilson | bf3783e | 2016-08-15 10:48:54 +0100 | [diff] [blame] | 2378 | struct i915_vma *vma; |
Oscar Mateo | 8c857917 | 2014-07-24 17:04:14 +0100 | [diff] [blame] | 2379 | uint32_t context_size; |
Chris Wilson | 7e37f88 | 2016-08-02 22:50:21 +0100 | [diff] [blame] | 2380 | struct intel_ring *ring; |
Oscar Mateo | 8c857917 | 2014-07-24 17:04:14 +0100 | [diff] [blame] | 2381 | int ret; |
| 2382 | |
Chris Wilson | 1d2a19c | 2018-01-26 12:18:46 +0000 | [diff] [blame] | 2383 | if (ce->state) |
| 2384 | return 0; |
Oscar Mateo | ede7d42 | 2014-07-24 17:04:12 +0100 | [diff] [blame] | 2385 | |
Joonas Lahtinen | 63ffbcd | 2017-04-28 10:53:36 +0300 | [diff] [blame] | 2386 | context_size = round_up(engine->context_size, I915_GTT_PAGE_SIZE); |
Oscar Mateo | 8c857917 | 2014-07-24 17:04:14 +0100 | [diff] [blame] | 2387 | |
Michel Thierry | 0b29c75 | 2017-09-13 09:56:00 +0100 | [diff] [blame] | 2388 | /* |
| 2389 | * Before the actual start of the context image, we insert a few pages |
| 2390 | * for our own use and for sharing with the GuC. |
| 2391 | */ |
| 2392 | context_size += LRC_HEADER_PAGES * PAGE_SIZE; |
Alex Dai | d167519 | 2015-08-12 15:43:43 +0100 | [diff] [blame] | 2393 | |
Tvrtko Ursulin | 12d79d7 | 2016-12-01 14:16:37 +0000 | [diff] [blame] | 2394 | ctx_obj = i915_gem_object_create(ctx->i915, context_size); |
Chris Wilson | fe3db79 | 2016-04-25 13:32:13 +0100 | [diff] [blame] | 2395 | if (IS_ERR(ctx_obj)) { |
Dan Carpenter | 3126a66 | 2015-04-30 17:30:50 +0300 | [diff] [blame] | 2396 | DRM_DEBUG_DRIVER("Alloc LRC backing obj failed.\n"); |
Chris Wilson | fe3db79 | 2016-04-25 13:32:13 +0100 | [diff] [blame] | 2397 | return PTR_ERR(ctx_obj); |
Oscar Mateo | 8c857917 | 2014-07-24 17:04:14 +0100 | [diff] [blame] | 2398 | } |
| 2399 | |
Chris Wilson | a01cb37 | 2017-01-16 15:21:30 +0000 | [diff] [blame] | 2400 | vma = i915_vma_instance(ctx_obj, &ctx->i915->ggtt.base, NULL); |
Chris Wilson | bf3783e | 2016-08-15 10:48:54 +0100 | [diff] [blame] | 2401 | if (IS_ERR(vma)) { |
| 2402 | ret = PTR_ERR(vma); |
| 2403 | goto error_deref_obj; |
| 2404 | } |
| 2405 | |
Chris Wilson | 7e37f88 | 2016-08-02 22:50:21 +0100 | [diff] [blame] | 2406 | ring = intel_engine_create_ring(engine, ctx->ring_size); |
Chris Wilson | dca33ec | 2016-08-02 22:50:20 +0100 | [diff] [blame] | 2407 | if (IS_ERR(ring)) { |
| 2408 | ret = PTR_ERR(ring); |
Nick Hoath | e84fe80 | 2015-09-11 12:53:46 +0100 | [diff] [blame] | 2409 | goto error_deref_obj; |
Oscar Mateo | 8670d6f | 2014-07-24 17:04:17 +0100 | [diff] [blame] | 2410 | } |
| 2411 | |
Chris Wilson | dca33ec | 2016-08-02 22:50:20 +0100 | [diff] [blame] | 2412 | ret = populate_lr_context(ctx, ctx_obj, engine, ring); |
Oscar Mateo | 8670d6f | 2014-07-24 17:04:17 +0100 | [diff] [blame] | 2413 | if (ret) { |
| 2414 | DRM_DEBUG_DRIVER("Failed to populate LRC: %d\n", ret); |
Chris Wilson | dca33ec | 2016-08-02 22:50:20 +0100 | [diff] [blame] | 2415 | goto error_ring_free; |
Oscar Mateo | 84c2377 | 2014-07-24 17:04:15 +0100 | [diff] [blame] | 2416 | } |
| 2417 | |
Chris Wilson | dca33ec | 2016-08-02 22:50:20 +0100 | [diff] [blame] | 2418 | ce->ring = ring; |
Chris Wilson | bf3783e | 2016-08-15 10:48:54 +0100 | [diff] [blame] | 2419 | ce->state = vma; |
Oscar Mateo | ede7d42 | 2014-07-24 17:04:12 +0100 | [diff] [blame] | 2420 | |
| 2421 | return 0; |
Oscar Mateo | 8670d6f | 2014-07-24 17:04:17 +0100 | [diff] [blame] | 2422 | |
Chris Wilson | dca33ec | 2016-08-02 22:50:20 +0100 | [diff] [blame] | 2423 | error_ring_free: |
Chris Wilson | 7e37f88 | 2016-08-02 22:50:21 +0100 | [diff] [blame] | 2424 | intel_ring_free(ring); |
Nick Hoath | e84fe80 | 2015-09-11 12:53:46 +0100 | [diff] [blame] | 2425 | error_deref_obj: |
Chris Wilson | f8c417c | 2016-07-20 13:31:53 +0100 | [diff] [blame] | 2426 | i915_gem_object_put(ctx_obj); |
Oscar Mateo | 8670d6f | 2014-07-24 17:04:17 +0100 | [diff] [blame] | 2427 | return ret; |
Oscar Mateo | ede7d42 | 2014-07-24 17:04:12 +0100 | [diff] [blame] | 2428 | } |
Thomas Daniel | 3e5b6f0 | 2015-02-16 16:12:53 +0000 | [diff] [blame] | 2429 | |
Chris Wilson | 821ed7d | 2016-09-09 14:11:53 +0100 | [diff] [blame] | 2430 | void intel_lr_context_resume(struct drm_i915_private *dev_priv) |
Thomas Daniel | 3e5b6f0 | 2015-02-16 16:12:53 +0000 | [diff] [blame] | 2431 | { |
Tvrtko Ursulin | e2f8039 | 2016-03-16 11:00:36 +0000 | [diff] [blame] | 2432 | struct intel_engine_cs *engine; |
Chris Wilson | bafb2f7 | 2016-09-21 14:51:08 +0100 | [diff] [blame] | 2433 | struct i915_gem_context *ctx; |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 2434 | enum intel_engine_id id; |
Thomas Daniel | 3e5b6f0 | 2015-02-16 16:12:53 +0000 | [diff] [blame] | 2435 | |
Chris Wilson | bafb2f7 | 2016-09-21 14:51:08 +0100 | [diff] [blame] | 2436 | /* Because we emit WA_TAIL_DWORDS there may be a disparity |
| 2437 | * between our bookkeeping in ce->ring->head and ce->ring->tail and |
| 2438 | * that stored in context. As we only write new commands from |
| 2439 | * ce->ring->tail onwards, everything before that is junk. If the GPU |
| 2440 | * starts reading from its RING_HEAD from the context, it may try to |
| 2441 | * execute that junk and die. |
| 2442 | * |
| 2443 | * So to avoid that we reset the context images upon resume. For |
| 2444 | * simplicity, we just zero everything out. |
| 2445 | */ |
Chris Wilson | 829a0af | 2017-06-20 12:05:45 +0100 | [diff] [blame] | 2446 | list_for_each_entry(ctx, &dev_priv->contexts.list, link) { |
Akash Goel | 3b3f165 | 2016-10-13 22:44:48 +0530 | [diff] [blame] | 2447 | for_each_engine(engine, dev_priv, id) { |
Chris Wilson | bafb2f7 | 2016-09-21 14:51:08 +0100 | [diff] [blame] | 2448 | struct intel_context *ce = &ctx->engine[engine->id]; |
| 2449 | u32 *reg; |
Thomas Daniel | 3e5b6f0 | 2015-02-16 16:12:53 +0000 | [diff] [blame] | 2450 | |
Chris Wilson | bafb2f7 | 2016-09-21 14:51:08 +0100 | [diff] [blame] | 2451 | if (!ce->state) |
| 2452 | continue; |
Thomas Daniel | 3e5b6f0 | 2015-02-16 16:12:53 +0000 | [diff] [blame] | 2453 | |
Chris Wilson | bafb2f7 | 2016-09-21 14:51:08 +0100 | [diff] [blame] | 2454 | reg = i915_gem_object_pin_map(ce->state->obj, |
| 2455 | I915_MAP_WB); |
| 2456 | if (WARN_ON(IS_ERR(reg))) |
| 2457 | continue; |
Tvrtko Ursulin | 7d774ca | 2016-04-12 15:40:42 +0100 | [diff] [blame] | 2458 | |
Chris Wilson | bafb2f7 | 2016-09-21 14:51:08 +0100 | [diff] [blame] | 2459 | reg += LRC_STATE_PN * PAGE_SIZE / sizeof(*reg); |
| 2460 | reg[CTX_RING_HEAD+1] = 0; |
| 2461 | reg[CTX_RING_TAIL+1] = 0; |
Thomas Daniel | 3e5b6f0 | 2015-02-16 16:12:53 +0000 | [diff] [blame] | 2462 | |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 2463 | ce->state->obj->mm.dirty = true; |
Chris Wilson | bafb2f7 | 2016-09-21 14:51:08 +0100 | [diff] [blame] | 2464 | i915_gem_object_unpin_map(ce->state->obj); |
Thomas Daniel | 3e5b6f0 | 2015-02-16 16:12:53 +0000 | [diff] [blame] | 2465 | |
Chris Wilson | e6ba999 | 2017-04-25 14:00:49 +0100 | [diff] [blame] | 2466 | intel_ring_reset(ce->ring, 0); |
Chris Wilson | bafb2f7 | 2016-09-21 14:51:08 +0100 | [diff] [blame] | 2467 | } |
Thomas Daniel | 3e5b6f0 | 2015-02-16 16:12:53 +0000 | [diff] [blame] | 2468 | } |
| 2469 | } |