blob: 986f849202908b11e39bbbb901d4b60b12dd84b0 [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"
Chris Wilsonbc4237e2018-06-28 21:12:07 +0100140#include "i915_vgpu.h"
Michel Thierry578f1ac2018-01-23 16:43:49 -0800141#include "intel_lrc_reg.h"
Peter Antoine3bbaba02015-07-10 20:13:11 +0300142#include "intel_mocs.h"
Oscar Mateo7d3c4252018-04-10 09:12:46 -0700143#include "intel_workarounds.h"
Oscar Mateo127f1002014-07-24 17:04:11 +0100144
Thomas Daniele981e7b2014-07-24 17:04:39 +0100145#define RING_EXECLIST_QFULL (1 << 0x2)
146#define RING_EXECLIST1_VALID (1 << 0x3)
147#define RING_EXECLIST0_VALID (1 << 0x4)
148#define RING_EXECLIST_ACTIVE_STATUS (3 << 0xE)
149#define RING_EXECLIST1_ACTIVE (1 << 0x11)
150#define RING_EXECLIST0_ACTIVE (1 << 0x12)
151
152#define GEN8_CTX_STATUS_IDLE_ACTIVE (1 << 0)
153#define GEN8_CTX_STATUS_PREEMPTED (1 << 1)
154#define GEN8_CTX_STATUS_ELEMENT_SWITCH (1 << 2)
155#define GEN8_CTX_STATUS_ACTIVE_IDLE (1 << 3)
156#define GEN8_CTX_STATUS_COMPLETE (1 << 4)
157#define GEN8_CTX_STATUS_LITE_RESTORE (1 << 15)
Oscar Mateo8670d6f2014-07-24 17:04:17 +0100158
Chris Wilson70c2a242016-09-09 14:11:46 +0100159#define GEN8_CTX_STATUS_COMPLETED_MASK \
Chris Wilsond8747af2017-11-20 12:34:56 +0000160 (GEN8_CTX_STATUS_COMPLETE | GEN8_CTX_STATUS_PREEMPTED)
Chris Wilson70c2a242016-09-09 14:11:46 +0100161
Chris Wilson0e93cdd2016-04-29 09:07:06 +0100162/* Typical size of the average request (2 pipecontrols and a MI_BB) */
163#define EXECLISTS_REQUEST_SIZE 64 /* bytes */
Chris Wilsona3aabe82016-10-04 21:11:26 +0100164#define WA_TAIL_DWORDS 2
Chris Wilson7e4992a2017-09-28 20:38:59 +0100165#define WA_TAIL_BYTES (sizeof(u32) * WA_TAIL_DWORDS)
Chris Wilsona3aabe82016-10-04 21:11:26 +0100166
Chris Wilsone2efd132016-05-24 14:53:34 +0100167static int execlists_context_deferred_alloc(struct i915_gem_context *ctx,
Chris Wilson1fc44d92018-05-17 22:26:32 +0100168 struct intel_engine_cs *engine,
169 struct intel_context *ce);
Chris Wilsona3aabe82016-10-04 21:11:26 +0100170static void execlists_init_reg_state(u32 *reg_state,
171 struct i915_gem_context *ctx,
172 struct intel_engine_cs *engine,
173 struct intel_ring *ring);
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000174
Chris Wilsonf6322ed2018-02-22 14:22:29 +0000175static inline struct i915_priolist *to_priolist(struct rb_node *rb)
176{
177 return rb_entry(rb, struct i915_priolist, node);
178}
179
180static inline int rq_prio(const struct i915_request *rq)
181{
Chris Wilsonb7268c52018-04-18 19:40:52 +0100182 return rq->sched.attr.priority;
Chris Wilsonf6322ed2018-02-22 14:22:29 +0000183}
184
185static inline bool need_preempt(const struct intel_engine_cs *engine,
186 const struct i915_request *last,
187 int prio)
188{
Chris Wilson2a694fe2018-04-03 19:35:37 +0100189 return (intel_engine_has_preemption(engine) &&
Chris Wilsonc5ce3b82018-05-01 13:21:31 +0100190 __execlists_need_preempt(prio, rq_prio(last)) &&
191 !i915_request_completed(last));
Chris Wilsonf6322ed2018-02-22 14:22:29 +0000192}
193
Chris Wilson1fc44d92018-05-17 22:26:32 +0100194/*
Tvrtko Ursulinca825802016-01-15 15:10:27 +0000195 * 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
Lionel Landwerlin218b5002018-06-02 12:29:45 +0100204 * bits 32-52: ctx ID, a globally unique tag (highest bit used by GuC)
Daniel Vetter6e5248b2016-07-15 21:48:06 +0200205 * bits 53-54: mbz, reserved for use by hardware
206 * bits 55-63: group ID, currently unused and set to 0
Daniele Ceraolo Spurioac52da62018-03-02 18:14:58 +0200207 *
208 * Starting from Gen11, the upper dword of the descriptor has a new format:
209 *
210 * bits 32-36: reserved
211 * bits 37-47: SW context ID
212 * bits 48:53: engine instance
213 * bit 54: mbz, reserved for use by hardware
214 * bits 55-60: SW counter
215 * bits 61-63: engine class
216 *
217 * engine info, SW context ID and SW counter need to form a unique number
218 * (Context ID) per lrc.
Tvrtko Ursulinca825802016-01-15 15:10:27 +0000219 */
220static void
Chris Wilsone2efd132016-05-24 14:53:34 +0100221intel_lr_context_descriptor_update(struct i915_gem_context *ctx,
Chris Wilson1fc44d92018-05-17 22:26:32 +0100222 struct intel_engine_cs *engine,
223 struct intel_context *ce)
Tvrtko Ursulinca825802016-01-15 15:10:27 +0000224{
Chris Wilson7069b142016-04-28 09:56:52 +0100225 u64 desc;
Tvrtko Ursulinca825802016-01-15 15:10:27 +0000226
Daniele Ceraolo Spurioac52da62018-03-02 18:14:58 +0200227 BUILD_BUG_ON(MAX_CONTEXT_HW_ID > (BIT(GEN8_CTX_ID_WIDTH)));
228 BUILD_BUG_ON(GEN11_MAX_CONTEXT_HW_ID > (BIT(GEN11_SW_CTX_ID_WIDTH)));
Chris Wilson7069b142016-04-28 09:56:52 +0100229
Mika Kuoppala2355cf02017-01-27 15:03:09 +0200230 desc = ctx->desc_template; /* bits 0-11 */
Daniele Ceraolo Spurioac52da62018-03-02 18:14:58 +0200231 GEM_BUG_ON(desc & GENMASK_ULL(63, 12));
232
Michel Thierry0b29c752017-09-13 09:56:00 +0100233 desc |= i915_ggtt_offset(ce->state) + LRC_HEADER_PAGES * PAGE_SIZE;
Chris Wilson9021ad02016-05-24 14:53:37 +0100234 /* bits 12-31 */
Daniele Ceraolo Spurioac52da62018-03-02 18:14:58 +0200235 GEM_BUG_ON(desc & GENMASK_ULL(63, 32));
236
Lionel Landwerlin61d56762018-06-02 12:29:46 +0100237 /*
238 * The following 32bits are copied into the OA reports (dword 2).
239 * Consider updating oa_get_render_ctx_id in i915_perf.c when changing
240 * anything below.
241 */
Daniele Ceraolo Spurioac52da62018-03-02 18:14:58 +0200242 if (INTEL_GEN(ctx->i915) >= 11) {
243 GEM_BUG_ON(ctx->hw_id >= BIT(GEN11_SW_CTX_ID_WIDTH));
244 desc |= (u64)ctx->hw_id << GEN11_SW_CTX_ID_SHIFT;
245 /* bits 37-47 */
246
247 desc |= (u64)engine->instance << GEN11_ENGINE_INSTANCE_SHIFT;
248 /* bits 48-53 */
249
250 /* TODO: decide what to do with SW counter (bits 55-60) */
251
252 desc |= (u64)engine->class << GEN11_ENGINE_CLASS_SHIFT;
253 /* bits 61-63 */
254 } else {
255 GEM_BUG_ON(ctx->hw_id >= BIT(GEN8_CTX_ID_WIDTH));
256 desc |= (u64)ctx->hw_id << GEN8_CTX_ID_SHIFT; /* bits 32-52 */
257 }
Tvrtko Ursulinca825802016-01-15 15:10:27 +0000258
Chris Wilson9021ad02016-05-24 14:53:37 +0100259 ce->lrc_desc = desc;
Tvrtko Ursulinca825802016-01-15 15:10:27 +0000260}
261
Chris Wilson27606fd2017-09-16 21:44:13 +0100262static struct i915_priolist *
Chris Wilson87c7acf2018-05-08 01:30:45 +0100263lookup_priolist(struct intel_engine_cs *engine, int prio)
Chris Wilson08dd3e12017-09-16 21:44:12 +0100264{
Mika Kuoppalab620e872017-09-22 15:43:03 +0300265 struct intel_engine_execlists * const execlists = &engine->execlists;
Chris Wilson08dd3e12017-09-16 21:44:12 +0100266 struct i915_priolist *p;
267 struct rb_node **parent, *rb;
268 bool first = true;
269
Mika Kuoppalab620e872017-09-22 15:43:03 +0300270 if (unlikely(execlists->no_priolist))
Chris Wilson08dd3e12017-09-16 21:44:12 +0100271 prio = I915_PRIORITY_NORMAL;
272
273find_priolist:
274 /* most positive priority is scheduled first, equal priorities fifo */
275 rb = NULL;
Chris Wilson655250a2018-06-29 08:53:20 +0100276 parent = &execlists->queue.rb_root.rb_node;
Chris Wilson08dd3e12017-09-16 21:44:12 +0100277 while (*parent) {
278 rb = *parent;
Chris Wilsonf6322ed2018-02-22 14:22:29 +0000279 p = to_priolist(rb);
Chris Wilson08dd3e12017-09-16 21:44:12 +0100280 if (prio > p->priority) {
281 parent = &rb->rb_left;
282 } else if (prio < p->priority) {
283 parent = &rb->rb_right;
284 first = false;
285 } else {
Chris Wilson27606fd2017-09-16 21:44:13 +0100286 return p;
Chris Wilson08dd3e12017-09-16 21:44:12 +0100287 }
288 }
289
290 if (prio == I915_PRIORITY_NORMAL) {
Mika Kuoppalab620e872017-09-22 15:43:03 +0300291 p = &execlists->default_priolist;
Chris Wilson08dd3e12017-09-16 21:44:12 +0100292 } else {
293 p = kmem_cache_alloc(engine->i915->priorities, GFP_ATOMIC);
294 /* Convert an allocation failure to a priority bump */
295 if (unlikely(!p)) {
296 prio = I915_PRIORITY_NORMAL; /* recurses just once */
297
298 /* To maintain ordering with all rendering, after an
299 * allocation failure we have to disable all scheduling.
300 * Requests will then be executed in fifo, and schedule
301 * will ensure that dependencies are emitted in fifo.
302 * There will be still some reordering with existing
303 * requests, so if userspace lied about their
304 * dependencies that reordering may be visible.
305 */
Mika Kuoppalab620e872017-09-22 15:43:03 +0300306 execlists->no_priolist = true;
Chris Wilson08dd3e12017-09-16 21:44:12 +0100307 goto find_priolist;
308 }
309 }
310
311 p->priority = prio;
Chris Wilson27606fd2017-09-16 21:44:13 +0100312 INIT_LIST_HEAD(&p->requests);
Chris Wilson08dd3e12017-09-16 21:44:12 +0100313 rb_link_node(&p->node, rb, parent);
Chris Wilson655250a2018-06-29 08:53:20 +0100314 rb_insert_color_cached(&p->node, &execlists->queue, first);
Chris Wilson08dd3e12017-09-16 21:44:12 +0100315
Chris Wilsonf6322ed2018-02-22 14:22:29 +0000316 return p;
Chris Wilson08dd3e12017-09-16 21:44:12 +0100317}
318
Chris Wilsone61e0f52018-02-21 09:56:36 +0000319static void unwind_wa_tail(struct i915_request *rq)
Chris Wilson7e4992a2017-09-28 20:38:59 +0100320{
321 rq->tail = intel_ring_wrap(rq->ring, rq->wa_tail - WA_TAIL_BYTES);
322 assert_ring_tail_valid(rq->ring, rq->tail);
323}
324
Michał Winiarskia4598d12017-10-25 22:00:18 +0200325static void __unwind_incomplete_requests(struct intel_engine_cs *engine)
Chris Wilson7e4992a2017-09-28 20:38:59 +0100326{
Chris Wilsone61e0f52018-02-21 09:56:36 +0000327 struct i915_request *rq, *rn;
Michał Winiarski097a9482017-09-28 20:39:01 +0100328 struct i915_priolist *uninitialized_var(p);
329 int last_prio = I915_PRIORITY_INVALID;
Chris Wilson7e4992a2017-09-28 20:38:59 +0100330
Chris Wilsona89d1f92018-05-02 17:38:39 +0100331 lockdep_assert_held(&engine->timeline.lock);
Chris Wilson7e4992a2017-09-28 20:38:59 +0100332
333 list_for_each_entry_safe_reverse(rq, rn,
Chris Wilsona89d1f92018-05-02 17:38:39 +0100334 &engine->timeline.requests,
Chris Wilson7e4992a2017-09-28 20:38:59 +0100335 link) {
Chris Wilsone61e0f52018-02-21 09:56:36 +0000336 if (i915_request_completed(rq))
Chris Wilson7e4992a2017-09-28 20:38:59 +0100337 return;
338
Chris Wilsone61e0f52018-02-21 09:56:36 +0000339 __i915_request_unsubmit(rq);
Chris Wilson7e4992a2017-09-28 20:38:59 +0100340 unwind_wa_tail(rq);
341
Chris Wilsonf6322ed2018-02-22 14:22:29 +0000342 GEM_BUG_ON(rq_prio(rq) == I915_PRIORITY_INVALID);
343 if (rq_prio(rq) != last_prio) {
344 last_prio = rq_prio(rq);
Chris Wilson87c7acf2018-05-08 01:30:45 +0100345 p = lookup_priolist(engine, last_prio);
Michał Winiarski097a9482017-09-28 20:39:01 +0100346 }
347
Chris Wilsona02eb972018-05-08 01:30:46 +0100348 GEM_BUG_ON(p->priority != rq_prio(rq));
Chris Wilson0c7112a2018-04-18 19:40:51 +0100349 list_add(&rq->sched.link, &p->requests);
Chris Wilson7e4992a2017-09-28 20:38:59 +0100350 }
351}
352
Michał Winiarskic41937fd2017-10-26 15:35:58 +0200353void
Michał Winiarskia4598d12017-10-25 22:00:18 +0200354execlists_unwind_incomplete_requests(struct intel_engine_execlists *execlists)
355{
356 struct intel_engine_cs *engine =
357 container_of(execlists, typeof(*engine), execlists);
Chris Wilson4413c472018-05-08 22:03:17 +0100358 unsigned long flags;
Michał Winiarskia4598d12017-10-25 22:00:18 +0200359
Chris Wilson4413c472018-05-08 22:03:17 +0100360 spin_lock_irqsave(&engine->timeline.lock, flags);
361
Michał Winiarskia4598d12017-10-25 22:00:18 +0200362 __unwind_incomplete_requests(engine);
Chris Wilson4413c472018-05-08 22:03:17 +0100363
364 spin_unlock_irqrestore(&engine->timeline.lock, flags);
Michał Winiarskia4598d12017-10-25 22:00:18 +0200365}
366
Chris Wilsonbbd6c472016-09-09 14:11:45 +0100367static inline void
Chris Wilsone61e0f52018-02-21 09:56:36 +0000368execlists_context_status_change(struct i915_request *rq, unsigned long status)
Ben Widawsky84b790f2014-07-24 17:04:36 +0100369{
Chris Wilsonbbd6c472016-09-09 14:11:45 +0100370 /*
371 * Only used when GVT-g is enabled now. When GVT-g is disabled,
372 * The compiler should eliminate this function as dead-code.
373 */
374 if (!IS_ENABLED(CONFIG_DRM_I915_GVT))
375 return;
Ben Widawsky84b790f2014-07-24 17:04:36 +0100376
Changbin Du3fc03062017-03-13 10:47:11 +0800377 atomic_notifier_call_chain(&rq->engine->context_status_notifier,
378 status, rq);
Ben Widawsky84b790f2014-07-24 17:04:36 +0100379}
380
Chris Wilsonf2605202018-03-31 14:06:26 +0100381inline void
382execlists_user_begin(struct intel_engine_execlists *execlists,
383 const struct execlist_port *port)
384{
385 execlists_set_active_once(execlists, EXECLISTS_ACTIVE_USER);
386}
387
388inline void
389execlists_user_end(struct intel_engine_execlists *execlists)
390{
391 execlists_clear_active(execlists, EXECLISTS_ACTIVE_USER);
392}
393
Tvrtko Ursulin73fd9d32017-11-21 18:18:47 +0000394static inline void
Chris Wilsone61e0f52018-02-21 09:56:36 +0000395execlists_context_schedule_in(struct i915_request *rq)
Tvrtko Ursulin73fd9d32017-11-21 18:18:47 +0000396{
397 execlists_context_status_change(rq, INTEL_CONTEXT_SCHEDULE_IN);
Tvrtko Ursulin30e17b72017-11-21 18:18:48 +0000398 intel_engine_context_in(rq->engine);
Tvrtko Ursulin73fd9d32017-11-21 18:18:47 +0000399}
400
401static inline void
Chris Wilsonb9b77422018-05-03 00:02:02 +0100402execlists_context_schedule_out(struct i915_request *rq, unsigned long status)
Tvrtko Ursulin73fd9d32017-11-21 18:18:47 +0000403{
Tvrtko Ursulin30e17b72017-11-21 18:18:48 +0000404 intel_engine_context_out(rq->engine);
Chris Wilsonb9b77422018-05-03 00:02:02 +0100405 execlists_context_status_change(rq, status);
406 trace_i915_request_out(rq);
Tvrtko Ursulin73fd9d32017-11-21 18:18:47 +0000407}
408
Tvrtko Ursulinc6a2ac72016-02-26 16:58:32 +0000409static void
410execlists_update_context_pdps(struct i915_hw_ppgtt *ppgtt, u32 *reg_state)
411{
412 ASSIGN_CTX_PDP(ppgtt, reg_state, 3);
413 ASSIGN_CTX_PDP(ppgtt, reg_state, 2);
414 ASSIGN_CTX_PDP(ppgtt, reg_state, 1);
415 ASSIGN_CTX_PDP(ppgtt, reg_state, 0);
416}
417
Chris Wilsone61e0f52018-02-21 09:56:36 +0000418static u64 execlists_update_context(struct i915_request *rq)
Oscar Mateoae1250b2014-07-24 17:04:37 +0100419{
Chris Wilson1fc44d92018-05-17 22:26:32 +0100420 struct intel_context *ce = rq->hw_context;
Zhi Wang04da8112017-02-06 18:37:16 +0800421 struct i915_hw_ppgtt *ppgtt =
Chris Wilson4e0d64d2018-05-17 22:26:30 +0100422 rq->gem_context->ppgtt ?: rq->i915->mm.aliasing_ppgtt;
Chris Wilson70c2a242016-09-09 14:11:46 +0100423 u32 *reg_state = ce->lrc_reg_state;
Oscar Mateoae1250b2014-07-24 17:04:37 +0100424
Chris Wilsone6ba9992017-04-25 14:00:49 +0100425 reg_state[CTX_RING_TAIL+1] = intel_ring_set_tail(rq->ring, rq->tail);
Oscar Mateoae1250b2014-07-24 17:04:37 +0100426
Tvrtko Ursulinc6a2ac72016-02-26 16:58:32 +0000427 /* True 32b PPGTT with dynamic page allocation: update PDP
428 * registers and point the unallocated PDPs to scratch page.
429 * PML4 is allocated during ppgtt init, so this is not needed
430 * in 48-bit mode.
431 */
Chris Wilson82ad6442018-06-05 16:37:58 +0100432 if (ppgtt && !i915_vm_is_48bit(&ppgtt->vm))
Tvrtko Ursulinc6a2ac72016-02-26 16:58:32 +0000433 execlists_update_context_pdps(ppgtt, reg_state);
Chris Wilson70c2a242016-09-09 14:11:46 +0100434
435 return ce->lrc_desc;
Oscar Mateoae1250b2014-07-24 17:04:37 +0100436}
437
Thomas Daniel05f0add2018-03-02 18:14:59 +0200438static inline void write_desc(struct intel_engine_execlists *execlists, u64 desc, u32 port)
Chris Wilsonbeecec92017-10-03 21:34:52 +0100439{
Thomas Daniel05f0add2018-03-02 18:14:59 +0200440 if (execlists->ctrl_reg) {
441 writel(lower_32_bits(desc), execlists->submit_reg + port * 2);
442 writel(upper_32_bits(desc), execlists->submit_reg + port * 2 + 1);
443 } else {
444 writel(upper_32_bits(desc), execlists->submit_reg);
445 writel(lower_32_bits(desc), execlists->submit_reg);
446 }
Chris Wilsonbeecec92017-10-03 21:34:52 +0100447}
448
Chris Wilson70c2a242016-09-09 14:11:46 +0100449static void execlists_submit_ports(struct intel_engine_cs *engine)
Chris Wilsonbbd6c472016-09-09 14:11:45 +0100450{
Thomas Daniel05f0add2018-03-02 18:14:59 +0200451 struct intel_engine_execlists *execlists = &engine->execlists;
452 struct execlist_port *port = execlists->port;
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100453 unsigned int n;
Chris Wilsonbbd6c472016-09-09 14:11:45 +0100454
Thomas Daniel05f0add2018-03-02 18:14:59 +0200455 /*
Chris Wilsond78d3342018-07-19 08:50:29 +0100456 * We can skip acquiring intel_runtime_pm_get() here as it was taken
457 * on our behalf by the request (see i915_gem_mark_busy()) and it will
458 * not be relinquished until the device is idle (see
459 * i915_gem_idle_work_handler()). As a precaution, we make sure
460 * that all ELSP are drained i.e. we have processed the CSB,
461 * before allowing ourselves to idle and calling intel_runtime_pm_put().
462 */
463 GEM_BUG_ON(!engine->i915->gt.awake);
464
465 /*
Thomas Daniel05f0add2018-03-02 18:14:59 +0200466 * ELSQ note: the submit queue is not cleared after being submitted
467 * to the HW so we need to make sure we always clean it up. This is
468 * currently ensured by the fact that we always write the same number
469 * of elsq entries, keep this in mind before changing the loop below.
470 */
471 for (n = execlists_num_ports(execlists); n--; ) {
Chris Wilsone61e0f52018-02-21 09:56:36 +0000472 struct i915_request *rq;
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100473 unsigned int count;
474 u64 desc;
Chris Wilson70c2a242016-09-09 14:11:46 +0100475
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100476 rq = port_unpack(&port[n], &count);
477 if (rq) {
478 GEM_BUG_ON(count > !n);
479 if (!count++)
Tvrtko Ursulin73fd9d32017-11-21 18:18:47 +0000480 execlists_context_schedule_in(rq);
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100481 port_set(&port[n], port_pack(rq, count));
482 desc = execlists_update_context(rq);
483 GEM_DEBUG_EXEC(port[n].context_id = upper_32_bits(desc));
Chris Wilsonbccd3b82017-11-09 14:30:19 +0000484
Tvrtko Ursulin0c5c7df2018-04-06 13:35:14 +0100485 GEM_TRACE("%s in[%d]: ctx=%d.%d, global=%d (fence %llx:%d) (current %d), prio=%d\n",
Chris Wilsonbccd3b82017-11-09 14:30:19 +0000486 engine->name, n,
Chris Wilson16c86192017-12-19 22:09:16 +0000487 port[n].context_id, count,
Chris Wilsonf6322ed2018-02-22 14:22:29 +0000488 rq->global_seqno,
Tvrtko Ursulin0c5c7df2018-04-06 13:35:14 +0100489 rq->fence.context, rq->fence.seqno,
Chris Wilsone7702762018-03-27 22:01:57 +0100490 intel_engine_get_seqno(engine),
Chris Wilsonf6322ed2018-02-22 14:22:29 +0000491 rq_prio(rq));
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100492 } else {
493 GEM_BUG_ON(!n);
494 desc = 0;
495 }
496
Thomas Daniel05f0add2018-03-02 18:14:59 +0200497 write_desc(execlists, desc, n);
Chris Wilsonbbd6c472016-09-09 14:11:45 +0100498 }
Thomas Daniel05f0add2018-03-02 18:14:59 +0200499
500 /* we need to manually load the submit queue */
501 if (execlists->ctrl_reg)
502 writel(EL_CTRL_LOAD, execlists->ctrl_reg);
503
504 execlists_clear_active(execlists, EXECLISTS_ACTIVE_HWACK);
Chris Wilsonbbd6c472016-09-09 14:11:45 +0100505}
506
Chris Wilson1fc44d92018-05-17 22:26:32 +0100507static bool ctx_single_port_submission(const struct intel_context *ce)
Ben Widawsky84b790f2014-07-24 17:04:36 +0100508{
Chris Wilson70c2a242016-09-09 14:11:46 +0100509 return (IS_ENABLED(CONFIG_DRM_I915_GVT) &&
Chris Wilson1fc44d92018-05-17 22:26:32 +0100510 i915_gem_context_force_single_submission(ce->gem_context));
Ben Widawsky84b790f2014-07-24 17:04:36 +0100511}
512
Chris Wilson1fc44d92018-05-17 22:26:32 +0100513static bool can_merge_ctx(const struct intel_context *prev,
514 const struct intel_context *next)
Michel Thierryacdd8842014-07-24 17:04:38 +0100515{
Chris Wilson70c2a242016-09-09 14:11:46 +0100516 if (prev != next)
517 return false;
Thomas Daniele981e7b2014-07-24 17:04:39 +0100518
Chris Wilson70c2a242016-09-09 14:11:46 +0100519 if (ctx_single_port_submission(prev))
520 return false;
Michel Thierryacdd8842014-07-24 17:04:38 +0100521
Chris Wilson70c2a242016-09-09 14:11:46 +0100522 return true;
523}
Peter Antoine779949f2015-05-11 16:03:27 +0100524
Chris Wilsone61e0f52018-02-21 09:56:36 +0000525static void port_assign(struct execlist_port *port, struct i915_request *rq)
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100526{
527 GEM_BUG_ON(rq == port_request(port));
528
529 if (port_isset(port))
Chris Wilsone61e0f52018-02-21 09:56:36 +0000530 i915_request_put(port_request(port));
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100531
Chris Wilsone61e0f52018-02-21 09:56:36 +0000532 port_set(port, port_pack(i915_request_get(rq), port_count(port)));
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100533}
534
Chris Wilsonbeecec92017-10-03 21:34:52 +0100535static void inject_preempt_context(struct intel_engine_cs *engine)
536{
Thomas Daniel05f0add2018-03-02 18:14:59 +0200537 struct intel_engine_execlists *execlists = &engine->execlists;
Chris Wilsonbeecec92017-10-03 21:34:52 +0100538 struct intel_context *ce =
Chris Wilsonab82a062018-04-30 14:15:01 +0100539 to_intel_context(engine->i915->preempt_context, engine);
Chris Wilsonbeecec92017-10-03 21:34:52 +0100540 unsigned int n;
541
Thomas Daniel05f0add2018-03-02 18:14:59 +0200542 GEM_BUG_ON(execlists->preempt_complete_status !=
Chris Wilsond6376372018-02-07 21:05:44 +0000543 upper_32_bits(ce->lrc_desc));
Chris Wilson09b1a4e2018-01-25 11:24:42 +0000544 GEM_BUG_ON((ce->lrc_reg_state[CTX_CONTEXT_CONTROL + 1] &
545 _MASKED_BIT_ENABLE(CTX_CTRL_ENGINE_CTX_RESTORE_INHIBIT |
546 CTX_CTRL_ENGINE_CTX_SAVE_INHIBIT)) !=
547 _MASKED_BIT_ENABLE(CTX_CTRL_ENGINE_CTX_RESTORE_INHIBIT |
548 CTX_CTRL_ENGINE_CTX_SAVE_INHIBIT));
549
Chris Wilsonf6322ed2018-02-22 14:22:29 +0000550 /*
551 * Switch to our empty preempt context so
552 * the state of the GPU is known (idle).
553 */
Chris Wilson16a87392017-12-20 09:06:26 +0000554 GEM_TRACE("%s\n", engine->name);
Thomas Daniel05f0add2018-03-02 18:14:59 +0200555 for (n = execlists_num_ports(execlists); --n; )
556 write_desc(execlists, 0, n);
Chris Wilsonbeecec92017-10-03 21:34:52 +0100557
Thomas Daniel05f0add2018-03-02 18:14:59 +0200558 write_desc(execlists, ce->lrc_desc, n);
559
560 /* we need to manually load the submit queue */
561 if (execlists->ctrl_reg)
562 writel(EL_CTRL_LOAD, execlists->ctrl_reg);
563
Chris Wilsonef2fb722018-05-16 19:33:50 +0100564 execlists_clear_active(execlists, EXECLISTS_ACTIVE_HWACK);
565 execlists_set_active(execlists, EXECLISTS_ACTIVE_PREEMPT);
566}
567
568static void complete_preempt_context(struct intel_engine_execlists *execlists)
569{
570 GEM_BUG_ON(!execlists_is_active(execlists, EXECLISTS_ACTIVE_PREEMPT));
571
Chris Wilson0f6b79f2018-07-16 14:21:54 +0100572 if (inject_preempt_hang(execlists))
573 return;
574
Chris Wilsonef2fb722018-05-16 19:33:50 +0100575 execlists_cancel_port_requests(execlists);
Chris Wilson9512f982018-06-28 21:12:11 +0100576 __unwind_incomplete_requests(container_of(execlists,
577 struct intel_engine_cs,
578 execlists));
Chris Wilsonbeecec92017-10-03 21:34:52 +0100579}
580
Chris Wilson9512f982018-06-28 21:12:11 +0100581static void execlists_dequeue(struct intel_engine_cs *engine)
Chris Wilson70c2a242016-09-09 14:11:46 +0100582{
Mika Kuoppala7a62cc62017-09-22 15:43:06 +0300583 struct intel_engine_execlists * const execlists = &engine->execlists;
584 struct execlist_port *port = execlists->port;
Mika Kuoppala76e70082017-09-22 15:43:07 +0300585 const struct execlist_port * const last_port =
586 &execlists->port[execlists->port_mask];
Chris Wilsone61e0f52018-02-21 09:56:36 +0000587 struct i915_request *last = port_request(port);
Chris Wilson20311bd2016-11-14 20:41:03 +0000588 struct rb_node *rb;
Chris Wilson70c2a242016-09-09 14:11:46 +0100589 bool submit = false;
Michel Thierryacdd8842014-07-24 17:04:38 +0100590
Chris Wilson9512f982018-06-28 21:12:11 +0100591 /*
592 * Hardware submission is through 2 ports. Conceptually each port
Chris Wilson70c2a242016-09-09 14:11:46 +0100593 * has a (RING_START, RING_HEAD, RING_TAIL) tuple. RING_START is
594 * static for a context, and unique to each, so we only execute
595 * requests belonging to a single context from each ring. RING_HEAD
596 * is maintained by the CS in the context image, it marks the place
597 * where it got up to last time, and through RING_TAIL we tell the CS
598 * where we want to execute up to this time.
599 *
600 * In this list the requests are in order of execution. Consecutive
601 * requests from the same context are adjacent in the ringbuffer. We
602 * can combine these requests into a single RING_TAIL update:
603 *
604 * RING_HEAD...req1...req2
605 * ^- RING_TAIL
606 * since to execute req2 the CS must first execute req1.
607 *
608 * Our goal then is to point each port to the end of a consecutive
609 * sequence of requests as being the most optimal (fewest wake ups
610 * and context switches) submission.
611 */
612
Chris Wilsonbeecec92017-10-03 21:34:52 +0100613 if (last) {
614 /*
615 * Don't resubmit or switch until all outstanding
616 * preemptions (lite-restore) are seen. Then we
617 * know the next preemption status we see corresponds
618 * to this ELSP update.
619 */
Chris Wilsoneed7ec52018-03-24 12:58:29 +0000620 GEM_BUG_ON(!execlists_is_active(execlists,
621 EXECLISTS_ACTIVE_USER));
Michel Thierryba74cb12017-11-20 12:34:58 +0000622 GEM_BUG_ON(!port_count(&port[0]));
Chris Wilsonbeecec92017-10-03 21:34:52 +0100623
Michel Thierryba74cb12017-11-20 12:34:58 +0000624 /*
625 * If we write to ELSP a second time before the HW has had
626 * a chance to respond to the previous write, we can confuse
627 * the HW and hit "undefined behaviour". After writing to ELSP,
628 * we must then wait until we see a context-switch event from
629 * the HW to indicate that it has had a chance to respond.
630 */
631 if (!execlists_is_active(execlists, EXECLISTS_ACTIVE_HWACK))
Chris Wilson0b02bef2018-06-28 21:12:04 +0100632 return;
Michel Thierryba74cb12017-11-20 12:34:58 +0000633
Chris Wilsonf6322ed2018-02-22 14:22:29 +0000634 if (need_preempt(engine, last, execlists->queue_priority)) {
Chris Wilsonbeecec92017-10-03 21:34:52 +0100635 inject_preempt_context(engine);
Chris Wilson0b02bef2018-06-28 21:12:04 +0100636 return;
Chris Wilsonbeecec92017-10-03 21:34:52 +0100637 }
Chris Wilsonf6322ed2018-02-22 14:22:29 +0000638
639 /*
640 * In theory, we could coalesce more requests onto
641 * the second port (the first port is active, with
642 * no preemptions pending). However, that means we
643 * then have to deal with the possible lite-restore
644 * of the second port (as we submit the ELSP, there
645 * may be a context-switch) but also we may complete
646 * the resubmission before the context-switch. Ergo,
647 * coalescing onto the second port will cause a
648 * preemption event, but we cannot predict whether
649 * that will affect port[0] or port[1].
650 *
651 * If the second port is already active, we can wait
652 * until the next context-switch before contemplating
653 * new requests. The GPU will be busy and we should be
654 * able to resubmit the new ELSP before it idles,
655 * avoiding pipeline bubbles (momentary pauses where
656 * the driver is unable to keep up the supply of new
657 * work). However, we have to double check that the
658 * priorities of the ports haven't been switch.
659 */
660 if (port_count(&port[1]))
Chris Wilson0b02bef2018-06-28 21:12:04 +0100661 return;
Chris Wilsonf6322ed2018-02-22 14:22:29 +0000662
663 /*
664 * WaIdleLiteRestore:bdw,skl
665 * Apply the wa NOOPs to prevent
666 * ring:HEAD == rq:TAIL as we resubmit the
667 * request. See gen8_emit_breadcrumb() for
668 * where we prepare the padding after the
669 * end of the request.
670 */
671 last->tail = last->wa_tail;
Chris Wilsonbeecec92017-10-03 21:34:52 +0100672 }
673
Chris Wilson655250a2018-06-29 08:53:20 +0100674 while ((rb = rb_first_cached(&execlists->queue))) {
Chris Wilsonf6322ed2018-02-22 14:22:29 +0000675 struct i915_priolist *p = to_priolist(rb);
Chris Wilsone61e0f52018-02-21 09:56:36 +0000676 struct i915_request *rq, *rn;
Chris Wilson20311bd2016-11-14 20:41:03 +0000677
Chris Wilson0c7112a2018-04-18 19:40:51 +0100678 list_for_each_entry_safe(rq, rn, &p->requests, sched.link) {
Chris Wilson6c067572017-05-17 13:10:03 +0100679 /*
680 * Can we combine this request with the current port?
681 * It has to be the same context/ringbuffer and not
682 * have any exceptions (e.g. GVT saying never to
683 * combine contexts).
684 *
685 * If we can combine the requests, we can execute both
686 * by updating the RING_TAIL to point to the end of the
687 * second request, and so we never need to tell the
688 * hardware about the first.
Chris Wilson70c2a242016-09-09 14:11:46 +0100689 */
Chris Wilson1fc44d92018-05-17 22:26:32 +0100690 if (last &&
691 !can_merge_ctx(rq->hw_context, last->hw_context)) {
Chris Wilson6c067572017-05-17 13:10:03 +0100692 /*
693 * If we are on the second port and cannot
694 * combine this request with the last, then we
695 * are done.
696 */
Mika Kuoppala76e70082017-09-22 15:43:07 +0300697 if (port == last_port) {
Chris Wilson6c067572017-05-17 13:10:03 +0100698 __list_del_many(&p->requests,
Chris Wilson0c7112a2018-04-18 19:40:51 +0100699 &rq->sched.link);
Chris Wilson6c067572017-05-17 13:10:03 +0100700 goto done;
701 }
Chris Wilson70c2a242016-09-09 14:11:46 +0100702
Chris Wilson6c067572017-05-17 13:10:03 +0100703 /*
704 * If GVT overrides us we only ever submit
705 * port[0], leaving port[1] empty. Note that we
706 * also have to be careful that we don't queue
707 * the same context (even though a different
708 * request) to the second port.
709 */
Chris Wilson1fc44d92018-05-17 22:26:32 +0100710 if (ctx_single_port_submission(last->hw_context) ||
711 ctx_single_port_submission(rq->hw_context)) {
Chris Wilson6c067572017-05-17 13:10:03 +0100712 __list_del_many(&p->requests,
Chris Wilson0c7112a2018-04-18 19:40:51 +0100713 &rq->sched.link);
Chris Wilson6c067572017-05-17 13:10:03 +0100714 goto done;
715 }
Chris Wilson70c2a242016-09-09 14:11:46 +0100716
Chris Wilson1fc44d92018-05-17 22:26:32 +0100717 GEM_BUG_ON(last->hw_context == rq->hw_context);
Chris Wilson70c2a242016-09-09 14:11:46 +0100718
Chris Wilson6c067572017-05-17 13:10:03 +0100719 if (submit)
720 port_assign(port, last);
721 port++;
Mika Kuoppala7a62cc62017-09-22 15:43:06 +0300722
723 GEM_BUG_ON(port_isset(port));
Chris Wilson6c067572017-05-17 13:10:03 +0100724 }
725
Chris Wilson0c7112a2018-04-18 19:40:51 +0100726 INIT_LIST_HEAD(&rq->sched.link);
Chris Wilsone61e0f52018-02-21 09:56:36 +0000727 __i915_request_submit(rq);
728 trace_i915_request_in(rq, port_index(port, execlists));
Chris Wilson6c067572017-05-17 13:10:03 +0100729 last = rq;
730 submit = true;
Chris Wilson70c2a242016-09-09 14:11:46 +0100731 }
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000732
Chris Wilson655250a2018-06-29 08:53:20 +0100733 rb_erase_cached(&p->node, &execlists->queue);
Chris Wilson6c067572017-05-17 13:10:03 +0100734 INIT_LIST_HEAD(&p->requests);
735 if (p->priority != I915_PRIORITY_NORMAL)
Chris Wilsonc5cf9a92017-05-17 13:10:04 +0100736 kmem_cache_free(engine->i915->priorities, p);
Chris Wilsonf6322ed2018-02-22 14:22:29 +0000737 }
Chris Wilson15c83c42018-04-11 11:39:29 +0100738
Chris Wilson6c067572017-05-17 13:10:03 +0100739done:
Chris Wilson15c83c42018-04-11 11:39:29 +0100740 /*
741 * Here be a bit of magic! Or sleight-of-hand, whichever you prefer.
742 *
743 * We choose queue_priority such that if we add a request of greater
744 * priority than this, we kick the submission tasklet to decide on
745 * the right order of submitting the requests to hardware. We must
746 * also be prepared to reorder requests as they are in-flight on the
747 * HW. We derive the queue_priority then as the first "hole" in
748 * the HW submission ports and if there are no available slots,
749 * the priority of the lowest executing request, i.e. last.
750 *
751 * When we do receive a higher priority request ready to run from the
752 * user, see queue_request(), the queue_priority is bumped to that
753 * request triggering preemption on the next dequeue (or subsequent
754 * interrupt for secondary ports).
755 */
756 execlists->queue_priority =
757 port != execlists->port ? rq_prio(last) : INT_MIN;
758
Chris Wilson0b02bef2018-06-28 21:12:04 +0100759 if (submit) {
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100760 port_assign(port, last);
Chris Wilson0b02bef2018-06-28 21:12:04 +0100761 execlists_submit_ports(engine);
762 }
Chris Wilson339ccd32018-02-15 16:25:53 +0000763
764 /* We must always keep the beast fed if we have work piled up */
Chris Wilson655250a2018-06-29 08:53:20 +0100765 GEM_BUG_ON(rb_first_cached(&execlists->queue) &&
766 !port_isset(execlists->port));
Chris Wilson339ccd32018-02-15 16:25:53 +0000767
Chris Wilson4413c472018-05-08 22:03:17 +0100768 /* Re-evaluate the executing context setup after each preemptive kick */
769 if (last)
Chris Wilsonf2605202018-03-31 14:06:26 +0100770 execlists_user_begin(execlists, execlists->port);
Chris Wilson4413c472018-05-08 22:03:17 +0100771
Chris Wilson0b02bef2018-06-28 21:12:04 +0100772 /* If the engine is now idle, so should be the flag; and vice versa. */
773 GEM_BUG_ON(execlists_is_active(&engine->execlists,
774 EXECLISTS_ACTIVE_USER) ==
775 !port_isset(engine->execlists.port));
Chris Wilson4413c472018-05-08 22:03:17 +0100776}
777
Michał Winiarskic41937fd2017-10-26 15:35:58 +0200778void
Michał Winiarskia4598d12017-10-25 22:00:18 +0200779execlists_cancel_port_requests(struct intel_engine_execlists * const execlists)
Mika Kuoppalacf4591d2017-09-22 15:43:05 +0300780{
Chris Wilson3f9e6cd2017-09-25 13:49:27 +0100781 struct execlist_port *port = execlists->port;
Mika Kuoppaladc2279e2017-10-10 14:48:57 +0300782 unsigned int num_ports = execlists_num_ports(execlists);
Mika Kuoppalacf4591d2017-09-22 15:43:05 +0300783
Chris Wilson3f9e6cd2017-09-25 13:49:27 +0100784 while (num_ports-- && port_isset(port)) {
Chris Wilsone61e0f52018-02-21 09:56:36 +0000785 struct i915_request *rq = port_request(port);
Chris Wilson7e44fc22017-09-26 11:17:19 +0100786
Tvrtko Ursulin0c5c7df2018-04-06 13:35:14 +0100787 GEM_TRACE("%s:port%u global=%d (fence %llx:%d), (current %d)\n",
788 rq->engine->name,
789 (unsigned int)(port - execlists->port),
790 rq->global_seqno,
791 rq->fence.context, rq->fence.seqno,
792 intel_engine_get_seqno(rq->engine));
793
Chris Wilson4a118ec2017-10-23 22:32:36 +0100794 GEM_BUG_ON(!execlists->active);
Chris Wilsonb9b77422018-05-03 00:02:02 +0100795 execlists_context_schedule_out(rq,
796 i915_request_completed(rq) ?
797 INTEL_CONTEXT_SCHEDULE_OUT :
798 INTEL_CONTEXT_SCHEDULE_PREEMPTED);
Weinan Li702791f2018-03-06 10:15:57 +0800799
Chris Wilsone61e0f52018-02-21 09:56:36 +0000800 i915_request_put(rq);
Chris Wilson7e44fc22017-09-26 11:17:19 +0100801
Chris Wilson3f9e6cd2017-09-25 13:49:27 +0100802 memset(port, 0, sizeof(*port));
803 port++;
804 }
Chris Wilsoneed7ec52018-03-24 12:58:29 +0000805
Chris Wilson00511632018-07-16 13:54:24 +0100806 execlists_clear_all_active(execlists);
Mika Kuoppalacf4591d2017-09-22 15:43:05 +0300807}
808
Chris Wilsonf4b58f02018-06-28 21:12:08 +0100809static void reset_csb_pointers(struct intel_engine_execlists *execlists)
810{
811 /*
812 * After a reset, the HW starts writing into CSB entry [0]. We
813 * therefore have to set our HEAD pointer back one entry so that
814 * the *first* entry we check is entry 0. To complicate this further,
815 * as we don't wait for the first interrupt after reset, we have to
816 * fake the HW write to point back to the last entry so that our
817 * inline comparison of our cached head position against the last HW
818 * write works even before the first interrupt.
819 */
820 execlists->csb_head = execlists->csb_write_reset;
821 WRITE_ONCE(*execlists->csb_write, execlists->csb_write_reset);
822}
823
Chris Wilsonf1a498f2018-07-16 09:03:30 +0100824static void nop_submission_tasklet(unsigned long data)
825{
826 /* The driver is wedged; don't process any more events. */
827}
828
Chris Wilson27a5f612017-09-15 18:31:00 +0100829static void execlists_cancel_requests(struct intel_engine_cs *engine)
830{
Mika Kuoppalab620e872017-09-22 15:43:03 +0300831 struct intel_engine_execlists * const execlists = &engine->execlists;
Chris Wilsone61e0f52018-02-21 09:56:36 +0000832 struct i915_request *rq, *rn;
Chris Wilson27a5f612017-09-15 18:31:00 +0100833 struct rb_node *rb;
834 unsigned long flags;
Chris Wilson27a5f612017-09-15 18:31:00 +0100835
Tvrtko Ursulin0c5c7df2018-04-06 13:35:14 +0100836 GEM_TRACE("%s current %d\n",
837 engine->name, intel_engine_get_seqno(engine));
Chris Wilson963ddd62018-03-02 11:33:24 +0000838
Chris Wilsona3e38832018-03-02 14:32:45 +0000839 /*
840 * Before we call engine->cancel_requests(), we should have exclusive
841 * access to the submission state. This is arranged for us by the
842 * caller disabling the interrupt generation, the tasklet and other
843 * threads that may then access the same state, giving us a free hand
844 * to reset state. However, we still need to let lockdep be aware that
845 * we know this state may be accessed in hardirq context, so we
846 * disable the irq around this manipulation and we want to keep
847 * the spinlock focused on its duties and not accidentally conflate
848 * coverage to the submission's irq state. (Similarly, although we
849 * shouldn't need to disable irq around the manipulation of the
850 * submission's irq state, we also wish to remind ourselves that
851 * it is irq state.)
852 */
Chris Wilsond8857d52018-06-28 21:12:05 +0100853 spin_lock_irqsave(&engine->timeline.lock, flags);
Chris Wilson27a5f612017-09-15 18:31:00 +0100854
855 /* Cancel the requests on the HW and clear the ELSP tracker. */
Michał Winiarskia4598d12017-10-25 22:00:18 +0200856 execlists_cancel_port_requests(execlists);
Chris Wilson00511632018-07-16 13:54:24 +0100857 execlists_user_end(execlists);
Chris Wilson27a5f612017-09-15 18:31:00 +0100858
859 /* Mark all executing requests as skipped. */
Chris Wilsona89d1f92018-05-02 17:38:39 +0100860 list_for_each_entry(rq, &engine->timeline.requests, link) {
Chris Wilson27a5f612017-09-15 18:31:00 +0100861 GEM_BUG_ON(!rq->global_seqno);
Chris Wilsone61e0f52018-02-21 09:56:36 +0000862 if (!i915_request_completed(rq))
Chris Wilson27a5f612017-09-15 18:31:00 +0100863 dma_fence_set_error(&rq->fence, -EIO);
864 }
865
866 /* Flush the queued requests to the timeline list (for retiring). */
Chris Wilson655250a2018-06-29 08:53:20 +0100867 while ((rb = rb_first_cached(&execlists->queue))) {
Chris Wilsonf6322ed2018-02-22 14:22:29 +0000868 struct i915_priolist *p = to_priolist(rb);
Chris Wilson27a5f612017-09-15 18:31:00 +0100869
Chris Wilson0c7112a2018-04-18 19:40:51 +0100870 list_for_each_entry_safe(rq, rn, &p->requests, sched.link) {
871 INIT_LIST_HEAD(&rq->sched.link);
Chris Wilson27a5f612017-09-15 18:31:00 +0100872
873 dma_fence_set_error(&rq->fence, -EIO);
Chris Wilsone61e0f52018-02-21 09:56:36 +0000874 __i915_request_submit(rq);
Chris Wilson27a5f612017-09-15 18:31:00 +0100875 }
876
Chris Wilson655250a2018-06-29 08:53:20 +0100877 rb_erase_cached(&p->node, &execlists->queue);
Chris Wilson27a5f612017-09-15 18:31:00 +0100878 INIT_LIST_HEAD(&p->requests);
879 if (p->priority != I915_PRIORITY_NORMAL)
880 kmem_cache_free(engine->i915->priorities, p);
881 }
882
883 /* Remaining _unready_ requests will be nop'ed when submitted */
884
Chris Wilsonf6322ed2018-02-22 14:22:29 +0000885 execlists->queue_priority = INT_MIN;
Chris Wilson655250a2018-06-29 08:53:20 +0100886 execlists->queue = RB_ROOT_CACHED;
Chris Wilson3f9e6cd2017-09-25 13:49:27 +0100887 GEM_BUG_ON(port_isset(execlists->port));
Chris Wilson27a5f612017-09-15 18:31:00 +0100888
Chris Wilsonf1a498f2018-07-16 09:03:30 +0100889 GEM_BUG_ON(__tasklet_is_enabled(&execlists->tasklet));
890 execlists->tasklet.func = nop_submission_tasklet;
891
Chris Wilsond8857d52018-06-28 21:12:05 +0100892 spin_unlock_irqrestore(&engine->timeline.lock, flags);
Chris Wilson27a5f612017-09-15 18:31:00 +0100893}
894
Chris Wilson9512f982018-06-28 21:12:11 +0100895static inline bool
896reset_in_progress(const struct intel_engine_execlists *execlists)
897{
898 return unlikely(!__tasklet_is_enabled(&execlists->tasklet));
899}
900
Chris Wilson73377db2018-05-16 19:33:53 +0100901static void process_csb(struct intel_engine_cs *engine)
Thomas Daniele981e7b2014-07-24 17:04:39 +0100902{
Mika Kuoppalab620e872017-09-22 15:43:03 +0300903 struct intel_engine_execlists * const execlists = &engine->execlists;
Chris Wilsonf2605202018-03-31 14:06:26 +0100904 struct execlist_port *port = execlists->port;
Chris Wilsonbc4237e2018-06-28 21:12:07 +0100905 const u32 * const buf = execlists->csb_status;
906 u8 head, tail;
Thomas Daniele981e7b2014-07-24 17:04:39 +0100907
Chris Wilsonbc4237e2018-06-28 21:12:07 +0100908 /*
909 * Note that csb_write, csb_status may be either in HWSP or mmio.
910 * When reading from the csb_write mmio register, we have to be
911 * careful to only use the GEN8_CSB_WRITE_PTR portion, which is
912 * the low 4bits. As it happens we know the next 4bits are always
913 * zero and so we can simply masked off the low u8 of the register
914 * and treat it identically to reading from the HWSP (without having
915 * to use explicit shifting and masking, and probably bifurcating
916 * the code to handle the legacy mmio read).
917 */
918 head = execlists->csb_head;
919 tail = READ_ONCE(*execlists->csb_write);
920 GEM_TRACE("%s cs-irq head=%d, tail=%d\n", engine->name, head, tail);
921 if (unlikely(head == tail))
922 return;
Chris Wilson9153e6b2018-03-21 09:10:27 +0000923
Chris Wilsonbc4237e2018-06-28 21:12:07 +0100924 /*
925 * Hopefully paired with a wmb() in HW!
926 *
927 * We must complete the read of the write pointer before any reads
928 * from the CSB, so that we do not see stale values. Without an rmb
929 * (lfence) the HW may speculatively perform the CSB[] reads *before*
930 * we perform the READ_ONCE(*csb_write).
931 */
932 rmb();
Chris Wilsonbb5db7e2018-01-22 10:07:14 +0000933
Chris Wilsonbc4237e2018-06-28 21:12:07 +0100934 do {
Chris Wilson8ea397f2018-06-28 21:12:06 +0100935 struct i915_request *rq;
936 unsigned int status;
937 unsigned int count;
938
939 if (++head == GEN8_CSB_ENTRIES)
940 head = 0;
941
942 /*
943 * We are flying near dragons again.
944 *
945 * We hold a reference to the request in execlist_port[]
946 * but no more than that. We are operating in softirq
947 * context and so cannot hold any mutex or sleep. That
948 * prevents us stopping the requests we are processing
949 * in port[] from being retired simultaneously (the
950 * breadcrumb will be complete before we see the
951 * context-switch). As we only hold the reference to the
952 * request, any pointer chasing underneath the request
953 * is subject to a potential use-after-free. Thus we
954 * store all of the bookkeeping within port[] as
955 * required, and avoid using unguarded pointers beneath
956 * request itself. The same applies to the atomic
957 * status notifier.
958 */
959
Chris Wilson8ea397f2018-06-28 21:12:06 +0100960 GEM_TRACE("%s csb[%d]: status=0x%08x:0x%08x, active=0x%x\n",
961 engine->name, head,
Chris Wilsonbc4237e2018-06-28 21:12:07 +0100962 buf[2 * head + 0], buf[2 * head + 1],
Chris Wilson8ea397f2018-06-28 21:12:06 +0100963 execlists->active);
964
Chris Wilsonbc4237e2018-06-28 21:12:07 +0100965 status = buf[2 * head];
Chris Wilson8ea397f2018-06-28 21:12:06 +0100966 if (status & (GEN8_CTX_STATUS_IDLE_ACTIVE |
967 GEN8_CTX_STATUS_PREEMPTED))
968 execlists_set_active(execlists,
969 EXECLISTS_ACTIVE_HWACK);
970 if (status & GEN8_CTX_STATUS_ACTIVE_IDLE)
971 execlists_clear_active(execlists,
972 EXECLISTS_ACTIVE_HWACK);
973
974 if (!(status & GEN8_CTX_STATUS_COMPLETED_MASK))
975 continue;
976
977 /* We should never get a COMPLETED | IDLE_ACTIVE! */
978 GEM_BUG_ON(status & GEN8_CTX_STATUS_IDLE_ACTIVE);
979
980 if (status & GEN8_CTX_STATUS_COMPLETE &&
981 buf[2*head + 1] == execlists->preempt_complete_status) {
982 GEM_TRACE("%s preempt-idle\n", engine->name);
983 complete_preempt_context(execlists);
984 continue;
Chris Wilson767a9832017-09-13 09:56:05 +0100985 }
Chris Wilson8ea397f2018-06-28 21:12:06 +0100986
987 if (status & GEN8_CTX_STATUS_PREEMPTED &&
988 execlists_is_active(execlists,
989 EXECLISTS_ACTIVE_PREEMPT))
990 continue;
991
992 GEM_BUG_ON(!execlists_is_active(execlists,
993 EXECLISTS_ACTIVE_USER));
994
995 rq = port_unpack(port, &count);
996 GEM_TRACE("%s out[0]: ctx=%d.%d, global=%d (fence %llx:%d) (current %d), prio=%d\n",
Chris Wilsonbccd3b82017-11-09 14:30:19 +0000997 engine->name,
Chris Wilson8ea397f2018-06-28 21:12:06 +0100998 port->context_id, count,
999 rq ? rq->global_seqno : 0,
1000 rq ? rq->fence.context : 0,
1001 rq ? rq->fence.seqno : 0,
1002 intel_engine_get_seqno(engine),
1003 rq ? rq_prio(rq) : 0);
Mika Kuoppalab620e872017-09-22 15:43:03 +03001004
Chris Wilson8ea397f2018-06-28 21:12:06 +01001005 /* Check the context/desc id for this event matches */
1006 GEM_DEBUG_BUG_ON(buf[2 * head + 1] != port->context_id);
Chris Wilsona37951a2017-01-24 11:00:06 +00001007
Chris Wilson8ea397f2018-06-28 21:12:06 +01001008 GEM_BUG_ON(count == 0);
1009 if (--count == 0) {
1010 /*
1011 * On the final event corresponding to the
1012 * submission of this context, we expect either
1013 * an element-switch event or a completion
1014 * event (and on completion, the active-idle
1015 * marker). No more preemptions, lite-restore
1016 * or otherwise.
1017 */
1018 GEM_BUG_ON(status & GEN8_CTX_STATUS_PREEMPTED);
1019 GEM_BUG_ON(port_isset(&port[1]) &&
1020 !(status & GEN8_CTX_STATUS_ELEMENT_SWITCH));
1021 GEM_BUG_ON(!port_isset(&port[1]) &&
1022 !(status & GEN8_CTX_STATUS_ACTIVE_IDLE));
Thomas Daniele981e7b2014-07-24 17:04:39 +01001023
Chris Wilson73377db2018-05-16 19:33:53 +01001024 /*
Chris Wilson8ea397f2018-06-28 21:12:06 +01001025 * We rely on the hardware being strongly
1026 * ordered, that the breadcrumb write is
1027 * coherent (visible from the CPU) before the
1028 * user interrupt and CSB is processed.
Chris Wilson2ffe80a2017-02-06 17:05:02 +00001029 */
Chris Wilson8ea397f2018-06-28 21:12:06 +01001030 GEM_BUG_ON(!i915_request_completed(rq));
Chris Wilson2ffe80a2017-02-06 17:05:02 +00001031
Chris Wilson8ea397f2018-06-28 21:12:06 +01001032 execlists_context_schedule_out(rq,
1033 INTEL_CONTEXT_SCHEDULE_OUT);
1034 i915_request_put(rq);
Michel Thierryba74cb12017-11-20 12:34:58 +00001035
Chris Wilson8ea397f2018-06-28 21:12:06 +01001036 GEM_TRACE("%s completed ctx=%d\n",
1037 engine->name, port->context_id);
Michel Thierryba74cb12017-11-20 12:34:58 +00001038
Chris Wilson8ea397f2018-06-28 21:12:06 +01001039 port = execlists_port_complete(execlists, port);
1040 if (port_isset(port))
1041 execlists_user_begin(execlists, port);
1042 else
1043 execlists_user_end(execlists);
1044 } else {
1045 port_set(port, port_pack(rq, count));
Chris Wilson4af0d722017-03-25 20:10:53 +00001046 }
Chris Wilsonbc4237e2018-06-28 21:12:07 +01001047 } while (head != tail);
Tvrtko Ursulin26720ab2016-03-17 12:59:46 +00001048
Chris Wilsonbc4237e2018-06-28 21:12:07 +01001049 execlists->csb_head = head;
Chris Wilson73377db2018-05-16 19:33:53 +01001050}
1051
Chris Wilson9512f982018-06-28 21:12:11 +01001052static void __execlists_submission_tasklet(struct intel_engine_cs *const engine)
Chris Wilson73377db2018-05-16 19:33:53 +01001053{
Chris Wilson9512f982018-06-28 21:12:11 +01001054 lockdep_assert_held(&engine->timeline.lock);
Chris Wilson73377db2018-05-16 19:33:53 +01001055
Chris Wilsonfd8526e2018-06-28 21:12:10 +01001056 process_csb(engine);
Chris Wilson73377db2018-05-16 19:33:53 +01001057 if (!execlists_is_active(&engine->execlists, EXECLISTS_ACTIVE_PREEMPT))
Chris Wilson70c2a242016-09-09 14:11:46 +01001058 execlists_dequeue(engine);
Thomas Daniele981e7b2014-07-24 17:04:39 +01001059}
1060
Chris Wilson9512f982018-06-28 21:12:11 +01001061/*
1062 * Check the unread Context Status Buffers and manage the submission of new
1063 * contexts to the ELSP accordingly.
1064 */
1065static void execlists_submission_tasklet(unsigned long data)
1066{
1067 struct intel_engine_cs * const engine = (struct intel_engine_cs *)data;
1068 unsigned long flags;
1069
1070 GEM_TRACE("%s awake?=%d, active=%x\n",
1071 engine->name,
1072 engine->i915->gt.awake,
1073 engine->execlists.active);
1074
1075 spin_lock_irqsave(&engine->timeline.lock, flags);
Chris Wilsond78d3342018-07-19 08:50:29 +01001076 __execlists_submission_tasklet(engine);
Chris Wilson9512f982018-06-28 21:12:11 +01001077 spin_unlock_irqrestore(&engine->timeline.lock, flags);
1078}
1079
Chris Wilsonf6322ed2018-02-22 14:22:29 +00001080static void queue_request(struct intel_engine_cs *engine,
Chris Wilson0c7112a2018-04-18 19:40:51 +01001081 struct i915_sched_node *node,
Chris Wilsonf6322ed2018-02-22 14:22:29 +00001082 int prio)
Chris Wilson27606fd2017-09-16 21:44:13 +01001083{
Chris Wilson0c7112a2018-04-18 19:40:51 +01001084 list_add_tail(&node->link,
Chris Wilson87c7acf2018-05-08 01:30:45 +01001085 &lookup_priolist(engine, prio)->requests);
Chris Wilsonf6322ed2018-02-22 14:22:29 +00001086}
Chris Wilson27606fd2017-09-16 21:44:13 +01001087
Chris Wilson9512f982018-06-28 21:12:11 +01001088static void __update_queue(struct intel_engine_cs *engine, int prio)
Chris Wilsonae2f5c02018-03-26 12:50:34 +01001089{
1090 engine->execlists.queue_priority = prio;
Chris Wilson9512f982018-06-28 21:12:11 +01001091}
1092
1093static void __submit_queue_imm(struct intel_engine_cs *engine)
1094{
1095 struct intel_engine_execlists * const execlists = &engine->execlists;
1096
1097 if (reset_in_progress(execlists))
1098 return; /* defer until we restart the engine following reset */
1099
1100 if (execlists->tasklet.func == execlists_submission_tasklet)
1101 __execlists_submission_tasklet(engine);
1102 else
1103 tasklet_hi_schedule(&execlists->tasklet);
Chris Wilsonae2f5c02018-03-26 12:50:34 +01001104}
1105
Chris Wilsonf6322ed2018-02-22 14:22:29 +00001106static void submit_queue(struct intel_engine_cs *engine, int prio)
1107{
Chris Wilson9512f982018-06-28 21:12:11 +01001108 if (prio > engine->execlists.queue_priority) {
1109 __update_queue(engine, prio);
1110 __submit_queue_imm(engine);
1111 }
Chris Wilson27606fd2017-09-16 21:44:13 +01001112}
1113
Chris Wilsone61e0f52018-02-21 09:56:36 +00001114static void execlists_submit_request(struct i915_request *request)
Michel Thierryacdd8842014-07-24 17:04:38 +01001115{
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +00001116 struct intel_engine_cs *engine = request->engine;
Chris Wilson5590af32016-09-09 14:11:54 +01001117 unsigned long flags;
Michel Thierryacdd8842014-07-24 17:04:38 +01001118
Chris Wilson663f71e2016-11-14 20:41:00 +00001119 /* Will be called from irq-context when using foreign fences. */
Chris Wilsona89d1f92018-05-02 17:38:39 +01001120 spin_lock_irqsave(&engine->timeline.lock, flags);
Michel Thierryacdd8842014-07-24 17:04:38 +01001121
Chris Wilson0c7112a2018-04-18 19:40:51 +01001122 queue_request(engine, &request->sched, rq_prio(request));
Michel Thierryacdd8842014-07-24 17:04:38 +01001123
Chris Wilson655250a2018-06-29 08:53:20 +01001124 GEM_BUG_ON(RB_EMPTY_ROOT(&engine->execlists.queue.rb_root));
Chris Wilson0c7112a2018-04-18 19:40:51 +01001125 GEM_BUG_ON(list_empty(&request->sched.link));
Chris Wilson6c067572017-05-17 13:10:03 +01001126
Chris Wilson9512f982018-06-28 21:12:11 +01001127 submit_queue(engine, rq_prio(request));
1128
Chris Wilsona89d1f92018-05-02 17:38:39 +01001129 spin_unlock_irqrestore(&engine->timeline.lock, flags);
Michel Thierryacdd8842014-07-24 17:04:38 +01001130}
1131
Chris Wilson0c7112a2018-04-18 19:40:51 +01001132static struct i915_request *sched_to_request(struct i915_sched_node *node)
Chris Wilson1f181222017-10-03 21:34:50 +01001133{
Chris Wilson0c7112a2018-04-18 19:40:51 +01001134 return container_of(node, struct i915_request, sched);
Chris Wilson1f181222017-10-03 21:34:50 +01001135}
1136
Chris Wilson20311bd2016-11-14 20:41:03 +00001137static struct intel_engine_cs *
Chris Wilson0c7112a2018-04-18 19:40:51 +01001138sched_lock_engine(struct i915_sched_node *node, struct intel_engine_cs *locked)
Chris Wilson20311bd2016-11-14 20:41:03 +00001139{
Chris Wilson0c7112a2018-04-18 19:40:51 +01001140 struct intel_engine_cs *engine = sched_to_request(node)->engine;
Chris Wilson20311bd2016-11-14 20:41:03 +00001141
Chris Wilsona79a5242017-03-27 21:21:43 +01001142 GEM_BUG_ON(!locked);
1143
Chris Wilson20311bd2016-11-14 20:41:03 +00001144 if (engine != locked) {
Chris Wilsona89d1f92018-05-02 17:38:39 +01001145 spin_unlock(&locked->timeline.lock);
1146 spin_lock(&engine->timeline.lock);
Chris Wilson20311bd2016-11-14 20:41:03 +00001147 }
1148
1149 return engine;
1150}
1151
Chris Wilsonb7268c52018-04-18 19:40:52 +01001152static void execlists_schedule(struct i915_request *request,
1153 const struct i915_sched_attr *attr)
Chris Wilson20311bd2016-11-14 20:41:03 +00001154{
Chris Wilsona02eb972018-05-08 01:30:46 +01001155 struct i915_priolist *uninitialized_var(pl);
1156 struct intel_engine_cs *engine, *last;
Chris Wilson20311bd2016-11-14 20:41:03 +00001157 struct i915_dependency *dep, *p;
1158 struct i915_dependency stack;
Chris Wilsonb7268c52018-04-18 19:40:52 +01001159 const int prio = attr->priority;
Chris Wilson20311bd2016-11-14 20:41:03 +00001160 LIST_HEAD(dfs);
1161
Chris Wilson7d1ea602017-09-28 20:39:00 +01001162 GEM_BUG_ON(prio == I915_PRIORITY_INVALID);
1163
Chris Wilsone61e0f52018-02-21 09:56:36 +00001164 if (i915_request_completed(request))
Chris Wilsonc218ee02018-01-06 10:56:18 +00001165 return;
1166
Chris Wilsonb7268c52018-04-18 19:40:52 +01001167 if (prio <= READ_ONCE(request->sched.attr.priority))
Chris Wilson20311bd2016-11-14 20:41:03 +00001168 return;
1169
Chris Wilson70cd1472016-11-28 14:36:49 +00001170 /* Need BKL in order to use the temporary link inside i915_dependency */
1171 lockdep_assert_held(&request->i915->drm.struct_mutex);
Chris Wilson20311bd2016-11-14 20:41:03 +00001172
Chris Wilson0c7112a2018-04-18 19:40:51 +01001173 stack.signaler = &request->sched;
Chris Wilson20311bd2016-11-14 20:41:03 +00001174 list_add(&stack.dfs_link, &dfs);
1175
Chris Wilsonce01b172018-01-02 15:12:26 +00001176 /*
1177 * Recursively bump all dependent priorities to match the new request.
Chris Wilson20311bd2016-11-14 20:41:03 +00001178 *
1179 * A naive approach would be to use recursion:
Chris Wilson0c7112a2018-04-18 19:40:51 +01001180 * static void update_priorities(struct i915_sched_node *node, prio) {
1181 * list_for_each_entry(dep, &node->signalers_list, signal_link)
Chris Wilson20311bd2016-11-14 20:41:03 +00001182 * update_priorities(dep->signal, prio)
Chris Wilson0c7112a2018-04-18 19:40:51 +01001183 * queue_request(node);
Chris Wilson20311bd2016-11-14 20:41:03 +00001184 * }
1185 * but that may have unlimited recursion depth and so runs a very
1186 * real risk of overunning the kernel stack. Instead, we build
1187 * a flat list of all dependencies starting with the current request.
1188 * As we walk the list of dependencies, we add all of its dependencies
1189 * to the end of the list (this may include an already visited
1190 * request) and continue to walk onwards onto the new dependencies. The
1191 * end result is a topological list of requests in reverse order, the
1192 * last element in the list is the request we must execute first.
1193 */
Chris Wilson2221c5b2018-01-02 15:12:27 +00001194 list_for_each_entry(dep, &dfs, dfs_link) {
Chris Wilson0c7112a2018-04-18 19:40:51 +01001195 struct i915_sched_node *node = dep->signaler;
Chris Wilson20311bd2016-11-14 20:41:03 +00001196
Chris Wilsonce01b172018-01-02 15:12:26 +00001197 /*
1198 * Within an engine, there can be no cycle, but we may
Chris Wilsona79a5242017-03-27 21:21:43 +01001199 * refer to the same dependency chain multiple times
1200 * (redundant dependencies are not eliminated) and across
1201 * engines.
1202 */
Chris Wilson0c7112a2018-04-18 19:40:51 +01001203 list_for_each_entry(p, &node->signalers_list, signal_link) {
Chris Wilsonce01b172018-01-02 15:12:26 +00001204 GEM_BUG_ON(p == dep); /* no cycles! */
1205
Chris Wilson0c7112a2018-04-18 19:40:51 +01001206 if (i915_sched_node_signaled(p->signaler))
Chris Wilson1f181222017-10-03 21:34:50 +01001207 continue;
1208
Chris Wilsonb7268c52018-04-18 19:40:52 +01001209 GEM_BUG_ON(p->signaler->attr.priority < node->attr.priority);
1210 if (prio > READ_ONCE(p->signaler->attr.priority))
Chris Wilson20311bd2016-11-14 20:41:03 +00001211 list_move_tail(&p->dfs_link, &dfs);
Chris Wilsona79a5242017-03-27 21:21:43 +01001212 }
Chris Wilson20311bd2016-11-14 20:41:03 +00001213 }
1214
Chris Wilsonce01b172018-01-02 15:12:26 +00001215 /*
1216 * If we didn't need to bump any existing priorities, and we haven't
Chris Wilson349bdb62017-05-17 13:10:05 +01001217 * yet submitted this request (i.e. there is no potential race with
1218 * execlists_submit_request()), we can set our own priority and skip
1219 * acquiring the engine locks.
1220 */
Chris Wilsonb7268c52018-04-18 19:40:52 +01001221 if (request->sched.attr.priority == I915_PRIORITY_INVALID) {
Chris Wilson0c7112a2018-04-18 19:40:51 +01001222 GEM_BUG_ON(!list_empty(&request->sched.link));
Chris Wilsonb7268c52018-04-18 19:40:52 +01001223 request->sched.attr = *attr;
Chris Wilson349bdb62017-05-17 13:10:05 +01001224 if (stack.dfs_link.next == stack.dfs_link.prev)
1225 return;
1226 __list_del_entry(&stack.dfs_link);
1227 }
1228
Chris Wilsona02eb972018-05-08 01:30:46 +01001229 last = NULL;
Chris Wilsona79a5242017-03-27 21:21:43 +01001230 engine = request->engine;
Chris Wilsona89d1f92018-05-02 17:38:39 +01001231 spin_lock_irq(&engine->timeline.lock);
Chris Wilsona79a5242017-03-27 21:21:43 +01001232
Chris Wilson20311bd2016-11-14 20:41:03 +00001233 /* Fifo and depth-first replacement ensure our deps execute before us */
1234 list_for_each_entry_safe_reverse(dep, p, &dfs, dfs_link) {
Chris Wilson0c7112a2018-04-18 19:40:51 +01001235 struct i915_sched_node *node = dep->signaler;
Chris Wilson20311bd2016-11-14 20:41:03 +00001236
1237 INIT_LIST_HEAD(&dep->dfs_link);
1238
Chris Wilson0c7112a2018-04-18 19:40:51 +01001239 engine = sched_lock_engine(node, engine);
Chris Wilson20311bd2016-11-14 20:41:03 +00001240
Chris Wilsonb7268c52018-04-18 19:40:52 +01001241 if (prio <= node->attr.priority)
Chris Wilson20311bd2016-11-14 20:41:03 +00001242 continue;
1243
Chris Wilsonb7268c52018-04-18 19:40:52 +01001244 node->attr.priority = prio;
Chris Wilson0c7112a2018-04-18 19:40:51 +01001245 if (!list_empty(&node->link)) {
Chris Wilsona02eb972018-05-08 01:30:46 +01001246 if (last != engine) {
1247 pl = lookup_priolist(engine, prio);
1248 last = engine;
1249 }
1250 GEM_BUG_ON(pl->priority != prio);
1251 list_move_tail(&node->link, &pl->requests);
Chris Wilsona79a5242017-03-27 21:21:43 +01001252 }
Chris Wilsonae2f5c02018-03-26 12:50:34 +01001253
1254 if (prio > engine->execlists.queue_priority &&
Chris Wilson9512f982018-06-28 21:12:11 +01001255 i915_sw_fence_done(&sched_to_request(node)->submit)) {
1256 /* defer submission until after all of our updates */
1257 __update_queue(engine, prio);
1258 tasklet_hi_schedule(&engine->execlists.tasklet);
1259 }
Chris Wilson20311bd2016-11-14 20:41:03 +00001260 }
1261
Chris Wilsona89d1f92018-05-02 17:38:39 +01001262 spin_unlock_irq(&engine->timeline.lock);
Chris Wilson20311bd2016-11-14 20:41:03 +00001263}
1264
Chris Wilson1fc44d92018-05-17 22:26:32 +01001265static void execlists_context_destroy(struct intel_context *ce)
1266{
Chris Wilson1fc44d92018-05-17 22:26:32 +01001267 GEM_BUG_ON(ce->pin_count);
1268
Chris Wilsondd12c6c2018-06-25 11:06:03 +01001269 if (!ce->state)
1270 return;
1271
Chris Wilson1fc44d92018-05-17 22:26:32 +01001272 intel_ring_free(ce->ring);
Chris Wilsonefe79d42018-06-25 11:06:04 +01001273
1274 GEM_BUG_ON(i915_gem_object_is_active(ce->state->obj));
1275 i915_gem_object_put(ce->state->obj);
Chris Wilson1fc44d92018-05-17 22:26:32 +01001276}
1277
Chris Wilson867985d2018-05-17 22:26:33 +01001278static void execlists_context_unpin(struct intel_context *ce)
Chris Wilson1fc44d92018-05-17 22:26:32 +01001279{
1280 intel_ring_unpin(ce->ring);
1281
1282 ce->state->obj->pin_global--;
1283 i915_gem_object_unpin_map(ce->state->obj);
1284 i915_vma_unpin(ce->state);
1285
1286 i915_gem_context_put(ce->gem_context);
1287}
1288
Chris Wilsonf4e15af2017-11-10 14:26:32 +00001289static int __context_pin(struct i915_gem_context *ctx, struct i915_vma *vma)
1290{
1291 unsigned int flags;
1292 int err;
1293
1294 /*
1295 * Clear this page out of any CPU caches for coherent swap-in/out.
1296 * We only want to do this on the first bind so that we do not stall
1297 * on an active context (which by nature is already on the GPU).
1298 */
1299 if (!(vma->flags & I915_VMA_GLOBAL_BIND)) {
1300 err = i915_gem_object_set_to_gtt_domain(vma->obj, true);
1301 if (err)
1302 return err;
1303 }
1304
1305 flags = PIN_GLOBAL | PIN_HIGH;
1306 if (ctx->ggtt_offset_bias)
1307 flags |= PIN_OFFSET_BIAS | ctx->ggtt_offset_bias;
1308
1309 return i915_vma_pin(vma, 0, GEN8_LR_CONTEXT_ALIGN, flags);
1310}
1311
Chris Wilson1fc44d92018-05-17 22:26:32 +01001312static struct intel_context *
1313__execlists_context_pin(struct intel_engine_cs *engine,
1314 struct i915_gem_context *ctx,
1315 struct intel_context *ce)
Oscar Mateodcb4c122014-11-13 10:28:10 +00001316{
Tvrtko Ursulin7d774ca2016-04-12 15:40:42 +01001317 void *vaddr;
Tvrtko Ursulinca825802016-01-15 15:10:27 +00001318 int ret;
Oscar Mateodcb4c122014-11-13 10:28:10 +00001319
Chris Wilson1fc44d92018-05-17 22:26:32 +01001320 ret = execlists_context_deferred_alloc(ctx, engine, ce);
Chris Wilson1d2a19c2018-01-26 12:18:46 +00001321 if (ret)
1322 goto err;
Chris Wilson56f6e0a2017-01-05 15:30:20 +00001323 GEM_BUG_ON(!ce->state);
Chris Wilsone8a9c582016-12-18 15:37:20 +00001324
Chris Wilsonf4e15af2017-11-10 14:26:32 +00001325 ret = __context_pin(ctx, ce->state);
Nick Hoathe84fe802015-09-11 12:53:46 +01001326 if (ret)
Chris Wilson24f1d3c2016-04-28 09:56:53 +01001327 goto err;
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001328
Chris Wilsonbf3783e2016-08-15 10:48:54 +01001329 vaddr = i915_gem_object_pin_map(ce->state->obj, I915_MAP_WB);
Tvrtko Ursulin7d774ca2016-04-12 15:40:42 +01001330 if (IS_ERR(vaddr)) {
1331 ret = PTR_ERR(vaddr);
Chris Wilsonbf3783e2016-08-15 10:48:54 +01001332 goto unpin_vma;
Tvrtko Ursulin82352e92016-01-15 17:12:45 +00001333 }
1334
Chris Wilsond822bb12017-04-03 12:34:25 +01001335 ret = intel_ring_pin(ce->ring, ctx->i915, ctx->ggtt_offset_bias);
Nick Hoathe84fe802015-09-11 12:53:46 +01001336 if (ret)
Tvrtko Ursulin7d774ca2016-04-12 15:40:42 +01001337 goto unpin_map;
Alex Daid1675192015-08-12 15:43:43 +01001338
Chris Wilson1fc44d92018-05-17 22:26:32 +01001339 intel_lr_context_descriptor_update(ctx, engine, ce);
Chris Wilson9021ad02016-05-24 14:53:37 +01001340
Chris Wilsona3aabe82016-10-04 21:11:26 +01001341 ce->lrc_reg_state = vaddr + LRC_STATE_PN * PAGE_SIZE;
1342 ce->lrc_reg_state[CTX_RING_BUFFER_START+1] =
Chris Wilsonbde13eb2016-08-15 10:49:07 +01001343 i915_ggtt_offset(ce->ring->vma);
Chris Wilson41d37682018-06-11 12:08:45 +01001344 GEM_BUG_ON(!intel_ring_offset_valid(ce->ring, ce->ring->head));
Chris Wilsonc216e902018-03-27 22:01:36 +01001345 ce->lrc_reg_state[CTX_RING_HEAD+1] = ce->ring->head;
Chris Wilsona3aabe82016-10-04 21:11:26 +01001346
Chris Wilson3d574a62017-10-13 21:26:16 +01001347 ce->state->obj->pin_global++;
Chris Wilson9a6feaf2016-07-20 13:31:50 +01001348 i915_gem_context_get(ctx);
Chris Wilson1fc44d92018-05-17 22:26:32 +01001349 return ce;
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001350
Tvrtko Ursulin7d774ca2016-04-12 15:40:42 +01001351unpin_map:
Chris Wilsonbf3783e2016-08-15 10:48:54 +01001352 i915_gem_object_unpin_map(ce->state->obj);
1353unpin_vma:
1354 __i915_vma_unpin(ce->state);
Chris Wilson24f1d3c2016-04-28 09:56:53 +01001355err:
Chris Wilson9021ad02016-05-24 14:53:37 +01001356 ce->pin_count = 0;
Chris Wilson266a2402017-05-04 10:33:08 +01001357 return ERR_PTR(ret);
Oscar Mateodcb4c122014-11-13 10:28:10 +00001358}
1359
Chris Wilson1fc44d92018-05-17 22:26:32 +01001360static const struct intel_context_ops execlists_context_ops = {
1361 .unpin = execlists_context_unpin,
1362 .destroy = execlists_context_destroy,
1363};
1364
1365static struct intel_context *
1366execlists_context_pin(struct intel_engine_cs *engine,
1367 struct i915_gem_context *ctx)
Oscar Mateodcb4c122014-11-13 10:28:10 +00001368{
Chris Wilsonab82a062018-04-30 14:15:01 +01001369 struct intel_context *ce = to_intel_context(ctx, engine);
Daniel Vetteraf3302b2015-12-04 17:27:15 +01001370
Chris Wilson91c8a322016-07-05 10:40:23 +01001371 lockdep_assert_held(&ctx->i915->drm.struct_mutex);
Tvrtko Ursulin321fe302016-01-28 10:29:55 +00001372
Chris Wilson1fc44d92018-05-17 22:26:32 +01001373 if (likely(ce->pin_count++))
1374 return ce;
1375 GEM_BUG_ON(!ce->pin_count); /* no overflow please! */
Chris Wilson24f1d3c2016-04-28 09:56:53 +01001376
Chris Wilson1fc44d92018-05-17 22:26:32 +01001377 ce->ops = &execlists_context_ops;
Chris Wilson24f1d3c2016-04-28 09:56:53 +01001378
Chris Wilson1fc44d92018-05-17 22:26:32 +01001379 return __execlists_context_pin(engine, ctx, ce);
Oscar Mateodcb4c122014-11-13 10:28:10 +00001380}
1381
Chris Wilsone61e0f52018-02-21 09:56:36 +00001382static int execlists_request_alloc(struct i915_request *request)
Chris Wilsonef11c012016-12-18 15:37:19 +00001383{
Chris Wilsonfd138212017-11-15 15:12:04 +00001384 int ret;
Chris Wilsonef11c012016-12-18 15:37:19 +00001385
Chris Wilson1fc44d92018-05-17 22:26:32 +01001386 GEM_BUG_ON(!request->hw_context->pin_count);
Chris Wilsone8a9c582016-12-18 15:37:20 +00001387
Chris Wilsonef11c012016-12-18 15:37:19 +00001388 /* Flush enough space to reduce the likelihood of waiting after
1389 * we start building the request - in which case we will just
1390 * have to repeat work.
1391 */
1392 request->reserved_space += EXECLISTS_REQUEST_SIZE;
1393
Chris Wilsonfd138212017-11-15 15:12:04 +00001394 ret = intel_ring_wait_for_space(request->ring, request->reserved_space);
1395 if (ret)
1396 return ret;
Chris Wilsonef11c012016-12-18 15:37:19 +00001397
Chris Wilsonef11c012016-12-18 15:37:19 +00001398 /* Note that after this point, we have committed to using
1399 * this request as it is being used to both track the
1400 * state of engine initialisation and liveness of the
1401 * golden renderstate above. Think twice before you try
1402 * to cancel/unwind this request now.
1403 */
1404
1405 request->reserved_space -= EXECLISTS_REQUEST_SIZE;
1406 return 0;
Chris Wilsonef11c012016-12-18 15:37:19 +00001407}
1408
Arun Siluvery9e000842015-07-03 14:27:31 +01001409/*
1410 * In this WA we need to set GEN8_L3SQCREG4[21:21] and reset it after
1411 * PIPE_CONTROL instruction. This is required for the flush to happen correctly
1412 * but there is a slight complication as this is applied in WA batch where the
1413 * values are only initialized once so we cannot take register value at the
1414 * beginning and reuse it further; hence we save its value to memory, upload a
1415 * constant value with bit21 set and then we restore it back with the saved value.
1416 * To simplify the WA, a constant value is formed by using the default value
1417 * of this register. This shouldn't be a problem because we are only modifying
1418 * it for a short period and this batch in non-premptible. We can ofcourse
1419 * use additional instructions that read the actual value of the register
1420 * at that time and set our bit of interest but it makes the WA complicated.
1421 *
1422 * This WA is also required for Gen9 so extracting as a function avoids
1423 * code duplication.
1424 */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001425static u32 *
1426gen8_emit_flush_coherentl3_wa(struct intel_engine_cs *engine, u32 *batch)
Arun Siluvery9e000842015-07-03 14:27:31 +01001427{
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001428 *batch++ = MI_STORE_REGISTER_MEM_GEN8 | MI_SRM_LRM_GLOBAL_GTT;
1429 *batch++ = i915_mmio_reg_offset(GEN8_L3SQCREG4);
1430 *batch++ = i915_ggtt_offset(engine->scratch) + 256;
1431 *batch++ = 0;
Arun Siluvery9e000842015-07-03 14:27:31 +01001432
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001433 *batch++ = MI_LOAD_REGISTER_IMM(1);
1434 *batch++ = i915_mmio_reg_offset(GEN8_L3SQCREG4);
1435 *batch++ = 0x40400000 | GEN8_LQSC_FLUSH_COHERENT_LINES;
Arun Siluvery9e000842015-07-03 14:27:31 +01001436
Tvrtko Ursulin9f235df2017-02-16 12:23:25 +00001437 batch = gen8_emit_pipe_control(batch,
1438 PIPE_CONTROL_CS_STALL |
1439 PIPE_CONTROL_DC_FLUSH_ENABLE,
1440 0);
Arun Siluvery9e000842015-07-03 14:27:31 +01001441
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001442 *batch++ = MI_LOAD_REGISTER_MEM_GEN8 | MI_SRM_LRM_GLOBAL_GTT;
1443 *batch++ = i915_mmio_reg_offset(GEN8_L3SQCREG4);
1444 *batch++ = i915_ggtt_offset(engine->scratch) + 256;
1445 *batch++ = 0;
Arun Siluvery9e000842015-07-03 14:27:31 +01001446
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001447 return batch;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001448}
1449
Daniel Vetter6e5248b2016-07-15 21:48:06 +02001450/*
1451 * Typically we only have one indirect_ctx and per_ctx batch buffer which are
1452 * initialized at the beginning and shared across all contexts but this field
1453 * helps us to have multiple batches at different offsets and select them based
1454 * on a criteria. At the moment this batch always start at the beginning of the page
1455 * and at this point we don't have multiple wa_ctx batch buffers.
Arun Siluvery17ee9502015-06-19 19:07:01 +01001456 *
Daniel Vetter6e5248b2016-07-15 21:48:06 +02001457 * The number of WA applied are not known at the beginning; we use this field
1458 * to return the no of DWORDS written.
Arun Siluvery17ee9502015-06-19 19:07:01 +01001459 *
Daniel Vetter6e5248b2016-07-15 21:48:06 +02001460 * It is to be noted that this batch does not contain MI_BATCH_BUFFER_END
1461 * so it adds NOOPs as padding to make it cacheline aligned.
1462 * MI_BATCH_BUFFER_END will be added to perctx batch and both of them together
1463 * makes a complete batch buffer.
Arun Siluvery17ee9502015-06-19 19:07:01 +01001464 */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001465static u32 *gen8_init_indirectctx_bb(struct intel_engine_cs *engine, u32 *batch)
Arun Siluvery17ee9502015-06-19 19:07:01 +01001466{
Arun Siluvery7ad00d12015-06-19 18:37:12 +01001467 /* WaDisableCtxRestoreArbitration:bdw,chv */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001468 *batch++ = MI_ARB_ON_OFF | MI_ARB_DISABLE;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001469
Arun Siluveryc82435b2015-06-19 18:37:13 +01001470 /* WaFlushCoherentL3CacheLinesAtContextSwitch:bdw */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001471 if (IS_BROADWELL(engine->i915))
1472 batch = gen8_emit_flush_coherentl3_wa(engine, batch);
Arun Siluveryc82435b2015-06-19 18:37:13 +01001473
Arun Siluvery0160f052015-06-23 15:46:57 +01001474 /* WaClearSlmSpaceAtContextSwitch:bdw,chv */
1475 /* Actual scratch location is at 128 bytes offset */
Tvrtko Ursulin9f235df2017-02-16 12:23:25 +00001476 batch = gen8_emit_pipe_control(batch,
1477 PIPE_CONTROL_FLUSH_L3 |
1478 PIPE_CONTROL_GLOBAL_GTT_IVB |
1479 PIPE_CONTROL_CS_STALL |
1480 PIPE_CONTROL_QW_WRITE,
1481 i915_ggtt_offset(engine->scratch) +
1482 2 * CACHELINE_BYTES);
Arun Siluvery0160f052015-06-23 15:46:57 +01001483
Chris Wilsonbeecec92017-10-03 21:34:52 +01001484 *batch++ = MI_ARB_ON_OFF | MI_ARB_ENABLE;
1485
Arun Siluvery17ee9502015-06-19 19:07:01 +01001486 /* Pad to end of cacheline */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001487 while ((unsigned long)batch % CACHELINE_BYTES)
1488 *batch++ = MI_NOOP;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001489
1490 /*
1491 * MI_BATCH_BUFFER_END is not required in Indirect ctx BB because
1492 * execution depends on the length specified in terms of cache lines
1493 * in the register CTX_RCS_INDIRECT_CTX
1494 */
1495
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001496 return batch;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001497}
1498
Chris Wilson5ee4a7a2018-06-18 10:41:50 +01001499struct lri {
1500 i915_reg_t reg;
1501 u32 value;
1502};
1503
1504static u32 *emit_lri(u32 *batch, const struct lri *lri, unsigned int count)
1505{
1506 GEM_BUG_ON(!count || count > 63);
1507
1508 *batch++ = MI_LOAD_REGISTER_IMM(count);
1509 do {
1510 *batch++ = i915_mmio_reg_offset(lri->reg);
1511 *batch++ = lri->value;
1512 } while (lri++, --count);
1513 *batch++ = MI_NOOP;
1514
1515 return batch;
1516}
1517
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001518static u32 *gen9_init_indirectctx_bb(struct intel_engine_cs *engine, u32 *batch)
Arun Siluvery0504cff2015-07-14 15:01:27 +01001519{
Chris Wilson5ee4a7a2018-06-18 10:41:50 +01001520 static const struct lri lri[] = {
1521 /* WaDisableGatherAtSetShaderCommonSlice:skl,bxt,kbl,glk */
1522 {
1523 COMMON_SLICE_CHICKEN2,
1524 __MASKED_FIELD(GEN9_DISABLE_GATHER_AT_SET_SHADER_COMMON_SLICE,
1525 0),
1526 },
1527
1528 /* BSpec: 11391 */
1529 {
1530 FF_SLICE_CHICKEN,
1531 __MASKED_FIELD(FF_SLICE_CHICKEN_CL_PROVOKING_VERTEX_FIX,
1532 FF_SLICE_CHICKEN_CL_PROVOKING_VERTEX_FIX),
1533 },
1534
1535 /* BSpec: 11299 */
1536 {
1537 _3D_CHICKEN3,
1538 __MASKED_FIELD(_3D_CHICKEN_SF_PROVOKING_VERTEX_FIX,
1539 _3D_CHICKEN_SF_PROVOKING_VERTEX_FIX),
1540 }
1541 };
1542
Chris Wilsonbeecec92017-10-03 21:34:52 +01001543 *batch++ = MI_ARB_ON_OFF | MI_ARB_DISABLE;
1544
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02001545 /* WaFlushCoherentL3CacheLinesAtContextSwitch:skl,bxt,glk */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001546 batch = gen8_emit_flush_coherentl3_wa(engine, batch);
Arun Siluverya4106a72015-07-14 15:01:29 +01001547
Chris Wilson5ee4a7a2018-06-18 10:41:50 +01001548 batch = emit_lri(batch, lri, ARRAY_SIZE(lri));
Mika Kuoppala873e8172016-07-20 14:26:13 +03001549
Mika Kuoppala066d4622016-06-07 17:19:15 +03001550 /* WaClearSlmSpaceAtContextSwitch:kbl */
1551 /* Actual scratch location is at 128 bytes offset */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001552 if (IS_KBL_REVID(engine->i915, 0, KBL_REVID_A0)) {
Tvrtko Ursulin9f235df2017-02-16 12:23:25 +00001553 batch = gen8_emit_pipe_control(batch,
1554 PIPE_CONTROL_FLUSH_L3 |
1555 PIPE_CONTROL_GLOBAL_GTT_IVB |
1556 PIPE_CONTROL_CS_STALL |
1557 PIPE_CONTROL_QW_WRITE,
1558 i915_ggtt_offset(engine->scratch)
1559 + 2 * CACHELINE_BYTES);
Mika Kuoppala066d4622016-06-07 17:19:15 +03001560 }
Tim Gore3485d992016-07-05 10:01:30 +01001561
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02001562 /* WaMediaPoolStateCmdInWABB:bxt,glk */
Tim Gore3485d992016-07-05 10:01:30 +01001563 if (HAS_POOLED_EU(engine->i915)) {
1564 /*
1565 * EU pool configuration is setup along with golden context
1566 * during context initialization. This value depends on
1567 * device type (2x6 or 3x6) and needs to be updated based
1568 * on which subslice is disabled especially for 2x6
1569 * devices, however it is safe to load default
1570 * configuration of 3x6 device instead of masking off
1571 * corresponding bits because HW ignores bits of a disabled
1572 * subslice and drops down to appropriate config. Please
1573 * see render_state_setup() in i915_gem_render_state.c for
1574 * possible configurations, to avoid duplication they are
1575 * not shown here again.
1576 */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001577 *batch++ = GEN9_MEDIA_POOL_STATE;
1578 *batch++ = GEN9_MEDIA_POOL_ENABLE;
1579 *batch++ = 0x00777000;
1580 *batch++ = 0;
1581 *batch++ = 0;
1582 *batch++ = 0;
Tim Gore3485d992016-07-05 10:01:30 +01001583 }
1584
Chris Wilsonbeecec92017-10-03 21:34:52 +01001585 *batch++ = MI_ARB_ON_OFF | MI_ARB_ENABLE;
1586
Arun Siluvery0504cff2015-07-14 15:01:27 +01001587 /* Pad to end of cacheline */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001588 while ((unsigned long)batch % CACHELINE_BYTES)
1589 *batch++ = MI_NOOP;
Arun Siluvery0504cff2015-07-14 15:01:27 +01001590
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001591 return batch;
Arun Siluvery0504cff2015-07-14 15:01:27 +01001592}
1593
Rafael Antognolli4b6ce682018-02-05 15:33:30 -08001594static u32 *
1595gen10_init_indirectctx_bb(struct intel_engine_cs *engine, u32 *batch)
1596{
1597 int i;
1598
1599 /*
1600 * WaPipeControlBefore3DStateSamplePattern: cnl
1601 *
1602 * Ensure the engine is idle prior to programming a
1603 * 3DSTATE_SAMPLE_PATTERN during a context restore.
1604 */
1605 batch = gen8_emit_pipe_control(batch,
1606 PIPE_CONTROL_CS_STALL,
1607 0);
1608 /*
1609 * WaPipeControlBefore3DStateSamplePattern says we need 4 dwords for
1610 * the PIPE_CONTROL followed by 12 dwords of 0x0, so 16 dwords in
1611 * total. However, a PIPE_CONTROL is 6 dwords long, not 4, which is
1612 * confusing. Since gen8_emit_pipe_control() already advances the
1613 * batch by 6 dwords, we advance the other 10 here, completing a
1614 * cacheline. It's not clear if the workaround requires this padding
1615 * before other commands, or if it's just the regular padding we would
1616 * already have for the workaround bb, so leave it here for now.
1617 */
1618 for (i = 0; i < 10; i++)
1619 *batch++ = MI_NOOP;
1620
1621 /* Pad to end of cacheline */
1622 while ((unsigned long)batch % CACHELINE_BYTES)
1623 *batch++ = MI_NOOP;
1624
1625 return batch;
1626}
1627
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001628#define CTX_WA_BB_OBJ_SIZE (PAGE_SIZE)
1629
1630static int lrc_setup_wa_ctx(struct intel_engine_cs *engine)
Arun Siluvery17ee9502015-06-19 19:07:01 +01001631{
Chris Wilson48bb74e2016-08-15 10:49:04 +01001632 struct drm_i915_gem_object *obj;
1633 struct i915_vma *vma;
1634 int err;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001635
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001636 obj = i915_gem_object_create(engine->i915, CTX_WA_BB_OBJ_SIZE);
Chris Wilson48bb74e2016-08-15 10:49:04 +01001637 if (IS_ERR(obj))
1638 return PTR_ERR(obj);
1639
Chris Wilson82ad6442018-06-05 16:37:58 +01001640 vma = i915_vma_instance(obj, &engine->i915->ggtt.vm, NULL);
Chris Wilson48bb74e2016-08-15 10:49:04 +01001641 if (IS_ERR(vma)) {
1642 err = PTR_ERR(vma);
1643 goto err;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001644 }
1645
Chris Wilson7a859c62018-07-27 10:18:55 +01001646 err = i915_vma_pin(vma, 0, 0, PIN_GLOBAL | PIN_HIGH);
Chris Wilson48bb74e2016-08-15 10:49:04 +01001647 if (err)
1648 goto err;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001649
Chris Wilson48bb74e2016-08-15 10:49:04 +01001650 engine->wa_ctx.vma = vma;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001651 return 0;
Chris Wilson48bb74e2016-08-15 10:49:04 +01001652
1653err:
1654 i915_gem_object_put(obj);
1655 return err;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001656}
1657
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001658static void lrc_destroy_wa_ctx(struct intel_engine_cs *engine)
Arun Siluvery17ee9502015-06-19 19:07:01 +01001659{
Chris Wilson6a2f59e2018-07-21 13:50:37 +01001660 i915_vma_unpin_and_release(&engine->wa_ctx.vma, 0);
Arun Siluvery17ee9502015-06-19 19:07:01 +01001661}
1662
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001663typedef u32 *(*wa_bb_func_t)(struct intel_engine_cs *engine, u32 *batch);
1664
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001665static int intel_init_workaround_bb(struct intel_engine_cs *engine)
Arun Siluvery17ee9502015-06-19 19:07:01 +01001666{
Chris Wilson48bb74e2016-08-15 10:49:04 +01001667 struct i915_ctx_workarounds *wa_ctx = &engine->wa_ctx;
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001668 struct i915_wa_ctx_bb *wa_bb[2] = { &wa_ctx->indirect_ctx,
1669 &wa_ctx->per_ctx };
1670 wa_bb_func_t wa_bb_fn[2];
Arun Siluvery17ee9502015-06-19 19:07:01 +01001671 struct page *page;
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001672 void *batch, *batch_ptr;
1673 unsigned int i;
Chris Wilson48bb74e2016-08-15 10:49:04 +01001674 int ret;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001675
Tvrtko Ursulin10bde232018-01-19 10:00:04 +00001676 if (GEM_WARN_ON(engine->id != RCS))
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001677 return -EINVAL;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001678
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001679 switch (INTEL_GEN(engine->i915)) {
Oscar Mateocc38cae2018-05-08 14:29:23 -07001680 case 11:
1681 return 0;
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07001682 case 10:
Rafael Antognolli4b6ce682018-02-05 15:33:30 -08001683 wa_bb_fn[0] = gen10_init_indirectctx_bb;
1684 wa_bb_fn[1] = NULL;
1685 break;
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001686 case 9:
1687 wa_bb_fn[0] = gen9_init_indirectctx_bb;
Chris Wilsonb8aa2232017-09-21 14:54:44 +01001688 wa_bb_fn[1] = NULL;
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001689 break;
1690 case 8:
1691 wa_bb_fn[0] = gen8_init_indirectctx_bb;
Chris Wilson3ad7b522017-10-03 21:34:49 +01001692 wa_bb_fn[1] = NULL;
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001693 break;
1694 default:
1695 MISSING_CASE(INTEL_GEN(engine->i915));
Arun Siluvery5e60d792015-06-23 15:50:44 +01001696 return 0;
Arun Siluvery0504cff2015-07-14 15:01:27 +01001697 }
Arun Siluvery5e60d792015-06-23 15:50:44 +01001698
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001699 ret = lrc_setup_wa_ctx(engine);
Arun Siluvery17ee9502015-06-19 19:07:01 +01001700 if (ret) {
1701 DRM_DEBUG_DRIVER("Failed to setup context WA page: %d\n", ret);
1702 return ret;
1703 }
1704
Chris Wilson48bb74e2016-08-15 10:49:04 +01001705 page = i915_gem_object_get_dirty_page(wa_ctx->vma->obj, 0);
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001706 batch = batch_ptr = kmap_atomic(page);
Arun Siluvery17ee9502015-06-19 19:07:01 +01001707
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001708 /*
1709 * Emit the two workaround batch buffers, recording the offset from the
1710 * start of the workaround batch buffer object for each and their
1711 * respective sizes.
1712 */
1713 for (i = 0; i < ARRAY_SIZE(wa_bb_fn); i++) {
1714 wa_bb[i]->offset = batch_ptr - batch;
Chris Wilson1d2a19c2018-01-26 12:18:46 +00001715 if (GEM_WARN_ON(!IS_ALIGNED(wa_bb[i]->offset,
1716 CACHELINE_BYTES))) {
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001717 ret = -EINVAL;
1718 break;
1719 }
Chris Wilson604a8f62017-09-21 14:54:43 +01001720 if (wa_bb_fn[i])
1721 batch_ptr = wa_bb_fn[i](engine, batch_ptr);
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001722 wa_bb[i]->size = batch_ptr - (batch + wa_bb[i]->offset);
Arun Siluvery17ee9502015-06-19 19:07:01 +01001723 }
1724
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001725 BUG_ON(batch_ptr - batch > CTX_WA_BB_OBJ_SIZE);
1726
Arun Siluvery17ee9502015-06-19 19:07:01 +01001727 kunmap_atomic(batch);
1728 if (ret)
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001729 lrc_destroy_wa_ctx(engine);
Arun Siluvery17ee9502015-06-19 19:07:01 +01001730
1731 return ret;
1732}
1733
Chris Wilsonf3c9d4072018-01-02 15:12:34 +00001734static void enable_execlists(struct intel_engine_cs *engine)
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001735{
Chris Wilsonc0336662016-05-06 15:40:21 +01001736 struct drm_i915_private *dev_priv = engine->i915;
Chris Wilsonf3c9d4072018-01-02 15:12:34 +00001737
1738 I915_WRITE(RING_HWSTAM(engine->mmio_base), 0xffffffff);
Kelvin Gardiner225701f2018-01-30 11:49:17 -02001739
1740 /*
1741 * Make sure we're not enabling the new 12-deep CSB
1742 * FIFO as that requires a slightly updated handling
1743 * in the ctx switch irq. Since we're currently only
1744 * using only 2 elements of the enhanced execlists the
1745 * deeper FIFO it's not needed and it's not worth adding
1746 * more statements to the irq handler to support it.
1747 */
1748 if (INTEL_GEN(dev_priv) >= 11)
1749 I915_WRITE(RING_MODE_GEN7(engine),
1750 _MASKED_BIT_DISABLE(GEN11_GFX_DISABLE_LEGACY_MODE));
1751 else
1752 I915_WRITE(RING_MODE_GEN7(engine),
1753 _MASKED_BIT_ENABLE(GFX_RUN_LIST_ENABLE));
1754
Chris Wilson9a4dc802018-05-18 11:09:33 +01001755 I915_WRITE(RING_MI_MODE(engine->mmio_base),
1756 _MASKED_BIT_DISABLE(STOP_RING));
1757
Chris Wilsonf3c9d4072018-01-02 15:12:34 +00001758 I915_WRITE(RING_HWS_PGA(engine->mmio_base),
1759 engine->status_page.ggtt_offset);
1760 POSTING_READ(RING_HWS_PGA(engine->mmio_base));
1761}
1762
Chris Wilson9a4dc802018-05-18 11:09:33 +01001763static bool unexpected_starting_state(struct intel_engine_cs *engine)
1764{
1765 struct drm_i915_private *dev_priv = engine->i915;
1766 bool unexpected = false;
1767
1768 if (I915_READ(RING_MI_MODE(engine->mmio_base)) & STOP_RING) {
1769 DRM_DEBUG_DRIVER("STOP_RING still set in RING_MI_MODE\n");
1770 unexpected = true;
1771 }
1772
1773 return unexpected;
1774}
1775
Chris Wilsonf3c9d4072018-01-02 15:12:34 +00001776static int gen8_init_common_ring(struct intel_engine_cs *engine)
1777{
Chris Wilson821ed7d2016-09-09 14:11:53 +01001778 int ret;
1779
1780 ret = intel_mocs_init_engine(engine);
1781 if (ret)
1782 return ret;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001783
Chris Wilsonad07dfc2016-10-07 07:53:26 +01001784 intel_engine_reset_breadcrumbs(engine);
Chris Wilson821ed7d2016-09-09 14:11:53 +01001785
Chris Wilson9a4dc802018-05-18 11:09:33 +01001786 if (GEM_SHOW_DEBUG() && unexpected_starting_state(engine)) {
1787 struct drm_printer p = drm_debug_printer(__func__);
1788
1789 intel_engine_dump(engine, &p, NULL);
1790 }
1791
Chris Wilsonf3c9d4072018-01-02 15:12:34 +00001792 enable_execlists(engine);
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001793
Chris Wilson821ed7d2016-09-09 14:11:53 +01001794 return 0;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001795}
1796
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001797static int gen8_init_render_ring(struct intel_engine_cs *engine)
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001798{
Chris Wilsonc0336662016-05-06 15:40:21 +01001799 struct drm_i915_private *dev_priv = engine->i915;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001800 int ret;
1801
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001802 ret = gen8_init_common_ring(engine);
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001803 if (ret)
1804 return ret;
1805
Chris Wilsonf4ecfbf2018-04-14 13:27:54 +01001806 intel_whitelist_workarounds_apply(engine);
Oscar Mateo59b449d2018-04-10 09:12:47 -07001807
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001808 /* We need to disable the AsyncFlip performance optimisations in order
1809 * to use MI_WAIT_FOR_EVENT within the CS. It should already be
1810 * programmed to '1' on all products.
1811 *
1812 * WaDisableAsyncFlipPerfMode:snb,ivb,hsw,vlv,bdw,chv
1813 */
1814 I915_WRITE(MI_MODE, _MASKED_BIT_ENABLE(ASYNC_FLIP_PERF_DISABLE));
1815
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001816 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_FORCE_ORDERING));
1817
Oscar Mateo59b449d2018-04-10 09:12:47 -07001818 return 0;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001819}
1820
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001821static int gen9_init_render_ring(struct intel_engine_cs *engine)
Damien Lespiau82ef8222015-02-09 19:33:08 +00001822{
1823 int ret;
1824
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001825 ret = gen8_init_common_ring(engine);
Damien Lespiau82ef8222015-02-09 19:33:08 +00001826 if (ret)
1827 return ret;
1828
Chris Wilsonf4ecfbf2018-04-14 13:27:54 +01001829 intel_whitelist_workarounds_apply(engine);
Oscar Mateo59b449d2018-04-10 09:12:47 -07001830
1831 return 0;
Damien Lespiau82ef8222015-02-09 19:33:08 +00001832}
1833
Chris Wilson5adfb772018-05-16 19:33:51 +01001834static struct i915_request *
1835execlists_reset_prepare(struct intel_engine_cs *engine)
1836{
1837 struct intel_engine_execlists * const execlists = &engine->execlists;
Chris Wilson63572932018-05-16 19:33:54 +01001838 struct i915_request *request, *active;
Chris Wilson9512f982018-06-28 21:12:11 +01001839 unsigned long flags;
Chris Wilson5adfb772018-05-16 19:33:51 +01001840
1841 GEM_TRACE("%s\n", engine->name);
1842
1843 /*
1844 * Prevent request submission to the hardware until we have
1845 * completed the reset in i915_gem_reset_finish(). If a request
1846 * is completed by one engine, it may then queue a request
1847 * to a second via its execlists->tasklet *just* as we are
1848 * calling engine->init_hw() and also writing the ELSP.
1849 * Turning off the execlists->tasklet until the reset is over
1850 * prevents the race.
1851 */
1852 __tasklet_disable_sync_once(&execlists->tasklet);
1853
Chris Wilson9512f982018-06-28 21:12:11 +01001854 spin_lock_irqsave(&engine->timeline.lock, flags);
1855
Chris Wilson63572932018-05-16 19:33:54 +01001856 /*
1857 * We want to flush the pending context switches, having disabled
1858 * the tasklet above, we can assume exclusive access to the execlists.
1859 * For this allows us to catch up with an inflight preemption event,
1860 * and avoid blaming an innocent request if the stall was due to the
1861 * preemption itself.
1862 */
Chris Wilsonfd8526e2018-06-28 21:12:10 +01001863 process_csb(engine);
Chris Wilson63572932018-05-16 19:33:54 +01001864
1865 /*
1866 * The last active request can then be no later than the last request
1867 * now in ELSP[0]. So search backwards from there, so that if the GPU
1868 * has advanced beyond the last CSB update, it will be pardoned.
1869 */
1870 active = NULL;
1871 request = port_request(execlists->port);
1872 if (request) {
Chris Wilson3f6e9822018-05-16 19:33:55 +01001873 /*
1874 * Prevent the breadcrumb from advancing before we decide
1875 * which request is currently active.
1876 */
1877 intel_engine_stop_cs(engine);
1878
Chris Wilson63572932018-05-16 19:33:54 +01001879 list_for_each_entry_from_reverse(request,
1880 &engine->timeline.requests,
1881 link) {
1882 if (__i915_request_completed(request,
1883 request->global_seqno))
1884 break;
1885
1886 active = request;
1887 }
Chris Wilson63572932018-05-16 19:33:54 +01001888 }
1889
Chris Wilson9512f982018-06-28 21:12:11 +01001890 spin_unlock_irqrestore(&engine->timeline.lock, flags);
1891
Chris Wilson63572932018-05-16 19:33:54 +01001892 return active;
Chris Wilson5adfb772018-05-16 19:33:51 +01001893}
1894
1895static void execlists_reset(struct intel_engine_cs *engine,
1896 struct i915_request *request)
Chris Wilson821ed7d2016-09-09 14:11:53 +01001897{
Mika Kuoppalab620e872017-09-22 15:43:03 +03001898 struct intel_engine_execlists * const execlists = &engine->execlists;
Chris Wilson221ab97192017-09-16 21:44:14 +01001899 unsigned long flags;
Chris Wilson56922512018-04-28 12:15:32 +01001900 u32 *regs;
Chris Wilsoncdb6ded2017-07-21 13:32:22 +01001901
Tvrtko Ursulin0c5c7df2018-04-06 13:35:14 +01001902 GEM_TRACE("%s request global=%x, current=%d\n",
1903 engine->name, request ? request->global_seqno : 0,
1904 intel_engine_get_seqno(engine));
Chris Wilson42232212018-01-02 15:12:32 +00001905
Chris Wilsond8857d52018-06-28 21:12:05 +01001906 spin_lock_irqsave(&engine->timeline.lock, flags);
Chris Wilson221ab97192017-09-16 21:44:14 +01001907
Chris Wilsoncdb6ded2017-07-21 13:32:22 +01001908 /*
1909 * Catch up with any missed context-switch interrupts.
1910 *
1911 * Ideally we would just read the remaining CSB entries now that we
1912 * know the gpu is idle. However, the CSB registers are sometimes^W
1913 * often trashed across a GPU reset! Instead we have to rely on
1914 * guessing the missed context-switch events by looking at what
1915 * requests were completed.
1916 */
Michał Winiarskia4598d12017-10-25 22:00:18 +02001917 execlists_cancel_port_requests(execlists);
Chris Wilson221ab97192017-09-16 21:44:14 +01001918
1919 /* Push back any incomplete requests for replay after the reset. */
Michał Winiarskia4598d12017-10-25 22:00:18 +02001920 __unwind_incomplete_requests(engine);
Chris Wilsoncdb6ded2017-07-21 13:32:22 +01001921
Chris Wilsonc3160da2018-05-31 09:22:45 +01001922 /* Following the reset, we need to reload the CSB read/write pointers */
Chris Wilsonf4b58f02018-06-28 21:12:08 +01001923 reset_csb_pointers(&engine->execlists);
Chris Wilsonc3160da2018-05-31 09:22:45 +01001924
Chris Wilsond8857d52018-06-28 21:12:05 +01001925 spin_unlock_irqrestore(&engine->timeline.lock, flags);
Chris Wilsonaebbc2d2018-03-02 13:12:46 +00001926
Chris Wilsona3e38832018-03-02 14:32:45 +00001927 /*
1928 * If the request was innocent, we leave the request in the ELSP
Chris Wilsonc0dcb202017-02-07 15:24:37 +00001929 * and will try to replay it on restarting. The context image may
1930 * have been corrupted by the reset, in which case we may have
1931 * to service a new GPU hang, but more likely we can continue on
1932 * without impact.
1933 *
1934 * If the request was guilty, we presume the context is corrupt
1935 * and have to at least restore the RING register in the context
1936 * image back to the expected values to skip over the guilty request.
1937 */
Chris Wilson221ab97192017-09-16 21:44:14 +01001938 if (!request || request->fence.error != -EIO)
Chris Wilsonc0dcb202017-02-07 15:24:37 +00001939 return;
Chris Wilson821ed7d2016-09-09 14:11:53 +01001940
Chris Wilsona3e38832018-03-02 14:32:45 +00001941 /*
1942 * We want a simple context + ring to execute the breadcrumb update.
Chris Wilsona3aabe82016-10-04 21:11:26 +01001943 * We cannot rely on the context being intact across the GPU hang,
1944 * so clear it and rebuild just what we need for the breadcrumb.
1945 * All pending requests for this context will be zapped, and any
1946 * future request will be after userspace has had the opportunity
1947 * to recreate its own state.
1948 */
Chris Wilson1fc44d92018-05-17 22:26:32 +01001949 regs = request->hw_context->lrc_reg_state;
Chris Wilsonfe0c4932018-05-18 10:02:11 +01001950 if (engine->pinned_default_state) {
1951 memcpy(regs, /* skip restoring the vanilla PPHWSP */
1952 engine->pinned_default_state + LRC_STATE_PN * PAGE_SIZE,
1953 engine->context_size - PAGE_SIZE);
Chris Wilson56922512018-04-28 12:15:32 +01001954 }
Chris Wilson4e0d64d2018-05-17 22:26:30 +01001955 execlists_init_reg_state(regs,
1956 request->gem_context, engine, request->ring);
Chris Wilsona3aabe82016-10-04 21:11:26 +01001957
Chris Wilson821ed7d2016-09-09 14:11:53 +01001958 /* Move the RING_HEAD onto the breadcrumb, past the hanging batch */
Chris Wilson56922512018-04-28 12:15:32 +01001959 regs[CTX_RING_BUFFER_START + 1] = i915_ggtt_offset(request->ring->vma);
Chris Wilsona3aabe82016-10-04 21:11:26 +01001960
Chris Wilson41d37682018-06-11 12:08:45 +01001961 request->ring->head = intel_ring_wrap(request->ring, request->postfix);
1962 regs[CTX_RING_HEAD + 1] = request->ring->head;
1963
Chris Wilson821ed7d2016-09-09 14:11:53 +01001964 intel_ring_update_space(request->ring);
1965
Chris Wilsona3aabe82016-10-04 21:11:26 +01001966 /* Reset WaIdleLiteRestore:bdw,skl as well */
Chris Wilson7e4992a2017-09-28 20:38:59 +01001967 unwind_wa_tail(request);
Chris Wilson821ed7d2016-09-09 14:11:53 +01001968}
1969
Chris Wilson5adfb772018-05-16 19:33:51 +01001970static void execlists_reset_finish(struct intel_engine_cs *engine)
1971{
Chris Wilson5db1d4e2018-06-04 08:34:40 +01001972 struct intel_engine_execlists * const execlists = &engine->execlists;
1973
1974 /* After a GPU reset, we may have requests to replay */
Chris Wilson655250a2018-06-29 08:53:20 +01001975 if (!RB_EMPTY_ROOT(&execlists->queue.rb_root))
Chris Wilson5db1d4e2018-06-04 08:34:40 +01001976 tasklet_schedule(&execlists->tasklet);
1977
Chris Wilsonfe25f302018-05-22 11:19:37 +01001978 /*
1979 * Flush the tasklet while we still have the forcewake to be sure
1980 * that it is not allowed to sleep before we restart and reload a
1981 * context.
1982 *
1983 * As before (with execlists_reset_prepare) we rely on the caller
1984 * serialising multiple attempts to reset so that we know that we
1985 * are the only one manipulating tasklet state.
1986 */
Chris Wilson5db1d4e2018-06-04 08:34:40 +01001987 __tasklet_enable_sync_once(&execlists->tasklet);
Chris Wilson5adfb772018-05-16 19:33:51 +01001988
1989 GEM_TRACE("%s\n", engine->name);
1990}
1991
Chris Wilsone61e0f52018-02-21 09:56:36 +00001992static int intel_logical_ring_emit_pdps(struct i915_request *rq)
Michel Thierry7a01a0a2015-06-26 13:46:14 +01001993{
Chris Wilson4e0d64d2018-05-17 22:26:30 +01001994 struct i915_hw_ppgtt *ppgtt = rq->gem_context->ppgtt;
Chris Wilsone61e0f52018-02-21 09:56:36 +00001995 struct intel_engine_cs *engine = rq->engine;
Mika Kuoppalae7167762017-02-28 17:28:10 +02001996 const int num_lri_cmds = GEN8_3LVL_PDPES * 2;
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001997 u32 *cs;
1998 int i;
Michel Thierry7a01a0a2015-06-26 13:46:14 +01001999
Chris Wilsone61e0f52018-02-21 09:56:36 +00002000 cs = intel_ring_begin(rq, num_lri_cmds * 2 + 2);
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002001 if (IS_ERR(cs))
2002 return PTR_ERR(cs);
Michel Thierry7a01a0a2015-06-26 13:46:14 +01002003
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002004 *cs++ = MI_LOAD_REGISTER_IMM(num_lri_cmds);
Mika Kuoppalae7167762017-02-28 17:28:10 +02002005 for (i = GEN8_3LVL_PDPES - 1; i >= 0; i--) {
Michel Thierry7a01a0a2015-06-26 13:46:14 +01002006 const dma_addr_t pd_daddr = i915_page_dir_dma_addr(ppgtt, i);
2007
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002008 *cs++ = i915_mmio_reg_offset(GEN8_RING_PDP_UDW(engine, i));
2009 *cs++ = upper_32_bits(pd_daddr);
2010 *cs++ = i915_mmio_reg_offset(GEN8_RING_PDP_LDW(engine, i));
2011 *cs++ = lower_32_bits(pd_daddr);
Michel Thierry7a01a0a2015-06-26 13:46:14 +01002012 }
2013
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002014 *cs++ = MI_NOOP;
Chris Wilsone61e0f52018-02-21 09:56:36 +00002015 intel_ring_advance(rq, cs);
Michel Thierry7a01a0a2015-06-26 13:46:14 +01002016
2017 return 0;
2018}
2019
Chris Wilsone61e0f52018-02-21 09:56:36 +00002020static int gen8_emit_bb_start(struct i915_request *rq,
Chris Wilson803688b2016-08-02 22:50:27 +01002021 u64 offset, u32 len,
Mika Kuoppala54af56d2017-02-28 17:28:08 +02002022 const unsigned int flags)
Oscar Mateo15648582014-07-24 17:04:32 +01002023{
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002024 u32 *cs;
Oscar Mateo15648582014-07-24 17:04:32 +01002025 int ret;
2026
Michel Thierry7a01a0a2015-06-26 13:46:14 +01002027 /* Don't rely in hw updating PDPs, specially in lite-restore.
2028 * Ideally, we should set Force PD Restore in ctx descriptor,
2029 * but we can't. Force Restore would be a second option, but
2030 * it is unsafe in case of lite-restore (because the ctx is
Michel Thierry2dba3232015-07-30 11:06:23 +01002031 * not idle). PML4 is allocated during ppgtt init so this is
2032 * not needed in 48-bit.*/
Chris Wilson4e0d64d2018-05-17 22:26:30 +01002033 if (rq->gem_context->ppgtt &&
2034 (intel_engine_flag(rq->engine) & rq->gem_context->ppgtt->pd_dirty_rings) &&
Chris Wilson82ad6442018-06-05 16:37:58 +01002035 !i915_vm_is_48bit(&rq->gem_context->ppgtt->vm) &&
Chris Wilsone61e0f52018-02-21 09:56:36 +00002036 !intel_vgpu_active(rq->i915)) {
2037 ret = intel_logical_ring_emit_pdps(rq);
Mika Kuoppala54af56d2017-02-28 17:28:08 +02002038 if (ret)
2039 return ret;
Michel Thierry7a01a0a2015-06-26 13:46:14 +01002040
Chris Wilson4e0d64d2018-05-17 22:26:30 +01002041 rq->gem_context->ppgtt->pd_dirty_rings &= ~intel_engine_flag(rq->engine);
Michel Thierry7a01a0a2015-06-26 13:46:14 +01002042 }
2043
Chris Wilson74f9474122018-05-03 20:54:16 +01002044 cs = intel_ring_begin(rq, 6);
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002045 if (IS_ERR(cs))
2046 return PTR_ERR(cs);
Oscar Mateo15648582014-07-24 17:04:32 +01002047
Chris Wilson279f5a02017-10-05 20:10:05 +01002048 /*
2049 * WaDisableCtxRestoreArbitration:bdw,chv
2050 *
2051 * We don't need to perform MI_ARB_ENABLE as often as we do (in
2052 * particular all the gen that do not need the w/a at all!), if we
2053 * took care to make sure that on every switch into this context
2054 * (both ordinary and for preemption) that arbitrartion was enabled
2055 * we would be fine. However, there doesn't seem to be a downside to
2056 * being paranoid and making sure it is set before each batch and
2057 * every context-switch.
2058 *
2059 * Note that if we fail to enable arbitration before the request
2060 * is complete, then we do not see the context-switch interrupt and
2061 * the engine hangs (with RING_HEAD == RING_TAIL).
2062 *
2063 * That satisfies both the GPGPU w/a and our heavy-handed paranoia.
2064 */
Chris Wilson3ad7b522017-10-03 21:34:49 +01002065 *cs++ = MI_ARB_ON_OFF | MI_ARB_ENABLE;
2066
Oscar Mateo15648582014-07-24 17:04:32 +01002067 /* FIXME(BDW): Address space and security selectors. */
Mika Kuoppala54af56d2017-02-28 17:28:08 +02002068 *cs++ = MI_BATCH_BUFFER_START_GEN8 |
2069 (flags & I915_DISPATCH_SECURE ? 0 : BIT(8)) |
2070 (flags & I915_DISPATCH_RS ? MI_BATCH_RESOURCE_STREAMER : 0);
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002071 *cs++ = lower_32_bits(offset);
2072 *cs++ = upper_32_bits(offset);
Chris Wilson74f9474122018-05-03 20:54:16 +01002073
2074 *cs++ = MI_ARB_ON_OFF | MI_ARB_DISABLE;
2075 *cs++ = MI_NOOP;
Chris Wilsone61e0f52018-02-21 09:56:36 +00002076 intel_ring_advance(rq, cs);
Oscar Mateo15648582014-07-24 17:04:32 +01002077
2078 return 0;
2079}
2080
Chris Wilson31bb59c2016-07-01 17:23:27 +01002081static void gen8_logical_ring_enable_irq(struct intel_engine_cs *engine)
Oscar Mateo73d477f2014-07-24 17:04:31 +01002082{
Chris Wilsonc0336662016-05-06 15:40:21 +01002083 struct drm_i915_private *dev_priv = engine->i915;
Chris Wilson31bb59c2016-07-01 17:23:27 +01002084 I915_WRITE_IMR(engine,
2085 ~(engine->irq_enable_mask | engine->irq_keep_mask));
2086 POSTING_READ_FW(RING_IMR(engine->mmio_base));
Oscar Mateo73d477f2014-07-24 17:04:31 +01002087}
2088
Chris Wilson31bb59c2016-07-01 17:23:27 +01002089static void gen8_logical_ring_disable_irq(struct intel_engine_cs *engine)
Oscar Mateo73d477f2014-07-24 17:04:31 +01002090{
Chris Wilsonc0336662016-05-06 15:40:21 +01002091 struct drm_i915_private *dev_priv = engine->i915;
Chris Wilson31bb59c2016-07-01 17:23:27 +01002092 I915_WRITE_IMR(engine, ~engine->irq_keep_mask);
Oscar Mateo73d477f2014-07-24 17:04:31 +01002093}
2094
Chris Wilsone61e0f52018-02-21 09:56:36 +00002095static int gen8_emit_flush(struct i915_request *request, u32 mode)
Oscar Mateo47122742014-07-24 17:04:28 +01002096{
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002097 u32 cmd, *cs;
Oscar Mateo47122742014-07-24 17:04:28 +01002098
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002099 cs = intel_ring_begin(request, 4);
2100 if (IS_ERR(cs))
2101 return PTR_ERR(cs);
Oscar Mateo47122742014-07-24 17:04:28 +01002102
2103 cmd = MI_FLUSH_DW + 1;
2104
Chris Wilsonf0a1fb12015-01-22 13:42:00 +00002105 /* We always require a command barrier so that subsequent
2106 * commands, such as breadcrumb interrupts, are strictly ordered
2107 * wrt the contents of the write cache being flushed to memory
2108 * (and thus being coherent from the CPU).
2109 */
2110 cmd |= MI_FLUSH_DW_STORE_INDEX | MI_FLUSH_DW_OP_STOREDW;
2111
Chris Wilson7c9cf4e2016-08-02 22:50:25 +01002112 if (mode & EMIT_INVALIDATE) {
Chris Wilsonf0a1fb12015-01-22 13:42:00 +00002113 cmd |= MI_INVALIDATE_TLB;
Chris Wilson1dae2df2016-08-02 22:50:19 +01002114 if (request->engine->id == VCS)
Chris Wilsonf0a1fb12015-01-22 13:42:00 +00002115 cmd |= MI_INVALIDATE_BSD;
Oscar Mateo47122742014-07-24 17:04:28 +01002116 }
2117
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002118 *cs++ = cmd;
2119 *cs++ = I915_GEM_HWS_SCRATCH_ADDR | MI_FLUSH_DW_USE_GTT;
2120 *cs++ = 0; /* upper addr */
2121 *cs++ = 0; /* value */
2122 intel_ring_advance(request, cs);
Oscar Mateo47122742014-07-24 17:04:28 +01002123
2124 return 0;
2125}
2126
Chris Wilsone61e0f52018-02-21 09:56:36 +00002127static int gen8_emit_flush_render(struct i915_request *request,
Chris Wilson7c9cf4e2016-08-02 22:50:25 +01002128 u32 mode)
Oscar Mateo47122742014-07-24 17:04:28 +01002129{
Chris Wilsonb5321f32016-08-02 22:50:18 +01002130 struct intel_engine_cs *engine = request->engine;
Chris Wilsonbde13eb2016-08-15 10:49:07 +01002131 u32 scratch_addr =
2132 i915_ggtt_offset(engine->scratch) + 2 * CACHELINE_BYTES;
Mika Kuoppala0b2d0932016-06-07 17:19:10 +03002133 bool vf_flush_wa = false, dc_flush_wa = false;
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002134 u32 *cs, flags = 0;
Mika Kuoppala0b2d0932016-06-07 17:19:10 +03002135 int len;
Oscar Mateo47122742014-07-24 17:04:28 +01002136
2137 flags |= PIPE_CONTROL_CS_STALL;
2138
Chris Wilson7c9cf4e2016-08-02 22:50:25 +01002139 if (mode & EMIT_FLUSH) {
Oscar Mateo47122742014-07-24 17:04:28 +01002140 flags |= PIPE_CONTROL_RENDER_TARGET_CACHE_FLUSH;
2141 flags |= PIPE_CONTROL_DEPTH_CACHE_FLUSH;
Francisco Jerez965fd602016-01-13 18:59:39 -08002142 flags |= PIPE_CONTROL_DC_FLUSH_ENABLE;
Chris Wilson40a24482015-08-21 16:08:41 +01002143 flags |= PIPE_CONTROL_FLUSH_ENABLE;
Oscar Mateo47122742014-07-24 17:04:28 +01002144 }
2145
Chris Wilson7c9cf4e2016-08-02 22:50:25 +01002146 if (mode & EMIT_INVALIDATE) {
Oscar Mateo47122742014-07-24 17:04:28 +01002147 flags |= PIPE_CONTROL_TLB_INVALIDATE;
2148 flags |= PIPE_CONTROL_INSTRUCTION_CACHE_INVALIDATE;
2149 flags |= PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE;
2150 flags |= PIPE_CONTROL_VF_CACHE_INVALIDATE;
2151 flags |= PIPE_CONTROL_CONST_CACHE_INVALIDATE;
2152 flags |= PIPE_CONTROL_STATE_CACHE_INVALIDATE;
2153 flags |= PIPE_CONTROL_QW_WRITE;
2154 flags |= PIPE_CONTROL_GLOBAL_GTT_IVB;
Oscar Mateo47122742014-07-24 17:04:28 +01002155
Ben Widawsky1a5a9ce2015-12-17 09:49:57 -08002156 /*
2157 * On GEN9: before VF_CACHE_INVALIDATE we need to emit a NULL
2158 * pipe control.
2159 */
Chris Wilsonc0336662016-05-06 15:40:21 +01002160 if (IS_GEN9(request->i915))
Ben Widawsky1a5a9ce2015-12-17 09:49:57 -08002161 vf_flush_wa = true;
Mika Kuoppala0b2d0932016-06-07 17:19:10 +03002162
2163 /* WaForGAMHang:kbl */
2164 if (IS_KBL_REVID(request->i915, 0, KBL_REVID_B0))
2165 dc_flush_wa = true;
Ben Widawsky1a5a9ce2015-12-17 09:49:57 -08002166 }
Imre Deak9647ff32015-01-25 13:27:11 -08002167
Mika Kuoppala0b2d0932016-06-07 17:19:10 +03002168 len = 6;
2169
2170 if (vf_flush_wa)
2171 len += 6;
2172
2173 if (dc_flush_wa)
2174 len += 12;
2175
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002176 cs = intel_ring_begin(request, len);
2177 if (IS_ERR(cs))
2178 return PTR_ERR(cs);
Oscar Mateo47122742014-07-24 17:04:28 +01002179
Tvrtko Ursulin9f235df2017-02-16 12:23:25 +00002180 if (vf_flush_wa)
2181 cs = gen8_emit_pipe_control(cs, 0, 0);
Imre Deak9647ff32015-01-25 13:27:11 -08002182
Tvrtko Ursulin9f235df2017-02-16 12:23:25 +00002183 if (dc_flush_wa)
2184 cs = gen8_emit_pipe_control(cs, PIPE_CONTROL_DC_FLUSH_ENABLE,
2185 0);
Mika Kuoppala0b2d0932016-06-07 17:19:10 +03002186
Tvrtko Ursulin9f235df2017-02-16 12:23:25 +00002187 cs = gen8_emit_pipe_control(cs, flags, scratch_addr);
Mika Kuoppala0b2d0932016-06-07 17:19:10 +03002188
Tvrtko Ursulin9f235df2017-02-16 12:23:25 +00002189 if (dc_flush_wa)
2190 cs = gen8_emit_pipe_control(cs, PIPE_CONTROL_CS_STALL, 0);
Mika Kuoppala0b2d0932016-06-07 17:19:10 +03002191
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002192 intel_ring_advance(request, cs);
Oscar Mateo47122742014-07-24 17:04:28 +01002193
2194 return 0;
2195}
2196
Chris Wilson7c17d372016-01-20 15:43:35 +02002197/*
2198 * Reserve space for 2 NOOPs at the end of each request to be
2199 * used as a workaround for not being allowed to do lite
2200 * restore with HEAD==TAIL (WaIdleLiteRestore).
2201 */
Chris Wilsone61e0f52018-02-21 09:56:36 +00002202static void gen8_emit_wa_tail(struct i915_request *request, u32 *cs)
Oscar Mateo4da46e12014-07-24 17:04:27 +01002203{
Chris Wilsonbeecec92017-10-03 21:34:52 +01002204 /* Ensure there's always at least one preemption point per-request. */
2205 *cs++ = MI_ARB_CHECK;
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002206 *cs++ = MI_NOOP;
2207 request->wa_tail = intel_ring_offset(request, cs);
Chris Wilsoncaddfe72016-10-28 13:58:52 +01002208}
Oscar Mateo4da46e12014-07-24 17:04:27 +01002209
Chris Wilsone61e0f52018-02-21 09:56:36 +00002210static void gen8_emit_breadcrumb(struct i915_request *request, u32 *cs)
Chris Wilsoncaddfe72016-10-28 13:58:52 +01002211{
Chris Wilson7c17d372016-01-20 15:43:35 +02002212 /* w/a: bit 5 needs to be zero for MI_FLUSH_DW address. */
2213 BUILD_BUG_ON(I915_GEM_HWS_INDEX_ADDR & (1 << 5));
Oscar Mateo4da46e12014-07-24 17:04:27 +01002214
Michał Winiarskidf77cd82017-10-25 22:00:15 +02002215 cs = gen8_emit_ggtt_write(cs, request->global_seqno,
2216 intel_hws_seqno_address(request->engine));
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002217 *cs++ = MI_USER_INTERRUPT;
Chris Wilson74f9474122018-05-03 20:54:16 +01002218 *cs++ = MI_ARB_ON_OFF | MI_ARB_ENABLE;
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002219 request->tail = intel_ring_offset(request, cs);
Chris Wilsoned1501d2017-03-27 14:14:12 +01002220 assert_ring_tail_valid(request->ring, request->tail);
Chris Wilsoncaddfe72016-10-28 13:58:52 +01002221
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002222 gen8_emit_wa_tail(request, cs);
Chris Wilson7c17d372016-01-20 15:43:35 +02002223}
Chris Wilson98f29e82016-10-28 13:58:51 +01002224static const int gen8_emit_breadcrumb_sz = 6 + WA_TAIL_DWORDS;
2225
Chris Wilsone61e0f52018-02-21 09:56:36 +00002226static void gen8_emit_breadcrumb_rcs(struct i915_request *request, u32 *cs)
Chris Wilson7c17d372016-01-20 15:43:35 +02002227{
Michał Winiarskice81a652016-04-12 15:51:55 +02002228 /* We're using qword write, seqno should be aligned to 8 bytes. */
2229 BUILD_BUG_ON(I915_GEM_HWS_INDEX & 1);
2230
Michał Winiarskidf77cd82017-10-25 22:00:15 +02002231 cs = gen8_emit_ggtt_write_rcs(cs, request->global_seqno,
2232 intel_hws_seqno_address(request->engine));
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002233 *cs++ = MI_USER_INTERRUPT;
Chris Wilson74f9474122018-05-03 20:54:16 +01002234 *cs++ = MI_ARB_ON_OFF | MI_ARB_ENABLE;
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002235 request->tail = intel_ring_offset(request, cs);
Chris Wilsoned1501d2017-03-27 14:14:12 +01002236 assert_ring_tail_valid(request->ring, request->tail);
Chris Wilsoncaddfe72016-10-28 13:58:52 +01002237
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002238 gen8_emit_wa_tail(request, cs);
Oscar Mateo4da46e12014-07-24 17:04:27 +01002239}
Michał Winiarskidf77cd82017-10-25 22:00:15 +02002240static const int gen8_emit_breadcrumb_rcs_sz = 8 + WA_TAIL_DWORDS;
Chris Wilson98f29e82016-10-28 13:58:51 +01002241
Chris Wilsone61e0f52018-02-21 09:56:36 +00002242static int gen8_init_rcs_context(struct i915_request *rq)
Thomas Daniele7778be2014-12-02 12:50:48 +00002243{
2244 int ret;
2245
Oscar Mateo59b449d2018-04-10 09:12:47 -07002246 ret = intel_ctx_workarounds_emit(rq);
Thomas Daniele7778be2014-12-02 12:50:48 +00002247 if (ret)
2248 return ret;
2249
Chris Wilsone61e0f52018-02-21 09:56:36 +00002250 ret = intel_rcs_context_init_mocs(rq);
Peter Antoine3bbaba02015-07-10 20:13:11 +03002251 /*
2252 * Failing to program the MOCS is non-fatal.The system will not
2253 * run at peak performance. So generate an error and carry on.
2254 */
2255 if (ret)
2256 DRM_ERROR("MOCS failed to program: expect performance issues.\n");
2257
Chris Wilsone61e0f52018-02-21 09:56:36 +00002258 return i915_gem_render_state_emit(rq);
Thomas Daniele7778be2014-12-02 12:50:48 +00002259}
2260
Oscar Mateo73e4d072014-07-24 17:04:48 +01002261/**
2262 * intel_logical_ring_cleanup() - deallocate the Engine Command Streamer
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01002263 * @engine: Engine Command Streamer.
Oscar Mateo73e4d072014-07-24 17:04:48 +01002264 */
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002265void intel_logical_ring_cleanup(struct intel_engine_cs *engine)
Oscar Mateo454afeb2014-07-24 17:04:22 +01002266{
John Harrison6402c332014-10-31 12:00:26 +00002267 struct drm_i915_private *dev_priv;
Oscar Mateo9832b9d2014-07-24 17:04:30 +01002268
Tvrtko Ursulin27af5ee2016-04-04 12:11:56 +01002269 /*
2270 * Tasklet cannot be active at this point due intel_mark_active/idle
2271 * so this is just for documentation.
2272 */
Sagar Arun Kamblec6dce8f2017-11-16 19:02:37 +05302273 if (WARN_ON(test_bit(TASKLET_STATE_SCHED,
2274 &engine->execlists.tasklet.state)))
2275 tasklet_kill(&engine->execlists.tasklet);
Tvrtko Ursulin27af5ee2016-04-04 12:11:56 +01002276
Chris Wilsonc0336662016-05-06 15:40:21 +01002277 dev_priv = engine->i915;
John Harrison6402c332014-10-31 12:00:26 +00002278
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002279 if (engine->buffer) {
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002280 WARN_ON((I915_READ_MODE(engine) & MODE_IDLE) == 0);
Dave Gordonb0366a52015-12-08 15:02:36 +00002281 }
Oscar Mateo48d82382014-07-24 17:04:23 +01002282
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002283 if (engine->cleanup)
2284 engine->cleanup(engine);
Oscar Mateo48d82382014-07-24 17:04:23 +01002285
Chris Wilsone8a9c582016-12-18 15:37:20 +00002286 intel_engine_cleanup_common(engine);
Arun Siluvery17ee9502015-06-19 19:07:01 +01002287
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00002288 lrc_destroy_wa_ctx(engine);
Chris Wilsonf3c9d4072018-01-02 15:12:34 +00002289
Chris Wilsonc0336662016-05-06 15:40:21 +01002290 engine->i915 = NULL;
Akash Goel3b3f1652016-10-13 22:44:48 +05302291 dev_priv->engine[engine->id] = NULL;
2292 kfree(engine);
Oscar Mateo454afeb2014-07-24 17:04:22 +01002293}
2294
Chris Wilson209b7952018-07-17 21:29:32 +01002295void intel_execlists_set_default_submission(struct intel_engine_cs *engine)
Chris Wilsonddd66c52016-08-02 22:50:31 +01002296{
Chris Wilsonff44ad52017-03-16 17:13:03 +00002297 engine->submit_request = execlists_submit_request;
Chris Wilson27a5f612017-09-15 18:31:00 +01002298 engine->cancel_requests = execlists_cancel_requests;
Chris Wilsonff44ad52017-03-16 17:13:03 +00002299 engine->schedule = execlists_schedule;
Sagar Arun Kamblec6dce8f2017-11-16 19:02:37 +05302300 engine->execlists.tasklet.func = execlists_submission_tasklet;
Chris Wilsonaba5e272017-10-25 15:39:41 +01002301
Chris Wilson13291152018-05-16 19:33:52 +01002302 engine->reset.prepare = execlists_reset_prepare;
2303
Chris Wilsonaba5e272017-10-25 15:39:41 +01002304 engine->park = NULL;
2305 engine->unpark = NULL;
Tvrtko Ursulincf669b42017-11-29 10:28:05 +00002306
2307 engine->flags |= I915_ENGINE_SUPPORTS_STATS;
Chris Wilson2a694fe2018-04-03 19:35:37 +01002308 if (engine->i915->preempt_context)
2309 engine->flags |= I915_ENGINE_HAS_PREEMPTION;
Chris Wilson3fed1802018-02-07 21:05:43 +00002310
2311 engine->i915->caps.scheduler =
2312 I915_SCHEDULER_CAP_ENABLED |
2313 I915_SCHEDULER_CAP_PRIORITY;
Chris Wilson2a694fe2018-04-03 19:35:37 +01002314 if (intel_engine_has_preemption(engine))
Chris Wilson3fed1802018-02-07 21:05:43 +00002315 engine->i915->caps.scheduler |= I915_SCHEDULER_CAP_PREEMPTION;
Chris Wilsonddd66c52016-08-02 22:50:31 +01002316}
2317
Tvrtko Ursulinc9cacf92016-01-12 17:32:34 +00002318static void
Chris Wilsone1382ef2016-05-06 15:40:20 +01002319logical_ring_default_vfuncs(struct intel_engine_cs *engine)
Tvrtko Ursulinc9cacf92016-01-12 17:32:34 +00002320{
2321 /* Default vfuncs which can be overriden by each engine. */
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002322 engine->init_hw = gen8_init_common_ring;
Chris Wilson5adfb772018-05-16 19:33:51 +01002323
2324 engine->reset.prepare = execlists_reset_prepare;
2325 engine->reset.reset = execlists_reset;
2326 engine->reset.finish = execlists_reset_finish;
Chris Wilsone8a9c582016-12-18 15:37:20 +00002327
2328 engine->context_pin = execlists_context_pin;
Chris Wilsonf73e7392016-12-18 15:37:24 +00002329 engine->request_alloc = execlists_request_alloc;
2330
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002331 engine->emit_flush = gen8_emit_flush;
Chris Wilson9b81d552016-10-28 13:58:50 +01002332 engine->emit_breadcrumb = gen8_emit_breadcrumb;
Chris Wilson98f29e82016-10-28 13:58:51 +01002333 engine->emit_breadcrumb_sz = gen8_emit_breadcrumb_sz;
Chris Wilsonff44ad52017-03-16 17:13:03 +00002334
Chris Wilson209b7952018-07-17 21:29:32 +01002335 engine->set_default_submission = intel_execlists_set_default_submission;
Chris Wilsonddd66c52016-08-02 22:50:31 +01002336
Tvrtko Ursulind4ccceb2018-03-02 18:14:56 +02002337 if (INTEL_GEN(engine->i915) < 11) {
2338 engine->irq_enable = gen8_logical_ring_enable_irq;
2339 engine->irq_disable = gen8_logical_ring_disable_irq;
2340 } else {
2341 /*
2342 * TODO: On Gen11 interrupt masks need to be clear
2343 * to allow C6 entry. Keep interrupts enabled at
2344 * and take the hit of generating extra interrupts
2345 * until a more refined solution exists.
2346 */
2347 }
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002348 engine->emit_bb_start = gen8_emit_bb_start;
Tvrtko Ursulinc9cacf92016-01-12 17:32:34 +00002349}
2350
Tvrtko Ursulind9f3af92016-01-12 17:32:35 +00002351static inline void
Dave Gordonc2c7f242016-07-13 16:03:35 +01002352logical_ring_default_irqs(struct intel_engine_cs *engine)
Tvrtko Ursulind9f3af92016-01-12 17:32:35 +00002353{
Daniele Ceraolo Spuriofa6f0712018-03-14 11:26:53 -07002354 unsigned int shift = 0;
2355
2356 if (INTEL_GEN(engine->i915) < 11) {
2357 const u8 irq_shifts[] = {
2358 [RCS] = GEN8_RCS_IRQ_SHIFT,
2359 [BCS] = GEN8_BCS_IRQ_SHIFT,
2360 [VCS] = GEN8_VCS1_IRQ_SHIFT,
2361 [VCS2] = GEN8_VCS2_IRQ_SHIFT,
2362 [VECS] = GEN8_VECS_IRQ_SHIFT,
2363 };
2364
2365 shift = irq_shifts[engine->id];
2366 }
2367
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002368 engine->irq_enable_mask = GT_RENDER_USER_INTERRUPT << shift;
2369 engine->irq_keep_mask = GT_CONTEXT_SWITCH_INTERRUPT << shift;
Tvrtko Ursulind9f3af92016-01-12 17:32:35 +00002370}
2371
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01002372static void
2373logical_ring_setup(struct intel_engine_cs *engine)
2374{
Tvrtko Ursulin019bf272016-07-13 16:03:41 +01002375 intel_engine_setup_common(engine);
2376
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01002377 /* Intentionally left blank. */
2378 engine->buffer = NULL;
2379
Sagar Arun Kamblec6dce8f2017-11-16 19:02:37 +05302380 tasklet_init(&engine->execlists.tasklet,
2381 execlists_submission_tasklet, (unsigned long)engine);
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01002382
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01002383 logical_ring_default_vfuncs(engine);
2384 logical_ring_default_irqs(engine);
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01002385}
2386
Chris Wilsonbc4237e2018-06-28 21:12:07 +01002387static bool csb_force_mmio(struct drm_i915_private *i915)
2388{
2389 /* Older GVT emulation depends upon intercepting CSB mmio */
2390 return intel_vgpu_active(i915) && !intel_vgpu_has_hwsp_emulation(i915);
2391}
2392
Daniele Ceraolo Spurio486e93f2017-09-13 09:56:02 +01002393static int logical_ring_init(struct intel_engine_cs *engine)
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01002394{
Chris Wilsonbc4237e2018-06-28 21:12:07 +01002395 struct drm_i915_private *i915 = engine->i915;
2396 struct intel_engine_execlists * const execlists = &engine->execlists;
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01002397 int ret;
2398
Tvrtko Ursulin019bf272016-07-13 16:03:41 +01002399 ret = intel_engine_init_common(engine);
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01002400 if (ret)
2401 goto error;
2402
Chris Wilsonbc4237e2018-06-28 21:12:07 +01002403 if (HAS_LOGICAL_RING_ELSQ(i915)) {
2404 execlists->submit_reg = i915->regs +
Thomas Daniel05f0add2018-03-02 18:14:59 +02002405 i915_mmio_reg_offset(RING_EXECLIST_SQ_CONTENTS(engine));
Chris Wilsonbc4237e2018-06-28 21:12:07 +01002406 execlists->ctrl_reg = i915->regs +
Thomas Daniel05f0add2018-03-02 18:14:59 +02002407 i915_mmio_reg_offset(RING_EXECLIST_CONTROL(engine));
2408 } else {
Chris Wilsonbc4237e2018-06-28 21:12:07 +01002409 execlists->submit_reg = i915->regs +
Thomas Daniel05f0add2018-03-02 18:14:59 +02002410 i915_mmio_reg_offset(RING_ELSP(engine));
2411 }
Chris Wilson693cfbf2018-01-02 15:12:33 +00002412
Chris Wilsonbc4237e2018-06-28 21:12:07 +01002413 execlists->preempt_complete_status = ~0u;
2414 if (i915->preempt_context) {
Chris Wilsonab82a062018-04-30 14:15:01 +01002415 struct intel_context *ce =
Chris Wilsonbc4237e2018-06-28 21:12:07 +01002416 to_intel_context(i915->preempt_context, engine);
Chris Wilsonab82a062018-04-30 14:15:01 +01002417
Chris Wilsonbc4237e2018-06-28 21:12:07 +01002418 execlists->preempt_complete_status =
Chris Wilsonab82a062018-04-30 14:15:01 +01002419 upper_32_bits(ce->lrc_desc);
2420 }
Chris Wilsond6376372018-02-07 21:05:44 +00002421
Chris Wilsonbc4237e2018-06-28 21:12:07 +01002422 execlists->csb_read =
2423 i915->regs + i915_mmio_reg_offset(RING_CONTEXT_STATUS_PTR(engine));
2424 if (csb_force_mmio(i915)) {
2425 execlists->csb_status = (u32 __force *)
2426 (i915->regs + i915_mmio_reg_offset(RING_CONTEXT_STATUS_BUF_LO(engine, 0)));
2427
2428 execlists->csb_write = (u32 __force *)execlists->csb_read;
Chris Wilsonf4b58f02018-06-28 21:12:08 +01002429 execlists->csb_write_reset =
2430 _MASKED_FIELD(GEN8_CSB_WRITE_PTR_MASK,
2431 GEN8_CSB_ENTRIES - 1);
Chris Wilsonbc4237e2018-06-28 21:12:07 +01002432 } else {
2433 execlists->csb_status =
2434 &engine->status_page.page_addr[I915_HWS_CSB_BUF0_INDEX];
2435
2436 execlists->csb_write =
2437 &engine->status_page.page_addr[intel_hws_csb_write_index(i915)];
Chris Wilsonf4b58f02018-06-28 21:12:08 +01002438 execlists->csb_write_reset = GEN8_CSB_ENTRIES - 1;
Chris Wilsonbc4237e2018-06-28 21:12:07 +01002439 }
Chris Wilsonf4b58f02018-06-28 21:12:08 +01002440 reset_csb_pointers(execlists);
Chris Wilsonc3160da2018-05-31 09:22:45 +01002441
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01002442 return 0;
2443
2444error:
2445 intel_logical_ring_cleanup(engine);
2446 return ret;
2447}
2448
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +01002449int logical_render_ring_init(struct intel_engine_cs *engine)
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01002450{
2451 struct drm_i915_private *dev_priv = engine->i915;
2452 int ret;
2453
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01002454 logical_ring_setup(engine);
2455
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01002456 if (HAS_L3_DPF(dev_priv))
2457 engine->irq_keep_mask |= GT_RENDER_L3_PARITY_ERROR_INTERRUPT;
2458
2459 /* Override some for render ring. */
2460 if (INTEL_GEN(dev_priv) >= 9)
2461 engine->init_hw = gen9_init_render_ring;
2462 else
2463 engine->init_hw = gen8_init_render_ring;
2464 engine->init_context = gen8_init_rcs_context;
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01002465 engine->emit_flush = gen8_emit_flush_render;
Michał Winiarskidf77cd82017-10-25 22:00:15 +02002466 engine->emit_breadcrumb = gen8_emit_breadcrumb_rcs;
2467 engine->emit_breadcrumb_sz = gen8_emit_breadcrumb_rcs_sz;
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01002468
Chris Wilsonf51455d2017-01-10 14:47:34 +00002469 ret = intel_engine_create_scratch(engine, PAGE_SIZE);
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01002470 if (ret)
2471 return ret;
2472
2473 ret = intel_init_workaround_bb(engine);
2474 if (ret) {
2475 /*
2476 * We continue even if we fail to initialize WA batch
2477 * because we only expect rare glitches but nothing
2478 * critical to prevent us from using GPU
2479 */
2480 DRM_ERROR("WA batch buffer initialization failed: %d\n",
2481 ret);
2482 }
2483
Tvrtko Ursulind038fc72016-12-16 13:18:42 +00002484 return logical_ring_init(engine);
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01002485}
2486
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +01002487int logical_xcs_ring_init(struct intel_engine_cs *engine)
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01002488{
2489 logical_ring_setup(engine);
2490
2491 return logical_ring_init(engine);
2492}
2493
Jeff McGee0cea6502015-02-13 10:27:56 -06002494static u32
Chris Wilsonc0336662016-05-06 15:40:21 +01002495make_rpcs(struct drm_i915_private *dev_priv)
Jeff McGee0cea6502015-02-13 10:27:56 -06002496{
2497 u32 rpcs = 0;
2498
2499 /*
2500 * No explicit RPCS request is needed to ensure full
2501 * slice/subslice/EU enablement prior to Gen9.
2502 */
Chris Wilsonc0336662016-05-06 15:40:21 +01002503 if (INTEL_GEN(dev_priv) < 9)
Jeff McGee0cea6502015-02-13 10:27:56 -06002504 return 0;
2505
2506 /*
2507 * Starting in Gen9, render power gating can leave
2508 * slice/subslice/EU in a partially enabled state. We
2509 * must make an explicit request through RPCS for full
2510 * enablement.
2511 */
Imre Deak43b67992016-08-31 19:13:02 +03002512 if (INTEL_INFO(dev_priv)->sseu.has_slice_pg) {
Jeff McGee0cea6502015-02-13 10:27:56 -06002513 rpcs |= GEN8_RPCS_S_CNT_ENABLE;
Imre Deakf08a0c92016-08-31 19:13:04 +03002514 rpcs |= hweight8(INTEL_INFO(dev_priv)->sseu.slice_mask) <<
Jeff McGee0cea6502015-02-13 10:27:56 -06002515 GEN8_RPCS_S_CNT_SHIFT;
2516 rpcs |= GEN8_RPCS_ENABLE;
2517 }
2518
Imre Deak43b67992016-08-31 19:13:02 +03002519 if (INTEL_INFO(dev_priv)->sseu.has_subslice_pg) {
Jeff McGee0cea6502015-02-13 10:27:56 -06002520 rpcs |= GEN8_RPCS_SS_CNT_ENABLE;
Lionel Landwerlin8cc76692018-03-06 12:28:52 +00002521 rpcs |= hweight8(INTEL_INFO(dev_priv)->sseu.subslice_mask[0]) <<
Jeff McGee0cea6502015-02-13 10:27:56 -06002522 GEN8_RPCS_SS_CNT_SHIFT;
2523 rpcs |= GEN8_RPCS_ENABLE;
2524 }
2525
Imre Deak43b67992016-08-31 19:13:02 +03002526 if (INTEL_INFO(dev_priv)->sseu.has_eu_pg) {
2527 rpcs |= INTEL_INFO(dev_priv)->sseu.eu_per_subslice <<
Jeff McGee0cea6502015-02-13 10:27:56 -06002528 GEN8_RPCS_EU_MIN_SHIFT;
Imre Deak43b67992016-08-31 19:13:02 +03002529 rpcs |= INTEL_INFO(dev_priv)->sseu.eu_per_subslice <<
Jeff McGee0cea6502015-02-13 10:27:56 -06002530 GEN8_RPCS_EU_MAX_SHIFT;
2531 rpcs |= GEN8_RPCS_ENABLE;
2532 }
2533
2534 return rpcs;
2535}
2536
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002537static u32 intel_lr_indirect_ctx_offset(struct intel_engine_cs *engine)
Michel Thierry71562912016-02-23 10:31:49 +00002538{
2539 u32 indirect_ctx_offset;
2540
Chris Wilsonc0336662016-05-06 15:40:21 +01002541 switch (INTEL_GEN(engine->i915)) {
Michel Thierry71562912016-02-23 10:31:49 +00002542 default:
Chris Wilsonc0336662016-05-06 15:40:21 +01002543 MISSING_CASE(INTEL_GEN(engine->i915));
Michel Thierry71562912016-02-23 10:31:49 +00002544 /* fall through */
Michel Thierryfd034c72018-03-02 18:15:00 +02002545 case 11:
2546 indirect_ctx_offset =
2547 GEN11_CTX_RCS_INDIRECT_CTX_OFFSET_DEFAULT;
2548 break;
Michel Thierry7bd0a2c2017-06-06 13:30:38 -07002549 case 10:
2550 indirect_ctx_offset =
2551 GEN10_CTX_RCS_INDIRECT_CTX_OFFSET_DEFAULT;
2552 break;
Michel Thierry71562912016-02-23 10:31:49 +00002553 case 9:
2554 indirect_ctx_offset =
2555 GEN9_CTX_RCS_INDIRECT_CTX_OFFSET_DEFAULT;
2556 break;
2557 case 8:
2558 indirect_ctx_offset =
2559 GEN8_CTX_RCS_INDIRECT_CTX_OFFSET_DEFAULT;
2560 break;
2561 }
2562
2563 return indirect_ctx_offset;
2564}
2565
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002566static void execlists_init_reg_state(u32 *regs,
Chris Wilsona3aabe82016-10-04 21:11:26 +01002567 struct i915_gem_context *ctx,
2568 struct intel_engine_cs *engine,
2569 struct intel_ring *ring)
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002570{
Chris Wilsona3aabe82016-10-04 21:11:26 +01002571 struct drm_i915_private *dev_priv = engine->i915;
2572 struct i915_hw_ppgtt *ppgtt = ctx->ppgtt ?: dev_priv->mm.aliasing_ppgtt;
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002573 u32 base = engine->mmio_base;
Chris Wilson1fc44d92018-05-17 22:26:32 +01002574 bool rcs = engine->class == RENDER_CLASS;
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002575
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002576 /* A context is actually a big batch buffer with several
2577 * MI_LOAD_REGISTER_IMM commands followed by (reg, value) pairs. The
2578 * values we are setting here are only for the first context restore:
2579 * on a subsequent save, the GPU will recreate this batchbuffer with new
2580 * values (including all the missing MI_LOAD_REGISTER_IMM commands that
2581 * we are not initializing here).
2582 */
2583 regs[CTX_LRI_HEADER_0] = MI_LOAD_REGISTER_IMM(rcs ? 14 : 11) |
2584 MI_LRI_FORCE_POSTED;
2585
2586 CTX_REG(regs, CTX_CONTEXT_CONTROL, RING_CONTEXT_CONTROL(engine),
Chris Wilson09b1a4e2018-01-25 11:24:42 +00002587 _MASKED_BIT_DISABLE(CTX_CTRL_ENGINE_CTX_RESTORE_INHIBIT |
2588 CTX_CTRL_ENGINE_CTX_SAVE_INHIBIT) |
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002589 _MASKED_BIT_ENABLE(CTX_CTRL_INHIBIT_SYN_CTX_SWITCH |
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002590 (HAS_RESOURCE_STREAMER(dev_priv) ?
2591 CTX_CTRL_RS_CTX_ENABLE : 0)));
2592 CTX_REG(regs, CTX_RING_HEAD, RING_HEAD(base), 0);
2593 CTX_REG(regs, CTX_RING_TAIL, RING_TAIL(base), 0);
2594 CTX_REG(regs, CTX_RING_BUFFER_START, RING_START(base), 0);
2595 CTX_REG(regs, CTX_RING_BUFFER_CONTROL, RING_CTL(base),
2596 RING_CTL_SIZE(ring->size) | RING_VALID);
2597 CTX_REG(regs, CTX_BB_HEAD_U, RING_BBADDR_UDW(base), 0);
2598 CTX_REG(regs, CTX_BB_HEAD_L, RING_BBADDR(base), 0);
2599 CTX_REG(regs, CTX_BB_STATE, RING_BBSTATE(base), RING_BB_PPGTT);
2600 CTX_REG(regs, CTX_SECOND_BB_HEAD_U, RING_SBBADDR_UDW(base), 0);
2601 CTX_REG(regs, CTX_SECOND_BB_HEAD_L, RING_SBBADDR(base), 0);
2602 CTX_REG(regs, CTX_SECOND_BB_STATE, RING_SBBSTATE(base), 0);
2603 if (rcs) {
Chris Wilson604a8f62017-09-21 14:54:43 +01002604 struct i915_ctx_workarounds *wa_ctx = &engine->wa_ctx;
2605
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002606 CTX_REG(regs, CTX_RCS_INDIRECT_CTX, RING_INDIRECT_CTX(base), 0);
2607 CTX_REG(regs, CTX_RCS_INDIRECT_CTX_OFFSET,
2608 RING_INDIRECT_CTX_OFFSET(base), 0);
Chris Wilson604a8f62017-09-21 14:54:43 +01002609 if (wa_ctx->indirect_ctx.size) {
Chris Wilsonbde13eb2016-08-15 10:49:07 +01002610 u32 ggtt_offset = i915_ggtt_offset(wa_ctx->vma);
Arun Siluvery17ee9502015-06-19 19:07:01 +01002611
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002612 regs[CTX_RCS_INDIRECT_CTX + 1] =
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00002613 (ggtt_offset + wa_ctx->indirect_ctx.offset) |
2614 (wa_ctx->indirect_ctx.size / CACHELINE_BYTES);
Arun Siluvery17ee9502015-06-19 19:07:01 +01002615
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002616 regs[CTX_RCS_INDIRECT_CTX_OFFSET + 1] =
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002617 intel_lr_indirect_ctx_offset(engine) << 6;
Chris Wilson604a8f62017-09-21 14:54:43 +01002618 }
2619
2620 CTX_REG(regs, CTX_BB_PER_CTX_PTR, RING_BB_PER_CTX_PTR(base), 0);
2621 if (wa_ctx->per_ctx.size) {
2622 u32 ggtt_offset = i915_ggtt_offset(wa_ctx->vma);
Arun Siluvery17ee9502015-06-19 19:07:01 +01002623
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002624 regs[CTX_BB_PER_CTX_PTR + 1] =
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00002625 (ggtt_offset + wa_ctx->per_ctx.offset) | 0x01;
Arun Siluvery17ee9502015-06-19 19:07:01 +01002626 }
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002627 }
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002628
2629 regs[CTX_LRI_HEADER_1] = MI_LOAD_REGISTER_IMM(9) | MI_LRI_FORCE_POSTED;
2630
2631 CTX_REG(regs, CTX_CTX_TIMESTAMP, RING_CTX_TIMESTAMP(base), 0);
Ville Syrjälä0d925ea2015-11-04 23:20:11 +02002632 /* PDP values well be assigned later if needed */
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002633 CTX_REG(regs, CTX_PDP3_UDW, GEN8_RING_PDP_UDW(engine, 3), 0);
2634 CTX_REG(regs, CTX_PDP3_LDW, GEN8_RING_PDP_LDW(engine, 3), 0);
2635 CTX_REG(regs, CTX_PDP2_UDW, GEN8_RING_PDP_UDW(engine, 2), 0);
2636 CTX_REG(regs, CTX_PDP2_LDW, GEN8_RING_PDP_LDW(engine, 2), 0);
2637 CTX_REG(regs, CTX_PDP1_UDW, GEN8_RING_PDP_UDW(engine, 1), 0);
2638 CTX_REG(regs, CTX_PDP1_LDW, GEN8_RING_PDP_LDW(engine, 1), 0);
2639 CTX_REG(regs, CTX_PDP0_UDW, GEN8_RING_PDP_UDW(engine, 0), 0);
2640 CTX_REG(regs, CTX_PDP0_LDW, GEN8_RING_PDP_LDW(engine, 0), 0);
Michel Thierryd7b26332015-04-08 12:13:34 +01002641
Chris Wilson82ad6442018-06-05 16:37:58 +01002642 if (ppgtt && i915_vm_is_48bit(&ppgtt->vm)) {
Michel Thierry2dba3232015-07-30 11:06:23 +01002643 /* 64b PPGTT (48bit canonical)
2644 * PDP0_DESCRIPTOR contains the base address to PML4 and
2645 * other PDP Descriptors are ignored.
2646 */
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002647 ASSIGN_CTX_PML4(ppgtt, regs);
Michel Thierry2dba3232015-07-30 11:06:23 +01002648 }
2649
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002650 if (rcs) {
2651 regs[CTX_LRI_HEADER_2] = MI_LOAD_REGISTER_IMM(1);
2652 CTX_REG(regs, CTX_R_PWR_CLK_STATE, GEN8_R_PWR_CLK_STATE,
2653 make_rpcs(dev_priv));
Robert Bragg19f81df2017-06-13 12:23:03 +01002654
2655 i915_oa_init_reg_state(engine, ctx, regs);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002656 }
Chris Wilsona3aabe82016-10-04 21:11:26 +01002657}
2658
2659static int
2660populate_lr_context(struct i915_gem_context *ctx,
2661 struct drm_i915_gem_object *ctx_obj,
2662 struct intel_engine_cs *engine,
2663 struct intel_ring *ring)
2664{
2665 void *vaddr;
Chris Wilsond2b4b972017-11-10 14:26:33 +00002666 u32 *regs;
Chris Wilsona3aabe82016-10-04 21:11:26 +01002667 int ret;
2668
2669 ret = i915_gem_object_set_to_cpu_domain(ctx_obj, true);
2670 if (ret) {
2671 DRM_DEBUG_DRIVER("Could not set to CPU domain\n");
2672 return ret;
2673 }
2674
2675 vaddr = i915_gem_object_pin_map(ctx_obj, I915_MAP_WB);
2676 if (IS_ERR(vaddr)) {
2677 ret = PTR_ERR(vaddr);
2678 DRM_DEBUG_DRIVER("Could not map object pages! (%d)\n", ret);
2679 return ret;
2680 }
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002681 ctx_obj->mm.dirty = true;
Chris Wilsona3aabe82016-10-04 21:11:26 +01002682
Chris Wilsond2b4b972017-11-10 14:26:33 +00002683 if (engine->default_state) {
2684 /*
2685 * We only want to copy over the template context state;
2686 * skipping over the headers reserved for GuC communication,
2687 * leaving those as zero.
2688 */
2689 const unsigned long start = LRC_HEADER_PAGES * PAGE_SIZE;
2690 void *defaults;
2691
2692 defaults = i915_gem_object_pin_map(engine->default_state,
2693 I915_MAP_WB);
Matthew Auldaaefa062018-03-01 11:46:39 +00002694 if (IS_ERR(defaults)) {
2695 ret = PTR_ERR(defaults);
2696 goto err_unpin_ctx;
2697 }
Chris Wilsond2b4b972017-11-10 14:26:33 +00002698
2699 memcpy(vaddr + start, defaults + start, engine->context_size);
2700 i915_gem_object_unpin_map(engine->default_state);
2701 }
2702
Chris Wilsona3aabe82016-10-04 21:11:26 +01002703 /* The second page of the context object contains some fields which must
2704 * be set up prior to the first execution. */
Chris Wilsond2b4b972017-11-10 14:26:33 +00002705 regs = vaddr + LRC_STATE_PN * PAGE_SIZE;
2706 execlists_init_reg_state(regs, ctx, engine, ring);
2707 if (!engine->default_state)
2708 regs[CTX_CONTEXT_CONTROL + 1] |=
2709 _MASKED_BIT_ENABLE(CTX_CTRL_ENGINE_CTX_RESTORE_INHIBIT);
Thomas Daniel05f0add2018-03-02 18:14:59 +02002710 if (ctx == ctx->i915->preempt_context && INTEL_GEN(engine->i915) < 11)
Chris Wilson517aaff2018-01-23 21:04:12 +00002711 regs[CTX_CONTEXT_CONTROL + 1] |=
2712 _MASKED_BIT_ENABLE(CTX_CTRL_ENGINE_CTX_RESTORE_INHIBIT |
2713 CTX_CTRL_ENGINE_CTX_SAVE_INHIBIT);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002714
Matthew Auldaaefa062018-03-01 11:46:39 +00002715err_unpin_ctx:
Tvrtko Ursulin7d774ca2016-04-12 15:40:42 +01002716 i915_gem_object_unpin_map(ctx_obj);
Matthew Auldaaefa062018-03-01 11:46:39 +00002717 return ret;
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002718}
2719
Chris Wilsone2efd132016-05-24 14:53:34 +01002720static int execlists_context_deferred_alloc(struct i915_gem_context *ctx,
Chris Wilson1fc44d92018-05-17 22:26:32 +01002721 struct intel_engine_cs *engine,
2722 struct intel_context *ce)
Oscar Mateoede7d422014-07-24 17:04:12 +01002723{
Oscar Mateo8c8579172014-07-24 17:04:14 +01002724 struct drm_i915_gem_object *ctx_obj;
Chris Wilsonbf3783e2016-08-15 10:48:54 +01002725 struct i915_vma *vma;
Oscar Mateo8c8579172014-07-24 17:04:14 +01002726 uint32_t context_size;
Chris Wilson7e37f882016-08-02 22:50:21 +01002727 struct intel_ring *ring;
Chris Wilsona89d1f92018-05-02 17:38:39 +01002728 struct i915_timeline *timeline;
Oscar Mateo8c8579172014-07-24 17:04:14 +01002729 int ret;
2730
Chris Wilson1d2a19c2018-01-26 12:18:46 +00002731 if (ce->state)
2732 return 0;
Oscar Mateoede7d422014-07-24 17:04:12 +01002733
Joonas Lahtinen63ffbcd2017-04-28 10:53:36 +03002734 context_size = round_up(engine->context_size, I915_GTT_PAGE_SIZE);
Oscar Mateo8c8579172014-07-24 17:04:14 +01002735
Michel Thierry0b29c752017-09-13 09:56:00 +01002736 /*
2737 * Before the actual start of the context image, we insert a few pages
2738 * for our own use and for sharing with the GuC.
2739 */
2740 context_size += LRC_HEADER_PAGES * PAGE_SIZE;
Alex Daid1675192015-08-12 15:43:43 +01002741
Tvrtko Ursulin12d79d72016-12-01 14:16:37 +00002742 ctx_obj = i915_gem_object_create(ctx->i915, context_size);
Chris Wilson467d3572018-06-11 16:33:32 +01002743 if (IS_ERR(ctx_obj))
2744 return PTR_ERR(ctx_obj);
Oscar Mateo8c8579172014-07-24 17:04:14 +01002745
Chris Wilson82ad6442018-06-05 16:37:58 +01002746 vma = i915_vma_instance(ctx_obj, &ctx->i915->ggtt.vm, NULL);
Chris Wilsonbf3783e2016-08-15 10:48:54 +01002747 if (IS_ERR(vma)) {
2748 ret = PTR_ERR(vma);
2749 goto error_deref_obj;
2750 }
2751
Chris Wilsona89d1f92018-05-02 17:38:39 +01002752 timeline = i915_timeline_create(ctx->i915, ctx->name);
2753 if (IS_ERR(timeline)) {
2754 ret = PTR_ERR(timeline);
2755 goto error_deref_obj;
2756 }
2757
2758 ring = intel_engine_create_ring(engine, timeline, ctx->ring_size);
2759 i915_timeline_put(timeline);
Chris Wilsondca33ec2016-08-02 22:50:20 +01002760 if (IS_ERR(ring)) {
2761 ret = PTR_ERR(ring);
Nick Hoathe84fe802015-09-11 12:53:46 +01002762 goto error_deref_obj;
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002763 }
2764
Chris Wilsondca33ec2016-08-02 22:50:20 +01002765 ret = populate_lr_context(ctx, ctx_obj, engine, ring);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002766 if (ret) {
2767 DRM_DEBUG_DRIVER("Failed to populate LRC: %d\n", ret);
Chris Wilsondca33ec2016-08-02 22:50:20 +01002768 goto error_ring_free;
Oscar Mateo84c23772014-07-24 17:04:15 +01002769 }
2770
Chris Wilsondca33ec2016-08-02 22:50:20 +01002771 ce->ring = ring;
Chris Wilsonbf3783e2016-08-15 10:48:54 +01002772 ce->state = vma;
Oscar Mateoede7d422014-07-24 17:04:12 +01002773
2774 return 0;
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002775
Chris Wilsondca33ec2016-08-02 22:50:20 +01002776error_ring_free:
Chris Wilson7e37f882016-08-02 22:50:21 +01002777 intel_ring_free(ring);
Nick Hoathe84fe802015-09-11 12:53:46 +01002778error_deref_obj:
Chris Wilsonf8c417c2016-07-20 13:31:53 +01002779 i915_gem_object_put(ctx_obj);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002780 return ret;
Oscar Mateoede7d422014-07-24 17:04:12 +01002781}
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002782
Chris Wilson821ed7d2016-09-09 14:11:53 +01002783void intel_lr_context_resume(struct drm_i915_private *dev_priv)
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002784{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00002785 struct intel_engine_cs *engine;
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002786 struct i915_gem_context *ctx;
Akash Goel3b3f1652016-10-13 22:44:48 +05302787 enum intel_engine_id id;
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002788
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002789 /* Because we emit WA_TAIL_DWORDS there may be a disparity
2790 * between our bookkeeping in ce->ring->head and ce->ring->tail and
2791 * that stored in context. As we only write new commands from
2792 * ce->ring->tail onwards, everything before that is junk. If the GPU
2793 * starts reading from its RING_HEAD from the context, it may try to
2794 * execute that junk and die.
2795 *
2796 * So to avoid that we reset the context images upon resume. For
2797 * simplicity, we just zero everything out.
2798 */
Chris Wilson829a0af2017-06-20 12:05:45 +01002799 list_for_each_entry(ctx, &dev_priv->contexts.list, link) {
Akash Goel3b3f1652016-10-13 22:44:48 +05302800 for_each_engine(engine, dev_priv, id) {
Chris Wilsonab82a062018-04-30 14:15:01 +01002801 struct intel_context *ce =
2802 to_intel_context(ctx, engine);
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002803 u32 *reg;
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002804
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002805 if (!ce->state)
2806 continue;
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002807
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002808 reg = i915_gem_object_pin_map(ce->state->obj,
2809 I915_MAP_WB);
2810 if (WARN_ON(IS_ERR(reg)))
2811 continue;
Tvrtko Ursulin7d774ca2016-04-12 15:40:42 +01002812
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002813 reg += LRC_STATE_PN * PAGE_SIZE / sizeof(*reg);
2814 reg[CTX_RING_HEAD+1] = 0;
2815 reg[CTX_RING_TAIL+1] = 0;
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002816
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002817 ce->state->obj->mm.dirty = true;
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002818 i915_gem_object_unpin_map(ce->state->obj);
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002819
Chris Wilsone6ba9992017-04-25 14:00:49 +01002820 intel_ring_reset(ce->ring, 0);
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002821 }
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002822 }
2823}
Chris Wilson2c665552018-04-04 10:33:29 +01002824
2825#if IS_ENABLED(CONFIG_DRM_I915_SELFTEST)
2826#include "selftests/intel_lrc.c"
2827#endif