blob: 9b1f0e5211a06a17551897f2088a5cbfe0aa1f3b [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
Chris Wilsonf6322ed2018-02-22 14:22:29 +0000545 /*
546 * Switch to our empty preempt context so
547 * the state of the GPU is known (idle).
548 */
Chris Wilson16a87392017-12-20 09:06:26 +0000549 GEM_TRACE("%s\n", engine->name);
Thomas Daniel05f0add2018-03-02 18:14:59 +0200550 for (n = execlists_num_ports(execlists); --n; )
551 write_desc(execlists, 0, n);
Chris Wilsonbeecec92017-10-03 21:34:52 +0100552
Thomas Daniel05f0add2018-03-02 18:14:59 +0200553 write_desc(execlists, ce->lrc_desc, n);
554
555 /* we need to manually load the submit queue */
556 if (execlists->ctrl_reg)
557 writel(EL_CTRL_LOAD, execlists->ctrl_reg);
558
Chris Wilsonef2fb722018-05-16 19:33:50 +0100559 execlists_clear_active(execlists, EXECLISTS_ACTIVE_HWACK);
560 execlists_set_active(execlists, EXECLISTS_ACTIVE_PREEMPT);
561}
562
563static void complete_preempt_context(struct intel_engine_execlists *execlists)
564{
565 GEM_BUG_ON(!execlists_is_active(execlists, EXECLISTS_ACTIVE_PREEMPT));
566
Chris Wilson0f6b79f2018-07-16 14:21:54 +0100567 if (inject_preempt_hang(execlists))
568 return;
569
Chris Wilsonef2fb722018-05-16 19:33:50 +0100570 execlists_cancel_port_requests(execlists);
Chris Wilson9512f982018-06-28 21:12:11 +0100571 __unwind_incomplete_requests(container_of(execlists,
572 struct intel_engine_cs,
573 execlists));
Chris Wilsonbeecec92017-10-03 21:34:52 +0100574}
575
Chris Wilson9512f982018-06-28 21:12:11 +0100576static void execlists_dequeue(struct intel_engine_cs *engine)
Chris Wilson70c2a242016-09-09 14:11:46 +0100577{
Mika Kuoppala7a62cc62017-09-22 15:43:06 +0300578 struct intel_engine_execlists * const execlists = &engine->execlists;
579 struct execlist_port *port = execlists->port;
Mika Kuoppala76e70082017-09-22 15:43:07 +0300580 const struct execlist_port * const last_port =
581 &execlists->port[execlists->port_mask];
Chris Wilsone61e0f52018-02-21 09:56:36 +0000582 struct i915_request *last = port_request(port);
Chris Wilson20311bd2016-11-14 20:41:03 +0000583 struct rb_node *rb;
Chris Wilson70c2a242016-09-09 14:11:46 +0100584 bool submit = false;
Michel Thierryacdd8842014-07-24 17:04:38 +0100585
Chris Wilson9512f982018-06-28 21:12:11 +0100586 /*
587 * Hardware submission is through 2 ports. Conceptually each port
Chris Wilson70c2a242016-09-09 14:11:46 +0100588 * has a (RING_START, RING_HEAD, RING_TAIL) tuple. RING_START is
589 * static for a context, and unique to each, so we only execute
590 * requests belonging to a single context from each ring. RING_HEAD
591 * is maintained by the CS in the context image, it marks the place
592 * where it got up to last time, and through RING_TAIL we tell the CS
593 * where we want to execute up to this time.
594 *
595 * In this list the requests are in order of execution. Consecutive
596 * requests from the same context are adjacent in the ringbuffer. We
597 * can combine these requests into a single RING_TAIL update:
598 *
599 * RING_HEAD...req1...req2
600 * ^- RING_TAIL
601 * since to execute req2 the CS must first execute req1.
602 *
603 * Our goal then is to point each port to the end of a consecutive
604 * sequence of requests as being the most optimal (fewest wake ups
605 * and context switches) submission.
606 */
607
Chris Wilsonbeecec92017-10-03 21:34:52 +0100608 if (last) {
609 /*
610 * Don't resubmit or switch until all outstanding
611 * preemptions (lite-restore) are seen. Then we
612 * know the next preemption status we see corresponds
613 * to this ELSP update.
614 */
Chris Wilsoneed7ec52018-03-24 12:58:29 +0000615 GEM_BUG_ON(!execlists_is_active(execlists,
616 EXECLISTS_ACTIVE_USER));
Michel Thierryba74cb12017-11-20 12:34:58 +0000617 GEM_BUG_ON(!port_count(&port[0]));
Chris Wilsonbeecec92017-10-03 21:34:52 +0100618
Michel Thierryba74cb12017-11-20 12:34:58 +0000619 /*
620 * If we write to ELSP a second time before the HW has had
621 * a chance to respond to the previous write, we can confuse
622 * the HW and hit "undefined behaviour". After writing to ELSP,
623 * we must then wait until we see a context-switch event from
624 * the HW to indicate that it has had a chance to respond.
625 */
626 if (!execlists_is_active(execlists, EXECLISTS_ACTIVE_HWACK))
Chris Wilson0b02bef2018-06-28 21:12:04 +0100627 return;
Michel Thierryba74cb12017-11-20 12:34:58 +0000628
Chris Wilsonf6322ed2018-02-22 14:22:29 +0000629 if (need_preempt(engine, last, execlists->queue_priority)) {
Chris Wilsonbeecec92017-10-03 21:34:52 +0100630 inject_preempt_context(engine);
Chris Wilson0b02bef2018-06-28 21:12:04 +0100631 return;
Chris Wilsonbeecec92017-10-03 21:34:52 +0100632 }
Chris Wilsonf6322ed2018-02-22 14:22:29 +0000633
634 /*
635 * In theory, we could coalesce more requests onto
636 * the second port (the first port is active, with
637 * no preemptions pending). However, that means we
638 * then have to deal with the possible lite-restore
639 * of the second port (as we submit the ELSP, there
640 * may be a context-switch) but also we may complete
641 * the resubmission before the context-switch. Ergo,
642 * coalescing onto the second port will cause a
643 * preemption event, but we cannot predict whether
644 * that will affect port[0] or port[1].
645 *
646 * If the second port is already active, we can wait
647 * until the next context-switch before contemplating
648 * new requests. The GPU will be busy and we should be
649 * able to resubmit the new ELSP before it idles,
650 * avoiding pipeline bubbles (momentary pauses where
651 * the driver is unable to keep up the supply of new
652 * work). However, we have to double check that the
653 * priorities of the ports haven't been switch.
654 */
655 if (port_count(&port[1]))
Chris Wilson0b02bef2018-06-28 21:12:04 +0100656 return;
Chris Wilsonf6322ed2018-02-22 14:22:29 +0000657
658 /*
659 * WaIdleLiteRestore:bdw,skl
660 * Apply the wa NOOPs to prevent
661 * ring:HEAD == rq:TAIL as we resubmit the
662 * request. See gen8_emit_breadcrumb() for
663 * where we prepare the padding after the
664 * end of the request.
665 */
666 last->tail = last->wa_tail;
Chris Wilsonbeecec92017-10-03 21:34:52 +0100667 }
668
Chris Wilson655250a2018-06-29 08:53:20 +0100669 while ((rb = rb_first_cached(&execlists->queue))) {
Chris Wilsonf6322ed2018-02-22 14:22:29 +0000670 struct i915_priolist *p = to_priolist(rb);
Chris Wilsone61e0f52018-02-21 09:56:36 +0000671 struct i915_request *rq, *rn;
Chris Wilson20311bd2016-11-14 20:41:03 +0000672
Chris Wilson0c7112a2018-04-18 19:40:51 +0100673 list_for_each_entry_safe(rq, rn, &p->requests, sched.link) {
Chris Wilson6c067572017-05-17 13:10:03 +0100674 /*
675 * Can we combine this request with the current port?
676 * It has to be the same context/ringbuffer and not
677 * have any exceptions (e.g. GVT saying never to
678 * combine contexts).
679 *
680 * If we can combine the requests, we can execute both
681 * by updating the RING_TAIL to point to the end of the
682 * second request, and so we never need to tell the
683 * hardware about the first.
Chris Wilson70c2a242016-09-09 14:11:46 +0100684 */
Chris Wilson1fc44d92018-05-17 22:26:32 +0100685 if (last &&
686 !can_merge_ctx(rq->hw_context, last->hw_context)) {
Chris Wilson6c067572017-05-17 13:10:03 +0100687 /*
688 * If we are on the second port and cannot
689 * combine this request with the last, then we
690 * are done.
691 */
Mika Kuoppala76e70082017-09-22 15:43:07 +0300692 if (port == last_port) {
Chris Wilson6c067572017-05-17 13:10:03 +0100693 __list_del_many(&p->requests,
Chris Wilson0c7112a2018-04-18 19:40:51 +0100694 &rq->sched.link);
Chris Wilson6c067572017-05-17 13:10:03 +0100695 goto done;
696 }
Chris Wilson70c2a242016-09-09 14:11:46 +0100697
Chris Wilson6c067572017-05-17 13:10:03 +0100698 /*
699 * If GVT overrides us we only ever submit
700 * port[0], leaving port[1] empty. Note that we
701 * also have to be careful that we don't queue
702 * the same context (even though a different
703 * request) to the second port.
704 */
Chris Wilson1fc44d92018-05-17 22:26:32 +0100705 if (ctx_single_port_submission(last->hw_context) ||
706 ctx_single_port_submission(rq->hw_context)) {
Chris Wilson6c067572017-05-17 13:10:03 +0100707 __list_del_many(&p->requests,
Chris Wilson0c7112a2018-04-18 19:40:51 +0100708 &rq->sched.link);
Chris Wilson6c067572017-05-17 13:10:03 +0100709 goto done;
710 }
Chris Wilson70c2a242016-09-09 14:11:46 +0100711
Chris Wilson1fc44d92018-05-17 22:26:32 +0100712 GEM_BUG_ON(last->hw_context == rq->hw_context);
Chris Wilson70c2a242016-09-09 14:11:46 +0100713
Chris Wilson6c067572017-05-17 13:10:03 +0100714 if (submit)
715 port_assign(port, last);
716 port++;
Mika Kuoppala7a62cc62017-09-22 15:43:06 +0300717
718 GEM_BUG_ON(port_isset(port));
Chris Wilson6c067572017-05-17 13:10:03 +0100719 }
720
Chris Wilson0c7112a2018-04-18 19:40:51 +0100721 INIT_LIST_HEAD(&rq->sched.link);
Chris Wilsone61e0f52018-02-21 09:56:36 +0000722 __i915_request_submit(rq);
723 trace_i915_request_in(rq, port_index(port, execlists));
Chris Wilson6c067572017-05-17 13:10:03 +0100724 last = rq;
725 submit = true;
Chris Wilson70c2a242016-09-09 14:11:46 +0100726 }
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000727
Chris Wilson655250a2018-06-29 08:53:20 +0100728 rb_erase_cached(&p->node, &execlists->queue);
Chris Wilson6c067572017-05-17 13:10:03 +0100729 INIT_LIST_HEAD(&p->requests);
730 if (p->priority != I915_PRIORITY_NORMAL)
Chris Wilsonc5cf9a92017-05-17 13:10:04 +0100731 kmem_cache_free(engine->i915->priorities, p);
Chris Wilsonf6322ed2018-02-22 14:22:29 +0000732 }
Chris Wilson15c83c42018-04-11 11:39:29 +0100733
Chris Wilson6c067572017-05-17 13:10:03 +0100734done:
Chris Wilson15c83c42018-04-11 11:39:29 +0100735 /*
736 * Here be a bit of magic! Or sleight-of-hand, whichever you prefer.
737 *
738 * We choose queue_priority such that if we add a request of greater
739 * priority than this, we kick the submission tasklet to decide on
740 * the right order of submitting the requests to hardware. We must
741 * also be prepared to reorder requests as they are in-flight on the
742 * HW. We derive the queue_priority then as the first "hole" in
743 * the HW submission ports and if there are no available slots,
744 * the priority of the lowest executing request, i.e. last.
745 *
746 * When we do receive a higher priority request ready to run from the
747 * user, see queue_request(), the queue_priority is bumped to that
748 * request triggering preemption on the next dequeue (or subsequent
749 * interrupt for secondary ports).
750 */
751 execlists->queue_priority =
752 port != execlists->port ? rq_prio(last) : INT_MIN;
753
Chris Wilson0b02bef2018-06-28 21:12:04 +0100754 if (submit) {
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100755 port_assign(port, last);
Chris Wilson0b02bef2018-06-28 21:12:04 +0100756 execlists_submit_ports(engine);
757 }
Chris Wilson339ccd32018-02-15 16:25:53 +0000758
759 /* We must always keep the beast fed if we have work piled up */
Chris Wilson655250a2018-06-29 08:53:20 +0100760 GEM_BUG_ON(rb_first_cached(&execlists->queue) &&
761 !port_isset(execlists->port));
Chris Wilson339ccd32018-02-15 16:25:53 +0000762
Chris Wilson4413c472018-05-08 22:03:17 +0100763 /* Re-evaluate the executing context setup after each preemptive kick */
764 if (last)
Chris Wilsonf2605202018-03-31 14:06:26 +0100765 execlists_user_begin(execlists, execlists->port);
Chris Wilson4413c472018-05-08 22:03:17 +0100766
Chris Wilson0b02bef2018-06-28 21:12:04 +0100767 /* If the engine is now idle, so should be the flag; and vice versa. */
768 GEM_BUG_ON(execlists_is_active(&engine->execlists,
769 EXECLISTS_ACTIVE_USER) ==
770 !port_isset(engine->execlists.port));
Chris Wilson4413c472018-05-08 22:03:17 +0100771}
772
Michał Winiarskic41937fd2017-10-26 15:35:58 +0200773void
Michał Winiarskia4598d12017-10-25 22:00:18 +0200774execlists_cancel_port_requests(struct intel_engine_execlists * const execlists)
Mika Kuoppalacf4591d2017-09-22 15:43:05 +0300775{
Chris Wilson3f9e6cd2017-09-25 13:49:27 +0100776 struct execlist_port *port = execlists->port;
Mika Kuoppaladc2279e2017-10-10 14:48:57 +0300777 unsigned int num_ports = execlists_num_ports(execlists);
Mika Kuoppalacf4591d2017-09-22 15:43:05 +0300778
Chris Wilson3f9e6cd2017-09-25 13:49:27 +0100779 while (num_ports-- && port_isset(port)) {
Chris Wilsone61e0f52018-02-21 09:56:36 +0000780 struct i915_request *rq = port_request(port);
Chris Wilson7e44fc22017-09-26 11:17:19 +0100781
Tvrtko Ursulin0c5c7df2018-04-06 13:35:14 +0100782 GEM_TRACE("%s:port%u global=%d (fence %llx:%d), (current %d)\n",
783 rq->engine->name,
784 (unsigned int)(port - execlists->port),
785 rq->global_seqno,
786 rq->fence.context, rq->fence.seqno,
787 intel_engine_get_seqno(rq->engine));
788
Chris Wilson4a118ec2017-10-23 22:32:36 +0100789 GEM_BUG_ON(!execlists->active);
Chris Wilsonb9b77422018-05-03 00:02:02 +0100790 execlists_context_schedule_out(rq,
791 i915_request_completed(rq) ?
792 INTEL_CONTEXT_SCHEDULE_OUT :
793 INTEL_CONTEXT_SCHEDULE_PREEMPTED);
Weinan Li702791f2018-03-06 10:15:57 +0800794
Chris Wilsone61e0f52018-02-21 09:56:36 +0000795 i915_request_put(rq);
Chris Wilson7e44fc22017-09-26 11:17:19 +0100796
Chris Wilson3f9e6cd2017-09-25 13:49:27 +0100797 memset(port, 0, sizeof(*port));
798 port++;
799 }
Chris Wilsoneed7ec52018-03-24 12:58:29 +0000800
Chris Wilson00511632018-07-16 13:54:24 +0100801 execlists_clear_all_active(execlists);
Mika Kuoppalacf4591d2017-09-22 15:43:05 +0300802}
803
Chris Wilsonf4b58f02018-06-28 21:12:08 +0100804static void reset_csb_pointers(struct intel_engine_execlists *execlists)
805{
806 /*
807 * After a reset, the HW starts writing into CSB entry [0]. We
808 * therefore have to set our HEAD pointer back one entry so that
809 * the *first* entry we check is entry 0. To complicate this further,
810 * as we don't wait for the first interrupt after reset, we have to
811 * fake the HW write to point back to the last entry so that our
812 * inline comparison of our cached head position against the last HW
813 * write works even before the first interrupt.
814 */
815 execlists->csb_head = execlists->csb_write_reset;
816 WRITE_ONCE(*execlists->csb_write, execlists->csb_write_reset);
817}
818
Chris Wilsonf1a498f2018-07-16 09:03:30 +0100819static void nop_submission_tasklet(unsigned long data)
820{
821 /* The driver is wedged; don't process any more events. */
822}
823
Chris Wilson27a5f612017-09-15 18:31:00 +0100824static void execlists_cancel_requests(struct intel_engine_cs *engine)
825{
Mika Kuoppalab620e872017-09-22 15:43:03 +0300826 struct intel_engine_execlists * const execlists = &engine->execlists;
Chris Wilsone61e0f52018-02-21 09:56:36 +0000827 struct i915_request *rq, *rn;
Chris Wilson27a5f612017-09-15 18:31:00 +0100828 struct rb_node *rb;
829 unsigned long flags;
Chris Wilson27a5f612017-09-15 18:31:00 +0100830
Tvrtko Ursulin0c5c7df2018-04-06 13:35:14 +0100831 GEM_TRACE("%s current %d\n",
832 engine->name, intel_engine_get_seqno(engine));
Chris Wilson963ddd62018-03-02 11:33:24 +0000833
Chris Wilsona3e38832018-03-02 14:32:45 +0000834 /*
835 * Before we call engine->cancel_requests(), we should have exclusive
836 * access to the submission state. This is arranged for us by the
837 * caller disabling the interrupt generation, the tasklet and other
838 * threads that may then access the same state, giving us a free hand
839 * to reset state. However, we still need to let lockdep be aware that
840 * we know this state may be accessed in hardirq context, so we
841 * disable the irq around this manipulation and we want to keep
842 * the spinlock focused on its duties and not accidentally conflate
843 * coverage to the submission's irq state. (Similarly, although we
844 * shouldn't need to disable irq around the manipulation of the
845 * submission's irq state, we also wish to remind ourselves that
846 * it is irq state.)
847 */
Chris Wilsond8857d52018-06-28 21:12:05 +0100848 spin_lock_irqsave(&engine->timeline.lock, flags);
Chris Wilson27a5f612017-09-15 18:31:00 +0100849
850 /* Cancel the requests on the HW and clear the ELSP tracker. */
Michał Winiarskia4598d12017-10-25 22:00:18 +0200851 execlists_cancel_port_requests(execlists);
Chris Wilson00511632018-07-16 13:54:24 +0100852 execlists_user_end(execlists);
Chris Wilson27a5f612017-09-15 18:31:00 +0100853
854 /* Mark all executing requests as skipped. */
Chris Wilsona89d1f92018-05-02 17:38:39 +0100855 list_for_each_entry(rq, &engine->timeline.requests, link) {
Chris Wilson27a5f612017-09-15 18:31:00 +0100856 GEM_BUG_ON(!rq->global_seqno);
Chris Wilsone61e0f52018-02-21 09:56:36 +0000857 if (!i915_request_completed(rq))
Chris Wilson27a5f612017-09-15 18:31:00 +0100858 dma_fence_set_error(&rq->fence, -EIO);
859 }
860
861 /* Flush the queued requests to the timeline list (for retiring). */
Chris Wilson655250a2018-06-29 08:53:20 +0100862 while ((rb = rb_first_cached(&execlists->queue))) {
Chris Wilsonf6322ed2018-02-22 14:22:29 +0000863 struct i915_priolist *p = to_priolist(rb);
Chris Wilson27a5f612017-09-15 18:31:00 +0100864
Chris Wilson0c7112a2018-04-18 19:40:51 +0100865 list_for_each_entry_safe(rq, rn, &p->requests, sched.link) {
866 INIT_LIST_HEAD(&rq->sched.link);
Chris Wilson27a5f612017-09-15 18:31:00 +0100867
868 dma_fence_set_error(&rq->fence, -EIO);
Chris Wilsone61e0f52018-02-21 09:56:36 +0000869 __i915_request_submit(rq);
Chris Wilson27a5f612017-09-15 18:31:00 +0100870 }
871
Chris Wilson655250a2018-06-29 08:53:20 +0100872 rb_erase_cached(&p->node, &execlists->queue);
Chris Wilson27a5f612017-09-15 18:31:00 +0100873 INIT_LIST_HEAD(&p->requests);
874 if (p->priority != I915_PRIORITY_NORMAL)
875 kmem_cache_free(engine->i915->priorities, p);
876 }
877
878 /* Remaining _unready_ requests will be nop'ed when submitted */
879
Chris Wilsonf6322ed2018-02-22 14:22:29 +0000880 execlists->queue_priority = INT_MIN;
Chris Wilson655250a2018-06-29 08:53:20 +0100881 execlists->queue = RB_ROOT_CACHED;
Chris Wilson3f9e6cd2017-09-25 13:49:27 +0100882 GEM_BUG_ON(port_isset(execlists->port));
Chris Wilson27a5f612017-09-15 18:31:00 +0100883
Chris Wilsonf1a498f2018-07-16 09:03:30 +0100884 GEM_BUG_ON(__tasklet_is_enabled(&execlists->tasklet));
885 execlists->tasklet.func = nop_submission_tasklet;
886
Chris Wilsond8857d52018-06-28 21:12:05 +0100887 spin_unlock_irqrestore(&engine->timeline.lock, flags);
Chris Wilson27a5f612017-09-15 18:31:00 +0100888}
889
Chris Wilson9512f982018-06-28 21:12:11 +0100890static inline bool
891reset_in_progress(const struct intel_engine_execlists *execlists)
892{
893 return unlikely(!__tasklet_is_enabled(&execlists->tasklet));
894}
895
Chris Wilson73377db2018-05-16 19:33:53 +0100896static void process_csb(struct intel_engine_cs *engine)
Thomas Daniele981e7b2014-07-24 17:04:39 +0100897{
Mika Kuoppalab620e872017-09-22 15:43:03 +0300898 struct intel_engine_execlists * const execlists = &engine->execlists;
Chris Wilsonf2605202018-03-31 14:06:26 +0100899 struct execlist_port *port = execlists->port;
Chris Wilsonbc4237e2018-06-28 21:12:07 +0100900 const u32 * const buf = execlists->csb_status;
901 u8 head, tail;
Thomas Daniele981e7b2014-07-24 17:04:39 +0100902
Chris Wilsonbc4237e2018-06-28 21:12:07 +0100903 /*
904 * Note that csb_write, csb_status may be either in HWSP or mmio.
905 * When reading from the csb_write mmio register, we have to be
906 * careful to only use the GEN8_CSB_WRITE_PTR portion, which is
907 * the low 4bits. As it happens we know the next 4bits are always
908 * zero and so we can simply masked off the low u8 of the register
909 * and treat it identically to reading from the HWSP (without having
910 * to use explicit shifting and masking, and probably bifurcating
911 * the code to handle the legacy mmio read).
912 */
913 head = execlists->csb_head;
914 tail = READ_ONCE(*execlists->csb_write);
915 GEM_TRACE("%s cs-irq head=%d, tail=%d\n", engine->name, head, tail);
916 if (unlikely(head == tail))
917 return;
Chris Wilson9153e6b2018-03-21 09:10:27 +0000918
Chris Wilsonbc4237e2018-06-28 21:12:07 +0100919 /*
920 * Hopefully paired with a wmb() in HW!
921 *
922 * We must complete the read of the write pointer before any reads
923 * from the CSB, so that we do not see stale values. Without an rmb
924 * (lfence) the HW may speculatively perform the CSB[] reads *before*
925 * we perform the READ_ONCE(*csb_write).
926 */
927 rmb();
Chris Wilsonbb5db7e2018-01-22 10:07:14 +0000928
Chris Wilsonbc4237e2018-06-28 21:12:07 +0100929 do {
Chris Wilson8ea397f2018-06-28 21:12:06 +0100930 struct i915_request *rq;
931 unsigned int status;
932 unsigned int count;
933
934 if (++head == GEN8_CSB_ENTRIES)
935 head = 0;
936
937 /*
938 * We are flying near dragons again.
939 *
940 * We hold a reference to the request in execlist_port[]
941 * but no more than that. We are operating in softirq
942 * context and so cannot hold any mutex or sleep. That
943 * prevents us stopping the requests we are processing
944 * in port[] from being retired simultaneously (the
945 * breadcrumb will be complete before we see the
946 * context-switch). As we only hold the reference to the
947 * request, any pointer chasing underneath the request
948 * is subject to a potential use-after-free. Thus we
949 * store all of the bookkeeping within port[] as
950 * required, and avoid using unguarded pointers beneath
951 * request itself. The same applies to the atomic
952 * status notifier.
953 */
954
Chris Wilson8ea397f2018-06-28 21:12:06 +0100955 GEM_TRACE("%s csb[%d]: status=0x%08x:0x%08x, active=0x%x\n",
956 engine->name, head,
Chris Wilsonbc4237e2018-06-28 21:12:07 +0100957 buf[2 * head + 0], buf[2 * head + 1],
Chris Wilson8ea397f2018-06-28 21:12:06 +0100958 execlists->active);
959
Chris Wilsonbc4237e2018-06-28 21:12:07 +0100960 status = buf[2 * head];
Chris Wilson8ea397f2018-06-28 21:12:06 +0100961 if (status & (GEN8_CTX_STATUS_IDLE_ACTIVE |
962 GEN8_CTX_STATUS_PREEMPTED))
963 execlists_set_active(execlists,
964 EXECLISTS_ACTIVE_HWACK);
965 if (status & GEN8_CTX_STATUS_ACTIVE_IDLE)
966 execlists_clear_active(execlists,
967 EXECLISTS_ACTIVE_HWACK);
968
969 if (!(status & GEN8_CTX_STATUS_COMPLETED_MASK))
970 continue;
971
972 /* We should never get a COMPLETED | IDLE_ACTIVE! */
973 GEM_BUG_ON(status & GEN8_CTX_STATUS_IDLE_ACTIVE);
974
975 if (status & GEN8_CTX_STATUS_COMPLETE &&
976 buf[2*head + 1] == execlists->preempt_complete_status) {
977 GEM_TRACE("%s preempt-idle\n", engine->name);
978 complete_preempt_context(execlists);
979 continue;
Chris Wilson767a9832017-09-13 09:56:05 +0100980 }
Chris Wilson8ea397f2018-06-28 21:12:06 +0100981
982 if (status & GEN8_CTX_STATUS_PREEMPTED &&
983 execlists_is_active(execlists,
984 EXECLISTS_ACTIVE_PREEMPT))
985 continue;
986
987 GEM_BUG_ON(!execlists_is_active(execlists,
988 EXECLISTS_ACTIVE_USER));
989
990 rq = port_unpack(port, &count);
991 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 +0000992 engine->name,
Chris Wilson8ea397f2018-06-28 21:12:06 +0100993 port->context_id, count,
994 rq ? rq->global_seqno : 0,
995 rq ? rq->fence.context : 0,
996 rq ? rq->fence.seqno : 0,
997 intel_engine_get_seqno(engine),
998 rq ? rq_prio(rq) : 0);
Mika Kuoppalab620e872017-09-22 15:43:03 +0300999
Chris Wilson8ea397f2018-06-28 21:12:06 +01001000 /* Check the context/desc id for this event matches */
1001 GEM_DEBUG_BUG_ON(buf[2 * head + 1] != port->context_id);
Chris Wilsona37951a2017-01-24 11:00:06 +00001002
Chris Wilson8ea397f2018-06-28 21:12:06 +01001003 GEM_BUG_ON(count == 0);
1004 if (--count == 0) {
1005 /*
1006 * On the final event corresponding to the
1007 * submission of this context, we expect either
1008 * an element-switch event or a completion
1009 * event (and on completion, the active-idle
1010 * marker). No more preemptions, lite-restore
1011 * or otherwise.
1012 */
1013 GEM_BUG_ON(status & GEN8_CTX_STATUS_PREEMPTED);
1014 GEM_BUG_ON(port_isset(&port[1]) &&
1015 !(status & GEN8_CTX_STATUS_ELEMENT_SWITCH));
1016 GEM_BUG_ON(!port_isset(&port[1]) &&
1017 !(status & GEN8_CTX_STATUS_ACTIVE_IDLE));
Thomas Daniele981e7b2014-07-24 17:04:39 +01001018
Chris Wilson73377db2018-05-16 19:33:53 +01001019 /*
Chris Wilson8ea397f2018-06-28 21:12:06 +01001020 * We rely on the hardware being strongly
1021 * ordered, that the breadcrumb write is
1022 * coherent (visible from the CPU) before the
1023 * user interrupt and CSB is processed.
Chris Wilson2ffe80a2017-02-06 17:05:02 +00001024 */
Chris Wilson8ea397f2018-06-28 21:12:06 +01001025 GEM_BUG_ON(!i915_request_completed(rq));
Chris Wilson2ffe80a2017-02-06 17:05:02 +00001026
Chris Wilson8ea397f2018-06-28 21:12:06 +01001027 execlists_context_schedule_out(rq,
1028 INTEL_CONTEXT_SCHEDULE_OUT);
1029 i915_request_put(rq);
Michel Thierryba74cb12017-11-20 12:34:58 +00001030
Chris Wilson8ea397f2018-06-28 21:12:06 +01001031 GEM_TRACE("%s completed ctx=%d\n",
1032 engine->name, port->context_id);
Michel Thierryba74cb12017-11-20 12:34:58 +00001033
Chris Wilson8ea397f2018-06-28 21:12:06 +01001034 port = execlists_port_complete(execlists, port);
1035 if (port_isset(port))
1036 execlists_user_begin(execlists, port);
1037 else
1038 execlists_user_end(execlists);
1039 } else {
1040 port_set(port, port_pack(rq, count));
Chris Wilson4af0d722017-03-25 20:10:53 +00001041 }
Chris Wilsonbc4237e2018-06-28 21:12:07 +01001042 } while (head != tail);
Tvrtko Ursulin26720ab2016-03-17 12:59:46 +00001043
Chris Wilsonbc4237e2018-06-28 21:12:07 +01001044 execlists->csb_head = head;
Chris Wilson73377db2018-05-16 19:33:53 +01001045}
1046
Chris Wilson9512f982018-06-28 21:12:11 +01001047static void __execlists_submission_tasklet(struct intel_engine_cs *const engine)
Chris Wilson73377db2018-05-16 19:33:53 +01001048{
Chris Wilson9512f982018-06-28 21:12:11 +01001049 lockdep_assert_held(&engine->timeline.lock);
Chris Wilson73377db2018-05-16 19:33:53 +01001050
Chris Wilsonfd8526e2018-06-28 21:12:10 +01001051 process_csb(engine);
Chris Wilson73377db2018-05-16 19:33:53 +01001052 if (!execlists_is_active(&engine->execlists, EXECLISTS_ACTIVE_PREEMPT))
Chris Wilson70c2a242016-09-09 14:11:46 +01001053 execlists_dequeue(engine);
Thomas Daniele981e7b2014-07-24 17:04:39 +01001054}
1055
Chris Wilson9512f982018-06-28 21:12:11 +01001056/*
1057 * Check the unread Context Status Buffers and manage the submission of new
1058 * contexts to the ELSP accordingly.
1059 */
1060static void execlists_submission_tasklet(unsigned long data)
1061{
1062 struct intel_engine_cs * const engine = (struct intel_engine_cs *)data;
1063 unsigned long flags;
1064
1065 GEM_TRACE("%s awake?=%d, active=%x\n",
1066 engine->name,
1067 engine->i915->gt.awake,
1068 engine->execlists.active);
1069
1070 spin_lock_irqsave(&engine->timeline.lock, flags);
Chris Wilsond78d3342018-07-19 08:50:29 +01001071 __execlists_submission_tasklet(engine);
Chris Wilson9512f982018-06-28 21:12:11 +01001072 spin_unlock_irqrestore(&engine->timeline.lock, flags);
1073}
1074
Chris Wilsonf6322ed2018-02-22 14:22:29 +00001075static void queue_request(struct intel_engine_cs *engine,
Chris Wilson0c7112a2018-04-18 19:40:51 +01001076 struct i915_sched_node *node,
Chris Wilsonf6322ed2018-02-22 14:22:29 +00001077 int prio)
Chris Wilson27606fd2017-09-16 21:44:13 +01001078{
Chris Wilson0c7112a2018-04-18 19:40:51 +01001079 list_add_tail(&node->link,
Chris Wilson87c7acf2018-05-08 01:30:45 +01001080 &lookup_priolist(engine, prio)->requests);
Chris Wilsonf6322ed2018-02-22 14:22:29 +00001081}
Chris Wilson27606fd2017-09-16 21:44:13 +01001082
Chris Wilson9512f982018-06-28 21:12:11 +01001083static void __update_queue(struct intel_engine_cs *engine, int prio)
Chris Wilsonae2f5c02018-03-26 12:50:34 +01001084{
1085 engine->execlists.queue_priority = prio;
Chris Wilson9512f982018-06-28 21:12:11 +01001086}
1087
1088static void __submit_queue_imm(struct intel_engine_cs *engine)
1089{
1090 struct intel_engine_execlists * const execlists = &engine->execlists;
1091
1092 if (reset_in_progress(execlists))
1093 return; /* defer until we restart the engine following reset */
1094
1095 if (execlists->tasklet.func == execlists_submission_tasklet)
1096 __execlists_submission_tasklet(engine);
1097 else
1098 tasklet_hi_schedule(&execlists->tasklet);
Chris Wilsonae2f5c02018-03-26 12:50:34 +01001099}
1100
Chris Wilsonf6322ed2018-02-22 14:22:29 +00001101static void submit_queue(struct intel_engine_cs *engine, int prio)
1102{
Chris Wilson9512f982018-06-28 21:12:11 +01001103 if (prio > engine->execlists.queue_priority) {
1104 __update_queue(engine, prio);
1105 __submit_queue_imm(engine);
1106 }
Chris Wilson27606fd2017-09-16 21:44:13 +01001107}
1108
Chris Wilsone61e0f52018-02-21 09:56:36 +00001109static void execlists_submit_request(struct i915_request *request)
Michel Thierryacdd8842014-07-24 17:04:38 +01001110{
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +00001111 struct intel_engine_cs *engine = request->engine;
Chris Wilson5590af32016-09-09 14:11:54 +01001112 unsigned long flags;
Michel Thierryacdd8842014-07-24 17:04:38 +01001113
Chris Wilson663f71e2016-11-14 20:41:00 +00001114 /* Will be called from irq-context when using foreign fences. */
Chris Wilsona89d1f92018-05-02 17:38:39 +01001115 spin_lock_irqsave(&engine->timeline.lock, flags);
Michel Thierryacdd8842014-07-24 17:04:38 +01001116
Chris Wilson0c7112a2018-04-18 19:40:51 +01001117 queue_request(engine, &request->sched, rq_prio(request));
Michel Thierryacdd8842014-07-24 17:04:38 +01001118
Chris Wilson655250a2018-06-29 08:53:20 +01001119 GEM_BUG_ON(RB_EMPTY_ROOT(&engine->execlists.queue.rb_root));
Chris Wilson0c7112a2018-04-18 19:40:51 +01001120 GEM_BUG_ON(list_empty(&request->sched.link));
Chris Wilson6c067572017-05-17 13:10:03 +01001121
Chris Wilson9512f982018-06-28 21:12:11 +01001122 submit_queue(engine, rq_prio(request));
1123
Chris Wilsona89d1f92018-05-02 17:38:39 +01001124 spin_unlock_irqrestore(&engine->timeline.lock, flags);
Michel Thierryacdd8842014-07-24 17:04:38 +01001125}
1126
Chris Wilson0c7112a2018-04-18 19:40:51 +01001127static struct i915_request *sched_to_request(struct i915_sched_node *node)
Chris Wilson1f181222017-10-03 21:34:50 +01001128{
Chris Wilson0c7112a2018-04-18 19:40:51 +01001129 return container_of(node, struct i915_request, sched);
Chris Wilson1f181222017-10-03 21:34:50 +01001130}
1131
Chris Wilson20311bd2016-11-14 20:41:03 +00001132static struct intel_engine_cs *
Chris Wilson0c7112a2018-04-18 19:40:51 +01001133sched_lock_engine(struct i915_sched_node *node, struct intel_engine_cs *locked)
Chris Wilson20311bd2016-11-14 20:41:03 +00001134{
Chris Wilson0c7112a2018-04-18 19:40:51 +01001135 struct intel_engine_cs *engine = sched_to_request(node)->engine;
Chris Wilson20311bd2016-11-14 20:41:03 +00001136
Chris Wilsona79a5242017-03-27 21:21:43 +01001137 GEM_BUG_ON(!locked);
1138
Chris Wilson20311bd2016-11-14 20:41:03 +00001139 if (engine != locked) {
Chris Wilsona89d1f92018-05-02 17:38:39 +01001140 spin_unlock(&locked->timeline.lock);
1141 spin_lock(&engine->timeline.lock);
Chris Wilson20311bd2016-11-14 20:41:03 +00001142 }
1143
1144 return engine;
1145}
1146
Chris Wilsonb7268c52018-04-18 19:40:52 +01001147static void execlists_schedule(struct i915_request *request,
1148 const struct i915_sched_attr *attr)
Chris Wilson20311bd2016-11-14 20:41:03 +00001149{
Chris Wilsona02eb972018-05-08 01:30:46 +01001150 struct i915_priolist *uninitialized_var(pl);
1151 struct intel_engine_cs *engine, *last;
Chris Wilson20311bd2016-11-14 20:41:03 +00001152 struct i915_dependency *dep, *p;
1153 struct i915_dependency stack;
Chris Wilsonb7268c52018-04-18 19:40:52 +01001154 const int prio = attr->priority;
Chris Wilson20311bd2016-11-14 20:41:03 +00001155 LIST_HEAD(dfs);
1156
Chris Wilson7d1ea602017-09-28 20:39:00 +01001157 GEM_BUG_ON(prio == I915_PRIORITY_INVALID);
1158
Chris Wilsone61e0f52018-02-21 09:56:36 +00001159 if (i915_request_completed(request))
Chris Wilsonc218ee02018-01-06 10:56:18 +00001160 return;
1161
Chris Wilsonb7268c52018-04-18 19:40:52 +01001162 if (prio <= READ_ONCE(request->sched.attr.priority))
Chris Wilson20311bd2016-11-14 20:41:03 +00001163 return;
1164
Chris Wilson70cd1472016-11-28 14:36:49 +00001165 /* Need BKL in order to use the temporary link inside i915_dependency */
1166 lockdep_assert_held(&request->i915->drm.struct_mutex);
Chris Wilson20311bd2016-11-14 20:41:03 +00001167
Chris Wilson0c7112a2018-04-18 19:40:51 +01001168 stack.signaler = &request->sched;
Chris Wilson20311bd2016-11-14 20:41:03 +00001169 list_add(&stack.dfs_link, &dfs);
1170
Chris Wilsonce01b172018-01-02 15:12:26 +00001171 /*
1172 * Recursively bump all dependent priorities to match the new request.
Chris Wilson20311bd2016-11-14 20:41:03 +00001173 *
1174 * A naive approach would be to use recursion:
Chris Wilson0c7112a2018-04-18 19:40:51 +01001175 * static void update_priorities(struct i915_sched_node *node, prio) {
1176 * list_for_each_entry(dep, &node->signalers_list, signal_link)
Chris Wilson20311bd2016-11-14 20:41:03 +00001177 * update_priorities(dep->signal, prio)
Chris Wilson0c7112a2018-04-18 19:40:51 +01001178 * queue_request(node);
Chris Wilson20311bd2016-11-14 20:41:03 +00001179 * }
1180 * but that may have unlimited recursion depth and so runs a very
1181 * real risk of overunning the kernel stack. Instead, we build
1182 * a flat list of all dependencies starting with the current request.
1183 * As we walk the list of dependencies, we add all of its dependencies
1184 * to the end of the list (this may include an already visited
1185 * request) and continue to walk onwards onto the new dependencies. The
1186 * end result is a topological list of requests in reverse order, the
1187 * last element in the list is the request we must execute first.
1188 */
Chris Wilson2221c5b2018-01-02 15:12:27 +00001189 list_for_each_entry(dep, &dfs, dfs_link) {
Chris Wilson0c7112a2018-04-18 19:40:51 +01001190 struct i915_sched_node *node = dep->signaler;
Chris Wilson20311bd2016-11-14 20:41:03 +00001191
Chris Wilsonce01b172018-01-02 15:12:26 +00001192 /*
1193 * Within an engine, there can be no cycle, but we may
Chris Wilsona79a5242017-03-27 21:21:43 +01001194 * refer to the same dependency chain multiple times
1195 * (redundant dependencies are not eliminated) and across
1196 * engines.
1197 */
Chris Wilson0c7112a2018-04-18 19:40:51 +01001198 list_for_each_entry(p, &node->signalers_list, signal_link) {
Chris Wilsonce01b172018-01-02 15:12:26 +00001199 GEM_BUG_ON(p == dep); /* no cycles! */
1200
Chris Wilson0c7112a2018-04-18 19:40:51 +01001201 if (i915_sched_node_signaled(p->signaler))
Chris Wilson1f181222017-10-03 21:34:50 +01001202 continue;
1203
Chris Wilsonb7268c52018-04-18 19:40:52 +01001204 GEM_BUG_ON(p->signaler->attr.priority < node->attr.priority);
1205 if (prio > READ_ONCE(p->signaler->attr.priority))
Chris Wilson20311bd2016-11-14 20:41:03 +00001206 list_move_tail(&p->dfs_link, &dfs);
Chris Wilsona79a5242017-03-27 21:21:43 +01001207 }
Chris Wilson20311bd2016-11-14 20:41:03 +00001208 }
1209
Chris Wilsonce01b172018-01-02 15:12:26 +00001210 /*
1211 * If we didn't need to bump any existing priorities, and we haven't
Chris Wilson349bdb62017-05-17 13:10:05 +01001212 * yet submitted this request (i.e. there is no potential race with
1213 * execlists_submit_request()), we can set our own priority and skip
1214 * acquiring the engine locks.
1215 */
Chris Wilsonb7268c52018-04-18 19:40:52 +01001216 if (request->sched.attr.priority == I915_PRIORITY_INVALID) {
Chris Wilson0c7112a2018-04-18 19:40:51 +01001217 GEM_BUG_ON(!list_empty(&request->sched.link));
Chris Wilsonb7268c52018-04-18 19:40:52 +01001218 request->sched.attr = *attr;
Chris Wilson349bdb62017-05-17 13:10:05 +01001219 if (stack.dfs_link.next == stack.dfs_link.prev)
1220 return;
1221 __list_del_entry(&stack.dfs_link);
1222 }
1223
Chris Wilsona02eb972018-05-08 01:30:46 +01001224 last = NULL;
Chris Wilsona79a5242017-03-27 21:21:43 +01001225 engine = request->engine;
Chris Wilsona89d1f92018-05-02 17:38:39 +01001226 spin_lock_irq(&engine->timeline.lock);
Chris Wilsona79a5242017-03-27 21:21:43 +01001227
Chris Wilson20311bd2016-11-14 20:41:03 +00001228 /* Fifo and depth-first replacement ensure our deps execute before us */
1229 list_for_each_entry_safe_reverse(dep, p, &dfs, dfs_link) {
Chris Wilson0c7112a2018-04-18 19:40:51 +01001230 struct i915_sched_node *node = dep->signaler;
Chris Wilson20311bd2016-11-14 20:41:03 +00001231
1232 INIT_LIST_HEAD(&dep->dfs_link);
1233
Chris Wilson0c7112a2018-04-18 19:40:51 +01001234 engine = sched_lock_engine(node, engine);
Chris Wilson20311bd2016-11-14 20:41:03 +00001235
Chris Wilsonb7268c52018-04-18 19:40:52 +01001236 if (prio <= node->attr.priority)
Chris Wilson20311bd2016-11-14 20:41:03 +00001237 continue;
1238
Chris Wilsonb7268c52018-04-18 19:40:52 +01001239 node->attr.priority = prio;
Chris Wilson0c7112a2018-04-18 19:40:51 +01001240 if (!list_empty(&node->link)) {
Chris Wilsona02eb972018-05-08 01:30:46 +01001241 if (last != engine) {
1242 pl = lookup_priolist(engine, prio);
1243 last = engine;
1244 }
1245 GEM_BUG_ON(pl->priority != prio);
1246 list_move_tail(&node->link, &pl->requests);
Chris Wilsona79a5242017-03-27 21:21:43 +01001247 }
Chris Wilsonae2f5c02018-03-26 12:50:34 +01001248
1249 if (prio > engine->execlists.queue_priority &&
Chris Wilson9512f982018-06-28 21:12:11 +01001250 i915_sw_fence_done(&sched_to_request(node)->submit)) {
1251 /* defer submission until after all of our updates */
1252 __update_queue(engine, prio);
1253 tasklet_hi_schedule(&engine->execlists.tasklet);
1254 }
Chris Wilson20311bd2016-11-14 20:41:03 +00001255 }
1256
Chris Wilsona89d1f92018-05-02 17:38:39 +01001257 spin_unlock_irq(&engine->timeline.lock);
Chris Wilson20311bd2016-11-14 20:41:03 +00001258}
1259
Chris Wilson1fc44d92018-05-17 22:26:32 +01001260static void execlists_context_destroy(struct intel_context *ce)
1261{
Chris Wilson1fc44d92018-05-17 22:26:32 +01001262 GEM_BUG_ON(ce->pin_count);
1263
Chris Wilsondd12c6c2018-06-25 11:06:03 +01001264 if (!ce->state)
1265 return;
1266
Chris Wilson1fc44d92018-05-17 22:26:32 +01001267 intel_ring_free(ce->ring);
Chris Wilsonefe79d42018-06-25 11:06:04 +01001268
1269 GEM_BUG_ON(i915_gem_object_is_active(ce->state->obj));
1270 i915_gem_object_put(ce->state->obj);
Chris Wilson1fc44d92018-05-17 22:26:32 +01001271}
1272
Chris Wilson867985d2018-05-17 22:26:33 +01001273static void execlists_context_unpin(struct intel_context *ce)
Chris Wilson1fc44d92018-05-17 22:26:32 +01001274{
Chris Wilson288f1ce2018-09-04 16:31:17 +01001275 i915_gem_context_unpin_hw_id(ce->gem_context);
1276
Chris Wilson1fc44d92018-05-17 22:26:32 +01001277 intel_ring_unpin(ce->ring);
1278
1279 ce->state->obj->pin_global--;
1280 i915_gem_object_unpin_map(ce->state->obj);
1281 i915_vma_unpin(ce->state);
1282
1283 i915_gem_context_put(ce->gem_context);
1284}
1285
Chris Wilsonf4e15af2017-11-10 14:26:32 +00001286static int __context_pin(struct i915_gem_context *ctx, struct i915_vma *vma)
1287{
1288 unsigned int flags;
1289 int err;
1290
1291 /*
1292 * Clear this page out of any CPU caches for coherent swap-in/out.
1293 * We only want to do this on the first bind so that we do not stall
1294 * on an active context (which by nature is already on the GPU).
1295 */
1296 if (!(vma->flags & I915_VMA_GLOBAL_BIND)) {
1297 err = i915_gem_object_set_to_gtt_domain(vma->obj, true);
1298 if (err)
1299 return err;
1300 }
1301
1302 flags = PIN_GLOBAL | PIN_HIGH;
Jakub Bartmiński496bcce2018-07-27 16:11:46 +02001303 flags |= PIN_OFFSET_BIAS | i915_ggtt_pin_bias(vma);
Chris Wilsonf4e15af2017-11-10 14:26:32 +00001304
Chris Wilsonc00db492018-07-27 10:29:47 +01001305 return i915_vma_pin(vma, 0, 0, flags);
Chris Wilsonf4e15af2017-11-10 14:26:32 +00001306}
1307
Chris Wilson1fc44d92018-05-17 22:26:32 +01001308static struct intel_context *
1309__execlists_context_pin(struct intel_engine_cs *engine,
1310 struct i915_gem_context *ctx,
1311 struct intel_context *ce)
Oscar Mateodcb4c122014-11-13 10:28:10 +00001312{
Tvrtko Ursulin7d774ca2016-04-12 15:40:42 +01001313 void *vaddr;
Tvrtko Ursulinca825802016-01-15 15:10:27 +00001314 int ret;
Oscar Mateodcb4c122014-11-13 10:28:10 +00001315
Chris Wilson1fc44d92018-05-17 22:26:32 +01001316 ret = execlists_context_deferred_alloc(ctx, engine, ce);
Chris Wilson1d2a19c2018-01-26 12:18:46 +00001317 if (ret)
1318 goto err;
Chris Wilson56f6e0a2017-01-05 15:30:20 +00001319 GEM_BUG_ON(!ce->state);
Chris Wilsone8a9c582016-12-18 15:37:20 +00001320
Chris Wilsonf4e15af2017-11-10 14:26:32 +00001321 ret = __context_pin(ctx, ce->state);
Nick Hoathe84fe802015-09-11 12:53:46 +01001322 if (ret)
Chris Wilson24f1d3c2016-04-28 09:56:53 +01001323 goto err;
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001324
Chris Wilsonbf3783e2016-08-15 10:48:54 +01001325 vaddr = i915_gem_object_pin_map(ce->state->obj, I915_MAP_WB);
Tvrtko Ursulin7d774ca2016-04-12 15:40:42 +01001326 if (IS_ERR(vaddr)) {
1327 ret = PTR_ERR(vaddr);
Chris Wilsonbf3783e2016-08-15 10:48:54 +01001328 goto unpin_vma;
Tvrtko Ursulin82352e92016-01-15 17:12:45 +00001329 }
1330
Chris Wilson5503cb02018-07-27 16:55:01 +01001331 ret = intel_ring_pin(ce->ring);
Nick Hoathe84fe802015-09-11 12:53:46 +01001332 if (ret)
Tvrtko Ursulin7d774ca2016-04-12 15:40:42 +01001333 goto unpin_map;
Alex Daid1675192015-08-12 15:43:43 +01001334
Chris Wilson288f1ce2018-09-04 16:31:17 +01001335 ret = i915_gem_context_pin_hw_id(ctx);
1336 if (ret)
1337 goto unpin_ring;
1338
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
Chris Wilson288f1ce2018-09-04 16:31:17 +01001351unpin_ring:
1352 intel_ring_unpin(ce->ring);
Tvrtko Ursulin7d774ca2016-04-12 15:40:42 +01001353unpin_map:
Chris Wilsonbf3783e2016-08-15 10:48:54 +01001354 i915_gem_object_unpin_map(ce->state->obj);
1355unpin_vma:
1356 __i915_vma_unpin(ce->state);
Chris Wilson24f1d3c2016-04-28 09:56:53 +01001357err:
Chris Wilson9021ad02016-05-24 14:53:37 +01001358 ce->pin_count = 0;
Chris Wilson266a2402017-05-04 10:33:08 +01001359 return ERR_PTR(ret);
Oscar Mateodcb4c122014-11-13 10:28:10 +00001360}
1361
Chris Wilson1fc44d92018-05-17 22:26:32 +01001362static const struct intel_context_ops execlists_context_ops = {
1363 .unpin = execlists_context_unpin,
1364 .destroy = execlists_context_destroy,
1365};
1366
1367static struct intel_context *
1368execlists_context_pin(struct intel_engine_cs *engine,
1369 struct i915_gem_context *ctx)
Oscar Mateodcb4c122014-11-13 10:28:10 +00001370{
Chris Wilsonab82a062018-04-30 14:15:01 +01001371 struct intel_context *ce = to_intel_context(ctx, engine);
Daniel Vetteraf3302b2015-12-04 17:27:15 +01001372
Chris Wilson91c8a322016-07-05 10:40:23 +01001373 lockdep_assert_held(&ctx->i915->drm.struct_mutex);
Tvrtko Ursulin321fe302016-01-28 10:29:55 +00001374
Chris Wilson1fc44d92018-05-17 22:26:32 +01001375 if (likely(ce->pin_count++))
1376 return ce;
1377 GEM_BUG_ON(!ce->pin_count); /* no overflow please! */
Chris Wilson24f1d3c2016-04-28 09:56:53 +01001378
Chris Wilson1fc44d92018-05-17 22:26:32 +01001379 ce->ops = &execlists_context_ops;
Chris Wilson24f1d3c2016-04-28 09:56:53 +01001380
Chris Wilson1fc44d92018-05-17 22:26:32 +01001381 return __execlists_context_pin(engine, ctx, ce);
Oscar Mateodcb4c122014-11-13 10:28:10 +00001382}
1383
Chris Wilsone61e0f52018-02-21 09:56:36 +00001384static int execlists_request_alloc(struct i915_request *request)
Chris Wilsonef11c012016-12-18 15:37:19 +00001385{
Chris Wilsonfd138212017-11-15 15:12:04 +00001386 int ret;
Chris Wilsonef11c012016-12-18 15:37:19 +00001387
Chris Wilson1fc44d92018-05-17 22:26:32 +01001388 GEM_BUG_ON(!request->hw_context->pin_count);
Chris Wilsone8a9c582016-12-18 15:37:20 +00001389
Chris Wilsonef11c012016-12-18 15:37:19 +00001390 /* Flush enough space to reduce the likelihood of waiting after
1391 * we start building the request - in which case we will just
1392 * have to repeat work.
1393 */
1394 request->reserved_space += EXECLISTS_REQUEST_SIZE;
1395
Chris Wilsonfd138212017-11-15 15:12:04 +00001396 ret = intel_ring_wait_for_space(request->ring, request->reserved_space);
1397 if (ret)
1398 return ret;
Chris Wilsonef11c012016-12-18 15:37:19 +00001399
Chris Wilsonef11c012016-12-18 15:37:19 +00001400 /* Note that after this point, we have committed to using
1401 * this request as it is being used to both track the
1402 * state of engine initialisation and liveness of the
1403 * golden renderstate above. Think twice before you try
1404 * to cancel/unwind this request now.
1405 */
1406
1407 request->reserved_space -= EXECLISTS_REQUEST_SIZE;
1408 return 0;
Chris Wilsonef11c012016-12-18 15:37:19 +00001409}
1410
Arun Siluvery9e000842015-07-03 14:27:31 +01001411/*
1412 * In this WA we need to set GEN8_L3SQCREG4[21:21] and reset it after
1413 * PIPE_CONTROL instruction. This is required for the flush to happen correctly
1414 * but there is a slight complication as this is applied in WA batch where the
1415 * values are only initialized once so we cannot take register value at the
1416 * beginning and reuse it further; hence we save its value to memory, upload a
1417 * constant value with bit21 set and then we restore it back with the saved value.
1418 * To simplify the WA, a constant value is formed by using the default value
1419 * of this register. This shouldn't be a problem because we are only modifying
1420 * it for a short period and this batch in non-premptible. We can ofcourse
1421 * use additional instructions that read the actual value of the register
1422 * at that time and set our bit of interest but it makes the WA complicated.
1423 *
1424 * This WA is also required for Gen9 so extracting as a function avoids
1425 * code duplication.
1426 */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001427static u32 *
1428gen8_emit_flush_coherentl3_wa(struct intel_engine_cs *engine, u32 *batch)
Arun Siluvery9e000842015-07-03 14:27:31 +01001429{
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001430 *batch++ = MI_STORE_REGISTER_MEM_GEN8 | MI_SRM_LRM_GLOBAL_GTT;
1431 *batch++ = i915_mmio_reg_offset(GEN8_L3SQCREG4);
1432 *batch++ = i915_ggtt_offset(engine->scratch) + 256;
1433 *batch++ = 0;
Arun Siluvery9e000842015-07-03 14:27:31 +01001434
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001435 *batch++ = MI_LOAD_REGISTER_IMM(1);
1436 *batch++ = i915_mmio_reg_offset(GEN8_L3SQCREG4);
1437 *batch++ = 0x40400000 | GEN8_LQSC_FLUSH_COHERENT_LINES;
Arun Siluvery9e000842015-07-03 14:27:31 +01001438
Tvrtko Ursulin9f235df2017-02-16 12:23:25 +00001439 batch = gen8_emit_pipe_control(batch,
1440 PIPE_CONTROL_CS_STALL |
1441 PIPE_CONTROL_DC_FLUSH_ENABLE,
1442 0);
Arun Siluvery9e000842015-07-03 14:27:31 +01001443
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001444 *batch++ = MI_LOAD_REGISTER_MEM_GEN8 | MI_SRM_LRM_GLOBAL_GTT;
1445 *batch++ = i915_mmio_reg_offset(GEN8_L3SQCREG4);
1446 *batch++ = i915_ggtt_offset(engine->scratch) + 256;
1447 *batch++ = 0;
Arun Siluvery9e000842015-07-03 14:27:31 +01001448
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001449 return batch;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001450}
1451
Daniel Vetter6e5248b2016-07-15 21:48:06 +02001452/*
1453 * Typically we only have one indirect_ctx and per_ctx batch buffer which are
1454 * initialized at the beginning and shared across all contexts but this field
1455 * helps us to have multiple batches at different offsets and select them based
1456 * on a criteria. At the moment this batch always start at the beginning of the page
1457 * and at this point we don't have multiple wa_ctx batch buffers.
Arun Siluvery17ee9502015-06-19 19:07:01 +01001458 *
Daniel Vetter6e5248b2016-07-15 21:48:06 +02001459 * The number of WA applied are not known at the beginning; we use this field
1460 * to return the no of DWORDS written.
Arun Siluvery17ee9502015-06-19 19:07:01 +01001461 *
Daniel Vetter6e5248b2016-07-15 21:48:06 +02001462 * It is to be noted that this batch does not contain MI_BATCH_BUFFER_END
1463 * so it adds NOOPs as padding to make it cacheline aligned.
1464 * MI_BATCH_BUFFER_END will be added to perctx batch and both of them together
1465 * makes a complete batch buffer.
Arun Siluvery17ee9502015-06-19 19:07:01 +01001466 */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001467static u32 *gen8_init_indirectctx_bb(struct intel_engine_cs *engine, u32 *batch)
Arun Siluvery17ee9502015-06-19 19:07:01 +01001468{
Arun Siluvery7ad00d12015-06-19 18:37:12 +01001469 /* WaDisableCtxRestoreArbitration:bdw,chv */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001470 *batch++ = MI_ARB_ON_OFF | MI_ARB_DISABLE;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001471
Arun Siluveryc82435b2015-06-19 18:37:13 +01001472 /* WaFlushCoherentL3CacheLinesAtContextSwitch:bdw */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001473 if (IS_BROADWELL(engine->i915))
1474 batch = gen8_emit_flush_coherentl3_wa(engine, batch);
Arun Siluveryc82435b2015-06-19 18:37:13 +01001475
Arun Siluvery0160f052015-06-23 15:46:57 +01001476 /* WaClearSlmSpaceAtContextSwitch:bdw,chv */
1477 /* Actual scratch location is at 128 bytes offset */
Tvrtko Ursulin9f235df2017-02-16 12:23:25 +00001478 batch = gen8_emit_pipe_control(batch,
1479 PIPE_CONTROL_FLUSH_L3 |
1480 PIPE_CONTROL_GLOBAL_GTT_IVB |
1481 PIPE_CONTROL_CS_STALL |
1482 PIPE_CONTROL_QW_WRITE,
1483 i915_ggtt_offset(engine->scratch) +
1484 2 * CACHELINE_BYTES);
Arun Siluvery0160f052015-06-23 15:46:57 +01001485
Chris Wilsonbeecec92017-10-03 21:34:52 +01001486 *batch++ = MI_ARB_ON_OFF | MI_ARB_ENABLE;
1487
Arun Siluvery17ee9502015-06-19 19:07:01 +01001488 /* Pad to end of cacheline */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001489 while ((unsigned long)batch % CACHELINE_BYTES)
1490 *batch++ = MI_NOOP;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001491
1492 /*
1493 * MI_BATCH_BUFFER_END is not required in Indirect ctx BB because
1494 * execution depends on the length specified in terms of cache lines
1495 * in the register CTX_RCS_INDIRECT_CTX
1496 */
1497
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001498 return batch;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001499}
1500
Chris Wilson5ee4a7a2018-06-18 10:41:50 +01001501struct lri {
1502 i915_reg_t reg;
1503 u32 value;
1504};
1505
1506static u32 *emit_lri(u32 *batch, const struct lri *lri, unsigned int count)
1507{
1508 GEM_BUG_ON(!count || count > 63);
1509
1510 *batch++ = MI_LOAD_REGISTER_IMM(count);
1511 do {
1512 *batch++ = i915_mmio_reg_offset(lri->reg);
1513 *batch++ = lri->value;
1514 } while (lri++, --count);
1515 *batch++ = MI_NOOP;
1516
1517 return batch;
1518}
1519
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001520static u32 *gen9_init_indirectctx_bb(struct intel_engine_cs *engine, u32 *batch)
Arun Siluvery0504cff2015-07-14 15:01:27 +01001521{
Chris Wilson5ee4a7a2018-06-18 10:41:50 +01001522 static const struct lri lri[] = {
1523 /* WaDisableGatherAtSetShaderCommonSlice:skl,bxt,kbl,glk */
1524 {
1525 COMMON_SLICE_CHICKEN2,
1526 __MASKED_FIELD(GEN9_DISABLE_GATHER_AT_SET_SHADER_COMMON_SLICE,
1527 0),
1528 },
1529
1530 /* BSpec: 11391 */
1531 {
1532 FF_SLICE_CHICKEN,
1533 __MASKED_FIELD(FF_SLICE_CHICKEN_CL_PROVOKING_VERTEX_FIX,
1534 FF_SLICE_CHICKEN_CL_PROVOKING_VERTEX_FIX),
1535 },
1536
1537 /* BSpec: 11299 */
1538 {
1539 _3D_CHICKEN3,
1540 __MASKED_FIELD(_3D_CHICKEN_SF_PROVOKING_VERTEX_FIX,
1541 _3D_CHICKEN_SF_PROVOKING_VERTEX_FIX),
1542 }
1543 };
1544
Chris Wilsonbeecec92017-10-03 21:34:52 +01001545 *batch++ = MI_ARB_ON_OFF | MI_ARB_DISABLE;
1546
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02001547 /* WaFlushCoherentL3CacheLinesAtContextSwitch:skl,bxt,glk */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001548 batch = gen8_emit_flush_coherentl3_wa(engine, batch);
Arun Siluverya4106a72015-07-14 15:01:29 +01001549
Chris Wilson5ee4a7a2018-06-18 10:41:50 +01001550 batch = emit_lri(batch, lri, ARRAY_SIZE(lri));
Mika Kuoppala873e8172016-07-20 14:26:13 +03001551
Mika Kuoppala066d4622016-06-07 17:19:15 +03001552 /* WaClearSlmSpaceAtContextSwitch:kbl */
1553 /* Actual scratch location is at 128 bytes offset */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001554 if (IS_KBL_REVID(engine->i915, 0, KBL_REVID_A0)) {
Tvrtko Ursulin9f235df2017-02-16 12:23:25 +00001555 batch = gen8_emit_pipe_control(batch,
1556 PIPE_CONTROL_FLUSH_L3 |
1557 PIPE_CONTROL_GLOBAL_GTT_IVB |
1558 PIPE_CONTROL_CS_STALL |
1559 PIPE_CONTROL_QW_WRITE,
1560 i915_ggtt_offset(engine->scratch)
1561 + 2 * CACHELINE_BYTES);
Mika Kuoppala066d4622016-06-07 17:19:15 +03001562 }
Tim Gore3485d992016-07-05 10:01:30 +01001563
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02001564 /* WaMediaPoolStateCmdInWABB:bxt,glk */
Tim Gore3485d992016-07-05 10:01:30 +01001565 if (HAS_POOLED_EU(engine->i915)) {
1566 /*
1567 * EU pool configuration is setup along with golden context
1568 * during context initialization. This value depends on
1569 * device type (2x6 or 3x6) and needs to be updated based
1570 * on which subslice is disabled especially for 2x6
1571 * devices, however it is safe to load default
1572 * configuration of 3x6 device instead of masking off
1573 * corresponding bits because HW ignores bits of a disabled
1574 * subslice and drops down to appropriate config. Please
1575 * see render_state_setup() in i915_gem_render_state.c for
1576 * possible configurations, to avoid duplication they are
1577 * not shown here again.
1578 */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001579 *batch++ = GEN9_MEDIA_POOL_STATE;
1580 *batch++ = GEN9_MEDIA_POOL_ENABLE;
1581 *batch++ = 0x00777000;
1582 *batch++ = 0;
1583 *batch++ = 0;
1584 *batch++ = 0;
Tim Gore3485d992016-07-05 10:01:30 +01001585 }
1586
Chris Wilsonbeecec92017-10-03 21:34:52 +01001587 *batch++ = MI_ARB_ON_OFF | MI_ARB_ENABLE;
1588
Arun Siluvery0504cff2015-07-14 15:01:27 +01001589 /* Pad to end of cacheline */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001590 while ((unsigned long)batch % CACHELINE_BYTES)
1591 *batch++ = MI_NOOP;
Arun Siluvery0504cff2015-07-14 15:01:27 +01001592
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001593 return batch;
Arun Siluvery0504cff2015-07-14 15:01:27 +01001594}
1595
Rafael Antognolli4b6ce682018-02-05 15:33:30 -08001596static u32 *
1597gen10_init_indirectctx_bb(struct intel_engine_cs *engine, u32 *batch)
1598{
1599 int i;
1600
1601 /*
1602 * WaPipeControlBefore3DStateSamplePattern: cnl
1603 *
1604 * Ensure the engine is idle prior to programming a
1605 * 3DSTATE_SAMPLE_PATTERN during a context restore.
1606 */
1607 batch = gen8_emit_pipe_control(batch,
1608 PIPE_CONTROL_CS_STALL,
1609 0);
1610 /*
1611 * WaPipeControlBefore3DStateSamplePattern says we need 4 dwords for
1612 * the PIPE_CONTROL followed by 12 dwords of 0x0, so 16 dwords in
1613 * total. However, a PIPE_CONTROL is 6 dwords long, not 4, which is
1614 * confusing. Since gen8_emit_pipe_control() already advances the
1615 * batch by 6 dwords, we advance the other 10 here, completing a
1616 * cacheline. It's not clear if the workaround requires this padding
1617 * before other commands, or if it's just the regular padding we would
1618 * already have for the workaround bb, so leave it here for now.
1619 */
1620 for (i = 0; i < 10; i++)
1621 *batch++ = MI_NOOP;
1622
1623 /* Pad to end of cacheline */
1624 while ((unsigned long)batch % CACHELINE_BYTES)
1625 *batch++ = MI_NOOP;
1626
1627 return batch;
1628}
1629
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001630#define CTX_WA_BB_OBJ_SIZE (PAGE_SIZE)
1631
1632static int lrc_setup_wa_ctx(struct intel_engine_cs *engine)
Arun Siluvery17ee9502015-06-19 19:07:01 +01001633{
Chris Wilson48bb74e2016-08-15 10:49:04 +01001634 struct drm_i915_gem_object *obj;
1635 struct i915_vma *vma;
1636 int err;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001637
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001638 obj = i915_gem_object_create(engine->i915, CTX_WA_BB_OBJ_SIZE);
Chris Wilson48bb74e2016-08-15 10:49:04 +01001639 if (IS_ERR(obj))
1640 return PTR_ERR(obj);
1641
Chris Wilson82ad6442018-06-05 16:37:58 +01001642 vma = i915_vma_instance(obj, &engine->i915->ggtt.vm, NULL);
Chris Wilson48bb74e2016-08-15 10:49:04 +01001643 if (IS_ERR(vma)) {
1644 err = PTR_ERR(vma);
1645 goto err;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001646 }
1647
Chris Wilson7a859c62018-07-27 10:18:55 +01001648 err = i915_vma_pin(vma, 0, 0, PIN_GLOBAL | PIN_HIGH);
Chris Wilson48bb74e2016-08-15 10:49:04 +01001649 if (err)
1650 goto err;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001651
Chris Wilson48bb74e2016-08-15 10:49:04 +01001652 engine->wa_ctx.vma = vma;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001653 return 0;
Chris Wilson48bb74e2016-08-15 10:49:04 +01001654
1655err:
1656 i915_gem_object_put(obj);
1657 return err;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001658}
1659
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001660static void lrc_destroy_wa_ctx(struct intel_engine_cs *engine)
Arun Siluvery17ee9502015-06-19 19:07:01 +01001661{
Chris Wilson6a2f59e2018-07-21 13:50:37 +01001662 i915_vma_unpin_and_release(&engine->wa_ctx.vma, 0);
Arun Siluvery17ee9502015-06-19 19:07:01 +01001663}
1664
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001665typedef u32 *(*wa_bb_func_t)(struct intel_engine_cs *engine, u32 *batch);
1666
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001667static int intel_init_workaround_bb(struct intel_engine_cs *engine)
Arun Siluvery17ee9502015-06-19 19:07:01 +01001668{
Chris Wilson48bb74e2016-08-15 10:49:04 +01001669 struct i915_ctx_workarounds *wa_ctx = &engine->wa_ctx;
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001670 struct i915_wa_ctx_bb *wa_bb[2] = { &wa_ctx->indirect_ctx,
1671 &wa_ctx->per_ctx };
1672 wa_bb_func_t wa_bb_fn[2];
Arun Siluvery17ee9502015-06-19 19:07:01 +01001673 struct page *page;
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001674 void *batch, *batch_ptr;
1675 unsigned int i;
Chris Wilson48bb74e2016-08-15 10:49:04 +01001676 int ret;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001677
Tvrtko Ursulin10bde232018-01-19 10:00:04 +00001678 if (GEM_WARN_ON(engine->id != RCS))
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001679 return -EINVAL;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001680
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001681 switch (INTEL_GEN(engine->i915)) {
Oscar Mateocc38cae2018-05-08 14:29:23 -07001682 case 11:
1683 return 0;
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07001684 case 10:
Rafael Antognolli4b6ce682018-02-05 15:33:30 -08001685 wa_bb_fn[0] = gen10_init_indirectctx_bb;
1686 wa_bb_fn[1] = NULL;
1687 break;
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001688 case 9:
1689 wa_bb_fn[0] = gen9_init_indirectctx_bb;
Chris Wilsonb8aa2232017-09-21 14:54:44 +01001690 wa_bb_fn[1] = NULL;
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001691 break;
1692 case 8:
1693 wa_bb_fn[0] = gen8_init_indirectctx_bb;
Chris Wilson3ad7b522017-10-03 21:34:49 +01001694 wa_bb_fn[1] = NULL;
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001695 break;
1696 default:
1697 MISSING_CASE(INTEL_GEN(engine->i915));
Arun Siluvery5e60d792015-06-23 15:50:44 +01001698 return 0;
Arun Siluvery0504cff2015-07-14 15:01:27 +01001699 }
Arun Siluvery5e60d792015-06-23 15:50:44 +01001700
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001701 ret = lrc_setup_wa_ctx(engine);
Arun Siluvery17ee9502015-06-19 19:07:01 +01001702 if (ret) {
1703 DRM_DEBUG_DRIVER("Failed to setup context WA page: %d\n", ret);
1704 return ret;
1705 }
1706
Chris Wilson48bb74e2016-08-15 10:49:04 +01001707 page = i915_gem_object_get_dirty_page(wa_ctx->vma->obj, 0);
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001708 batch = batch_ptr = kmap_atomic(page);
Arun Siluvery17ee9502015-06-19 19:07:01 +01001709
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001710 /*
1711 * Emit the two workaround batch buffers, recording the offset from the
1712 * start of the workaround batch buffer object for each and their
1713 * respective sizes.
1714 */
1715 for (i = 0; i < ARRAY_SIZE(wa_bb_fn); i++) {
1716 wa_bb[i]->offset = batch_ptr - batch;
Chris Wilson1d2a19c2018-01-26 12:18:46 +00001717 if (GEM_WARN_ON(!IS_ALIGNED(wa_bb[i]->offset,
1718 CACHELINE_BYTES))) {
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001719 ret = -EINVAL;
1720 break;
1721 }
Chris Wilson604a8f62017-09-21 14:54:43 +01001722 if (wa_bb_fn[i])
1723 batch_ptr = wa_bb_fn[i](engine, batch_ptr);
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001724 wa_bb[i]->size = batch_ptr - (batch + wa_bb[i]->offset);
Arun Siluvery17ee9502015-06-19 19:07:01 +01001725 }
1726
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001727 BUG_ON(batch_ptr - batch > CTX_WA_BB_OBJ_SIZE);
1728
Arun Siluvery17ee9502015-06-19 19:07:01 +01001729 kunmap_atomic(batch);
1730 if (ret)
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001731 lrc_destroy_wa_ctx(engine);
Arun Siluvery17ee9502015-06-19 19:07:01 +01001732
1733 return ret;
1734}
1735
Chris Wilsonf3c9d4072018-01-02 15:12:34 +00001736static void enable_execlists(struct intel_engine_cs *engine)
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001737{
Chris Wilsonc0336662016-05-06 15:40:21 +01001738 struct drm_i915_private *dev_priv = engine->i915;
Chris Wilsonf3c9d4072018-01-02 15:12:34 +00001739
1740 I915_WRITE(RING_HWSTAM(engine->mmio_base), 0xffffffff);
Kelvin Gardiner225701f2018-01-30 11:49:17 -02001741
1742 /*
1743 * Make sure we're not enabling the new 12-deep CSB
1744 * FIFO as that requires a slightly updated handling
1745 * in the ctx switch irq. Since we're currently only
1746 * using only 2 elements of the enhanced execlists the
1747 * deeper FIFO it's not needed and it's not worth adding
1748 * more statements to the irq handler to support it.
1749 */
1750 if (INTEL_GEN(dev_priv) >= 11)
1751 I915_WRITE(RING_MODE_GEN7(engine),
1752 _MASKED_BIT_DISABLE(GEN11_GFX_DISABLE_LEGACY_MODE));
1753 else
1754 I915_WRITE(RING_MODE_GEN7(engine),
1755 _MASKED_BIT_ENABLE(GFX_RUN_LIST_ENABLE));
1756
Chris Wilson9a4dc802018-05-18 11:09:33 +01001757 I915_WRITE(RING_MI_MODE(engine->mmio_base),
1758 _MASKED_BIT_DISABLE(STOP_RING));
1759
Chris Wilsonf3c9d4072018-01-02 15:12:34 +00001760 I915_WRITE(RING_HWS_PGA(engine->mmio_base),
1761 engine->status_page.ggtt_offset);
1762 POSTING_READ(RING_HWS_PGA(engine->mmio_base));
1763}
1764
Chris Wilson9a4dc802018-05-18 11:09:33 +01001765static bool unexpected_starting_state(struct intel_engine_cs *engine)
1766{
1767 struct drm_i915_private *dev_priv = engine->i915;
1768 bool unexpected = false;
1769
1770 if (I915_READ(RING_MI_MODE(engine->mmio_base)) & STOP_RING) {
1771 DRM_DEBUG_DRIVER("STOP_RING still set in RING_MI_MODE\n");
1772 unexpected = true;
1773 }
1774
1775 return unexpected;
1776}
1777
Chris Wilsonf3c9d4072018-01-02 15:12:34 +00001778static int gen8_init_common_ring(struct intel_engine_cs *engine)
1779{
Chris Wilson805615d2018-08-15 19:42:51 +01001780 intel_mocs_init_engine(engine);
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001781
Chris Wilsonad07dfc2016-10-07 07:53:26 +01001782 intel_engine_reset_breadcrumbs(engine);
Chris Wilson821ed7d2016-09-09 14:11:53 +01001783
Chris Wilson9a4dc802018-05-18 11:09:33 +01001784 if (GEM_SHOW_DEBUG() && unexpected_starting_state(engine)) {
1785 struct drm_printer p = drm_debug_printer(__func__);
1786
1787 intel_engine_dump(engine, &p, NULL);
1788 }
1789
Chris Wilsonf3c9d4072018-01-02 15:12:34 +00001790 enable_execlists(engine);
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001791
Chris Wilson821ed7d2016-09-09 14:11:53 +01001792 return 0;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001793}
1794
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001795static int gen8_init_render_ring(struct intel_engine_cs *engine)
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001796{
Chris Wilsonc0336662016-05-06 15:40:21 +01001797 struct drm_i915_private *dev_priv = engine->i915;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001798 int ret;
1799
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001800 ret = gen8_init_common_ring(engine);
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001801 if (ret)
1802 return ret;
1803
Chris Wilsonf4ecfbf2018-04-14 13:27:54 +01001804 intel_whitelist_workarounds_apply(engine);
Oscar Mateo59b449d2018-04-10 09:12:47 -07001805
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001806 /* We need to disable the AsyncFlip performance optimisations in order
1807 * to use MI_WAIT_FOR_EVENT within the CS. It should already be
1808 * programmed to '1' on all products.
1809 *
1810 * WaDisableAsyncFlipPerfMode:snb,ivb,hsw,vlv,bdw,chv
1811 */
1812 I915_WRITE(MI_MODE, _MASKED_BIT_ENABLE(ASYNC_FLIP_PERF_DISABLE));
1813
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001814 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_FORCE_ORDERING));
1815
Oscar Mateo59b449d2018-04-10 09:12:47 -07001816 return 0;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001817}
1818
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001819static int gen9_init_render_ring(struct intel_engine_cs *engine)
Damien Lespiau82ef8222015-02-09 19:33:08 +00001820{
1821 int ret;
1822
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001823 ret = gen8_init_common_ring(engine);
Damien Lespiau82ef8222015-02-09 19:33:08 +00001824 if (ret)
1825 return ret;
1826
Chris Wilsonf4ecfbf2018-04-14 13:27:54 +01001827 intel_whitelist_workarounds_apply(engine);
Oscar Mateo59b449d2018-04-10 09:12:47 -07001828
1829 return 0;
Damien Lespiau82ef8222015-02-09 19:33:08 +00001830}
1831
Chris Wilson5adfb772018-05-16 19:33:51 +01001832static struct i915_request *
1833execlists_reset_prepare(struct intel_engine_cs *engine)
1834{
1835 struct intel_engine_execlists * const execlists = &engine->execlists;
Chris Wilson63572932018-05-16 19:33:54 +01001836 struct i915_request *request, *active;
Chris Wilson9512f982018-06-28 21:12:11 +01001837 unsigned long flags;
Chris Wilson5adfb772018-05-16 19:33:51 +01001838
Chris Wilson66fc8292018-08-15 14:58:27 +01001839 GEM_TRACE("%s: depth<-%d\n", engine->name,
1840 atomic_read(&execlists->tasklet.count));
Chris Wilson5adfb772018-05-16 19:33:51 +01001841
1842 /*
1843 * Prevent request submission to the hardware until we have
1844 * completed the reset in i915_gem_reset_finish(). If a request
1845 * is completed by one engine, it may then queue a request
1846 * to a second via its execlists->tasklet *just* as we are
1847 * calling engine->init_hw() and also writing the ELSP.
1848 * Turning off the execlists->tasklet until the reset is over
1849 * prevents the race.
1850 */
1851 __tasklet_disable_sync_once(&execlists->tasklet);
1852
Chris Wilson9512f982018-06-28 21:12:11 +01001853 spin_lock_irqsave(&engine->timeline.lock, flags);
1854
Chris Wilson63572932018-05-16 19:33:54 +01001855 /*
1856 * We want to flush the pending context switches, having disabled
1857 * the tasklet above, we can assume exclusive access to the execlists.
1858 * For this allows us to catch up with an inflight preemption event,
1859 * and avoid blaming an innocent request if the stall was due to the
1860 * preemption itself.
1861 */
Chris Wilsonfd8526e2018-06-28 21:12:10 +01001862 process_csb(engine);
Chris Wilson63572932018-05-16 19:33:54 +01001863
1864 /*
1865 * The last active request can then be no later than the last request
1866 * now in ELSP[0]. So search backwards from there, so that if the GPU
1867 * has advanced beyond the last CSB update, it will be pardoned.
1868 */
1869 active = NULL;
1870 request = port_request(execlists->port);
1871 if (request) {
Chris Wilson3f6e9822018-05-16 19:33:55 +01001872 /*
1873 * Prevent the breadcrumb from advancing before we decide
1874 * which request is currently active.
1875 */
1876 intel_engine_stop_cs(engine);
1877
Chris Wilson63572932018-05-16 19:33:54 +01001878 list_for_each_entry_from_reverse(request,
1879 &engine->timeline.requests,
1880 link) {
1881 if (__i915_request_completed(request,
1882 request->global_seqno))
1883 break;
1884
1885 active = request;
1886 }
Chris Wilson63572932018-05-16 19:33:54 +01001887 }
1888
Chris Wilson9512f982018-06-28 21:12:11 +01001889 spin_unlock_irqrestore(&engine->timeline.lock, flags);
1890
Chris Wilson63572932018-05-16 19:33:54 +01001891 return active;
Chris Wilson5adfb772018-05-16 19:33:51 +01001892}
1893
1894static void execlists_reset(struct intel_engine_cs *engine,
1895 struct i915_request *request)
Chris Wilson821ed7d2016-09-09 14:11:53 +01001896{
Mika Kuoppalab620e872017-09-22 15:43:03 +03001897 struct intel_engine_execlists * const execlists = &engine->execlists;
Chris Wilson221ab97192017-09-16 21:44:14 +01001898 unsigned long flags;
Chris Wilson56922512018-04-28 12:15:32 +01001899 u32 *regs;
Chris Wilsoncdb6ded2017-07-21 13:32:22 +01001900
Tvrtko Ursulin0c5c7df2018-04-06 13:35:14 +01001901 GEM_TRACE("%s request global=%x, current=%d\n",
1902 engine->name, request ? request->global_seqno : 0,
1903 intel_engine_get_seqno(engine));
Chris Wilson42232212018-01-02 15:12:32 +00001904
Chris Wilsond8857d52018-06-28 21:12:05 +01001905 spin_lock_irqsave(&engine->timeline.lock, flags);
Chris Wilson221ab97192017-09-16 21:44:14 +01001906
Chris Wilsoncdb6ded2017-07-21 13:32:22 +01001907 /*
1908 * Catch up with any missed context-switch interrupts.
1909 *
1910 * Ideally we would just read the remaining CSB entries now that we
1911 * know the gpu is idle. However, the CSB registers are sometimes^W
1912 * often trashed across a GPU reset! Instead we have to rely on
1913 * guessing the missed context-switch events by looking at what
1914 * requests were completed.
1915 */
Michał Winiarskia4598d12017-10-25 22:00:18 +02001916 execlists_cancel_port_requests(execlists);
Chris Wilson221ab97192017-09-16 21:44:14 +01001917
1918 /* Push back any incomplete requests for replay after the reset. */
Michał Winiarskia4598d12017-10-25 22:00:18 +02001919 __unwind_incomplete_requests(engine);
Chris Wilsoncdb6ded2017-07-21 13:32:22 +01001920
Chris Wilsonc3160da2018-05-31 09:22:45 +01001921 /* Following the reset, we need to reload the CSB read/write pointers */
Chris Wilsonf4b58f02018-06-28 21:12:08 +01001922 reset_csb_pointers(&engine->execlists);
Chris Wilsonc3160da2018-05-31 09:22:45 +01001923
Chris Wilsond8857d52018-06-28 21:12:05 +01001924 spin_unlock_irqrestore(&engine->timeline.lock, flags);
Chris Wilsonaebbc2d2018-03-02 13:12:46 +00001925
Chris Wilsona3e38832018-03-02 14:32:45 +00001926 /*
1927 * If the request was innocent, we leave the request in the ELSP
Chris Wilsonc0dcb202017-02-07 15:24:37 +00001928 * and will try to replay it on restarting. The context image may
1929 * have been corrupted by the reset, in which case we may have
1930 * to service a new GPU hang, but more likely we can continue on
1931 * without impact.
1932 *
1933 * If the request was guilty, we presume the context is corrupt
1934 * and have to at least restore the RING register in the context
1935 * image back to the expected values to skip over the guilty request.
1936 */
Chris Wilson221ab97192017-09-16 21:44:14 +01001937 if (!request || request->fence.error != -EIO)
Chris Wilsonc0dcb202017-02-07 15:24:37 +00001938 return;
Chris Wilson821ed7d2016-09-09 14:11:53 +01001939
Chris Wilsona3e38832018-03-02 14:32:45 +00001940 /*
1941 * We want a simple context + ring to execute the breadcrumb update.
Chris Wilsona3aabe82016-10-04 21:11:26 +01001942 * We cannot rely on the context being intact across the GPU hang,
1943 * so clear it and rebuild just what we need for the breadcrumb.
1944 * All pending requests for this context will be zapped, and any
1945 * future request will be after userspace has had the opportunity
1946 * to recreate its own state.
1947 */
Chris Wilson1fc44d92018-05-17 22:26:32 +01001948 regs = request->hw_context->lrc_reg_state;
Chris Wilsonfe0c4932018-05-18 10:02:11 +01001949 if (engine->pinned_default_state) {
1950 memcpy(regs, /* skip restoring the vanilla PPHWSP */
1951 engine->pinned_default_state + LRC_STATE_PN * PAGE_SIZE,
1952 engine->context_size - PAGE_SIZE);
Chris Wilson56922512018-04-28 12:15:32 +01001953 }
Chris Wilson4e0d64d2018-05-17 22:26:30 +01001954 execlists_init_reg_state(regs,
1955 request->gem_context, engine, request->ring);
Chris Wilsona3aabe82016-10-04 21:11:26 +01001956
Chris Wilson821ed7d2016-09-09 14:11:53 +01001957 /* Move the RING_HEAD onto the breadcrumb, past the hanging batch */
Chris Wilson56922512018-04-28 12:15:32 +01001958 regs[CTX_RING_BUFFER_START + 1] = i915_ggtt_offset(request->ring->vma);
Chris Wilsona3aabe82016-10-04 21:11:26 +01001959
Chris Wilson41d37682018-06-11 12:08:45 +01001960 request->ring->head = intel_ring_wrap(request->ring, request->postfix);
1961 regs[CTX_RING_HEAD + 1] = request->ring->head;
1962
Chris Wilson821ed7d2016-09-09 14:11:53 +01001963 intel_ring_update_space(request->ring);
1964
Chris Wilsona3aabe82016-10-04 21:11:26 +01001965 /* Reset WaIdleLiteRestore:bdw,skl as well */
Chris Wilson7e4992a2017-09-28 20:38:59 +01001966 unwind_wa_tail(request);
Chris Wilson821ed7d2016-09-09 14:11:53 +01001967}
1968
Chris Wilson5adfb772018-05-16 19:33:51 +01001969static void execlists_reset_finish(struct intel_engine_cs *engine)
1970{
Chris Wilson5db1d4e2018-06-04 08:34:40 +01001971 struct intel_engine_execlists * const execlists = &engine->execlists;
1972
Chris Wilsonfe25f302018-05-22 11:19:37 +01001973 /*
Chris Wilson9e4fa012018-08-28 16:27:02 +01001974 * After a GPU reset, we may have requests to replay. Do so now while
1975 * we still have the forcewake to be sure that the GPU is not allowed
1976 * to sleep before we restart and reload a context.
Chris Wilsonfe25f302018-05-22 11:19:37 +01001977 *
Chris Wilsonfe25f302018-05-22 11:19:37 +01001978 */
Chris Wilson9e4fa012018-08-28 16:27:02 +01001979 if (!RB_EMPTY_ROOT(&execlists->queue.rb_root))
1980 execlists->tasklet.func(execlists->tasklet.data);
Chris Wilson5adfb772018-05-16 19:33:51 +01001981
Chris Wilson9e4fa012018-08-28 16:27:02 +01001982 tasklet_enable(&execlists->tasklet);
Chris Wilson66fc8292018-08-15 14:58:27 +01001983 GEM_TRACE("%s: depth->%d\n", engine->name,
1984 atomic_read(&execlists->tasklet.count));
Chris Wilson5adfb772018-05-16 19:33:51 +01001985}
1986
Chris Wilsone61e0f52018-02-21 09:56:36 +00001987static int intel_logical_ring_emit_pdps(struct i915_request *rq)
Michel Thierry7a01a0a2015-06-26 13:46:14 +01001988{
Chris Wilson4e0d64d2018-05-17 22:26:30 +01001989 struct i915_hw_ppgtt *ppgtt = rq->gem_context->ppgtt;
Chris Wilsone61e0f52018-02-21 09:56:36 +00001990 struct intel_engine_cs *engine = rq->engine;
Mika Kuoppalae7167762017-02-28 17:28:10 +02001991 const int num_lri_cmds = GEN8_3LVL_PDPES * 2;
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001992 u32 *cs;
1993 int i;
Michel Thierry7a01a0a2015-06-26 13:46:14 +01001994
Chris Wilsone61e0f52018-02-21 09:56:36 +00001995 cs = intel_ring_begin(rq, num_lri_cmds * 2 + 2);
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001996 if (IS_ERR(cs))
1997 return PTR_ERR(cs);
Michel Thierry7a01a0a2015-06-26 13:46:14 +01001998
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001999 *cs++ = MI_LOAD_REGISTER_IMM(num_lri_cmds);
Mika Kuoppalae7167762017-02-28 17:28:10 +02002000 for (i = GEN8_3LVL_PDPES - 1; i >= 0; i--) {
Michel Thierry7a01a0a2015-06-26 13:46:14 +01002001 const dma_addr_t pd_daddr = i915_page_dir_dma_addr(ppgtt, i);
2002
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002003 *cs++ = i915_mmio_reg_offset(GEN8_RING_PDP_UDW(engine, i));
2004 *cs++ = upper_32_bits(pd_daddr);
2005 *cs++ = i915_mmio_reg_offset(GEN8_RING_PDP_LDW(engine, i));
2006 *cs++ = lower_32_bits(pd_daddr);
Michel Thierry7a01a0a2015-06-26 13:46:14 +01002007 }
2008
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002009 *cs++ = MI_NOOP;
Chris Wilsone61e0f52018-02-21 09:56:36 +00002010 intel_ring_advance(rq, cs);
Michel Thierry7a01a0a2015-06-26 13:46:14 +01002011
2012 return 0;
2013}
2014
Chris Wilsone61e0f52018-02-21 09:56:36 +00002015static int gen8_emit_bb_start(struct i915_request *rq,
Chris Wilson803688b2016-08-02 22:50:27 +01002016 u64 offset, u32 len,
Mika Kuoppala54af56d2017-02-28 17:28:08 +02002017 const unsigned int flags)
Oscar Mateo15648582014-07-24 17:04:32 +01002018{
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002019 u32 *cs;
Oscar Mateo15648582014-07-24 17:04:32 +01002020 int ret;
2021
Michel Thierry7a01a0a2015-06-26 13:46:14 +01002022 /* Don't rely in hw updating PDPs, specially in lite-restore.
2023 * Ideally, we should set Force PD Restore in ctx descriptor,
2024 * but we can't. Force Restore would be a second option, but
2025 * it is unsafe in case of lite-restore (because the ctx is
Michel Thierry2dba3232015-07-30 11:06:23 +01002026 * not idle). PML4 is allocated during ppgtt init so this is
2027 * not needed in 48-bit.*/
Chris Wilson4e0d64d2018-05-17 22:26:30 +01002028 if (rq->gem_context->ppgtt &&
2029 (intel_engine_flag(rq->engine) & rq->gem_context->ppgtt->pd_dirty_rings) &&
Chris Wilson82ad6442018-06-05 16:37:58 +01002030 !i915_vm_is_48bit(&rq->gem_context->ppgtt->vm) &&
Chris Wilsone61e0f52018-02-21 09:56:36 +00002031 !intel_vgpu_active(rq->i915)) {
2032 ret = intel_logical_ring_emit_pdps(rq);
Mika Kuoppala54af56d2017-02-28 17:28:08 +02002033 if (ret)
2034 return ret;
Michel Thierry7a01a0a2015-06-26 13:46:14 +01002035
Chris Wilson4e0d64d2018-05-17 22:26:30 +01002036 rq->gem_context->ppgtt->pd_dirty_rings &= ~intel_engine_flag(rq->engine);
Michel Thierry7a01a0a2015-06-26 13:46:14 +01002037 }
2038
Chris Wilson74f9474122018-05-03 20:54:16 +01002039 cs = intel_ring_begin(rq, 6);
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002040 if (IS_ERR(cs))
2041 return PTR_ERR(cs);
Oscar Mateo15648582014-07-24 17:04:32 +01002042
Chris Wilson279f5a02017-10-05 20:10:05 +01002043 /*
2044 * WaDisableCtxRestoreArbitration:bdw,chv
2045 *
2046 * We don't need to perform MI_ARB_ENABLE as often as we do (in
2047 * particular all the gen that do not need the w/a at all!), if we
2048 * took care to make sure that on every switch into this context
2049 * (both ordinary and for preemption) that arbitrartion was enabled
2050 * we would be fine. However, there doesn't seem to be a downside to
2051 * being paranoid and making sure it is set before each batch and
2052 * every context-switch.
2053 *
2054 * Note that if we fail to enable arbitration before the request
2055 * is complete, then we do not see the context-switch interrupt and
2056 * the engine hangs (with RING_HEAD == RING_TAIL).
2057 *
2058 * That satisfies both the GPGPU w/a and our heavy-handed paranoia.
2059 */
Chris Wilson3ad7b522017-10-03 21:34:49 +01002060 *cs++ = MI_ARB_ON_OFF | MI_ARB_ENABLE;
2061
Oscar Mateo15648582014-07-24 17:04:32 +01002062 /* FIXME(BDW): Address space and security selectors. */
Mika Kuoppala54af56d2017-02-28 17:28:08 +02002063 *cs++ = MI_BATCH_BUFFER_START_GEN8 |
Lucas De Marchi08e3e212018-08-03 16:24:43 -07002064 (flags & I915_DISPATCH_SECURE ? 0 : BIT(8));
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002065 *cs++ = lower_32_bits(offset);
2066 *cs++ = upper_32_bits(offset);
Chris Wilson74f9474122018-05-03 20:54:16 +01002067
2068 *cs++ = MI_ARB_ON_OFF | MI_ARB_DISABLE;
2069 *cs++ = MI_NOOP;
Chris Wilsone61e0f52018-02-21 09:56:36 +00002070 intel_ring_advance(rq, cs);
Oscar Mateo15648582014-07-24 17:04:32 +01002071
2072 return 0;
2073}
2074
Chris Wilson31bb59c2016-07-01 17:23:27 +01002075static void gen8_logical_ring_enable_irq(struct intel_engine_cs *engine)
Oscar Mateo73d477f2014-07-24 17:04:31 +01002076{
Chris Wilsonc0336662016-05-06 15:40:21 +01002077 struct drm_i915_private *dev_priv = engine->i915;
Chris Wilson31bb59c2016-07-01 17:23:27 +01002078 I915_WRITE_IMR(engine,
2079 ~(engine->irq_enable_mask | engine->irq_keep_mask));
2080 POSTING_READ_FW(RING_IMR(engine->mmio_base));
Oscar Mateo73d477f2014-07-24 17:04:31 +01002081}
2082
Chris Wilson31bb59c2016-07-01 17:23:27 +01002083static void gen8_logical_ring_disable_irq(struct intel_engine_cs *engine)
Oscar Mateo73d477f2014-07-24 17:04:31 +01002084{
Chris Wilsonc0336662016-05-06 15:40:21 +01002085 struct drm_i915_private *dev_priv = engine->i915;
Chris Wilson31bb59c2016-07-01 17:23:27 +01002086 I915_WRITE_IMR(engine, ~engine->irq_keep_mask);
Oscar Mateo73d477f2014-07-24 17:04:31 +01002087}
2088
Chris Wilsone61e0f52018-02-21 09:56:36 +00002089static int gen8_emit_flush(struct i915_request *request, u32 mode)
Oscar Mateo47122742014-07-24 17:04:28 +01002090{
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002091 u32 cmd, *cs;
Oscar Mateo47122742014-07-24 17:04:28 +01002092
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002093 cs = intel_ring_begin(request, 4);
2094 if (IS_ERR(cs))
2095 return PTR_ERR(cs);
Oscar Mateo47122742014-07-24 17:04:28 +01002096
2097 cmd = MI_FLUSH_DW + 1;
2098
Chris Wilsonf0a1fb12015-01-22 13:42:00 +00002099 /* We always require a command barrier so that subsequent
2100 * commands, such as breadcrumb interrupts, are strictly ordered
2101 * wrt the contents of the write cache being flushed to memory
2102 * (and thus being coherent from the CPU).
2103 */
2104 cmd |= MI_FLUSH_DW_STORE_INDEX | MI_FLUSH_DW_OP_STOREDW;
2105
Chris Wilson7c9cf4e2016-08-02 22:50:25 +01002106 if (mode & EMIT_INVALIDATE) {
Chris Wilsonf0a1fb12015-01-22 13:42:00 +00002107 cmd |= MI_INVALIDATE_TLB;
Chris Wilson1dae2df2016-08-02 22:50:19 +01002108 if (request->engine->id == VCS)
Chris Wilsonf0a1fb12015-01-22 13:42:00 +00002109 cmd |= MI_INVALIDATE_BSD;
Oscar Mateo47122742014-07-24 17:04:28 +01002110 }
2111
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002112 *cs++ = cmd;
2113 *cs++ = I915_GEM_HWS_SCRATCH_ADDR | MI_FLUSH_DW_USE_GTT;
2114 *cs++ = 0; /* upper addr */
2115 *cs++ = 0; /* value */
2116 intel_ring_advance(request, cs);
Oscar Mateo47122742014-07-24 17:04:28 +01002117
2118 return 0;
2119}
2120
Chris Wilsone61e0f52018-02-21 09:56:36 +00002121static int gen8_emit_flush_render(struct i915_request *request,
Chris Wilson7c9cf4e2016-08-02 22:50:25 +01002122 u32 mode)
Oscar Mateo47122742014-07-24 17:04:28 +01002123{
Chris Wilsonb5321f32016-08-02 22:50:18 +01002124 struct intel_engine_cs *engine = request->engine;
Chris Wilsonbde13eb2016-08-15 10:49:07 +01002125 u32 scratch_addr =
2126 i915_ggtt_offset(engine->scratch) + 2 * CACHELINE_BYTES;
Mika Kuoppala0b2d0932016-06-07 17:19:10 +03002127 bool vf_flush_wa = false, dc_flush_wa = false;
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002128 u32 *cs, flags = 0;
Mika Kuoppala0b2d0932016-06-07 17:19:10 +03002129 int len;
Oscar Mateo47122742014-07-24 17:04:28 +01002130
2131 flags |= PIPE_CONTROL_CS_STALL;
2132
Chris Wilson7c9cf4e2016-08-02 22:50:25 +01002133 if (mode & EMIT_FLUSH) {
Oscar Mateo47122742014-07-24 17:04:28 +01002134 flags |= PIPE_CONTROL_RENDER_TARGET_CACHE_FLUSH;
2135 flags |= PIPE_CONTROL_DEPTH_CACHE_FLUSH;
Francisco Jerez965fd602016-01-13 18:59:39 -08002136 flags |= PIPE_CONTROL_DC_FLUSH_ENABLE;
Chris Wilson40a24482015-08-21 16:08:41 +01002137 flags |= PIPE_CONTROL_FLUSH_ENABLE;
Oscar Mateo47122742014-07-24 17:04:28 +01002138 }
2139
Chris Wilson7c9cf4e2016-08-02 22:50:25 +01002140 if (mode & EMIT_INVALIDATE) {
Oscar Mateo47122742014-07-24 17:04:28 +01002141 flags |= PIPE_CONTROL_TLB_INVALIDATE;
2142 flags |= PIPE_CONTROL_INSTRUCTION_CACHE_INVALIDATE;
2143 flags |= PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE;
2144 flags |= PIPE_CONTROL_VF_CACHE_INVALIDATE;
2145 flags |= PIPE_CONTROL_CONST_CACHE_INVALIDATE;
2146 flags |= PIPE_CONTROL_STATE_CACHE_INVALIDATE;
2147 flags |= PIPE_CONTROL_QW_WRITE;
2148 flags |= PIPE_CONTROL_GLOBAL_GTT_IVB;
Oscar Mateo47122742014-07-24 17:04:28 +01002149
Ben Widawsky1a5a9ce2015-12-17 09:49:57 -08002150 /*
2151 * On GEN9: before VF_CACHE_INVALIDATE we need to emit a NULL
2152 * pipe control.
2153 */
Chris Wilsonc0336662016-05-06 15:40:21 +01002154 if (IS_GEN9(request->i915))
Ben Widawsky1a5a9ce2015-12-17 09:49:57 -08002155 vf_flush_wa = true;
Mika Kuoppala0b2d0932016-06-07 17:19:10 +03002156
2157 /* WaForGAMHang:kbl */
2158 if (IS_KBL_REVID(request->i915, 0, KBL_REVID_B0))
2159 dc_flush_wa = true;
Ben Widawsky1a5a9ce2015-12-17 09:49:57 -08002160 }
Imre Deak9647ff32015-01-25 13:27:11 -08002161
Mika Kuoppala0b2d0932016-06-07 17:19:10 +03002162 len = 6;
2163
2164 if (vf_flush_wa)
2165 len += 6;
2166
2167 if (dc_flush_wa)
2168 len += 12;
2169
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002170 cs = intel_ring_begin(request, len);
2171 if (IS_ERR(cs))
2172 return PTR_ERR(cs);
Oscar Mateo47122742014-07-24 17:04:28 +01002173
Tvrtko Ursulin9f235df2017-02-16 12:23:25 +00002174 if (vf_flush_wa)
2175 cs = gen8_emit_pipe_control(cs, 0, 0);
Imre Deak9647ff32015-01-25 13:27:11 -08002176
Tvrtko Ursulin9f235df2017-02-16 12:23:25 +00002177 if (dc_flush_wa)
2178 cs = gen8_emit_pipe_control(cs, PIPE_CONTROL_DC_FLUSH_ENABLE,
2179 0);
Mika Kuoppala0b2d0932016-06-07 17:19:10 +03002180
Tvrtko Ursulin9f235df2017-02-16 12:23:25 +00002181 cs = gen8_emit_pipe_control(cs, flags, scratch_addr);
Mika Kuoppala0b2d0932016-06-07 17:19:10 +03002182
Tvrtko Ursulin9f235df2017-02-16 12:23:25 +00002183 if (dc_flush_wa)
2184 cs = gen8_emit_pipe_control(cs, PIPE_CONTROL_CS_STALL, 0);
Mika Kuoppala0b2d0932016-06-07 17:19:10 +03002185
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002186 intel_ring_advance(request, cs);
Oscar Mateo47122742014-07-24 17:04:28 +01002187
2188 return 0;
2189}
2190
Chris Wilson7c17d372016-01-20 15:43:35 +02002191/*
2192 * Reserve space for 2 NOOPs at the end of each request to be
2193 * used as a workaround for not being allowed to do lite
2194 * restore with HEAD==TAIL (WaIdleLiteRestore).
2195 */
Chris Wilsone61e0f52018-02-21 09:56:36 +00002196static void gen8_emit_wa_tail(struct i915_request *request, u32 *cs)
Oscar Mateo4da46e12014-07-24 17:04:27 +01002197{
Chris Wilsonbeecec92017-10-03 21:34:52 +01002198 /* Ensure there's always at least one preemption point per-request. */
2199 *cs++ = MI_ARB_CHECK;
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002200 *cs++ = MI_NOOP;
2201 request->wa_tail = intel_ring_offset(request, cs);
Chris Wilsoncaddfe72016-10-28 13:58:52 +01002202}
Oscar Mateo4da46e12014-07-24 17:04:27 +01002203
Chris Wilsone61e0f52018-02-21 09:56:36 +00002204static void gen8_emit_breadcrumb(struct i915_request *request, u32 *cs)
Chris Wilsoncaddfe72016-10-28 13:58:52 +01002205{
Chris Wilson7c17d372016-01-20 15:43:35 +02002206 /* w/a: bit 5 needs to be zero for MI_FLUSH_DW address. */
2207 BUILD_BUG_ON(I915_GEM_HWS_INDEX_ADDR & (1 << 5));
Oscar Mateo4da46e12014-07-24 17:04:27 +01002208
Michał Winiarskidf77cd82017-10-25 22:00:15 +02002209 cs = gen8_emit_ggtt_write(cs, request->global_seqno,
2210 intel_hws_seqno_address(request->engine));
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002211 *cs++ = MI_USER_INTERRUPT;
Chris Wilson74f9474122018-05-03 20:54:16 +01002212 *cs++ = MI_ARB_ON_OFF | MI_ARB_ENABLE;
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002213 request->tail = intel_ring_offset(request, cs);
Chris Wilsoned1501d2017-03-27 14:14:12 +01002214 assert_ring_tail_valid(request->ring, request->tail);
Chris Wilsoncaddfe72016-10-28 13:58:52 +01002215
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002216 gen8_emit_wa_tail(request, cs);
Chris Wilson7c17d372016-01-20 15:43:35 +02002217}
Chris Wilson98f29e82016-10-28 13:58:51 +01002218static const int gen8_emit_breadcrumb_sz = 6 + WA_TAIL_DWORDS;
2219
Chris Wilsone61e0f52018-02-21 09:56:36 +00002220static void gen8_emit_breadcrumb_rcs(struct i915_request *request, u32 *cs)
Chris Wilson7c17d372016-01-20 15:43:35 +02002221{
Michał Winiarskice81a652016-04-12 15:51:55 +02002222 /* We're using qword write, seqno should be aligned to 8 bytes. */
2223 BUILD_BUG_ON(I915_GEM_HWS_INDEX & 1);
2224
Michał Winiarskidf77cd82017-10-25 22:00:15 +02002225 cs = gen8_emit_ggtt_write_rcs(cs, request->global_seqno,
2226 intel_hws_seqno_address(request->engine));
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002227 *cs++ = MI_USER_INTERRUPT;
Chris Wilson74f9474122018-05-03 20:54:16 +01002228 *cs++ = MI_ARB_ON_OFF | MI_ARB_ENABLE;
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002229 request->tail = intel_ring_offset(request, cs);
Chris Wilsoned1501d2017-03-27 14:14:12 +01002230 assert_ring_tail_valid(request->ring, request->tail);
Chris Wilsoncaddfe72016-10-28 13:58:52 +01002231
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002232 gen8_emit_wa_tail(request, cs);
Oscar Mateo4da46e12014-07-24 17:04:27 +01002233}
Michał Winiarskidf77cd82017-10-25 22:00:15 +02002234static const int gen8_emit_breadcrumb_rcs_sz = 8 + WA_TAIL_DWORDS;
Chris Wilson98f29e82016-10-28 13:58:51 +01002235
Chris Wilsone61e0f52018-02-21 09:56:36 +00002236static int gen8_init_rcs_context(struct i915_request *rq)
Thomas Daniele7778be2014-12-02 12:50:48 +00002237{
2238 int ret;
2239
Oscar Mateo59b449d2018-04-10 09:12:47 -07002240 ret = intel_ctx_workarounds_emit(rq);
Thomas Daniele7778be2014-12-02 12:50:48 +00002241 if (ret)
2242 return ret;
2243
Chris Wilsone61e0f52018-02-21 09:56:36 +00002244 ret = intel_rcs_context_init_mocs(rq);
Peter Antoine3bbaba02015-07-10 20:13:11 +03002245 /*
2246 * Failing to program the MOCS is non-fatal.The system will not
2247 * run at peak performance. So generate an error and carry on.
2248 */
2249 if (ret)
2250 DRM_ERROR("MOCS failed to program: expect performance issues.\n");
2251
Chris Wilsone61e0f52018-02-21 09:56:36 +00002252 return i915_gem_render_state_emit(rq);
Thomas Daniele7778be2014-12-02 12:50:48 +00002253}
2254
Oscar Mateo73e4d072014-07-24 17:04:48 +01002255/**
2256 * intel_logical_ring_cleanup() - deallocate the Engine Command Streamer
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01002257 * @engine: Engine Command Streamer.
Oscar Mateo73e4d072014-07-24 17:04:48 +01002258 */
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002259void intel_logical_ring_cleanup(struct intel_engine_cs *engine)
Oscar Mateo454afeb2014-07-24 17:04:22 +01002260{
John Harrison6402c332014-10-31 12:00:26 +00002261 struct drm_i915_private *dev_priv;
Oscar Mateo9832b9d2014-07-24 17:04:30 +01002262
Tvrtko Ursulin27af5ee2016-04-04 12:11:56 +01002263 /*
2264 * Tasklet cannot be active at this point due intel_mark_active/idle
2265 * so this is just for documentation.
2266 */
Sagar Arun Kamblec6dce8f2017-11-16 19:02:37 +05302267 if (WARN_ON(test_bit(TASKLET_STATE_SCHED,
2268 &engine->execlists.tasklet.state)))
2269 tasklet_kill(&engine->execlists.tasklet);
Tvrtko Ursulin27af5ee2016-04-04 12:11:56 +01002270
Chris Wilsonc0336662016-05-06 15:40:21 +01002271 dev_priv = engine->i915;
John Harrison6402c332014-10-31 12:00:26 +00002272
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002273 if (engine->buffer) {
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002274 WARN_ON((I915_READ_MODE(engine) & MODE_IDLE) == 0);
Dave Gordonb0366a52015-12-08 15:02:36 +00002275 }
Oscar Mateo48d82382014-07-24 17:04:23 +01002276
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002277 if (engine->cleanup)
2278 engine->cleanup(engine);
Oscar Mateo48d82382014-07-24 17:04:23 +01002279
Chris Wilsone8a9c582016-12-18 15:37:20 +00002280 intel_engine_cleanup_common(engine);
Arun Siluvery17ee9502015-06-19 19:07:01 +01002281
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00002282 lrc_destroy_wa_ctx(engine);
Chris Wilsonf3c9d4072018-01-02 15:12:34 +00002283
Chris Wilsonc0336662016-05-06 15:40:21 +01002284 engine->i915 = NULL;
Akash Goel3b3f1652016-10-13 22:44:48 +05302285 dev_priv->engine[engine->id] = NULL;
2286 kfree(engine);
Oscar Mateo454afeb2014-07-24 17:04:22 +01002287}
2288
Chris Wilson209b7952018-07-17 21:29:32 +01002289void intel_execlists_set_default_submission(struct intel_engine_cs *engine)
Chris Wilsonddd66c52016-08-02 22:50:31 +01002290{
Chris Wilsonff44ad52017-03-16 17:13:03 +00002291 engine->submit_request = execlists_submit_request;
Chris Wilson27a5f612017-09-15 18:31:00 +01002292 engine->cancel_requests = execlists_cancel_requests;
Chris Wilsonff44ad52017-03-16 17:13:03 +00002293 engine->schedule = execlists_schedule;
Sagar Arun Kamblec6dce8f2017-11-16 19:02:37 +05302294 engine->execlists.tasklet.func = execlists_submission_tasklet;
Chris Wilsonaba5e272017-10-25 15:39:41 +01002295
Chris Wilson13291152018-05-16 19:33:52 +01002296 engine->reset.prepare = execlists_reset_prepare;
2297
Chris Wilsonaba5e272017-10-25 15:39:41 +01002298 engine->park = NULL;
2299 engine->unpark = NULL;
Tvrtko Ursulincf669b42017-11-29 10:28:05 +00002300
2301 engine->flags |= I915_ENGINE_SUPPORTS_STATS;
Chris Wilson2a694fe2018-04-03 19:35:37 +01002302 if (engine->i915->preempt_context)
2303 engine->flags |= I915_ENGINE_HAS_PREEMPTION;
Chris Wilson3fed1802018-02-07 21:05:43 +00002304
2305 engine->i915->caps.scheduler =
2306 I915_SCHEDULER_CAP_ENABLED |
2307 I915_SCHEDULER_CAP_PRIORITY;
Chris Wilson2a694fe2018-04-03 19:35:37 +01002308 if (intel_engine_has_preemption(engine))
Chris Wilson3fed1802018-02-07 21:05:43 +00002309 engine->i915->caps.scheduler |= I915_SCHEDULER_CAP_PREEMPTION;
Chris Wilsonddd66c52016-08-02 22:50:31 +01002310}
2311
Tvrtko Ursulinc9cacf92016-01-12 17:32:34 +00002312static void
Chris Wilsone1382ef2016-05-06 15:40:20 +01002313logical_ring_default_vfuncs(struct intel_engine_cs *engine)
Tvrtko Ursulinc9cacf92016-01-12 17:32:34 +00002314{
2315 /* Default vfuncs which can be overriden by each engine. */
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002316 engine->init_hw = gen8_init_common_ring;
Chris Wilson5adfb772018-05-16 19:33:51 +01002317
2318 engine->reset.prepare = execlists_reset_prepare;
2319 engine->reset.reset = execlists_reset;
2320 engine->reset.finish = execlists_reset_finish;
Chris Wilsone8a9c582016-12-18 15:37:20 +00002321
2322 engine->context_pin = execlists_context_pin;
Chris Wilsonf73e7392016-12-18 15:37:24 +00002323 engine->request_alloc = execlists_request_alloc;
2324
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002325 engine->emit_flush = gen8_emit_flush;
Chris Wilson9b81d552016-10-28 13:58:50 +01002326 engine->emit_breadcrumb = gen8_emit_breadcrumb;
Chris Wilson98f29e82016-10-28 13:58:51 +01002327 engine->emit_breadcrumb_sz = gen8_emit_breadcrumb_sz;
Chris Wilsonff44ad52017-03-16 17:13:03 +00002328
Chris Wilson209b7952018-07-17 21:29:32 +01002329 engine->set_default_submission = intel_execlists_set_default_submission;
Chris Wilsonddd66c52016-08-02 22:50:31 +01002330
Tvrtko Ursulind4ccceb2018-03-02 18:14:56 +02002331 if (INTEL_GEN(engine->i915) < 11) {
2332 engine->irq_enable = gen8_logical_ring_enable_irq;
2333 engine->irq_disable = gen8_logical_ring_disable_irq;
2334 } else {
2335 /*
2336 * TODO: On Gen11 interrupt masks need to be clear
2337 * to allow C6 entry. Keep interrupts enabled at
2338 * and take the hit of generating extra interrupts
2339 * until a more refined solution exists.
2340 */
2341 }
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002342 engine->emit_bb_start = gen8_emit_bb_start;
Tvrtko Ursulinc9cacf92016-01-12 17:32:34 +00002343}
2344
Tvrtko Ursulind9f3af92016-01-12 17:32:35 +00002345static inline void
Dave Gordonc2c7f242016-07-13 16:03:35 +01002346logical_ring_default_irqs(struct intel_engine_cs *engine)
Tvrtko Ursulind9f3af92016-01-12 17:32:35 +00002347{
Daniele Ceraolo Spuriofa6f0712018-03-14 11:26:53 -07002348 unsigned int shift = 0;
2349
2350 if (INTEL_GEN(engine->i915) < 11) {
2351 const u8 irq_shifts[] = {
2352 [RCS] = GEN8_RCS_IRQ_SHIFT,
2353 [BCS] = GEN8_BCS_IRQ_SHIFT,
2354 [VCS] = GEN8_VCS1_IRQ_SHIFT,
2355 [VCS2] = GEN8_VCS2_IRQ_SHIFT,
2356 [VECS] = GEN8_VECS_IRQ_SHIFT,
2357 };
2358
2359 shift = irq_shifts[engine->id];
2360 }
2361
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002362 engine->irq_enable_mask = GT_RENDER_USER_INTERRUPT << shift;
2363 engine->irq_keep_mask = GT_CONTEXT_SWITCH_INTERRUPT << shift;
Tvrtko Ursulind9f3af92016-01-12 17:32:35 +00002364}
2365
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01002366static void
2367logical_ring_setup(struct intel_engine_cs *engine)
2368{
Tvrtko Ursulin019bf272016-07-13 16:03:41 +01002369 intel_engine_setup_common(engine);
2370
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01002371 /* Intentionally left blank. */
2372 engine->buffer = NULL;
2373
Sagar Arun Kamblec6dce8f2017-11-16 19:02:37 +05302374 tasklet_init(&engine->execlists.tasklet,
2375 execlists_submission_tasklet, (unsigned long)engine);
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01002376
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01002377 logical_ring_default_vfuncs(engine);
2378 logical_ring_default_irqs(engine);
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01002379}
2380
Chris Wilsonbc4237e2018-06-28 21:12:07 +01002381static bool csb_force_mmio(struct drm_i915_private *i915)
2382{
2383 /* Older GVT emulation depends upon intercepting CSB mmio */
2384 return intel_vgpu_active(i915) && !intel_vgpu_has_hwsp_emulation(i915);
2385}
2386
Daniele Ceraolo Spurio486e93f2017-09-13 09:56:02 +01002387static int logical_ring_init(struct intel_engine_cs *engine)
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01002388{
Chris Wilsonbc4237e2018-06-28 21:12:07 +01002389 struct drm_i915_private *i915 = engine->i915;
2390 struct intel_engine_execlists * const execlists = &engine->execlists;
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01002391 int ret;
2392
Tvrtko Ursulin019bf272016-07-13 16:03:41 +01002393 ret = intel_engine_init_common(engine);
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01002394 if (ret)
2395 goto error;
2396
Chris Wilsonbc4237e2018-06-28 21:12:07 +01002397 if (HAS_LOGICAL_RING_ELSQ(i915)) {
2398 execlists->submit_reg = i915->regs +
Thomas Daniel05f0add2018-03-02 18:14:59 +02002399 i915_mmio_reg_offset(RING_EXECLIST_SQ_CONTENTS(engine));
Chris Wilsonbc4237e2018-06-28 21:12:07 +01002400 execlists->ctrl_reg = i915->regs +
Thomas Daniel05f0add2018-03-02 18:14:59 +02002401 i915_mmio_reg_offset(RING_EXECLIST_CONTROL(engine));
2402 } else {
Chris Wilsonbc4237e2018-06-28 21:12:07 +01002403 execlists->submit_reg = i915->regs +
Thomas Daniel05f0add2018-03-02 18:14:59 +02002404 i915_mmio_reg_offset(RING_ELSP(engine));
2405 }
Chris Wilson693cfbf2018-01-02 15:12:33 +00002406
Chris Wilsonbc4237e2018-06-28 21:12:07 +01002407 execlists->preempt_complete_status = ~0u;
2408 if (i915->preempt_context) {
Chris Wilsonab82a062018-04-30 14:15:01 +01002409 struct intel_context *ce =
Chris Wilsonbc4237e2018-06-28 21:12:07 +01002410 to_intel_context(i915->preempt_context, engine);
Chris Wilsonab82a062018-04-30 14:15:01 +01002411
Chris Wilsonbc4237e2018-06-28 21:12:07 +01002412 execlists->preempt_complete_status =
Chris Wilsonab82a062018-04-30 14:15:01 +01002413 upper_32_bits(ce->lrc_desc);
2414 }
Chris Wilsond6376372018-02-07 21:05:44 +00002415
Chris Wilsonbc4237e2018-06-28 21:12:07 +01002416 execlists->csb_read =
2417 i915->regs + i915_mmio_reg_offset(RING_CONTEXT_STATUS_PTR(engine));
2418 if (csb_force_mmio(i915)) {
2419 execlists->csb_status = (u32 __force *)
2420 (i915->regs + i915_mmio_reg_offset(RING_CONTEXT_STATUS_BUF_LO(engine, 0)));
2421
2422 execlists->csb_write = (u32 __force *)execlists->csb_read;
Chris Wilsonf4b58f02018-06-28 21:12:08 +01002423 execlists->csb_write_reset =
2424 _MASKED_FIELD(GEN8_CSB_WRITE_PTR_MASK,
2425 GEN8_CSB_ENTRIES - 1);
Chris Wilsonbc4237e2018-06-28 21:12:07 +01002426 } else {
2427 execlists->csb_status =
2428 &engine->status_page.page_addr[I915_HWS_CSB_BUF0_INDEX];
2429
2430 execlists->csb_write =
2431 &engine->status_page.page_addr[intel_hws_csb_write_index(i915)];
Chris Wilsonf4b58f02018-06-28 21:12:08 +01002432 execlists->csb_write_reset = GEN8_CSB_ENTRIES - 1;
Chris Wilsonbc4237e2018-06-28 21:12:07 +01002433 }
Chris Wilsonf4b58f02018-06-28 21:12:08 +01002434 reset_csb_pointers(execlists);
Chris Wilsonc3160da2018-05-31 09:22:45 +01002435
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01002436 return 0;
2437
2438error:
2439 intel_logical_ring_cleanup(engine);
2440 return ret;
2441}
2442
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +01002443int logical_render_ring_init(struct intel_engine_cs *engine)
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01002444{
2445 struct drm_i915_private *dev_priv = engine->i915;
2446 int ret;
2447
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01002448 logical_ring_setup(engine);
2449
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01002450 if (HAS_L3_DPF(dev_priv))
2451 engine->irq_keep_mask |= GT_RENDER_L3_PARITY_ERROR_INTERRUPT;
2452
2453 /* Override some for render ring. */
2454 if (INTEL_GEN(dev_priv) >= 9)
2455 engine->init_hw = gen9_init_render_ring;
2456 else
2457 engine->init_hw = gen8_init_render_ring;
2458 engine->init_context = gen8_init_rcs_context;
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01002459 engine->emit_flush = gen8_emit_flush_render;
Michał Winiarskidf77cd82017-10-25 22:00:15 +02002460 engine->emit_breadcrumb = gen8_emit_breadcrumb_rcs;
2461 engine->emit_breadcrumb_sz = gen8_emit_breadcrumb_rcs_sz;
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01002462
Chris Wilsonf51455d2017-01-10 14:47:34 +00002463 ret = intel_engine_create_scratch(engine, PAGE_SIZE);
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01002464 if (ret)
2465 return ret;
2466
2467 ret = intel_init_workaround_bb(engine);
2468 if (ret) {
2469 /*
2470 * We continue even if we fail to initialize WA batch
2471 * because we only expect rare glitches but nothing
2472 * critical to prevent us from using GPU
2473 */
2474 DRM_ERROR("WA batch buffer initialization failed: %d\n",
2475 ret);
2476 }
2477
Tvrtko Ursulind038fc72016-12-16 13:18:42 +00002478 return logical_ring_init(engine);
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01002479}
2480
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +01002481int logical_xcs_ring_init(struct intel_engine_cs *engine)
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01002482{
2483 logical_ring_setup(engine);
2484
2485 return logical_ring_init(engine);
2486}
2487
Jeff McGee0cea6502015-02-13 10:27:56 -06002488static u32
Chris Wilsonc0336662016-05-06 15:40:21 +01002489make_rpcs(struct drm_i915_private *dev_priv)
Jeff McGee0cea6502015-02-13 10:27:56 -06002490{
Tvrtko Ursulinb212f0a2018-09-03 12:30:07 +01002491 bool subslice_pg = INTEL_INFO(dev_priv)->sseu.has_subslice_pg;
2492 u8 slices = hweight8(INTEL_INFO(dev_priv)->sseu.slice_mask);
2493 u8 subslices = hweight8(INTEL_INFO(dev_priv)->sseu.subslice_mask[0]);
Jeff McGee0cea6502015-02-13 10:27:56 -06002494 u32 rpcs = 0;
2495
2496 /*
2497 * No explicit RPCS request is needed to ensure full
2498 * slice/subslice/EU enablement prior to Gen9.
2499 */
Chris Wilsonc0336662016-05-06 15:40:21 +01002500 if (INTEL_GEN(dev_priv) < 9)
Jeff McGee0cea6502015-02-13 10:27:56 -06002501 return 0;
2502
2503 /*
Tvrtko Ursulinb212f0a2018-09-03 12:30:07 +01002504 * Since the SScount bitfield in GEN8_R_PWR_CLK_STATE is only three bits
2505 * wide and Icelake has up to eight subslices, specfial programming is
2506 * needed in order to correctly enable all subslices.
2507 *
2508 * According to documentation software must consider the configuration
2509 * as 2x4x8 and hardware will translate this to 1x8x8.
2510 *
2511 * Furthemore, even though SScount is three bits, maximum documented
2512 * value for it is four. From this some rules/restrictions follow:
2513 *
2514 * 1.
2515 * If enabled subslice count is greater than four, two whole slices must
2516 * be enabled instead.
2517 *
2518 * 2.
2519 * When more than one slice is enabled, hardware ignores the subslice
2520 * count altogether.
2521 *
2522 * From these restrictions it follows that it is not possible to enable
2523 * a count of subslices between the SScount maximum of four restriction,
2524 * and the maximum available number on a particular SKU. Either all
2525 * subslices are enabled, or a count between one and four on the first
2526 * slice.
2527 */
2528 if (IS_GEN11(dev_priv) && slices == 1 && subslices >= 4) {
2529 GEM_BUG_ON(subslices & 1);
2530
2531 subslice_pg = false;
2532 slices *= 2;
2533 }
2534
2535 /*
Jeff McGee0cea6502015-02-13 10:27:56 -06002536 * Starting in Gen9, render power gating can leave
2537 * slice/subslice/EU in a partially enabled state. We
2538 * must make an explicit request through RPCS for full
2539 * enablement.
2540 */
Imre Deak43b67992016-08-31 19:13:02 +03002541 if (INTEL_INFO(dev_priv)->sseu.has_slice_pg) {
Tvrtko Ursulinb212f0a2018-09-03 12:30:07 +01002542 u32 mask, val = slices;
2543
2544 if (INTEL_GEN(dev_priv) >= 11) {
2545 mask = GEN11_RPCS_S_CNT_MASK;
2546 val <<= GEN11_RPCS_S_CNT_SHIFT;
2547 } else {
2548 mask = GEN8_RPCS_S_CNT_MASK;
2549 val <<= GEN8_RPCS_S_CNT_SHIFT;
2550 }
2551
2552 GEM_BUG_ON(val & ~mask);
2553 val &= mask;
2554
2555 rpcs |= GEN8_RPCS_ENABLE | GEN8_RPCS_S_CNT_ENABLE | val;
Jeff McGee0cea6502015-02-13 10:27:56 -06002556 }
2557
Tvrtko Ursulinb212f0a2018-09-03 12:30:07 +01002558 if (subslice_pg) {
2559 u32 val = subslices;
2560
2561 val <<= GEN8_RPCS_SS_CNT_SHIFT;
2562
2563 GEM_BUG_ON(val & ~GEN8_RPCS_SS_CNT_MASK);
2564 val &= GEN8_RPCS_SS_CNT_MASK;
2565
2566 rpcs |= GEN8_RPCS_ENABLE | GEN8_RPCS_SS_CNT_ENABLE | val;
Jeff McGee0cea6502015-02-13 10:27:56 -06002567 }
2568
Imre Deak43b67992016-08-31 19:13:02 +03002569 if (INTEL_INFO(dev_priv)->sseu.has_eu_pg) {
Tvrtko Ursulinb212f0a2018-09-03 12:30:07 +01002570 u32 val;
2571
2572 val = INTEL_INFO(dev_priv)->sseu.eu_per_subslice <<
2573 GEN8_RPCS_EU_MIN_SHIFT;
2574 GEM_BUG_ON(val & ~GEN8_RPCS_EU_MIN_MASK);
2575 val &= GEN8_RPCS_EU_MIN_MASK;
2576
2577 rpcs |= val;
2578
2579 val = INTEL_INFO(dev_priv)->sseu.eu_per_subslice <<
2580 GEN8_RPCS_EU_MAX_SHIFT;
2581 GEM_BUG_ON(val & ~GEN8_RPCS_EU_MAX_MASK);
2582 val &= GEN8_RPCS_EU_MAX_MASK;
2583
2584 rpcs |= val;
2585
Jeff McGee0cea6502015-02-13 10:27:56 -06002586 rpcs |= GEN8_RPCS_ENABLE;
2587 }
2588
2589 return rpcs;
2590}
2591
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002592static u32 intel_lr_indirect_ctx_offset(struct intel_engine_cs *engine)
Michel Thierry71562912016-02-23 10:31:49 +00002593{
2594 u32 indirect_ctx_offset;
2595
Chris Wilsonc0336662016-05-06 15:40:21 +01002596 switch (INTEL_GEN(engine->i915)) {
Michel Thierry71562912016-02-23 10:31:49 +00002597 default:
Chris Wilsonc0336662016-05-06 15:40:21 +01002598 MISSING_CASE(INTEL_GEN(engine->i915));
Michel Thierry71562912016-02-23 10:31:49 +00002599 /* fall through */
Michel Thierryfd034c72018-03-02 18:15:00 +02002600 case 11:
2601 indirect_ctx_offset =
2602 GEN11_CTX_RCS_INDIRECT_CTX_OFFSET_DEFAULT;
2603 break;
Michel Thierry7bd0a2c2017-06-06 13:30:38 -07002604 case 10:
2605 indirect_ctx_offset =
2606 GEN10_CTX_RCS_INDIRECT_CTX_OFFSET_DEFAULT;
2607 break;
Michel Thierry71562912016-02-23 10:31:49 +00002608 case 9:
2609 indirect_ctx_offset =
2610 GEN9_CTX_RCS_INDIRECT_CTX_OFFSET_DEFAULT;
2611 break;
2612 case 8:
2613 indirect_ctx_offset =
2614 GEN8_CTX_RCS_INDIRECT_CTX_OFFSET_DEFAULT;
2615 break;
2616 }
2617
2618 return indirect_ctx_offset;
2619}
2620
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002621static void execlists_init_reg_state(u32 *regs,
Chris Wilsona3aabe82016-10-04 21:11:26 +01002622 struct i915_gem_context *ctx,
2623 struct intel_engine_cs *engine,
2624 struct intel_ring *ring)
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002625{
Chris Wilsona3aabe82016-10-04 21:11:26 +01002626 struct drm_i915_private *dev_priv = engine->i915;
2627 struct i915_hw_ppgtt *ppgtt = ctx->ppgtt ?: dev_priv->mm.aliasing_ppgtt;
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002628 u32 base = engine->mmio_base;
Chris Wilson1fc44d92018-05-17 22:26:32 +01002629 bool rcs = engine->class == RENDER_CLASS;
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002630
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002631 /* A context is actually a big batch buffer with several
2632 * MI_LOAD_REGISTER_IMM commands followed by (reg, value) pairs. The
2633 * values we are setting here are only for the first context restore:
2634 * on a subsequent save, the GPU will recreate this batchbuffer with new
2635 * values (including all the missing MI_LOAD_REGISTER_IMM commands that
2636 * we are not initializing here).
2637 */
2638 regs[CTX_LRI_HEADER_0] = MI_LOAD_REGISTER_IMM(rcs ? 14 : 11) |
2639 MI_LRI_FORCE_POSTED;
2640
2641 CTX_REG(regs, CTX_CONTEXT_CONTROL, RING_CONTEXT_CONTROL(engine),
Paulo Zanoniee435832018-08-09 16:58:52 -07002642 _MASKED_BIT_DISABLE(CTX_CTRL_ENGINE_CTX_RESTORE_INHIBIT) |
Lucas De Marchi08e3e212018-08-03 16:24:43 -07002643 _MASKED_BIT_ENABLE(CTX_CTRL_INHIBIT_SYN_CTX_SWITCH));
Paulo Zanoniee435832018-08-09 16:58:52 -07002644 if (INTEL_GEN(dev_priv) < 11) {
2645 regs[CTX_CONTEXT_CONTROL + 1] |=
2646 _MASKED_BIT_DISABLE(CTX_CTRL_ENGINE_CTX_SAVE_INHIBIT |
2647 CTX_CTRL_RS_CTX_ENABLE);
2648 }
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002649 CTX_REG(regs, CTX_RING_HEAD, RING_HEAD(base), 0);
2650 CTX_REG(regs, CTX_RING_TAIL, RING_TAIL(base), 0);
2651 CTX_REG(regs, CTX_RING_BUFFER_START, RING_START(base), 0);
2652 CTX_REG(regs, CTX_RING_BUFFER_CONTROL, RING_CTL(base),
2653 RING_CTL_SIZE(ring->size) | RING_VALID);
2654 CTX_REG(regs, CTX_BB_HEAD_U, RING_BBADDR_UDW(base), 0);
2655 CTX_REG(regs, CTX_BB_HEAD_L, RING_BBADDR(base), 0);
2656 CTX_REG(regs, CTX_BB_STATE, RING_BBSTATE(base), RING_BB_PPGTT);
2657 CTX_REG(regs, CTX_SECOND_BB_HEAD_U, RING_SBBADDR_UDW(base), 0);
2658 CTX_REG(regs, CTX_SECOND_BB_HEAD_L, RING_SBBADDR(base), 0);
2659 CTX_REG(regs, CTX_SECOND_BB_STATE, RING_SBBSTATE(base), 0);
2660 if (rcs) {
Chris Wilson604a8f62017-09-21 14:54:43 +01002661 struct i915_ctx_workarounds *wa_ctx = &engine->wa_ctx;
2662
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002663 CTX_REG(regs, CTX_RCS_INDIRECT_CTX, RING_INDIRECT_CTX(base), 0);
2664 CTX_REG(regs, CTX_RCS_INDIRECT_CTX_OFFSET,
2665 RING_INDIRECT_CTX_OFFSET(base), 0);
Chris Wilson604a8f62017-09-21 14:54:43 +01002666 if (wa_ctx->indirect_ctx.size) {
Chris Wilsonbde13eb2016-08-15 10:49:07 +01002667 u32 ggtt_offset = i915_ggtt_offset(wa_ctx->vma);
Arun Siluvery17ee9502015-06-19 19:07:01 +01002668
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002669 regs[CTX_RCS_INDIRECT_CTX + 1] =
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00002670 (ggtt_offset + wa_ctx->indirect_ctx.offset) |
2671 (wa_ctx->indirect_ctx.size / CACHELINE_BYTES);
Arun Siluvery17ee9502015-06-19 19:07:01 +01002672
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002673 regs[CTX_RCS_INDIRECT_CTX_OFFSET + 1] =
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002674 intel_lr_indirect_ctx_offset(engine) << 6;
Chris Wilson604a8f62017-09-21 14:54:43 +01002675 }
2676
2677 CTX_REG(regs, CTX_BB_PER_CTX_PTR, RING_BB_PER_CTX_PTR(base), 0);
2678 if (wa_ctx->per_ctx.size) {
2679 u32 ggtt_offset = i915_ggtt_offset(wa_ctx->vma);
Arun Siluvery17ee9502015-06-19 19:07:01 +01002680
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002681 regs[CTX_BB_PER_CTX_PTR + 1] =
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00002682 (ggtt_offset + wa_ctx->per_ctx.offset) | 0x01;
Arun Siluvery17ee9502015-06-19 19:07:01 +01002683 }
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002684 }
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002685
2686 regs[CTX_LRI_HEADER_1] = MI_LOAD_REGISTER_IMM(9) | MI_LRI_FORCE_POSTED;
2687
2688 CTX_REG(regs, CTX_CTX_TIMESTAMP, RING_CTX_TIMESTAMP(base), 0);
Ville Syrjälä0d925ea2015-11-04 23:20:11 +02002689 /* PDP values well be assigned later if needed */
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002690 CTX_REG(regs, CTX_PDP3_UDW, GEN8_RING_PDP_UDW(engine, 3), 0);
2691 CTX_REG(regs, CTX_PDP3_LDW, GEN8_RING_PDP_LDW(engine, 3), 0);
2692 CTX_REG(regs, CTX_PDP2_UDW, GEN8_RING_PDP_UDW(engine, 2), 0);
2693 CTX_REG(regs, CTX_PDP2_LDW, GEN8_RING_PDP_LDW(engine, 2), 0);
2694 CTX_REG(regs, CTX_PDP1_UDW, GEN8_RING_PDP_UDW(engine, 1), 0);
2695 CTX_REG(regs, CTX_PDP1_LDW, GEN8_RING_PDP_LDW(engine, 1), 0);
2696 CTX_REG(regs, CTX_PDP0_UDW, GEN8_RING_PDP_UDW(engine, 0), 0);
2697 CTX_REG(regs, CTX_PDP0_LDW, GEN8_RING_PDP_LDW(engine, 0), 0);
Michel Thierryd7b26332015-04-08 12:13:34 +01002698
Chris Wilson82ad6442018-06-05 16:37:58 +01002699 if (ppgtt && i915_vm_is_48bit(&ppgtt->vm)) {
Michel Thierry2dba3232015-07-30 11:06:23 +01002700 /* 64b PPGTT (48bit canonical)
2701 * PDP0_DESCRIPTOR contains the base address to PML4 and
2702 * other PDP Descriptors are ignored.
2703 */
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002704 ASSIGN_CTX_PML4(ppgtt, regs);
Michel Thierry2dba3232015-07-30 11:06:23 +01002705 }
2706
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002707 if (rcs) {
2708 regs[CTX_LRI_HEADER_2] = MI_LOAD_REGISTER_IMM(1);
2709 CTX_REG(regs, CTX_R_PWR_CLK_STATE, GEN8_R_PWR_CLK_STATE,
2710 make_rpcs(dev_priv));
Robert Bragg19f81df2017-06-13 12:23:03 +01002711
2712 i915_oa_init_reg_state(engine, ctx, regs);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002713 }
Chris Wilsond0f5cc52018-07-30 17:43:25 +01002714
2715 regs[CTX_END] = MI_BATCH_BUFFER_END;
2716 if (INTEL_GEN(dev_priv) >= 10)
2717 regs[CTX_END] |= BIT(0);
Chris Wilsona3aabe82016-10-04 21:11:26 +01002718}
2719
2720static int
2721populate_lr_context(struct i915_gem_context *ctx,
2722 struct drm_i915_gem_object *ctx_obj,
2723 struct intel_engine_cs *engine,
2724 struct intel_ring *ring)
2725{
2726 void *vaddr;
Chris Wilsond2b4b972017-11-10 14:26:33 +00002727 u32 *regs;
Chris Wilsona3aabe82016-10-04 21:11:26 +01002728 int ret;
2729
2730 ret = i915_gem_object_set_to_cpu_domain(ctx_obj, true);
2731 if (ret) {
2732 DRM_DEBUG_DRIVER("Could not set to CPU domain\n");
2733 return ret;
2734 }
2735
2736 vaddr = i915_gem_object_pin_map(ctx_obj, I915_MAP_WB);
2737 if (IS_ERR(vaddr)) {
2738 ret = PTR_ERR(vaddr);
2739 DRM_DEBUG_DRIVER("Could not map object pages! (%d)\n", ret);
2740 return ret;
2741 }
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002742 ctx_obj->mm.dirty = true;
Chris Wilsona3aabe82016-10-04 21:11:26 +01002743
Chris Wilsond2b4b972017-11-10 14:26:33 +00002744 if (engine->default_state) {
2745 /*
2746 * We only want to copy over the template context state;
2747 * skipping over the headers reserved for GuC communication,
2748 * leaving those as zero.
2749 */
2750 const unsigned long start = LRC_HEADER_PAGES * PAGE_SIZE;
2751 void *defaults;
2752
2753 defaults = i915_gem_object_pin_map(engine->default_state,
2754 I915_MAP_WB);
Matthew Auldaaefa062018-03-01 11:46:39 +00002755 if (IS_ERR(defaults)) {
2756 ret = PTR_ERR(defaults);
2757 goto err_unpin_ctx;
2758 }
Chris Wilsond2b4b972017-11-10 14:26:33 +00002759
2760 memcpy(vaddr + start, defaults + start, engine->context_size);
2761 i915_gem_object_unpin_map(engine->default_state);
2762 }
2763
Chris Wilsona3aabe82016-10-04 21:11:26 +01002764 /* The second page of the context object contains some fields which must
2765 * be set up prior to the first execution. */
Chris Wilsond2b4b972017-11-10 14:26:33 +00002766 regs = vaddr + LRC_STATE_PN * PAGE_SIZE;
2767 execlists_init_reg_state(regs, ctx, engine, ring);
2768 if (!engine->default_state)
2769 regs[CTX_CONTEXT_CONTROL + 1] |=
2770 _MASKED_BIT_ENABLE(CTX_CTRL_ENGINE_CTX_RESTORE_INHIBIT);
Thomas Daniel05f0add2018-03-02 18:14:59 +02002771 if (ctx == ctx->i915->preempt_context && INTEL_GEN(engine->i915) < 11)
Chris Wilson517aaff2018-01-23 21:04:12 +00002772 regs[CTX_CONTEXT_CONTROL + 1] |=
2773 _MASKED_BIT_ENABLE(CTX_CTRL_ENGINE_CTX_RESTORE_INHIBIT |
2774 CTX_CTRL_ENGINE_CTX_SAVE_INHIBIT);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002775
Matthew Auldaaefa062018-03-01 11:46:39 +00002776err_unpin_ctx:
Tvrtko Ursulin7d774ca2016-04-12 15:40:42 +01002777 i915_gem_object_unpin_map(ctx_obj);
Matthew Auldaaefa062018-03-01 11:46:39 +00002778 return ret;
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002779}
2780
Chris Wilsone2efd132016-05-24 14:53:34 +01002781static int execlists_context_deferred_alloc(struct i915_gem_context *ctx,
Chris Wilson1fc44d92018-05-17 22:26:32 +01002782 struct intel_engine_cs *engine,
2783 struct intel_context *ce)
Oscar Mateoede7d422014-07-24 17:04:12 +01002784{
Oscar Mateo8c8579172014-07-24 17:04:14 +01002785 struct drm_i915_gem_object *ctx_obj;
Chris Wilsonbf3783e2016-08-15 10:48:54 +01002786 struct i915_vma *vma;
Oscar Mateo8c8579172014-07-24 17:04:14 +01002787 uint32_t context_size;
Chris Wilson7e37f882016-08-02 22:50:21 +01002788 struct intel_ring *ring;
Chris Wilsona89d1f92018-05-02 17:38:39 +01002789 struct i915_timeline *timeline;
Oscar Mateo8c8579172014-07-24 17:04:14 +01002790 int ret;
2791
Chris Wilson1d2a19c2018-01-26 12:18:46 +00002792 if (ce->state)
2793 return 0;
Oscar Mateoede7d422014-07-24 17:04:12 +01002794
Joonas Lahtinen63ffbcd2017-04-28 10:53:36 +03002795 context_size = round_up(engine->context_size, I915_GTT_PAGE_SIZE);
Oscar Mateo8c8579172014-07-24 17:04:14 +01002796
Michel Thierry0b29c752017-09-13 09:56:00 +01002797 /*
2798 * Before the actual start of the context image, we insert a few pages
2799 * for our own use and for sharing with the GuC.
2800 */
2801 context_size += LRC_HEADER_PAGES * PAGE_SIZE;
Alex Daid1675192015-08-12 15:43:43 +01002802
Tvrtko Ursulin12d79d72016-12-01 14:16:37 +00002803 ctx_obj = i915_gem_object_create(ctx->i915, context_size);
Chris Wilson467d3572018-06-11 16:33:32 +01002804 if (IS_ERR(ctx_obj))
2805 return PTR_ERR(ctx_obj);
Oscar Mateo8c8579172014-07-24 17:04:14 +01002806
Chris Wilson82ad6442018-06-05 16:37:58 +01002807 vma = i915_vma_instance(ctx_obj, &ctx->i915->ggtt.vm, NULL);
Chris Wilsonbf3783e2016-08-15 10:48:54 +01002808 if (IS_ERR(vma)) {
2809 ret = PTR_ERR(vma);
2810 goto error_deref_obj;
2811 }
2812
Chris Wilsona89d1f92018-05-02 17:38:39 +01002813 timeline = i915_timeline_create(ctx->i915, ctx->name);
2814 if (IS_ERR(timeline)) {
2815 ret = PTR_ERR(timeline);
2816 goto error_deref_obj;
2817 }
2818
2819 ring = intel_engine_create_ring(engine, timeline, ctx->ring_size);
2820 i915_timeline_put(timeline);
Chris Wilsondca33ec2016-08-02 22:50:20 +01002821 if (IS_ERR(ring)) {
2822 ret = PTR_ERR(ring);
Nick Hoathe84fe802015-09-11 12:53:46 +01002823 goto error_deref_obj;
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002824 }
2825
Chris Wilsondca33ec2016-08-02 22:50:20 +01002826 ret = populate_lr_context(ctx, ctx_obj, engine, ring);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002827 if (ret) {
2828 DRM_DEBUG_DRIVER("Failed to populate LRC: %d\n", ret);
Chris Wilsondca33ec2016-08-02 22:50:20 +01002829 goto error_ring_free;
Oscar Mateo84c23772014-07-24 17:04:15 +01002830 }
2831
Chris Wilsondca33ec2016-08-02 22:50:20 +01002832 ce->ring = ring;
Chris Wilsonbf3783e2016-08-15 10:48:54 +01002833 ce->state = vma;
Oscar Mateoede7d422014-07-24 17:04:12 +01002834
2835 return 0;
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002836
Chris Wilsondca33ec2016-08-02 22:50:20 +01002837error_ring_free:
Chris Wilson7e37f882016-08-02 22:50:21 +01002838 intel_ring_free(ring);
Nick Hoathe84fe802015-09-11 12:53:46 +01002839error_deref_obj:
Chris Wilsonf8c417c2016-07-20 13:31:53 +01002840 i915_gem_object_put(ctx_obj);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002841 return ret;
Oscar Mateoede7d422014-07-24 17:04:12 +01002842}
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002843
Chris Wilson821ed7d2016-09-09 14:11:53 +01002844void intel_lr_context_resume(struct drm_i915_private *dev_priv)
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002845{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00002846 struct intel_engine_cs *engine;
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002847 struct i915_gem_context *ctx;
Akash Goel3b3f1652016-10-13 22:44:48 +05302848 enum intel_engine_id id;
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002849
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002850 /* Because we emit WA_TAIL_DWORDS there may be a disparity
2851 * between our bookkeeping in ce->ring->head and ce->ring->tail and
2852 * that stored in context. As we only write new commands from
2853 * ce->ring->tail onwards, everything before that is junk. If the GPU
2854 * starts reading from its RING_HEAD from the context, it may try to
2855 * execute that junk and die.
2856 *
2857 * So to avoid that we reset the context images upon resume. For
2858 * simplicity, we just zero everything out.
2859 */
Chris Wilson829a0af2017-06-20 12:05:45 +01002860 list_for_each_entry(ctx, &dev_priv->contexts.list, link) {
Akash Goel3b3f1652016-10-13 22:44:48 +05302861 for_each_engine(engine, dev_priv, id) {
Chris Wilsonab82a062018-04-30 14:15:01 +01002862 struct intel_context *ce =
2863 to_intel_context(ctx, engine);
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002864 u32 *reg;
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002865
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002866 if (!ce->state)
2867 continue;
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002868
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002869 reg = i915_gem_object_pin_map(ce->state->obj,
2870 I915_MAP_WB);
2871 if (WARN_ON(IS_ERR(reg)))
2872 continue;
Tvrtko Ursulin7d774ca2016-04-12 15:40:42 +01002873
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002874 reg += LRC_STATE_PN * PAGE_SIZE / sizeof(*reg);
2875 reg[CTX_RING_HEAD+1] = 0;
2876 reg[CTX_RING_TAIL+1] = 0;
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002877
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002878 ce->state->obj->mm.dirty = true;
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002879 i915_gem_object_unpin_map(ce->state->obj);
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002880
Chris Wilsone6ba9992017-04-25 14:00:49 +01002881 intel_ring_reset(ce->ring, 0);
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002882 }
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002883 }
2884}
Chris Wilson2c665552018-04-04 10:33:29 +01002885
2886#if IS_ENABLED(CONFIG_DRM_I915_SELFTEST)
2887#include "selftests/intel_lrc.c"
2888#endif