blob: 7d6da130b184a4a9696d50024428eb96f6b7c8a0 [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"
Peter Antoine3bbaba02015-07-10 20:13:11 +0300139#include "intel_mocs.h"
Oscar Mateo127f1002014-07-24 17:04:11 +0100140
Thomas Daniele981e7b2014-07-24 17:04:39 +0100141#define RING_EXECLIST_QFULL (1 << 0x2)
142#define RING_EXECLIST1_VALID (1 << 0x3)
143#define RING_EXECLIST0_VALID (1 << 0x4)
144#define RING_EXECLIST_ACTIVE_STATUS (3 << 0xE)
145#define RING_EXECLIST1_ACTIVE (1 << 0x11)
146#define RING_EXECLIST0_ACTIVE (1 << 0x12)
147
148#define GEN8_CTX_STATUS_IDLE_ACTIVE (1 << 0)
149#define GEN8_CTX_STATUS_PREEMPTED (1 << 1)
150#define GEN8_CTX_STATUS_ELEMENT_SWITCH (1 << 2)
151#define GEN8_CTX_STATUS_ACTIVE_IDLE (1 << 3)
152#define GEN8_CTX_STATUS_COMPLETE (1 << 4)
153#define GEN8_CTX_STATUS_LITE_RESTORE (1 << 15)
Oscar Mateo8670d6f2014-07-24 17:04:17 +0100154
Chris Wilson70c2a242016-09-09 14:11:46 +0100155#define GEN8_CTX_STATUS_COMPLETED_MASK \
156 (GEN8_CTX_STATUS_ACTIVE_IDLE | \
157 GEN8_CTX_STATUS_PREEMPTED | \
158 GEN8_CTX_STATUS_ELEMENT_SWITCH)
159
Oscar Mateo8670d6f2014-07-24 17:04:17 +0100160#define CTX_LRI_HEADER_0 0x01
161#define CTX_CONTEXT_CONTROL 0x02
162#define CTX_RING_HEAD 0x04
163#define CTX_RING_TAIL 0x06
164#define CTX_RING_BUFFER_START 0x08
165#define CTX_RING_BUFFER_CONTROL 0x0a
166#define CTX_BB_HEAD_U 0x0c
167#define CTX_BB_HEAD_L 0x0e
168#define CTX_BB_STATE 0x10
169#define CTX_SECOND_BB_HEAD_U 0x12
170#define CTX_SECOND_BB_HEAD_L 0x14
171#define CTX_SECOND_BB_STATE 0x16
172#define CTX_BB_PER_CTX_PTR 0x18
173#define CTX_RCS_INDIRECT_CTX 0x1a
174#define CTX_RCS_INDIRECT_CTX_OFFSET 0x1c
175#define CTX_LRI_HEADER_1 0x21
176#define CTX_CTX_TIMESTAMP 0x22
177#define CTX_PDP3_UDW 0x24
178#define CTX_PDP3_LDW 0x26
179#define CTX_PDP2_UDW 0x28
180#define CTX_PDP2_LDW 0x2a
181#define CTX_PDP1_UDW 0x2c
182#define CTX_PDP1_LDW 0x2e
183#define CTX_PDP0_UDW 0x30
184#define CTX_PDP0_LDW 0x32
185#define CTX_LRI_HEADER_2 0x41
186#define CTX_R_PWR_CLK_STATE 0x42
187#define CTX_GPGPU_CSR_BASE_ADDRESS 0x44
188
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +0000189#define CTX_REG(reg_state, pos, reg, val) do { \
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200190 (reg_state)[(pos)+0] = i915_mmio_reg_offset(reg); \
Ville Syrjälä0d925ea2015-11-04 23:20:11 +0200191 (reg_state)[(pos)+1] = (val); \
192} while (0)
193
194#define ASSIGN_CTX_PDP(ppgtt, reg_state, n) do { \
Mika Kuoppalad852c7b2015-06-25 18:35:06 +0300195 const u64 _addr = i915_page_dir_dma_addr((ppgtt), (n)); \
Michel Thierrye5815a22015-04-08 12:13:32 +0100196 reg_state[CTX_PDP ## n ## _UDW+1] = upper_32_bits(_addr); \
197 reg_state[CTX_PDP ## n ## _LDW+1] = lower_32_bits(_addr); \
Ville Syrjälä9244a812015-11-04 23:20:09 +0200198} while (0)
Michel Thierrye5815a22015-04-08 12:13:32 +0100199
Ville Syrjälä9244a812015-11-04 23:20:09 +0200200#define ASSIGN_CTX_PML4(ppgtt, reg_state) do { \
Michel Thierry2dba3232015-07-30 11:06:23 +0100201 reg_state[CTX_PDP0_UDW + 1] = upper_32_bits(px_dma(&ppgtt->pml4)); \
202 reg_state[CTX_PDP0_LDW + 1] = lower_32_bits(px_dma(&ppgtt->pml4)); \
Ville Syrjälä9244a812015-11-04 23:20:09 +0200203} while (0)
Michel Thierry2dba3232015-07-30 11:06:23 +0100204
Michel Thierry71562912016-02-23 10:31:49 +0000205#define GEN8_CTX_RCS_INDIRECT_CTX_OFFSET_DEFAULT 0x17
206#define GEN9_CTX_RCS_INDIRECT_CTX_OFFSET_DEFAULT 0x26
Michel Thierry7bd0a2c2017-06-06 13:30:38 -0700207#define GEN10_CTX_RCS_INDIRECT_CTX_OFFSET_DEFAULT 0x19
Ben Widawsky84b790f2014-07-24 17:04:36 +0100208
Chris Wilson0e93cdd2016-04-29 09:07:06 +0100209/* Typical size of the average request (2 pipecontrols and a MI_BB) */
210#define EXECLISTS_REQUEST_SIZE 64 /* bytes */
211
Chris Wilsona3aabe82016-10-04 21:11:26 +0100212#define WA_TAIL_DWORDS 2
Chris Wilson7e4992a2017-09-28 20:38:59 +0100213#define WA_TAIL_BYTES (sizeof(u32) * WA_TAIL_DWORDS)
Chris Wilsona3aabe82016-10-04 21:11:26 +0100214
Chris Wilsone2efd132016-05-24 14:53:34 +0100215static int execlists_context_deferred_alloc(struct i915_gem_context *ctx,
Chris Wilson978f1e02016-04-28 09:56:54 +0100216 struct intel_engine_cs *engine);
Chris Wilsona3aabe82016-10-04 21:11:26 +0100217static void execlists_init_reg_state(u32 *reg_state,
218 struct i915_gem_context *ctx,
219 struct intel_engine_cs *engine,
220 struct intel_ring *ring);
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000221
Oscar Mateo73e4d072014-07-24 17:04:48 +0100222/**
223 * intel_sanitize_enable_execlists() - sanitize i915.enable_execlists
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +0100224 * @dev_priv: i915 device private
Oscar Mateo73e4d072014-07-24 17:04:48 +0100225 * @enable_execlists: value of i915.enable_execlists module parameter.
226 *
227 * Only certain platforms support Execlists (the prerequisites being
Thomas Daniel27401d12014-12-11 12:48:35 +0000228 * support for Logical Ring Contexts and Aliasing PPGTT or better).
Oscar Mateo73e4d072014-07-24 17:04:48 +0100229 *
230 * Return: 1 if Execlists is supported and has to be enabled.
231 */
Chris Wilsonc0336662016-05-06 15:40:21 +0100232int intel_sanitize_enable_execlists(struct drm_i915_private *dev_priv, int enable_execlists)
Oscar Mateo127f1002014-07-24 17:04:11 +0100233{
Zhiyuan Lva0bd6c32015-08-28 15:41:16 +0800234 /* On platforms with execlist available, vGPU will only
235 * support execlist mode, no ring buffer mode.
236 */
Chris Wilsonc0336662016-05-06 15:40:21 +0100237 if (HAS_LOGICAL_RING_CONTEXTS(dev_priv) && intel_vgpu_active(dev_priv))
Zhiyuan Lva0bd6c32015-08-28 15:41:16 +0800238 return 1;
239
Chris Wilsonc0336662016-05-06 15:40:21 +0100240 if (INTEL_GEN(dev_priv) >= 9)
Damien Lespiau70ee45e2014-11-14 15:05:59 +0000241 return 1;
242
Oscar Mateo127f1002014-07-24 17:04:11 +0100243 if (enable_execlists == 0)
244 return 0;
245
Daniel Vetter5a21b662016-05-24 17:13:53 +0200246 if (HAS_LOGICAL_RING_CONTEXTS(dev_priv) &&
247 USES_PPGTT(dev_priv) &&
Michal Wajdeczko4f044a82017-09-19 19:38:44 +0000248 i915_modparams.use_mmio_flip >= 0)
Oscar Mateo127f1002014-07-24 17:04:11 +0100249 return 1;
250
251 return 0;
252}
Oscar Mateoede7d422014-07-24 17:04:12 +0100253
Tvrtko Ursulinca825802016-01-15 15:10:27 +0000254/**
255 * intel_lr_context_descriptor_update() - calculate & cache the descriptor
256 * descriptor for a pinned context
Tvrtko Ursulinca825802016-01-15 15:10:27 +0000257 * @ctx: Context to work on
Chris Wilson9021ad02016-05-24 14:53:37 +0100258 * @engine: Engine the descriptor will be used with
Tvrtko Ursulinca825802016-01-15 15:10:27 +0000259 *
260 * The context descriptor encodes various attributes of a context,
261 * including its GTT address and some flags. Because it's fairly
262 * expensive to calculate, we'll just do it once and cache the result,
263 * which remains valid until the context is unpinned.
264 *
Daniel Vetter6e5248b2016-07-15 21:48:06 +0200265 * This is what a descriptor looks like, from LSB to MSB::
266 *
Mika Kuoppala2355cf02017-01-27 15:03:09 +0200267 * bits 0-11: flags, GEN8_CTX_* (cached in ctx->desc_template)
Daniel Vetter6e5248b2016-07-15 21:48:06 +0200268 * bits 12-31: LRCA, GTT address of (the HWSP of) this context
269 * bits 32-52: ctx ID, a globally unique tag
270 * bits 53-54: mbz, reserved for use by hardware
271 * bits 55-63: group ID, currently unused and set to 0
Tvrtko Ursulinca825802016-01-15 15:10:27 +0000272 */
273static void
Chris Wilsone2efd132016-05-24 14:53:34 +0100274intel_lr_context_descriptor_update(struct i915_gem_context *ctx,
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +0000275 struct intel_engine_cs *engine)
Tvrtko Ursulinca825802016-01-15 15:10:27 +0000276{
Chris Wilson9021ad02016-05-24 14:53:37 +0100277 struct intel_context *ce = &ctx->engine[engine->id];
Chris Wilson7069b142016-04-28 09:56:52 +0100278 u64 desc;
Tvrtko Ursulinca825802016-01-15 15:10:27 +0000279
Chris Wilson7069b142016-04-28 09:56:52 +0100280 BUILD_BUG_ON(MAX_CONTEXT_HW_ID > (1<<GEN8_CTX_ID_WIDTH));
281
Mika Kuoppala2355cf02017-01-27 15:03:09 +0200282 desc = ctx->desc_template; /* bits 0-11 */
Michel Thierry0b29c752017-09-13 09:56:00 +0100283 desc |= i915_ggtt_offset(ce->state) + LRC_HEADER_PAGES * PAGE_SIZE;
Chris Wilson9021ad02016-05-24 14:53:37 +0100284 /* bits 12-31 */
Chris Wilson7069b142016-04-28 09:56:52 +0100285 desc |= (u64)ctx->hw_id << GEN8_CTX_ID_SHIFT; /* bits 32-52 */
Tvrtko Ursulinca825802016-01-15 15:10:27 +0000286
Chris Wilson9021ad02016-05-24 14:53:37 +0100287 ce->lrc_desc = desc;
Tvrtko Ursulinca825802016-01-15 15:10:27 +0000288}
289
Chris Wilson27606fd2017-09-16 21:44:13 +0100290static struct i915_priolist *
291lookup_priolist(struct intel_engine_cs *engine,
292 struct i915_priotree *pt,
293 int prio)
Chris Wilson08dd3e12017-09-16 21:44:12 +0100294{
Mika Kuoppalab620e872017-09-22 15:43:03 +0300295 struct intel_engine_execlists * const execlists = &engine->execlists;
Chris Wilson08dd3e12017-09-16 21:44:12 +0100296 struct i915_priolist *p;
297 struct rb_node **parent, *rb;
298 bool first = true;
299
Mika Kuoppalab620e872017-09-22 15:43:03 +0300300 if (unlikely(execlists->no_priolist))
Chris Wilson08dd3e12017-09-16 21:44:12 +0100301 prio = I915_PRIORITY_NORMAL;
302
303find_priolist:
304 /* most positive priority is scheduled first, equal priorities fifo */
305 rb = NULL;
Mika Kuoppalab620e872017-09-22 15:43:03 +0300306 parent = &execlists->queue.rb_node;
Chris Wilson08dd3e12017-09-16 21:44:12 +0100307 while (*parent) {
308 rb = *parent;
309 p = rb_entry(rb, typeof(*p), node);
310 if (prio > p->priority) {
311 parent = &rb->rb_left;
312 } else if (prio < p->priority) {
313 parent = &rb->rb_right;
314 first = false;
315 } else {
Chris Wilson27606fd2017-09-16 21:44:13 +0100316 return p;
Chris Wilson08dd3e12017-09-16 21:44:12 +0100317 }
318 }
319
320 if (prio == I915_PRIORITY_NORMAL) {
Mika Kuoppalab620e872017-09-22 15:43:03 +0300321 p = &execlists->default_priolist;
Chris Wilson08dd3e12017-09-16 21:44:12 +0100322 } else {
323 p = kmem_cache_alloc(engine->i915->priorities, GFP_ATOMIC);
324 /* Convert an allocation failure to a priority bump */
325 if (unlikely(!p)) {
326 prio = I915_PRIORITY_NORMAL; /* recurses just once */
327
328 /* To maintain ordering with all rendering, after an
329 * allocation failure we have to disable all scheduling.
330 * Requests will then be executed in fifo, and schedule
331 * will ensure that dependencies are emitted in fifo.
332 * There will be still some reordering with existing
333 * requests, so if userspace lied about their
334 * dependencies that reordering may be visible.
335 */
Mika Kuoppalab620e872017-09-22 15:43:03 +0300336 execlists->no_priolist = true;
Chris Wilson08dd3e12017-09-16 21:44:12 +0100337 goto find_priolist;
338 }
339 }
340
341 p->priority = prio;
Chris Wilson27606fd2017-09-16 21:44:13 +0100342 INIT_LIST_HEAD(&p->requests);
Chris Wilson08dd3e12017-09-16 21:44:12 +0100343 rb_link_node(&p->node, rb, parent);
Mika Kuoppalab620e872017-09-22 15:43:03 +0300344 rb_insert_color(&p->node, &execlists->queue);
Chris Wilson08dd3e12017-09-16 21:44:12 +0100345
Chris Wilson08dd3e12017-09-16 21:44:12 +0100346 if (first)
Mika Kuoppalab620e872017-09-22 15:43:03 +0300347 execlists->first = &p->node;
Chris Wilson08dd3e12017-09-16 21:44:12 +0100348
Chris Wilson27606fd2017-09-16 21:44:13 +0100349 return ptr_pack_bits(p, first, 1);
Chris Wilson08dd3e12017-09-16 21:44:12 +0100350}
351
Chris Wilson7e4992a2017-09-28 20:38:59 +0100352static void unwind_wa_tail(struct drm_i915_gem_request *rq)
353{
354 rq->tail = intel_ring_wrap(rq->ring, rq->wa_tail - WA_TAIL_BYTES);
355 assert_ring_tail_valid(rq->ring, rq->tail);
356}
357
358static void unwind_incomplete_requests(struct intel_engine_cs *engine)
359{
360 struct drm_i915_gem_request *rq, *rn;
Michał Winiarski097a9482017-09-28 20:39:01 +0100361 struct i915_priolist *uninitialized_var(p);
362 int last_prio = I915_PRIORITY_INVALID;
Chris Wilson7e4992a2017-09-28 20:38:59 +0100363
364 lockdep_assert_held(&engine->timeline->lock);
365
366 list_for_each_entry_safe_reverse(rq, rn,
367 &engine->timeline->requests,
368 link) {
Chris Wilson7e4992a2017-09-28 20:38:59 +0100369 if (i915_gem_request_completed(rq))
370 return;
371
372 __i915_gem_request_unsubmit(rq);
373 unwind_wa_tail(rq);
374
Michał Winiarski097a9482017-09-28 20:39:01 +0100375 GEM_BUG_ON(rq->priotree.priority == I915_PRIORITY_INVALID);
376 if (rq->priotree.priority != last_prio) {
377 p = lookup_priolist(engine,
378 &rq->priotree,
379 rq->priotree.priority);
380 p = ptr_mask_bits(p, 1);
381
382 last_prio = rq->priotree.priority;
383 }
384
385 list_add(&rq->priotree.link, &p->requests);
Chris Wilson7e4992a2017-09-28 20:38:59 +0100386 }
387}
388
Chris Wilsonbbd6c472016-09-09 14:11:45 +0100389static inline void
390execlists_context_status_change(struct drm_i915_gem_request *rq,
391 unsigned long status)
Ben Widawsky84b790f2014-07-24 17:04:36 +0100392{
Chris Wilsonbbd6c472016-09-09 14:11:45 +0100393 /*
394 * Only used when GVT-g is enabled now. When GVT-g is disabled,
395 * The compiler should eliminate this function as dead-code.
396 */
397 if (!IS_ENABLED(CONFIG_DRM_I915_GVT))
398 return;
Ben Widawsky84b790f2014-07-24 17:04:36 +0100399
Changbin Du3fc03062017-03-13 10:47:11 +0800400 atomic_notifier_call_chain(&rq->engine->context_status_notifier,
401 status, rq);
Ben Widawsky84b790f2014-07-24 17:04:36 +0100402}
403
Tvrtko Ursulinc6a2ac72016-02-26 16:58:32 +0000404static void
405execlists_update_context_pdps(struct i915_hw_ppgtt *ppgtt, u32 *reg_state)
406{
407 ASSIGN_CTX_PDP(ppgtt, reg_state, 3);
408 ASSIGN_CTX_PDP(ppgtt, reg_state, 2);
409 ASSIGN_CTX_PDP(ppgtt, reg_state, 1);
410 ASSIGN_CTX_PDP(ppgtt, reg_state, 0);
411}
412
Chris Wilson70c2a242016-09-09 14:11:46 +0100413static u64 execlists_update_context(struct drm_i915_gem_request *rq)
Oscar Mateoae1250b2014-07-24 17:04:37 +0100414{
Chris Wilson70c2a242016-09-09 14:11:46 +0100415 struct intel_context *ce = &rq->ctx->engine[rq->engine->id];
Zhi Wang04da8112017-02-06 18:37:16 +0800416 struct i915_hw_ppgtt *ppgtt =
417 rq->ctx->ppgtt ?: rq->i915->mm.aliasing_ppgtt;
Chris Wilson70c2a242016-09-09 14:11:46 +0100418 u32 *reg_state = ce->lrc_reg_state;
Oscar Mateoae1250b2014-07-24 17:04:37 +0100419
Chris Wilsone6ba9992017-04-25 14:00:49 +0100420 reg_state[CTX_RING_TAIL+1] = intel_ring_set_tail(rq->ring, rq->tail);
Oscar Mateoae1250b2014-07-24 17:04:37 +0100421
Tvrtko Ursulinc6a2ac72016-02-26 16:58:32 +0000422 /* True 32b PPGTT with dynamic page allocation: update PDP
423 * registers and point the unallocated PDPs to scratch page.
424 * PML4 is allocated during ppgtt init, so this is not needed
425 * in 48-bit mode.
426 */
Chris Wilson949e8ab2017-02-09 14:40:36 +0000427 if (ppgtt && !i915_vm_is_48bit(&ppgtt->base))
Tvrtko Ursulinc6a2ac72016-02-26 16:58:32 +0000428 execlists_update_context_pdps(ppgtt, reg_state);
Chris Wilson70c2a242016-09-09 14:11:46 +0100429
430 return ce->lrc_desc;
Oscar Mateoae1250b2014-07-24 17:04:37 +0100431}
432
Chris Wilson70c2a242016-09-09 14:11:46 +0100433static void execlists_submit_ports(struct intel_engine_cs *engine)
Chris Wilsonbbd6c472016-09-09 14:11:45 +0100434{
Mika Kuoppalab620e872017-09-22 15:43:03 +0300435 struct execlist_port *port = engine->execlists.port;
Chris Wilsonbbd6c472016-09-09 14:11:45 +0100436 u32 __iomem *elsp =
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100437 engine->i915->regs + i915_mmio_reg_offset(RING_ELSP(engine));
438 unsigned int n;
Chris Wilsonbbd6c472016-09-09 14:11:45 +0100439
Mika Kuoppala76e70082017-09-22 15:43:07 +0300440 for (n = execlists_num_ports(&engine->execlists); n--; ) {
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100441 struct drm_i915_gem_request *rq;
442 unsigned int count;
443 u64 desc;
Chris Wilson70c2a242016-09-09 14:11:46 +0100444
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100445 rq = port_unpack(&port[n], &count);
446 if (rq) {
447 GEM_BUG_ON(count > !n);
448 if (!count++)
449 execlists_context_status_change(rq, INTEL_CONTEXT_SCHEDULE_IN);
450 port_set(&port[n], port_pack(rq, count));
451 desc = execlists_update_context(rq);
452 GEM_DEBUG_EXEC(port[n].context_id = upper_32_bits(desc));
453 } else {
454 GEM_BUG_ON(!n);
455 desc = 0;
456 }
457
458 writel(upper_32_bits(desc), elsp);
459 writel(lower_32_bits(desc), elsp);
Chris Wilsonbbd6c472016-09-09 14:11:45 +0100460 }
Chris Wilsonbbd6c472016-09-09 14:11:45 +0100461}
462
Chris Wilson70c2a242016-09-09 14:11:46 +0100463static bool ctx_single_port_submission(const struct i915_gem_context *ctx)
Ben Widawsky84b790f2014-07-24 17:04:36 +0100464{
Chris Wilson70c2a242016-09-09 14:11:46 +0100465 return (IS_ENABLED(CONFIG_DRM_I915_GVT) &&
Chris Wilson60958682016-12-31 11:20:11 +0000466 i915_gem_context_force_single_submission(ctx));
Ben Widawsky84b790f2014-07-24 17:04:36 +0100467}
468
Chris Wilson70c2a242016-09-09 14:11:46 +0100469static bool can_merge_ctx(const struct i915_gem_context *prev,
470 const struct i915_gem_context *next)
Michel Thierryacdd8842014-07-24 17:04:38 +0100471{
Chris Wilson70c2a242016-09-09 14:11:46 +0100472 if (prev != next)
473 return false;
Thomas Daniele981e7b2014-07-24 17:04:39 +0100474
Chris Wilson70c2a242016-09-09 14:11:46 +0100475 if (ctx_single_port_submission(prev))
476 return false;
Michel Thierryacdd8842014-07-24 17:04:38 +0100477
Chris Wilson70c2a242016-09-09 14:11:46 +0100478 return true;
479}
Peter Antoine779949f2015-05-11 16:03:27 +0100480
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100481static void port_assign(struct execlist_port *port,
482 struct drm_i915_gem_request *rq)
483{
484 GEM_BUG_ON(rq == port_request(port));
485
486 if (port_isset(port))
487 i915_gem_request_put(port_request(port));
488
489 port_set(port, port_pack(i915_gem_request_get(rq), port_count(port)));
490}
491
Chris Wilson70c2a242016-09-09 14:11:46 +0100492static void execlists_dequeue(struct intel_engine_cs *engine)
493{
Chris Wilson20311bd2016-11-14 20:41:03 +0000494 struct drm_i915_gem_request *last;
Mika Kuoppala7a62cc62017-09-22 15:43:06 +0300495 struct intel_engine_execlists * const execlists = &engine->execlists;
496 struct execlist_port *port = execlists->port;
Mika Kuoppala76e70082017-09-22 15:43:07 +0300497 const struct execlist_port * const last_port =
498 &execlists->port[execlists->port_mask];
Chris Wilson20311bd2016-11-14 20:41:03 +0000499 struct rb_node *rb;
Chris Wilson70c2a242016-09-09 14:11:46 +0100500 bool submit = false;
Michel Thierryacdd8842014-07-24 17:04:38 +0100501
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100502 last = port_request(port);
Chris Wilson70c2a242016-09-09 14:11:46 +0100503 if (last)
504 /* WaIdleLiteRestore:bdw,skl
505 * Apply the wa NOOPs to prevent ring:HEAD == req:TAIL
Chris Wilson9b81d552016-10-28 13:58:50 +0100506 * as we resubmit the request. See gen8_emit_breadcrumb()
Chris Wilson70c2a242016-09-09 14:11:46 +0100507 * for where we prepare the padding after the end of the
508 * request.
Michel Thierry53292cd2015-04-15 18:11:33 +0100509 */
Chris Wilson70c2a242016-09-09 14:11:46 +0100510 last->tail = last->wa_tail;
511
Chris Wilson70c2a242016-09-09 14:11:46 +0100512 /* Hardware submission is through 2 ports. Conceptually each port
513 * has a (RING_START, RING_HEAD, RING_TAIL) tuple. RING_START is
514 * static for a context, and unique to each, so we only execute
515 * requests belonging to a single context from each ring. RING_HEAD
516 * is maintained by the CS in the context image, it marks the place
517 * where it got up to last time, and through RING_TAIL we tell the CS
518 * where we want to execute up to this time.
519 *
520 * In this list the requests are in order of execution. Consecutive
521 * requests from the same context are adjacent in the ringbuffer. We
522 * can combine these requests into a single RING_TAIL update:
523 *
524 * RING_HEAD...req1...req2
525 * ^- RING_TAIL
526 * since to execute req2 the CS must first execute req1.
527 *
528 * Our goal then is to point each port to the end of a consecutive
529 * sequence of requests as being the most optimal (fewest wake ups
530 * and context switches) submission.
531 */
532
Tvrtko Ursulin9f7886d2017-03-21 10:55:11 +0000533 spin_lock_irq(&engine->timeline->lock);
Mika Kuoppala7a62cc62017-09-22 15:43:06 +0300534 rb = execlists->first;
535 GEM_BUG_ON(rb_first(&execlists->queue) != rb);
Chris Wilson20311bd2016-11-14 20:41:03 +0000536 while (rb) {
Chris Wilson6c067572017-05-17 13:10:03 +0100537 struct i915_priolist *p = rb_entry(rb, typeof(*p), node);
538 struct drm_i915_gem_request *rq, *rn;
Chris Wilson20311bd2016-11-14 20:41:03 +0000539
Chris Wilson6c067572017-05-17 13:10:03 +0100540 list_for_each_entry_safe(rq, rn, &p->requests, priotree.link) {
541 /*
542 * Can we combine this request with the current port?
543 * It has to be the same context/ringbuffer and not
544 * have any exceptions (e.g. GVT saying never to
545 * combine contexts).
546 *
547 * If we can combine the requests, we can execute both
548 * by updating the RING_TAIL to point to the end of the
549 * second request, and so we never need to tell the
550 * hardware about the first.
Chris Wilson70c2a242016-09-09 14:11:46 +0100551 */
Chris Wilson6c067572017-05-17 13:10:03 +0100552 if (last && !can_merge_ctx(rq->ctx, last->ctx)) {
553 /*
554 * If we are on the second port and cannot
555 * combine this request with the last, then we
556 * are done.
557 */
Mika Kuoppala76e70082017-09-22 15:43:07 +0300558 if (port == last_port) {
Chris Wilson6c067572017-05-17 13:10:03 +0100559 __list_del_many(&p->requests,
560 &rq->priotree.link);
561 goto done;
562 }
Chris Wilson70c2a242016-09-09 14:11:46 +0100563
Chris Wilson6c067572017-05-17 13:10:03 +0100564 /*
565 * If GVT overrides us we only ever submit
566 * port[0], leaving port[1] empty. Note that we
567 * also have to be careful that we don't queue
568 * the same context (even though a different
569 * request) to the second port.
570 */
571 if (ctx_single_port_submission(last->ctx) ||
572 ctx_single_port_submission(rq->ctx)) {
573 __list_del_many(&p->requests,
574 &rq->priotree.link);
575 goto done;
576 }
Chris Wilson70c2a242016-09-09 14:11:46 +0100577
Chris Wilson6c067572017-05-17 13:10:03 +0100578 GEM_BUG_ON(last->ctx == rq->ctx);
Chris Wilson70c2a242016-09-09 14:11:46 +0100579
Chris Wilson6c067572017-05-17 13:10:03 +0100580 if (submit)
581 port_assign(port, last);
582 port++;
Mika Kuoppala7a62cc62017-09-22 15:43:06 +0300583
584 GEM_BUG_ON(port_isset(port));
Chris Wilson6c067572017-05-17 13:10:03 +0100585 }
586
587 INIT_LIST_HEAD(&rq->priotree.link);
588 rq->priotree.priority = INT_MAX;
589
590 __i915_gem_request_submit(rq);
Mika Kuoppala7a62cc62017-09-22 15:43:06 +0300591 trace_i915_gem_request_in(rq, port_index(port, execlists));
Chris Wilson6c067572017-05-17 13:10:03 +0100592 last = rq;
593 submit = true;
Chris Wilson70c2a242016-09-09 14:11:46 +0100594 }
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000595
Chris Wilson20311bd2016-11-14 20:41:03 +0000596 rb = rb_next(rb);
Mika Kuoppala7a62cc62017-09-22 15:43:06 +0300597 rb_erase(&p->node, &execlists->queue);
Chris Wilson6c067572017-05-17 13:10:03 +0100598 INIT_LIST_HEAD(&p->requests);
599 if (p->priority != I915_PRIORITY_NORMAL)
Chris Wilsonc5cf9a92017-05-17 13:10:04 +0100600 kmem_cache_free(engine->i915->priorities, p);
Michel Thierry53292cd2015-04-15 18:11:33 +0100601 }
Chris Wilson6c067572017-05-17 13:10:03 +0100602done:
Mika Kuoppala7a62cc62017-09-22 15:43:06 +0300603 execlists->first = rb;
Chris Wilson6c067572017-05-17 13:10:03 +0100604 if (submit)
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100605 port_assign(port, last);
Tvrtko Ursulin9f7886d2017-03-21 10:55:11 +0000606 spin_unlock_irq(&engine->timeline->lock);
Chris Wilson70c2a242016-09-09 14:11:46 +0100607
608 if (submit)
609 execlists_submit_ports(engine);
Michel Thierryacdd8842014-07-24 17:04:38 +0100610}
611
Chris Wilson3f9e6cd2017-09-25 13:49:27 +0100612static void
613execlist_cancel_port_requests(struct intel_engine_execlists *execlists)
Mika Kuoppalacf4591d2017-09-22 15:43:05 +0300614{
Chris Wilson3f9e6cd2017-09-25 13:49:27 +0100615 struct execlist_port *port = execlists->port;
616 unsigned int num_ports = ARRAY_SIZE(execlists->port);
Mika Kuoppalacf4591d2017-09-22 15:43:05 +0300617
Chris Wilson3f9e6cd2017-09-25 13:49:27 +0100618 while (num_ports-- && port_isset(port)) {
Chris Wilson7e44fc22017-09-26 11:17:19 +0100619 struct drm_i915_gem_request *rq = port_request(port);
620
621 execlists_context_status_change(rq, INTEL_CONTEXT_SCHEDULE_OUT);
622 i915_gem_request_put(rq);
623
Chris Wilson3f9e6cd2017-09-25 13:49:27 +0100624 memset(port, 0, sizeof(*port));
625 port++;
626 }
Mika Kuoppalacf4591d2017-09-22 15:43:05 +0300627}
628
Chris Wilson27a5f612017-09-15 18:31:00 +0100629static void execlists_cancel_requests(struct intel_engine_cs *engine)
630{
Mika Kuoppalab620e872017-09-22 15:43:03 +0300631 struct intel_engine_execlists * const execlists = &engine->execlists;
Chris Wilson27a5f612017-09-15 18:31:00 +0100632 struct drm_i915_gem_request *rq, *rn;
633 struct rb_node *rb;
634 unsigned long flags;
Chris Wilson27a5f612017-09-15 18:31:00 +0100635
636 spin_lock_irqsave(&engine->timeline->lock, flags);
637
638 /* Cancel the requests on the HW and clear the ELSP tracker. */
Mika Kuoppalacf4591d2017-09-22 15:43:05 +0300639 execlist_cancel_port_requests(execlists);
Chris Wilson27a5f612017-09-15 18:31:00 +0100640
641 /* Mark all executing requests as skipped. */
642 list_for_each_entry(rq, &engine->timeline->requests, link) {
643 GEM_BUG_ON(!rq->global_seqno);
644 if (!i915_gem_request_completed(rq))
645 dma_fence_set_error(&rq->fence, -EIO);
646 }
647
648 /* Flush the queued requests to the timeline list (for retiring). */
Mika Kuoppalab620e872017-09-22 15:43:03 +0300649 rb = execlists->first;
Chris Wilson27a5f612017-09-15 18:31:00 +0100650 while (rb) {
651 struct i915_priolist *p = rb_entry(rb, typeof(*p), node);
652
653 list_for_each_entry_safe(rq, rn, &p->requests, priotree.link) {
654 INIT_LIST_HEAD(&rq->priotree.link);
655 rq->priotree.priority = INT_MAX;
656
657 dma_fence_set_error(&rq->fence, -EIO);
658 __i915_gem_request_submit(rq);
659 }
660
661 rb = rb_next(rb);
Mika Kuoppalab620e872017-09-22 15:43:03 +0300662 rb_erase(&p->node, &execlists->queue);
Chris Wilson27a5f612017-09-15 18:31:00 +0100663 INIT_LIST_HEAD(&p->requests);
664 if (p->priority != I915_PRIORITY_NORMAL)
665 kmem_cache_free(engine->i915->priorities, p);
666 }
667
668 /* Remaining _unready_ requests will be nop'ed when submitted */
669
Mika Kuoppalacf4591d2017-09-22 15:43:05 +0300670
Mika Kuoppalab620e872017-09-22 15:43:03 +0300671 execlists->queue = RB_ROOT;
672 execlists->first = NULL;
Chris Wilson3f9e6cd2017-09-25 13:49:27 +0100673 GEM_BUG_ON(port_isset(execlists->port));
Chris Wilson27a5f612017-09-15 18:31:00 +0100674
675 /*
676 * The port is checked prior to scheduling a tasklet, but
677 * just in case we have suspended the tasklet to do the
678 * wedging make sure that when it wakes, it decides there
679 * is no work to do by clearing the irq_posted bit.
680 */
681 clear_bit(ENGINE_IRQ_EXECLIST, &engine->irq_posted);
682
683 spin_unlock_irqrestore(&engine->timeline->lock, flags);
684}
685
Chris Wilson816ee792017-01-24 11:00:03 +0000686static bool execlists_elsp_ready(const struct intel_engine_cs *engine)
Ben Widawsky91a41032016-01-05 10:30:07 -0800687{
Mika Kuoppalab620e872017-09-22 15:43:03 +0300688 const struct execlist_port *port = engine->execlists.port;
Ben Widawsky91a41032016-01-05 10:30:07 -0800689
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100690 return port_count(&port[0]) + port_count(&port[1]) < 2;
Ben Widawsky91a41032016-01-05 10:30:07 -0800691}
692
Daniel Vetter6e5248b2016-07-15 21:48:06 +0200693/*
Oscar Mateo73e4d072014-07-24 17:04:48 +0100694 * Check the unread Context Status Buffers and manage the submission of new
695 * contexts to the ELSP accordingly.
696 */
Tvrtko Ursulin27af5ee2016-04-04 12:11:56 +0100697static void intel_lrc_irq_handler(unsigned long data)
Thomas Daniele981e7b2014-07-24 17:04:39 +0100698{
Mika Kuoppalab620e872017-09-22 15:43:03 +0300699 struct intel_engine_cs * const engine = (struct intel_engine_cs *)data;
700 struct intel_engine_execlists * const execlists = &engine->execlists;
701 struct execlist_port *port = execlists->port;
Chris Wilsonc0336662016-05-06 15:40:21 +0100702 struct drm_i915_private *dev_priv = engine->i915;
Thomas Daniele981e7b2014-07-24 17:04:39 +0100703
Chris Wilson48921262017-04-11 18:58:50 +0100704 /* We can skip acquiring intel_runtime_pm_get() here as it was taken
705 * on our behalf by the request (see i915_gem_mark_busy()) and it will
706 * not be relinquished until the device is idle (see
707 * i915_gem_idle_work_handler()). As a precaution, we make sure
708 * that all ELSP are drained i.e. we have processed the CSB,
709 * before allowing ourselves to idle and calling intel_runtime_pm_put().
710 */
711 GEM_BUG_ON(!dev_priv->gt.awake);
712
Mika Kuoppalab620e872017-09-22 15:43:03 +0300713 intel_uncore_forcewake_get(dev_priv, execlists->fw_domains);
Tvrtko Ursulinc6a2ac72016-02-26 16:58:32 +0000714
Chris Wilson899f6202017-03-21 11:33:20 +0000715 /* Prefer doing test_and_clear_bit() as a two stage operation to avoid
716 * imposing the cost of a locked atomic transaction when submitting a
717 * new request (outside of the context-switch interrupt).
718 */
719 while (test_bit(ENGINE_IRQ_EXECLIST, &engine->irq_posted)) {
Chris Wilson6d2cb5a2017-09-13 14:35:34 +0100720 /* The HWSP contains a (cacheable) mirror of the CSB */
721 const u32 *buf =
722 &engine->status_page.page_addr[I915_HWS_CSB_BUF0_INDEX];
Chris Wilson4af0d722017-03-25 20:10:53 +0000723 unsigned int head, tail;
Thomas Daniele981e7b2014-07-24 17:04:39 +0100724
Chris Wilson6d2cb5a2017-09-13 14:35:34 +0100725 /* However GVT emulation depends upon intercepting CSB mmio */
Mika Kuoppalab620e872017-09-22 15:43:03 +0300726 if (unlikely(execlists->csb_use_mmio)) {
Chris Wilson6d2cb5a2017-09-13 14:35:34 +0100727 buf = (u32 * __force)
728 (dev_priv->regs + i915_mmio_reg_offset(RING_CONTEXT_STATUS_BUF_LO(engine, 0)));
Mika Kuoppalab620e872017-09-22 15:43:03 +0300729 execlists->csb_head = -1; /* force mmio read of CSB ptrs */
Chris Wilson6d2cb5a2017-09-13 14:35:34 +0100730 }
731
Chris Wilson2e70b8c2017-03-23 13:48:03 +0000732 /* The write will be ordered by the uncached read (itself
733 * a memory barrier), so we do not need another in the form
734 * of a locked instruction. The race between the interrupt
735 * handler and the split test/clear is harmless as we order
736 * our clear before the CSB read. If the interrupt arrived
737 * first between the test and the clear, we read the updated
738 * CSB and clear the bit. If the interrupt arrives as we read
739 * the CSB or later (i.e. after we had cleared the bit) the bit
740 * is set and we do a new loop.
741 */
742 __clear_bit(ENGINE_IRQ_EXECLIST, &engine->irq_posted);
Mika Kuoppalab620e872017-09-22 15:43:03 +0300743 if (unlikely(execlists->csb_head == -1)) { /* following a reset */
Chris Wilson767a9832017-09-13 09:56:05 +0100744 head = readl(dev_priv->regs + i915_mmio_reg_offset(RING_CONTEXT_STATUS_PTR(engine)));
745 tail = GEN8_CSB_WRITE_PTR(head);
746 head = GEN8_CSB_READ_PTR(head);
Mika Kuoppalab620e872017-09-22 15:43:03 +0300747 execlists->csb_head = head;
Chris Wilson767a9832017-09-13 09:56:05 +0100748 } else {
749 const int write_idx =
750 intel_hws_csb_write_index(dev_priv) -
751 I915_HWS_CSB_BUF0_INDEX;
752
Mika Kuoppalab620e872017-09-22 15:43:03 +0300753 head = execlists->csb_head;
Chris Wilson767a9832017-09-13 09:56:05 +0100754 tail = READ_ONCE(buf[write_idx]);
755 }
Mika Kuoppalab620e872017-09-22 15:43:03 +0300756
Chris Wilson4af0d722017-03-25 20:10:53 +0000757 while (head != tail) {
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100758 struct drm_i915_gem_request *rq;
Chris Wilson4af0d722017-03-25 20:10:53 +0000759 unsigned int status;
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100760 unsigned int count;
Chris Wilsona37951a2017-01-24 11:00:06 +0000761
Chris Wilson4af0d722017-03-25 20:10:53 +0000762 if (++head == GEN8_CSB_ENTRIES)
763 head = 0;
Thomas Daniele981e7b2014-07-24 17:04:39 +0100764
Chris Wilson2ffe80a2017-02-06 17:05:02 +0000765 /* We are flying near dragons again.
766 *
767 * We hold a reference to the request in execlist_port[]
768 * but no more than that. We are operating in softirq
769 * context and so cannot hold any mutex or sleep. That
770 * prevents us stopping the requests we are processing
771 * in port[] from being retired simultaneously (the
772 * breadcrumb will be complete before we see the
773 * context-switch). As we only hold the reference to the
774 * request, any pointer chasing underneath the request
775 * is subject to a potential use-after-free. Thus we
776 * store all of the bookkeeping within port[] as
777 * required, and avoid using unguarded pointers beneath
778 * request itself. The same applies to the atomic
779 * status notifier.
780 */
781
Chris Wilson6d2cb5a2017-09-13 14:35:34 +0100782 status = READ_ONCE(buf[2 * head]); /* maybe mmio! */
Chris Wilson70c2a242016-09-09 14:11:46 +0100783 if (!(status & GEN8_CTX_STATUS_COMPLETED_MASK))
784 continue;
Thomas Daniele981e7b2014-07-24 17:04:39 +0100785
Chris Wilson86aa7e72017-01-23 11:31:32 +0000786 /* Check the context/desc id for this event matches */
Chris Wilson6d2cb5a2017-09-13 14:35:34 +0100787 GEM_DEBUG_BUG_ON(buf[2 * head + 1] != port->context_id);
Chris Wilson86aa7e72017-01-23 11:31:32 +0000788
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100789 rq = port_unpack(port, &count);
790 GEM_BUG_ON(count == 0);
791 if (--count == 0) {
Chris Wilson70c2a242016-09-09 14:11:46 +0100792 GEM_BUG_ON(status & GEN8_CTX_STATUS_PREEMPTED);
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100793 GEM_BUG_ON(!i915_gem_request_completed(rq));
794 execlists_context_status_change(rq, INTEL_CONTEXT_SCHEDULE_OUT);
Thomas Daniele981e7b2014-07-24 17:04:39 +0100795
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100796 trace_i915_gem_request_out(rq);
797 i915_gem_request_put(rq);
798
Mika Kuoppala7a62cc62017-09-22 15:43:06 +0300799 execlists_port_complete(execlists, port);
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100800 } else {
801 port_set(port, port_pack(rq, count));
Chris Wilson70c2a242016-09-09 14:11:46 +0100802 }
Tvrtko Ursulinc6a2ac72016-02-26 16:58:32 +0000803
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100804 /* After the final element, the hw should be idle */
805 GEM_BUG_ON(port_count(port) == 0 &&
Chris Wilson70c2a242016-09-09 14:11:46 +0100806 !(status & GEN8_CTX_STATUS_ACTIVE_IDLE));
Chris Wilson4af0d722017-03-25 20:10:53 +0000807 }
Tvrtko Ursulin26720ab2016-03-17 12:59:46 +0000808
Mika Kuoppalab620e872017-09-22 15:43:03 +0300809 if (head != execlists->csb_head) {
810 execlists->csb_head = head;
Chris Wilson767a9832017-09-13 09:56:05 +0100811 writel(_MASKED_FIELD(GEN8_CSB_READ_PTR_MASK, head << 8),
812 dev_priv->regs + i915_mmio_reg_offset(RING_CONTEXT_STATUS_PTR(engine)));
813 }
Tvrtko Ursulin26720ab2016-03-17 12:59:46 +0000814 }
815
Chris Wilson70c2a242016-09-09 14:11:46 +0100816 if (execlists_elsp_ready(engine))
817 execlists_dequeue(engine);
Tvrtko Ursulin26720ab2016-03-17 12:59:46 +0000818
Mika Kuoppalab620e872017-09-22 15:43:03 +0300819 intel_uncore_forcewake_put(dev_priv, execlists->fw_domains);
Thomas Daniele981e7b2014-07-24 17:04:39 +0100820}
821
Chris Wilson27606fd2017-09-16 21:44:13 +0100822static void insert_request(struct intel_engine_cs *engine,
823 struct i915_priotree *pt,
824 int prio)
825{
826 struct i915_priolist *p = lookup_priolist(engine, pt, prio);
827
828 list_add_tail(&pt->link, &ptr_mask_bits(p, 1)->requests);
829 if (ptr_unmask_bits(p, 1) && execlists_elsp_ready(engine))
Mika Kuoppalab620e872017-09-22 15:43:03 +0300830 tasklet_hi_schedule(&engine->execlists.irq_tasklet);
Chris Wilson27606fd2017-09-16 21:44:13 +0100831}
832
Chris Wilsonf4ea6bd2016-08-02 22:50:32 +0100833static void execlists_submit_request(struct drm_i915_gem_request *request)
Michel Thierryacdd8842014-07-24 17:04:38 +0100834{
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +0000835 struct intel_engine_cs *engine = request->engine;
Chris Wilson5590af32016-09-09 14:11:54 +0100836 unsigned long flags;
Michel Thierryacdd8842014-07-24 17:04:38 +0100837
Chris Wilson663f71e2016-11-14 20:41:00 +0000838 /* Will be called from irq-context when using foreign fences. */
839 spin_lock_irqsave(&engine->timeline->lock, flags);
Michel Thierryacdd8842014-07-24 17:04:38 +0100840
Chris Wilson27606fd2017-09-16 21:44:13 +0100841 insert_request(engine, &request->priotree, request->priotree.priority);
Michel Thierryacdd8842014-07-24 17:04:38 +0100842
Mika Kuoppalab620e872017-09-22 15:43:03 +0300843 GEM_BUG_ON(!engine->execlists.first);
Chris Wilson6c067572017-05-17 13:10:03 +0100844 GEM_BUG_ON(list_empty(&request->priotree.link));
845
Chris Wilson663f71e2016-11-14 20:41:00 +0000846 spin_unlock_irqrestore(&engine->timeline->lock, flags);
Michel Thierryacdd8842014-07-24 17:04:38 +0100847}
848
Chris Wilson20311bd2016-11-14 20:41:03 +0000849static struct intel_engine_cs *
850pt_lock_engine(struct i915_priotree *pt, struct intel_engine_cs *locked)
851{
Chris Wilsona79a5242017-03-27 21:21:43 +0100852 struct intel_engine_cs *engine =
853 container_of(pt, struct drm_i915_gem_request, priotree)->engine;
Chris Wilson20311bd2016-11-14 20:41:03 +0000854
Chris Wilsona79a5242017-03-27 21:21:43 +0100855 GEM_BUG_ON(!locked);
856
Chris Wilson20311bd2016-11-14 20:41:03 +0000857 if (engine != locked) {
Chris Wilsona79a5242017-03-27 21:21:43 +0100858 spin_unlock(&locked->timeline->lock);
859 spin_lock(&engine->timeline->lock);
Chris Wilson20311bd2016-11-14 20:41:03 +0000860 }
861
862 return engine;
863}
864
865static void execlists_schedule(struct drm_i915_gem_request *request, int prio)
866{
Chris Wilsona79a5242017-03-27 21:21:43 +0100867 struct intel_engine_cs *engine;
Chris Wilson20311bd2016-11-14 20:41:03 +0000868 struct i915_dependency *dep, *p;
869 struct i915_dependency stack;
870 LIST_HEAD(dfs);
871
Chris Wilson7d1ea602017-09-28 20:39:00 +0100872 GEM_BUG_ON(prio == I915_PRIORITY_INVALID);
873
Chris Wilson20311bd2016-11-14 20:41:03 +0000874 if (prio <= READ_ONCE(request->priotree.priority))
875 return;
876
Chris Wilson70cd1472016-11-28 14:36:49 +0000877 /* Need BKL in order to use the temporary link inside i915_dependency */
878 lockdep_assert_held(&request->i915->drm.struct_mutex);
Chris Wilson20311bd2016-11-14 20:41:03 +0000879
880 stack.signaler = &request->priotree;
881 list_add(&stack.dfs_link, &dfs);
882
883 /* Recursively bump all dependent priorities to match the new request.
884 *
885 * A naive approach would be to use recursion:
886 * static void update_priorities(struct i915_priotree *pt, prio) {
887 * list_for_each_entry(dep, &pt->signalers_list, signal_link)
888 * update_priorities(dep->signal, prio)
889 * insert_request(pt);
890 * }
891 * but that may have unlimited recursion depth and so runs a very
892 * real risk of overunning the kernel stack. Instead, we build
893 * a flat list of all dependencies starting with the current request.
894 * As we walk the list of dependencies, we add all of its dependencies
895 * to the end of the list (this may include an already visited
896 * request) and continue to walk onwards onto the new dependencies. The
897 * end result is a topological list of requests in reverse order, the
898 * last element in the list is the request we must execute first.
899 */
900 list_for_each_entry_safe(dep, p, &dfs, dfs_link) {
901 struct i915_priotree *pt = dep->signaler;
902
Chris Wilsona79a5242017-03-27 21:21:43 +0100903 /* Within an engine, there can be no cycle, but we may
904 * refer to the same dependency chain multiple times
905 * (redundant dependencies are not eliminated) and across
906 * engines.
907 */
908 list_for_each_entry(p, &pt->signalers_list, signal_link) {
909 GEM_BUG_ON(p->signaler->priority < pt->priority);
Chris Wilson20311bd2016-11-14 20:41:03 +0000910 if (prio > READ_ONCE(p->signaler->priority))
911 list_move_tail(&p->dfs_link, &dfs);
Chris Wilsona79a5242017-03-27 21:21:43 +0100912 }
Chris Wilson20311bd2016-11-14 20:41:03 +0000913
Chris Wilson0798cff2016-12-05 14:29:41 +0000914 list_safe_reset_next(dep, p, dfs_link);
Chris Wilson20311bd2016-11-14 20:41:03 +0000915 }
916
Chris Wilson349bdb62017-05-17 13:10:05 +0100917 /* If we didn't need to bump any existing priorities, and we haven't
918 * yet submitted this request (i.e. there is no potential race with
919 * execlists_submit_request()), we can set our own priority and skip
920 * acquiring the engine locks.
921 */
Chris Wilson7d1ea602017-09-28 20:39:00 +0100922 if (request->priotree.priority == I915_PRIORITY_INVALID) {
Chris Wilson349bdb62017-05-17 13:10:05 +0100923 GEM_BUG_ON(!list_empty(&request->priotree.link));
924 request->priotree.priority = prio;
925 if (stack.dfs_link.next == stack.dfs_link.prev)
926 return;
927 __list_del_entry(&stack.dfs_link);
928 }
929
Chris Wilsona79a5242017-03-27 21:21:43 +0100930 engine = request->engine;
931 spin_lock_irq(&engine->timeline->lock);
932
Chris Wilson20311bd2016-11-14 20:41:03 +0000933 /* Fifo and depth-first replacement ensure our deps execute before us */
934 list_for_each_entry_safe_reverse(dep, p, &dfs, dfs_link) {
935 struct i915_priotree *pt = dep->signaler;
936
937 INIT_LIST_HEAD(&dep->dfs_link);
938
939 engine = pt_lock_engine(pt, engine);
940
941 if (prio <= pt->priority)
942 continue;
943
Chris Wilson20311bd2016-11-14 20:41:03 +0000944 pt->priority = prio;
Chris Wilson6c067572017-05-17 13:10:03 +0100945 if (!list_empty(&pt->link)) {
946 __list_del_entry(&pt->link);
947 insert_request(engine, pt, prio);
Chris Wilsona79a5242017-03-27 21:21:43 +0100948 }
Chris Wilson20311bd2016-11-14 20:41:03 +0000949 }
950
Chris Wilsona79a5242017-03-27 21:21:43 +0100951 spin_unlock_irq(&engine->timeline->lock);
Chris Wilson20311bd2016-11-14 20:41:03 +0000952
953 /* XXX Do we need to preempt to make room for us and our deps? */
954}
955
Chris Wilson266a2402017-05-04 10:33:08 +0100956static struct intel_ring *
957execlists_context_pin(struct intel_engine_cs *engine,
958 struct i915_gem_context *ctx)
Oscar Mateodcb4c122014-11-13 10:28:10 +0000959{
Chris Wilson9021ad02016-05-24 14:53:37 +0100960 struct intel_context *ce = &ctx->engine[engine->id];
Chris Wilson2947e402016-12-18 15:37:23 +0000961 unsigned int flags;
Tvrtko Ursulin7d774ca2016-04-12 15:40:42 +0100962 void *vaddr;
Tvrtko Ursulinca825802016-01-15 15:10:27 +0000963 int ret;
Oscar Mateodcb4c122014-11-13 10:28:10 +0000964
Chris Wilson91c8a322016-07-05 10:40:23 +0100965 lockdep_assert_held(&ctx->i915->drm.struct_mutex);
Tvrtko Ursulinca825802016-01-15 15:10:27 +0000966
Chris Wilson266a2402017-05-04 10:33:08 +0100967 if (likely(ce->pin_count++))
968 goto out;
Chris Wilsona533b4b2017-03-16 17:16:28 +0000969 GEM_BUG_ON(!ce->pin_count); /* no overflow please! */
Chris Wilson24f1d3c2016-04-28 09:56:53 +0100970
Chris Wilsone8a9c582016-12-18 15:37:20 +0000971 if (!ce->state) {
972 ret = execlists_context_deferred_alloc(ctx, engine);
973 if (ret)
974 goto err;
975 }
Chris Wilson56f6e0a2017-01-05 15:30:20 +0000976 GEM_BUG_ON(!ce->state);
Chris Wilsone8a9c582016-12-18 15:37:20 +0000977
Chris Wilson72b72ae2017-02-10 10:14:22 +0000978 flags = PIN_GLOBAL | PIN_HIGH;
Daniele Ceraolo Spuriofeef2a72016-12-23 15:56:22 -0800979 if (ctx->ggtt_offset_bias)
980 flags |= PIN_OFFSET_BIAS | ctx->ggtt_offset_bias;
Chris Wilson2947e402016-12-18 15:37:23 +0000981
982 ret = i915_vma_pin(ce->state, 0, GEN8_LR_CONTEXT_ALIGN, flags);
Nick Hoathe84fe802015-09-11 12:53:46 +0100983 if (ret)
Chris Wilson24f1d3c2016-04-28 09:56:53 +0100984 goto err;
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000985
Chris Wilsonbf3783e2016-08-15 10:48:54 +0100986 vaddr = i915_gem_object_pin_map(ce->state->obj, I915_MAP_WB);
Tvrtko Ursulin7d774ca2016-04-12 15:40:42 +0100987 if (IS_ERR(vaddr)) {
988 ret = PTR_ERR(vaddr);
Chris Wilsonbf3783e2016-08-15 10:48:54 +0100989 goto unpin_vma;
Tvrtko Ursulin82352e92016-01-15 17:12:45 +0000990 }
991
Chris Wilsond822bb12017-04-03 12:34:25 +0100992 ret = intel_ring_pin(ce->ring, ctx->i915, ctx->ggtt_offset_bias);
Nick Hoathe84fe802015-09-11 12:53:46 +0100993 if (ret)
Tvrtko Ursulin7d774ca2016-04-12 15:40:42 +0100994 goto unpin_map;
Alex Daid1675192015-08-12 15:43:43 +0100995
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +0000996 intel_lr_context_descriptor_update(ctx, engine);
Chris Wilson9021ad02016-05-24 14:53:37 +0100997
Chris Wilsona3aabe82016-10-04 21:11:26 +0100998 ce->lrc_reg_state = vaddr + LRC_STATE_PN * PAGE_SIZE;
999 ce->lrc_reg_state[CTX_RING_BUFFER_START+1] =
Chris Wilsonbde13eb2016-08-15 10:49:07 +01001000 i915_ggtt_offset(ce->ring->vma);
Chris Wilsona3aabe82016-10-04 21:11:26 +01001001
Chris Wilsona4f5ea62016-10-28 13:58:35 +01001002 ce->state->obj->mm.dirty = true;
Daniel Vettere93c28f2015-09-02 14:33:42 +02001003
Chris Wilson9a6feaf2016-07-20 13:31:50 +01001004 i915_gem_context_get(ctx);
Chris Wilson266a2402017-05-04 10:33:08 +01001005out:
1006 return ce->ring;
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001007
Tvrtko Ursulin7d774ca2016-04-12 15:40:42 +01001008unpin_map:
Chris Wilsonbf3783e2016-08-15 10:48:54 +01001009 i915_gem_object_unpin_map(ce->state->obj);
1010unpin_vma:
1011 __i915_vma_unpin(ce->state);
Chris Wilson24f1d3c2016-04-28 09:56:53 +01001012err:
Chris Wilson9021ad02016-05-24 14:53:37 +01001013 ce->pin_count = 0;
Chris Wilson266a2402017-05-04 10:33:08 +01001014 return ERR_PTR(ret);
Oscar Mateodcb4c122014-11-13 10:28:10 +00001015}
1016
Chris Wilsone8a9c582016-12-18 15:37:20 +00001017static void execlists_context_unpin(struct intel_engine_cs *engine,
1018 struct i915_gem_context *ctx)
Oscar Mateodcb4c122014-11-13 10:28:10 +00001019{
Chris Wilson9021ad02016-05-24 14:53:37 +01001020 struct intel_context *ce = &ctx->engine[engine->id];
Daniel Vetteraf3302b2015-12-04 17:27:15 +01001021
Chris Wilson91c8a322016-07-05 10:40:23 +01001022 lockdep_assert_held(&ctx->i915->drm.struct_mutex);
Chris Wilson9021ad02016-05-24 14:53:37 +01001023 GEM_BUG_ON(ce->pin_count == 0);
Tvrtko Ursulin321fe302016-01-28 10:29:55 +00001024
Chris Wilson9021ad02016-05-24 14:53:37 +01001025 if (--ce->pin_count)
Chris Wilson24f1d3c2016-04-28 09:56:53 +01001026 return;
1027
Chris Wilsonaad29fb2016-08-02 22:50:23 +01001028 intel_ring_unpin(ce->ring);
Chris Wilson24f1d3c2016-04-28 09:56:53 +01001029
Chris Wilsonbf3783e2016-08-15 10:48:54 +01001030 i915_gem_object_unpin_map(ce->state->obj);
1031 i915_vma_unpin(ce->state);
Chris Wilson24f1d3c2016-04-28 09:56:53 +01001032
Chris Wilson9a6feaf2016-07-20 13:31:50 +01001033 i915_gem_context_put(ctx);
Oscar Mateodcb4c122014-11-13 10:28:10 +00001034}
1035
Chris Wilsonf73e7392016-12-18 15:37:24 +00001036static int execlists_request_alloc(struct drm_i915_gem_request *request)
Chris Wilsonef11c012016-12-18 15:37:19 +00001037{
1038 struct intel_engine_cs *engine = request->engine;
1039 struct intel_context *ce = &request->ctx->engine[engine->id];
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001040 u32 *cs;
Chris Wilsonef11c012016-12-18 15:37:19 +00001041 int ret;
1042
Chris Wilsone8a9c582016-12-18 15:37:20 +00001043 GEM_BUG_ON(!ce->pin_count);
1044
Chris Wilsonef11c012016-12-18 15:37:19 +00001045 /* Flush enough space to reduce the likelihood of waiting after
1046 * we start building the request - in which case we will just
1047 * have to repeat work.
1048 */
1049 request->reserved_space += EXECLISTS_REQUEST_SIZE;
1050
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001051 cs = intel_ring_begin(request, 0);
Michał Winiarski85e2fe62017-09-14 10:32:13 +02001052 if (IS_ERR(cs))
1053 return PTR_ERR(cs);
Chris Wilsonef11c012016-12-18 15:37:19 +00001054
1055 if (!ce->initialised) {
1056 ret = engine->init_context(request);
1057 if (ret)
Michał Winiarski85e2fe62017-09-14 10:32:13 +02001058 return ret;
Chris Wilsonef11c012016-12-18 15:37:19 +00001059
1060 ce->initialised = true;
1061 }
1062
1063 /* Note that after this point, we have committed to using
1064 * this request as it is being used to both track the
1065 * state of engine initialisation and liveness of the
1066 * golden renderstate above. Think twice before you try
1067 * to cancel/unwind this request now.
1068 */
1069
1070 request->reserved_space -= EXECLISTS_REQUEST_SIZE;
1071 return 0;
Chris Wilsonef11c012016-12-18 15:37:19 +00001072}
1073
Arun Siluvery9e000842015-07-03 14:27:31 +01001074/*
1075 * In this WA we need to set GEN8_L3SQCREG4[21:21] and reset it after
1076 * PIPE_CONTROL instruction. This is required for the flush to happen correctly
1077 * but there is a slight complication as this is applied in WA batch where the
1078 * values are only initialized once so we cannot take register value at the
1079 * beginning and reuse it further; hence we save its value to memory, upload a
1080 * constant value with bit21 set and then we restore it back with the saved value.
1081 * To simplify the WA, a constant value is formed by using the default value
1082 * of this register. This shouldn't be a problem because we are only modifying
1083 * it for a short period and this batch in non-premptible. We can ofcourse
1084 * use additional instructions that read the actual value of the register
1085 * at that time and set our bit of interest but it makes the WA complicated.
1086 *
1087 * This WA is also required for Gen9 so extracting as a function avoids
1088 * code duplication.
1089 */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001090static u32 *
1091gen8_emit_flush_coherentl3_wa(struct intel_engine_cs *engine, u32 *batch)
Arun Siluvery9e000842015-07-03 14:27:31 +01001092{
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001093 *batch++ = MI_STORE_REGISTER_MEM_GEN8 | MI_SRM_LRM_GLOBAL_GTT;
1094 *batch++ = i915_mmio_reg_offset(GEN8_L3SQCREG4);
1095 *batch++ = i915_ggtt_offset(engine->scratch) + 256;
1096 *batch++ = 0;
Arun Siluvery9e000842015-07-03 14:27:31 +01001097
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001098 *batch++ = MI_LOAD_REGISTER_IMM(1);
1099 *batch++ = i915_mmio_reg_offset(GEN8_L3SQCREG4);
1100 *batch++ = 0x40400000 | GEN8_LQSC_FLUSH_COHERENT_LINES;
Arun Siluvery9e000842015-07-03 14:27:31 +01001101
Tvrtko Ursulin9f235df2017-02-16 12:23:25 +00001102 batch = gen8_emit_pipe_control(batch,
1103 PIPE_CONTROL_CS_STALL |
1104 PIPE_CONTROL_DC_FLUSH_ENABLE,
1105 0);
Arun Siluvery9e000842015-07-03 14:27:31 +01001106
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001107 *batch++ = MI_LOAD_REGISTER_MEM_GEN8 | MI_SRM_LRM_GLOBAL_GTT;
1108 *batch++ = i915_mmio_reg_offset(GEN8_L3SQCREG4);
1109 *batch++ = i915_ggtt_offset(engine->scratch) + 256;
1110 *batch++ = 0;
Arun Siluvery9e000842015-07-03 14:27:31 +01001111
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001112 return batch;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001113}
1114
Daniel Vetter6e5248b2016-07-15 21:48:06 +02001115/*
1116 * Typically we only have one indirect_ctx and per_ctx batch buffer which are
1117 * initialized at the beginning and shared across all contexts but this field
1118 * helps us to have multiple batches at different offsets and select them based
1119 * on a criteria. At the moment this batch always start at the beginning of the page
1120 * and at this point we don't have multiple wa_ctx batch buffers.
Arun Siluvery17ee9502015-06-19 19:07:01 +01001121 *
Daniel Vetter6e5248b2016-07-15 21:48:06 +02001122 * The number of WA applied are not known at the beginning; we use this field
1123 * to return the no of DWORDS written.
Arun Siluvery17ee9502015-06-19 19:07:01 +01001124 *
Daniel Vetter6e5248b2016-07-15 21:48:06 +02001125 * It is to be noted that this batch does not contain MI_BATCH_BUFFER_END
1126 * so it adds NOOPs as padding to make it cacheline aligned.
1127 * MI_BATCH_BUFFER_END will be added to perctx batch and both of them together
1128 * makes a complete batch buffer.
Arun Siluvery17ee9502015-06-19 19:07:01 +01001129 */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001130static u32 *gen8_init_indirectctx_bb(struct intel_engine_cs *engine, u32 *batch)
Arun Siluvery17ee9502015-06-19 19:07:01 +01001131{
Arun Siluvery7ad00d12015-06-19 18:37:12 +01001132 /* WaDisableCtxRestoreArbitration:bdw,chv */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001133 *batch++ = MI_ARB_ON_OFF | MI_ARB_DISABLE;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001134
Arun Siluveryc82435b2015-06-19 18:37:13 +01001135 /* WaFlushCoherentL3CacheLinesAtContextSwitch:bdw */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001136 if (IS_BROADWELL(engine->i915))
1137 batch = gen8_emit_flush_coherentl3_wa(engine, batch);
Arun Siluveryc82435b2015-06-19 18:37:13 +01001138
Arun Siluvery0160f052015-06-23 15:46:57 +01001139 /* WaClearSlmSpaceAtContextSwitch:bdw,chv */
1140 /* Actual scratch location is at 128 bytes offset */
Tvrtko Ursulin9f235df2017-02-16 12:23:25 +00001141 batch = gen8_emit_pipe_control(batch,
1142 PIPE_CONTROL_FLUSH_L3 |
1143 PIPE_CONTROL_GLOBAL_GTT_IVB |
1144 PIPE_CONTROL_CS_STALL |
1145 PIPE_CONTROL_QW_WRITE,
1146 i915_ggtt_offset(engine->scratch) +
1147 2 * CACHELINE_BYTES);
Arun Siluvery0160f052015-06-23 15:46:57 +01001148
Arun Siluvery17ee9502015-06-19 19:07:01 +01001149 /* Pad to end of cacheline */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001150 while ((unsigned long)batch % CACHELINE_BYTES)
1151 *batch++ = MI_NOOP;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001152
1153 /*
1154 * MI_BATCH_BUFFER_END is not required in Indirect ctx BB because
1155 * execution depends on the length specified in terms of cache lines
1156 * in the register CTX_RCS_INDIRECT_CTX
1157 */
1158
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001159 return batch;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001160}
1161
Daniel Vetter6e5248b2016-07-15 21:48:06 +02001162/*
1163 * This batch is started immediately after indirect_ctx batch. Since we ensure
1164 * that indirect_ctx ends on a cacheline this batch is aligned automatically.
Arun Siluvery17ee9502015-06-19 19:07:01 +01001165 *
Daniel Vetter6e5248b2016-07-15 21:48:06 +02001166 * The number of DWORDS written are returned using this field.
Arun Siluvery17ee9502015-06-19 19:07:01 +01001167 *
1168 * This batch is terminated with MI_BATCH_BUFFER_END and so we need not add padding
1169 * to align it with cacheline as padding after MI_BATCH_BUFFER_END is redundant.
1170 */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001171static u32 *gen8_init_perctx_bb(struct intel_engine_cs *engine, u32 *batch)
Arun Siluvery17ee9502015-06-19 19:07:01 +01001172{
Arun Siluvery7ad00d12015-06-19 18:37:12 +01001173 /* WaDisableCtxRestoreArbitration:bdw,chv */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001174 *batch++ = MI_ARB_ON_OFF | MI_ARB_ENABLE;
1175 *batch++ = MI_BATCH_BUFFER_END;
Arun Siluvery7ad00d12015-06-19 18:37:12 +01001176
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001177 return batch;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001178}
1179
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001180static u32 *gen9_init_indirectctx_bb(struct intel_engine_cs *engine, u32 *batch)
Arun Siluvery0504cff2015-07-14 15:01:27 +01001181{
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02001182 /* WaFlushCoherentL3CacheLinesAtContextSwitch:skl,bxt,glk */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001183 batch = gen8_emit_flush_coherentl3_wa(engine, batch);
Arun Siluverya4106a72015-07-14 15:01:29 +01001184
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02001185 /* WaDisableGatherAtSetShaderCommonSlice:skl,bxt,kbl,glk */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001186 *batch++ = MI_LOAD_REGISTER_IMM(1);
1187 *batch++ = i915_mmio_reg_offset(COMMON_SLICE_CHICKEN2);
1188 *batch++ = _MASKED_BIT_DISABLE(
1189 GEN9_DISABLE_GATHER_AT_SET_SHADER_COMMON_SLICE);
1190 *batch++ = MI_NOOP;
Mika Kuoppala873e8172016-07-20 14:26:13 +03001191
Mika Kuoppala066d4622016-06-07 17:19:15 +03001192 /* WaClearSlmSpaceAtContextSwitch:kbl */
1193 /* Actual scratch location is at 128 bytes offset */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001194 if (IS_KBL_REVID(engine->i915, 0, KBL_REVID_A0)) {
Tvrtko Ursulin9f235df2017-02-16 12:23:25 +00001195 batch = gen8_emit_pipe_control(batch,
1196 PIPE_CONTROL_FLUSH_L3 |
1197 PIPE_CONTROL_GLOBAL_GTT_IVB |
1198 PIPE_CONTROL_CS_STALL |
1199 PIPE_CONTROL_QW_WRITE,
1200 i915_ggtt_offset(engine->scratch)
1201 + 2 * CACHELINE_BYTES);
Mika Kuoppala066d4622016-06-07 17:19:15 +03001202 }
Tim Gore3485d992016-07-05 10:01:30 +01001203
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02001204 /* WaMediaPoolStateCmdInWABB:bxt,glk */
Tim Gore3485d992016-07-05 10:01:30 +01001205 if (HAS_POOLED_EU(engine->i915)) {
1206 /*
1207 * EU pool configuration is setup along with golden context
1208 * during context initialization. This value depends on
1209 * device type (2x6 or 3x6) and needs to be updated based
1210 * on which subslice is disabled especially for 2x6
1211 * devices, however it is safe to load default
1212 * configuration of 3x6 device instead of masking off
1213 * corresponding bits because HW ignores bits of a disabled
1214 * subslice and drops down to appropriate config. Please
1215 * see render_state_setup() in i915_gem_render_state.c for
1216 * possible configurations, to avoid duplication they are
1217 * not shown here again.
1218 */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001219 *batch++ = GEN9_MEDIA_POOL_STATE;
1220 *batch++ = GEN9_MEDIA_POOL_ENABLE;
1221 *batch++ = 0x00777000;
1222 *batch++ = 0;
1223 *batch++ = 0;
1224 *batch++ = 0;
Tim Gore3485d992016-07-05 10:01:30 +01001225 }
1226
Arun Siluvery0504cff2015-07-14 15:01:27 +01001227 /* Pad to end of cacheline */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001228 while ((unsigned long)batch % CACHELINE_BYTES)
1229 *batch++ = MI_NOOP;
Arun Siluvery0504cff2015-07-14 15:01:27 +01001230
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001231 return batch;
Arun Siluvery0504cff2015-07-14 15:01:27 +01001232}
1233
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001234#define CTX_WA_BB_OBJ_SIZE (PAGE_SIZE)
1235
1236static int lrc_setup_wa_ctx(struct intel_engine_cs *engine)
Arun Siluvery17ee9502015-06-19 19:07:01 +01001237{
Chris Wilson48bb74e2016-08-15 10:49:04 +01001238 struct drm_i915_gem_object *obj;
1239 struct i915_vma *vma;
1240 int err;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001241
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001242 obj = i915_gem_object_create(engine->i915, CTX_WA_BB_OBJ_SIZE);
Chris Wilson48bb74e2016-08-15 10:49:04 +01001243 if (IS_ERR(obj))
1244 return PTR_ERR(obj);
1245
Chris Wilsona01cb372017-01-16 15:21:30 +00001246 vma = i915_vma_instance(obj, &engine->i915->ggtt.base, NULL);
Chris Wilson48bb74e2016-08-15 10:49:04 +01001247 if (IS_ERR(vma)) {
1248 err = PTR_ERR(vma);
1249 goto err;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001250 }
1251
Chris Wilson48bb74e2016-08-15 10:49:04 +01001252 err = i915_vma_pin(vma, 0, PAGE_SIZE, PIN_GLOBAL | PIN_HIGH);
1253 if (err)
1254 goto err;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001255
Chris Wilson48bb74e2016-08-15 10:49:04 +01001256 engine->wa_ctx.vma = vma;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001257 return 0;
Chris Wilson48bb74e2016-08-15 10:49:04 +01001258
1259err:
1260 i915_gem_object_put(obj);
1261 return err;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001262}
1263
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001264static void lrc_destroy_wa_ctx(struct intel_engine_cs *engine)
Arun Siluvery17ee9502015-06-19 19:07:01 +01001265{
Chris Wilson19880c42016-08-15 10:49:05 +01001266 i915_vma_unpin_and_release(&engine->wa_ctx.vma);
Arun Siluvery17ee9502015-06-19 19:07:01 +01001267}
1268
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001269typedef u32 *(*wa_bb_func_t)(struct intel_engine_cs *engine, u32 *batch);
1270
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001271static int intel_init_workaround_bb(struct intel_engine_cs *engine)
Arun Siluvery17ee9502015-06-19 19:07:01 +01001272{
Chris Wilson48bb74e2016-08-15 10:49:04 +01001273 struct i915_ctx_workarounds *wa_ctx = &engine->wa_ctx;
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001274 struct i915_wa_ctx_bb *wa_bb[2] = { &wa_ctx->indirect_ctx,
1275 &wa_ctx->per_ctx };
1276 wa_bb_func_t wa_bb_fn[2];
Arun Siluvery17ee9502015-06-19 19:07:01 +01001277 struct page *page;
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001278 void *batch, *batch_ptr;
1279 unsigned int i;
Chris Wilson48bb74e2016-08-15 10:49:04 +01001280 int ret;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001281
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001282 if (WARN_ON(engine->id != RCS || !engine->scratch))
1283 return -EINVAL;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001284
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001285 switch (INTEL_GEN(engine->i915)) {
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07001286 case 10:
1287 return 0;
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001288 case 9:
1289 wa_bb_fn[0] = gen9_init_indirectctx_bb;
Chris Wilsonb8aa2232017-09-21 14:54:44 +01001290 wa_bb_fn[1] = NULL;
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001291 break;
1292 case 8:
1293 wa_bb_fn[0] = gen8_init_indirectctx_bb;
1294 wa_bb_fn[1] = gen8_init_perctx_bb;
1295 break;
1296 default:
1297 MISSING_CASE(INTEL_GEN(engine->i915));
Arun Siluvery5e60d792015-06-23 15:50:44 +01001298 return 0;
Arun Siluvery0504cff2015-07-14 15:01:27 +01001299 }
Arun Siluvery5e60d792015-06-23 15:50:44 +01001300
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001301 ret = lrc_setup_wa_ctx(engine);
Arun Siluvery17ee9502015-06-19 19:07:01 +01001302 if (ret) {
1303 DRM_DEBUG_DRIVER("Failed to setup context WA page: %d\n", ret);
1304 return ret;
1305 }
1306
Chris Wilson48bb74e2016-08-15 10:49:04 +01001307 page = i915_gem_object_get_dirty_page(wa_ctx->vma->obj, 0);
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001308 batch = batch_ptr = kmap_atomic(page);
Arun Siluvery17ee9502015-06-19 19:07:01 +01001309
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001310 /*
1311 * Emit the two workaround batch buffers, recording the offset from the
1312 * start of the workaround batch buffer object for each and their
1313 * respective sizes.
1314 */
1315 for (i = 0; i < ARRAY_SIZE(wa_bb_fn); i++) {
1316 wa_bb[i]->offset = batch_ptr - batch;
1317 if (WARN_ON(!IS_ALIGNED(wa_bb[i]->offset, CACHELINE_BYTES))) {
1318 ret = -EINVAL;
1319 break;
1320 }
Chris Wilson604a8f62017-09-21 14:54:43 +01001321 if (wa_bb_fn[i])
1322 batch_ptr = wa_bb_fn[i](engine, batch_ptr);
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001323 wa_bb[i]->size = batch_ptr - (batch + wa_bb[i]->offset);
Arun Siluvery17ee9502015-06-19 19:07:01 +01001324 }
1325
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001326 BUG_ON(batch_ptr - batch > CTX_WA_BB_OBJ_SIZE);
1327
Arun Siluvery17ee9502015-06-19 19:07:01 +01001328 kunmap_atomic(batch);
1329 if (ret)
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001330 lrc_destroy_wa_ctx(engine);
Arun Siluvery17ee9502015-06-19 19:07:01 +01001331
1332 return ret;
1333}
1334
Chris Wilson64f09f02017-08-07 13:19:19 +01001335static u8 gtiir[] = {
1336 [RCS] = 0,
1337 [BCS] = 0,
1338 [VCS] = 1,
1339 [VCS2] = 1,
1340 [VECS] = 3,
1341};
1342
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001343static int gen8_init_common_ring(struct intel_engine_cs *engine)
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001344{
Chris Wilsonc0336662016-05-06 15:40:21 +01001345 struct drm_i915_private *dev_priv = engine->i915;
Mika Kuoppalab620e872017-09-22 15:43:03 +03001346 struct intel_engine_execlists * const execlists = &engine->execlists;
Chris Wilson821ed7d2016-09-09 14:11:53 +01001347 int ret;
1348
1349 ret = intel_mocs_init_engine(engine);
1350 if (ret)
1351 return ret;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001352
Chris Wilsonad07dfc2016-10-07 07:53:26 +01001353 intel_engine_reset_breadcrumbs(engine);
Chris Wilsonf3b8f912017-01-05 15:30:21 +00001354 intel_engine_init_hangcheck(engine);
Chris Wilson821ed7d2016-09-09 14:11:53 +01001355
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001356 I915_WRITE(RING_HWSTAM(engine->mmio_base), 0xffffffff);
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001357 I915_WRITE(RING_MODE_GEN7(engine),
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001358 _MASKED_BIT_ENABLE(GFX_RUN_LIST_ENABLE));
Chris Wilsonf3b8f912017-01-05 15:30:21 +00001359 I915_WRITE(RING_HWS_PGA(engine->mmio_base),
1360 engine->status_page.ggtt_offset);
1361 POSTING_READ(RING_HWS_PGA(engine->mmio_base));
Michel Thierrydfc53c52015-09-28 13:25:12 +01001362
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001363 DRM_DEBUG_DRIVER("Execlists enabled for %s\n", engine->name);
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001364
Chris Wilson64f09f02017-08-07 13:19:19 +01001365 GEM_BUG_ON(engine->id >= ARRAY_SIZE(gtiir));
1366
1367 /*
1368 * Clear any pending interrupt state.
1369 *
1370 * We do it twice out of paranoia that some of the IIR are double
1371 * buffered, and if we only reset it once there may still be
1372 * an interrupt pending.
1373 */
1374 I915_WRITE(GEN8_GT_IIR(gtiir[engine->id]),
1375 GT_CONTEXT_SWITCH_INTERRUPT << engine->irq_shift);
1376 I915_WRITE(GEN8_GT_IIR(gtiir[engine->id]),
1377 GT_CONTEXT_SWITCH_INTERRUPT << engine->irq_shift);
Chris Wilsonf7470262017-01-24 15:20:21 +00001378 clear_bit(ENGINE_IRQ_EXECLIST, &engine->irq_posted);
Mika Kuoppalab620e872017-09-22 15:43:03 +03001379 execlists->csb_head = -1;
Chris Wilson6b764a52017-04-25 11:38:35 +01001380
Chris Wilson64f09f02017-08-07 13:19:19 +01001381 /* After a GPU reset, we may have requests to replay */
Mika Kuoppalab620e872017-09-22 15:43:03 +03001382 if (!i915_modparams.enable_guc_submission && execlists->first)
1383 tasklet_schedule(&execlists->irq_tasklet);
Chris Wilson6b764a52017-04-25 11:38:35 +01001384
Chris Wilson821ed7d2016-09-09 14:11:53 +01001385 return 0;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001386}
1387
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001388static int gen8_init_render_ring(struct intel_engine_cs *engine)
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001389{
Chris Wilsonc0336662016-05-06 15:40:21 +01001390 struct drm_i915_private *dev_priv = engine->i915;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001391 int ret;
1392
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001393 ret = gen8_init_common_ring(engine);
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001394 if (ret)
1395 return ret;
1396
1397 /* We need to disable the AsyncFlip performance optimisations in order
1398 * to use MI_WAIT_FOR_EVENT within the CS. It should already be
1399 * programmed to '1' on all products.
1400 *
1401 * WaDisableAsyncFlipPerfMode:snb,ivb,hsw,vlv,bdw,chv
1402 */
1403 I915_WRITE(MI_MODE, _MASKED_BIT_ENABLE(ASYNC_FLIP_PERF_DISABLE));
1404
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001405 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_FORCE_ORDERING));
1406
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001407 return init_workarounds_ring(engine);
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001408}
1409
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001410static int gen9_init_render_ring(struct intel_engine_cs *engine)
Damien Lespiau82ef8222015-02-09 19:33:08 +00001411{
1412 int ret;
1413
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001414 ret = gen8_init_common_ring(engine);
Damien Lespiau82ef8222015-02-09 19:33:08 +00001415 if (ret)
1416 return ret;
1417
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001418 return init_workarounds_ring(engine);
Damien Lespiau82ef8222015-02-09 19:33:08 +00001419}
1420
Chris Wilson821ed7d2016-09-09 14:11:53 +01001421static void reset_common_ring(struct intel_engine_cs *engine,
1422 struct drm_i915_gem_request *request)
1423{
Mika Kuoppalab620e872017-09-22 15:43:03 +03001424 struct intel_engine_execlists * const execlists = &engine->execlists;
Chris Wilsonc0dcb202017-02-07 15:24:37 +00001425 struct intel_context *ce;
Chris Wilson221ab97192017-09-16 21:44:14 +01001426 unsigned long flags;
Chris Wilsoncdb6ded2017-07-21 13:32:22 +01001427
Chris Wilson221ab97192017-09-16 21:44:14 +01001428 spin_lock_irqsave(&engine->timeline->lock, flags);
1429
Chris Wilsoncdb6ded2017-07-21 13:32:22 +01001430 /*
1431 * Catch up with any missed context-switch interrupts.
1432 *
1433 * Ideally we would just read the remaining CSB entries now that we
1434 * know the gpu is idle. However, the CSB registers are sometimes^W
1435 * often trashed across a GPU reset! Instead we have to rely on
1436 * guessing the missed context-switch events by looking at what
1437 * requests were completed.
1438 */
Mika Kuoppalacf4591d2017-09-22 15:43:05 +03001439 execlist_cancel_port_requests(execlists);
Chris Wilson221ab97192017-09-16 21:44:14 +01001440
1441 /* Push back any incomplete requests for replay after the reset. */
Chris Wilson7e4992a2017-09-28 20:38:59 +01001442 unwind_incomplete_requests(engine);
Chris Wilsoncdb6ded2017-07-21 13:32:22 +01001443
Chris Wilson221ab97192017-09-16 21:44:14 +01001444 spin_unlock_irqrestore(&engine->timeline->lock, flags);
Chris Wilsonc0dcb202017-02-07 15:24:37 +00001445
1446 /* If the request was innocent, we leave the request in the ELSP
1447 * and will try to replay it on restarting. The context image may
1448 * have been corrupted by the reset, in which case we may have
1449 * to service a new GPU hang, but more likely we can continue on
1450 * without impact.
1451 *
1452 * If the request was guilty, we presume the context is corrupt
1453 * and have to at least restore the RING register in the context
1454 * image back to the expected values to skip over the guilty request.
1455 */
Chris Wilson221ab97192017-09-16 21:44:14 +01001456 if (!request || request->fence.error != -EIO)
Chris Wilsonc0dcb202017-02-07 15:24:37 +00001457 return;
Chris Wilson821ed7d2016-09-09 14:11:53 +01001458
Chris Wilsona3aabe82016-10-04 21:11:26 +01001459 /* We want a simple context + ring to execute the breadcrumb update.
1460 * We cannot rely on the context being intact across the GPU hang,
1461 * so clear it and rebuild just what we need for the breadcrumb.
1462 * All pending requests for this context will be zapped, and any
1463 * future request will be after userspace has had the opportunity
1464 * to recreate its own state.
1465 */
Chris Wilsonc0dcb202017-02-07 15:24:37 +00001466 ce = &request->ctx->engine[engine->id];
Chris Wilsona3aabe82016-10-04 21:11:26 +01001467 execlists_init_reg_state(ce->lrc_reg_state,
1468 request->ctx, engine, ce->ring);
1469
Chris Wilson821ed7d2016-09-09 14:11:53 +01001470 /* Move the RING_HEAD onto the breadcrumb, past the hanging batch */
Chris Wilsona3aabe82016-10-04 21:11:26 +01001471 ce->lrc_reg_state[CTX_RING_BUFFER_START+1] =
1472 i915_ggtt_offset(ce->ring->vma);
Chris Wilson821ed7d2016-09-09 14:11:53 +01001473 ce->lrc_reg_state[CTX_RING_HEAD+1] = request->postfix;
Chris Wilsona3aabe82016-10-04 21:11:26 +01001474
Chris Wilson821ed7d2016-09-09 14:11:53 +01001475 request->ring->head = request->postfix;
Chris Wilson821ed7d2016-09-09 14:11:53 +01001476 intel_ring_update_space(request->ring);
1477
Chris Wilsona3aabe82016-10-04 21:11:26 +01001478 /* Reset WaIdleLiteRestore:bdw,skl as well */
Chris Wilson7e4992a2017-09-28 20:38:59 +01001479 unwind_wa_tail(request);
Chris Wilson821ed7d2016-09-09 14:11:53 +01001480}
1481
Michel Thierry7a01a0a2015-06-26 13:46:14 +01001482static int intel_logical_ring_emit_pdps(struct drm_i915_gem_request *req)
1483{
1484 struct i915_hw_ppgtt *ppgtt = req->ctx->ppgtt;
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +00001485 struct intel_engine_cs *engine = req->engine;
Mika Kuoppalae7167762017-02-28 17:28:10 +02001486 const int num_lri_cmds = GEN8_3LVL_PDPES * 2;
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001487 u32 *cs;
1488 int i;
Michel Thierry7a01a0a2015-06-26 13:46:14 +01001489
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001490 cs = intel_ring_begin(req, num_lri_cmds * 2 + 2);
1491 if (IS_ERR(cs))
1492 return PTR_ERR(cs);
Michel Thierry7a01a0a2015-06-26 13:46:14 +01001493
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001494 *cs++ = MI_LOAD_REGISTER_IMM(num_lri_cmds);
Mika Kuoppalae7167762017-02-28 17:28:10 +02001495 for (i = GEN8_3LVL_PDPES - 1; i >= 0; i--) {
Michel Thierry7a01a0a2015-06-26 13:46:14 +01001496 const dma_addr_t pd_daddr = i915_page_dir_dma_addr(ppgtt, i);
1497
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001498 *cs++ = i915_mmio_reg_offset(GEN8_RING_PDP_UDW(engine, i));
1499 *cs++ = upper_32_bits(pd_daddr);
1500 *cs++ = i915_mmio_reg_offset(GEN8_RING_PDP_LDW(engine, i));
1501 *cs++ = lower_32_bits(pd_daddr);
Michel Thierry7a01a0a2015-06-26 13:46:14 +01001502 }
1503
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001504 *cs++ = MI_NOOP;
1505 intel_ring_advance(req, cs);
Michel Thierry7a01a0a2015-06-26 13:46:14 +01001506
1507 return 0;
1508}
1509
John Harrisonbe795fc2015-05-29 17:44:03 +01001510static int gen8_emit_bb_start(struct drm_i915_gem_request *req,
Chris Wilson803688b2016-08-02 22:50:27 +01001511 u64 offset, u32 len,
Mika Kuoppala54af56d2017-02-28 17:28:08 +02001512 const unsigned int flags)
Oscar Mateo15648582014-07-24 17:04:32 +01001513{
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001514 u32 *cs;
Oscar Mateo15648582014-07-24 17:04:32 +01001515 int ret;
1516
Michel Thierry7a01a0a2015-06-26 13:46:14 +01001517 /* Don't rely in hw updating PDPs, specially in lite-restore.
1518 * Ideally, we should set Force PD Restore in ctx descriptor,
1519 * but we can't. Force Restore would be a second option, but
1520 * it is unsafe in case of lite-restore (because the ctx is
Michel Thierry2dba3232015-07-30 11:06:23 +01001521 * not idle). PML4 is allocated during ppgtt init so this is
1522 * not needed in 48-bit.*/
Michel Thierry7a01a0a2015-06-26 13:46:14 +01001523 if (req->ctx->ppgtt &&
Mika Kuoppala54af56d2017-02-28 17:28:08 +02001524 (intel_engine_flag(req->engine) & req->ctx->ppgtt->pd_dirty_rings) &&
1525 !i915_vm_is_48bit(&req->ctx->ppgtt->base) &&
1526 !intel_vgpu_active(req->i915)) {
1527 ret = intel_logical_ring_emit_pdps(req);
1528 if (ret)
1529 return ret;
Michel Thierry7a01a0a2015-06-26 13:46:14 +01001530
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00001531 req->ctx->ppgtt->pd_dirty_rings &= ~intel_engine_flag(req->engine);
Michel Thierry7a01a0a2015-06-26 13:46:14 +01001532 }
1533
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001534 cs = intel_ring_begin(req, 4);
1535 if (IS_ERR(cs))
1536 return PTR_ERR(cs);
Oscar Mateo15648582014-07-24 17:04:32 +01001537
1538 /* FIXME(BDW): Address space and security selectors. */
Mika Kuoppala54af56d2017-02-28 17:28:08 +02001539 *cs++ = MI_BATCH_BUFFER_START_GEN8 |
1540 (flags & I915_DISPATCH_SECURE ? 0 : BIT(8)) |
1541 (flags & I915_DISPATCH_RS ? MI_BATCH_RESOURCE_STREAMER : 0);
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001542 *cs++ = lower_32_bits(offset);
1543 *cs++ = upper_32_bits(offset);
1544 *cs++ = MI_NOOP;
1545 intel_ring_advance(req, cs);
Oscar Mateo15648582014-07-24 17:04:32 +01001546
1547 return 0;
1548}
1549
Chris Wilson31bb59c2016-07-01 17:23:27 +01001550static void gen8_logical_ring_enable_irq(struct intel_engine_cs *engine)
Oscar Mateo73d477f2014-07-24 17:04:31 +01001551{
Chris Wilsonc0336662016-05-06 15:40:21 +01001552 struct drm_i915_private *dev_priv = engine->i915;
Chris Wilson31bb59c2016-07-01 17:23:27 +01001553 I915_WRITE_IMR(engine,
1554 ~(engine->irq_enable_mask | engine->irq_keep_mask));
1555 POSTING_READ_FW(RING_IMR(engine->mmio_base));
Oscar Mateo73d477f2014-07-24 17:04:31 +01001556}
1557
Chris Wilson31bb59c2016-07-01 17:23:27 +01001558static void gen8_logical_ring_disable_irq(struct intel_engine_cs *engine)
Oscar Mateo73d477f2014-07-24 17:04:31 +01001559{
Chris Wilsonc0336662016-05-06 15:40:21 +01001560 struct drm_i915_private *dev_priv = engine->i915;
Chris Wilson31bb59c2016-07-01 17:23:27 +01001561 I915_WRITE_IMR(engine, ~engine->irq_keep_mask);
Oscar Mateo73d477f2014-07-24 17:04:31 +01001562}
1563
Chris Wilson7c9cf4e2016-08-02 22:50:25 +01001564static int gen8_emit_flush(struct drm_i915_gem_request *request, u32 mode)
Oscar Mateo47122742014-07-24 17:04:28 +01001565{
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001566 u32 cmd, *cs;
Oscar Mateo47122742014-07-24 17:04:28 +01001567
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001568 cs = intel_ring_begin(request, 4);
1569 if (IS_ERR(cs))
1570 return PTR_ERR(cs);
Oscar Mateo47122742014-07-24 17:04:28 +01001571
1572 cmd = MI_FLUSH_DW + 1;
1573
Chris Wilsonf0a1fb12015-01-22 13:42:00 +00001574 /* We always require a command barrier so that subsequent
1575 * commands, such as breadcrumb interrupts, are strictly ordered
1576 * wrt the contents of the write cache being flushed to memory
1577 * (and thus being coherent from the CPU).
1578 */
1579 cmd |= MI_FLUSH_DW_STORE_INDEX | MI_FLUSH_DW_OP_STOREDW;
1580
Chris Wilson7c9cf4e2016-08-02 22:50:25 +01001581 if (mode & EMIT_INVALIDATE) {
Chris Wilsonf0a1fb12015-01-22 13:42:00 +00001582 cmd |= MI_INVALIDATE_TLB;
Chris Wilson1dae2df2016-08-02 22:50:19 +01001583 if (request->engine->id == VCS)
Chris Wilsonf0a1fb12015-01-22 13:42:00 +00001584 cmd |= MI_INVALIDATE_BSD;
Oscar Mateo47122742014-07-24 17:04:28 +01001585 }
1586
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001587 *cs++ = cmd;
1588 *cs++ = I915_GEM_HWS_SCRATCH_ADDR | MI_FLUSH_DW_USE_GTT;
1589 *cs++ = 0; /* upper addr */
1590 *cs++ = 0; /* value */
1591 intel_ring_advance(request, cs);
Oscar Mateo47122742014-07-24 17:04:28 +01001592
1593 return 0;
1594}
1595
John Harrison7deb4d32015-05-29 17:43:59 +01001596static int gen8_emit_flush_render(struct drm_i915_gem_request *request,
Chris Wilson7c9cf4e2016-08-02 22:50:25 +01001597 u32 mode)
Oscar Mateo47122742014-07-24 17:04:28 +01001598{
Chris Wilsonb5321f32016-08-02 22:50:18 +01001599 struct intel_engine_cs *engine = request->engine;
Chris Wilsonbde13eb2016-08-15 10:49:07 +01001600 u32 scratch_addr =
1601 i915_ggtt_offset(engine->scratch) + 2 * CACHELINE_BYTES;
Mika Kuoppala0b2d0932016-06-07 17:19:10 +03001602 bool vf_flush_wa = false, dc_flush_wa = false;
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001603 u32 *cs, flags = 0;
Mika Kuoppala0b2d0932016-06-07 17:19:10 +03001604 int len;
Oscar Mateo47122742014-07-24 17:04:28 +01001605
1606 flags |= PIPE_CONTROL_CS_STALL;
1607
Chris Wilson7c9cf4e2016-08-02 22:50:25 +01001608 if (mode & EMIT_FLUSH) {
Oscar Mateo47122742014-07-24 17:04:28 +01001609 flags |= PIPE_CONTROL_RENDER_TARGET_CACHE_FLUSH;
1610 flags |= PIPE_CONTROL_DEPTH_CACHE_FLUSH;
Francisco Jerez965fd602016-01-13 18:59:39 -08001611 flags |= PIPE_CONTROL_DC_FLUSH_ENABLE;
Chris Wilson40a24482015-08-21 16:08:41 +01001612 flags |= PIPE_CONTROL_FLUSH_ENABLE;
Oscar Mateo47122742014-07-24 17:04:28 +01001613 }
1614
Chris Wilson7c9cf4e2016-08-02 22:50:25 +01001615 if (mode & EMIT_INVALIDATE) {
Oscar Mateo47122742014-07-24 17:04:28 +01001616 flags |= PIPE_CONTROL_TLB_INVALIDATE;
1617 flags |= PIPE_CONTROL_INSTRUCTION_CACHE_INVALIDATE;
1618 flags |= PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE;
1619 flags |= PIPE_CONTROL_VF_CACHE_INVALIDATE;
1620 flags |= PIPE_CONTROL_CONST_CACHE_INVALIDATE;
1621 flags |= PIPE_CONTROL_STATE_CACHE_INVALIDATE;
1622 flags |= PIPE_CONTROL_QW_WRITE;
1623 flags |= PIPE_CONTROL_GLOBAL_GTT_IVB;
Oscar Mateo47122742014-07-24 17:04:28 +01001624
Ben Widawsky1a5a9ce2015-12-17 09:49:57 -08001625 /*
1626 * On GEN9: before VF_CACHE_INVALIDATE we need to emit a NULL
1627 * pipe control.
1628 */
Chris Wilsonc0336662016-05-06 15:40:21 +01001629 if (IS_GEN9(request->i915))
Ben Widawsky1a5a9ce2015-12-17 09:49:57 -08001630 vf_flush_wa = true;
Mika Kuoppala0b2d0932016-06-07 17:19:10 +03001631
1632 /* WaForGAMHang:kbl */
1633 if (IS_KBL_REVID(request->i915, 0, KBL_REVID_B0))
1634 dc_flush_wa = true;
Ben Widawsky1a5a9ce2015-12-17 09:49:57 -08001635 }
Imre Deak9647ff32015-01-25 13:27:11 -08001636
Mika Kuoppala0b2d0932016-06-07 17:19:10 +03001637 len = 6;
1638
1639 if (vf_flush_wa)
1640 len += 6;
1641
1642 if (dc_flush_wa)
1643 len += 12;
1644
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001645 cs = intel_ring_begin(request, len);
1646 if (IS_ERR(cs))
1647 return PTR_ERR(cs);
Oscar Mateo47122742014-07-24 17:04:28 +01001648
Tvrtko Ursulin9f235df2017-02-16 12:23:25 +00001649 if (vf_flush_wa)
1650 cs = gen8_emit_pipe_control(cs, 0, 0);
Imre Deak9647ff32015-01-25 13:27:11 -08001651
Tvrtko Ursulin9f235df2017-02-16 12:23:25 +00001652 if (dc_flush_wa)
1653 cs = gen8_emit_pipe_control(cs, PIPE_CONTROL_DC_FLUSH_ENABLE,
1654 0);
Mika Kuoppala0b2d0932016-06-07 17:19:10 +03001655
Tvrtko Ursulin9f235df2017-02-16 12:23:25 +00001656 cs = gen8_emit_pipe_control(cs, flags, scratch_addr);
Mika Kuoppala0b2d0932016-06-07 17:19:10 +03001657
Tvrtko Ursulin9f235df2017-02-16 12:23:25 +00001658 if (dc_flush_wa)
1659 cs = gen8_emit_pipe_control(cs, PIPE_CONTROL_CS_STALL, 0);
Mika Kuoppala0b2d0932016-06-07 17:19:10 +03001660
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001661 intel_ring_advance(request, cs);
Oscar Mateo47122742014-07-24 17:04:28 +01001662
1663 return 0;
1664}
1665
Chris Wilson7c17d372016-01-20 15:43:35 +02001666/*
1667 * Reserve space for 2 NOOPs at the end of each request to be
1668 * used as a workaround for not being allowed to do lite
1669 * restore with HEAD==TAIL (WaIdleLiteRestore).
1670 */
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001671static void gen8_emit_wa_tail(struct drm_i915_gem_request *request, u32 *cs)
Oscar Mateo4da46e12014-07-24 17:04:27 +01001672{
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001673 *cs++ = MI_NOOP;
1674 *cs++ = MI_NOOP;
1675 request->wa_tail = intel_ring_offset(request, cs);
Chris Wilsoncaddfe72016-10-28 13:58:52 +01001676}
Oscar Mateo4da46e12014-07-24 17:04:27 +01001677
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001678static void gen8_emit_breadcrumb(struct drm_i915_gem_request *request, u32 *cs)
Chris Wilsoncaddfe72016-10-28 13:58:52 +01001679{
Chris Wilson7c17d372016-01-20 15:43:35 +02001680 /* w/a: bit 5 needs to be zero for MI_FLUSH_DW address. */
1681 BUILD_BUG_ON(I915_GEM_HWS_INDEX_ADDR & (1 << 5));
Oscar Mateo4da46e12014-07-24 17:04:27 +01001682
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001683 *cs++ = (MI_FLUSH_DW + 1) | MI_FLUSH_DW_OP_STOREDW;
1684 *cs++ = intel_hws_seqno_address(request->engine) | MI_FLUSH_DW_USE_GTT;
1685 *cs++ = 0;
1686 *cs++ = request->global_seqno;
1687 *cs++ = MI_USER_INTERRUPT;
1688 *cs++ = MI_NOOP;
1689 request->tail = intel_ring_offset(request, cs);
Chris Wilsoned1501d2017-03-27 14:14:12 +01001690 assert_ring_tail_valid(request->ring, request->tail);
Chris Wilsoncaddfe72016-10-28 13:58:52 +01001691
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001692 gen8_emit_wa_tail(request, cs);
Chris Wilson7c17d372016-01-20 15:43:35 +02001693}
Oscar Mateo4da46e12014-07-24 17:04:27 +01001694
Chris Wilson98f29e82016-10-28 13:58:51 +01001695static const int gen8_emit_breadcrumb_sz = 6 + WA_TAIL_DWORDS;
1696
Chris Wilsoncaddfe72016-10-28 13:58:52 +01001697static void gen8_emit_breadcrumb_render(struct drm_i915_gem_request *request,
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001698 u32 *cs)
Chris Wilson7c17d372016-01-20 15:43:35 +02001699{
Michał Winiarskice81a652016-04-12 15:51:55 +02001700 /* We're using qword write, seqno should be aligned to 8 bytes. */
1701 BUILD_BUG_ON(I915_GEM_HWS_INDEX & 1);
1702
Chris Wilson7c17d372016-01-20 15:43:35 +02001703 /* w/a for post sync ops following a GPGPU operation we
1704 * need a prior CS_STALL, which is emitted by the flush
1705 * following the batch.
Michel Thierry53292cd2015-04-15 18:11:33 +01001706 */
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001707 *cs++ = GFX_OP_PIPE_CONTROL(6);
1708 *cs++ = PIPE_CONTROL_GLOBAL_GTT_IVB | PIPE_CONTROL_CS_STALL |
1709 PIPE_CONTROL_QW_WRITE;
1710 *cs++ = intel_hws_seqno_address(request->engine);
1711 *cs++ = 0;
1712 *cs++ = request->global_seqno;
Michał Winiarskice81a652016-04-12 15:51:55 +02001713 /* We're thrashing one dword of HWS. */
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001714 *cs++ = 0;
1715 *cs++ = MI_USER_INTERRUPT;
1716 *cs++ = MI_NOOP;
1717 request->tail = intel_ring_offset(request, cs);
Chris Wilsoned1501d2017-03-27 14:14:12 +01001718 assert_ring_tail_valid(request->ring, request->tail);
Chris Wilsoncaddfe72016-10-28 13:58:52 +01001719
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001720 gen8_emit_wa_tail(request, cs);
Oscar Mateo4da46e12014-07-24 17:04:27 +01001721}
1722
Chris Wilson98f29e82016-10-28 13:58:51 +01001723static const int gen8_emit_breadcrumb_render_sz = 8 + WA_TAIL_DWORDS;
1724
John Harrison87531812015-05-29 17:43:44 +01001725static int gen8_init_rcs_context(struct drm_i915_gem_request *req)
Thomas Daniele7778be2014-12-02 12:50:48 +00001726{
1727 int ret;
1728
Tvrtko Ursulin4ac96592017-02-14 15:00:17 +00001729 ret = intel_ring_workarounds_emit(req);
Thomas Daniele7778be2014-12-02 12:50:48 +00001730 if (ret)
1731 return ret;
1732
Peter Antoine3bbaba02015-07-10 20:13:11 +03001733 ret = intel_rcs_context_init_mocs(req);
1734 /*
1735 * Failing to program the MOCS is non-fatal.The system will not
1736 * run at peak performance. So generate an error and carry on.
1737 */
1738 if (ret)
1739 DRM_ERROR("MOCS failed to program: expect performance issues.\n");
1740
Chris Wilson4e50f082016-10-28 13:58:31 +01001741 return i915_gem_render_state_emit(req);
Thomas Daniele7778be2014-12-02 12:50:48 +00001742}
1743
Oscar Mateo73e4d072014-07-24 17:04:48 +01001744/**
1745 * intel_logical_ring_cleanup() - deallocate the Engine Command Streamer
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01001746 * @engine: Engine Command Streamer.
Oscar Mateo73e4d072014-07-24 17:04:48 +01001747 */
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001748void intel_logical_ring_cleanup(struct intel_engine_cs *engine)
Oscar Mateo454afeb2014-07-24 17:04:22 +01001749{
John Harrison6402c332014-10-31 12:00:26 +00001750 struct drm_i915_private *dev_priv;
Oscar Mateo9832b9d2014-07-24 17:04:30 +01001751
Tvrtko Ursulin27af5ee2016-04-04 12:11:56 +01001752 /*
1753 * Tasklet cannot be active at this point due intel_mark_active/idle
1754 * so this is just for documentation.
1755 */
Mika Kuoppalab620e872017-09-22 15:43:03 +03001756 if (WARN_ON(test_bit(TASKLET_STATE_SCHED, &engine->execlists.irq_tasklet.state)))
1757 tasklet_kill(&engine->execlists.irq_tasklet);
Tvrtko Ursulin27af5ee2016-04-04 12:11:56 +01001758
Chris Wilsonc0336662016-05-06 15:40:21 +01001759 dev_priv = engine->i915;
John Harrison6402c332014-10-31 12:00:26 +00001760
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001761 if (engine->buffer) {
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001762 WARN_ON((I915_READ_MODE(engine) & MODE_IDLE) == 0);
Dave Gordonb0366a52015-12-08 15:02:36 +00001763 }
Oscar Mateo48d82382014-07-24 17:04:23 +01001764
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001765 if (engine->cleanup)
1766 engine->cleanup(engine);
Oscar Mateo48d82382014-07-24 17:04:23 +01001767
Chris Wilsone8a9c582016-12-18 15:37:20 +00001768 intel_engine_cleanup_common(engine);
Arun Siluvery17ee9502015-06-19 19:07:01 +01001769
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001770 lrc_destroy_wa_ctx(engine);
Chris Wilsonc0336662016-05-06 15:40:21 +01001771 engine->i915 = NULL;
Akash Goel3b3f1652016-10-13 22:44:48 +05301772 dev_priv->engine[engine->id] = NULL;
1773 kfree(engine);
Oscar Mateo454afeb2014-07-24 17:04:22 +01001774}
1775
Chris Wilsonff44ad52017-03-16 17:13:03 +00001776static void execlists_set_default_submission(struct intel_engine_cs *engine)
Chris Wilsonddd66c52016-08-02 22:50:31 +01001777{
Chris Wilsonff44ad52017-03-16 17:13:03 +00001778 engine->submit_request = execlists_submit_request;
Chris Wilson27a5f612017-09-15 18:31:00 +01001779 engine->cancel_requests = execlists_cancel_requests;
Chris Wilsonff44ad52017-03-16 17:13:03 +00001780 engine->schedule = execlists_schedule;
Mika Kuoppalab620e872017-09-22 15:43:03 +03001781 engine->execlists.irq_tasklet.func = intel_lrc_irq_handler;
Chris Wilsonddd66c52016-08-02 22:50:31 +01001782}
1783
Tvrtko Ursulinc9cacf92016-01-12 17:32:34 +00001784static void
Chris Wilsone1382ef2016-05-06 15:40:20 +01001785logical_ring_default_vfuncs(struct intel_engine_cs *engine)
Tvrtko Ursulinc9cacf92016-01-12 17:32:34 +00001786{
1787 /* Default vfuncs which can be overriden by each engine. */
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001788 engine->init_hw = gen8_init_common_ring;
Chris Wilson821ed7d2016-09-09 14:11:53 +01001789 engine->reset_hw = reset_common_ring;
Chris Wilsone8a9c582016-12-18 15:37:20 +00001790
1791 engine->context_pin = execlists_context_pin;
1792 engine->context_unpin = execlists_context_unpin;
1793
Chris Wilsonf73e7392016-12-18 15:37:24 +00001794 engine->request_alloc = execlists_request_alloc;
1795
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001796 engine->emit_flush = gen8_emit_flush;
Chris Wilson9b81d552016-10-28 13:58:50 +01001797 engine->emit_breadcrumb = gen8_emit_breadcrumb;
Chris Wilson98f29e82016-10-28 13:58:51 +01001798 engine->emit_breadcrumb_sz = gen8_emit_breadcrumb_sz;
Chris Wilsonff44ad52017-03-16 17:13:03 +00001799
1800 engine->set_default_submission = execlists_set_default_submission;
Chris Wilsonddd66c52016-08-02 22:50:31 +01001801
Chris Wilson31bb59c2016-07-01 17:23:27 +01001802 engine->irq_enable = gen8_logical_ring_enable_irq;
1803 engine->irq_disable = gen8_logical_ring_disable_irq;
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001804 engine->emit_bb_start = gen8_emit_bb_start;
Tvrtko Ursulinc9cacf92016-01-12 17:32:34 +00001805}
1806
Tvrtko Ursulind9f3af92016-01-12 17:32:35 +00001807static inline void
Dave Gordonc2c7f242016-07-13 16:03:35 +01001808logical_ring_default_irqs(struct intel_engine_cs *engine)
Tvrtko Ursulind9f3af92016-01-12 17:32:35 +00001809{
Dave Gordonc2c7f242016-07-13 16:03:35 +01001810 unsigned shift = engine->irq_shift;
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001811 engine->irq_enable_mask = GT_RENDER_USER_INTERRUPT << shift;
1812 engine->irq_keep_mask = GT_CONTEXT_SWITCH_INTERRUPT << shift;
Tvrtko Ursulind9f3af92016-01-12 17:32:35 +00001813}
1814
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01001815static void
1816logical_ring_setup(struct intel_engine_cs *engine)
1817{
1818 struct drm_i915_private *dev_priv = engine->i915;
1819 enum forcewake_domains fw_domains;
1820
Tvrtko Ursulin019bf272016-07-13 16:03:41 +01001821 intel_engine_setup_common(engine);
1822
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01001823 /* Intentionally left blank. */
1824 engine->buffer = NULL;
1825
1826 fw_domains = intel_uncore_forcewake_for_reg(dev_priv,
1827 RING_ELSP(engine),
1828 FW_REG_WRITE);
1829
1830 fw_domains |= intel_uncore_forcewake_for_reg(dev_priv,
1831 RING_CONTEXT_STATUS_PTR(engine),
1832 FW_REG_READ | FW_REG_WRITE);
1833
1834 fw_domains |= intel_uncore_forcewake_for_reg(dev_priv,
1835 RING_CONTEXT_STATUS_BUF_BASE(engine),
1836 FW_REG_READ);
1837
Mika Kuoppalab620e872017-09-22 15:43:03 +03001838 engine->execlists.fw_domains = fw_domains;
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01001839
Mika Kuoppalab620e872017-09-22 15:43:03 +03001840 tasklet_init(&engine->execlists.irq_tasklet,
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01001841 intel_lrc_irq_handler, (unsigned long)engine);
1842
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01001843 logical_ring_default_vfuncs(engine);
1844 logical_ring_default_irqs(engine);
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01001845}
1846
Daniele Ceraolo Spurio486e93f2017-09-13 09:56:02 +01001847static int logical_ring_init(struct intel_engine_cs *engine)
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01001848{
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01001849 int ret;
1850
Tvrtko Ursulin019bf272016-07-13 16:03:41 +01001851 ret = intel_engine_init_common(engine);
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01001852 if (ret)
1853 goto error;
1854
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01001855 return 0;
1856
1857error:
1858 intel_logical_ring_cleanup(engine);
1859 return ret;
1860}
1861
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +01001862int logical_render_ring_init(struct intel_engine_cs *engine)
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01001863{
1864 struct drm_i915_private *dev_priv = engine->i915;
1865 int ret;
1866
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01001867 logical_ring_setup(engine);
1868
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01001869 if (HAS_L3_DPF(dev_priv))
1870 engine->irq_keep_mask |= GT_RENDER_L3_PARITY_ERROR_INTERRUPT;
1871
1872 /* Override some for render ring. */
1873 if (INTEL_GEN(dev_priv) >= 9)
1874 engine->init_hw = gen9_init_render_ring;
1875 else
1876 engine->init_hw = gen8_init_render_ring;
1877 engine->init_context = gen8_init_rcs_context;
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01001878 engine->emit_flush = gen8_emit_flush_render;
Chris Wilson9b81d552016-10-28 13:58:50 +01001879 engine->emit_breadcrumb = gen8_emit_breadcrumb_render;
Chris Wilson98f29e82016-10-28 13:58:51 +01001880 engine->emit_breadcrumb_sz = gen8_emit_breadcrumb_render_sz;
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01001881
Chris Wilsonf51455d2017-01-10 14:47:34 +00001882 ret = intel_engine_create_scratch(engine, PAGE_SIZE);
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01001883 if (ret)
1884 return ret;
1885
1886 ret = intel_init_workaround_bb(engine);
1887 if (ret) {
1888 /*
1889 * We continue even if we fail to initialize WA batch
1890 * because we only expect rare glitches but nothing
1891 * critical to prevent us from using GPU
1892 */
1893 DRM_ERROR("WA batch buffer initialization failed: %d\n",
1894 ret);
1895 }
1896
Tvrtko Ursulind038fc72016-12-16 13:18:42 +00001897 return logical_ring_init(engine);
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01001898}
1899
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +01001900int logical_xcs_ring_init(struct intel_engine_cs *engine)
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01001901{
1902 logical_ring_setup(engine);
1903
1904 return logical_ring_init(engine);
1905}
1906
Jeff McGee0cea6502015-02-13 10:27:56 -06001907static u32
Chris Wilsonc0336662016-05-06 15:40:21 +01001908make_rpcs(struct drm_i915_private *dev_priv)
Jeff McGee0cea6502015-02-13 10:27:56 -06001909{
1910 u32 rpcs = 0;
1911
1912 /*
1913 * No explicit RPCS request is needed to ensure full
1914 * slice/subslice/EU enablement prior to Gen9.
1915 */
Chris Wilsonc0336662016-05-06 15:40:21 +01001916 if (INTEL_GEN(dev_priv) < 9)
Jeff McGee0cea6502015-02-13 10:27:56 -06001917 return 0;
1918
1919 /*
1920 * Starting in Gen9, render power gating can leave
1921 * slice/subslice/EU in a partially enabled state. We
1922 * must make an explicit request through RPCS for full
1923 * enablement.
1924 */
Imre Deak43b67992016-08-31 19:13:02 +03001925 if (INTEL_INFO(dev_priv)->sseu.has_slice_pg) {
Jeff McGee0cea6502015-02-13 10:27:56 -06001926 rpcs |= GEN8_RPCS_S_CNT_ENABLE;
Imre Deakf08a0c92016-08-31 19:13:04 +03001927 rpcs |= hweight8(INTEL_INFO(dev_priv)->sseu.slice_mask) <<
Jeff McGee0cea6502015-02-13 10:27:56 -06001928 GEN8_RPCS_S_CNT_SHIFT;
1929 rpcs |= GEN8_RPCS_ENABLE;
1930 }
1931
Imre Deak43b67992016-08-31 19:13:02 +03001932 if (INTEL_INFO(dev_priv)->sseu.has_subslice_pg) {
Jeff McGee0cea6502015-02-13 10:27:56 -06001933 rpcs |= GEN8_RPCS_SS_CNT_ENABLE;
Imre Deak57ec1712016-08-31 19:13:05 +03001934 rpcs |= hweight8(INTEL_INFO(dev_priv)->sseu.subslice_mask) <<
Jeff McGee0cea6502015-02-13 10:27:56 -06001935 GEN8_RPCS_SS_CNT_SHIFT;
1936 rpcs |= GEN8_RPCS_ENABLE;
1937 }
1938
Imre Deak43b67992016-08-31 19:13:02 +03001939 if (INTEL_INFO(dev_priv)->sseu.has_eu_pg) {
1940 rpcs |= INTEL_INFO(dev_priv)->sseu.eu_per_subslice <<
Jeff McGee0cea6502015-02-13 10:27:56 -06001941 GEN8_RPCS_EU_MIN_SHIFT;
Imre Deak43b67992016-08-31 19:13:02 +03001942 rpcs |= INTEL_INFO(dev_priv)->sseu.eu_per_subslice <<
Jeff McGee0cea6502015-02-13 10:27:56 -06001943 GEN8_RPCS_EU_MAX_SHIFT;
1944 rpcs |= GEN8_RPCS_ENABLE;
1945 }
1946
1947 return rpcs;
1948}
1949
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001950static u32 intel_lr_indirect_ctx_offset(struct intel_engine_cs *engine)
Michel Thierry71562912016-02-23 10:31:49 +00001951{
1952 u32 indirect_ctx_offset;
1953
Chris Wilsonc0336662016-05-06 15:40:21 +01001954 switch (INTEL_GEN(engine->i915)) {
Michel Thierry71562912016-02-23 10:31:49 +00001955 default:
Chris Wilsonc0336662016-05-06 15:40:21 +01001956 MISSING_CASE(INTEL_GEN(engine->i915));
Michel Thierry71562912016-02-23 10:31:49 +00001957 /* fall through */
Michel Thierry7bd0a2c2017-06-06 13:30:38 -07001958 case 10:
1959 indirect_ctx_offset =
1960 GEN10_CTX_RCS_INDIRECT_CTX_OFFSET_DEFAULT;
1961 break;
Michel Thierry71562912016-02-23 10:31:49 +00001962 case 9:
1963 indirect_ctx_offset =
1964 GEN9_CTX_RCS_INDIRECT_CTX_OFFSET_DEFAULT;
1965 break;
1966 case 8:
1967 indirect_ctx_offset =
1968 GEN8_CTX_RCS_INDIRECT_CTX_OFFSET_DEFAULT;
1969 break;
1970 }
1971
1972 return indirect_ctx_offset;
1973}
1974
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00001975static void execlists_init_reg_state(u32 *regs,
Chris Wilsona3aabe82016-10-04 21:11:26 +01001976 struct i915_gem_context *ctx,
1977 struct intel_engine_cs *engine,
1978 struct intel_ring *ring)
Oscar Mateo8670d6f2014-07-24 17:04:17 +01001979{
Chris Wilsona3aabe82016-10-04 21:11:26 +01001980 struct drm_i915_private *dev_priv = engine->i915;
1981 struct i915_hw_ppgtt *ppgtt = ctx->ppgtt ?: dev_priv->mm.aliasing_ppgtt;
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00001982 u32 base = engine->mmio_base;
1983 bool rcs = engine->id == RCS;
Oscar Mateo8670d6f2014-07-24 17:04:17 +01001984
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00001985 /* A context is actually a big batch buffer with several
1986 * MI_LOAD_REGISTER_IMM commands followed by (reg, value) pairs. The
1987 * values we are setting here are only for the first context restore:
1988 * on a subsequent save, the GPU will recreate this batchbuffer with new
1989 * values (including all the missing MI_LOAD_REGISTER_IMM commands that
1990 * we are not initializing here).
1991 */
1992 regs[CTX_LRI_HEADER_0] = MI_LOAD_REGISTER_IMM(rcs ? 14 : 11) |
1993 MI_LRI_FORCE_POSTED;
1994
1995 CTX_REG(regs, CTX_CONTEXT_CONTROL, RING_CONTEXT_CONTROL(engine),
1996 _MASKED_BIT_ENABLE(CTX_CTRL_INHIBIT_SYN_CTX_SWITCH |
1997 CTX_CTRL_ENGINE_CTX_RESTORE_INHIBIT |
1998 (HAS_RESOURCE_STREAMER(dev_priv) ?
1999 CTX_CTRL_RS_CTX_ENABLE : 0)));
2000 CTX_REG(regs, CTX_RING_HEAD, RING_HEAD(base), 0);
2001 CTX_REG(regs, CTX_RING_TAIL, RING_TAIL(base), 0);
2002 CTX_REG(regs, CTX_RING_BUFFER_START, RING_START(base), 0);
2003 CTX_REG(regs, CTX_RING_BUFFER_CONTROL, RING_CTL(base),
2004 RING_CTL_SIZE(ring->size) | RING_VALID);
2005 CTX_REG(regs, CTX_BB_HEAD_U, RING_BBADDR_UDW(base), 0);
2006 CTX_REG(regs, CTX_BB_HEAD_L, RING_BBADDR(base), 0);
2007 CTX_REG(regs, CTX_BB_STATE, RING_BBSTATE(base), RING_BB_PPGTT);
2008 CTX_REG(regs, CTX_SECOND_BB_HEAD_U, RING_SBBADDR_UDW(base), 0);
2009 CTX_REG(regs, CTX_SECOND_BB_HEAD_L, RING_SBBADDR(base), 0);
2010 CTX_REG(regs, CTX_SECOND_BB_STATE, RING_SBBSTATE(base), 0);
2011 if (rcs) {
Chris Wilson604a8f62017-09-21 14:54:43 +01002012 struct i915_ctx_workarounds *wa_ctx = &engine->wa_ctx;
2013
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002014 CTX_REG(regs, CTX_RCS_INDIRECT_CTX, RING_INDIRECT_CTX(base), 0);
2015 CTX_REG(regs, CTX_RCS_INDIRECT_CTX_OFFSET,
2016 RING_INDIRECT_CTX_OFFSET(base), 0);
Chris Wilson604a8f62017-09-21 14:54:43 +01002017 if (wa_ctx->indirect_ctx.size) {
Chris Wilsonbde13eb2016-08-15 10:49:07 +01002018 u32 ggtt_offset = i915_ggtt_offset(wa_ctx->vma);
Arun Siluvery17ee9502015-06-19 19:07:01 +01002019
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002020 regs[CTX_RCS_INDIRECT_CTX + 1] =
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00002021 (ggtt_offset + wa_ctx->indirect_ctx.offset) |
2022 (wa_ctx->indirect_ctx.size / CACHELINE_BYTES);
Arun Siluvery17ee9502015-06-19 19:07:01 +01002023
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002024 regs[CTX_RCS_INDIRECT_CTX_OFFSET + 1] =
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002025 intel_lr_indirect_ctx_offset(engine) << 6;
Chris Wilson604a8f62017-09-21 14:54:43 +01002026 }
2027
2028 CTX_REG(regs, CTX_BB_PER_CTX_PTR, RING_BB_PER_CTX_PTR(base), 0);
2029 if (wa_ctx->per_ctx.size) {
2030 u32 ggtt_offset = i915_ggtt_offset(wa_ctx->vma);
Arun Siluvery17ee9502015-06-19 19:07:01 +01002031
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002032 regs[CTX_BB_PER_CTX_PTR + 1] =
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00002033 (ggtt_offset + wa_ctx->per_ctx.offset) | 0x01;
Arun Siluvery17ee9502015-06-19 19:07:01 +01002034 }
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002035 }
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002036
2037 regs[CTX_LRI_HEADER_1] = MI_LOAD_REGISTER_IMM(9) | MI_LRI_FORCE_POSTED;
2038
2039 CTX_REG(regs, CTX_CTX_TIMESTAMP, RING_CTX_TIMESTAMP(base), 0);
Ville Syrjälä0d925ea2015-11-04 23:20:11 +02002040 /* PDP values well be assigned later if needed */
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002041 CTX_REG(regs, CTX_PDP3_UDW, GEN8_RING_PDP_UDW(engine, 3), 0);
2042 CTX_REG(regs, CTX_PDP3_LDW, GEN8_RING_PDP_LDW(engine, 3), 0);
2043 CTX_REG(regs, CTX_PDP2_UDW, GEN8_RING_PDP_UDW(engine, 2), 0);
2044 CTX_REG(regs, CTX_PDP2_LDW, GEN8_RING_PDP_LDW(engine, 2), 0);
2045 CTX_REG(regs, CTX_PDP1_UDW, GEN8_RING_PDP_UDW(engine, 1), 0);
2046 CTX_REG(regs, CTX_PDP1_LDW, GEN8_RING_PDP_LDW(engine, 1), 0);
2047 CTX_REG(regs, CTX_PDP0_UDW, GEN8_RING_PDP_UDW(engine, 0), 0);
2048 CTX_REG(regs, CTX_PDP0_LDW, GEN8_RING_PDP_LDW(engine, 0), 0);
Michel Thierryd7b26332015-04-08 12:13:34 +01002049
Chris Wilson949e8ab2017-02-09 14:40:36 +00002050 if (ppgtt && i915_vm_is_48bit(&ppgtt->base)) {
Michel Thierry2dba3232015-07-30 11:06:23 +01002051 /* 64b PPGTT (48bit canonical)
2052 * PDP0_DESCRIPTOR contains the base address to PML4 and
2053 * other PDP Descriptors are ignored.
2054 */
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002055 ASSIGN_CTX_PML4(ppgtt, regs);
Michel Thierry2dba3232015-07-30 11:06:23 +01002056 }
2057
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002058 if (rcs) {
2059 regs[CTX_LRI_HEADER_2] = MI_LOAD_REGISTER_IMM(1);
2060 CTX_REG(regs, CTX_R_PWR_CLK_STATE, GEN8_R_PWR_CLK_STATE,
2061 make_rpcs(dev_priv));
Robert Bragg19f81df2017-06-13 12:23:03 +01002062
2063 i915_oa_init_reg_state(engine, ctx, regs);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002064 }
Chris Wilsona3aabe82016-10-04 21:11:26 +01002065}
2066
2067static int
2068populate_lr_context(struct i915_gem_context *ctx,
2069 struct drm_i915_gem_object *ctx_obj,
2070 struct intel_engine_cs *engine,
2071 struct intel_ring *ring)
2072{
2073 void *vaddr;
2074 int ret;
2075
2076 ret = i915_gem_object_set_to_cpu_domain(ctx_obj, true);
2077 if (ret) {
2078 DRM_DEBUG_DRIVER("Could not set to CPU domain\n");
2079 return ret;
2080 }
2081
2082 vaddr = i915_gem_object_pin_map(ctx_obj, I915_MAP_WB);
2083 if (IS_ERR(vaddr)) {
2084 ret = PTR_ERR(vaddr);
2085 DRM_DEBUG_DRIVER("Could not map object pages! (%d)\n", ret);
2086 return ret;
2087 }
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002088 ctx_obj->mm.dirty = true;
Chris Wilsona3aabe82016-10-04 21:11:26 +01002089
2090 /* The second page of the context object contains some fields which must
2091 * be set up prior to the first execution. */
2092
2093 execlists_init_reg_state(vaddr + LRC_STATE_PN * PAGE_SIZE,
2094 ctx, engine, ring);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002095
Tvrtko Ursulin7d774ca2016-04-12 15:40:42 +01002096 i915_gem_object_unpin_map(ctx_obj);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002097
2098 return 0;
2099}
2100
Chris Wilsone2efd132016-05-24 14:53:34 +01002101static int execlists_context_deferred_alloc(struct i915_gem_context *ctx,
Chris Wilson978f1e02016-04-28 09:56:54 +01002102 struct intel_engine_cs *engine)
Oscar Mateoede7d422014-07-24 17:04:12 +01002103{
Oscar Mateo8c8579172014-07-24 17:04:14 +01002104 struct drm_i915_gem_object *ctx_obj;
Chris Wilson9021ad02016-05-24 14:53:37 +01002105 struct intel_context *ce = &ctx->engine[engine->id];
Chris Wilsonbf3783e2016-08-15 10:48:54 +01002106 struct i915_vma *vma;
Oscar Mateo8c8579172014-07-24 17:04:14 +01002107 uint32_t context_size;
Chris Wilson7e37f882016-08-02 22:50:21 +01002108 struct intel_ring *ring;
Oscar Mateo8c8579172014-07-24 17:04:14 +01002109 int ret;
2110
Chris Wilson9021ad02016-05-24 14:53:37 +01002111 WARN_ON(ce->state);
Oscar Mateoede7d422014-07-24 17:04:12 +01002112
Joonas Lahtinen63ffbcd2017-04-28 10:53:36 +03002113 context_size = round_up(engine->context_size, I915_GTT_PAGE_SIZE);
Oscar Mateo8c8579172014-07-24 17:04:14 +01002114
Michel Thierry0b29c752017-09-13 09:56:00 +01002115 /*
2116 * Before the actual start of the context image, we insert a few pages
2117 * for our own use and for sharing with the GuC.
2118 */
2119 context_size += LRC_HEADER_PAGES * PAGE_SIZE;
Alex Daid1675192015-08-12 15:43:43 +01002120
Tvrtko Ursulin12d79d72016-12-01 14:16:37 +00002121 ctx_obj = i915_gem_object_create(ctx->i915, context_size);
Chris Wilsonfe3db792016-04-25 13:32:13 +01002122 if (IS_ERR(ctx_obj)) {
Dan Carpenter3126a662015-04-30 17:30:50 +03002123 DRM_DEBUG_DRIVER("Alloc LRC backing obj failed.\n");
Chris Wilsonfe3db792016-04-25 13:32:13 +01002124 return PTR_ERR(ctx_obj);
Oscar Mateo8c8579172014-07-24 17:04:14 +01002125 }
2126
Chris Wilsona01cb372017-01-16 15:21:30 +00002127 vma = i915_vma_instance(ctx_obj, &ctx->i915->ggtt.base, NULL);
Chris Wilsonbf3783e2016-08-15 10:48:54 +01002128 if (IS_ERR(vma)) {
2129 ret = PTR_ERR(vma);
2130 goto error_deref_obj;
2131 }
2132
Chris Wilson7e37f882016-08-02 22:50:21 +01002133 ring = intel_engine_create_ring(engine, ctx->ring_size);
Chris Wilsondca33ec2016-08-02 22:50:20 +01002134 if (IS_ERR(ring)) {
2135 ret = PTR_ERR(ring);
Nick Hoathe84fe802015-09-11 12:53:46 +01002136 goto error_deref_obj;
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002137 }
2138
Chris Wilsondca33ec2016-08-02 22:50:20 +01002139 ret = populate_lr_context(ctx, ctx_obj, engine, ring);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002140 if (ret) {
2141 DRM_DEBUG_DRIVER("Failed to populate LRC: %d\n", ret);
Chris Wilsondca33ec2016-08-02 22:50:20 +01002142 goto error_ring_free;
Oscar Mateo84c23772014-07-24 17:04:15 +01002143 }
2144
Chris Wilsondca33ec2016-08-02 22:50:20 +01002145 ce->ring = ring;
Chris Wilsonbf3783e2016-08-15 10:48:54 +01002146 ce->state = vma;
Chuanxiao Dong0d402a22017-05-11 18:07:42 +08002147 ce->initialised |= engine->init_context == NULL;
Oscar Mateoede7d422014-07-24 17:04:12 +01002148
2149 return 0;
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002150
Chris Wilsondca33ec2016-08-02 22:50:20 +01002151error_ring_free:
Chris Wilson7e37f882016-08-02 22:50:21 +01002152 intel_ring_free(ring);
Nick Hoathe84fe802015-09-11 12:53:46 +01002153error_deref_obj:
Chris Wilsonf8c417c2016-07-20 13:31:53 +01002154 i915_gem_object_put(ctx_obj);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002155 return ret;
Oscar Mateoede7d422014-07-24 17:04:12 +01002156}
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002157
Chris Wilson821ed7d2016-09-09 14:11:53 +01002158void intel_lr_context_resume(struct drm_i915_private *dev_priv)
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002159{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00002160 struct intel_engine_cs *engine;
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002161 struct i915_gem_context *ctx;
Akash Goel3b3f1652016-10-13 22:44:48 +05302162 enum intel_engine_id id;
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002163
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002164 /* Because we emit WA_TAIL_DWORDS there may be a disparity
2165 * between our bookkeeping in ce->ring->head and ce->ring->tail and
2166 * that stored in context. As we only write new commands from
2167 * ce->ring->tail onwards, everything before that is junk. If the GPU
2168 * starts reading from its RING_HEAD from the context, it may try to
2169 * execute that junk and die.
2170 *
2171 * So to avoid that we reset the context images upon resume. For
2172 * simplicity, we just zero everything out.
2173 */
Chris Wilson829a0af2017-06-20 12:05:45 +01002174 list_for_each_entry(ctx, &dev_priv->contexts.list, link) {
Akash Goel3b3f1652016-10-13 22:44:48 +05302175 for_each_engine(engine, dev_priv, id) {
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002176 struct intel_context *ce = &ctx->engine[engine->id];
2177 u32 *reg;
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002178
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002179 if (!ce->state)
2180 continue;
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002181
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002182 reg = i915_gem_object_pin_map(ce->state->obj,
2183 I915_MAP_WB);
2184 if (WARN_ON(IS_ERR(reg)))
2185 continue;
Tvrtko Ursulin7d774ca2016-04-12 15:40:42 +01002186
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002187 reg += LRC_STATE_PN * PAGE_SIZE / sizeof(*reg);
2188 reg[CTX_RING_HEAD+1] = 0;
2189 reg[CTX_RING_TAIL+1] = 0;
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002190
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002191 ce->state->obj->mm.dirty = true;
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002192 i915_gem_object_unpin_map(ce->state->obj);
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002193
Chris Wilsone6ba9992017-04-25 14:00:49 +01002194 intel_ring_reset(ce->ring, 0);
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002195 }
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002196 }
2197}