blob: 88289d1d07e720a42fc3a1fadb020f346be5e3cd [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;
Mika Kuoppalab620e872017-09-22 15:43:03 +0300276 parent = &execlists->queue.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);
Mika Kuoppalab620e872017-09-22 15:43:03 +0300314 rb_insert_color(&p->node, &execlists->queue);
Chris Wilson08dd3e12017-09-16 21:44:12 +0100315
Chris Wilson08dd3e12017-09-16 21:44:12 +0100316 if (first)
Mika Kuoppalab620e872017-09-22 15:43:03 +0300317 execlists->first = &p->node;
Chris Wilson08dd3e12017-09-16 21:44:12 +0100318
Chris Wilsonf6322ed2018-02-22 14:22:29 +0000319 return p;
Chris Wilson08dd3e12017-09-16 21:44:12 +0100320}
321
Chris Wilsone61e0f52018-02-21 09:56:36 +0000322static void unwind_wa_tail(struct i915_request *rq)
Chris Wilson7e4992a2017-09-28 20:38:59 +0100323{
324 rq->tail = intel_ring_wrap(rq->ring, rq->wa_tail - WA_TAIL_BYTES);
325 assert_ring_tail_valid(rq->ring, rq->tail);
326}
327
Michał Winiarskia4598d12017-10-25 22:00:18 +0200328static void __unwind_incomplete_requests(struct intel_engine_cs *engine)
Chris Wilson7e4992a2017-09-28 20:38:59 +0100329{
Chris Wilsone61e0f52018-02-21 09:56:36 +0000330 struct i915_request *rq, *rn;
Michał Winiarski097a9482017-09-28 20:39:01 +0100331 struct i915_priolist *uninitialized_var(p);
332 int last_prio = I915_PRIORITY_INVALID;
Chris Wilson7e4992a2017-09-28 20:38:59 +0100333
Chris Wilsona89d1f92018-05-02 17:38:39 +0100334 lockdep_assert_held(&engine->timeline.lock);
Chris Wilson7e4992a2017-09-28 20:38:59 +0100335
336 list_for_each_entry_safe_reverse(rq, rn,
Chris Wilsona89d1f92018-05-02 17:38:39 +0100337 &engine->timeline.requests,
Chris Wilson7e4992a2017-09-28 20:38:59 +0100338 link) {
Chris Wilsone61e0f52018-02-21 09:56:36 +0000339 if (i915_request_completed(rq))
Chris Wilson7e4992a2017-09-28 20:38:59 +0100340 return;
341
Chris Wilsone61e0f52018-02-21 09:56:36 +0000342 __i915_request_unsubmit(rq);
Chris Wilson7e4992a2017-09-28 20:38:59 +0100343 unwind_wa_tail(rq);
344
Chris Wilsonf6322ed2018-02-22 14:22:29 +0000345 GEM_BUG_ON(rq_prio(rq) == I915_PRIORITY_INVALID);
346 if (rq_prio(rq) != last_prio) {
347 last_prio = rq_prio(rq);
Chris Wilson87c7acf2018-05-08 01:30:45 +0100348 p = lookup_priolist(engine, last_prio);
Michał Winiarski097a9482017-09-28 20:39:01 +0100349 }
350
Chris Wilsona02eb972018-05-08 01:30:46 +0100351 GEM_BUG_ON(p->priority != rq_prio(rq));
Chris Wilson0c7112a2018-04-18 19:40:51 +0100352 list_add(&rq->sched.link, &p->requests);
Chris Wilson7e4992a2017-09-28 20:38:59 +0100353 }
354}
355
Michał Winiarskic41937fd2017-10-26 15:35:58 +0200356void
Michał Winiarskia4598d12017-10-25 22:00:18 +0200357execlists_unwind_incomplete_requests(struct intel_engine_execlists *execlists)
358{
359 struct intel_engine_cs *engine =
360 container_of(execlists, typeof(*engine), execlists);
Chris Wilson4413c472018-05-08 22:03:17 +0100361 unsigned long flags;
Michał Winiarskia4598d12017-10-25 22:00:18 +0200362
Chris Wilson4413c472018-05-08 22:03:17 +0100363 spin_lock_irqsave(&engine->timeline.lock, flags);
364
Michał Winiarskia4598d12017-10-25 22:00:18 +0200365 __unwind_incomplete_requests(engine);
Chris Wilson4413c472018-05-08 22:03:17 +0100366
367 spin_unlock_irqrestore(&engine->timeline.lock, flags);
Michał Winiarskia4598d12017-10-25 22:00:18 +0200368}
369
Chris Wilsonbbd6c472016-09-09 14:11:45 +0100370static inline void
Chris Wilsone61e0f52018-02-21 09:56:36 +0000371execlists_context_status_change(struct i915_request *rq, unsigned long status)
Ben Widawsky84b790f2014-07-24 17:04:36 +0100372{
Chris Wilsonbbd6c472016-09-09 14:11:45 +0100373 /*
374 * Only used when GVT-g is enabled now. When GVT-g is disabled,
375 * The compiler should eliminate this function as dead-code.
376 */
377 if (!IS_ENABLED(CONFIG_DRM_I915_GVT))
378 return;
Ben Widawsky84b790f2014-07-24 17:04:36 +0100379
Changbin Du3fc03062017-03-13 10:47:11 +0800380 atomic_notifier_call_chain(&rq->engine->context_status_notifier,
381 status, rq);
Ben Widawsky84b790f2014-07-24 17:04:36 +0100382}
383
Chris Wilsonf2605202018-03-31 14:06:26 +0100384inline void
385execlists_user_begin(struct intel_engine_execlists *execlists,
386 const struct execlist_port *port)
387{
388 execlists_set_active_once(execlists, EXECLISTS_ACTIVE_USER);
389}
390
391inline void
392execlists_user_end(struct intel_engine_execlists *execlists)
393{
394 execlists_clear_active(execlists, EXECLISTS_ACTIVE_USER);
395}
396
Tvrtko Ursulin73fd9d32017-11-21 18:18:47 +0000397static inline void
Chris Wilsone61e0f52018-02-21 09:56:36 +0000398execlists_context_schedule_in(struct i915_request *rq)
Tvrtko Ursulin73fd9d32017-11-21 18:18:47 +0000399{
400 execlists_context_status_change(rq, INTEL_CONTEXT_SCHEDULE_IN);
Tvrtko Ursulin30e17b72017-11-21 18:18:48 +0000401 intel_engine_context_in(rq->engine);
Tvrtko Ursulin73fd9d32017-11-21 18:18:47 +0000402}
403
404static inline void
Chris Wilsonb9b77422018-05-03 00:02:02 +0100405execlists_context_schedule_out(struct i915_request *rq, unsigned long status)
Tvrtko Ursulin73fd9d32017-11-21 18:18:47 +0000406{
Tvrtko Ursulin30e17b72017-11-21 18:18:48 +0000407 intel_engine_context_out(rq->engine);
Chris Wilsonb9b77422018-05-03 00:02:02 +0100408 execlists_context_status_change(rq, status);
409 trace_i915_request_out(rq);
Tvrtko Ursulin73fd9d32017-11-21 18:18:47 +0000410}
411
Tvrtko Ursulinc6a2ac72016-02-26 16:58:32 +0000412static void
413execlists_update_context_pdps(struct i915_hw_ppgtt *ppgtt, u32 *reg_state)
414{
415 ASSIGN_CTX_PDP(ppgtt, reg_state, 3);
416 ASSIGN_CTX_PDP(ppgtt, reg_state, 2);
417 ASSIGN_CTX_PDP(ppgtt, reg_state, 1);
418 ASSIGN_CTX_PDP(ppgtt, reg_state, 0);
419}
420
Chris Wilsone61e0f52018-02-21 09:56:36 +0000421static u64 execlists_update_context(struct i915_request *rq)
Oscar Mateoae1250b2014-07-24 17:04:37 +0100422{
Chris Wilson1fc44d92018-05-17 22:26:32 +0100423 struct intel_context *ce = rq->hw_context;
Zhi Wang04da8112017-02-06 18:37:16 +0800424 struct i915_hw_ppgtt *ppgtt =
Chris Wilson4e0d64d2018-05-17 22:26:30 +0100425 rq->gem_context->ppgtt ?: rq->i915->mm.aliasing_ppgtt;
Chris Wilson70c2a242016-09-09 14:11:46 +0100426 u32 *reg_state = ce->lrc_reg_state;
Oscar Mateoae1250b2014-07-24 17:04:37 +0100427
Chris Wilsone6ba9992017-04-25 14:00:49 +0100428 reg_state[CTX_RING_TAIL+1] = intel_ring_set_tail(rq->ring, rq->tail);
Oscar Mateoae1250b2014-07-24 17:04:37 +0100429
Tvrtko Ursulinc6a2ac72016-02-26 16:58:32 +0000430 /* True 32b PPGTT with dynamic page allocation: update PDP
431 * registers and point the unallocated PDPs to scratch page.
432 * PML4 is allocated during ppgtt init, so this is not needed
433 * in 48-bit mode.
434 */
Chris Wilson82ad6442018-06-05 16:37:58 +0100435 if (ppgtt && !i915_vm_is_48bit(&ppgtt->vm))
Tvrtko Ursulinc6a2ac72016-02-26 16:58:32 +0000436 execlists_update_context_pdps(ppgtt, reg_state);
Chris Wilson70c2a242016-09-09 14:11:46 +0100437
438 return ce->lrc_desc;
Oscar Mateoae1250b2014-07-24 17:04:37 +0100439}
440
Thomas Daniel05f0add2018-03-02 18:14:59 +0200441static inline void write_desc(struct intel_engine_execlists *execlists, u64 desc, u32 port)
Chris Wilsonbeecec92017-10-03 21:34:52 +0100442{
Thomas Daniel05f0add2018-03-02 18:14:59 +0200443 if (execlists->ctrl_reg) {
444 writel(lower_32_bits(desc), execlists->submit_reg + port * 2);
445 writel(upper_32_bits(desc), execlists->submit_reg + port * 2 + 1);
446 } else {
447 writel(upper_32_bits(desc), execlists->submit_reg);
448 writel(lower_32_bits(desc), execlists->submit_reg);
449 }
Chris Wilsonbeecec92017-10-03 21:34:52 +0100450}
451
Chris Wilson70c2a242016-09-09 14:11:46 +0100452static void execlists_submit_ports(struct intel_engine_cs *engine)
Chris Wilsonbbd6c472016-09-09 14:11:45 +0100453{
Thomas Daniel05f0add2018-03-02 18:14:59 +0200454 struct intel_engine_execlists *execlists = &engine->execlists;
455 struct execlist_port *port = execlists->port;
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100456 unsigned int n;
Chris Wilsonbbd6c472016-09-09 14:11:45 +0100457
Thomas Daniel05f0add2018-03-02 18:14:59 +0200458 /*
459 * ELSQ note: the submit queue is not cleared after being submitted
460 * to the HW so we need to make sure we always clean it up. This is
461 * currently ensured by the fact that we always write the same number
462 * of elsq entries, keep this in mind before changing the loop below.
463 */
464 for (n = execlists_num_ports(execlists); n--; ) {
Chris Wilsone61e0f52018-02-21 09:56:36 +0000465 struct i915_request *rq;
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100466 unsigned int count;
467 u64 desc;
Chris Wilson70c2a242016-09-09 14:11:46 +0100468
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100469 rq = port_unpack(&port[n], &count);
470 if (rq) {
471 GEM_BUG_ON(count > !n);
472 if (!count++)
Tvrtko Ursulin73fd9d32017-11-21 18:18:47 +0000473 execlists_context_schedule_in(rq);
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100474 port_set(&port[n], port_pack(rq, count));
475 desc = execlists_update_context(rq);
476 GEM_DEBUG_EXEC(port[n].context_id = upper_32_bits(desc));
Chris Wilsonbccd3b82017-11-09 14:30:19 +0000477
Tvrtko Ursulin0c5c7df2018-04-06 13:35:14 +0100478 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 +0000479 engine->name, n,
Chris Wilson16c86192017-12-19 22:09:16 +0000480 port[n].context_id, count,
Chris Wilsonf6322ed2018-02-22 14:22:29 +0000481 rq->global_seqno,
Tvrtko Ursulin0c5c7df2018-04-06 13:35:14 +0100482 rq->fence.context, rq->fence.seqno,
Chris Wilsone7702762018-03-27 22:01:57 +0100483 intel_engine_get_seqno(engine),
Chris Wilsonf6322ed2018-02-22 14:22:29 +0000484 rq_prio(rq));
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100485 } else {
486 GEM_BUG_ON(!n);
487 desc = 0;
488 }
489
Thomas Daniel05f0add2018-03-02 18:14:59 +0200490 write_desc(execlists, desc, n);
Chris Wilsonbbd6c472016-09-09 14:11:45 +0100491 }
Thomas Daniel05f0add2018-03-02 18:14:59 +0200492
493 /* we need to manually load the submit queue */
494 if (execlists->ctrl_reg)
495 writel(EL_CTRL_LOAD, execlists->ctrl_reg);
496
497 execlists_clear_active(execlists, EXECLISTS_ACTIVE_HWACK);
Chris Wilsonbbd6c472016-09-09 14:11:45 +0100498}
499
Chris Wilson1fc44d92018-05-17 22:26:32 +0100500static bool ctx_single_port_submission(const struct intel_context *ce)
Ben Widawsky84b790f2014-07-24 17:04:36 +0100501{
Chris Wilson70c2a242016-09-09 14:11:46 +0100502 return (IS_ENABLED(CONFIG_DRM_I915_GVT) &&
Chris Wilson1fc44d92018-05-17 22:26:32 +0100503 i915_gem_context_force_single_submission(ce->gem_context));
Ben Widawsky84b790f2014-07-24 17:04:36 +0100504}
505
Chris Wilson1fc44d92018-05-17 22:26:32 +0100506static bool can_merge_ctx(const struct intel_context *prev,
507 const struct intel_context *next)
Michel Thierryacdd8842014-07-24 17:04:38 +0100508{
Chris Wilson70c2a242016-09-09 14:11:46 +0100509 if (prev != next)
510 return false;
Thomas Daniele981e7b2014-07-24 17:04:39 +0100511
Chris Wilson70c2a242016-09-09 14:11:46 +0100512 if (ctx_single_port_submission(prev))
513 return false;
Michel Thierryacdd8842014-07-24 17:04:38 +0100514
Chris Wilson70c2a242016-09-09 14:11:46 +0100515 return true;
516}
Peter Antoine779949f2015-05-11 16:03:27 +0100517
Chris Wilsone61e0f52018-02-21 09:56:36 +0000518static void port_assign(struct execlist_port *port, struct i915_request *rq)
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100519{
520 GEM_BUG_ON(rq == port_request(port));
521
522 if (port_isset(port))
Chris Wilsone61e0f52018-02-21 09:56:36 +0000523 i915_request_put(port_request(port));
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100524
Chris Wilsone61e0f52018-02-21 09:56:36 +0000525 port_set(port, port_pack(i915_request_get(rq), port_count(port)));
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100526}
527
Chris Wilsonbeecec92017-10-03 21:34:52 +0100528static void inject_preempt_context(struct intel_engine_cs *engine)
529{
Thomas Daniel05f0add2018-03-02 18:14:59 +0200530 struct intel_engine_execlists *execlists = &engine->execlists;
Chris Wilsonbeecec92017-10-03 21:34:52 +0100531 struct intel_context *ce =
Chris Wilsonab82a062018-04-30 14:15:01 +0100532 to_intel_context(engine->i915->preempt_context, engine);
Chris Wilsonbeecec92017-10-03 21:34:52 +0100533 unsigned int n;
534
Thomas Daniel05f0add2018-03-02 18:14:59 +0200535 GEM_BUG_ON(execlists->preempt_complete_status !=
Chris Wilsond6376372018-02-07 21:05:44 +0000536 upper_32_bits(ce->lrc_desc));
Chris Wilson09b1a4e2018-01-25 11:24:42 +0000537 GEM_BUG_ON((ce->lrc_reg_state[CTX_CONTEXT_CONTROL + 1] &
538 _MASKED_BIT_ENABLE(CTX_CTRL_ENGINE_CTX_RESTORE_INHIBIT |
539 CTX_CTRL_ENGINE_CTX_SAVE_INHIBIT)) !=
540 _MASKED_BIT_ENABLE(CTX_CTRL_ENGINE_CTX_RESTORE_INHIBIT |
541 CTX_CTRL_ENGINE_CTX_SAVE_INHIBIT));
542
Chris Wilsonf6322ed2018-02-22 14:22:29 +0000543 /*
544 * Switch to our empty preempt context so
545 * the state of the GPU is known (idle).
546 */
Chris Wilson16a87392017-12-20 09:06:26 +0000547 GEM_TRACE("%s\n", engine->name);
Thomas Daniel05f0add2018-03-02 18:14:59 +0200548 for (n = execlists_num_ports(execlists); --n; )
549 write_desc(execlists, 0, n);
Chris Wilsonbeecec92017-10-03 21:34:52 +0100550
Thomas Daniel05f0add2018-03-02 18:14:59 +0200551 write_desc(execlists, ce->lrc_desc, n);
552
553 /* we need to manually load the submit queue */
554 if (execlists->ctrl_reg)
555 writel(EL_CTRL_LOAD, execlists->ctrl_reg);
556
Chris Wilsonef2fb722018-05-16 19:33:50 +0100557 execlists_clear_active(execlists, EXECLISTS_ACTIVE_HWACK);
558 execlists_set_active(execlists, EXECLISTS_ACTIVE_PREEMPT);
559}
560
561static void complete_preempt_context(struct intel_engine_execlists *execlists)
562{
563 GEM_BUG_ON(!execlists_is_active(execlists, EXECLISTS_ACTIVE_PREEMPT));
564
565 execlists_cancel_port_requests(execlists);
566 execlists_unwind_incomplete_requests(execlists);
567
568 execlists_clear_active(execlists, EXECLISTS_ACTIVE_PREEMPT);
Chris Wilsonbeecec92017-10-03 21:34:52 +0100569}
570
Chris Wilson0b02bef2018-06-28 21:12:04 +0100571static void __execlists_dequeue(struct intel_engine_cs *engine)
Chris Wilson70c2a242016-09-09 14:11:46 +0100572{
Mika Kuoppala7a62cc62017-09-22 15:43:06 +0300573 struct intel_engine_execlists * const execlists = &engine->execlists;
574 struct execlist_port *port = execlists->port;
Mika Kuoppala76e70082017-09-22 15:43:07 +0300575 const struct execlist_port * const last_port =
576 &execlists->port[execlists->port_mask];
Chris Wilsone61e0f52018-02-21 09:56:36 +0000577 struct i915_request *last = port_request(port);
Chris Wilson20311bd2016-11-14 20:41:03 +0000578 struct rb_node *rb;
Chris Wilson70c2a242016-09-09 14:11:46 +0100579 bool submit = false;
Michel Thierryacdd8842014-07-24 17:04:38 +0100580
Chris Wilson4413c472018-05-08 22:03:17 +0100581 lockdep_assert_held(&engine->timeline.lock);
582
Chris Wilson70c2a242016-09-09 14:11:46 +0100583 /* Hardware submission is through 2 ports. Conceptually each port
584 * has a (RING_START, RING_HEAD, RING_TAIL) tuple. RING_START is
585 * static for a context, and unique to each, so we only execute
586 * requests belonging to a single context from each ring. RING_HEAD
587 * is maintained by the CS in the context image, it marks the place
588 * where it got up to last time, and through RING_TAIL we tell the CS
589 * where we want to execute up to this time.
590 *
591 * In this list the requests are in order of execution. Consecutive
592 * requests from the same context are adjacent in the ringbuffer. We
593 * can combine these requests into a single RING_TAIL update:
594 *
595 * RING_HEAD...req1...req2
596 * ^- RING_TAIL
597 * since to execute req2 the CS must first execute req1.
598 *
599 * Our goal then is to point each port to the end of a consecutive
600 * sequence of requests as being the most optimal (fewest wake ups
601 * and context switches) submission.
602 */
603
Mika Kuoppala7a62cc62017-09-22 15:43:06 +0300604 rb = execlists->first;
605 GEM_BUG_ON(rb_first(&execlists->queue) != rb);
Chris Wilsonbeecec92017-10-03 21:34:52 +0100606
607 if (last) {
608 /*
609 * Don't resubmit or switch until all outstanding
610 * preemptions (lite-restore) are seen. Then we
611 * know the next preemption status we see corresponds
612 * to this ELSP update.
613 */
Chris Wilsoneed7ec52018-03-24 12:58:29 +0000614 GEM_BUG_ON(!execlists_is_active(execlists,
615 EXECLISTS_ACTIVE_USER));
Michel Thierryba74cb12017-11-20 12:34:58 +0000616 GEM_BUG_ON(!port_count(&port[0]));
Chris Wilsonbeecec92017-10-03 21:34:52 +0100617
Michel Thierryba74cb12017-11-20 12:34:58 +0000618 /*
619 * If we write to ELSP a second time before the HW has had
620 * a chance to respond to the previous write, we can confuse
621 * the HW and hit "undefined behaviour". After writing to ELSP,
622 * we must then wait until we see a context-switch event from
623 * the HW to indicate that it has had a chance to respond.
624 */
625 if (!execlists_is_active(execlists, EXECLISTS_ACTIVE_HWACK))
Chris Wilson0b02bef2018-06-28 21:12:04 +0100626 return;
Michel Thierryba74cb12017-11-20 12:34:58 +0000627
Chris Wilsonf6322ed2018-02-22 14:22:29 +0000628 if (need_preempt(engine, last, execlists->queue_priority)) {
Chris Wilsonbeecec92017-10-03 21:34:52 +0100629 inject_preempt_context(engine);
Chris Wilson0b02bef2018-06-28 21:12:04 +0100630 return;
Chris Wilsonbeecec92017-10-03 21:34:52 +0100631 }
Chris Wilsonf6322ed2018-02-22 14:22:29 +0000632
633 /*
634 * In theory, we could coalesce more requests onto
635 * the second port (the first port is active, with
636 * no preemptions pending). However, that means we
637 * then have to deal with the possible lite-restore
638 * of the second port (as we submit the ELSP, there
639 * may be a context-switch) but also we may complete
640 * the resubmission before the context-switch. Ergo,
641 * coalescing onto the second port will cause a
642 * preemption event, but we cannot predict whether
643 * that will affect port[0] or port[1].
644 *
645 * If the second port is already active, we can wait
646 * until the next context-switch before contemplating
647 * new requests. The GPU will be busy and we should be
648 * able to resubmit the new ELSP before it idles,
649 * avoiding pipeline bubbles (momentary pauses where
650 * the driver is unable to keep up the supply of new
651 * work). However, we have to double check that the
652 * priorities of the ports haven't been switch.
653 */
654 if (port_count(&port[1]))
Chris Wilson0b02bef2018-06-28 21:12:04 +0100655 return;
Chris Wilsonf6322ed2018-02-22 14:22:29 +0000656
657 /*
658 * WaIdleLiteRestore:bdw,skl
659 * Apply the wa NOOPs to prevent
660 * ring:HEAD == rq:TAIL as we resubmit the
661 * request. See gen8_emit_breadcrumb() for
662 * where we prepare the padding after the
663 * end of the request.
664 */
665 last->tail = last->wa_tail;
Chris Wilsonbeecec92017-10-03 21:34:52 +0100666 }
667
Chris Wilsonf6322ed2018-02-22 14:22:29 +0000668 while (rb) {
669 struct i915_priolist *p = to_priolist(rb);
Chris Wilsone61e0f52018-02-21 09:56:36 +0000670 struct i915_request *rq, *rn;
Chris Wilson20311bd2016-11-14 20:41:03 +0000671
Chris Wilson0c7112a2018-04-18 19:40:51 +0100672 list_for_each_entry_safe(rq, rn, &p->requests, sched.link) {
Chris Wilson6c067572017-05-17 13:10:03 +0100673 /*
674 * Can we combine this request with the current port?
675 * It has to be the same context/ringbuffer and not
676 * have any exceptions (e.g. GVT saying never to
677 * combine contexts).
678 *
679 * If we can combine the requests, we can execute both
680 * by updating the RING_TAIL to point to the end of the
681 * second request, and so we never need to tell the
682 * hardware about the first.
Chris Wilson70c2a242016-09-09 14:11:46 +0100683 */
Chris Wilson1fc44d92018-05-17 22:26:32 +0100684 if (last &&
685 !can_merge_ctx(rq->hw_context, last->hw_context)) {
Chris Wilson6c067572017-05-17 13:10:03 +0100686 /*
687 * If we are on the second port and cannot
688 * combine this request with the last, then we
689 * are done.
690 */
Mika Kuoppala76e70082017-09-22 15:43:07 +0300691 if (port == last_port) {
Chris Wilson6c067572017-05-17 13:10:03 +0100692 __list_del_many(&p->requests,
Chris Wilson0c7112a2018-04-18 19:40:51 +0100693 &rq->sched.link);
Chris Wilson6c067572017-05-17 13:10:03 +0100694 goto done;
695 }
Chris Wilson70c2a242016-09-09 14:11:46 +0100696
Chris Wilson6c067572017-05-17 13:10:03 +0100697 /*
698 * If GVT overrides us we only ever submit
699 * port[0], leaving port[1] empty. Note that we
700 * also have to be careful that we don't queue
701 * the same context (even though a different
702 * request) to the second port.
703 */
Chris Wilson1fc44d92018-05-17 22:26:32 +0100704 if (ctx_single_port_submission(last->hw_context) ||
705 ctx_single_port_submission(rq->hw_context)) {
Chris Wilson6c067572017-05-17 13:10:03 +0100706 __list_del_many(&p->requests,
Chris Wilson0c7112a2018-04-18 19:40:51 +0100707 &rq->sched.link);
Chris Wilson6c067572017-05-17 13:10:03 +0100708 goto done;
709 }
Chris Wilson70c2a242016-09-09 14:11:46 +0100710
Chris Wilson1fc44d92018-05-17 22:26:32 +0100711 GEM_BUG_ON(last->hw_context == rq->hw_context);
Chris Wilson70c2a242016-09-09 14:11:46 +0100712
Chris Wilson6c067572017-05-17 13:10:03 +0100713 if (submit)
714 port_assign(port, last);
715 port++;
Mika Kuoppala7a62cc62017-09-22 15:43:06 +0300716
717 GEM_BUG_ON(port_isset(port));
Chris Wilson6c067572017-05-17 13:10:03 +0100718 }
719
Chris Wilson0c7112a2018-04-18 19:40:51 +0100720 INIT_LIST_HEAD(&rq->sched.link);
Chris Wilsone61e0f52018-02-21 09:56:36 +0000721 __i915_request_submit(rq);
722 trace_i915_request_in(rq, port_index(port, execlists));
Chris Wilson6c067572017-05-17 13:10:03 +0100723 last = rq;
724 submit = true;
Chris Wilson70c2a242016-09-09 14:11:46 +0100725 }
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000726
Chris Wilson20311bd2016-11-14 20:41:03 +0000727 rb = rb_next(rb);
Mika Kuoppala7a62cc62017-09-22 15:43:06 +0300728 rb_erase(&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
Mika Kuoppala7a62cc62017-09-22 15:43:06 +0300754 execlists->first = rb;
Chris Wilson0b02bef2018-06-28 21:12:04 +0100755 if (submit) {
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100756 port_assign(port, last);
Chris Wilson0b02bef2018-06-28 21:12:04 +0100757 execlists_submit_ports(engine);
758 }
Chris Wilson339ccd32018-02-15 16:25:53 +0000759
760 /* We must always keep the beast fed if we have work piled up */
Chris Wilson339ccd32018-02-15 16:25:53 +0000761 GEM_BUG_ON(execlists->first && !port_isset(execlists->port));
762
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
773static void execlists_dequeue(struct intel_engine_cs *engine)
774{
Chris Wilson4413c472018-05-08 22:03:17 +0100775 unsigned long flags;
Chris Wilson4413c472018-05-08 22:03:17 +0100776
777 spin_lock_irqsave(&engine->timeline.lock, flags);
Chris Wilson0b02bef2018-06-28 21:12:04 +0100778 __execlists_dequeue(engine);
Chris Wilson4413c472018-05-08 22:03:17 +0100779 spin_unlock_irqrestore(&engine->timeline.lock, flags);
Michel Thierryacdd8842014-07-24 17:04:38 +0100780}
781
Michał Winiarskic41937fd2017-10-26 15:35:58 +0200782void
Michał Winiarskia4598d12017-10-25 22:00:18 +0200783execlists_cancel_port_requests(struct intel_engine_execlists * const execlists)
Mika Kuoppalacf4591d2017-09-22 15:43:05 +0300784{
Chris Wilson3f9e6cd2017-09-25 13:49:27 +0100785 struct execlist_port *port = execlists->port;
Mika Kuoppaladc2279e2017-10-10 14:48:57 +0300786 unsigned int num_ports = execlists_num_ports(execlists);
Mika Kuoppalacf4591d2017-09-22 15:43:05 +0300787
Chris Wilson3f9e6cd2017-09-25 13:49:27 +0100788 while (num_ports-- && port_isset(port)) {
Chris Wilsone61e0f52018-02-21 09:56:36 +0000789 struct i915_request *rq = port_request(port);
Chris Wilson7e44fc22017-09-26 11:17:19 +0100790
Tvrtko Ursulin0c5c7df2018-04-06 13:35:14 +0100791 GEM_TRACE("%s:port%u global=%d (fence %llx:%d), (current %d)\n",
792 rq->engine->name,
793 (unsigned int)(port - execlists->port),
794 rq->global_seqno,
795 rq->fence.context, rq->fence.seqno,
796 intel_engine_get_seqno(rq->engine));
797
Chris Wilson4a118ec2017-10-23 22:32:36 +0100798 GEM_BUG_ON(!execlists->active);
Chris Wilsonb9b77422018-05-03 00:02:02 +0100799 execlists_context_schedule_out(rq,
800 i915_request_completed(rq) ?
801 INTEL_CONTEXT_SCHEDULE_OUT :
802 INTEL_CONTEXT_SCHEDULE_PREEMPTED);
Weinan Li702791f2018-03-06 10:15:57 +0800803
Chris Wilsone61e0f52018-02-21 09:56:36 +0000804 i915_request_put(rq);
Chris Wilson7e44fc22017-09-26 11:17:19 +0100805
Chris Wilson3f9e6cd2017-09-25 13:49:27 +0100806 memset(port, 0, sizeof(*port));
807 port++;
808 }
Chris Wilsoneed7ec52018-03-24 12:58:29 +0000809
Chris Wilson38057aa2018-03-24 12:58:29 +0000810 execlists_clear_active(execlists, EXECLISTS_ACTIVE_USER);
Chris Wilsonf2605202018-03-31 14:06:26 +0100811 execlists_user_end(execlists);
Mika Kuoppalacf4591d2017-09-22 15:43:05 +0300812}
813
Chris Wilson46b36172018-03-23 10:18:24 +0000814static void clear_gtiir(struct intel_engine_cs *engine)
815{
Chris Wilson46b36172018-03-23 10:18:24 +0000816 struct drm_i915_private *dev_priv = engine->i915;
817 int i;
818
Chris Wilson46b36172018-03-23 10:18:24 +0000819 /*
820 * Clear any pending interrupt state.
821 *
822 * We do it twice out of paranoia that some of the IIR are
823 * double buffered, and so if we only reset it once there may
824 * still be an interrupt pending.
825 */
Oscar Mateoff047a82018-04-24 14:39:55 -0700826 if (INTEL_GEN(dev_priv) >= 11) {
827 static const struct {
828 u8 bank;
829 u8 bit;
830 } gen11_gtiir[] = {
831 [RCS] = {0, GEN11_RCS0},
832 [BCS] = {0, GEN11_BCS},
833 [_VCS(0)] = {1, GEN11_VCS(0)},
834 [_VCS(1)] = {1, GEN11_VCS(1)},
835 [_VCS(2)] = {1, GEN11_VCS(2)},
836 [_VCS(3)] = {1, GEN11_VCS(3)},
837 [_VECS(0)] = {1, GEN11_VECS(0)},
838 [_VECS(1)] = {1, GEN11_VECS(1)},
839 };
840 unsigned long irqflags;
841
842 GEM_BUG_ON(engine->id >= ARRAY_SIZE(gen11_gtiir));
843
844 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
845 for (i = 0; i < 2; i++) {
846 gen11_reset_one_iir(dev_priv,
847 gen11_gtiir[engine->id].bank,
848 gen11_gtiir[engine->id].bit);
849 }
850 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
851 } else {
852 static const u8 gtiir[] = {
853 [RCS] = 0,
854 [BCS] = 0,
855 [VCS] = 1,
856 [VCS2] = 1,
857 [VECS] = 3,
858 };
859
860 GEM_BUG_ON(engine->id >= ARRAY_SIZE(gtiir));
861
862 for (i = 0; i < 2; i++) {
863 I915_WRITE(GEN8_GT_IIR(gtiir[engine->id]),
864 engine->irq_keep_mask);
865 POSTING_READ(GEN8_GT_IIR(gtiir[engine->id]));
866 }
867 GEM_BUG_ON(I915_READ(GEN8_GT_IIR(gtiir[engine->id])) &
Chris Wilson46b36172018-03-23 10:18:24 +0000868 engine->irq_keep_mask);
Chris Wilson46b36172018-03-23 10:18:24 +0000869 }
Chris Wilson46b36172018-03-23 10:18:24 +0000870}
871
872static void reset_irq(struct intel_engine_cs *engine)
873{
874 /* Mark all CS interrupts as complete */
875 smp_store_mb(engine->execlists.active, 0);
Chris Wilson46b36172018-03-23 10:18:24 +0000876
877 clear_gtiir(engine);
878
879 /*
880 * The port is checked prior to scheduling a tasklet, but
881 * just in case we have suspended the tasklet to do the
882 * wedging make sure that when it wakes, it decides there
883 * is no work to do by clearing the irq_posted bit.
884 */
885 clear_bit(ENGINE_IRQ_EXECLIST, &engine->irq_posted);
886}
887
Chris Wilsonf4b58f02018-06-28 21:12:08 +0100888static void reset_csb_pointers(struct intel_engine_execlists *execlists)
889{
890 /*
891 * After a reset, the HW starts writing into CSB entry [0]. We
892 * therefore have to set our HEAD pointer back one entry so that
893 * the *first* entry we check is entry 0. To complicate this further,
894 * as we don't wait for the first interrupt after reset, we have to
895 * fake the HW write to point back to the last entry so that our
896 * inline comparison of our cached head position against the last HW
897 * write works even before the first interrupt.
898 */
899 execlists->csb_head = execlists->csb_write_reset;
900 WRITE_ONCE(*execlists->csb_write, execlists->csb_write_reset);
901}
902
Chris Wilson27a5f612017-09-15 18:31:00 +0100903static void execlists_cancel_requests(struct intel_engine_cs *engine)
904{
Mika Kuoppalab620e872017-09-22 15:43:03 +0300905 struct intel_engine_execlists * const execlists = &engine->execlists;
Chris Wilsone61e0f52018-02-21 09:56:36 +0000906 struct i915_request *rq, *rn;
Chris Wilson27a5f612017-09-15 18:31:00 +0100907 struct rb_node *rb;
908 unsigned long flags;
Chris Wilson27a5f612017-09-15 18:31:00 +0100909
Tvrtko Ursulin0c5c7df2018-04-06 13:35:14 +0100910 GEM_TRACE("%s current %d\n",
911 engine->name, intel_engine_get_seqno(engine));
Chris Wilson963ddd62018-03-02 11:33:24 +0000912
Chris Wilsona3e38832018-03-02 14:32:45 +0000913 /*
914 * Before we call engine->cancel_requests(), we should have exclusive
915 * access to the submission state. This is arranged for us by the
916 * caller disabling the interrupt generation, the tasklet and other
917 * threads that may then access the same state, giving us a free hand
918 * to reset state. However, we still need to let lockdep be aware that
919 * we know this state may be accessed in hardirq context, so we
920 * disable the irq around this manipulation and we want to keep
921 * the spinlock focused on its duties and not accidentally conflate
922 * coverage to the submission's irq state. (Similarly, although we
923 * shouldn't need to disable irq around the manipulation of the
924 * submission's irq state, we also wish to remind ourselves that
925 * it is irq state.)
926 */
Chris Wilsond8857d52018-06-28 21:12:05 +0100927 spin_lock_irqsave(&engine->timeline.lock, flags);
Chris Wilson27a5f612017-09-15 18:31:00 +0100928
929 /* Cancel the requests on the HW and clear the ELSP tracker. */
Michał Winiarskia4598d12017-10-25 22:00:18 +0200930 execlists_cancel_port_requests(execlists);
Chris Wilson46b36172018-03-23 10:18:24 +0000931 reset_irq(engine);
Chris Wilson27a5f612017-09-15 18:31:00 +0100932
933 /* Mark all executing requests as skipped. */
Chris Wilsona89d1f92018-05-02 17:38:39 +0100934 list_for_each_entry(rq, &engine->timeline.requests, link) {
Chris Wilson27a5f612017-09-15 18:31:00 +0100935 GEM_BUG_ON(!rq->global_seqno);
Chris Wilsone61e0f52018-02-21 09:56:36 +0000936 if (!i915_request_completed(rq))
Chris Wilson27a5f612017-09-15 18:31:00 +0100937 dma_fence_set_error(&rq->fence, -EIO);
938 }
939
940 /* Flush the queued requests to the timeline list (for retiring). */
Mika Kuoppalab620e872017-09-22 15:43:03 +0300941 rb = execlists->first;
Chris Wilson27a5f612017-09-15 18:31:00 +0100942 while (rb) {
Chris Wilsonf6322ed2018-02-22 14:22:29 +0000943 struct i915_priolist *p = to_priolist(rb);
Chris Wilson27a5f612017-09-15 18:31:00 +0100944
Chris Wilson0c7112a2018-04-18 19:40:51 +0100945 list_for_each_entry_safe(rq, rn, &p->requests, sched.link) {
946 INIT_LIST_HEAD(&rq->sched.link);
Chris Wilson27a5f612017-09-15 18:31:00 +0100947
948 dma_fence_set_error(&rq->fence, -EIO);
Chris Wilsone61e0f52018-02-21 09:56:36 +0000949 __i915_request_submit(rq);
Chris Wilson27a5f612017-09-15 18:31:00 +0100950 }
951
952 rb = rb_next(rb);
Mika Kuoppalab620e872017-09-22 15:43:03 +0300953 rb_erase(&p->node, &execlists->queue);
Chris Wilson27a5f612017-09-15 18:31:00 +0100954 INIT_LIST_HEAD(&p->requests);
955 if (p->priority != I915_PRIORITY_NORMAL)
956 kmem_cache_free(engine->i915->priorities, p);
957 }
958
959 /* Remaining _unready_ requests will be nop'ed when submitted */
960
Chris Wilsonf6322ed2018-02-22 14:22:29 +0000961 execlists->queue_priority = INT_MIN;
Mika Kuoppalab620e872017-09-22 15:43:03 +0300962 execlists->queue = RB_ROOT;
963 execlists->first = NULL;
Chris Wilson3f9e6cd2017-09-25 13:49:27 +0100964 GEM_BUG_ON(port_isset(execlists->port));
Chris Wilson27a5f612017-09-15 18:31:00 +0100965
Chris Wilsond8857d52018-06-28 21:12:05 +0100966 spin_unlock_irqrestore(&engine->timeline.lock, flags);
Chris Wilson27a5f612017-09-15 18:31:00 +0100967}
968
Chris Wilson73377db2018-05-16 19:33:53 +0100969static void process_csb(struct intel_engine_cs *engine)
Thomas Daniele981e7b2014-07-24 17:04:39 +0100970{
Mika Kuoppalab620e872017-09-22 15:43:03 +0300971 struct intel_engine_execlists * const execlists = &engine->execlists;
Chris Wilsonf2605202018-03-31 14:06:26 +0100972 struct execlist_port *port = execlists->port;
Chris Wilsonbc4237e2018-06-28 21:12:07 +0100973 const u32 * const buf = execlists->csb_status;
974 u8 head, tail;
Thomas Daniele981e7b2014-07-24 17:04:39 +0100975
Chris Wilson8ea397f2018-06-28 21:12:06 +0100976 /* Clear before reading to catch new interrupts */
977 clear_bit(ENGINE_IRQ_EXECLIST, &engine->irq_posted);
978 smp_mb__after_atomic();
Thomas Daniele981e7b2014-07-24 17:04:39 +0100979
Chris Wilsonbc4237e2018-06-28 21:12:07 +0100980 /*
981 * Note that csb_write, csb_status may be either in HWSP or mmio.
982 * When reading from the csb_write mmio register, we have to be
983 * careful to only use the GEN8_CSB_WRITE_PTR portion, which is
984 * the low 4bits. As it happens we know the next 4bits are always
985 * zero and so we can simply masked off the low u8 of the register
986 * and treat it identically to reading from the HWSP (without having
987 * to use explicit shifting and masking, and probably bifurcating
988 * the code to handle the legacy mmio read).
989 */
990 head = execlists->csb_head;
991 tail = READ_ONCE(*execlists->csb_write);
992 GEM_TRACE("%s cs-irq head=%d, tail=%d\n", engine->name, head, tail);
993 if (unlikely(head == tail))
994 return;
Chris Wilson9153e6b2018-03-21 09:10:27 +0000995
Chris Wilsonbc4237e2018-06-28 21:12:07 +0100996 /*
997 * Hopefully paired with a wmb() in HW!
998 *
999 * We must complete the read of the write pointer before any reads
1000 * from the CSB, so that we do not see stale values. Without an rmb
1001 * (lfence) the HW may speculatively perform the CSB[] reads *before*
1002 * we perform the READ_ONCE(*csb_write).
1003 */
1004 rmb();
Chris Wilsonbb5db7e2018-01-22 10:07:14 +00001005
Chris Wilsonbc4237e2018-06-28 21:12:07 +01001006 do {
Chris Wilson8ea397f2018-06-28 21:12:06 +01001007 struct i915_request *rq;
1008 unsigned int status;
1009 unsigned int count;
1010
1011 if (++head == GEN8_CSB_ENTRIES)
1012 head = 0;
1013
1014 /*
1015 * We are flying near dragons again.
1016 *
1017 * We hold a reference to the request in execlist_port[]
1018 * but no more than that. We are operating in softirq
1019 * context and so cannot hold any mutex or sleep. That
1020 * prevents us stopping the requests we are processing
1021 * in port[] from being retired simultaneously (the
1022 * breadcrumb will be complete before we see the
1023 * context-switch). As we only hold the reference to the
1024 * request, any pointer chasing underneath the request
1025 * is subject to a potential use-after-free. Thus we
1026 * store all of the bookkeeping within port[] as
1027 * required, and avoid using unguarded pointers beneath
1028 * request itself. The same applies to the atomic
1029 * status notifier.
1030 */
1031
Chris Wilson8ea397f2018-06-28 21:12:06 +01001032 GEM_TRACE("%s csb[%d]: status=0x%08x:0x%08x, active=0x%x\n",
1033 engine->name, head,
Chris Wilsonbc4237e2018-06-28 21:12:07 +01001034 buf[2 * head + 0], buf[2 * head + 1],
Chris Wilson8ea397f2018-06-28 21:12:06 +01001035 execlists->active);
1036
Chris Wilsonbc4237e2018-06-28 21:12:07 +01001037 status = buf[2 * head];
Chris Wilson8ea397f2018-06-28 21:12:06 +01001038 if (status & (GEN8_CTX_STATUS_IDLE_ACTIVE |
1039 GEN8_CTX_STATUS_PREEMPTED))
1040 execlists_set_active(execlists,
1041 EXECLISTS_ACTIVE_HWACK);
1042 if (status & GEN8_CTX_STATUS_ACTIVE_IDLE)
1043 execlists_clear_active(execlists,
1044 EXECLISTS_ACTIVE_HWACK);
1045
1046 if (!(status & GEN8_CTX_STATUS_COMPLETED_MASK))
1047 continue;
1048
1049 /* We should never get a COMPLETED | IDLE_ACTIVE! */
1050 GEM_BUG_ON(status & GEN8_CTX_STATUS_IDLE_ACTIVE);
1051
1052 if (status & GEN8_CTX_STATUS_COMPLETE &&
1053 buf[2*head + 1] == execlists->preempt_complete_status) {
1054 GEM_TRACE("%s preempt-idle\n", engine->name);
1055 complete_preempt_context(execlists);
1056 continue;
Chris Wilson767a9832017-09-13 09:56:05 +01001057 }
Chris Wilson8ea397f2018-06-28 21:12:06 +01001058
1059 if (status & GEN8_CTX_STATUS_PREEMPTED &&
1060 execlists_is_active(execlists,
1061 EXECLISTS_ACTIVE_PREEMPT))
1062 continue;
1063
1064 GEM_BUG_ON(!execlists_is_active(execlists,
1065 EXECLISTS_ACTIVE_USER));
1066
1067 rq = port_unpack(port, &count);
1068 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 +00001069 engine->name,
Chris Wilson8ea397f2018-06-28 21:12:06 +01001070 port->context_id, count,
1071 rq ? rq->global_seqno : 0,
1072 rq ? rq->fence.context : 0,
1073 rq ? rq->fence.seqno : 0,
1074 intel_engine_get_seqno(engine),
1075 rq ? rq_prio(rq) : 0);
Mika Kuoppalab620e872017-09-22 15:43:03 +03001076
Chris Wilson8ea397f2018-06-28 21:12:06 +01001077 /* Check the context/desc id for this event matches */
1078 GEM_DEBUG_BUG_ON(buf[2 * head + 1] != port->context_id);
Chris Wilsona37951a2017-01-24 11:00:06 +00001079
Chris Wilson8ea397f2018-06-28 21:12:06 +01001080 GEM_BUG_ON(count == 0);
1081 if (--count == 0) {
1082 /*
1083 * On the final event corresponding to the
1084 * submission of this context, we expect either
1085 * an element-switch event or a completion
1086 * event (and on completion, the active-idle
1087 * marker). No more preemptions, lite-restore
1088 * or otherwise.
1089 */
1090 GEM_BUG_ON(status & GEN8_CTX_STATUS_PREEMPTED);
1091 GEM_BUG_ON(port_isset(&port[1]) &&
1092 !(status & GEN8_CTX_STATUS_ELEMENT_SWITCH));
1093 GEM_BUG_ON(!port_isset(&port[1]) &&
1094 !(status & GEN8_CTX_STATUS_ACTIVE_IDLE));
Thomas Daniele981e7b2014-07-24 17:04:39 +01001095
Chris Wilson73377db2018-05-16 19:33:53 +01001096 /*
Chris Wilson8ea397f2018-06-28 21:12:06 +01001097 * We rely on the hardware being strongly
1098 * ordered, that the breadcrumb write is
1099 * coherent (visible from the CPU) before the
1100 * user interrupt and CSB is processed.
Chris Wilson2ffe80a2017-02-06 17:05:02 +00001101 */
Chris Wilson8ea397f2018-06-28 21:12:06 +01001102 GEM_BUG_ON(!i915_request_completed(rq));
Chris Wilson2ffe80a2017-02-06 17:05:02 +00001103
Chris Wilson8ea397f2018-06-28 21:12:06 +01001104 execlists_context_schedule_out(rq,
1105 INTEL_CONTEXT_SCHEDULE_OUT);
1106 i915_request_put(rq);
Michel Thierryba74cb12017-11-20 12:34:58 +00001107
Chris Wilson8ea397f2018-06-28 21:12:06 +01001108 GEM_TRACE("%s completed ctx=%d\n",
1109 engine->name, port->context_id);
Michel Thierryba74cb12017-11-20 12:34:58 +00001110
Chris Wilson8ea397f2018-06-28 21:12:06 +01001111 port = execlists_port_complete(execlists, port);
1112 if (port_isset(port))
1113 execlists_user_begin(execlists, port);
1114 else
1115 execlists_user_end(execlists);
1116 } else {
1117 port_set(port, port_pack(rq, count));
Chris Wilson4af0d722017-03-25 20:10:53 +00001118 }
Chris Wilsonbc4237e2018-06-28 21:12:07 +01001119 } while (head != tail);
Tvrtko Ursulin26720ab2016-03-17 12:59:46 +00001120
Chris Wilsonbc4237e2018-06-28 21:12:07 +01001121 writel(_MASKED_FIELD(GEN8_CSB_READ_PTR_MASK, head << 8),
1122 execlists->csb_read);
1123 execlists->csb_head = head;
Chris Wilson73377db2018-05-16 19:33:53 +01001124}
1125
1126/*
1127 * Check the unread Context Status Buffers and manage the submission of new
1128 * contexts to the ELSP accordingly.
1129 */
1130static void execlists_submission_tasklet(unsigned long data)
1131{
1132 struct intel_engine_cs * const engine = (struct intel_engine_cs *)data;
1133
1134 GEM_TRACE("%s awake?=%d, active=%x, irq-posted?=%d\n",
1135 engine->name,
1136 engine->i915->gt.awake,
1137 engine->execlists.active,
1138 test_bit(ENGINE_IRQ_EXECLIST, &engine->irq_posted));
1139
1140 /*
1141 * We can skip acquiring intel_runtime_pm_get() here as it was taken
1142 * on our behalf by the request (see i915_gem_mark_busy()) and it will
1143 * not be relinquished until the device is idle (see
1144 * i915_gem_idle_work_handler()). As a precaution, we make sure
1145 * that all ELSP are drained i.e. we have processed the CSB,
1146 * before allowing ourselves to idle and calling intel_runtime_pm_put().
1147 */
1148 GEM_BUG_ON(!engine->i915->gt.awake);
1149
1150 /*
1151 * Prefer doing test_and_clear_bit() as a two stage operation to avoid
1152 * imposing the cost of a locked atomic transaction when submitting a
1153 * new request (outside of the context-switch interrupt).
1154 */
1155 if (test_bit(ENGINE_IRQ_EXECLIST, &engine->irq_posted))
1156 process_csb(engine);
1157
1158 if (!execlists_is_active(&engine->execlists, EXECLISTS_ACTIVE_PREEMPT))
Chris Wilson70c2a242016-09-09 14:11:46 +01001159 execlists_dequeue(engine);
Thomas Daniele981e7b2014-07-24 17:04:39 +01001160}
1161
Chris Wilsonf6322ed2018-02-22 14:22:29 +00001162static void queue_request(struct intel_engine_cs *engine,
Chris Wilson0c7112a2018-04-18 19:40:51 +01001163 struct i915_sched_node *node,
Chris Wilsonf6322ed2018-02-22 14:22:29 +00001164 int prio)
Chris Wilson27606fd2017-09-16 21:44:13 +01001165{
Chris Wilson0c7112a2018-04-18 19:40:51 +01001166 list_add_tail(&node->link,
Chris Wilson87c7acf2018-05-08 01:30:45 +01001167 &lookup_priolist(engine, prio)->requests);
Chris Wilsonf6322ed2018-02-22 14:22:29 +00001168}
Chris Wilson27606fd2017-09-16 21:44:13 +01001169
Chris Wilsonae2f5c02018-03-26 12:50:34 +01001170static void __submit_queue(struct intel_engine_cs *engine, int prio)
1171{
1172 engine->execlists.queue_priority = prio;
1173 tasklet_hi_schedule(&engine->execlists.tasklet);
1174}
1175
Chris Wilsonf6322ed2018-02-22 14:22:29 +00001176static void submit_queue(struct intel_engine_cs *engine, int prio)
1177{
Chris Wilsonae2f5c02018-03-26 12:50:34 +01001178 if (prio > engine->execlists.queue_priority)
1179 __submit_queue(engine, prio);
Chris Wilson27606fd2017-09-16 21:44:13 +01001180}
1181
Chris Wilsone61e0f52018-02-21 09:56:36 +00001182static void execlists_submit_request(struct i915_request *request)
Michel Thierryacdd8842014-07-24 17:04:38 +01001183{
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +00001184 struct intel_engine_cs *engine = request->engine;
Chris Wilson5590af32016-09-09 14:11:54 +01001185 unsigned long flags;
Michel Thierryacdd8842014-07-24 17:04:38 +01001186
Chris Wilson663f71e2016-11-14 20:41:00 +00001187 /* Will be called from irq-context when using foreign fences. */
Chris Wilsona89d1f92018-05-02 17:38:39 +01001188 spin_lock_irqsave(&engine->timeline.lock, flags);
Michel Thierryacdd8842014-07-24 17:04:38 +01001189
Chris Wilson0c7112a2018-04-18 19:40:51 +01001190 queue_request(engine, &request->sched, rq_prio(request));
Chris Wilsonf6322ed2018-02-22 14:22:29 +00001191 submit_queue(engine, rq_prio(request));
Michel Thierryacdd8842014-07-24 17:04:38 +01001192
Mika Kuoppalab620e872017-09-22 15:43:03 +03001193 GEM_BUG_ON(!engine->execlists.first);
Chris Wilson0c7112a2018-04-18 19:40:51 +01001194 GEM_BUG_ON(list_empty(&request->sched.link));
Chris Wilson6c067572017-05-17 13:10:03 +01001195
Chris Wilsona89d1f92018-05-02 17:38:39 +01001196 spin_unlock_irqrestore(&engine->timeline.lock, flags);
Michel Thierryacdd8842014-07-24 17:04:38 +01001197}
1198
Chris Wilson0c7112a2018-04-18 19:40:51 +01001199static struct i915_request *sched_to_request(struct i915_sched_node *node)
Chris Wilson1f181222017-10-03 21:34:50 +01001200{
Chris Wilson0c7112a2018-04-18 19:40:51 +01001201 return container_of(node, struct i915_request, sched);
Chris Wilson1f181222017-10-03 21:34:50 +01001202}
1203
Chris Wilson20311bd2016-11-14 20:41:03 +00001204static struct intel_engine_cs *
Chris Wilson0c7112a2018-04-18 19:40:51 +01001205sched_lock_engine(struct i915_sched_node *node, struct intel_engine_cs *locked)
Chris Wilson20311bd2016-11-14 20:41:03 +00001206{
Chris Wilson0c7112a2018-04-18 19:40:51 +01001207 struct intel_engine_cs *engine = sched_to_request(node)->engine;
Chris Wilson20311bd2016-11-14 20:41:03 +00001208
Chris Wilsona79a5242017-03-27 21:21:43 +01001209 GEM_BUG_ON(!locked);
1210
Chris Wilson20311bd2016-11-14 20:41:03 +00001211 if (engine != locked) {
Chris Wilsona89d1f92018-05-02 17:38:39 +01001212 spin_unlock(&locked->timeline.lock);
1213 spin_lock(&engine->timeline.lock);
Chris Wilson20311bd2016-11-14 20:41:03 +00001214 }
1215
1216 return engine;
1217}
1218
Chris Wilsonb7268c52018-04-18 19:40:52 +01001219static void execlists_schedule(struct i915_request *request,
1220 const struct i915_sched_attr *attr)
Chris Wilson20311bd2016-11-14 20:41:03 +00001221{
Chris Wilsona02eb972018-05-08 01:30:46 +01001222 struct i915_priolist *uninitialized_var(pl);
1223 struct intel_engine_cs *engine, *last;
Chris Wilson20311bd2016-11-14 20:41:03 +00001224 struct i915_dependency *dep, *p;
1225 struct i915_dependency stack;
Chris Wilsonb7268c52018-04-18 19:40:52 +01001226 const int prio = attr->priority;
Chris Wilson20311bd2016-11-14 20:41:03 +00001227 LIST_HEAD(dfs);
1228
Chris Wilson7d1ea602017-09-28 20:39:00 +01001229 GEM_BUG_ON(prio == I915_PRIORITY_INVALID);
1230
Chris Wilsone61e0f52018-02-21 09:56:36 +00001231 if (i915_request_completed(request))
Chris Wilsonc218ee02018-01-06 10:56:18 +00001232 return;
1233
Chris Wilsonb7268c52018-04-18 19:40:52 +01001234 if (prio <= READ_ONCE(request->sched.attr.priority))
Chris Wilson20311bd2016-11-14 20:41:03 +00001235 return;
1236
Chris Wilson70cd1472016-11-28 14:36:49 +00001237 /* Need BKL in order to use the temporary link inside i915_dependency */
1238 lockdep_assert_held(&request->i915->drm.struct_mutex);
Chris Wilson20311bd2016-11-14 20:41:03 +00001239
Chris Wilson0c7112a2018-04-18 19:40:51 +01001240 stack.signaler = &request->sched;
Chris Wilson20311bd2016-11-14 20:41:03 +00001241 list_add(&stack.dfs_link, &dfs);
1242
Chris Wilsonce01b172018-01-02 15:12:26 +00001243 /*
1244 * Recursively bump all dependent priorities to match the new request.
Chris Wilson20311bd2016-11-14 20:41:03 +00001245 *
1246 * A naive approach would be to use recursion:
Chris Wilson0c7112a2018-04-18 19:40:51 +01001247 * static void update_priorities(struct i915_sched_node *node, prio) {
1248 * list_for_each_entry(dep, &node->signalers_list, signal_link)
Chris Wilson20311bd2016-11-14 20:41:03 +00001249 * update_priorities(dep->signal, prio)
Chris Wilson0c7112a2018-04-18 19:40:51 +01001250 * queue_request(node);
Chris Wilson20311bd2016-11-14 20:41:03 +00001251 * }
1252 * but that may have unlimited recursion depth and so runs a very
1253 * real risk of overunning the kernel stack. Instead, we build
1254 * a flat list of all dependencies starting with the current request.
1255 * As we walk the list of dependencies, we add all of its dependencies
1256 * to the end of the list (this may include an already visited
1257 * request) and continue to walk onwards onto the new dependencies. The
1258 * end result is a topological list of requests in reverse order, the
1259 * last element in the list is the request we must execute first.
1260 */
Chris Wilson2221c5b2018-01-02 15:12:27 +00001261 list_for_each_entry(dep, &dfs, dfs_link) {
Chris Wilson0c7112a2018-04-18 19:40:51 +01001262 struct i915_sched_node *node = dep->signaler;
Chris Wilson20311bd2016-11-14 20:41:03 +00001263
Chris Wilsonce01b172018-01-02 15:12:26 +00001264 /*
1265 * Within an engine, there can be no cycle, but we may
Chris Wilsona79a5242017-03-27 21:21:43 +01001266 * refer to the same dependency chain multiple times
1267 * (redundant dependencies are not eliminated) and across
1268 * engines.
1269 */
Chris Wilson0c7112a2018-04-18 19:40:51 +01001270 list_for_each_entry(p, &node->signalers_list, signal_link) {
Chris Wilsonce01b172018-01-02 15:12:26 +00001271 GEM_BUG_ON(p == dep); /* no cycles! */
1272
Chris Wilson0c7112a2018-04-18 19:40:51 +01001273 if (i915_sched_node_signaled(p->signaler))
Chris Wilson1f181222017-10-03 21:34:50 +01001274 continue;
1275
Chris Wilsonb7268c52018-04-18 19:40:52 +01001276 GEM_BUG_ON(p->signaler->attr.priority < node->attr.priority);
1277 if (prio > READ_ONCE(p->signaler->attr.priority))
Chris Wilson20311bd2016-11-14 20:41:03 +00001278 list_move_tail(&p->dfs_link, &dfs);
Chris Wilsona79a5242017-03-27 21:21:43 +01001279 }
Chris Wilson20311bd2016-11-14 20:41:03 +00001280 }
1281
Chris Wilsonce01b172018-01-02 15:12:26 +00001282 /*
1283 * If we didn't need to bump any existing priorities, and we haven't
Chris Wilson349bdb62017-05-17 13:10:05 +01001284 * yet submitted this request (i.e. there is no potential race with
1285 * execlists_submit_request()), we can set our own priority and skip
1286 * acquiring the engine locks.
1287 */
Chris Wilsonb7268c52018-04-18 19:40:52 +01001288 if (request->sched.attr.priority == I915_PRIORITY_INVALID) {
Chris Wilson0c7112a2018-04-18 19:40:51 +01001289 GEM_BUG_ON(!list_empty(&request->sched.link));
Chris Wilsonb7268c52018-04-18 19:40:52 +01001290 request->sched.attr = *attr;
Chris Wilson349bdb62017-05-17 13:10:05 +01001291 if (stack.dfs_link.next == stack.dfs_link.prev)
1292 return;
1293 __list_del_entry(&stack.dfs_link);
1294 }
1295
Chris Wilsona02eb972018-05-08 01:30:46 +01001296 last = NULL;
Chris Wilsona79a5242017-03-27 21:21:43 +01001297 engine = request->engine;
Chris Wilsona89d1f92018-05-02 17:38:39 +01001298 spin_lock_irq(&engine->timeline.lock);
Chris Wilsona79a5242017-03-27 21:21:43 +01001299
Chris Wilson20311bd2016-11-14 20:41:03 +00001300 /* Fifo and depth-first replacement ensure our deps execute before us */
1301 list_for_each_entry_safe_reverse(dep, p, &dfs, dfs_link) {
Chris Wilson0c7112a2018-04-18 19:40:51 +01001302 struct i915_sched_node *node = dep->signaler;
Chris Wilson20311bd2016-11-14 20:41:03 +00001303
1304 INIT_LIST_HEAD(&dep->dfs_link);
1305
Chris Wilson0c7112a2018-04-18 19:40:51 +01001306 engine = sched_lock_engine(node, engine);
Chris Wilson20311bd2016-11-14 20:41:03 +00001307
Chris Wilsonb7268c52018-04-18 19:40:52 +01001308 if (prio <= node->attr.priority)
Chris Wilson20311bd2016-11-14 20:41:03 +00001309 continue;
1310
Chris Wilsonb7268c52018-04-18 19:40:52 +01001311 node->attr.priority = prio;
Chris Wilson0c7112a2018-04-18 19:40:51 +01001312 if (!list_empty(&node->link)) {
Chris Wilsona02eb972018-05-08 01:30:46 +01001313 if (last != engine) {
1314 pl = lookup_priolist(engine, prio);
1315 last = engine;
1316 }
1317 GEM_BUG_ON(pl->priority != prio);
1318 list_move_tail(&node->link, &pl->requests);
Chris Wilsona79a5242017-03-27 21:21:43 +01001319 }
Chris Wilsonae2f5c02018-03-26 12:50:34 +01001320
1321 if (prio > engine->execlists.queue_priority &&
Chris Wilson0c7112a2018-04-18 19:40:51 +01001322 i915_sw_fence_done(&sched_to_request(node)->submit))
Chris Wilsonae2f5c02018-03-26 12:50:34 +01001323 __submit_queue(engine, prio);
Chris Wilson20311bd2016-11-14 20:41:03 +00001324 }
1325
Chris Wilsona89d1f92018-05-02 17:38:39 +01001326 spin_unlock_irq(&engine->timeline.lock);
Chris Wilson20311bd2016-11-14 20:41:03 +00001327}
1328
Chris Wilson1fc44d92018-05-17 22:26:32 +01001329static void execlists_context_destroy(struct intel_context *ce)
1330{
Chris Wilson1fc44d92018-05-17 22:26:32 +01001331 GEM_BUG_ON(ce->pin_count);
1332
Chris Wilsondd12c6c2018-06-25 11:06:03 +01001333 if (!ce->state)
1334 return;
1335
Chris Wilson1fc44d92018-05-17 22:26:32 +01001336 intel_ring_free(ce->ring);
Chris Wilsonefe79d42018-06-25 11:06:04 +01001337
1338 GEM_BUG_ON(i915_gem_object_is_active(ce->state->obj));
1339 i915_gem_object_put(ce->state->obj);
Chris Wilson1fc44d92018-05-17 22:26:32 +01001340}
1341
Chris Wilson867985d2018-05-17 22:26:33 +01001342static void execlists_context_unpin(struct intel_context *ce)
Chris Wilson1fc44d92018-05-17 22:26:32 +01001343{
1344 intel_ring_unpin(ce->ring);
1345
1346 ce->state->obj->pin_global--;
1347 i915_gem_object_unpin_map(ce->state->obj);
1348 i915_vma_unpin(ce->state);
1349
1350 i915_gem_context_put(ce->gem_context);
1351}
1352
Chris Wilsonf4e15af2017-11-10 14:26:32 +00001353static int __context_pin(struct i915_gem_context *ctx, struct i915_vma *vma)
1354{
1355 unsigned int flags;
1356 int err;
1357
1358 /*
1359 * Clear this page out of any CPU caches for coherent swap-in/out.
1360 * We only want to do this on the first bind so that we do not stall
1361 * on an active context (which by nature is already on the GPU).
1362 */
1363 if (!(vma->flags & I915_VMA_GLOBAL_BIND)) {
1364 err = i915_gem_object_set_to_gtt_domain(vma->obj, true);
1365 if (err)
1366 return err;
1367 }
1368
1369 flags = PIN_GLOBAL | PIN_HIGH;
1370 if (ctx->ggtt_offset_bias)
1371 flags |= PIN_OFFSET_BIAS | ctx->ggtt_offset_bias;
1372
1373 return i915_vma_pin(vma, 0, GEN8_LR_CONTEXT_ALIGN, flags);
1374}
1375
Chris Wilson1fc44d92018-05-17 22:26:32 +01001376static struct intel_context *
1377__execlists_context_pin(struct intel_engine_cs *engine,
1378 struct i915_gem_context *ctx,
1379 struct intel_context *ce)
Oscar Mateodcb4c122014-11-13 10:28:10 +00001380{
Tvrtko Ursulin7d774ca2016-04-12 15:40:42 +01001381 void *vaddr;
Tvrtko Ursulinca825802016-01-15 15:10:27 +00001382 int ret;
Oscar Mateodcb4c122014-11-13 10:28:10 +00001383
Chris Wilson1fc44d92018-05-17 22:26:32 +01001384 ret = execlists_context_deferred_alloc(ctx, engine, ce);
Chris Wilson1d2a19c2018-01-26 12:18:46 +00001385 if (ret)
1386 goto err;
Chris Wilson56f6e0a2017-01-05 15:30:20 +00001387 GEM_BUG_ON(!ce->state);
Chris Wilsone8a9c582016-12-18 15:37:20 +00001388
Chris Wilsonf4e15af2017-11-10 14:26:32 +00001389 ret = __context_pin(ctx, ce->state);
Nick Hoathe84fe802015-09-11 12:53:46 +01001390 if (ret)
Chris Wilson24f1d3c2016-04-28 09:56:53 +01001391 goto err;
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001392
Chris Wilsonbf3783e2016-08-15 10:48:54 +01001393 vaddr = i915_gem_object_pin_map(ce->state->obj, I915_MAP_WB);
Tvrtko Ursulin7d774ca2016-04-12 15:40:42 +01001394 if (IS_ERR(vaddr)) {
1395 ret = PTR_ERR(vaddr);
Chris Wilsonbf3783e2016-08-15 10:48:54 +01001396 goto unpin_vma;
Tvrtko Ursulin82352e92016-01-15 17:12:45 +00001397 }
1398
Chris Wilsond822bb12017-04-03 12:34:25 +01001399 ret = intel_ring_pin(ce->ring, ctx->i915, ctx->ggtt_offset_bias);
Nick Hoathe84fe802015-09-11 12:53:46 +01001400 if (ret)
Tvrtko Ursulin7d774ca2016-04-12 15:40:42 +01001401 goto unpin_map;
Alex Daid1675192015-08-12 15:43:43 +01001402
Chris Wilson1fc44d92018-05-17 22:26:32 +01001403 intel_lr_context_descriptor_update(ctx, engine, ce);
Chris Wilson9021ad02016-05-24 14:53:37 +01001404
Chris Wilsona3aabe82016-10-04 21:11:26 +01001405 ce->lrc_reg_state = vaddr + LRC_STATE_PN * PAGE_SIZE;
1406 ce->lrc_reg_state[CTX_RING_BUFFER_START+1] =
Chris Wilsonbde13eb2016-08-15 10:49:07 +01001407 i915_ggtt_offset(ce->ring->vma);
Chris Wilson41d37682018-06-11 12:08:45 +01001408 GEM_BUG_ON(!intel_ring_offset_valid(ce->ring, ce->ring->head));
Chris Wilsonc216e902018-03-27 22:01:36 +01001409 ce->lrc_reg_state[CTX_RING_HEAD+1] = ce->ring->head;
Chris Wilsona3aabe82016-10-04 21:11:26 +01001410
Chris Wilson3d574a62017-10-13 21:26:16 +01001411 ce->state->obj->pin_global++;
Chris Wilson9a6feaf2016-07-20 13:31:50 +01001412 i915_gem_context_get(ctx);
Chris Wilson1fc44d92018-05-17 22:26:32 +01001413 return ce;
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001414
Tvrtko Ursulin7d774ca2016-04-12 15:40:42 +01001415unpin_map:
Chris Wilsonbf3783e2016-08-15 10:48:54 +01001416 i915_gem_object_unpin_map(ce->state->obj);
1417unpin_vma:
1418 __i915_vma_unpin(ce->state);
Chris Wilson24f1d3c2016-04-28 09:56:53 +01001419err:
Chris Wilson9021ad02016-05-24 14:53:37 +01001420 ce->pin_count = 0;
Chris Wilson266a2402017-05-04 10:33:08 +01001421 return ERR_PTR(ret);
Oscar Mateodcb4c122014-11-13 10:28:10 +00001422}
1423
Chris Wilson1fc44d92018-05-17 22:26:32 +01001424static const struct intel_context_ops execlists_context_ops = {
1425 .unpin = execlists_context_unpin,
1426 .destroy = execlists_context_destroy,
1427};
1428
1429static struct intel_context *
1430execlists_context_pin(struct intel_engine_cs *engine,
1431 struct i915_gem_context *ctx)
Oscar Mateodcb4c122014-11-13 10:28:10 +00001432{
Chris Wilsonab82a062018-04-30 14:15:01 +01001433 struct intel_context *ce = to_intel_context(ctx, engine);
Daniel Vetteraf3302b2015-12-04 17:27:15 +01001434
Chris Wilson91c8a322016-07-05 10:40:23 +01001435 lockdep_assert_held(&ctx->i915->drm.struct_mutex);
Tvrtko Ursulin321fe302016-01-28 10:29:55 +00001436
Chris Wilson1fc44d92018-05-17 22:26:32 +01001437 if (likely(ce->pin_count++))
1438 return ce;
1439 GEM_BUG_ON(!ce->pin_count); /* no overflow please! */
Chris Wilson24f1d3c2016-04-28 09:56:53 +01001440
Chris Wilson1fc44d92018-05-17 22:26:32 +01001441 ce->ops = &execlists_context_ops;
Chris Wilson24f1d3c2016-04-28 09:56:53 +01001442
Chris Wilson1fc44d92018-05-17 22:26:32 +01001443 return __execlists_context_pin(engine, ctx, ce);
Oscar Mateodcb4c122014-11-13 10:28:10 +00001444}
1445
Chris Wilsone61e0f52018-02-21 09:56:36 +00001446static int execlists_request_alloc(struct i915_request *request)
Chris Wilsonef11c012016-12-18 15:37:19 +00001447{
Chris Wilsonfd138212017-11-15 15:12:04 +00001448 int ret;
Chris Wilsonef11c012016-12-18 15:37:19 +00001449
Chris Wilson1fc44d92018-05-17 22:26:32 +01001450 GEM_BUG_ON(!request->hw_context->pin_count);
Chris Wilsone8a9c582016-12-18 15:37:20 +00001451
Chris Wilsonef11c012016-12-18 15:37:19 +00001452 /* Flush enough space to reduce the likelihood of waiting after
1453 * we start building the request - in which case we will just
1454 * have to repeat work.
1455 */
1456 request->reserved_space += EXECLISTS_REQUEST_SIZE;
1457
Chris Wilsonfd138212017-11-15 15:12:04 +00001458 ret = intel_ring_wait_for_space(request->ring, request->reserved_space);
1459 if (ret)
1460 return ret;
Chris Wilsonef11c012016-12-18 15:37:19 +00001461
Chris Wilsonef11c012016-12-18 15:37:19 +00001462 /* Note that after this point, we have committed to using
1463 * this request as it is being used to both track the
1464 * state of engine initialisation and liveness of the
1465 * golden renderstate above. Think twice before you try
1466 * to cancel/unwind this request now.
1467 */
1468
1469 request->reserved_space -= EXECLISTS_REQUEST_SIZE;
1470 return 0;
Chris Wilsonef11c012016-12-18 15:37:19 +00001471}
1472
Arun Siluvery9e000842015-07-03 14:27:31 +01001473/*
1474 * In this WA we need to set GEN8_L3SQCREG4[21:21] and reset it after
1475 * PIPE_CONTROL instruction. This is required for the flush to happen correctly
1476 * but there is a slight complication as this is applied in WA batch where the
1477 * values are only initialized once so we cannot take register value at the
1478 * beginning and reuse it further; hence we save its value to memory, upload a
1479 * constant value with bit21 set and then we restore it back with the saved value.
1480 * To simplify the WA, a constant value is formed by using the default value
1481 * of this register. This shouldn't be a problem because we are only modifying
1482 * it for a short period and this batch in non-premptible. We can ofcourse
1483 * use additional instructions that read the actual value of the register
1484 * at that time and set our bit of interest but it makes the WA complicated.
1485 *
1486 * This WA is also required for Gen9 so extracting as a function avoids
1487 * code duplication.
1488 */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001489static u32 *
1490gen8_emit_flush_coherentl3_wa(struct intel_engine_cs *engine, u32 *batch)
Arun Siluvery9e000842015-07-03 14:27:31 +01001491{
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001492 *batch++ = MI_STORE_REGISTER_MEM_GEN8 | MI_SRM_LRM_GLOBAL_GTT;
1493 *batch++ = i915_mmio_reg_offset(GEN8_L3SQCREG4);
1494 *batch++ = i915_ggtt_offset(engine->scratch) + 256;
1495 *batch++ = 0;
Arun Siluvery9e000842015-07-03 14:27:31 +01001496
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001497 *batch++ = MI_LOAD_REGISTER_IMM(1);
1498 *batch++ = i915_mmio_reg_offset(GEN8_L3SQCREG4);
1499 *batch++ = 0x40400000 | GEN8_LQSC_FLUSH_COHERENT_LINES;
Arun Siluvery9e000842015-07-03 14:27:31 +01001500
Tvrtko Ursulin9f235df2017-02-16 12:23:25 +00001501 batch = gen8_emit_pipe_control(batch,
1502 PIPE_CONTROL_CS_STALL |
1503 PIPE_CONTROL_DC_FLUSH_ENABLE,
1504 0);
Arun Siluvery9e000842015-07-03 14:27:31 +01001505
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001506 *batch++ = MI_LOAD_REGISTER_MEM_GEN8 | MI_SRM_LRM_GLOBAL_GTT;
1507 *batch++ = i915_mmio_reg_offset(GEN8_L3SQCREG4);
1508 *batch++ = i915_ggtt_offset(engine->scratch) + 256;
1509 *batch++ = 0;
Arun Siluvery9e000842015-07-03 14:27:31 +01001510
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001511 return batch;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001512}
1513
Daniel Vetter6e5248b2016-07-15 21:48:06 +02001514/*
1515 * Typically we only have one indirect_ctx and per_ctx batch buffer which are
1516 * initialized at the beginning and shared across all contexts but this field
1517 * helps us to have multiple batches at different offsets and select them based
1518 * on a criteria. At the moment this batch always start at the beginning of the page
1519 * and at this point we don't have multiple wa_ctx batch buffers.
Arun Siluvery17ee9502015-06-19 19:07:01 +01001520 *
Daniel Vetter6e5248b2016-07-15 21:48:06 +02001521 * The number of WA applied are not known at the beginning; we use this field
1522 * to return the no of DWORDS written.
Arun Siluvery17ee9502015-06-19 19:07:01 +01001523 *
Daniel Vetter6e5248b2016-07-15 21:48:06 +02001524 * It is to be noted that this batch does not contain MI_BATCH_BUFFER_END
1525 * so it adds NOOPs as padding to make it cacheline aligned.
1526 * MI_BATCH_BUFFER_END will be added to perctx batch and both of them together
1527 * makes a complete batch buffer.
Arun Siluvery17ee9502015-06-19 19:07:01 +01001528 */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001529static u32 *gen8_init_indirectctx_bb(struct intel_engine_cs *engine, u32 *batch)
Arun Siluvery17ee9502015-06-19 19:07:01 +01001530{
Arun Siluvery7ad00d12015-06-19 18:37:12 +01001531 /* WaDisableCtxRestoreArbitration:bdw,chv */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001532 *batch++ = MI_ARB_ON_OFF | MI_ARB_DISABLE;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001533
Arun Siluveryc82435b2015-06-19 18:37:13 +01001534 /* WaFlushCoherentL3CacheLinesAtContextSwitch:bdw */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001535 if (IS_BROADWELL(engine->i915))
1536 batch = gen8_emit_flush_coherentl3_wa(engine, batch);
Arun Siluveryc82435b2015-06-19 18:37:13 +01001537
Arun Siluvery0160f052015-06-23 15:46:57 +01001538 /* WaClearSlmSpaceAtContextSwitch:bdw,chv */
1539 /* Actual scratch location is at 128 bytes offset */
Tvrtko Ursulin9f235df2017-02-16 12:23:25 +00001540 batch = gen8_emit_pipe_control(batch,
1541 PIPE_CONTROL_FLUSH_L3 |
1542 PIPE_CONTROL_GLOBAL_GTT_IVB |
1543 PIPE_CONTROL_CS_STALL |
1544 PIPE_CONTROL_QW_WRITE,
1545 i915_ggtt_offset(engine->scratch) +
1546 2 * CACHELINE_BYTES);
Arun Siluvery0160f052015-06-23 15:46:57 +01001547
Chris Wilsonbeecec92017-10-03 21:34:52 +01001548 *batch++ = MI_ARB_ON_OFF | MI_ARB_ENABLE;
1549
Arun Siluvery17ee9502015-06-19 19:07:01 +01001550 /* Pad to end of cacheline */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001551 while ((unsigned long)batch % CACHELINE_BYTES)
1552 *batch++ = MI_NOOP;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001553
1554 /*
1555 * MI_BATCH_BUFFER_END is not required in Indirect ctx BB because
1556 * execution depends on the length specified in terms of cache lines
1557 * in the register CTX_RCS_INDIRECT_CTX
1558 */
1559
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001560 return batch;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001561}
1562
Chris Wilson5ee4a7a2018-06-18 10:41:50 +01001563struct lri {
1564 i915_reg_t reg;
1565 u32 value;
1566};
1567
1568static u32 *emit_lri(u32 *batch, const struct lri *lri, unsigned int count)
1569{
1570 GEM_BUG_ON(!count || count > 63);
1571
1572 *batch++ = MI_LOAD_REGISTER_IMM(count);
1573 do {
1574 *batch++ = i915_mmio_reg_offset(lri->reg);
1575 *batch++ = lri->value;
1576 } while (lri++, --count);
1577 *batch++ = MI_NOOP;
1578
1579 return batch;
1580}
1581
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001582static u32 *gen9_init_indirectctx_bb(struct intel_engine_cs *engine, u32 *batch)
Arun Siluvery0504cff2015-07-14 15:01:27 +01001583{
Chris Wilson5ee4a7a2018-06-18 10:41:50 +01001584 static const struct lri lri[] = {
1585 /* WaDisableGatherAtSetShaderCommonSlice:skl,bxt,kbl,glk */
1586 {
1587 COMMON_SLICE_CHICKEN2,
1588 __MASKED_FIELD(GEN9_DISABLE_GATHER_AT_SET_SHADER_COMMON_SLICE,
1589 0),
1590 },
1591
1592 /* BSpec: 11391 */
1593 {
1594 FF_SLICE_CHICKEN,
1595 __MASKED_FIELD(FF_SLICE_CHICKEN_CL_PROVOKING_VERTEX_FIX,
1596 FF_SLICE_CHICKEN_CL_PROVOKING_VERTEX_FIX),
1597 },
1598
1599 /* BSpec: 11299 */
1600 {
1601 _3D_CHICKEN3,
1602 __MASKED_FIELD(_3D_CHICKEN_SF_PROVOKING_VERTEX_FIX,
1603 _3D_CHICKEN_SF_PROVOKING_VERTEX_FIX),
1604 }
1605 };
1606
Chris Wilsonbeecec92017-10-03 21:34:52 +01001607 *batch++ = MI_ARB_ON_OFF | MI_ARB_DISABLE;
1608
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02001609 /* WaFlushCoherentL3CacheLinesAtContextSwitch:skl,bxt,glk */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001610 batch = gen8_emit_flush_coherentl3_wa(engine, batch);
Arun Siluverya4106a72015-07-14 15:01:29 +01001611
Chris Wilson5ee4a7a2018-06-18 10:41:50 +01001612 batch = emit_lri(batch, lri, ARRAY_SIZE(lri));
Mika Kuoppala873e8172016-07-20 14:26:13 +03001613
Mika Kuoppala066d4622016-06-07 17:19:15 +03001614 /* WaClearSlmSpaceAtContextSwitch:kbl */
1615 /* Actual scratch location is at 128 bytes offset */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001616 if (IS_KBL_REVID(engine->i915, 0, KBL_REVID_A0)) {
Tvrtko Ursulin9f235df2017-02-16 12:23:25 +00001617 batch = gen8_emit_pipe_control(batch,
1618 PIPE_CONTROL_FLUSH_L3 |
1619 PIPE_CONTROL_GLOBAL_GTT_IVB |
1620 PIPE_CONTROL_CS_STALL |
1621 PIPE_CONTROL_QW_WRITE,
1622 i915_ggtt_offset(engine->scratch)
1623 + 2 * CACHELINE_BYTES);
Mika Kuoppala066d4622016-06-07 17:19:15 +03001624 }
Tim Gore3485d992016-07-05 10:01:30 +01001625
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02001626 /* WaMediaPoolStateCmdInWABB:bxt,glk */
Tim Gore3485d992016-07-05 10:01:30 +01001627 if (HAS_POOLED_EU(engine->i915)) {
1628 /*
1629 * EU pool configuration is setup along with golden context
1630 * during context initialization. This value depends on
1631 * device type (2x6 or 3x6) and needs to be updated based
1632 * on which subslice is disabled especially for 2x6
1633 * devices, however it is safe to load default
1634 * configuration of 3x6 device instead of masking off
1635 * corresponding bits because HW ignores bits of a disabled
1636 * subslice and drops down to appropriate config. Please
1637 * see render_state_setup() in i915_gem_render_state.c for
1638 * possible configurations, to avoid duplication they are
1639 * not shown here again.
1640 */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001641 *batch++ = GEN9_MEDIA_POOL_STATE;
1642 *batch++ = GEN9_MEDIA_POOL_ENABLE;
1643 *batch++ = 0x00777000;
1644 *batch++ = 0;
1645 *batch++ = 0;
1646 *batch++ = 0;
Tim Gore3485d992016-07-05 10:01:30 +01001647 }
1648
Chris Wilsonbeecec92017-10-03 21:34:52 +01001649 *batch++ = MI_ARB_ON_OFF | MI_ARB_ENABLE;
1650
Arun Siluvery0504cff2015-07-14 15:01:27 +01001651 /* Pad to end of cacheline */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001652 while ((unsigned long)batch % CACHELINE_BYTES)
1653 *batch++ = MI_NOOP;
Arun Siluvery0504cff2015-07-14 15:01:27 +01001654
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001655 return batch;
Arun Siluvery0504cff2015-07-14 15:01:27 +01001656}
1657
Rafael Antognolli4b6ce682018-02-05 15:33:30 -08001658static u32 *
1659gen10_init_indirectctx_bb(struct intel_engine_cs *engine, u32 *batch)
1660{
1661 int i;
1662
1663 /*
1664 * WaPipeControlBefore3DStateSamplePattern: cnl
1665 *
1666 * Ensure the engine is idle prior to programming a
1667 * 3DSTATE_SAMPLE_PATTERN during a context restore.
1668 */
1669 batch = gen8_emit_pipe_control(batch,
1670 PIPE_CONTROL_CS_STALL,
1671 0);
1672 /*
1673 * WaPipeControlBefore3DStateSamplePattern says we need 4 dwords for
1674 * the PIPE_CONTROL followed by 12 dwords of 0x0, so 16 dwords in
1675 * total. However, a PIPE_CONTROL is 6 dwords long, not 4, which is
1676 * confusing. Since gen8_emit_pipe_control() already advances the
1677 * batch by 6 dwords, we advance the other 10 here, completing a
1678 * cacheline. It's not clear if the workaround requires this padding
1679 * before other commands, or if it's just the regular padding we would
1680 * already have for the workaround bb, so leave it here for now.
1681 */
1682 for (i = 0; i < 10; i++)
1683 *batch++ = MI_NOOP;
1684
1685 /* Pad to end of cacheline */
1686 while ((unsigned long)batch % CACHELINE_BYTES)
1687 *batch++ = MI_NOOP;
1688
1689 return batch;
1690}
1691
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001692#define CTX_WA_BB_OBJ_SIZE (PAGE_SIZE)
1693
1694static int lrc_setup_wa_ctx(struct intel_engine_cs *engine)
Arun Siluvery17ee9502015-06-19 19:07:01 +01001695{
Chris Wilson48bb74e2016-08-15 10:49:04 +01001696 struct drm_i915_gem_object *obj;
1697 struct i915_vma *vma;
1698 int err;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001699
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001700 obj = i915_gem_object_create(engine->i915, CTX_WA_BB_OBJ_SIZE);
Chris Wilson48bb74e2016-08-15 10:49:04 +01001701 if (IS_ERR(obj))
1702 return PTR_ERR(obj);
1703
Chris Wilson82ad6442018-06-05 16:37:58 +01001704 vma = i915_vma_instance(obj, &engine->i915->ggtt.vm, NULL);
Chris Wilson48bb74e2016-08-15 10:49:04 +01001705 if (IS_ERR(vma)) {
1706 err = PTR_ERR(vma);
1707 goto err;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001708 }
1709
Chris Wilson48bb74e2016-08-15 10:49:04 +01001710 err = i915_vma_pin(vma, 0, PAGE_SIZE, PIN_GLOBAL | PIN_HIGH);
1711 if (err)
1712 goto err;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001713
Chris Wilson48bb74e2016-08-15 10:49:04 +01001714 engine->wa_ctx.vma = vma;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001715 return 0;
Chris Wilson48bb74e2016-08-15 10:49:04 +01001716
1717err:
1718 i915_gem_object_put(obj);
1719 return err;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001720}
1721
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001722static void lrc_destroy_wa_ctx(struct intel_engine_cs *engine)
Arun Siluvery17ee9502015-06-19 19:07:01 +01001723{
Chris Wilson19880c42016-08-15 10:49:05 +01001724 i915_vma_unpin_and_release(&engine->wa_ctx.vma);
Arun Siluvery17ee9502015-06-19 19:07:01 +01001725}
1726
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001727typedef u32 *(*wa_bb_func_t)(struct intel_engine_cs *engine, u32 *batch);
1728
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001729static int intel_init_workaround_bb(struct intel_engine_cs *engine)
Arun Siluvery17ee9502015-06-19 19:07:01 +01001730{
Chris Wilson48bb74e2016-08-15 10:49:04 +01001731 struct i915_ctx_workarounds *wa_ctx = &engine->wa_ctx;
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001732 struct i915_wa_ctx_bb *wa_bb[2] = { &wa_ctx->indirect_ctx,
1733 &wa_ctx->per_ctx };
1734 wa_bb_func_t wa_bb_fn[2];
Arun Siluvery17ee9502015-06-19 19:07:01 +01001735 struct page *page;
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001736 void *batch, *batch_ptr;
1737 unsigned int i;
Chris Wilson48bb74e2016-08-15 10:49:04 +01001738 int ret;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001739
Tvrtko Ursulin10bde232018-01-19 10:00:04 +00001740 if (GEM_WARN_ON(engine->id != RCS))
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001741 return -EINVAL;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001742
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001743 switch (INTEL_GEN(engine->i915)) {
Oscar Mateocc38cae2018-05-08 14:29:23 -07001744 case 11:
1745 return 0;
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07001746 case 10:
Rafael Antognolli4b6ce682018-02-05 15:33:30 -08001747 wa_bb_fn[0] = gen10_init_indirectctx_bb;
1748 wa_bb_fn[1] = NULL;
1749 break;
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001750 case 9:
1751 wa_bb_fn[0] = gen9_init_indirectctx_bb;
Chris Wilsonb8aa2232017-09-21 14:54:44 +01001752 wa_bb_fn[1] = NULL;
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001753 break;
1754 case 8:
1755 wa_bb_fn[0] = gen8_init_indirectctx_bb;
Chris Wilson3ad7b522017-10-03 21:34:49 +01001756 wa_bb_fn[1] = NULL;
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001757 break;
1758 default:
1759 MISSING_CASE(INTEL_GEN(engine->i915));
Arun Siluvery5e60d792015-06-23 15:50:44 +01001760 return 0;
Arun Siluvery0504cff2015-07-14 15:01:27 +01001761 }
Arun Siluvery5e60d792015-06-23 15:50:44 +01001762
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001763 ret = lrc_setup_wa_ctx(engine);
Arun Siluvery17ee9502015-06-19 19:07:01 +01001764 if (ret) {
1765 DRM_DEBUG_DRIVER("Failed to setup context WA page: %d\n", ret);
1766 return ret;
1767 }
1768
Chris Wilson48bb74e2016-08-15 10:49:04 +01001769 page = i915_gem_object_get_dirty_page(wa_ctx->vma->obj, 0);
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001770 batch = batch_ptr = kmap_atomic(page);
Arun Siluvery17ee9502015-06-19 19:07:01 +01001771
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001772 /*
1773 * Emit the two workaround batch buffers, recording the offset from the
1774 * start of the workaround batch buffer object for each and their
1775 * respective sizes.
1776 */
1777 for (i = 0; i < ARRAY_SIZE(wa_bb_fn); i++) {
1778 wa_bb[i]->offset = batch_ptr - batch;
Chris Wilson1d2a19c2018-01-26 12:18:46 +00001779 if (GEM_WARN_ON(!IS_ALIGNED(wa_bb[i]->offset,
1780 CACHELINE_BYTES))) {
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001781 ret = -EINVAL;
1782 break;
1783 }
Chris Wilson604a8f62017-09-21 14:54:43 +01001784 if (wa_bb_fn[i])
1785 batch_ptr = wa_bb_fn[i](engine, batch_ptr);
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001786 wa_bb[i]->size = batch_ptr - (batch + wa_bb[i]->offset);
Arun Siluvery17ee9502015-06-19 19:07:01 +01001787 }
1788
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001789 BUG_ON(batch_ptr - batch > CTX_WA_BB_OBJ_SIZE);
1790
Arun Siluvery17ee9502015-06-19 19:07:01 +01001791 kunmap_atomic(batch);
1792 if (ret)
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001793 lrc_destroy_wa_ctx(engine);
Arun Siluvery17ee9502015-06-19 19:07:01 +01001794
1795 return ret;
1796}
1797
Chris Wilsonf3c9d4072018-01-02 15:12:34 +00001798static void enable_execlists(struct intel_engine_cs *engine)
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001799{
Chris Wilsonc0336662016-05-06 15:40:21 +01001800 struct drm_i915_private *dev_priv = engine->i915;
Chris Wilsonf3c9d4072018-01-02 15:12:34 +00001801
1802 I915_WRITE(RING_HWSTAM(engine->mmio_base), 0xffffffff);
Kelvin Gardiner225701f2018-01-30 11:49:17 -02001803
1804 /*
1805 * Make sure we're not enabling the new 12-deep CSB
1806 * FIFO as that requires a slightly updated handling
1807 * in the ctx switch irq. Since we're currently only
1808 * using only 2 elements of the enhanced execlists the
1809 * deeper FIFO it's not needed and it's not worth adding
1810 * more statements to the irq handler to support it.
1811 */
1812 if (INTEL_GEN(dev_priv) >= 11)
1813 I915_WRITE(RING_MODE_GEN7(engine),
1814 _MASKED_BIT_DISABLE(GEN11_GFX_DISABLE_LEGACY_MODE));
1815 else
1816 I915_WRITE(RING_MODE_GEN7(engine),
1817 _MASKED_BIT_ENABLE(GFX_RUN_LIST_ENABLE));
1818
Chris Wilson9a4dc802018-05-18 11:09:33 +01001819 I915_WRITE(RING_MI_MODE(engine->mmio_base),
1820 _MASKED_BIT_DISABLE(STOP_RING));
1821
Chris Wilsonf3c9d4072018-01-02 15:12:34 +00001822 I915_WRITE(RING_HWS_PGA(engine->mmio_base),
1823 engine->status_page.ggtt_offset);
1824 POSTING_READ(RING_HWS_PGA(engine->mmio_base));
1825}
1826
Chris Wilson9a4dc802018-05-18 11:09:33 +01001827static bool unexpected_starting_state(struct intel_engine_cs *engine)
1828{
1829 struct drm_i915_private *dev_priv = engine->i915;
1830 bool unexpected = false;
1831
1832 if (I915_READ(RING_MI_MODE(engine->mmio_base)) & STOP_RING) {
1833 DRM_DEBUG_DRIVER("STOP_RING still set in RING_MI_MODE\n");
1834 unexpected = true;
1835 }
1836
1837 return unexpected;
1838}
1839
Chris Wilsonf3c9d4072018-01-02 15:12:34 +00001840static int gen8_init_common_ring(struct intel_engine_cs *engine)
1841{
Chris Wilson821ed7d2016-09-09 14:11:53 +01001842 int ret;
1843
1844 ret = intel_mocs_init_engine(engine);
1845 if (ret)
1846 return ret;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001847
Chris Wilsonad07dfc2016-10-07 07:53:26 +01001848 intel_engine_reset_breadcrumbs(engine);
Chris Wilsonf3b8f912017-01-05 15:30:21 +00001849 intel_engine_init_hangcheck(engine);
Chris Wilson821ed7d2016-09-09 14:11:53 +01001850
Chris Wilson9a4dc802018-05-18 11:09:33 +01001851 if (GEM_SHOW_DEBUG() && unexpected_starting_state(engine)) {
1852 struct drm_printer p = drm_debug_printer(__func__);
1853
1854 intel_engine_dump(engine, &p, NULL);
1855 }
1856
Chris Wilsonf3c9d4072018-01-02 15:12:34 +00001857 enable_execlists(engine);
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001858
Chris Wilson821ed7d2016-09-09 14:11:53 +01001859 return 0;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001860}
1861
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001862static int gen8_init_render_ring(struct intel_engine_cs *engine)
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001863{
Chris Wilsonc0336662016-05-06 15:40:21 +01001864 struct drm_i915_private *dev_priv = engine->i915;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001865 int ret;
1866
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001867 ret = gen8_init_common_ring(engine);
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001868 if (ret)
1869 return ret;
1870
Chris Wilsonf4ecfbf2018-04-14 13:27:54 +01001871 intel_whitelist_workarounds_apply(engine);
Oscar Mateo59b449d2018-04-10 09:12:47 -07001872
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001873 /* We need to disable the AsyncFlip performance optimisations in order
1874 * to use MI_WAIT_FOR_EVENT within the CS. It should already be
1875 * programmed to '1' on all products.
1876 *
1877 * WaDisableAsyncFlipPerfMode:snb,ivb,hsw,vlv,bdw,chv
1878 */
1879 I915_WRITE(MI_MODE, _MASKED_BIT_ENABLE(ASYNC_FLIP_PERF_DISABLE));
1880
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001881 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_FORCE_ORDERING));
1882
Oscar Mateo59b449d2018-04-10 09:12:47 -07001883 return 0;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001884}
1885
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001886static int gen9_init_render_ring(struct intel_engine_cs *engine)
Damien Lespiau82ef8222015-02-09 19:33:08 +00001887{
1888 int ret;
1889
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001890 ret = gen8_init_common_ring(engine);
Damien Lespiau82ef8222015-02-09 19:33:08 +00001891 if (ret)
1892 return ret;
1893
Chris Wilsonf4ecfbf2018-04-14 13:27:54 +01001894 intel_whitelist_workarounds_apply(engine);
Oscar Mateo59b449d2018-04-10 09:12:47 -07001895
1896 return 0;
Damien Lespiau82ef8222015-02-09 19:33:08 +00001897}
1898
Chris Wilson5adfb772018-05-16 19:33:51 +01001899static struct i915_request *
1900execlists_reset_prepare(struct intel_engine_cs *engine)
1901{
1902 struct intel_engine_execlists * const execlists = &engine->execlists;
Chris Wilson63572932018-05-16 19:33:54 +01001903 struct i915_request *request, *active;
Chris Wilson5adfb772018-05-16 19:33:51 +01001904
1905 GEM_TRACE("%s\n", engine->name);
1906
1907 /*
1908 * Prevent request submission to the hardware until we have
1909 * completed the reset in i915_gem_reset_finish(). If a request
1910 * is completed by one engine, it may then queue a request
1911 * to a second via its execlists->tasklet *just* as we are
1912 * calling engine->init_hw() and also writing the ELSP.
1913 * Turning off the execlists->tasklet until the reset is over
1914 * prevents the race.
1915 */
1916 __tasklet_disable_sync_once(&execlists->tasklet);
1917
Chris Wilson63572932018-05-16 19:33:54 +01001918 /*
1919 * We want to flush the pending context switches, having disabled
1920 * the tasklet above, we can assume exclusive access to the execlists.
1921 * For this allows us to catch up with an inflight preemption event,
1922 * and avoid blaming an innocent request if the stall was due to the
1923 * preemption itself.
1924 */
1925 if (test_bit(ENGINE_IRQ_EXECLIST, &engine->irq_posted))
1926 process_csb(engine);
1927
1928 /*
1929 * The last active request can then be no later than the last request
1930 * now in ELSP[0]. So search backwards from there, so that if the GPU
1931 * has advanced beyond the last CSB update, it will be pardoned.
1932 */
1933 active = NULL;
1934 request = port_request(execlists->port);
1935 if (request) {
1936 unsigned long flags;
1937
Chris Wilson3f6e9822018-05-16 19:33:55 +01001938 /*
1939 * Prevent the breadcrumb from advancing before we decide
1940 * which request is currently active.
1941 */
1942 intel_engine_stop_cs(engine);
1943
Chris Wilson63572932018-05-16 19:33:54 +01001944 spin_lock_irqsave(&engine->timeline.lock, flags);
1945 list_for_each_entry_from_reverse(request,
1946 &engine->timeline.requests,
1947 link) {
1948 if (__i915_request_completed(request,
1949 request->global_seqno))
1950 break;
1951
1952 active = request;
1953 }
1954 spin_unlock_irqrestore(&engine->timeline.lock, flags);
1955 }
1956
1957 return active;
Chris Wilson5adfb772018-05-16 19:33:51 +01001958}
1959
1960static void execlists_reset(struct intel_engine_cs *engine,
1961 struct i915_request *request)
Chris Wilson821ed7d2016-09-09 14:11:53 +01001962{
Mika Kuoppalab620e872017-09-22 15:43:03 +03001963 struct intel_engine_execlists * const execlists = &engine->execlists;
Chris Wilson221ab97192017-09-16 21:44:14 +01001964 unsigned long flags;
Chris Wilson56922512018-04-28 12:15:32 +01001965 u32 *regs;
Chris Wilsoncdb6ded2017-07-21 13:32:22 +01001966
Tvrtko Ursulin0c5c7df2018-04-06 13:35:14 +01001967 GEM_TRACE("%s request global=%x, current=%d\n",
1968 engine->name, request ? request->global_seqno : 0,
1969 intel_engine_get_seqno(engine));
Chris Wilson42232212018-01-02 15:12:32 +00001970
Chris Wilsond8857d52018-06-28 21:12:05 +01001971 spin_lock_irqsave(&engine->timeline.lock, flags);
Chris Wilson221ab97192017-09-16 21:44:14 +01001972
Chris Wilsoncdb6ded2017-07-21 13:32:22 +01001973 /*
1974 * Catch up with any missed context-switch interrupts.
1975 *
1976 * Ideally we would just read the remaining CSB entries now that we
1977 * know the gpu is idle. However, the CSB registers are sometimes^W
1978 * often trashed across a GPU reset! Instead we have to rely on
1979 * guessing the missed context-switch events by looking at what
1980 * requests were completed.
1981 */
Michał Winiarskia4598d12017-10-25 22:00:18 +02001982 execlists_cancel_port_requests(execlists);
Chris Wilson46b36172018-03-23 10:18:24 +00001983 reset_irq(engine);
Chris Wilson221ab97192017-09-16 21:44:14 +01001984
1985 /* Push back any incomplete requests for replay after the reset. */
Michał Winiarskia4598d12017-10-25 22:00:18 +02001986 __unwind_incomplete_requests(engine);
Chris Wilsoncdb6ded2017-07-21 13:32:22 +01001987
Chris Wilsonc3160da2018-05-31 09:22:45 +01001988 /* Following the reset, we need to reload the CSB read/write pointers */
Chris Wilsonf4b58f02018-06-28 21:12:08 +01001989 reset_csb_pointers(&engine->execlists);
Chris Wilsonc3160da2018-05-31 09:22:45 +01001990
Chris Wilsond8857d52018-06-28 21:12:05 +01001991 spin_unlock_irqrestore(&engine->timeline.lock, flags);
Chris Wilsonaebbc2d2018-03-02 13:12:46 +00001992
Chris Wilsona3e38832018-03-02 14:32:45 +00001993 /*
1994 * If the request was innocent, we leave the request in the ELSP
Chris Wilsonc0dcb202017-02-07 15:24:37 +00001995 * and will try to replay it on restarting. The context image may
1996 * have been corrupted by the reset, in which case we may have
1997 * to service a new GPU hang, but more likely we can continue on
1998 * without impact.
1999 *
2000 * If the request was guilty, we presume the context is corrupt
2001 * and have to at least restore the RING register in the context
2002 * image back to the expected values to skip over the guilty request.
2003 */
Chris Wilson221ab97192017-09-16 21:44:14 +01002004 if (!request || request->fence.error != -EIO)
Chris Wilsonc0dcb202017-02-07 15:24:37 +00002005 return;
Chris Wilson821ed7d2016-09-09 14:11:53 +01002006
Chris Wilsona3e38832018-03-02 14:32:45 +00002007 /*
2008 * We want a simple context + ring to execute the breadcrumb update.
Chris Wilsona3aabe82016-10-04 21:11:26 +01002009 * We cannot rely on the context being intact across the GPU hang,
2010 * so clear it and rebuild just what we need for the breadcrumb.
2011 * All pending requests for this context will be zapped, and any
2012 * future request will be after userspace has had the opportunity
2013 * to recreate its own state.
2014 */
Chris Wilson1fc44d92018-05-17 22:26:32 +01002015 regs = request->hw_context->lrc_reg_state;
Chris Wilsonfe0c4932018-05-18 10:02:11 +01002016 if (engine->pinned_default_state) {
2017 memcpy(regs, /* skip restoring the vanilla PPHWSP */
2018 engine->pinned_default_state + LRC_STATE_PN * PAGE_SIZE,
2019 engine->context_size - PAGE_SIZE);
Chris Wilson56922512018-04-28 12:15:32 +01002020 }
Chris Wilson4e0d64d2018-05-17 22:26:30 +01002021 execlists_init_reg_state(regs,
2022 request->gem_context, engine, request->ring);
Chris Wilsona3aabe82016-10-04 21:11:26 +01002023
Chris Wilson821ed7d2016-09-09 14:11:53 +01002024 /* Move the RING_HEAD onto the breadcrumb, past the hanging batch */
Chris Wilson56922512018-04-28 12:15:32 +01002025 regs[CTX_RING_BUFFER_START + 1] = i915_ggtt_offset(request->ring->vma);
Chris Wilsona3aabe82016-10-04 21:11:26 +01002026
Chris Wilson41d37682018-06-11 12:08:45 +01002027 request->ring->head = intel_ring_wrap(request->ring, request->postfix);
2028 regs[CTX_RING_HEAD + 1] = request->ring->head;
2029
Chris Wilson821ed7d2016-09-09 14:11:53 +01002030 intel_ring_update_space(request->ring);
2031
Chris Wilsona3aabe82016-10-04 21:11:26 +01002032 /* Reset WaIdleLiteRestore:bdw,skl as well */
Chris Wilson7e4992a2017-09-28 20:38:59 +01002033 unwind_wa_tail(request);
Chris Wilson821ed7d2016-09-09 14:11:53 +01002034}
2035
Chris Wilson5adfb772018-05-16 19:33:51 +01002036static void execlists_reset_finish(struct intel_engine_cs *engine)
2037{
Chris Wilson5db1d4e2018-06-04 08:34:40 +01002038 struct intel_engine_execlists * const execlists = &engine->execlists;
2039
2040 /* After a GPU reset, we may have requests to replay */
2041 if (execlists->first)
2042 tasklet_schedule(&execlists->tasklet);
2043
Chris Wilsonfe25f302018-05-22 11:19:37 +01002044 /*
2045 * Flush the tasklet while we still have the forcewake to be sure
2046 * that it is not allowed to sleep before we restart and reload a
2047 * context.
2048 *
2049 * As before (with execlists_reset_prepare) we rely on the caller
2050 * serialising multiple attempts to reset so that we know that we
2051 * are the only one manipulating tasklet state.
2052 */
Chris Wilson5db1d4e2018-06-04 08:34:40 +01002053 __tasklet_enable_sync_once(&execlists->tasklet);
Chris Wilson5adfb772018-05-16 19:33:51 +01002054
2055 GEM_TRACE("%s\n", engine->name);
2056}
2057
Chris Wilsone61e0f52018-02-21 09:56:36 +00002058static int intel_logical_ring_emit_pdps(struct i915_request *rq)
Michel Thierry7a01a0a2015-06-26 13:46:14 +01002059{
Chris Wilson4e0d64d2018-05-17 22:26:30 +01002060 struct i915_hw_ppgtt *ppgtt = rq->gem_context->ppgtt;
Chris Wilsone61e0f52018-02-21 09:56:36 +00002061 struct intel_engine_cs *engine = rq->engine;
Mika Kuoppalae7167762017-02-28 17:28:10 +02002062 const int num_lri_cmds = GEN8_3LVL_PDPES * 2;
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002063 u32 *cs;
2064 int i;
Michel Thierry7a01a0a2015-06-26 13:46:14 +01002065
Chris Wilsone61e0f52018-02-21 09:56:36 +00002066 cs = intel_ring_begin(rq, num_lri_cmds * 2 + 2);
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002067 if (IS_ERR(cs))
2068 return PTR_ERR(cs);
Michel Thierry7a01a0a2015-06-26 13:46:14 +01002069
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002070 *cs++ = MI_LOAD_REGISTER_IMM(num_lri_cmds);
Mika Kuoppalae7167762017-02-28 17:28:10 +02002071 for (i = GEN8_3LVL_PDPES - 1; i >= 0; i--) {
Michel Thierry7a01a0a2015-06-26 13:46:14 +01002072 const dma_addr_t pd_daddr = i915_page_dir_dma_addr(ppgtt, i);
2073
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002074 *cs++ = i915_mmio_reg_offset(GEN8_RING_PDP_UDW(engine, i));
2075 *cs++ = upper_32_bits(pd_daddr);
2076 *cs++ = i915_mmio_reg_offset(GEN8_RING_PDP_LDW(engine, i));
2077 *cs++ = lower_32_bits(pd_daddr);
Michel Thierry7a01a0a2015-06-26 13:46:14 +01002078 }
2079
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002080 *cs++ = MI_NOOP;
Chris Wilsone61e0f52018-02-21 09:56:36 +00002081 intel_ring_advance(rq, cs);
Michel Thierry7a01a0a2015-06-26 13:46:14 +01002082
2083 return 0;
2084}
2085
Chris Wilsone61e0f52018-02-21 09:56:36 +00002086static int gen8_emit_bb_start(struct i915_request *rq,
Chris Wilson803688b2016-08-02 22:50:27 +01002087 u64 offset, u32 len,
Mika Kuoppala54af56d2017-02-28 17:28:08 +02002088 const unsigned int flags)
Oscar Mateo15648582014-07-24 17:04:32 +01002089{
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002090 u32 *cs;
Oscar Mateo15648582014-07-24 17:04:32 +01002091 int ret;
2092
Michel Thierry7a01a0a2015-06-26 13:46:14 +01002093 /* Don't rely in hw updating PDPs, specially in lite-restore.
2094 * Ideally, we should set Force PD Restore in ctx descriptor,
2095 * but we can't. Force Restore would be a second option, but
2096 * it is unsafe in case of lite-restore (because the ctx is
Michel Thierry2dba3232015-07-30 11:06:23 +01002097 * not idle). PML4 is allocated during ppgtt init so this is
2098 * not needed in 48-bit.*/
Chris Wilson4e0d64d2018-05-17 22:26:30 +01002099 if (rq->gem_context->ppgtt &&
2100 (intel_engine_flag(rq->engine) & rq->gem_context->ppgtt->pd_dirty_rings) &&
Chris Wilson82ad6442018-06-05 16:37:58 +01002101 !i915_vm_is_48bit(&rq->gem_context->ppgtt->vm) &&
Chris Wilsone61e0f52018-02-21 09:56:36 +00002102 !intel_vgpu_active(rq->i915)) {
2103 ret = intel_logical_ring_emit_pdps(rq);
Mika Kuoppala54af56d2017-02-28 17:28:08 +02002104 if (ret)
2105 return ret;
Michel Thierry7a01a0a2015-06-26 13:46:14 +01002106
Chris Wilson4e0d64d2018-05-17 22:26:30 +01002107 rq->gem_context->ppgtt->pd_dirty_rings &= ~intel_engine_flag(rq->engine);
Michel Thierry7a01a0a2015-06-26 13:46:14 +01002108 }
2109
Chris Wilson74f9474122018-05-03 20:54:16 +01002110 cs = intel_ring_begin(rq, 6);
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002111 if (IS_ERR(cs))
2112 return PTR_ERR(cs);
Oscar Mateo15648582014-07-24 17:04:32 +01002113
Chris Wilson279f5a02017-10-05 20:10:05 +01002114 /*
2115 * WaDisableCtxRestoreArbitration:bdw,chv
2116 *
2117 * We don't need to perform MI_ARB_ENABLE as often as we do (in
2118 * particular all the gen that do not need the w/a at all!), if we
2119 * took care to make sure that on every switch into this context
2120 * (both ordinary and for preemption) that arbitrartion was enabled
2121 * we would be fine. However, there doesn't seem to be a downside to
2122 * being paranoid and making sure it is set before each batch and
2123 * every context-switch.
2124 *
2125 * Note that if we fail to enable arbitration before the request
2126 * is complete, then we do not see the context-switch interrupt and
2127 * the engine hangs (with RING_HEAD == RING_TAIL).
2128 *
2129 * That satisfies both the GPGPU w/a and our heavy-handed paranoia.
2130 */
Chris Wilson3ad7b522017-10-03 21:34:49 +01002131 *cs++ = MI_ARB_ON_OFF | MI_ARB_ENABLE;
2132
Oscar Mateo15648582014-07-24 17:04:32 +01002133 /* FIXME(BDW): Address space and security selectors. */
Mika Kuoppala54af56d2017-02-28 17:28:08 +02002134 *cs++ = MI_BATCH_BUFFER_START_GEN8 |
2135 (flags & I915_DISPATCH_SECURE ? 0 : BIT(8)) |
2136 (flags & I915_DISPATCH_RS ? MI_BATCH_RESOURCE_STREAMER : 0);
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002137 *cs++ = lower_32_bits(offset);
2138 *cs++ = upper_32_bits(offset);
Chris Wilson74f9474122018-05-03 20:54:16 +01002139
2140 *cs++ = MI_ARB_ON_OFF | MI_ARB_DISABLE;
2141 *cs++ = MI_NOOP;
Chris Wilsone61e0f52018-02-21 09:56:36 +00002142 intel_ring_advance(rq, cs);
Oscar Mateo15648582014-07-24 17:04:32 +01002143
2144 return 0;
2145}
2146
Chris Wilson31bb59c2016-07-01 17:23:27 +01002147static void gen8_logical_ring_enable_irq(struct intel_engine_cs *engine)
Oscar Mateo73d477f2014-07-24 17:04:31 +01002148{
Chris Wilsonc0336662016-05-06 15:40:21 +01002149 struct drm_i915_private *dev_priv = engine->i915;
Chris Wilson31bb59c2016-07-01 17:23:27 +01002150 I915_WRITE_IMR(engine,
2151 ~(engine->irq_enable_mask | engine->irq_keep_mask));
2152 POSTING_READ_FW(RING_IMR(engine->mmio_base));
Oscar Mateo73d477f2014-07-24 17:04:31 +01002153}
2154
Chris Wilson31bb59c2016-07-01 17:23:27 +01002155static void gen8_logical_ring_disable_irq(struct intel_engine_cs *engine)
Oscar Mateo73d477f2014-07-24 17:04:31 +01002156{
Chris Wilsonc0336662016-05-06 15:40:21 +01002157 struct drm_i915_private *dev_priv = engine->i915;
Chris Wilson31bb59c2016-07-01 17:23:27 +01002158 I915_WRITE_IMR(engine, ~engine->irq_keep_mask);
Oscar Mateo73d477f2014-07-24 17:04:31 +01002159}
2160
Chris Wilsone61e0f52018-02-21 09:56:36 +00002161static int gen8_emit_flush(struct i915_request *request, u32 mode)
Oscar Mateo47122742014-07-24 17:04:28 +01002162{
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002163 u32 cmd, *cs;
Oscar Mateo47122742014-07-24 17:04:28 +01002164
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002165 cs = intel_ring_begin(request, 4);
2166 if (IS_ERR(cs))
2167 return PTR_ERR(cs);
Oscar Mateo47122742014-07-24 17:04:28 +01002168
2169 cmd = MI_FLUSH_DW + 1;
2170
Chris Wilsonf0a1fb12015-01-22 13:42:00 +00002171 /* We always require a command barrier so that subsequent
2172 * commands, such as breadcrumb interrupts, are strictly ordered
2173 * wrt the contents of the write cache being flushed to memory
2174 * (and thus being coherent from the CPU).
2175 */
2176 cmd |= MI_FLUSH_DW_STORE_INDEX | MI_FLUSH_DW_OP_STOREDW;
2177
Chris Wilson7c9cf4e2016-08-02 22:50:25 +01002178 if (mode & EMIT_INVALIDATE) {
Chris Wilsonf0a1fb12015-01-22 13:42:00 +00002179 cmd |= MI_INVALIDATE_TLB;
Chris Wilson1dae2df2016-08-02 22:50:19 +01002180 if (request->engine->id == VCS)
Chris Wilsonf0a1fb12015-01-22 13:42:00 +00002181 cmd |= MI_INVALIDATE_BSD;
Oscar Mateo47122742014-07-24 17:04:28 +01002182 }
2183
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002184 *cs++ = cmd;
2185 *cs++ = I915_GEM_HWS_SCRATCH_ADDR | MI_FLUSH_DW_USE_GTT;
2186 *cs++ = 0; /* upper addr */
2187 *cs++ = 0; /* value */
2188 intel_ring_advance(request, cs);
Oscar Mateo47122742014-07-24 17:04:28 +01002189
2190 return 0;
2191}
2192
Chris Wilsone61e0f52018-02-21 09:56:36 +00002193static int gen8_emit_flush_render(struct i915_request *request,
Chris Wilson7c9cf4e2016-08-02 22:50:25 +01002194 u32 mode)
Oscar Mateo47122742014-07-24 17:04:28 +01002195{
Chris Wilsonb5321f32016-08-02 22:50:18 +01002196 struct intel_engine_cs *engine = request->engine;
Chris Wilsonbde13eb2016-08-15 10:49:07 +01002197 u32 scratch_addr =
2198 i915_ggtt_offset(engine->scratch) + 2 * CACHELINE_BYTES;
Mika Kuoppala0b2d0932016-06-07 17:19:10 +03002199 bool vf_flush_wa = false, dc_flush_wa = false;
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002200 u32 *cs, flags = 0;
Mika Kuoppala0b2d0932016-06-07 17:19:10 +03002201 int len;
Oscar Mateo47122742014-07-24 17:04:28 +01002202
2203 flags |= PIPE_CONTROL_CS_STALL;
2204
Chris Wilson7c9cf4e2016-08-02 22:50:25 +01002205 if (mode & EMIT_FLUSH) {
Oscar Mateo47122742014-07-24 17:04:28 +01002206 flags |= PIPE_CONTROL_RENDER_TARGET_CACHE_FLUSH;
2207 flags |= PIPE_CONTROL_DEPTH_CACHE_FLUSH;
Francisco Jerez965fd602016-01-13 18:59:39 -08002208 flags |= PIPE_CONTROL_DC_FLUSH_ENABLE;
Chris Wilson40a24482015-08-21 16:08:41 +01002209 flags |= PIPE_CONTROL_FLUSH_ENABLE;
Oscar Mateo47122742014-07-24 17:04:28 +01002210 }
2211
Chris Wilson7c9cf4e2016-08-02 22:50:25 +01002212 if (mode & EMIT_INVALIDATE) {
Oscar Mateo47122742014-07-24 17:04:28 +01002213 flags |= PIPE_CONTROL_TLB_INVALIDATE;
2214 flags |= PIPE_CONTROL_INSTRUCTION_CACHE_INVALIDATE;
2215 flags |= PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE;
2216 flags |= PIPE_CONTROL_VF_CACHE_INVALIDATE;
2217 flags |= PIPE_CONTROL_CONST_CACHE_INVALIDATE;
2218 flags |= PIPE_CONTROL_STATE_CACHE_INVALIDATE;
2219 flags |= PIPE_CONTROL_QW_WRITE;
2220 flags |= PIPE_CONTROL_GLOBAL_GTT_IVB;
Oscar Mateo47122742014-07-24 17:04:28 +01002221
Ben Widawsky1a5a9ce2015-12-17 09:49:57 -08002222 /*
2223 * On GEN9: before VF_CACHE_INVALIDATE we need to emit a NULL
2224 * pipe control.
2225 */
Chris Wilsonc0336662016-05-06 15:40:21 +01002226 if (IS_GEN9(request->i915))
Ben Widawsky1a5a9ce2015-12-17 09:49:57 -08002227 vf_flush_wa = true;
Mika Kuoppala0b2d0932016-06-07 17:19:10 +03002228
2229 /* WaForGAMHang:kbl */
2230 if (IS_KBL_REVID(request->i915, 0, KBL_REVID_B0))
2231 dc_flush_wa = true;
Ben Widawsky1a5a9ce2015-12-17 09:49:57 -08002232 }
Imre Deak9647ff32015-01-25 13:27:11 -08002233
Mika Kuoppala0b2d0932016-06-07 17:19:10 +03002234 len = 6;
2235
2236 if (vf_flush_wa)
2237 len += 6;
2238
2239 if (dc_flush_wa)
2240 len += 12;
2241
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002242 cs = intel_ring_begin(request, len);
2243 if (IS_ERR(cs))
2244 return PTR_ERR(cs);
Oscar Mateo47122742014-07-24 17:04:28 +01002245
Tvrtko Ursulin9f235df2017-02-16 12:23:25 +00002246 if (vf_flush_wa)
2247 cs = gen8_emit_pipe_control(cs, 0, 0);
Imre Deak9647ff32015-01-25 13:27:11 -08002248
Tvrtko Ursulin9f235df2017-02-16 12:23:25 +00002249 if (dc_flush_wa)
2250 cs = gen8_emit_pipe_control(cs, PIPE_CONTROL_DC_FLUSH_ENABLE,
2251 0);
Mika Kuoppala0b2d0932016-06-07 17:19:10 +03002252
Tvrtko Ursulin9f235df2017-02-16 12:23:25 +00002253 cs = gen8_emit_pipe_control(cs, flags, scratch_addr);
Mika Kuoppala0b2d0932016-06-07 17:19:10 +03002254
Tvrtko Ursulin9f235df2017-02-16 12:23:25 +00002255 if (dc_flush_wa)
2256 cs = gen8_emit_pipe_control(cs, PIPE_CONTROL_CS_STALL, 0);
Mika Kuoppala0b2d0932016-06-07 17:19:10 +03002257
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002258 intel_ring_advance(request, cs);
Oscar Mateo47122742014-07-24 17:04:28 +01002259
2260 return 0;
2261}
2262
Chris Wilson7c17d372016-01-20 15:43:35 +02002263/*
2264 * Reserve space for 2 NOOPs at the end of each request to be
2265 * used as a workaround for not being allowed to do lite
2266 * restore with HEAD==TAIL (WaIdleLiteRestore).
2267 */
Chris Wilsone61e0f52018-02-21 09:56:36 +00002268static void gen8_emit_wa_tail(struct i915_request *request, u32 *cs)
Oscar Mateo4da46e12014-07-24 17:04:27 +01002269{
Chris Wilsonbeecec92017-10-03 21:34:52 +01002270 /* Ensure there's always at least one preemption point per-request. */
2271 *cs++ = MI_ARB_CHECK;
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002272 *cs++ = MI_NOOP;
2273 request->wa_tail = intel_ring_offset(request, cs);
Chris Wilsoncaddfe72016-10-28 13:58:52 +01002274}
Oscar Mateo4da46e12014-07-24 17:04:27 +01002275
Chris Wilsone61e0f52018-02-21 09:56:36 +00002276static void gen8_emit_breadcrumb(struct i915_request *request, u32 *cs)
Chris Wilsoncaddfe72016-10-28 13:58:52 +01002277{
Chris Wilson7c17d372016-01-20 15:43:35 +02002278 /* w/a: bit 5 needs to be zero for MI_FLUSH_DW address. */
2279 BUILD_BUG_ON(I915_GEM_HWS_INDEX_ADDR & (1 << 5));
Oscar Mateo4da46e12014-07-24 17:04:27 +01002280
Michał Winiarskidf77cd82017-10-25 22:00:15 +02002281 cs = gen8_emit_ggtt_write(cs, request->global_seqno,
2282 intel_hws_seqno_address(request->engine));
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002283 *cs++ = MI_USER_INTERRUPT;
Chris Wilson74f9474122018-05-03 20:54:16 +01002284 *cs++ = MI_ARB_ON_OFF | MI_ARB_ENABLE;
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002285 request->tail = intel_ring_offset(request, cs);
Chris Wilsoned1501d2017-03-27 14:14:12 +01002286 assert_ring_tail_valid(request->ring, request->tail);
Chris Wilsoncaddfe72016-10-28 13:58:52 +01002287
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002288 gen8_emit_wa_tail(request, cs);
Chris Wilson7c17d372016-01-20 15:43:35 +02002289}
Chris Wilson98f29e82016-10-28 13:58:51 +01002290static const int gen8_emit_breadcrumb_sz = 6 + WA_TAIL_DWORDS;
2291
Chris Wilsone61e0f52018-02-21 09:56:36 +00002292static void gen8_emit_breadcrumb_rcs(struct i915_request *request, u32 *cs)
Chris Wilson7c17d372016-01-20 15:43:35 +02002293{
Michał Winiarskice81a652016-04-12 15:51:55 +02002294 /* We're using qword write, seqno should be aligned to 8 bytes. */
2295 BUILD_BUG_ON(I915_GEM_HWS_INDEX & 1);
2296
Michał Winiarskidf77cd82017-10-25 22:00:15 +02002297 cs = gen8_emit_ggtt_write_rcs(cs, request->global_seqno,
2298 intel_hws_seqno_address(request->engine));
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002299 *cs++ = MI_USER_INTERRUPT;
Chris Wilson74f9474122018-05-03 20:54:16 +01002300 *cs++ = MI_ARB_ON_OFF | MI_ARB_ENABLE;
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002301 request->tail = intel_ring_offset(request, cs);
Chris Wilsoned1501d2017-03-27 14:14:12 +01002302 assert_ring_tail_valid(request->ring, request->tail);
Chris Wilsoncaddfe72016-10-28 13:58:52 +01002303
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00002304 gen8_emit_wa_tail(request, cs);
Oscar Mateo4da46e12014-07-24 17:04:27 +01002305}
Michał Winiarskidf77cd82017-10-25 22:00:15 +02002306static const int gen8_emit_breadcrumb_rcs_sz = 8 + WA_TAIL_DWORDS;
Chris Wilson98f29e82016-10-28 13:58:51 +01002307
Chris Wilsone61e0f52018-02-21 09:56:36 +00002308static int gen8_init_rcs_context(struct i915_request *rq)
Thomas Daniele7778be2014-12-02 12:50:48 +00002309{
2310 int ret;
2311
Oscar Mateo59b449d2018-04-10 09:12:47 -07002312 ret = intel_ctx_workarounds_emit(rq);
Thomas Daniele7778be2014-12-02 12:50:48 +00002313 if (ret)
2314 return ret;
2315
Chris Wilsone61e0f52018-02-21 09:56:36 +00002316 ret = intel_rcs_context_init_mocs(rq);
Peter Antoine3bbaba02015-07-10 20:13:11 +03002317 /*
2318 * Failing to program the MOCS is non-fatal.The system will not
2319 * run at peak performance. So generate an error and carry on.
2320 */
2321 if (ret)
2322 DRM_ERROR("MOCS failed to program: expect performance issues.\n");
2323
Chris Wilsone61e0f52018-02-21 09:56:36 +00002324 return i915_gem_render_state_emit(rq);
Thomas Daniele7778be2014-12-02 12:50:48 +00002325}
2326
Oscar Mateo73e4d072014-07-24 17:04:48 +01002327/**
2328 * intel_logical_ring_cleanup() - deallocate the Engine Command Streamer
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01002329 * @engine: Engine Command Streamer.
Oscar Mateo73e4d072014-07-24 17:04:48 +01002330 */
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002331void intel_logical_ring_cleanup(struct intel_engine_cs *engine)
Oscar Mateo454afeb2014-07-24 17:04:22 +01002332{
John Harrison6402c332014-10-31 12:00:26 +00002333 struct drm_i915_private *dev_priv;
Oscar Mateo9832b9d2014-07-24 17:04:30 +01002334
Tvrtko Ursulin27af5ee2016-04-04 12:11:56 +01002335 /*
2336 * Tasklet cannot be active at this point due intel_mark_active/idle
2337 * so this is just for documentation.
2338 */
Sagar Arun Kamblec6dce8f2017-11-16 19:02:37 +05302339 if (WARN_ON(test_bit(TASKLET_STATE_SCHED,
2340 &engine->execlists.tasklet.state)))
2341 tasklet_kill(&engine->execlists.tasklet);
Tvrtko Ursulin27af5ee2016-04-04 12:11:56 +01002342
Chris Wilsonc0336662016-05-06 15:40:21 +01002343 dev_priv = engine->i915;
John Harrison6402c332014-10-31 12:00:26 +00002344
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002345 if (engine->buffer) {
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002346 WARN_ON((I915_READ_MODE(engine) & MODE_IDLE) == 0);
Dave Gordonb0366a52015-12-08 15:02:36 +00002347 }
Oscar Mateo48d82382014-07-24 17:04:23 +01002348
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002349 if (engine->cleanup)
2350 engine->cleanup(engine);
Oscar Mateo48d82382014-07-24 17:04:23 +01002351
Chris Wilsone8a9c582016-12-18 15:37:20 +00002352 intel_engine_cleanup_common(engine);
Arun Siluvery17ee9502015-06-19 19:07:01 +01002353
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00002354 lrc_destroy_wa_ctx(engine);
Chris Wilsonf3c9d4072018-01-02 15:12:34 +00002355
Chris Wilsonc0336662016-05-06 15:40:21 +01002356 engine->i915 = NULL;
Akash Goel3b3f1652016-10-13 22:44:48 +05302357 dev_priv->engine[engine->id] = NULL;
2358 kfree(engine);
Oscar Mateo454afeb2014-07-24 17:04:22 +01002359}
2360
Chris Wilsonff44ad52017-03-16 17:13:03 +00002361static void execlists_set_default_submission(struct intel_engine_cs *engine)
Chris Wilsonddd66c52016-08-02 22:50:31 +01002362{
Chris Wilsonff44ad52017-03-16 17:13:03 +00002363 engine->submit_request = execlists_submit_request;
Chris Wilson27a5f612017-09-15 18:31:00 +01002364 engine->cancel_requests = execlists_cancel_requests;
Chris Wilsonff44ad52017-03-16 17:13:03 +00002365 engine->schedule = execlists_schedule;
Sagar Arun Kamblec6dce8f2017-11-16 19:02:37 +05302366 engine->execlists.tasklet.func = execlists_submission_tasklet;
Chris Wilsonaba5e272017-10-25 15:39:41 +01002367
Chris Wilson13291152018-05-16 19:33:52 +01002368 engine->reset.prepare = execlists_reset_prepare;
2369
Chris Wilsonaba5e272017-10-25 15:39:41 +01002370 engine->park = NULL;
2371 engine->unpark = NULL;
Tvrtko Ursulincf669b42017-11-29 10:28:05 +00002372
2373 engine->flags |= I915_ENGINE_SUPPORTS_STATS;
Chris Wilson2a694fe2018-04-03 19:35:37 +01002374 if (engine->i915->preempt_context)
2375 engine->flags |= I915_ENGINE_HAS_PREEMPTION;
Chris Wilson3fed1802018-02-07 21:05:43 +00002376
2377 engine->i915->caps.scheduler =
2378 I915_SCHEDULER_CAP_ENABLED |
2379 I915_SCHEDULER_CAP_PRIORITY;
Chris Wilson2a694fe2018-04-03 19:35:37 +01002380 if (intel_engine_has_preemption(engine))
Chris Wilson3fed1802018-02-07 21:05:43 +00002381 engine->i915->caps.scheduler |= I915_SCHEDULER_CAP_PREEMPTION;
Chris Wilsonddd66c52016-08-02 22:50:31 +01002382}
2383
Tvrtko Ursulinc9cacf92016-01-12 17:32:34 +00002384static void
Chris Wilsone1382ef2016-05-06 15:40:20 +01002385logical_ring_default_vfuncs(struct intel_engine_cs *engine)
Tvrtko Ursulinc9cacf92016-01-12 17:32:34 +00002386{
2387 /* Default vfuncs which can be overriden by each engine. */
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002388 engine->init_hw = gen8_init_common_ring;
Chris Wilson5adfb772018-05-16 19:33:51 +01002389
2390 engine->reset.prepare = execlists_reset_prepare;
2391 engine->reset.reset = execlists_reset;
2392 engine->reset.finish = execlists_reset_finish;
Chris Wilsone8a9c582016-12-18 15:37:20 +00002393
2394 engine->context_pin = execlists_context_pin;
Chris Wilsonf73e7392016-12-18 15:37:24 +00002395 engine->request_alloc = execlists_request_alloc;
2396
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002397 engine->emit_flush = gen8_emit_flush;
Chris Wilson9b81d552016-10-28 13:58:50 +01002398 engine->emit_breadcrumb = gen8_emit_breadcrumb;
Chris Wilson98f29e82016-10-28 13:58:51 +01002399 engine->emit_breadcrumb_sz = gen8_emit_breadcrumb_sz;
Chris Wilsonff44ad52017-03-16 17:13:03 +00002400
2401 engine->set_default_submission = execlists_set_default_submission;
Chris Wilsonddd66c52016-08-02 22:50:31 +01002402
Tvrtko Ursulind4ccceb2018-03-02 18:14:56 +02002403 if (INTEL_GEN(engine->i915) < 11) {
2404 engine->irq_enable = gen8_logical_ring_enable_irq;
2405 engine->irq_disable = gen8_logical_ring_disable_irq;
2406 } else {
2407 /*
2408 * TODO: On Gen11 interrupt masks need to be clear
2409 * to allow C6 entry. Keep interrupts enabled at
2410 * and take the hit of generating extra interrupts
2411 * until a more refined solution exists.
2412 */
2413 }
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002414 engine->emit_bb_start = gen8_emit_bb_start;
Tvrtko Ursulinc9cacf92016-01-12 17:32:34 +00002415}
2416
Tvrtko Ursulind9f3af92016-01-12 17:32:35 +00002417static inline void
Dave Gordonc2c7f242016-07-13 16:03:35 +01002418logical_ring_default_irqs(struct intel_engine_cs *engine)
Tvrtko Ursulind9f3af92016-01-12 17:32:35 +00002419{
Daniele Ceraolo Spuriofa6f0712018-03-14 11:26:53 -07002420 unsigned int shift = 0;
2421
2422 if (INTEL_GEN(engine->i915) < 11) {
2423 const u8 irq_shifts[] = {
2424 [RCS] = GEN8_RCS_IRQ_SHIFT,
2425 [BCS] = GEN8_BCS_IRQ_SHIFT,
2426 [VCS] = GEN8_VCS1_IRQ_SHIFT,
2427 [VCS2] = GEN8_VCS2_IRQ_SHIFT,
2428 [VECS] = GEN8_VECS_IRQ_SHIFT,
2429 };
2430
2431 shift = irq_shifts[engine->id];
2432 }
2433
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002434 engine->irq_enable_mask = GT_RENDER_USER_INTERRUPT << shift;
2435 engine->irq_keep_mask = GT_CONTEXT_SWITCH_INTERRUPT << shift;
Tvrtko Ursulind9f3af92016-01-12 17:32:35 +00002436}
2437
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01002438static void
2439logical_ring_setup(struct intel_engine_cs *engine)
2440{
Tvrtko Ursulin019bf272016-07-13 16:03:41 +01002441 intel_engine_setup_common(engine);
2442
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01002443 /* Intentionally left blank. */
2444 engine->buffer = NULL;
2445
Sagar Arun Kamblec6dce8f2017-11-16 19:02:37 +05302446 tasklet_init(&engine->execlists.tasklet,
2447 execlists_submission_tasklet, (unsigned long)engine);
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01002448
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01002449 logical_ring_default_vfuncs(engine);
2450 logical_ring_default_irqs(engine);
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01002451}
2452
Chris Wilsonbc4237e2018-06-28 21:12:07 +01002453static bool csb_force_mmio(struct drm_i915_private *i915)
2454{
2455 /* Older GVT emulation depends upon intercepting CSB mmio */
2456 return intel_vgpu_active(i915) && !intel_vgpu_has_hwsp_emulation(i915);
2457}
2458
Daniele Ceraolo Spurio486e93f2017-09-13 09:56:02 +01002459static int logical_ring_init(struct intel_engine_cs *engine)
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01002460{
Chris Wilsonbc4237e2018-06-28 21:12:07 +01002461 struct drm_i915_private *i915 = engine->i915;
2462 struct intel_engine_execlists * const execlists = &engine->execlists;
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01002463 int ret;
2464
Tvrtko Ursulin019bf272016-07-13 16:03:41 +01002465 ret = intel_engine_init_common(engine);
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01002466 if (ret)
2467 goto error;
2468
Chris Wilsonbc4237e2018-06-28 21:12:07 +01002469 if (HAS_LOGICAL_RING_ELSQ(i915)) {
2470 execlists->submit_reg = i915->regs +
Thomas Daniel05f0add2018-03-02 18:14:59 +02002471 i915_mmio_reg_offset(RING_EXECLIST_SQ_CONTENTS(engine));
Chris Wilsonbc4237e2018-06-28 21:12:07 +01002472 execlists->ctrl_reg = i915->regs +
Thomas Daniel05f0add2018-03-02 18:14:59 +02002473 i915_mmio_reg_offset(RING_EXECLIST_CONTROL(engine));
2474 } else {
Chris Wilsonbc4237e2018-06-28 21:12:07 +01002475 execlists->submit_reg = i915->regs +
Thomas Daniel05f0add2018-03-02 18:14:59 +02002476 i915_mmio_reg_offset(RING_ELSP(engine));
2477 }
Chris Wilson693cfbf2018-01-02 15:12:33 +00002478
Chris Wilsonbc4237e2018-06-28 21:12:07 +01002479 execlists->preempt_complete_status = ~0u;
2480 if (i915->preempt_context) {
Chris Wilsonab82a062018-04-30 14:15:01 +01002481 struct intel_context *ce =
Chris Wilsonbc4237e2018-06-28 21:12:07 +01002482 to_intel_context(i915->preempt_context, engine);
Chris Wilsonab82a062018-04-30 14:15:01 +01002483
Chris Wilsonbc4237e2018-06-28 21:12:07 +01002484 execlists->preempt_complete_status =
Chris Wilsonab82a062018-04-30 14:15:01 +01002485 upper_32_bits(ce->lrc_desc);
2486 }
Chris Wilsond6376372018-02-07 21:05:44 +00002487
Chris Wilsonbc4237e2018-06-28 21:12:07 +01002488 execlists->csb_read =
2489 i915->regs + i915_mmio_reg_offset(RING_CONTEXT_STATUS_PTR(engine));
2490 if (csb_force_mmio(i915)) {
2491 execlists->csb_status = (u32 __force *)
2492 (i915->regs + i915_mmio_reg_offset(RING_CONTEXT_STATUS_BUF_LO(engine, 0)));
2493
2494 execlists->csb_write = (u32 __force *)execlists->csb_read;
Chris Wilsonf4b58f02018-06-28 21:12:08 +01002495 execlists->csb_write_reset =
2496 _MASKED_FIELD(GEN8_CSB_WRITE_PTR_MASK,
2497 GEN8_CSB_ENTRIES - 1);
Chris Wilsonbc4237e2018-06-28 21:12:07 +01002498 } else {
2499 execlists->csb_status =
2500 &engine->status_page.page_addr[I915_HWS_CSB_BUF0_INDEX];
2501
2502 execlists->csb_write =
2503 &engine->status_page.page_addr[intel_hws_csb_write_index(i915)];
Chris Wilsonf4b58f02018-06-28 21:12:08 +01002504 execlists->csb_write_reset = GEN8_CSB_ENTRIES - 1;
Chris Wilsonbc4237e2018-06-28 21:12:07 +01002505 }
Chris Wilsonf4b58f02018-06-28 21:12:08 +01002506 reset_csb_pointers(execlists);
Chris Wilsonc3160da2018-05-31 09:22:45 +01002507
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01002508 return 0;
2509
2510error:
2511 intel_logical_ring_cleanup(engine);
2512 return ret;
2513}
2514
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +01002515int logical_render_ring_init(struct intel_engine_cs *engine)
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01002516{
2517 struct drm_i915_private *dev_priv = engine->i915;
2518 int ret;
2519
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01002520 logical_ring_setup(engine);
2521
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01002522 if (HAS_L3_DPF(dev_priv))
2523 engine->irq_keep_mask |= GT_RENDER_L3_PARITY_ERROR_INTERRUPT;
2524
2525 /* Override some for render ring. */
2526 if (INTEL_GEN(dev_priv) >= 9)
2527 engine->init_hw = gen9_init_render_ring;
2528 else
2529 engine->init_hw = gen8_init_render_ring;
2530 engine->init_context = gen8_init_rcs_context;
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01002531 engine->emit_flush = gen8_emit_flush_render;
Michał Winiarskidf77cd82017-10-25 22:00:15 +02002532 engine->emit_breadcrumb = gen8_emit_breadcrumb_rcs;
2533 engine->emit_breadcrumb_sz = gen8_emit_breadcrumb_rcs_sz;
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01002534
Chris Wilsonf51455d2017-01-10 14:47:34 +00002535 ret = intel_engine_create_scratch(engine, PAGE_SIZE);
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01002536 if (ret)
2537 return ret;
2538
2539 ret = intel_init_workaround_bb(engine);
2540 if (ret) {
2541 /*
2542 * We continue even if we fail to initialize WA batch
2543 * because we only expect rare glitches but nothing
2544 * critical to prevent us from using GPU
2545 */
2546 DRM_ERROR("WA batch buffer initialization failed: %d\n",
2547 ret);
2548 }
2549
Tvrtko Ursulind038fc72016-12-16 13:18:42 +00002550 return logical_ring_init(engine);
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01002551}
2552
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +01002553int logical_xcs_ring_init(struct intel_engine_cs *engine)
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01002554{
2555 logical_ring_setup(engine);
2556
2557 return logical_ring_init(engine);
2558}
2559
Jeff McGee0cea6502015-02-13 10:27:56 -06002560static u32
Chris Wilsonc0336662016-05-06 15:40:21 +01002561make_rpcs(struct drm_i915_private *dev_priv)
Jeff McGee0cea6502015-02-13 10:27:56 -06002562{
2563 u32 rpcs = 0;
2564
2565 /*
2566 * No explicit RPCS request is needed to ensure full
2567 * slice/subslice/EU enablement prior to Gen9.
2568 */
Chris Wilsonc0336662016-05-06 15:40:21 +01002569 if (INTEL_GEN(dev_priv) < 9)
Jeff McGee0cea6502015-02-13 10:27:56 -06002570 return 0;
2571
2572 /*
2573 * Starting in Gen9, render power gating can leave
2574 * slice/subslice/EU in a partially enabled state. We
2575 * must make an explicit request through RPCS for full
2576 * enablement.
2577 */
Imre Deak43b67992016-08-31 19:13:02 +03002578 if (INTEL_INFO(dev_priv)->sseu.has_slice_pg) {
Jeff McGee0cea6502015-02-13 10:27:56 -06002579 rpcs |= GEN8_RPCS_S_CNT_ENABLE;
Imre Deakf08a0c92016-08-31 19:13:04 +03002580 rpcs |= hweight8(INTEL_INFO(dev_priv)->sseu.slice_mask) <<
Jeff McGee0cea6502015-02-13 10:27:56 -06002581 GEN8_RPCS_S_CNT_SHIFT;
2582 rpcs |= GEN8_RPCS_ENABLE;
2583 }
2584
Imre Deak43b67992016-08-31 19:13:02 +03002585 if (INTEL_INFO(dev_priv)->sseu.has_subslice_pg) {
Jeff McGee0cea6502015-02-13 10:27:56 -06002586 rpcs |= GEN8_RPCS_SS_CNT_ENABLE;
Lionel Landwerlin8cc76692018-03-06 12:28:52 +00002587 rpcs |= hweight8(INTEL_INFO(dev_priv)->sseu.subslice_mask[0]) <<
Jeff McGee0cea6502015-02-13 10:27:56 -06002588 GEN8_RPCS_SS_CNT_SHIFT;
2589 rpcs |= GEN8_RPCS_ENABLE;
2590 }
2591
Imre Deak43b67992016-08-31 19:13:02 +03002592 if (INTEL_INFO(dev_priv)->sseu.has_eu_pg) {
2593 rpcs |= INTEL_INFO(dev_priv)->sseu.eu_per_subslice <<
Jeff McGee0cea6502015-02-13 10:27:56 -06002594 GEN8_RPCS_EU_MIN_SHIFT;
Imre Deak43b67992016-08-31 19:13:02 +03002595 rpcs |= INTEL_INFO(dev_priv)->sseu.eu_per_subslice <<
Jeff McGee0cea6502015-02-13 10:27:56 -06002596 GEN8_RPCS_EU_MAX_SHIFT;
2597 rpcs |= GEN8_RPCS_ENABLE;
2598 }
2599
2600 return rpcs;
2601}
2602
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002603static u32 intel_lr_indirect_ctx_offset(struct intel_engine_cs *engine)
Michel Thierry71562912016-02-23 10:31:49 +00002604{
2605 u32 indirect_ctx_offset;
2606
Chris Wilsonc0336662016-05-06 15:40:21 +01002607 switch (INTEL_GEN(engine->i915)) {
Michel Thierry71562912016-02-23 10:31:49 +00002608 default:
Chris Wilsonc0336662016-05-06 15:40:21 +01002609 MISSING_CASE(INTEL_GEN(engine->i915));
Michel Thierry71562912016-02-23 10:31:49 +00002610 /* fall through */
Michel Thierryfd034c72018-03-02 18:15:00 +02002611 case 11:
2612 indirect_ctx_offset =
2613 GEN11_CTX_RCS_INDIRECT_CTX_OFFSET_DEFAULT;
2614 break;
Michel Thierry7bd0a2c2017-06-06 13:30:38 -07002615 case 10:
2616 indirect_ctx_offset =
2617 GEN10_CTX_RCS_INDIRECT_CTX_OFFSET_DEFAULT;
2618 break;
Michel Thierry71562912016-02-23 10:31:49 +00002619 case 9:
2620 indirect_ctx_offset =
2621 GEN9_CTX_RCS_INDIRECT_CTX_OFFSET_DEFAULT;
2622 break;
2623 case 8:
2624 indirect_ctx_offset =
2625 GEN8_CTX_RCS_INDIRECT_CTX_OFFSET_DEFAULT;
2626 break;
2627 }
2628
2629 return indirect_ctx_offset;
2630}
2631
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002632static void execlists_init_reg_state(u32 *regs,
Chris Wilsona3aabe82016-10-04 21:11:26 +01002633 struct i915_gem_context *ctx,
2634 struct intel_engine_cs *engine,
2635 struct intel_ring *ring)
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002636{
Chris Wilsona3aabe82016-10-04 21:11:26 +01002637 struct drm_i915_private *dev_priv = engine->i915;
2638 struct i915_hw_ppgtt *ppgtt = ctx->ppgtt ?: dev_priv->mm.aliasing_ppgtt;
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002639 u32 base = engine->mmio_base;
Chris Wilson1fc44d92018-05-17 22:26:32 +01002640 bool rcs = engine->class == RENDER_CLASS;
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002641
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002642 /* A context is actually a big batch buffer with several
2643 * MI_LOAD_REGISTER_IMM commands followed by (reg, value) pairs. The
2644 * values we are setting here are only for the first context restore:
2645 * on a subsequent save, the GPU will recreate this batchbuffer with new
2646 * values (including all the missing MI_LOAD_REGISTER_IMM commands that
2647 * we are not initializing here).
2648 */
2649 regs[CTX_LRI_HEADER_0] = MI_LOAD_REGISTER_IMM(rcs ? 14 : 11) |
2650 MI_LRI_FORCE_POSTED;
2651
2652 CTX_REG(regs, CTX_CONTEXT_CONTROL, RING_CONTEXT_CONTROL(engine),
Chris Wilson09b1a4e2018-01-25 11:24:42 +00002653 _MASKED_BIT_DISABLE(CTX_CTRL_ENGINE_CTX_RESTORE_INHIBIT |
2654 CTX_CTRL_ENGINE_CTX_SAVE_INHIBIT) |
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002655 _MASKED_BIT_ENABLE(CTX_CTRL_INHIBIT_SYN_CTX_SWITCH |
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002656 (HAS_RESOURCE_STREAMER(dev_priv) ?
2657 CTX_CTRL_RS_CTX_ENABLE : 0)));
2658 CTX_REG(regs, CTX_RING_HEAD, RING_HEAD(base), 0);
2659 CTX_REG(regs, CTX_RING_TAIL, RING_TAIL(base), 0);
2660 CTX_REG(regs, CTX_RING_BUFFER_START, RING_START(base), 0);
2661 CTX_REG(regs, CTX_RING_BUFFER_CONTROL, RING_CTL(base),
2662 RING_CTL_SIZE(ring->size) | RING_VALID);
2663 CTX_REG(regs, CTX_BB_HEAD_U, RING_BBADDR_UDW(base), 0);
2664 CTX_REG(regs, CTX_BB_HEAD_L, RING_BBADDR(base), 0);
2665 CTX_REG(regs, CTX_BB_STATE, RING_BBSTATE(base), RING_BB_PPGTT);
2666 CTX_REG(regs, CTX_SECOND_BB_HEAD_U, RING_SBBADDR_UDW(base), 0);
2667 CTX_REG(regs, CTX_SECOND_BB_HEAD_L, RING_SBBADDR(base), 0);
2668 CTX_REG(regs, CTX_SECOND_BB_STATE, RING_SBBSTATE(base), 0);
2669 if (rcs) {
Chris Wilson604a8f62017-09-21 14:54:43 +01002670 struct i915_ctx_workarounds *wa_ctx = &engine->wa_ctx;
2671
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002672 CTX_REG(regs, CTX_RCS_INDIRECT_CTX, RING_INDIRECT_CTX(base), 0);
2673 CTX_REG(regs, CTX_RCS_INDIRECT_CTX_OFFSET,
2674 RING_INDIRECT_CTX_OFFSET(base), 0);
Chris Wilson604a8f62017-09-21 14:54:43 +01002675 if (wa_ctx->indirect_ctx.size) {
Chris Wilsonbde13eb2016-08-15 10:49:07 +01002676 u32 ggtt_offset = i915_ggtt_offset(wa_ctx->vma);
Arun Siluvery17ee9502015-06-19 19:07:01 +01002677
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002678 regs[CTX_RCS_INDIRECT_CTX + 1] =
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00002679 (ggtt_offset + wa_ctx->indirect_ctx.offset) |
2680 (wa_ctx->indirect_ctx.size / CACHELINE_BYTES);
Arun Siluvery17ee9502015-06-19 19:07:01 +01002681
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002682 regs[CTX_RCS_INDIRECT_CTX_OFFSET + 1] =
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002683 intel_lr_indirect_ctx_offset(engine) << 6;
Chris Wilson604a8f62017-09-21 14:54:43 +01002684 }
2685
2686 CTX_REG(regs, CTX_BB_PER_CTX_PTR, RING_BB_PER_CTX_PTR(base), 0);
2687 if (wa_ctx->per_ctx.size) {
2688 u32 ggtt_offset = i915_ggtt_offset(wa_ctx->vma);
Arun Siluvery17ee9502015-06-19 19:07:01 +01002689
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002690 regs[CTX_BB_PER_CTX_PTR + 1] =
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00002691 (ggtt_offset + wa_ctx->per_ctx.offset) | 0x01;
Arun Siluvery17ee9502015-06-19 19:07:01 +01002692 }
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002693 }
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002694
2695 regs[CTX_LRI_HEADER_1] = MI_LOAD_REGISTER_IMM(9) | MI_LRI_FORCE_POSTED;
2696
2697 CTX_REG(regs, CTX_CTX_TIMESTAMP, RING_CTX_TIMESTAMP(base), 0);
Ville Syrjälä0d925ea2015-11-04 23:20:11 +02002698 /* PDP values well be assigned later if needed */
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002699 CTX_REG(regs, CTX_PDP3_UDW, GEN8_RING_PDP_UDW(engine, 3), 0);
2700 CTX_REG(regs, CTX_PDP3_LDW, GEN8_RING_PDP_LDW(engine, 3), 0);
2701 CTX_REG(regs, CTX_PDP2_UDW, GEN8_RING_PDP_UDW(engine, 2), 0);
2702 CTX_REG(regs, CTX_PDP2_LDW, GEN8_RING_PDP_LDW(engine, 2), 0);
2703 CTX_REG(regs, CTX_PDP1_UDW, GEN8_RING_PDP_UDW(engine, 1), 0);
2704 CTX_REG(regs, CTX_PDP1_LDW, GEN8_RING_PDP_LDW(engine, 1), 0);
2705 CTX_REG(regs, CTX_PDP0_UDW, GEN8_RING_PDP_UDW(engine, 0), 0);
2706 CTX_REG(regs, CTX_PDP0_LDW, GEN8_RING_PDP_LDW(engine, 0), 0);
Michel Thierryd7b26332015-04-08 12:13:34 +01002707
Chris Wilson82ad6442018-06-05 16:37:58 +01002708 if (ppgtt && i915_vm_is_48bit(&ppgtt->vm)) {
Michel Thierry2dba3232015-07-30 11:06:23 +01002709 /* 64b PPGTT (48bit canonical)
2710 * PDP0_DESCRIPTOR contains the base address to PML4 and
2711 * other PDP Descriptors are ignored.
2712 */
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002713 ASSIGN_CTX_PML4(ppgtt, regs);
Michel Thierry2dba3232015-07-30 11:06:23 +01002714 }
2715
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002716 if (rcs) {
2717 regs[CTX_LRI_HEADER_2] = MI_LOAD_REGISTER_IMM(1);
2718 CTX_REG(regs, CTX_R_PWR_CLK_STATE, GEN8_R_PWR_CLK_STATE,
2719 make_rpcs(dev_priv));
Robert Bragg19f81df2017-06-13 12:23:03 +01002720
2721 i915_oa_init_reg_state(engine, ctx, regs);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002722 }
Chris Wilsona3aabe82016-10-04 21:11:26 +01002723}
2724
2725static int
2726populate_lr_context(struct i915_gem_context *ctx,
2727 struct drm_i915_gem_object *ctx_obj,
2728 struct intel_engine_cs *engine,
2729 struct intel_ring *ring)
2730{
2731 void *vaddr;
Chris Wilsond2b4b972017-11-10 14:26:33 +00002732 u32 *regs;
Chris Wilsona3aabe82016-10-04 21:11:26 +01002733 int ret;
2734
2735 ret = i915_gem_object_set_to_cpu_domain(ctx_obj, true);
2736 if (ret) {
2737 DRM_DEBUG_DRIVER("Could not set to CPU domain\n");
2738 return ret;
2739 }
2740
2741 vaddr = i915_gem_object_pin_map(ctx_obj, I915_MAP_WB);
2742 if (IS_ERR(vaddr)) {
2743 ret = PTR_ERR(vaddr);
2744 DRM_DEBUG_DRIVER("Could not map object pages! (%d)\n", ret);
2745 return ret;
2746 }
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002747 ctx_obj->mm.dirty = true;
Chris Wilsona3aabe82016-10-04 21:11:26 +01002748
Chris Wilsond2b4b972017-11-10 14:26:33 +00002749 if (engine->default_state) {
2750 /*
2751 * We only want to copy over the template context state;
2752 * skipping over the headers reserved for GuC communication,
2753 * leaving those as zero.
2754 */
2755 const unsigned long start = LRC_HEADER_PAGES * PAGE_SIZE;
2756 void *defaults;
2757
2758 defaults = i915_gem_object_pin_map(engine->default_state,
2759 I915_MAP_WB);
Matthew Auldaaefa062018-03-01 11:46:39 +00002760 if (IS_ERR(defaults)) {
2761 ret = PTR_ERR(defaults);
2762 goto err_unpin_ctx;
2763 }
Chris Wilsond2b4b972017-11-10 14:26:33 +00002764
2765 memcpy(vaddr + start, defaults + start, engine->context_size);
2766 i915_gem_object_unpin_map(engine->default_state);
2767 }
2768
Chris Wilsona3aabe82016-10-04 21:11:26 +01002769 /* The second page of the context object contains some fields which must
2770 * be set up prior to the first execution. */
Chris Wilsond2b4b972017-11-10 14:26:33 +00002771 regs = vaddr + LRC_STATE_PN * PAGE_SIZE;
2772 execlists_init_reg_state(regs, ctx, engine, ring);
2773 if (!engine->default_state)
2774 regs[CTX_CONTEXT_CONTROL + 1] |=
2775 _MASKED_BIT_ENABLE(CTX_CTRL_ENGINE_CTX_RESTORE_INHIBIT);
Thomas Daniel05f0add2018-03-02 18:14:59 +02002776 if (ctx == ctx->i915->preempt_context && INTEL_GEN(engine->i915) < 11)
Chris Wilson517aaff2018-01-23 21:04:12 +00002777 regs[CTX_CONTEXT_CONTROL + 1] |=
2778 _MASKED_BIT_ENABLE(CTX_CTRL_ENGINE_CTX_RESTORE_INHIBIT |
2779 CTX_CTRL_ENGINE_CTX_SAVE_INHIBIT);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002780
Matthew Auldaaefa062018-03-01 11:46:39 +00002781err_unpin_ctx:
Tvrtko Ursulin7d774ca2016-04-12 15:40:42 +01002782 i915_gem_object_unpin_map(ctx_obj);
Matthew Auldaaefa062018-03-01 11:46:39 +00002783 return ret;
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002784}
2785
Chris Wilsone2efd132016-05-24 14:53:34 +01002786static int execlists_context_deferred_alloc(struct i915_gem_context *ctx,
Chris Wilson1fc44d92018-05-17 22:26:32 +01002787 struct intel_engine_cs *engine,
2788 struct intel_context *ce)
Oscar Mateoede7d422014-07-24 17:04:12 +01002789{
Oscar Mateo8c8579172014-07-24 17:04:14 +01002790 struct drm_i915_gem_object *ctx_obj;
Chris Wilsonbf3783e2016-08-15 10:48:54 +01002791 struct i915_vma *vma;
Oscar Mateo8c8579172014-07-24 17:04:14 +01002792 uint32_t context_size;
Chris Wilson7e37f882016-08-02 22:50:21 +01002793 struct intel_ring *ring;
Chris Wilsona89d1f92018-05-02 17:38:39 +01002794 struct i915_timeline *timeline;
Oscar Mateo8c8579172014-07-24 17:04:14 +01002795 int ret;
2796
Chris Wilson1d2a19c2018-01-26 12:18:46 +00002797 if (ce->state)
2798 return 0;
Oscar Mateoede7d422014-07-24 17:04:12 +01002799
Joonas Lahtinen63ffbcd2017-04-28 10:53:36 +03002800 context_size = round_up(engine->context_size, I915_GTT_PAGE_SIZE);
Oscar Mateo8c8579172014-07-24 17:04:14 +01002801
Michel Thierry0b29c752017-09-13 09:56:00 +01002802 /*
2803 * Before the actual start of the context image, we insert a few pages
2804 * for our own use and for sharing with the GuC.
2805 */
2806 context_size += LRC_HEADER_PAGES * PAGE_SIZE;
Alex Daid1675192015-08-12 15:43:43 +01002807
Tvrtko Ursulin12d79d72016-12-01 14:16:37 +00002808 ctx_obj = i915_gem_object_create(ctx->i915, context_size);
Chris Wilson467d3572018-06-11 16:33:32 +01002809 if (IS_ERR(ctx_obj))
2810 return PTR_ERR(ctx_obj);
Oscar Mateo8c8579172014-07-24 17:04:14 +01002811
Chris Wilson82ad6442018-06-05 16:37:58 +01002812 vma = i915_vma_instance(ctx_obj, &ctx->i915->ggtt.vm, NULL);
Chris Wilsonbf3783e2016-08-15 10:48:54 +01002813 if (IS_ERR(vma)) {
2814 ret = PTR_ERR(vma);
2815 goto error_deref_obj;
2816 }
2817
Chris Wilsona89d1f92018-05-02 17:38:39 +01002818 timeline = i915_timeline_create(ctx->i915, ctx->name);
2819 if (IS_ERR(timeline)) {
2820 ret = PTR_ERR(timeline);
2821 goto error_deref_obj;
2822 }
2823
2824 ring = intel_engine_create_ring(engine, timeline, ctx->ring_size);
2825 i915_timeline_put(timeline);
Chris Wilsondca33ec2016-08-02 22:50:20 +01002826 if (IS_ERR(ring)) {
2827 ret = PTR_ERR(ring);
Nick Hoathe84fe802015-09-11 12:53:46 +01002828 goto error_deref_obj;
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002829 }
2830
Chris Wilsondca33ec2016-08-02 22:50:20 +01002831 ret = populate_lr_context(ctx, ctx_obj, engine, ring);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002832 if (ret) {
2833 DRM_DEBUG_DRIVER("Failed to populate LRC: %d\n", ret);
Chris Wilsondca33ec2016-08-02 22:50:20 +01002834 goto error_ring_free;
Oscar Mateo84c23772014-07-24 17:04:15 +01002835 }
2836
Chris Wilsondca33ec2016-08-02 22:50:20 +01002837 ce->ring = ring;
Chris Wilsonbf3783e2016-08-15 10:48:54 +01002838 ce->state = vma;
Oscar Mateoede7d422014-07-24 17:04:12 +01002839
2840 return 0;
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002841
Chris Wilsondca33ec2016-08-02 22:50:20 +01002842error_ring_free:
Chris Wilson7e37f882016-08-02 22:50:21 +01002843 intel_ring_free(ring);
Nick Hoathe84fe802015-09-11 12:53:46 +01002844error_deref_obj:
Chris Wilsonf8c417c2016-07-20 13:31:53 +01002845 i915_gem_object_put(ctx_obj);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002846 return ret;
Oscar Mateoede7d422014-07-24 17:04:12 +01002847}
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002848
Chris Wilson821ed7d2016-09-09 14:11:53 +01002849void intel_lr_context_resume(struct drm_i915_private *dev_priv)
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002850{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00002851 struct intel_engine_cs *engine;
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002852 struct i915_gem_context *ctx;
Akash Goel3b3f1652016-10-13 22:44:48 +05302853 enum intel_engine_id id;
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002854
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002855 /* Because we emit WA_TAIL_DWORDS there may be a disparity
2856 * between our bookkeeping in ce->ring->head and ce->ring->tail and
2857 * that stored in context. As we only write new commands from
2858 * ce->ring->tail onwards, everything before that is junk. If the GPU
2859 * starts reading from its RING_HEAD from the context, it may try to
2860 * execute that junk and die.
2861 *
2862 * So to avoid that we reset the context images upon resume. For
2863 * simplicity, we just zero everything out.
2864 */
Chris Wilson829a0af2017-06-20 12:05:45 +01002865 list_for_each_entry(ctx, &dev_priv->contexts.list, link) {
Akash Goel3b3f1652016-10-13 22:44:48 +05302866 for_each_engine(engine, dev_priv, id) {
Chris Wilsonab82a062018-04-30 14:15:01 +01002867 struct intel_context *ce =
2868 to_intel_context(ctx, engine);
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002869 u32 *reg;
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002870
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002871 if (!ce->state)
2872 continue;
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002873
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002874 reg = i915_gem_object_pin_map(ce->state->obj,
2875 I915_MAP_WB);
2876 if (WARN_ON(IS_ERR(reg)))
2877 continue;
Tvrtko Ursulin7d774ca2016-04-12 15:40:42 +01002878
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002879 reg += LRC_STATE_PN * PAGE_SIZE / sizeof(*reg);
2880 reg[CTX_RING_HEAD+1] = 0;
2881 reg[CTX_RING_TAIL+1] = 0;
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002882
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002883 ce->state->obj->mm.dirty = true;
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002884 i915_gem_object_unpin_map(ce->state->obj);
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002885
Chris Wilsone6ba9992017-04-25 14:00:49 +01002886 intel_ring_reset(ce->ring, 0);
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002887 }
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002888 }
2889}
Chris Wilson2c665552018-04-04 10:33:29 +01002890
2891#if IS_ENABLED(CONFIG_DRM_I915_SELFTEST)
2892#include "selftests/intel_lrc.c"
2893#endif