blob: 36b376e4b105d843b6c11e05a76174fb185512c8 [file] [log] [blame]
Oscar Mateob20385f2014-07-24 17:04:10 +01001/*
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 Mateo73e4d072014-07-24 17:04:48 +010031/**
32 * DOC: Logical Rings, Logical Ring Contexts and Execlists
33 *
34 * Motivation:
Oscar Mateob20385f2014-07-24 17:04:10 +010035 * 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 Mateo73e4d072014-07-24 17:04:48 +010039 * 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 Mateob20385f2014-07-24 17:04:10 +010090 * 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 Mateo73e4d072014-07-24 17:04:48 +010092 * 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 Mateob20385f2014-07-24 17:04:10 +0100133 */
Tvrtko Ursulin27af5ee2016-04-04 12:11:56 +0100134#include <linux/interrupt.h>
Oscar Mateob20385f2014-07-24 17:04:10 +0100135
136#include <drm/drmP.h>
137#include <drm/i915_drm.h>
138#include "i915_drv.h"
Chris Wilson7c2fa7f2017-11-10 14:26:34 +0000139#include "i915_gem_render_state.h"
Michel Thierry578f1ac2018-01-23 16:43:49 -0800140#include "intel_lrc_reg.h"
Peter Antoine3bbaba02015-07-10 20:13:11 +0300141#include "intel_mocs.h"
Oscar Mateo127f1002014-07-24 17:04:11 +0100142
Thomas Daniele981e7b2014-07-24 17:04:39 +0100143#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 Mateo8670d6f2014-07-24 17:04:17 +0100156
Chris Wilson70c2a242016-09-09 14:11:46 +0100157#define GEN8_CTX_STATUS_COMPLETED_MASK \
Chris Wilsond8747af2017-11-20 12:34:56 +0000158 (GEN8_CTX_STATUS_COMPLETE | GEN8_CTX_STATUS_PREEMPTED)
Chris Wilson70c2a242016-09-09 14:11:46 +0100159
Chris Wilson0e93cdd2016-04-29 09:07:06 +0100160/* Typical size of the average request (2 pipecontrols and a MI_BB) */
161#define EXECLISTS_REQUEST_SIZE 64 /* bytes */
Chris Wilsona3aabe82016-10-04 21:11:26 +0100162#define WA_TAIL_DWORDS 2
Chris Wilson7e4992a2017-09-28 20:38:59 +0100163#define WA_TAIL_BYTES (sizeof(u32) * WA_TAIL_DWORDS)
Chris Wilsona3aabe82016-10-04 21:11:26 +0100164
Chris Wilsone2efd132016-05-24 14:53:34 +0100165static int execlists_context_deferred_alloc(struct i915_gem_context *ctx,
Chris Wilson978f1e02016-04-28 09:56:54 +0100166 struct intel_engine_cs *engine);
Chris Wilsona3aabe82016-10-04 21:11:26 +0100167static 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 Daniel7ba717c2014-11-13 10:28:56 +0000171
Chris Wilsonf6322ed2018-02-22 14:22:29 +0000172static inline struct i915_priolist *to_priolist(struct rb_node *rb)
173{
174 return rb_entry(rb, struct i915_priolist, node);
175}
176
177static inline int rq_prio(const struct i915_request *rq)
178{
179 return rq->priotree.priority;
180}
181
182static 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 Mateo73e4d072014-07-24 17:04:48 +0100189/**
Tvrtko Ursulinca825802016-01-15 15:10:27 +0000190 * intel_lr_context_descriptor_update() - calculate & cache the descriptor
191 * descriptor for a pinned context
Tvrtko Ursulinca825802016-01-15 15:10:27 +0000192 * @ctx: Context to work on
Chris Wilson9021ad02016-05-24 14:53:37 +0100193 * @engine: Engine the descriptor will be used with
Tvrtko Ursulinca825802016-01-15 15:10:27 +0000194 *
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 Vetter6e5248b2016-07-15 21:48:06 +0200200 * This is what a descriptor looks like, from LSB to MSB::
201 *
Mika Kuoppala2355cf02017-01-27 15:03:09 +0200202 * bits 0-11: flags, GEN8_CTX_* (cached in ctx->desc_template)
Daniel Vetter6e5248b2016-07-15 21:48:06 +0200203 * 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 Ursulinca825802016-01-15 15:10:27 +0000207 */
208static void
Chris Wilsone2efd132016-05-24 14:53:34 +0100209intel_lr_context_descriptor_update(struct i915_gem_context *ctx,
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +0000210 struct intel_engine_cs *engine)
Tvrtko Ursulinca825802016-01-15 15:10:27 +0000211{
Chris Wilson9021ad02016-05-24 14:53:37 +0100212 struct intel_context *ce = &ctx->engine[engine->id];
Chris Wilson7069b142016-04-28 09:56:52 +0100213 u64 desc;
Tvrtko Ursulinca825802016-01-15 15:10:27 +0000214
Chris Wilson7069b142016-04-28 09:56:52 +0100215 BUILD_BUG_ON(MAX_CONTEXT_HW_ID > (1<<GEN8_CTX_ID_WIDTH));
216
Mika Kuoppala2355cf02017-01-27 15:03:09 +0200217 desc = ctx->desc_template; /* bits 0-11 */
Michel Thierry0b29c752017-09-13 09:56:00 +0100218 desc |= i915_ggtt_offset(ce->state) + LRC_HEADER_PAGES * PAGE_SIZE;
Chris Wilson9021ad02016-05-24 14:53:37 +0100219 /* bits 12-31 */
Chris Wilson7069b142016-04-28 09:56:52 +0100220 desc |= (u64)ctx->hw_id << GEN8_CTX_ID_SHIFT; /* bits 32-52 */
Tvrtko Ursulinca825802016-01-15 15:10:27 +0000221
Chris Wilson9021ad02016-05-24 14:53:37 +0100222 ce->lrc_desc = desc;
Tvrtko Ursulinca825802016-01-15 15:10:27 +0000223}
224
Chris Wilson27606fd2017-09-16 21:44:13 +0100225static struct i915_priolist *
226lookup_priolist(struct intel_engine_cs *engine,
227 struct i915_priotree *pt,
228 int prio)
Chris Wilson08dd3e12017-09-16 21:44:12 +0100229{
Mika Kuoppalab620e872017-09-22 15:43:03 +0300230 struct intel_engine_execlists * const execlists = &engine->execlists;
Chris Wilson08dd3e12017-09-16 21:44:12 +0100231 struct i915_priolist *p;
232 struct rb_node **parent, *rb;
233 bool first = true;
234
Mika Kuoppalab620e872017-09-22 15:43:03 +0300235 if (unlikely(execlists->no_priolist))
Chris Wilson08dd3e12017-09-16 21:44:12 +0100236 prio = I915_PRIORITY_NORMAL;
237
238find_priolist:
239 /* most positive priority is scheduled first, equal priorities fifo */
240 rb = NULL;
Mika Kuoppalab620e872017-09-22 15:43:03 +0300241 parent = &execlists->queue.rb_node;
Chris Wilson08dd3e12017-09-16 21:44:12 +0100242 while (*parent) {
243 rb = *parent;
Chris Wilsonf6322ed2018-02-22 14:22:29 +0000244 p = to_priolist(rb);
Chris Wilson08dd3e12017-09-16 21:44:12 +0100245 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 Wilson27606fd2017-09-16 21:44:13 +0100251 return p;
Chris Wilson08dd3e12017-09-16 21:44:12 +0100252 }
253 }
254
255 if (prio == I915_PRIORITY_NORMAL) {
Mika Kuoppalab620e872017-09-22 15:43:03 +0300256 p = &execlists->default_priolist;
Chris Wilson08dd3e12017-09-16 21:44:12 +0100257 } 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 Kuoppalab620e872017-09-22 15:43:03 +0300271 execlists->no_priolist = true;
Chris Wilson08dd3e12017-09-16 21:44:12 +0100272 goto find_priolist;
273 }
274 }
275
276 p->priority = prio;
Chris Wilson27606fd2017-09-16 21:44:13 +0100277 INIT_LIST_HEAD(&p->requests);
Chris Wilson08dd3e12017-09-16 21:44:12 +0100278 rb_link_node(&p->node, rb, parent);
Mika Kuoppalab620e872017-09-22 15:43:03 +0300279 rb_insert_color(&p->node, &execlists->queue);
Chris Wilson08dd3e12017-09-16 21:44:12 +0100280
Chris Wilson08dd3e12017-09-16 21:44:12 +0100281 if (first)
Mika Kuoppalab620e872017-09-22 15:43:03 +0300282 execlists->first = &p->node;
Chris Wilson08dd3e12017-09-16 21:44:12 +0100283
Chris Wilsonf6322ed2018-02-22 14:22:29 +0000284 return p;
Chris Wilson08dd3e12017-09-16 21:44:12 +0100285}
286
Chris Wilsone61e0f52018-02-21 09:56:36 +0000287static void unwind_wa_tail(struct i915_request *rq)
Chris Wilson7e4992a2017-09-28 20:38:59 +0100288{
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ł Winiarskia4598d12017-10-25 22:00:18 +0200293static void __unwind_incomplete_requests(struct intel_engine_cs *engine)
Chris Wilson7e4992a2017-09-28 20:38:59 +0100294{
Chris Wilsone61e0f52018-02-21 09:56:36 +0000295 struct i915_request *rq, *rn;
Michał Winiarski097a9482017-09-28 20:39:01 +0100296 struct i915_priolist *uninitialized_var(p);
297 int last_prio = I915_PRIORITY_INVALID;
Chris Wilson7e4992a2017-09-28 20:38:59 +0100298
299 lockdep_assert_held(&engine->timeline->lock);
300
301 list_for_each_entry_safe_reverse(rq, rn,
302 &engine->timeline->requests,
303 link) {
Chris Wilsone61e0f52018-02-21 09:56:36 +0000304 if (i915_request_completed(rq))
Chris Wilson7e4992a2017-09-28 20:38:59 +0100305 return;
306
Chris Wilsone61e0f52018-02-21 09:56:36 +0000307 __i915_request_unsubmit(rq);
Chris Wilson7e4992a2017-09-28 20:38:59 +0100308 unwind_wa_tail(rq);
309
Chris Wilsonf6322ed2018-02-22 14:22:29 +0000310 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ł Winiarski097a9482017-09-28 20:39:01 +0100314 }
315
316 list_add(&rq->priotree.link, &p->requests);
Chris Wilson7e4992a2017-09-28 20:38:59 +0100317 }
318}
319
Michał Winiarskic41937f2017-10-26 15:35:58 +0200320void
Michał Winiarskia4598d12017-10-25 22:00:18 +0200321execlists_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 Wilsonbbd6c472016-09-09 14:11:45 +0100331static inline void
Chris Wilsone61e0f52018-02-21 09:56:36 +0000332execlists_context_status_change(struct i915_request *rq, unsigned long status)
Ben Widawsky84b790f2014-07-24 17:04:36 +0100333{
Chris Wilsonbbd6c472016-09-09 14:11:45 +0100334 /*
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 Widawsky84b790f2014-07-24 17:04:36 +0100340
Changbin Du3fc03062017-03-13 10:47:11 +0800341 atomic_notifier_call_chain(&rq->engine->context_status_notifier,
342 status, rq);
Ben Widawsky84b790f2014-07-24 17:04:36 +0100343}
344
Tvrtko Ursulin73fd9d32017-11-21 18:18:47 +0000345static inline void
Chris Wilsone61e0f52018-02-21 09:56:36 +0000346execlists_context_schedule_in(struct i915_request *rq)
Tvrtko Ursulin73fd9d32017-11-21 18:18:47 +0000347{
348 execlists_context_status_change(rq, INTEL_CONTEXT_SCHEDULE_IN);
Tvrtko Ursulin30e17b72017-11-21 18:18:48 +0000349 intel_engine_context_in(rq->engine);
Tvrtko Ursulin73fd9d32017-11-21 18:18:47 +0000350}
351
352static inline void
Chris Wilsone61e0f52018-02-21 09:56:36 +0000353execlists_context_schedule_out(struct i915_request *rq)
Tvrtko Ursulin73fd9d32017-11-21 18:18:47 +0000354{
Tvrtko Ursulin30e17b72017-11-21 18:18:48 +0000355 intel_engine_context_out(rq->engine);
Tvrtko Ursulin73fd9d32017-11-21 18:18:47 +0000356 execlists_context_status_change(rq, INTEL_CONTEXT_SCHEDULE_OUT);
357}
358
Tvrtko Ursulinc6a2ac72016-02-26 16:58:32 +0000359static void
360execlists_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 Wilsone61e0f52018-02-21 09:56:36 +0000368static u64 execlists_update_context(struct i915_request *rq)
Oscar Mateoae1250b2014-07-24 17:04:37 +0100369{
Chris Wilson70c2a242016-09-09 14:11:46 +0100370 struct intel_context *ce = &rq->ctx->engine[rq->engine->id];
Zhi Wang04da8112017-02-06 18:37:16 +0800371 struct i915_hw_ppgtt *ppgtt =
372 rq->ctx->ppgtt ?: rq->i915->mm.aliasing_ppgtt;
Chris Wilson70c2a242016-09-09 14:11:46 +0100373 u32 *reg_state = ce->lrc_reg_state;
Oscar Mateoae1250b2014-07-24 17:04:37 +0100374
Chris Wilsone6ba9992017-04-25 14:00:49 +0100375 reg_state[CTX_RING_TAIL+1] = intel_ring_set_tail(rq->ring, rq->tail);
Oscar Mateoae1250b2014-07-24 17:04:37 +0100376
Tvrtko Ursulinc6a2ac72016-02-26 16:58:32 +0000377 /* 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 Wilson949e8ab2017-02-09 14:40:36 +0000382 if (ppgtt && !i915_vm_is_48bit(&ppgtt->base))
Tvrtko Ursulinc6a2ac72016-02-26 16:58:32 +0000383 execlists_update_context_pdps(ppgtt, reg_state);
Chris Wilson70c2a242016-09-09 14:11:46 +0100384
385 return ce->lrc_desc;
Oscar Mateoae1250b2014-07-24 17:04:37 +0100386}
387
Chris Wilsonbeecec92017-10-03 21:34:52 +0100388static 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 Wilson70c2a242016-09-09 14:11:46 +0100394static void execlists_submit_ports(struct intel_engine_cs *engine)
Chris Wilsonbbd6c472016-09-09 14:11:45 +0100395{
Mika Kuoppalab620e872017-09-22 15:43:03 +0300396 struct execlist_port *port = engine->execlists.port;
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100397 unsigned int n;
Chris Wilsonbbd6c472016-09-09 14:11:45 +0100398
Mika Kuoppala76e70082017-09-22 15:43:07 +0300399 for (n = execlists_num_ports(&engine->execlists); n--; ) {
Chris Wilsone61e0f52018-02-21 09:56:36 +0000400 struct i915_request *rq;
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100401 unsigned int count;
402 u64 desc;
Chris Wilson70c2a242016-09-09 14:11:46 +0100403
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100404 rq = port_unpack(&port[n], &count);
405 if (rq) {
406 GEM_BUG_ON(count > !n);
407 if (!count++)
Tvrtko Ursulin73fd9d32017-11-21 18:18:47 +0000408 execlists_context_schedule_in(rq);
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100409 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 Wilsonbccd3b82017-11-09 14:30:19 +0000412
Chris Wilsonf6322ed2018-02-22 14:22:29 +0000413 GEM_TRACE("%s in[%d]: ctx=%d.%d, seqno=%x, prio=%d\n",
Chris Wilsonbccd3b82017-11-09 14:30:19 +0000414 engine->name, n,
Chris Wilson16c86192017-12-19 22:09:16 +0000415 port[n].context_id, count,
Chris Wilsonf6322ed2018-02-22 14:22:29 +0000416 rq->global_seqno,
417 rq_prio(rq));
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100418 } else {
419 GEM_BUG_ON(!n);
420 desc = 0;
421 }
422
Chris Wilson2fc7a062017-12-07 22:24:34 +0000423 elsp_write(desc, engine->execlists.elsp);
Chris Wilsonbbd6c472016-09-09 14:11:45 +0100424 }
Michel Thierryba74cb12017-11-20 12:34:58 +0000425 execlists_clear_active(&engine->execlists, EXECLISTS_ACTIVE_HWACK);
Chris Wilsonbbd6c472016-09-09 14:11:45 +0100426}
427
Chris Wilson70c2a242016-09-09 14:11:46 +0100428static bool ctx_single_port_submission(const struct i915_gem_context *ctx)
Ben Widawsky84b790f2014-07-24 17:04:36 +0100429{
Chris Wilson70c2a242016-09-09 14:11:46 +0100430 return (IS_ENABLED(CONFIG_DRM_I915_GVT) &&
Chris Wilson60958682016-12-31 11:20:11 +0000431 i915_gem_context_force_single_submission(ctx));
Ben Widawsky84b790f2014-07-24 17:04:36 +0100432}
433
Chris Wilson70c2a242016-09-09 14:11:46 +0100434static bool can_merge_ctx(const struct i915_gem_context *prev,
435 const struct i915_gem_context *next)
Michel Thierryacdd8842014-07-24 17:04:38 +0100436{
Chris Wilson70c2a242016-09-09 14:11:46 +0100437 if (prev != next)
438 return false;
Thomas Daniele981e7b2014-07-24 17:04:39 +0100439
Chris Wilson70c2a242016-09-09 14:11:46 +0100440 if (ctx_single_port_submission(prev))
441 return false;
Michel Thierryacdd8842014-07-24 17:04:38 +0100442
Chris Wilson70c2a242016-09-09 14:11:46 +0100443 return true;
444}
Peter Antoine779949f2015-05-11 16:03:27 +0100445
Chris Wilsone61e0f52018-02-21 09:56:36 +0000446static void port_assign(struct execlist_port *port, struct i915_request *rq)
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100447{
448 GEM_BUG_ON(rq == port_request(port));
449
450 if (port_isset(port))
Chris Wilsone61e0f52018-02-21 09:56:36 +0000451 i915_request_put(port_request(port));
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100452
Chris Wilsone61e0f52018-02-21 09:56:36 +0000453 port_set(port, port_pack(i915_request_get(rq), port_count(port)));
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100454}
455
Chris Wilsonbeecec92017-10-03 21:34:52 +0100456static void inject_preempt_context(struct intel_engine_cs *engine)
457{
458 struct intel_context *ce =
459 &engine->i915->preempt_context->engine[engine->id];
Chris Wilsonbeecec92017-10-03 21:34:52 +0100460 unsigned int n;
461
Chris Wilsond6376372018-02-07 21:05:44 +0000462 GEM_BUG_ON(engine->execlists.preempt_complete_status !=
463 upper_32_bits(ce->lrc_desc));
Chris Wilson09b1a4e2018-01-25 11:24:42 +0000464 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 Wilsonf6322ed2018-02-22 14:22:29 +0000470 /*
471 * Switch to our empty preempt context so
472 * the state of the GPU is known (idle).
473 */
Chris Wilson16a87392017-12-20 09:06:26 +0000474 GEM_TRACE("%s\n", engine->name);
Chris Wilsonbeecec92017-10-03 21:34:52 +0100475 for (n = execlists_num_ports(&engine->execlists); --n; )
Chris Wilson2fc7a062017-12-07 22:24:34 +0000476 elsp_write(0, engine->execlists.elsp);
Chris Wilsonbeecec92017-10-03 21:34:52 +0100477
Chris Wilson2fc7a062017-12-07 22:24:34 +0000478 elsp_write(ce->lrc_desc, engine->execlists.elsp);
Michel Thierryba74cb12017-11-20 12:34:58 +0000479 execlists_clear_active(&engine->execlists, EXECLISTS_ACTIVE_HWACK);
Chris Wilsonf6322ed2018-02-22 14:22:29 +0000480 execlists_set_active(&engine->execlists, EXECLISTS_ACTIVE_PREEMPT);
Chris Wilsonbeecec92017-10-03 21:34:52 +0100481}
482
Chris Wilson70c2a242016-09-09 14:11:46 +0100483static void execlists_dequeue(struct intel_engine_cs *engine)
484{
Mika Kuoppala7a62cc62017-09-22 15:43:06 +0300485 struct intel_engine_execlists * const execlists = &engine->execlists;
486 struct execlist_port *port = execlists->port;
Mika Kuoppala76e70082017-09-22 15:43:07 +0300487 const struct execlist_port * const last_port =
488 &execlists->port[execlists->port_mask];
Chris Wilsone61e0f52018-02-21 09:56:36 +0000489 struct i915_request *last = port_request(port);
Chris Wilson20311bd2016-11-14 20:41:03 +0000490 struct rb_node *rb;
Chris Wilson70c2a242016-09-09 14:11:46 +0100491 bool submit = false;
Michel Thierryacdd8842014-07-24 17:04:38 +0100492
Chris Wilson70c2a242016-09-09 14:11:46 +0100493 /* 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 Ursulin9f7886d2017-03-21 10:55:11 +0000514 spin_lock_irq(&engine->timeline->lock);
Mika Kuoppala7a62cc62017-09-22 15:43:06 +0300515 rb = execlists->first;
516 GEM_BUG_ON(rb_first(&execlists->queue) != rb);
Chris Wilsonbeecec92017-10-03 21:34:52 +0100517
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 Thierryba74cb12017-11-20 12:34:58 +0000525 GEM_BUG_ON(!port_count(&port[0]));
Chris Wilsonbeecec92017-10-03 21:34:52 +0100526 if (port_count(&port[0]) > 1)
527 goto unlock;
528
Michel Thierryba74cb12017-11-20 12:34:58 +0000529 /*
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 Wilsonf6322ed2018-02-22 14:22:29 +0000539 if (need_preempt(engine, last, execlists->queue_priority)) {
Chris Wilsonbeecec92017-10-03 21:34:52 +0100540 inject_preempt_context(engine);
Chris Wilsonbeecec92017-10-03 21:34:52 +0100541 goto unlock;
Chris Wilsonbeecec92017-10-03 21:34:52 +0100542 }
Chris Wilsonf6322ed2018-02-22 14:22:29 +0000543
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 Wilsonbeecec92017-10-03 21:34:52 +0100577 }
578
Chris Wilsonf6322ed2018-02-22 14:22:29 +0000579 while (rb) {
580 struct i915_priolist *p = to_priolist(rb);
Chris Wilsone61e0f52018-02-21 09:56:36 +0000581 struct i915_request *rq, *rn;
Chris Wilson20311bd2016-11-14 20:41:03 +0000582
Chris Wilson6c067572017-05-17 13:10:03 +0100583 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 Wilson70c2a242016-09-09 14:11:46 +0100594 */
Chris Wilson6c067572017-05-17 13:10:03 +0100595 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 Kuoppala76e70082017-09-22 15:43:07 +0300601 if (port == last_port) {
Chris Wilson6c067572017-05-17 13:10:03 +0100602 __list_del_many(&p->requests,
603 &rq->priotree.link);
604 goto done;
605 }
Chris Wilson70c2a242016-09-09 14:11:46 +0100606
Chris Wilson6c067572017-05-17 13:10:03 +0100607 /*
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 Wilson70c2a242016-09-09 14:11:46 +0100620
Chris Wilson6c067572017-05-17 13:10:03 +0100621 GEM_BUG_ON(last->ctx == rq->ctx);
Chris Wilson70c2a242016-09-09 14:11:46 +0100622
Chris Wilson6c067572017-05-17 13:10:03 +0100623 if (submit)
624 port_assign(port, last);
625 port++;
Mika Kuoppala7a62cc62017-09-22 15:43:06 +0300626
627 GEM_BUG_ON(port_isset(port));
Chris Wilson6c067572017-05-17 13:10:03 +0100628 }
629
630 INIT_LIST_HEAD(&rq->priotree.link);
Chris Wilsone61e0f52018-02-21 09:56:36 +0000631 __i915_request_submit(rq);
632 trace_i915_request_in(rq, port_index(port, execlists));
Chris Wilson6c067572017-05-17 13:10:03 +0100633 last = rq;
634 submit = true;
Chris Wilson70c2a242016-09-09 14:11:46 +0100635 }
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000636
Chris Wilson20311bd2016-11-14 20:41:03 +0000637 rb = rb_next(rb);
Mika Kuoppala7a62cc62017-09-22 15:43:06 +0300638 rb_erase(&p->node, &execlists->queue);
Chris Wilson6c067572017-05-17 13:10:03 +0100639 INIT_LIST_HEAD(&p->requests);
640 if (p->priority != I915_PRIORITY_NORMAL)
Chris Wilsonc5cf9a92017-05-17 13:10:04 +0100641 kmem_cache_free(engine->i915->priorities, p);
Chris Wilsonf6322ed2018-02-22 14:22:29 +0000642 }
Chris Wilson6c067572017-05-17 13:10:03 +0100643done:
Chris Wilsonf6322ed2018-02-22 14:22:29 +0000644 execlists->queue_priority = rb ? to_priolist(rb)->priority : INT_MIN;
Mika Kuoppala7a62cc62017-09-22 15:43:06 +0300645 execlists->first = rb;
Chris Wilson6c067572017-05-17 13:10:03 +0100646 if (submit)
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100647 port_assign(port, last);
Chris Wilson339ccd32018-02-15 16:25:53 +0000648
649 /* We must always keep the beast fed if we have work piled up */
Chris Wilson339ccd32018-02-15 16:25:53 +0000650 GEM_BUG_ON(execlists->first && !port_isset(execlists->port));
651
Chris Wilsonbeecec92017-10-03 21:34:52 +0100652unlock:
Tvrtko Ursulin9f7886d2017-03-21 10:55:11 +0000653 spin_unlock_irq(&engine->timeline->lock);
Chris Wilson70c2a242016-09-09 14:11:46 +0100654
Chris Wilson4a118ec2017-10-23 22:32:36 +0100655 if (submit) {
656 execlists_set_active(execlists, EXECLISTS_ACTIVE_USER);
Chris Wilson70c2a242016-09-09 14:11:46 +0100657 execlists_submit_ports(engine);
Chris Wilson4a118ec2017-10-23 22:32:36 +0100658 }
Chris Wilsond081e022018-02-16 15:32:10 +0000659
660 GEM_BUG_ON(port_isset(execlists->port) &&
661 !execlists_is_active(execlists, EXECLISTS_ACTIVE_USER));
Michel Thierryacdd8842014-07-24 17:04:38 +0100662}
663
Michał Winiarskic41937f2017-10-26 15:35:58 +0200664void
Michał Winiarskia4598d12017-10-25 22:00:18 +0200665execlists_cancel_port_requests(struct intel_engine_execlists * const execlists)
Mika Kuoppalacf4591d2017-09-22 15:43:05 +0300666{
Chris Wilson3f9e6cd2017-09-25 13:49:27 +0100667 struct execlist_port *port = execlists->port;
Mika Kuoppaladc2279e2017-10-10 14:48:57 +0300668 unsigned int num_ports = execlists_num_ports(execlists);
Mika Kuoppalacf4591d2017-09-22 15:43:05 +0300669
Chris Wilson3f9e6cd2017-09-25 13:49:27 +0100670 while (num_ports-- && port_isset(port)) {
Chris Wilsone61e0f52018-02-21 09:56:36 +0000671 struct i915_request *rq = port_request(port);
Chris Wilson7e44fc22017-09-26 11:17:19 +0100672
Chris Wilson4a118ec2017-10-23 22:32:36 +0100673 GEM_BUG_ON(!execlists->active);
Tvrtko Ursulin30e17b72017-11-21 18:18:48 +0000674 intel_engine_context_out(rq->engine);
Chris Wilsond6c05112017-10-03 21:34:47 +0100675 execlists_context_status_change(rq, INTEL_CONTEXT_SCHEDULE_PREEMPTED);
Chris Wilsone61e0f52018-02-21 09:56:36 +0000676 i915_request_put(rq);
Chris Wilson7e44fc22017-09-26 11:17:19 +0100677
Chris Wilson3f9e6cd2017-09-25 13:49:27 +0100678 memset(port, 0, sizeof(*port));
679 port++;
680 }
Mika Kuoppalacf4591d2017-09-22 15:43:05 +0300681}
682
Chris Wilson27a5f612017-09-15 18:31:00 +0100683static void execlists_cancel_requests(struct intel_engine_cs *engine)
684{
Mika Kuoppalab620e872017-09-22 15:43:03 +0300685 struct intel_engine_execlists * const execlists = &engine->execlists;
Chris Wilsone61e0f52018-02-21 09:56:36 +0000686 struct i915_request *rq, *rn;
Chris Wilson27a5f612017-09-15 18:31:00 +0100687 struct rb_node *rb;
688 unsigned long flags;
Chris Wilson27a5f612017-09-15 18:31:00 +0100689
Chris Wilson963ddd62018-03-02 11:33:24 +0000690 GEM_TRACE("%s\n", engine->name);
691
Chris Wilsona3e38832018-03-02 14:32:45 +0000692 /*
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 Wilson27a5f612017-09-15 18:31:00 +0100707
708 /* Cancel the requests on the HW and clear the ELSP tracker. */
Michał Winiarskia4598d12017-10-25 22:00:18 +0200709 execlists_cancel_port_requests(execlists);
Chris Wilson27a5f612017-09-15 18:31:00 +0100710
Chris Wilsona3e38832018-03-02 14:32:45 +0000711 spin_lock(&engine->timeline->lock);
712
Chris Wilson27a5f612017-09-15 18:31:00 +0100713 /* Mark all executing requests as skipped. */
714 list_for_each_entry(rq, &engine->timeline->requests, link) {
715 GEM_BUG_ON(!rq->global_seqno);
Chris Wilsone61e0f52018-02-21 09:56:36 +0000716 if (!i915_request_completed(rq))
Chris Wilson27a5f612017-09-15 18:31:00 +0100717 dma_fence_set_error(&rq->fence, -EIO);
718 }
719
720 /* Flush the queued requests to the timeline list (for retiring). */
Mika Kuoppalab620e872017-09-22 15:43:03 +0300721 rb = execlists->first;
Chris Wilson27a5f612017-09-15 18:31:00 +0100722 while (rb) {
Chris Wilsonf6322ed2018-02-22 14:22:29 +0000723 struct i915_priolist *p = to_priolist(rb);
Chris Wilson27a5f612017-09-15 18:31:00 +0100724
725 list_for_each_entry_safe(rq, rn, &p->requests, priotree.link) {
726 INIT_LIST_HEAD(&rq->priotree.link);
Chris Wilson27a5f612017-09-15 18:31:00 +0100727
728 dma_fence_set_error(&rq->fence, -EIO);
Chris Wilsone61e0f52018-02-21 09:56:36 +0000729 __i915_request_submit(rq);
Chris Wilson27a5f612017-09-15 18:31:00 +0100730 }
731
732 rb = rb_next(rb);
Mika Kuoppalab620e872017-09-22 15:43:03 +0300733 rb_erase(&p->node, &execlists->queue);
Chris Wilson27a5f612017-09-15 18:31:00 +0100734 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 Wilsonf6322ed2018-02-22 14:22:29 +0000741 execlists->queue_priority = INT_MIN;
Mika Kuoppalab620e872017-09-22 15:43:03 +0300742 execlists->queue = RB_ROOT;
743 execlists->first = NULL;
Chris Wilson3f9e6cd2017-09-25 13:49:27 +0100744 GEM_BUG_ON(port_isset(execlists->port));
Chris Wilson27a5f612017-09-15 18:31:00 +0100745
Chris Wilsona3e38832018-03-02 14:32:45 +0000746 spin_unlock(&engine->timeline->lock);
747
Chris Wilson27a5f612017-09-15 18:31:00 +0100748 /*
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 Wilson963ddd62018-03-02 11:33:24 +0000756 /* Mark all CS interrupts as complete */
757 execlists->active = 0;
758
Chris Wilsona3e38832018-03-02 14:32:45 +0000759 local_irq_restore(flags);
Chris Wilson27a5f612017-09-15 18:31:00 +0100760}
761
Daniel Vetter6e5248b2016-07-15 21:48:06 +0200762/*
Oscar Mateo73e4d072014-07-24 17:04:48 +0100763 * Check the unread Context Status Buffers and manage the submission of new
764 * contexts to the ELSP accordingly.
765 */
Sagar Arun Kamblec6dce8f2017-11-16 19:02:37 +0530766static void execlists_submission_tasklet(unsigned long data)
Thomas Daniele981e7b2014-07-24 17:04:39 +0100767{
Mika Kuoppalab620e872017-09-22 15:43:03 +0300768 struct intel_engine_cs * const engine = (struct intel_engine_cs *)data;
769 struct intel_engine_execlists * const execlists = &engine->execlists;
Chris Wilsonbeecec92017-10-03 21:34:52 +0100770 struct execlist_port * const port = execlists->port;
Chris Wilsonc0336662016-05-06 15:40:21 +0100771 struct drm_i915_private *dev_priv = engine->i915;
Chris Wilsonbb5db7e2018-01-22 10:07:14 +0000772 bool fw = false;
Thomas Daniele981e7b2014-07-24 17:04:39 +0100773
Chris Wilson48921262017-04-11 18:58:50 +0100774 /* 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 Wilson899f6202017-03-21 11:33:20 +0000783 /* 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 Wilson6d2cb5a2017-09-13 14:35:34 +0100788 /* 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 Wilson4af0d722017-03-25 20:10:53 +0000791 unsigned int head, tail;
Thomas Daniele981e7b2014-07-24 17:04:39 +0100792
Mika Kuoppalab620e872017-09-22 15:43:03 +0300793 if (unlikely(execlists->csb_use_mmio)) {
Chris Wilson6d2cb5a2017-09-13 14:35:34 +0100794 buf = (u32 * __force)
795 (dev_priv->regs + i915_mmio_reg_offset(RING_CONTEXT_STATUS_BUF_LO(engine, 0)));
Mika Kuoppalab620e872017-09-22 15:43:03 +0300796 execlists->csb_head = -1; /* force mmio read of CSB ptrs */
Chris Wilson6d2cb5a2017-09-13 14:35:34 +0100797 }
798
Chris Wilson2e70b8c2017-03-23 13:48:03 +0000799 /* 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 Kuoppalab620e872017-09-22 15:43:03 +0300810 if (unlikely(execlists->csb_head == -1)) { /* following a reset */
Chris Wilsonbb5db7e2018-01-22 10:07:14 +0000811 if (!fw) {
812 intel_uncore_forcewake_get(dev_priv,
813 execlists->fw_domains);
814 fw = true;
815 }
816
Chris Wilson767a9832017-09-13 09:56:05 +0100817 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 Kuoppalab620e872017-09-22 15:43:03 +0300820 execlists->csb_head = head;
Chris Wilson767a9832017-09-13 09:56:05 +0100821 } else {
822 const int write_idx =
823 intel_hws_csb_write_index(dev_priv) -
824 I915_HWS_CSB_BUF0_INDEX;
825
Mika Kuoppalab620e872017-09-22 15:43:03 +0300826 head = execlists->csb_head;
Chris Wilson767a9832017-09-13 09:56:05 +0100827 tail = READ_ONCE(buf[write_idx]);
828 }
Chris Wilsonbb5db7e2018-01-22 10:07:14 +0000829 GEM_TRACE("%s cs-irq head=%d [%d%s], tail=%d [%d%s]\n",
Chris Wilsonbccd3b82017-11-09 14:30:19 +0000830 engine->name,
Chris Wilsonbb5db7e2018-01-22 10:07:14 +0000831 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 Kuoppalab620e872017-09-22 15:43:03 +0300833
Chris Wilson4af0d722017-03-25 20:10:53 +0000834 while (head != tail) {
Chris Wilsone61e0f52018-02-21 09:56:36 +0000835 struct i915_request *rq;
Chris Wilson4af0d722017-03-25 20:10:53 +0000836 unsigned int status;
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100837 unsigned int count;
Chris Wilsona37951a2017-01-24 11:00:06 +0000838
Chris Wilson4af0d722017-03-25 20:10:53 +0000839 if (++head == GEN8_CSB_ENTRIES)
840 head = 0;
Thomas Daniele981e7b2014-07-24 17:04:39 +0100841
Chris Wilson2ffe80a2017-02-06 17:05:02 +0000842 /* 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 Wilson6d2cb5a2017-09-13 14:35:34 +0100859 status = READ_ONCE(buf[2 * head]); /* maybe mmio! */
Chris Wilson193a98d2017-12-22 13:27:42 +0000860 GEM_TRACE("%s csb[%d]: status=0x%08x:0x%08x, active=0x%x\n",
Chris Wilsonbccd3b82017-11-09 14:30:19 +0000861 engine->name, head,
Chris Wilson193a98d2017-12-22 13:27:42 +0000862 status, buf[2*head + 1],
863 execlists->active);
Michel Thierryba74cb12017-11-20 12:34:58 +0000864
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 Wilson70c2a242016-09-09 14:11:46 +0100873 if (!(status & GEN8_CTX_STATUS_COMPLETED_MASK))
874 continue;
Thomas Daniele981e7b2014-07-24 17:04:39 +0100875
Chris Wilson1f5f9ed2017-11-20 12:34:57 +0000876 /* We should never get a COMPLETED | IDLE_ACTIVE! */
877 GEM_BUG_ON(status & GEN8_CTX_STATUS_IDLE_ACTIVE);
878
Chris Wilsone40dd222017-11-20 12:34:55 +0000879 if (status & GEN8_CTX_STATUS_COMPLETE &&
Chris Wilsond6376372018-02-07 21:05:44 +0000880 buf[2*head + 1] == execlists->preempt_complete_status) {
Chris Wilson193a98d2017-12-22 13:27:42 +0000881 GEM_TRACE("%s preempt-idle\n", engine->name);
882
Michał Winiarskia4598d12017-10-25 22:00:18 +0200883 execlists_cancel_port_requests(execlists);
884 execlists_unwind_incomplete_requests(execlists);
Chris Wilsonbeecec92017-10-03 21:34:52 +0100885
Chris Wilson4a118ec2017-10-23 22:32:36 +0100886 GEM_BUG_ON(!execlists_is_active(execlists,
887 EXECLISTS_ACTIVE_PREEMPT));
888 execlists_clear_active(execlists,
889 EXECLISTS_ACTIVE_PREEMPT);
Chris Wilsonbeecec92017-10-03 21:34:52 +0100890 continue;
891 }
892
893 if (status & GEN8_CTX_STATUS_PREEMPTED &&
Chris Wilson4a118ec2017-10-23 22:32:36 +0100894 execlists_is_active(execlists,
895 EXECLISTS_ACTIVE_PREEMPT))
Chris Wilsonbeecec92017-10-03 21:34:52 +0100896 continue;
897
Chris Wilson4a118ec2017-10-23 22:32:36 +0100898 GEM_BUG_ON(!execlists_is_active(execlists,
899 EXECLISTS_ACTIVE_USER));
900
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100901 rq = port_unpack(port, &count);
Chris Wilsonf6322ed2018-02-22 14:22:29 +0000902 GEM_TRACE("%s out[0]: ctx=%d.%d, seqno=%x, prio=%d\n",
Chris Wilsonbccd3b82017-11-09 14:30:19 +0000903 engine->name,
Chris Wilson16c86192017-12-19 22:09:16 +0000904 port->context_id, count,
Chris Wilsonf6322ed2018-02-22 14:22:29 +0000905 rq ? rq->global_seqno : 0,
906 rq ? rq_prio(rq) : 0);
Chris Wilsone0840392018-02-21 15:23:01 +0000907
908 /* Check the context/desc id for this event matches */
909 GEM_DEBUG_BUG_ON(buf[2 * head + 1] != port->context_id);
910
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100911 GEM_BUG_ON(count == 0);
912 if (--count == 0) {
Chris Wilson70c2a242016-09-09 14:11:46 +0100913 GEM_BUG_ON(status & GEN8_CTX_STATUS_PREEMPTED);
Chris Wilsond8747af2017-11-20 12:34:56 +0000914 GEM_BUG_ON(port_isset(&port[1]) &&
915 !(status & GEN8_CTX_STATUS_ELEMENT_SWITCH));
Chris Wilsone61e0f52018-02-21 09:56:36 +0000916 GEM_BUG_ON(!i915_request_completed(rq));
Tvrtko Ursulin73fd9d32017-11-21 18:18:47 +0000917 execlists_context_schedule_out(rq);
Chris Wilsone61e0f52018-02-21 09:56:36 +0000918 trace_i915_request_out(rq);
919 i915_request_put(rq);
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100920
Chris Wilson65cb8c02018-02-21 15:15:53 +0000921 GEM_TRACE("%s completed ctx=%d\n",
922 engine->name, port->context_id);
923
Mika Kuoppala7a62cc62017-09-22 15:43:06 +0300924 execlists_port_complete(execlists, port);
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100925 } else {
926 port_set(port, port_pack(rq, count));
Chris Wilson70c2a242016-09-09 14:11:46 +0100927 }
Tvrtko Ursulinc6a2ac72016-02-26 16:58:32 +0000928
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100929 /* After the final element, the hw should be idle */
930 GEM_BUG_ON(port_count(port) == 0 &&
Chris Wilson70c2a242016-09-09 14:11:46 +0100931 !(status & GEN8_CTX_STATUS_ACTIVE_IDLE));
Chris Wilson4a118ec2017-10-23 22:32:36 +0100932 if (port_count(port) == 0)
933 execlists_clear_active(execlists,
934 EXECLISTS_ACTIVE_USER);
Chris Wilson4af0d722017-03-25 20:10:53 +0000935 }
Tvrtko Ursulin26720ab2016-03-17 12:59:46 +0000936
Mika Kuoppalab620e872017-09-22 15:43:03 +0300937 if (head != execlists->csb_head) {
938 execlists->csb_head = head;
Chris Wilson767a9832017-09-13 09:56:05 +0100939 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 Ursulin26720ab2016-03-17 12:59:46 +0000942 }
943
Chris Wilson4a118ec2017-10-23 22:32:36 +0100944 if (!execlists_is_active(execlists, EXECLISTS_ACTIVE_PREEMPT))
Chris Wilson70c2a242016-09-09 14:11:46 +0100945 execlists_dequeue(engine);
Tvrtko Ursulin26720ab2016-03-17 12:59:46 +0000946
Chris Wilsonbb5db7e2018-01-22 10:07:14 +0000947 if (fw)
948 intel_uncore_forcewake_put(dev_priv, execlists->fw_domains);
Thomas Daniele981e7b2014-07-24 17:04:39 +0100949}
950
Chris Wilsonf6322ed2018-02-22 14:22:29 +0000951static void queue_request(struct intel_engine_cs *engine,
952 struct i915_priotree *pt,
953 int prio)
Chris Wilson27606fd2017-09-16 21:44:13 +0100954{
Chris Wilsonf6322ed2018-02-22 14:22:29 +0000955 list_add_tail(&pt->link, &lookup_priolist(engine, pt, prio)->requests);
956}
Chris Wilson27606fd2017-09-16 21:44:13 +0100957
Chris Wilsonf6322ed2018-02-22 14:22:29 +0000958static 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 Kamblec6dce8f2017-11-16 19:02:37 +0530962 tasklet_hi_schedule(&engine->execlists.tasklet);
Chris Wilsonf6322ed2018-02-22 14:22:29 +0000963 }
Chris Wilson27606fd2017-09-16 21:44:13 +0100964}
965
Chris Wilsone61e0f52018-02-21 09:56:36 +0000966static void execlists_submit_request(struct i915_request *request)
Michel Thierryacdd8842014-07-24 17:04:38 +0100967{
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +0000968 struct intel_engine_cs *engine = request->engine;
Chris Wilson5590af32016-09-09 14:11:54 +0100969 unsigned long flags;
Michel Thierryacdd8842014-07-24 17:04:38 +0100970
Chris Wilson663f71e2016-11-14 20:41:00 +0000971 /* Will be called from irq-context when using foreign fences. */
972 spin_lock_irqsave(&engine->timeline->lock, flags);
Michel Thierryacdd8842014-07-24 17:04:38 +0100973
Chris Wilsonf6322ed2018-02-22 14:22:29 +0000974 queue_request(engine, &request->priotree, rq_prio(request));
975 submit_queue(engine, rq_prio(request));
Michel Thierryacdd8842014-07-24 17:04:38 +0100976
Mika Kuoppalab620e872017-09-22 15:43:03 +0300977 GEM_BUG_ON(!engine->execlists.first);
Chris Wilson6c067572017-05-17 13:10:03 +0100978 GEM_BUG_ON(list_empty(&request->priotree.link));
979
Chris Wilson663f71e2016-11-14 20:41:00 +0000980 spin_unlock_irqrestore(&engine->timeline->lock, flags);
Michel Thierryacdd8842014-07-24 17:04:38 +0100981}
982
Chris Wilsone61e0f52018-02-21 09:56:36 +0000983static struct i915_request *pt_to_request(struct i915_priotree *pt)
Chris Wilson1f181222017-10-03 21:34:50 +0100984{
Chris Wilsone61e0f52018-02-21 09:56:36 +0000985 return container_of(pt, struct i915_request, priotree);
Chris Wilson1f181222017-10-03 21:34:50 +0100986}
987
Chris Wilson20311bd2016-11-14 20:41:03 +0000988static struct intel_engine_cs *
989pt_lock_engine(struct i915_priotree *pt, struct intel_engine_cs *locked)
990{
Chris Wilson1f181222017-10-03 21:34:50 +0100991 struct intel_engine_cs *engine = pt_to_request(pt)->engine;
Chris Wilson20311bd2016-11-14 20:41:03 +0000992
Chris Wilsona79a5242017-03-27 21:21:43 +0100993 GEM_BUG_ON(!locked);
994
Chris Wilson20311bd2016-11-14 20:41:03 +0000995 if (engine != locked) {
Chris Wilsona79a5242017-03-27 21:21:43 +0100996 spin_unlock(&locked->timeline->lock);
997 spin_lock(&engine->timeline->lock);
Chris Wilson20311bd2016-11-14 20:41:03 +0000998 }
999
1000 return engine;
1001}
1002
Chris Wilsone61e0f52018-02-21 09:56:36 +00001003static void execlists_schedule(struct i915_request *request, int prio)
Chris Wilson20311bd2016-11-14 20:41:03 +00001004{
Chris Wilsona79a5242017-03-27 21:21:43 +01001005 struct intel_engine_cs *engine;
Chris Wilson20311bd2016-11-14 20:41:03 +00001006 struct i915_dependency *dep, *p;
1007 struct i915_dependency stack;
1008 LIST_HEAD(dfs);
1009
Chris Wilson7d1ea602017-09-28 20:39:00 +01001010 GEM_BUG_ON(prio == I915_PRIORITY_INVALID);
1011
Chris Wilsone61e0f52018-02-21 09:56:36 +00001012 if (i915_request_completed(request))
Chris Wilsonc218ee02018-01-06 10:56:18 +00001013 return;
1014
Chris Wilson20311bd2016-11-14 20:41:03 +00001015 if (prio <= READ_ONCE(request->priotree.priority))
1016 return;
1017
Chris Wilson70cd1472016-11-28 14:36:49 +00001018 /* Need BKL in order to use the temporary link inside i915_dependency */
1019 lockdep_assert_held(&request->i915->drm.struct_mutex);
Chris Wilson20311bd2016-11-14 20:41:03 +00001020
1021 stack.signaler = &request->priotree;
1022 list_add(&stack.dfs_link, &dfs);
1023
Chris Wilsonce01b172018-01-02 15:12:26 +00001024 /*
1025 * Recursively bump all dependent priorities to match the new request.
Chris Wilson20311bd2016-11-14 20:41:03 +00001026 *
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 Wilsonf6322ed2018-02-22 14:22:29 +00001031 * queue_request(pt);
Chris Wilson20311bd2016-11-14 20:41:03 +00001032 * }
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 Wilson2221c5b2018-01-02 15:12:27 +00001042 list_for_each_entry(dep, &dfs, dfs_link) {
Chris Wilson20311bd2016-11-14 20:41:03 +00001043 struct i915_priotree *pt = dep->signaler;
1044
Chris Wilsonce01b172018-01-02 15:12:26 +00001045 /*
1046 * Within an engine, there can be no cycle, but we may
Chris Wilsona79a5242017-03-27 21:21:43 +01001047 * 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 Wilsonce01b172018-01-02 15:12:26 +00001052 GEM_BUG_ON(p == dep); /* no cycles! */
1053
Chris Wilson83cc84c2018-01-02 15:12:25 +00001054 if (i915_priotree_signaled(p->signaler))
Chris Wilson1f181222017-10-03 21:34:50 +01001055 continue;
1056
Chris Wilsona79a5242017-03-27 21:21:43 +01001057 GEM_BUG_ON(p->signaler->priority < pt->priority);
Chris Wilson20311bd2016-11-14 20:41:03 +00001058 if (prio > READ_ONCE(p->signaler->priority))
1059 list_move_tail(&p->dfs_link, &dfs);
Chris Wilsona79a5242017-03-27 21:21:43 +01001060 }
Chris Wilson20311bd2016-11-14 20:41:03 +00001061 }
1062
Chris Wilsonce01b172018-01-02 15:12:26 +00001063 /*
1064 * If we didn't need to bump any existing priorities, and we haven't
Chris Wilson349bdb62017-05-17 13:10:05 +01001065 * 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 Wilson7d1ea602017-09-28 20:39:00 +01001069 if (request->priotree.priority == I915_PRIORITY_INVALID) {
Chris Wilson349bdb62017-05-17 13:10:05 +01001070 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 Wilsona79a5242017-03-27 21:21:43 +01001077 engine = request->engine;
1078 spin_lock_irq(&engine->timeline->lock);
1079
Chris Wilson20311bd2016-11-14 20:41:03 +00001080 /* 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 Wilson20311bd2016-11-14 20:41:03 +00001091 pt->priority = prio;
Chris Wilson6c067572017-05-17 13:10:03 +01001092 if (!list_empty(&pt->link)) {
1093 __list_del_entry(&pt->link);
Chris Wilsonf6322ed2018-02-22 14:22:29 +00001094 queue_request(engine, pt, prio);
Chris Wilsona79a5242017-03-27 21:21:43 +01001095 }
Chris Wilsonf6322ed2018-02-22 14:22:29 +00001096 submit_queue(engine, prio);
Chris Wilson20311bd2016-11-14 20:41:03 +00001097 }
1098
Chris Wilsona79a5242017-03-27 21:21:43 +01001099 spin_unlock_irq(&engine->timeline->lock);
Chris Wilson20311bd2016-11-14 20:41:03 +00001100}
1101
Chris Wilsonf4e15af2017-11-10 14:26:32 +00001102static 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 Wilson266a2402017-05-04 10:33:08 +01001125static struct intel_ring *
1126execlists_context_pin(struct intel_engine_cs *engine,
1127 struct i915_gem_context *ctx)
Oscar Mateodcb4c122014-11-13 10:28:10 +00001128{
Chris Wilson9021ad02016-05-24 14:53:37 +01001129 struct intel_context *ce = &ctx->engine[engine->id];
Tvrtko Ursulin7d774ca2016-04-12 15:40:42 +01001130 void *vaddr;
Tvrtko Ursulinca825802016-01-15 15:10:27 +00001131 int ret;
Oscar Mateodcb4c122014-11-13 10:28:10 +00001132
Chris Wilson91c8a322016-07-05 10:40:23 +01001133 lockdep_assert_held(&ctx->i915->drm.struct_mutex);
Tvrtko Ursulinca825802016-01-15 15:10:27 +00001134
Chris Wilson266a2402017-05-04 10:33:08 +01001135 if (likely(ce->pin_count++))
1136 goto out;
Chris Wilsona533b4b2017-03-16 17:16:28 +00001137 GEM_BUG_ON(!ce->pin_count); /* no overflow please! */
Chris Wilson24f1d3c2016-04-28 09:56:53 +01001138
Chris Wilson1d2a19c2018-01-26 12:18:46 +00001139 ret = execlists_context_deferred_alloc(ctx, engine);
1140 if (ret)
1141 goto err;
Chris Wilson56f6e0a2017-01-05 15:30:20 +00001142 GEM_BUG_ON(!ce->state);
Chris Wilsone8a9c582016-12-18 15:37:20 +00001143
Chris Wilsonf4e15af2017-11-10 14:26:32 +00001144 ret = __context_pin(ctx, ce->state);
Nick Hoathe84fe802015-09-11 12:53:46 +01001145 if (ret)
Chris Wilson24f1d3c2016-04-28 09:56:53 +01001146 goto err;
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001147
Chris Wilsonbf3783e2016-08-15 10:48:54 +01001148 vaddr = i915_gem_object_pin_map(ce->state->obj, I915_MAP_WB);
Tvrtko Ursulin7d774ca2016-04-12 15:40:42 +01001149 if (IS_ERR(vaddr)) {
1150 ret = PTR_ERR(vaddr);
Chris Wilsonbf3783e2016-08-15 10:48:54 +01001151 goto unpin_vma;
Tvrtko Ursulin82352e92016-01-15 17:12:45 +00001152 }
1153
Chris Wilsond822bb12017-04-03 12:34:25 +01001154 ret = intel_ring_pin(ce->ring, ctx->i915, ctx->ggtt_offset_bias);
Nick Hoathe84fe802015-09-11 12:53:46 +01001155 if (ret)
Tvrtko Ursulin7d774ca2016-04-12 15:40:42 +01001156 goto unpin_map;
Alex Daid1675192015-08-12 15:43:43 +01001157
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001158 intel_lr_context_descriptor_update(ctx, engine);
Chris Wilson9021ad02016-05-24 14:53:37 +01001159
Chris Wilsona3aabe82016-10-04 21:11:26 +01001160 ce->lrc_reg_state = vaddr + LRC_STATE_PN * PAGE_SIZE;
1161 ce->lrc_reg_state[CTX_RING_BUFFER_START+1] =
Chris Wilsonbde13eb2016-08-15 10:49:07 +01001162 i915_ggtt_offset(ce->ring->vma);
Chris Wilsona3aabe82016-10-04 21:11:26 +01001163
Chris Wilson3d574a62017-10-13 21:26:16 +01001164 ce->state->obj->pin_global++;
Chris Wilson9a6feaf2016-07-20 13:31:50 +01001165 i915_gem_context_get(ctx);
Chris Wilson266a2402017-05-04 10:33:08 +01001166out:
1167 return ce->ring;
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001168
Tvrtko Ursulin7d774ca2016-04-12 15:40:42 +01001169unpin_map:
Chris Wilsonbf3783e2016-08-15 10:48:54 +01001170 i915_gem_object_unpin_map(ce->state->obj);
1171unpin_vma:
1172 __i915_vma_unpin(ce->state);
Chris Wilson24f1d3c2016-04-28 09:56:53 +01001173err:
Chris Wilson9021ad02016-05-24 14:53:37 +01001174 ce->pin_count = 0;
Chris Wilson266a2402017-05-04 10:33:08 +01001175 return ERR_PTR(ret);
Oscar Mateodcb4c122014-11-13 10:28:10 +00001176}
1177
Chris Wilsone8a9c582016-12-18 15:37:20 +00001178static void execlists_context_unpin(struct intel_engine_cs *engine,
1179 struct i915_gem_context *ctx)
Oscar Mateodcb4c122014-11-13 10:28:10 +00001180{
Chris Wilson9021ad02016-05-24 14:53:37 +01001181 struct intel_context *ce = &ctx->engine[engine->id];
Daniel Vetteraf3302b2015-12-04 17:27:15 +01001182
Chris Wilson91c8a322016-07-05 10:40:23 +01001183 lockdep_assert_held(&ctx->i915->drm.struct_mutex);
Chris Wilson9021ad02016-05-24 14:53:37 +01001184 GEM_BUG_ON(ce->pin_count == 0);
Tvrtko Ursulin321fe302016-01-28 10:29:55 +00001185
Chris Wilson9021ad02016-05-24 14:53:37 +01001186 if (--ce->pin_count)
Chris Wilson24f1d3c2016-04-28 09:56:53 +01001187 return;
1188
Chris Wilsonaad29fb2016-08-02 22:50:23 +01001189 intel_ring_unpin(ce->ring);
Chris Wilson24f1d3c2016-04-28 09:56:53 +01001190
Chris Wilson3d574a62017-10-13 21:26:16 +01001191 ce->state->obj->pin_global--;
Chris Wilsonbf3783e2016-08-15 10:48:54 +01001192 i915_gem_object_unpin_map(ce->state->obj);
1193 i915_vma_unpin(ce->state);
Chris Wilson24f1d3c2016-04-28 09:56:53 +01001194
Chris Wilson9a6feaf2016-07-20 13:31:50 +01001195 i915_gem_context_put(ctx);
Oscar Mateodcb4c122014-11-13 10:28:10 +00001196}
1197
Chris Wilsone61e0f52018-02-21 09:56:36 +00001198static int execlists_request_alloc(struct i915_request *request)
Chris Wilsonef11c012016-12-18 15:37:19 +00001199{
1200 struct intel_engine_cs *engine = request->engine;
1201 struct intel_context *ce = &request->ctx->engine[engine->id];
Chris Wilsonfd138212017-11-15 15:12:04 +00001202 int ret;
Chris Wilsonef11c012016-12-18 15:37:19 +00001203
Chris Wilsone8a9c582016-12-18 15:37:20 +00001204 GEM_BUG_ON(!ce->pin_count);
1205
Chris Wilsonef11c012016-12-18 15:37:19 +00001206 /* 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 Wilsonfd138212017-11-15 15:12:04 +00001212 ret = intel_ring_wait_for_space(request->ring, request->reserved_space);
1213 if (ret)
1214 return ret;
Chris Wilsonef11c012016-12-18 15:37:19 +00001215
Chris Wilsonef11c012016-12-18 15:37:19 +00001216 /* 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 Wilsonef11c012016-12-18 15:37:19 +00001225}
1226
Arun Siluvery9e000842015-07-03 14:27:31 +01001227/*
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 Ursulin097d4f12017-02-17 07:58:59 +00001243static u32 *
1244gen8_emit_flush_coherentl3_wa(struct intel_engine_cs *engine, u32 *batch)
Arun Siluvery9e000842015-07-03 14:27:31 +01001245{
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001246 *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 Siluvery9e000842015-07-03 14:27:31 +01001250
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001251 *batch++ = MI_LOAD_REGISTER_IMM(1);
1252 *batch++ = i915_mmio_reg_offset(GEN8_L3SQCREG4);
1253 *batch++ = 0x40400000 | GEN8_LQSC_FLUSH_COHERENT_LINES;
Arun Siluvery9e000842015-07-03 14:27:31 +01001254
Tvrtko Ursulin9f235df2017-02-16 12:23:25 +00001255 batch = gen8_emit_pipe_control(batch,
1256 PIPE_CONTROL_CS_STALL |
1257 PIPE_CONTROL_DC_FLUSH_ENABLE,
1258 0);
Arun Siluvery9e000842015-07-03 14:27:31 +01001259
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001260 *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 Siluvery9e000842015-07-03 14:27:31 +01001264
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001265 return batch;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001266}
1267
Daniel Vetter6e5248b2016-07-15 21:48:06 +02001268/*
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 Siluvery17ee9502015-06-19 19:07:01 +01001274 *
Daniel Vetter6e5248b2016-07-15 21:48:06 +02001275 * The number of WA applied are not known at the beginning; we use this field
1276 * to return the no of DWORDS written.
Arun Siluvery17ee9502015-06-19 19:07:01 +01001277 *
Daniel Vetter6e5248b2016-07-15 21:48:06 +02001278 * 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 Siluvery17ee9502015-06-19 19:07:01 +01001282 */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001283static u32 *gen8_init_indirectctx_bb(struct intel_engine_cs *engine, u32 *batch)
Arun Siluvery17ee9502015-06-19 19:07:01 +01001284{
Arun Siluvery7ad00d12015-06-19 18:37:12 +01001285 /* WaDisableCtxRestoreArbitration:bdw,chv */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001286 *batch++ = MI_ARB_ON_OFF | MI_ARB_DISABLE;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001287
Arun Siluveryc82435b2015-06-19 18:37:13 +01001288 /* WaFlushCoherentL3CacheLinesAtContextSwitch:bdw */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001289 if (IS_BROADWELL(engine->i915))
1290 batch = gen8_emit_flush_coherentl3_wa(engine, batch);
Arun Siluveryc82435b2015-06-19 18:37:13 +01001291
Arun Siluvery0160f052015-06-23 15:46:57 +01001292 /* WaClearSlmSpaceAtContextSwitch:bdw,chv */
1293 /* Actual scratch location is at 128 bytes offset */
Tvrtko Ursulin9f235df2017-02-16 12:23:25 +00001294 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 Siluvery0160f052015-06-23 15:46:57 +01001301
Chris Wilsonbeecec92017-10-03 21:34:52 +01001302 *batch++ = MI_ARB_ON_OFF | MI_ARB_ENABLE;
1303
Arun Siluvery17ee9502015-06-19 19:07:01 +01001304 /* Pad to end of cacheline */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001305 while ((unsigned long)batch % CACHELINE_BYTES)
1306 *batch++ = MI_NOOP;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001307
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 Ursulin097d4f12017-02-17 07:58:59 +00001314 return batch;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001315}
1316
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001317static u32 *gen9_init_indirectctx_bb(struct intel_engine_cs *engine, u32 *batch)
Arun Siluvery0504cff2015-07-14 15:01:27 +01001318{
Chris Wilsonbeecec92017-10-03 21:34:52 +01001319 *batch++ = MI_ARB_ON_OFF | MI_ARB_DISABLE;
1320
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02001321 /* WaFlushCoherentL3CacheLinesAtContextSwitch:skl,bxt,glk */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001322 batch = gen8_emit_flush_coherentl3_wa(engine, batch);
Arun Siluverya4106a72015-07-14 15:01:29 +01001323
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02001324 /* WaDisableGatherAtSetShaderCommonSlice:skl,bxt,kbl,glk */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001325 *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 Kuoppala873e8172016-07-20 14:26:13 +03001330
Mika Kuoppala066d4622016-06-07 17:19:15 +03001331 /* WaClearSlmSpaceAtContextSwitch:kbl */
1332 /* Actual scratch location is at 128 bytes offset */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001333 if (IS_KBL_REVID(engine->i915, 0, KBL_REVID_A0)) {
Tvrtko Ursulin9f235df2017-02-16 12:23:25 +00001334 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 Kuoppala066d4622016-06-07 17:19:15 +03001341 }
Tim Gore3485d992016-07-05 10:01:30 +01001342
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02001343 /* WaMediaPoolStateCmdInWABB:bxt,glk */
Tim Gore3485d992016-07-05 10:01:30 +01001344 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 Ursulin097d4f12017-02-17 07:58:59 +00001358 *batch++ = GEN9_MEDIA_POOL_STATE;
1359 *batch++ = GEN9_MEDIA_POOL_ENABLE;
1360 *batch++ = 0x00777000;
1361 *batch++ = 0;
1362 *batch++ = 0;
1363 *batch++ = 0;
Tim Gore3485d992016-07-05 10:01:30 +01001364 }
1365
Chris Wilsonbeecec92017-10-03 21:34:52 +01001366 *batch++ = MI_ARB_ON_OFF | MI_ARB_ENABLE;
1367
Arun Siluvery0504cff2015-07-14 15:01:27 +01001368 /* Pad to end of cacheline */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001369 while ((unsigned long)batch % CACHELINE_BYTES)
1370 *batch++ = MI_NOOP;
Arun Siluvery0504cff2015-07-14 15:01:27 +01001371
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001372 return batch;
Arun Siluvery0504cff2015-07-14 15:01:27 +01001373}
1374
Rafael Antognolli4b6ce682018-02-05 15:33:30 -08001375static u32 *
1376gen10_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 Ursulin097d4f12017-02-17 07:58:59 +00001409#define CTX_WA_BB_OBJ_SIZE (PAGE_SIZE)
1410
1411static int lrc_setup_wa_ctx(struct intel_engine_cs *engine)
Arun Siluvery17ee9502015-06-19 19:07:01 +01001412{
Chris Wilson48bb74e2016-08-15 10:49:04 +01001413 struct drm_i915_gem_object *obj;
1414 struct i915_vma *vma;
1415 int err;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001416
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001417 obj = i915_gem_object_create(engine->i915, CTX_WA_BB_OBJ_SIZE);
Chris Wilson48bb74e2016-08-15 10:49:04 +01001418 if (IS_ERR(obj))
1419 return PTR_ERR(obj);
1420
Chris Wilsona01cb372017-01-16 15:21:30 +00001421 vma = i915_vma_instance(obj, &engine->i915->ggtt.base, NULL);
Chris Wilson48bb74e2016-08-15 10:49:04 +01001422 if (IS_ERR(vma)) {
1423 err = PTR_ERR(vma);
1424 goto err;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001425 }
1426
Chris Wilson48bb74e2016-08-15 10:49:04 +01001427 err = i915_vma_pin(vma, 0, PAGE_SIZE, PIN_GLOBAL | PIN_HIGH);
1428 if (err)
1429 goto err;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001430
Chris Wilson48bb74e2016-08-15 10:49:04 +01001431 engine->wa_ctx.vma = vma;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001432 return 0;
Chris Wilson48bb74e2016-08-15 10:49:04 +01001433
1434err:
1435 i915_gem_object_put(obj);
1436 return err;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001437}
1438
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001439static void lrc_destroy_wa_ctx(struct intel_engine_cs *engine)
Arun Siluvery17ee9502015-06-19 19:07:01 +01001440{
Chris Wilson19880c42016-08-15 10:49:05 +01001441 i915_vma_unpin_and_release(&engine->wa_ctx.vma);
Arun Siluvery17ee9502015-06-19 19:07:01 +01001442}
1443
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001444typedef u32 *(*wa_bb_func_t)(struct intel_engine_cs *engine, u32 *batch);
1445
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001446static int intel_init_workaround_bb(struct intel_engine_cs *engine)
Arun Siluvery17ee9502015-06-19 19:07:01 +01001447{
Chris Wilson48bb74e2016-08-15 10:49:04 +01001448 struct i915_ctx_workarounds *wa_ctx = &engine->wa_ctx;
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001449 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 Siluvery17ee9502015-06-19 19:07:01 +01001452 struct page *page;
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001453 void *batch, *batch_ptr;
1454 unsigned int i;
Chris Wilson48bb74e2016-08-15 10:49:04 +01001455 int ret;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001456
Tvrtko Ursulin10bde232018-01-19 10:00:04 +00001457 if (GEM_WARN_ON(engine->id != RCS))
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001458 return -EINVAL;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001459
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001460 switch (INTEL_GEN(engine->i915)) {
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07001461 case 10:
Rafael Antognolli4b6ce682018-02-05 15:33:30 -08001462 wa_bb_fn[0] = gen10_init_indirectctx_bb;
1463 wa_bb_fn[1] = NULL;
1464 break;
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001465 case 9:
1466 wa_bb_fn[0] = gen9_init_indirectctx_bb;
Chris Wilsonb8aa2232017-09-21 14:54:44 +01001467 wa_bb_fn[1] = NULL;
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001468 break;
1469 case 8:
1470 wa_bb_fn[0] = gen8_init_indirectctx_bb;
Chris Wilson3ad7b522017-10-03 21:34:49 +01001471 wa_bb_fn[1] = NULL;
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001472 break;
1473 default:
1474 MISSING_CASE(INTEL_GEN(engine->i915));
Arun Siluvery5e60d792015-06-23 15:50:44 +01001475 return 0;
Arun Siluvery0504cff2015-07-14 15:01:27 +01001476 }
Arun Siluvery5e60d792015-06-23 15:50:44 +01001477
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001478 ret = lrc_setup_wa_ctx(engine);
Arun Siluvery17ee9502015-06-19 19:07:01 +01001479 if (ret) {
1480 DRM_DEBUG_DRIVER("Failed to setup context WA page: %d\n", ret);
1481 return ret;
1482 }
1483
Chris Wilson48bb74e2016-08-15 10:49:04 +01001484 page = i915_gem_object_get_dirty_page(wa_ctx->vma->obj, 0);
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001485 batch = batch_ptr = kmap_atomic(page);
Arun Siluvery17ee9502015-06-19 19:07:01 +01001486
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001487 /*
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 Wilson1d2a19c2018-01-26 12:18:46 +00001494 if (GEM_WARN_ON(!IS_ALIGNED(wa_bb[i]->offset,
1495 CACHELINE_BYTES))) {
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001496 ret = -EINVAL;
1497 break;
1498 }
Chris Wilson604a8f62017-09-21 14:54:43 +01001499 if (wa_bb_fn[i])
1500 batch_ptr = wa_bb_fn[i](engine, batch_ptr);
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001501 wa_bb[i]->size = batch_ptr - (batch + wa_bb[i]->offset);
Arun Siluvery17ee9502015-06-19 19:07:01 +01001502 }
1503
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001504 BUG_ON(batch_ptr - batch > CTX_WA_BB_OBJ_SIZE);
1505
Arun Siluvery17ee9502015-06-19 19:07:01 +01001506 kunmap_atomic(batch);
1507 if (ret)
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001508 lrc_destroy_wa_ctx(engine);
Arun Siluvery17ee9502015-06-19 19:07:01 +01001509
1510 return ret;
1511}
1512
Chris Wilson64f09f02017-08-07 13:19:19 +01001513static u8 gtiir[] = {
1514 [RCS] = 0,
1515 [BCS] = 0,
1516 [VCS] = 1,
1517 [VCS2] = 1,
1518 [VECS] = 3,
1519};
1520
Chris Wilsonf3c9d4072018-01-02 15:12:34 +00001521static void enable_execlists(struct intel_engine_cs *engine)
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001522{
Chris Wilsonc0336662016-05-06 15:40:21 +01001523 struct drm_i915_private *dev_priv = engine->i915;
Chris Wilsonf3c9d4072018-01-02 15:12:34 +00001524
1525 I915_WRITE(RING_HWSTAM(engine->mmio_base), 0xffffffff);
Kelvin Gardiner225701f2018-01-30 11:49:17 -02001526
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 Wilsonf3c9d4072018-01-02 15:12:34 +00001542 I915_WRITE(RING_HWS_PGA(engine->mmio_base),
1543 engine->status_page.ggtt_offset);
1544 POSTING_READ(RING_HWS_PGA(engine->mmio_base));
Chris Wilsone8401302018-02-05 15:24:30 +00001545
1546 /* Following the reset, we need to reload the CSB read/write pointers */
1547 engine->execlists.csb_head = -1;
Chris Wilsonf3c9d4072018-01-02 15:12:34 +00001548}
1549
1550static int gen8_init_common_ring(struct intel_engine_cs *engine)
1551{
Mika Kuoppalab620e872017-09-22 15:43:03 +03001552 struct intel_engine_execlists * const execlists = &engine->execlists;
Chris Wilson821ed7d2016-09-09 14:11:53 +01001553 int ret;
1554
1555 ret = intel_mocs_init_engine(engine);
1556 if (ret)
1557 return ret;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001558
Chris Wilsonad07dfc2016-10-07 07:53:26 +01001559 intel_engine_reset_breadcrumbs(engine);
Chris Wilsonf3b8f912017-01-05 15:30:21 +00001560 intel_engine_init_hangcheck(engine);
Chris Wilson821ed7d2016-09-09 14:11:53 +01001561
Chris Wilsonf3c9d4072018-01-02 15:12:34 +00001562 enable_execlists(engine);
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001563
Chris Wilson64f09f02017-08-07 13:19:19 +01001564 /* After a GPU reset, we may have requests to replay */
Michał Winiarski9bdc3572017-10-25 18:25:19 +01001565 if (execlists->first)
Sagar Arun Kamblec6dce8f2017-11-16 19:02:37 +05301566 tasklet_schedule(&execlists->tasklet);
Chris Wilson6b764a52017-04-25 11:38:35 +01001567
Chris Wilson821ed7d2016-09-09 14:11:53 +01001568 return 0;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001569}
1570
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001571static int gen8_init_render_ring(struct intel_engine_cs *engine)
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001572{
Chris Wilsonc0336662016-05-06 15:40:21 +01001573 struct drm_i915_private *dev_priv = engine->i915;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001574 int ret;
1575
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001576 ret = gen8_init_common_ring(engine);
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001577 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 Mateo9b1136d2014-07-24 17:04:24 +01001588 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_FORCE_ORDERING));
1589
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001590 return init_workarounds_ring(engine);
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001591}
1592
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001593static int gen9_init_render_ring(struct intel_engine_cs *engine)
Damien Lespiau82ef8222015-02-09 19:33:08 +00001594{
1595 int ret;
1596
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001597 ret = gen8_init_common_ring(engine);
Damien Lespiau82ef8222015-02-09 19:33:08 +00001598 if (ret)
1599 return ret;
1600
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001601 return init_workarounds_ring(engine);
Damien Lespiau82ef8222015-02-09 19:33:08 +00001602}
1603
Chris Wilson42232212018-01-02 15:12:32 +00001604static void reset_irq(struct intel_engine_cs *engine)
1605{
1606 struct drm_i915_private *dev_priv = engine->i915;
Chris Wilson274de872018-02-02 14:54:55 +00001607 int i;
Chris Wilson42232212018-01-02 15:12:32 +00001608
Chris Wilsone8401302018-02-05 15:24:30 +00001609 GEM_BUG_ON(engine->id >= ARRAY_SIZE(gtiir));
1610
Chris Wilson42232212018-01-02 15:12:32 +00001611 /*
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 Wilson274de872018-02-02 14:54:55 +00001618 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 Wilson42232212018-01-02 15:12:32 +00001626 clear_bit(ENGINE_IRQ_EXECLIST, &engine->irq_posted);
1627}
1628
Chris Wilson821ed7d2016-09-09 14:11:53 +01001629static void reset_common_ring(struct intel_engine_cs *engine,
Chris Wilsone61e0f52018-02-21 09:56:36 +00001630 struct i915_request *request)
Chris Wilson821ed7d2016-09-09 14:11:53 +01001631{
Mika Kuoppalab620e872017-09-22 15:43:03 +03001632 struct intel_engine_execlists * const execlists = &engine->execlists;
Chris Wilsonc0dcb202017-02-07 15:24:37 +00001633 struct intel_context *ce;
Chris Wilson221ab97192017-09-16 21:44:14 +01001634 unsigned long flags;
Chris Wilsoncdb6ded2017-07-21 13:32:22 +01001635
Chris Wilson16a87392017-12-20 09:06:26 +00001636 GEM_TRACE("%s seqno=%x\n",
1637 engine->name, request ? request->global_seqno : 0);
Chris Wilson42232212018-01-02 15:12:32 +00001638
Chris Wilsona3e38832018-03-02 14:32:45 +00001639 /* See execlists_cancel_requests() for the irq/spinlock split. */
1640 local_irq_save(flags);
Chris Wilson221ab97192017-09-16 21:44:14 +01001641
Chris Wilsonaebbc2d2018-03-02 13:12:46 +00001642 reset_irq(engine);
1643
Chris Wilsoncdb6ded2017-07-21 13:32:22 +01001644 /*
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ł Winiarskia4598d12017-10-25 22:00:18 +02001653 execlists_cancel_port_requests(execlists);
Chris Wilson221ab97192017-09-16 21:44:14 +01001654
1655 /* Push back any incomplete requests for replay after the reset. */
Chris Wilsona3e38832018-03-02 14:32:45 +00001656 spin_lock(&engine->timeline->lock);
Michał Winiarskia4598d12017-10-25 22:00:18 +02001657 __unwind_incomplete_requests(engine);
Chris Wilsona3e38832018-03-02 14:32:45 +00001658 spin_unlock(&engine->timeline->lock);
Chris Wilsoncdb6ded2017-07-21 13:32:22 +01001659
Chris Wilsone8401302018-02-05 15:24:30 +00001660 /* Mark all CS interrupts as complete */
1661 execlists->active = 0;
1662
Chris Wilsona3e38832018-03-02 14:32:45 +00001663 local_irq_restore(flags);
Chris Wilsonaebbc2d2018-03-02 13:12:46 +00001664
Chris Wilsona3e38832018-03-02 14:32:45 +00001665 /*
1666 * If the request was innocent, we leave the request in the ELSP
Chris Wilsonc0dcb202017-02-07 15:24:37 +00001667 * 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 Wilson221ab97192017-09-16 21:44:14 +01001676 if (!request || request->fence.error != -EIO)
Chris Wilsonc0dcb202017-02-07 15:24:37 +00001677 return;
Chris Wilson821ed7d2016-09-09 14:11:53 +01001678
Chris Wilsona3e38832018-03-02 14:32:45 +00001679 /*
1680 * We want a simple context + ring to execute the breadcrumb update.
Chris Wilsona3aabe82016-10-04 21:11:26 +01001681 * 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 Wilsonc0dcb202017-02-07 15:24:37 +00001687 ce = &request->ctx->engine[engine->id];
Chris Wilsona3aabe82016-10-04 21:11:26 +01001688 execlists_init_reg_state(ce->lrc_reg_state,
1689 request->ctx, engine, ce->ring);
1690
Chris Wilson821ed7d2016-09-09 14:11:53 +01001691 /* Move the RING_HEAD onto the breadcrumb, past the hanging batch */
Chris Wilsona3aabe82016-10-04 21:11:26 +01001692 ce->lrc_reg_state[CTX_RING_BUFFER_START+1] =
1693 i915_ggtt_offset(ce->ring->vma);
Chris Wilson821ed7d2016-09-09 14:11:53 +01001694 ce->lrc_reg_state[CTX_RING_HEAD+1] = request->postfix;
Chris Wilsona3aabe82016-10-04 21:11:26 +01001695
Chris Wilson821ed7d2016-09-09 14:11:53 +01001696 request->ring->head = request->postfix;
Chris Wilson821ed7d2016-09-09 14:11:53 +01001697 intel_ring_update_space(request->ring);
1698
Chris Wilsona3aabe82016-10-04 21:11:26 +01001699 /* Reset WaIdleLiteRestore:bdw,skl as well */
Chris Wilson7e4992a2017-09-28 20:38:59 +01001700 unwind_wa_tail(request);
Chris Wilson821ed7d2016-09-09 14:11:53 +01001701}
1702
Chris Wilsone61e0f52018-02-21 09:56:36 +00001703static int intel_logical_ring_emit_pdps(struct i915_request *rq)
Michel Thierry7a01a0a2015-06-26 13:46:14 +01001704{
Chris Wilsone61e0f52018-02-21 09:56:36 +00001705 struct i915_hw_ppgtt *ppgtt = rq->ctx->ppgtt;
1706 struct intel_engine_cs *engine = rq->engine;
Mika Kuoppalae7167762017-02-28 17:28:10 +02001707 const int num_lri_cmds = GEN8_3LVL_PDPES * 2;
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001708 u32 *cs;
1709 int i;
Michel Thierry7a01a0a2015-06-26 13:46:14 +01001710
Chris Wilsone61e0f52018-02-21 09:56:36 +00001711 cs = intel_ring_begin(rq, num_lri_cmds * 2 + 2);
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001712 if (IS_ERR(cs))
1713 return PTR_ERR(cs);
Michel Thierry7a01a0a2015-06-26 13:46:14 +01001714
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001715 *cs++ = MI_LOAD_REGISTER_IMM(num_lri_cmds);
Mika Kuoppalae7167762017-02-28 17:28:10 +02001716 for (i = GEN8_3LVL_PDPES - 1; i >= 0; i--) {
Michel Thierry7a01a0a2015-06-26 13:46:14 +01001717 const dma_addr_t pd_daddr = i915_page_dir_dma_addr(ppgtt, i);
1718
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001719 *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 Thierry7a01a0a2015-06-26 13:46:14 +01001723 }
1724
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001725 *cs++ = MI_NOOP;
Chris Wilsone61e0f52018-02-21 09:56:36 +00001726 intel_ring_advance(rq, cs);
Michel Thierry7a01a0a2015-06-26 13:46:14 +01001727
1728 return 0;
1729}
1730
Chris Wilsone61e0f52018-02-21 09:56:36 +00001731static int gen8_emit_bb_start(struct i915_request *rq,
Chris Wilson803688b2016-08-02 22:50:27 +01001732 u64 offset, u32 len,
Mika Kuoppala54af56d2017-02-28 17:28:08 +02001733 const unsigned int flags)
Oscar Mateo15648582014-07-24 17:04:32 +01001734{
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001735 u32 *cs;
Oscar Mateo15648582014-07-24 17:04:32 +01001736 int ret;
1737
Michel Thierry7a01a0a2015-06-26 13:46:14 +01001738 /* 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 Thierry2dba3232015-07-30 11:06:23 +01001742 * not idle). PML4 is allocated during ppgtt init so this is
1743 * not needed in 48-bit.*/
Chris Wilsone61e0f52018-02-21 09:56:36 +00001744 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 Kuoppala54af56d2017-02-28 17:28:08 +02001749 if (ret)
1750 return ret;
Michel Thierry7a01a0a2015-06-26 13:46:14 +01001751
Chris Wilsone61e0f52018-02-21 09:56:36 +00001752 rq->ctx->ppgtt->pd_dirty_rings &= ~intel_engine_flag(rq->engine);
Michel Thierry7a01a0a2015-06-26 13:46:14 +01001753 }
1754
Chris Wilsone61e0f52018-02-21 09:56:36 +00001755 cs = intel_ring_begin(rq, 4);
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001756 if (IS_ERR(cs))
1757 return PTR_ERR(cs);
Oscar Mateo15648582014-07-24 17:04:32 +01001758
Chris Wilson279f5a02017-10-05 20:10:05 +01001759 /*
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 Wilson3ad7b522017-10-03 21:34:49 +01001776 *cs++ = MI_ARB_ON_OFF | MI_ARB_ENABLE;
1777
Oscar Mateo15648582014-07-24 17:04:32 +01001778 /* FIXME(BDW): Address space and security selectors. */
Mika Kuoppala54af56d2017-02-28 17:28:08 +02001779 *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 Ursulin73dec952017-02-14 11:32:42 +00001782 *cs++ = lower_32_bits(offset);
1783 *cs++ = upper_32_bits(offset);
Chris Wilsone61e0f52018-02-21 09:56:36 +00001784 intel_ring_advance(rq, cs);
Oscar Mateo15648582014-07-24 17:04:32 +01001785
1786 return 0;
1787}
1788
Chris Wilson31bb59c2016-07-01 17:23:27 +01001789static void gen8_logical_ring_enable_irq(struct intel_engine_cs *engine)
Oscar Mateo73d477f2014-07-24 17:04:31 +01001790{
Chris Wilsonc0336662016-05-06 15:40:21 +01001791 struct drm_i915_private *dev_priv = engine->i915;
Chris Wilson31bb59c2016-07-01 17:23:27 +01001792 I915_WRITE_IMR(engine,
1793 ~(engine->irq_enable_mask | engine->irq_keep_mask));
1794 POSTING_READ_FW(RING_IMR(engine->mmio_base));
Oscar Mateo73d477f2014-07-24 17:04:31 +01001795}
1796
Chris Wilson31bb59c2016-07-01 17:23:27 +01001797static void gen8_logical_ring_disable_irq(struct intel_engine_cs *engine)
Oscar Mateo73d477f2014-07-24 17:04:31 +01001798{
Chris Wilsonc0336662016-05-06 15:40:21 +01001799 struct drm_i915_private *dev_priv = engine->i915;
Chris Wilson31bb59c2016-07-01 17:23:27 +01001800 I915_WRITE_IMR(engine, ~engine->irq_keep_mask);
Oscar Mateo73d477f2014-07-24 17:04:31 +01001801}
1802
Chris Wilsone61e0f52018-02-21 09:56:36 +00001803static int gen8_emit_flush(struct i915_request *request, u32 mode)
Oscar Mateo47122742014-07-24 17:04:28 +01001804{
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001805 u32 cmd, *cs;
Oscar Mateo47122742014-07-24 17:04:28 +01001806
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001807 cs = intel_ring_begin(request, 4);
1808 if (IS_ERR(cs))
1809 return PTR_ERR(cs);
Oscar Mateo47122742014-07-24 17:04:28 +01001810
1811 cmd = MI_FLUSH_DW + 1;
1812
Chris Wilsonf0a1fb12015-01-22 13:42:00 +00001813 /* 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 Wilson7c9cf4e2016-08-02 22:50:25 +01001820 if (mode & EMIT_INVALIDATE) {
Chris Wilsonf0a1fb12015-01-22 13:42:00 +00001821 cmd |= MI_INVALIDATE_TLB;
Chris Wilson1dae2df2016-08-02 22:50:19 +01001822 if (request->engine->id == VCS)
Chris Wilsonf0a1fb12015-01-22 13:42:00 +00001823 cmd |= MI_INVALIDATE_BSD;
Oscar Mateo47122742014-07-24 17:04:28 +01001824 }
1825
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001826 *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 Mateo47122742014-07-24 17:04:28 +01001831
1832 return 0;
1833}
1834
Chris Wilsone61e0f52018-02-21 09:56:36 +00001835static int gen8_emit_flush_render(struct i915_request *request,
Chris Wilson7c9cf4e2016-08-02 22:50:25 +01001836 u32 mode)
Oscar Mateo47122742014-07-24 17:04:28 +01001837{
Chris Wilsonb5321f32016-08-02 22:50:18 +01001838 struct intel_engine_cs *engine = request->engine;
Chris Wilsonbde13eb2016-08-15 10:49:07 +01001839 u32 scratch_addr =
1840 i915_ggtt_offset(engine->scratch) + 2 * CACHELINE_BYTES;
Mika Kuoppala0b2d0932016-06-07 17:19:10 +03001841 bool vf_flush_wa = false, dc_flush_wa = false;
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001842 u32 *cs, flags = 0;
Mika Kuoppala0b2d0932016-06-07 17:19:10 +03001843 int len;
Oscar Mateo47122742014-07-24 17:04:28 +01001844
1845 flags |= PIPE_CONTROL_CS_STALL;
1846
Chris Wilson7c9cf4e2016-08-02 22:50:25 +01001847 if (mode & EMIT_FLUSH) {
Oscar Mateo47122742014-07-24 17:04:28 +01001848 flags |= PIPE_CONTROL_RENDER_TARGET_CACHE_FLUSH;
1849 flags |= PIPE_CONTROL_DEPTH_CACHE_FLUSH;
Francisco Jerez965fd602016-01-13 18:59:39 -08001850 flags |= PIPE_CONTROL_DC_FLUSH_ENABLE;
Chris Wilson40a24482015-08-21 16:08:41 +01001851 flags |= PIPE_CONTROL_FLUSH_ENABLE;
Oscar Mateo47122742014-07-24 17:04:28 +01001852 }
1853
Chris Wilson7c9cf4e2016-08-02 22:50:25 +01001854 if (mode & EMIT_INVALIDATE) {
Oscar Mateo47122742014-07-24 17:04:28 +01001855 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 Mateo47122742014-07-24 17:04:28 +01001863
Ben Widawsky1a5a9ce2015-12-17 09:49:57 -08001864 /*
1865 * On GEN9: before VF_CACHE_INVALIDATE we need to emit a NULL
1866 * pipe control.
1867 */
Chris Wilsonc0336662016-05-06 15:40:21 +01001868 if (IS_GEN9(request->i915))
Ben Widawsky1a5a9ce2015-12-17 09:49:57 -08001869 vf_flush_wa = true;
Mika Kuoppala0b2d0932016-06-07 17:19:10 +03001870
1871 /* WaForGAMHang:kbl */
1872 if (IS_KBL_REVID(request->i915, 0, KBL_REVID_B0))
1873 dc_flush_wa = true;
Ben Widawsky1a5a9ce2015-12-17 09:49:57 -08001874 }
Imre Deak9647ff32015-01-25 13:27:11 -08001875
Mika Kuoppala0b2d0932016-06-07 17:19:10 +03001876 len = 6;
1877
1878 if (vf_flush_wa)
1879 len += 6;
1880
1881 if (dc_flush_wa)
1882 len += 12;
1883
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001884 cs = intel_ring_begin(request, len);
1885 if (IS_ERR(cs))
1886 return PTR_ERR(cs);
Oscar Mateo47122742014-07-24 17:04:28 +01001887
Tvrtko Ursulin9f235df2017-02-16 12:23:25 +00001888 if (vf_flush_wa)
1889 cs = gen8_emit_pipe_control(cs, 0, 0);
Imre Deak9647ff32015-01-25 13:27:11 -08001890
Tvrtko Ursulin9f235df2017-02-16 12:23:25 +00001891 if (dc_flush_wa)
1892 cs = gen8_emit_pipe_control(cs, PIPE_CONTROL_DC_FLUSH_ENABLE,
1893 0);
Mika Kuoppala0b2d0932016-06-07 17:19:10 +03001894
Tvrtko Ursulin9f235df2017-02-16 12:23:25 +00001895 cs = gen8_emit_pipe_control(cs, flags, scratch_addr);
Mika Kuoppala0b2d0932016-06-07 17:19:10 +03001896
Tvrtko Ursulin9f235df2017-02-16 12:23:25 +00001897 if (dc_flush_wa)
1898 cs = gen8_emit_pipe_control(cs, PIPE_CONTROL_CS_STALL, 0);
Mika Kuoppala0b2d0932016-06-07 17:19:10 +03001899
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001900 intel_ring_advance(request, cs);
Oscar Mateo47122742014-07-24 17:04:28 +01001901
1902 return 0;
1903}
1904
Chris Wilson7c17d372016-01-20 15:43:35 +02001905/*
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 Wilsone61e0f52018-02-21 09:56:36 +00001910static void gen8_emit_wa_tail(struct i915_request *request, u32 *cs)
Oscar Mateo4da46e12014-07-24 17:04:27 +01001911{
Chris Wilsonbeecec92017-10-03 21:34:52 +01001912 /* Ensure there's always at least one preemption point per-request. */
1913 *cs++ = MI_ARB_CHECK;
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001914 *cs++ = MI_NOOP;
1915 request->wa_tail = intel_ring_offset(request, cs);
Chris Wilsoncaddfe72016-10-28 13:58:52 +01001916}
Oscar Mateo4da46e12014-07-24 17:04:27 +01001917
Chris Wilsone61e0f52018-02-21 09:56:36 +00001918static void gen8_emit_breadcrumb(struct i915_request *request, u32 *cs)
Chris Wilsoncaddfe72016-10-28 13:58:52 +01001919{
Chris Wilson7c17d372016-01-20 15:43:35 +02001920 /* 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 Mateo4da46e12014-07-24 17:04:27 +01001922
Michał Winiarskidf77cd82017-10-25 22:00:15 +02001923 cs = gen8_emit_ggtt_write(cs, request->global_seqno,
1924 intel_hws_seqno_address(request->engine));
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001925 *cs++ = MI_USER_INTERRUPT;
1926 *cs++ = MI_NOOP;
1927 request->tail = intel_ring_offset(request, cs);
Chris Wilsoned1501d2017-03-27 14:14:12 +01001928 assert_ring_tail_valid(request->ring, request->tail);
Chris Wilsoncaddfe72016-10-28 13:58:52 +01001929
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001930 gen8_emit_wa_tail(request, cs);
Chris Wilson7c17d372016-01-20 15:43:35 +02001931}
Chris Wilson98f29e82016-10-28 13:58:51 +01001932static const int gen8_emit_breadcrumb_sz = 6 + WA_TAIL_DWORDS;
1933
Chris Wilsone61e0f52018-02-21 09:56:36 +00001934static void gen8_emit_breadcrumb_rcs(struct i915_request *request, u32 *cs)
Chris Wilson7c17d372016-01-20 15:43:35 +02001935{
Michał Winiarskice81a652016-04-12 15:51:55 +02001936 /* We're using qword write, seqno should be aligned to 8 bytes. */
1937 BUILD_BUG_ON(I915_GEM_HWS_INDEX & 1);
1938
Michał Winiarskidf77cd82017-10-25 22:00:15 +02001939 cs = gen8_emit_ggtt_write_rcs(cs, request->global_seqno,
1940 intel_hws_seqno_address(request->engine));
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001941 *cs++ = MI_USER_INTERRUPT;
1942 *cs++ = MI_NOOP;
1943 request->tail = intel_ring_offset(request, cs);
Chris Wilsoned1501d2017-03-27 14:14:12 +01001944 assert_ring_tail_valid(request->ring, request->tail);
Chris Wilsoncaddfe72016-10-28 13:58:52 +01001945
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001946 gen8_emit_wa_tail(request, cs);
Oscar Mateo4da46e12014-07-24 17:04:27 +01001947}
Michał Winiarskidf77cd82017-10-25 22:00:15 +02001948static const int gen8_emit_breadcrumb_rcs_sz = 8 + WA_TAIL_DWORDS;
Chris Wilson98f29e82016-10-28 13:58:51 +01001949
Chris Wilsone61e0f52018-02-21 09:56:36 +00001950static int gen8_init_rcs_context(struct i915_request *rq)
Thomas Daniele7778be2014-12-02 12:50:48 +00001951{
1952 int ret;
1953
Chris Wilsone61e0f52018-02-21 09:56:36 +00001954 ret = intel_ring_workarounds_emit(rq);
Thomas Daniele7778be2014-12-02 12:50:48 +00001955 if (ret)
1956 return ret;
1957
Chris Wilsone61e0f52018-02-21 09:56:36 +00001958 ret = intel_rcs_context_init_mocs(rq);
Peter Antoine3bbaba02015-07-10 20:13:11 +03001959 /*
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 Wilsone61e0f52018-02-21 09:56:36 +00001966 return i915_gem_render_state_emit(rq);
Thomas Daniele7778be2014-12-02 12:50:48 +00001967}
1968
Oscar Mateo73e4d072014-07-24 17:04:48 +01001969/**
1970 * intel_logical_ring_cleanup() - deallocate the Engine Command Streamer
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01001971 * @engine: Engine Command Streamer.
Oscar Mateo73e4d072014-07-24 17:04:48 +01001972 */
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001973void intel_logical_ring_cleanup(struct intel_engine_cs *engine)
Oscar Mateo454afeb2014-07-24 17:04:22 +01001974{
John Harrison6402c332014-10-31 12:00:26 +00001975 struct drm_i915_private *dev_priv;
Oscar Mateo9832b9d2014-07-24 17:04:30 +01001976
Tvrtko Ursulin27af5ee2016-04-04 12:11:56 +01001977 /*
1978 * Tasklet cannot be active at this point due intel_mark_active/idle
1979 * so this is just for documentation.
1980 */
Sagar Arun Kamblec6dce8f2017-11-16 19:02:37 +05301981 if (WARN_ON(test_bit(TASKLET_STATE_SCHED,
1982 &engine->execlists.tasklet.state)))
1983 tasklet_kill(&engine->execlists.tasklet);
Tvrtko Ursulin27af5ee2016-04-04 12:11:56 +01001984
Chris Wilsonc0336662016-05-06 15:40:21 +01001985 dev_priv = engine->i915;
John Harrison6402c332014-10-31 12:00:26 +00001986
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001987 if (engine->buffer) {
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001988 WARN_ON((I915_READ_MODE(engine) & MODE_IDLE) == 0);
Dave Gordonb0366a52015-12-08 15:02:36 +00001989 }
Oscar Mateo48d82382014-07-24 17:04:23 +01001990
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001991 if (engine->cleanup)
1992 engine->cleanup(engine);
Oscar Mateo48d82382014-07-24 17:04:23 +01001993
Chris Wilsone8a9c582016-12-18 15:37:20 +00001994 intel_engine_cleanup_common(engine);
Arun Siluvery17ee9502015-06-19 19:07:01 +01001995
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001996 lrc_destroy_wa_ctx(engine);
Chris Wilsonf3c9d4072018-01-02 15:12:34 +00001997
Chris Wilsonc0336662016-05-06 15:40:21 +01001998 engine->i915 = NULL;
Akash Goel3b3f1652016-10-13 22:44:48 +05301999 dev_priv->engine[engine->id] = NULL;
2000 kfree(engine);
Oscar Mateo454afeb2014-07-24 17:04:22 +01002001}
2002
Chris Wilsonff44ad52017-03-16 17:13:03 +00002003static void execlists_set_default_submission(struct intel_engine_cs *engine)
Chris Wilsonddd66c52016-08-02 22:50:31 +01002004{
Chris Wilsonff44ad52017-03-16 17:13:03 +00002005 engine->submit_request = execlists_submit_request;
Chris Wilson27a5f612017-09-15 18:31:00 +01002006 engine->cancel_requests = execlists_cancel_requests;
Chris Wilsonff44ad52017-03-16 17:13:03 +00002007 engine->schedule = execlists_schedule;
Sagar Arun Kamblec6dce8f2017-11-16 19:02:37 +05302008 engine->execlists.tasklet.func = execlists_submission_tasklet;
Chris Wilsonaba5e272017-10-25 15:39:41 +01002009
2010 engine->park = NULL;
2011 engine->unpark = NULL;
Tvrtko Ursulincf669b42017-11-29 10:28:05 +00002012
2013 engine->flags |= I915_ENGINE_SUPPORTS_STATS;
Chris Wilson3fed1802018-02-07 21:05:43 +00002014
2015 engine->i915->caps.scheduler =
2016 I915_SCHEDULER_CAP_ENABLED |
2017 I915_SCHEDULER_CAP_PRIORITY;
Chris Wilsond6376372018-02-07 21:05:44 +00002018 if (engine->i915->preempt_context)
Chris Wilson3fed1802018-02-07 21:05:43 +00002019 engine->i915->caps.scheduler |= I915_SCHEDULER_CAP_PREEMPTION;
Chris Wilsonddd66c52016-08-02 22:50:31 +01002020}
2021
Tvrtko Ursulinc9cacf92016-01-12 17:32:34 +00002022static void
Chris Wilsone1382ef2016-05-06 15:40:20 +01002023logical_ring_default_vfuncs(struct intel_engine_cs *engine)
Tvrtko Ursulinc9cacf92016-01-12 17:32:34 +00002024{
2025 /* Default vfuncs which can be overriden by each engine. */
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002026 engine->init_hw = gen8_init_common_ring;
Chris Wilson821ed7d2016-09-09 14:11:53 +01002027 engine->reset_hw = reset_common_ring;
Chris Wilsone8a9c582016-12-18 15:37:20 +00002028
2029 engine->context_pin = execlists_context_pin;
2030 engine->context_unpin = execlists_context_unpin;
2031
Chris Wilsonf73e7392016-12-18 15:37:24 +00002032 engine->request_alloc = execlists_request_alloc;
2033
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002034 engine->emit_flush = gen8_emit_flush;
Chris Wilson9b81d552016-10-28 13:58:50 +01002035 engine->emit_breadcrumb = gen8_emit_breadcrumb;
Chris Wilson98f29e82016-10-28 13:58:51 +01002036 engine->emit_breadcrumb_sz = gen8_emit_breadcrumb_sz;
Chris Wilsonff44ad52017-03-16 17:13:03 +00002037
2038 engine->set_default_submission = execlists_set_default_submission;
Chris Wilsonddd66c52016-08-02 22:50:31 +01002039
Chris Wilson31bb59c2016-07-01 17:23:27 +01002040 engine->irq_enable = gen8_logical_ring_enable_irq;
2041 engine->irq_disable = gen8_logical_ring_disable_irq;
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002042 engine->emit_bb_start = gen8_emit_bb_start;
Tvrtko Ursulinc9cacf92016-01-12 17:32:34 +00002043}
2044
Tvrtko Ursulind9f3af92016-01-12 17:32:35 +00002045static inline void
Dave Gordonc2c7f242016-07-13 16:03:35 +01002046logical_ring_default_irqs(struct intel_engine_cs *engine)
Tvrtko Ursulind9f3af92016-01-12 17:32:35 +00002047{
Dave Gordonc2c7f242016-07-13 16:03:35 +01002048 unsigned shift = engine->irq_shift;
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002049 engine->irq_enable_mask = GT_RENDER_USER_INTERRUPT << shift;
2050 engine->irq_keep_mask = GT_CONTEXT_SWITCH_INTERRUPT << shift;
Tvrtko Ursulind9f3af92016-01-12 17:32:35 +00002051}
2052
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01002053static void
2054logical_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 Ursulin019bf272016-07-13 16:03:41 +01002059 intel_engine_setup_common(engine);
2060
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01002061 /* 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 Kuoppalab620e872017-09-22 15:43:03 +03002076 engine->execlists.fw_domains = fw_domains;
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01002077
Sagar Arun Kamblec6dce8f2017-11-16 19:02:37 +05302078 tasklet_init(&engine->execlists.tasklet,
2079 execlists_submission_tasklet, (unsigned long)engine);
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01002080
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01002081 logical_ring_default_vfuncs(engine);
2082 logical_ring_default_irqs(engine);
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01002083}
2084
Daniele Ceraolo Spurio486e93f2017-09-13 09:56:02 +01002085static int logical_ring_init(struct intel_engine_cs *engine)
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01002086{
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01002087 int ret;
2088
Tvrtko Ursulin019bf272016-07-13 16:03:41 +01002089 ret = intel_engine_init_common(engine);
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01002090 if (ret)
2091 goto error;
2092
Chris Wilson693cfbf2018-01-02 15:12:33 +00002093 engine->execlists.elsp =
2094 engine->i915->regs + i915_mmio_reg_offset(RING_ELSP(engine));
2095
Chris Wilsond6376372018-02-07 21:05:44 +00002096 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 Ursulina19d6ff2016-06-23 14:52:41 +01002101 return 0;
2102
2103error:
2104 intel_logical_ring_cleanup(engine);
2105 return ret;
2106}
2107
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +01002108int logical_render_ring_init(struct intel_engine_cs *engine)
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01002109{
2110 struct drm_i915_private *dev_priv = engine->i915;
2111 int ret;
2112
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01002113 logical_ring_setup(engine);
2114
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01002115 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 Ursulina19d6ff2016-06-23 14:52:41 +01002124 engine->emit_flush = gen8_emit_flush_render;
Michał Winiarskidf77cd82017-10-25 22:00:15 +02002125 engine->emit_breadcrumb = gen8_emit_breadcrumb_rcs;
2126 engine->emit_breadcrumb_sz = gen8_emit_breadcrumb_rcs_sz;
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01002127
Chris Wilsonf51455d2017-01-10 14:47:34 +00002128 ret = intel_engine_create_scratch(engine, PAGE_SIZE);
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01002129 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 Ursulind038fc72016-12-16 13:18:42 +00002143 return logical_ring_init(engine);
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01002144}
2145
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +01002146int logical_xcs_ring_init(struct intel_engine_cs *engine)
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01002147{
2148 logical_ring_setup(engine);
2149
2150 return logical_ring_init(engine);
2151}
2152
Jeff McGee0cea6502015-02-13 10:27:56 -06002153static u32
Chris Wilsonc0336662016-05-06 15:40:21 +01002154make_rpcs(struct drm_i915_private *dev_priv)
Jeff McGee0cea6502015-02-13 10:27:56 -06002155{
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 Wilsonc0336662016-05-06 15:40:21 +01002162 if (INTEL_GEN(dev_priv) < 9)
Jeff McGee0cea6502015-02-13 10:27:56 -06002163 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 Deak43b67992016-08-31 19:13:02 +03002171 if (INTEL_INFO(dev_priv)->sseu.has_slice_pg) {
Jeff McGee0cea6502015-02-13 10:27:56 -06002172 rpcs |= GEN8_RPCS_S_CNT_ENABLE;
Imre Deakf08a0c92016-08-31 19:13:04 +03002173 rpcs |= hweight8(INTEL_INFO(dev_priv)->sseu.slice_mask) <<
Jeff McGee0cea6502015-02-13 10:27:56 -06002174 GEN8_RPCS_S_CNT_SHIFT;
2175 rpcs |= GEN8_RPCS_ENABLE;
2176 }
2177
Imre Deak43b67992016-08-31 19:13:02 +03002178 if (INTEL_INFO(dev_priv)->sseu.has_subslice_pg) {
Jeff McGee0cea6502015-02-13 10:27:56 -06002179 rpcs |= GEN8_RPCS_SS_CNT_ENABLE;
Imre Deak57ec1712016-08-31 19:13:05 +03002180 rpcs |= hweight8(INTEL_INFO(dev_priv)->sseu.subslice_mask) <<
Jeff McGee0cea6502015-02-13 10:27:56 -06002181 GEN8_RPCS_SS_CNT_SHIFT;
2182 rpcs |= GEN8_RPCS_ENABLE;
2183 }
2184
Imre Deak43b67992016-08-31 19:13:02 +03002185 if (INTEL_INFO(dev_priv)->sseu.has_eu_pg) {
2186 rpcs |= INTEL_INFO(dev_priv)->sseu.eu_per_subslice <<
Jeff McGee0cea6502015-02-13 10:27:56 -06002187 GEN8_RPCS_EU_MIN_SHIFT;
Imre Deak43b67992016-08-31 19:13:02 +03002188 rpcs |= INTEL_INFO(dev_priv)->sseu.eu_per_subslice <<
Jeff McGee0cea6502015-02-13 10:27:56 -06002189 GEN8_RPCS_EU_MAX_SHIFT;
2190 rpcs |= GEN8_RPCS_ENABLE;
2191 }
2192
2193 return rpcs;
2194}
2195
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002196static u32 intel_lr_indirect_ctx_offset(struct intel_engine_cs *engine)
Michel Thierry71562912016-02-23 10:31:49 +00002197{
2198 u32 indirect_ctx_offset;
2199
Chris Wilsonc0336662016-05-06 15:40:21 +01002200 switch (INTEL_GEN(engine->i915)) {
Michel Thierry71562912016-02-23 10:31:49 +00002201 default:
Chris Wilsonc0336662016-05-06 15:40:21 +01002202 MISSING_CASE(INTEL_GEN(engine->i915));
Michel Thierry71562912016-02-23 10:31:49 +00002203 /* fall through */
Michel Thierry7bd0a2c2017-06-06 13:30:38 -07002204 case 10:
2205 indirect_ctx_offset =
2206 GEN10_CTX_RCS_INDIRECT_CTX_OFFSET_DEFAULT;
2207 break;
Michel Thierry71562912016-02-23 10:31:49 +00002208 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 Ursulin56e51bf2017-02-21 09:58:39 +00002221static void execlists_init_reg_state(u32 *regs,
Chris Wilsona3aabe82016-10-04 21:11:26 +01002222 struct i915_gem_context *ctx,
2223 struct intel_engine_cs *engine,
2224 struct intel_ring *ring)
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002225{
Chris Wilsona3aabe82016-10-04 21:11:26 +01002226 struct drm_i915_private *dev_priv = engine->i915;
2227 struct i915_hw_ppgtt *ppgtt = ctx->ppgtt ?: dev_priv->mm.aliasing_ppgtt;
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002228 u32 base = engine->mmio_base;
2229 bool rcs = engine->id == RCS;
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002230
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002231 /* 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 Wilson09b1a4e2018-01-25 11:24:42 +00002242 _MASKED_BIT_DISABLE(CTX_CTRL_ENGINE_CTX_RESTORE_INHIBIT |
2243 CTX_CTRL_ENGINE_CTX_SAVE_INHIBIT) |
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002244 _MASKED_BIT_ENABLE(CTX_CTRL_INHIBIT_SYN_CTX_SWITCH |
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002245 (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 Wilson604a8f62017-09-21 14:54:43 +01002259 struct i915_ctx_workarounds *wa_ctx = &engine->wa_ctx;
2260
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002261 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 Wilson604a8f62017-09-21 14:54:43 +01002264 if (wa_ctx->indirect_ctx.size) {
Chris Wilsonbde13eb2016-08-15 10:49:07 +01002265 u32 ggtt_offset = i915_ggtt_offset(wa_ctx->vma);
Arun Siluvery17ee9502015-06-19 19:07:01 +01002266
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002267 regs[CTX_RCS_INDIRECT_CTX + 1] =
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00002268 (ggtt_offset + wa_ctx->indirect_ctx.offset) |
2269 (wa_ctx->indirect_ctx.size / CACHELINE_BYTES);
Arun Siluvery17ee9502015-06-19 19:07:01 +01002270
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002271 regs[CTX_RCS_INDIRECT_CTX_OFFSET + 1] =
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002272 intel_lr_indirect_ctx_offset(engine) << 6;
Chris Wilson604a8f62017-09-21 14:54:43 +01002273 }
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 Siluvery17ee9502015-06-19 19:07:01 +01002278
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002279 regs[CTX_BB_PER_CTX_PTR + 1] =
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00002280 (ggtt_offset + wa_ctx->per_ctx.offset) | 0x01;
Arun Siluvery17ee9502015-06-19 19:07:01 +01002281 }
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002282 }
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002283
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ä0d925ea2015-11-04 23:20:11 +02002287 /* PDP values well be assigned later if needed */
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002288 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 Thierryd7b26332015-04-08 12:13:34 +01002296
Chris Wilson949e8ab2017-02-09 14:40:36 +00002297 if (ppgtt && i915_vm_is_48bit(&ppgtt->base)) {
Michel Thierry2dba3232015-07-30 11:06:23 +01002298 /* 64b PPGTT (48bit canonical)
2299 * PDP0_DESCRIPTOR contains the base address to PML4 and
2300 * other PDP Descriptors are ignored.
2301 */
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002302 ASSIGN_CTX_PML4(ppgtt, regs);
Michel Thierry2dba3232015-07-30 11:06:23 +01002303 }
2304
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002305 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 Bragg19f81df2017-06-13 12:23:03 +01002309
2310 i915_oa_init_reg_state(engine, ctx, regs);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002311 }
Chris Wilsona3aabe82016-10-04 21:11:26 +01002312}
2313
2314static int
2315populate_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 Wilsond2b4b972017-11-10 14:26:33 +00002321 u32 *regs;
Chris Wilsona3aabe82016-10-04 21:11:26 +01002322 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 Wilsona4f5ea62016-10-28 13:58:35 +01002336 ctx_obj->mm.dirty = true;
Chris Wilsona3aabe82016-10-04 21:11:26 +01002337
Chris Wilsond2b4b972017-11-10 14:26:33 +00002338 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 Wilsona3aabe82016-10-04 21:11:26 +01002356 /* The second page of the context object contains some fields which must
2357 * be set up prior to the first execution. */
Chris Wilsond2b4b972017-11-10 14:26:33 +00002358 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 Wilsond6376372018-02-07 21:05:44 +00002363 if (ctx == ctx->i915->preempt_context)
Chris Wilson517aaff2018-01-23 21:04:12 +00002364 regs[CTX_CONTEXT_CONTROL + 1] |=
2365 _MASKED_BIT_ENABLE(CTX_CTRL_ENGINE_CTX_RESTORE_INHIBIT |
2366 CTX_CTRL_ENGINE_CTX_SAVE_INHIBIT);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002367
Tvrtko Ursulin7d774ca2016-04-12 15:40:42 +01002368 i915_gem_object_unpin_map(ctx_obj);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002369
2370 return 0;
2371}
2372
Chris Wilsone2efd132016-05-24 14:53:34 +01002373static int execlists_context_deferred_alloc(struct i915_gem_context *ctx,
Chris Wilson978f1e02016-04-28 09:56:54 +01002374 struct intel_engine_cs *engine)
Oscar Mateoede7d422014-07-24 17:04:12 +01002375{
Oscar Mateo8c8579172014-07-24 17:04:14 +01002376 struct drm_i915_gem_object *ctx_obj;
Chris Wilson9021ad02016-05-24 14:53:37 +01002377 struct intel_context *ce = &ctx->engine[engine->id];
Chris Wilsonbf3783e2016-08-15 10:48:54 +01002378 struct i915_vma *vma;
Oscar Mateo8c8579172014-07-24 17:04:14 +01002379 uint32_t context_size;
Chris Wilson7e37f882016-08-02 22:50:21 +01002380 struct intel_ring *ring;
Oscar Mateo8c8579172014-07-24 17:04:14 +01002381 int ret;
2382
Chris Wilson1d2a19c2018-01-26 12:18:46 +00002383 if (ce->state)
2384 return 0;
Oscar Mateoede7d422014-07-24 17:04:12 +01002385
Joonas Lahtinen63ffbcd2017-04-28 10:53:36 +03002386 context_size = round_up(engine->context_size, I915_GTT_PAGE_SIZE);
Oscar Mateo8c8579172014-07-24 17:04:14 +01002387
Michel Thierry0b29c752017-09-13 09:56:00 +01002388 /*
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 Daid1675192015-08-12 15:43:43 +01002393
Tvrtko Ursulin12d79d72016-12-01 14:16:37 +00002394 ctx_obj = i915_gem_object_create(ctx->i915, context_size);
Chris Wilsonfe3db792016-04-25 13:32:13 +01002395 if (IS_ERR(ctx_obj)) {
Dan Carpenter3126a662015-04-30 17:30:50 +03002396 DRM_DEBUG_DRIVER("Alloc LRC backing obj failed.\n");
Chris Wilsonfe3db792016-04-25 13:32:13 +01002397 return PTR_ERR(ctx_obj);
Oscar Mateo8c8579172014-07-24 17:04:14 +01002398 }
2399
Chris Wilsona01cb372017-01-16 15:21:30 +00002400 vma = i915_vma_instance(ctx_obj, &ctx->i915->ggtt.base, NULL);
Chris Wilsonbf3783e2016-08-15 10:48:54 +01002401 if (IS_ERR(vma)) {
2402 ret = PTR_ERR(vma);
2403 goto error_deref_obj;
2404 }
2405
Chris Wilson7e37f882016-08-02 22:50:21 +01002406 ring = intel_engine_create_ring(engine, ctx->ring_size);
Chris Wilsondca33ec2016-08-02 22:50:20 +01002407 if (IS_ERR(ring)) {
2408 ret = PTR_ERR(ring);
Nick Hoathe84fe802015-09-11 12:53:46 +01002409 goto error_deref_obj;
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002410 }
2411
Chris Wilsondca33ec2016-08-02 22:50:20 +01002412 ret = populate_lr_context(ctx, ctx_obj, engine, ring);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002413 if (ret) {
2414 DRM_DEBUG_DRIVER("Failed to populate LRC: %d\n", ret);
Chris Wilsondca33ec2016-08-02 22:50:20 +01002415 goto error_ring_free;
Oscar Mateo84c23772014-07-24 17:04:15 +01002416 }
2417
Chris Wilsondca33ec2016-08-02 22:50:20 +01002418 ce->ring = ring;
Chris Wilsonbf3783e2016-08-15 10:48:54 +01002419 ce->state = vma;
Oscar Mateoede7d422014-07-24 17:04:12 +01002420
2421 return 0;
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002422
Chris Wilsondca33ec2016-08-02 22:50:20 +01002423error_ring_free:
Chris Wilson7e37f882016-08-02 22:50:21 +01002424 intel_ring_free(ring);
Nick Hoathe84fe802015-09-11 12:53:46 +01002425error_deref_obj:
Chris Wilsonf8c417c2016-07-20 13:31:53 +01002426 i915_gem_object_put(ctx_obj);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002427 return ret;
Oscar Mateoede7d422014-07-24 17:04:12 +01002428}
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002429
Chris Wilson821ed7d2016-09-09 14:11:53 +01002430void intel_lr_context_resume(struct drm_i915_private *dev_priv)
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002431{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00002432 struct intel_engine_cs *engine;
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002433 struct i915_gem_context *ctx;
Akash Goel3b3f1652016-10-13 22:44:48 +05302434 enum intel_engine_id id;
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002435
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002436 /* 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 Wilson829a0af2017-06-20 12:05:45 +01002446 list_for_each_entry(ctx, &dev_priv->contexts.list, link) {
Akash Goel3b3f1652016-10-13 22:44:48 +05302447 for_each_engine(engine, dev_priv, id) {
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002448 struct intel_context *ce = &ctx->engine[engine->id];
2449 u32 *reg;
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002450
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002451 if (!ce->state)
2452 continue;
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002453
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002454 reg = i915_gem_object_pin_map(ce->state->obj,
2455 I915_MAP_WB);
2456 if (WARN_ON(IS_ERR(reg)))
2457 continue;
Tvrtko Ursulin7d774ca2016-04-12 15:40:42 +01002458
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002459 reg += LRC_STATE_PN * PAGE_SIZE / sizeof(*reg);
2460 reg[CTX_RING_HEAD+1] = 0;
2461 reg[CTX_RING_TAIL+1] = 0;
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002462
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002463 ce->state->obj->mm.dirty = true;
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002464 i915_gem_object_unpin_map(ce->state->obj);
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002465
Chris Wilsone6ba9992017-04-25 14:00:49 +01002466 intel_ring_reset(ce->ring, 0);
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002467 }
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002468 }
2469}