blob: e821c1eba7a44512b5cd9ea03e343aca46d0d1dd [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 */
Chris Wilsona3aabe82016-10-04 21:11:26 +0100211#define WA_TAIL_DWORDS 2
Chris Wilson7e4992a2017-09-28 20:38:59 +0100212#define WA_TAIL_BYTES (sizeof(u32) * WA_TAIL_DWORDS)
Chris Wilsonbeecec92017-10-03 21:34:52 +0100213#define PREEMPT_ID 0x1
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) &&
Maarten Lankhorst8279aaf2017-10-04 11:44:16 +0200247 USES_PPGTT(dev_priv))
Oscar Mateo127f1002014-07-24 17:04:11 +0100248 return 1;
249
250 return 0;
251}
Oscar Mateoede7d422014-07-24 17:04:12 +0100252
Tvrtko Ursulinca825802016-01-15 15:10:27 +0000253/**
254 * intel_lr_context_descriptor_update() - calculate & cache the descriptor
255 * descriptor for a pinned context
Tvrtko Ursulinca825802016-01-15 15:10:27 +0000256 * @ctx: Context to work on
Chris Wilson9021ad02016-05-24 14:53:37 +0100257 * @engine: Engine the descriptor will be used with
Tvrtko Ursulinca825802016-01-15 15:10:27 +0000258 *
259 * The context descriptor encodes various attributes of a context,
260 * including its GTT address and some flags. Because it's fairly
261 * expensive to calculate, we'll just do it once and cache the result,
262 * which remains valid until the context is unpinned.
263 *
Daniel Vetter6e5248b2016-07-15 21:48:06 +0200264 * This is what a descriptor looks like, from LSB to MSB::
265 *
Mika Kuoppala2355cf02017-01-27 15:03:09 +0200266 * bits 0-11: flags, GEN8_CTX_* (cached in ctx->desc_template)
Daniel Vetter6e5248b2016-07-15 21:48:06 +0200267 * bits 12-31: LRCA, GTT address of (the HWSP of) this context
268 * bits 32-52: ctx ID, a globally unique tag
269 * bits 53-54: mbz, reserved for use by hardware
270 * bits 55-63: group ID, currently unused and set to 0
Tvrtko Ursulinca825802016-01-15 15:10:27 +0000271 */
272static void
Chris Wilsone2efd132016-05-24 14:53:34 +0100273intel_lr_context_descriptor_update(struct i915_gem_context *ctx,
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +0000274 struct intel_engine_cs *engine)
Tvrtko Ursulinca825802016-01-15 15:10:27 +0000275{
Chris Wilson9021ad02016-05-24 14:53:37 +0100276 struct intel_context *ce = &ctx->engine[engine->id];
Chris Wilson7069b142016-04-28 09:56:52 +0100277 u64 desc;
Tvrtko Ursulinca825802016-01-15 15:10:27 +0000278
Chris Wilson7069b142016-04-28 09:56:52 +0100279 BUILD_BUG_ON(MAX_CONTEXT_HW_ID > (1<<GEN8_CTX_ID_WIDTH));
280
Mika Kuoppala2355cf02017-01-27 15:03:09 +0200281 desc = ctx->desc_template; /* bits 0-11 */
Michel Thierry0b29c752017-09-13 09:56:00 +0100282 desc |= i915_ggtt_offset(ce->state) + LRC_HEADER_PAGES * PAGE_SIZE;
Chris Wilson9021ad02016-05-24 14:53:37 +0100283 /* bits 12-31 */
Chris Wilson7069b142016-04-28 09:56:52 +0100284 desc |= (u64)ctx->hw_id << GEN8_CTX_ID_SHIFT; /* bits 32-52 */
Tvrtko Ursulinca825802016-01-15 15:10:27 +0000285
Chris Wilson9021ad02016-05-24 14:53:37 +0100286 ce->lrc_desc = desc;
Tvrtko Ursulinca825802016-01-15 15:10:27 +0000287}
288
Chris Wilson27606fd2017-09-16 21:44:13 +0100289static struct i915_priolist *
290lookup_priolist(struct intel_engine_cs *engine,
291 struct i915_priotree *pt,
292 int prio)
Chris Wilson08dd3e12017-09-16 21:44:12 +0100293{
Mika Kuoppalab620e872017-09-22 15:43:03 +0300294 struct intel_engine_execlists * const execlists = &engine->execlists;
Chris Wilson08dd3e12017-09-16 21:44:12 +0100295 struct i915_priolist *p;
296 struct rb_node **parent, *rb;
297 bool first = true;
298
Mika Kuoppalab620e872017-09-22 15:43:03 +0300299 if (unlikely(execlists->no_priolist))
Chris Wilson08dd3e12017-09-16 21:44:12 +0100300 prio = I915_PRIORITY_NORMAL;
301
302find_priolist:
303 /* most positive priority is scheduled first, equal priorities fifo */
304 rb = NULL;
Mika Kuoppalab620e872017-09-22 15:43:03 +0300305 parent = &execlists->queue.rb_node;
Chris Wilson08dd3e12017-09-16 21:44:12 +0100306 while (*parent) {
307 rb = *parent;
308 p = rb_entry(rb, typeof(*p), node);
309 if (prio > p->priority) {
310 parent = &rb->rb_left;
311 } else if (prio < p->priority) {
312 parent = &rb->rb_right;
313 first = false;
314 } else {
Chris Wilson27606fd2017-09-16 21:44:13 +0100315 return p;
Chris Wilson08dd3e12017-09-16 21:44:12 +0100316 }
317 }
318
319 if (prio == I915_PRIORITY_NORMAL) {
Mika Kuoppalab620e872017-09-22 15:43:03 +0300320 p = &execlists->default_priolist;
Chris Wilson08dd3e12017-09-16 21:44:12 +0100321 } else {
322 p = kmem_cache_alloc(engine->i915->priorities, GFP_ATOMIC);
323 /* Convert an allocation failure to a priority bump */
324 if (unlikely(!p)) {
325 prio = I915_PRIORITY_NORMAL; /* recurses just once */
326
327 /* To maintain ordering with all rendering, after an
328 * allocation failure we have to disable all scheduling.
329 * Requests will then be executed in fifo, and schedule
330 * will ensure that dependencies are emitted in fifo.
331 * There will be still some reordering with existing
332 * requests, so if userspace lied about their
333 * dependencies that reordering may be visible.
334 */
Mika Kuoppalab620e872017-09-22 15:43:03 +0300335 execlists->no_priolist = true;
Chris Wilson08dd3e12017-09-16 21:44:12 +0100336 goto find_priolist;
337 }
338 }
339
340 p->priority = prio;
Chris Wilson27606fd2017-09-16 21:44:13 +0100341 INIT_LIST_HEAD(&p->requests);
Chris Wilson08dd3e12017-09-16 21:44:12 +0100342 rb_link_node(&p->node, rb, parent);
Mika Kuoppalab620e872017-09-22 15:43:03 +0300343 rb_insert_color(&p->node, &execlists->queue);
Chris Wilson08dd3e12017-09-16 21:44:12 +0100344
Chris Wilson08dd3e12017-09-16 21:44:12 +0100345 if (first)
Mika Kuoppalab620e872017-09-22 15:43:03 +0300346 execlists->first = &p->node;
Chris Wilson08dd3e12017-09-16 21:44:12 +0100347
Chris Wilson27606fd2017-09-16 21:44:13 +0100348 return ptr_pack_bits(p, first, 1);
Chris Wilson08dd3e12017-09-16 21:44:12 +0100349}
350
Chris Wilson7e4992a2017-09-28 20:38:59 +0100351static void unwind_wa_tail(struct drm_i915_gem_request *rq)
352{
353 rq->tail = intel_ring_wrap(rq->ring, rq->wa_tail - WA_TAIL_BYTES);
354 assert_ring_tail_valid(rq->ring, rq->tail);
355}
356
357static void unwind_incomplete_requests(struct intel_engine_cs *engine)
358{
359 struct drm_i915_gem_request *rq, *rn;
Michał Winiarski097a9482017-09-28 20:39:01 +0100360 struct i915_priolist *uninitialized_var(p);
361 int last_prio = I915_PRIORITY_INVALID;
Chris Wilson7e4992a2017-09-28 20:38:59 +0100362
363 lockdep_assert_held(&engine->timeline->lock);
364
365 list_for_each_entry_safe_reverse(rq, rn,
366 &engine->timeline->requests,
367 link) {
Chris Wilson7e4992a2017-09-28 20:38:59 +0100368 if (i915_gem_request_completed(rq))
369 return;
370
371 __i915_gem_request_unsubmit(rq);
372 unwind_wa_tail(rq);
373
Michał Winiarski097a9482017-09-28 20:39:01 +0100374 GEM_BUG_ON(rq->priotree.priority == I915_PRIORITY_INVALID);
375 if (rq->priotree.priority != last_prio) {
376 p = lookup_priolist(engine,
377 &rq->priotree,
378 rq->priotree.priority);
379 p = ptr_mask_bits(p, 1);
380
381 last_prio = rq->priotree.priority;
382 }
383
384 list_add(&rq->priotree.link, &p->requests);
Chris Wilson7e4992a2017-09-28 20:38:59 +0100385 }
386}
387
Chris Wilsonbbd6c472016-09-09 14:11:45 +0100388static inline void
389execlists_context_status_change(struct drm_i915_gem_request *rq,
390 unsigned long status)
Ben Widawsky84b790f2014-07-24 17:04:36 +0100391{
Chris Wilsonbbd6c472016-09-09 14:11:45 +0100392 /*
393 * Only used when GVT-g is enabled now. When GVT-g is disabled,
394 * The compiler should eliminate this function as dead-code.
395 */
396 if (!IS_ENABLED(CONFIG_DRM_I915_GVT))
397 return;
Ben Widawsky84b790f2014-07-24 17:04:36 +0100398
Changbin Du3fc03062017-03-13 10:47:11 +0800399 atomic_notifier_call_chain(&rq->engine->context_status_notifier,
400 status, rq);
Ben Widawsky84b790f2014-07-24 17:04:36 +0100401}
402
Tvrtko Ursulinc6a2ac72016-02-26 16:58:32 +0000403static void
404execlists_update_context_pdps(struct i915_hw_ppgtt *ppgtt, u32 *reg_state)
405{
406 ASSIGN_CTX_PDP(ppgtt, reg_state, 3);
407 ASSIGN_CTX_PDP(ppgtt, reg_state, 2);
408 ASSIGN_CTX_PDP(ppgtt, reg_state, 1);
409 ASSIGN_CTX_PDP(ppgtt, reg_state, 0);
410}
411
Chris Wilson70c2a242016-09-09 14:11:46 +0100412static u64 execlists_update_context(struct drm_i915_gem_request *rq)
Oscar Mateoae1250b2014-07-24 17:04:37 +0100413{
Chris Wilson70c2a242016-09-09 14:11:46 +0100414 struct intel_context *ce = &rq->ctx->engine[rq->engine->id];
Zhi Wang04da8112017-02-06 18:37:16 +0800415 struct i915_hw_ppgtt *ppgtt =
416 rq->ctx->ppgtt ?: rq->i915->mm.aliasing_ppgtt;
Chris Wilson70c2a242016-09-09 14:11:46 +0100417 u32 *reg_state = ce->lrc_reg_state;
Oscar Mateoae1250b2014-07-24 17:04:37 +0100418
Chris Wilsone6ba9992017-04-25 14:00:49 +0100419 reg_state[CTX_RING_TAIL+1] = intel_ring_set_tail(rq->ring, rq->tail);
Oscar Mateoae1250b2014-07-24 17:04:37 +0100420
Tvrtko Ursulinc6a2ac72016-02-26 16:58:32 +0000421 /* True 32b PPGTT with dynamic page allocation: update PDP
422 * registers and point the unallocated PDPs to scratch page.
423 * PML4 is allocated during ppgtt init, so this is not needed
424 * in 48-bit mode.
425 */
Chris Wilson949e8ab2017-02-09 14:40:36 +0000426 if (ppgtt && !i915_vm_is_48bit(&ppgtt->base))
Tvrtko Ursulinc6a2ac72016-02-26 16:58:32 +0000427 execlists_update_context_pdps(ppgtt, reg_state);
Chris Wilson70c2a242016-09-09 14:11:46 +0100428
429 return ce->lrc_desc;
Oscar Mateoae1250b2014-07-24 17:04:37 +0100430}
431
Chris Wilsonbeecec92017-10-03 21:34:52 +0100432static inline void elsp_write(u64 desc, u32 __iomem *elsp)
433{
434 writel(upper_32_bits(desc), elsp);
435 writel(lower_32_bits(desc), elsp);
436}
437
Chris Wilson70c2a242016-09-09 14:11:46 +0100438static void execlists_submit_ports(struct intel_engine_cs *engine)
Chris Wilsonbbd6c472016-09-09 14:11:45 +0100439{
Mika Kuoppalab620e872017-09-22 15:43:03 +0300440 struct execlist_port *port = engine->execlists.port;
Chris Wilsonbbd6c472016-09-09 14:11:45 +0100441 u32 __iomem *elsp =
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100442 engine->i915->regs + i915_mmio_reg_offset(RING_ELSP(engine));
443 unsigned int n;
Chris Wilsonbbd6c472016-09-09 14:11:45 +0100444
Mika Kuoppala76e70082017-09-22 15:43:07 +0300445 for (n = execlists_num_ports(&engine->execlists); n--; ) {
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100446 struct drm_i915_gem_request *rq;
447 unsigned int count;
448 u64 desc;
Chris Wilson70c2a242016-09-09 14:11:46 +0100449
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100450 rq = port_unpack(&port[n], &count);
451 if (rq) {
452 GEM_BUG_ON(count > !n);
453 if (!count++)
454 execlists_context_status_change(rq, INTEL_CONTEXT_SCHEDULE_IN);
455 port_set(&port[n], port_pack(rq, count));
456 desc = execlists_update_context(rq);
457 GEM_DEBUG_EXEC(port[n].context_id = upper_32_bits(desc));
458 } else {
459 GEM_BUG_ON(!n);
460 desc = 0;
461 }
462
Chris Wilsonbeecec92017-10-03 21:34:52 +0100463 elsp_write(desc, elsp);
Chris Wilsonbbd6c472016-09-09 14:11:45 +0100464 }
Chris Wilsonbbd6c472016-09-09 14:11:45 +0100465}
466
Chris Wilson70c2a242016-09-09 14:11:46 +0100467static bool ctx_single_port_submission(const struct i915_gem_context *ctx)
Ben Widawsky84b790f2014-07-24 17:04:36 +0100468{
Chris Wilson70c2a242016-09-09 14:11:46 +0100469 return (IS_ENABLED(CONFIG_DRM_I915_GVT) &&
Chris Wilson60958682016-12-31 11:20:11 +0000470 i915_gem_context_force_single_submission(ctx));
Ben Widawsky84b790f2014-07-24 17:04:36 +0100471}
472
Chris Wilson70c2a242016-09-09 14:11:46 +0100473static bool can_merge_ctx(const struct i915_gem_context *prev,
474 const struct i915_gem_context *next)
Michel Thierryacdd8842014-07-24 17:04:38 +0100475{
Chris Wilson70c2a242016-09-09 14:11:46 +0100476 if (prev != next)
477 return false;
Thomas Daniele981e7b2014-07-24 17:04:39 +0100478
Chris Wilson70c2a242016-09-09 14:11:46 +0100479 if (ctx_single_port_submission(prev))
480 return false;
Michel Thierryacdd8842014-07-24 17:04:38 +0100481
Chris Wilson70c2a242016-09-09 14:11:46 +0100482 return true;
483}
Peter Antoine779949f2015-05-11 16:03:27 +0100484
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100485static void port_assign(struct execlist_port *port,
486 struct drm_i915_gem_request *rq)
487{
488 GEM_BUG_ON(rq == port_request(port));
489
490 if (port_isset(port))
491 i915_gem_request_put(port_request(port));
492
493 port_set(port, port_pack(i915_gem_request_get(rq), port_count(port)));
494}
495
Chris Wilsonbeecec92017-10-03 21:34:52 +0100496static void inject_preempt_context(struct intel_engine_cs *engine)
497{
498 struct intel_context *ce =
499 &engine->i915->preempt_context->engine[engine->id];
500 u32 __iomem *elsp =
501 engine->i915->regs + i915_mmio_reg_offset(RING_ELSP(engine));
502 unsigned int n;
503
504 GEM_BUG_ON(engine->i915->preempt_context->hw_id != PREEMPT_ID);
505 GEM_BUG_ON(!IS_ALIGNED(ce->ring->size, WA_TAIL_BYTES));
506
507 memset(ce->ring->vaddr + ce->ring->tail, 0, WA_TAIL_BYTES);
508 ce->ring->tail += WA_TAIL_BYTES;
509 ce->ring->tail &= (ce->ring->size - 1);
510 ce->lrc_reg_state[CTX_RING_TAIL+1] = ce->ring->tail;
511
512 for (n = execlists_num_ports(&engine->execlists); --n; )
513 elsp_write(0, elsp);
514
515 elsp_write(ce->lrc_desc, elsp);
516}
517
518static bool can_preempt(struct intel_engine_cs *engine)
519{
520 return INTEL_INFO(engine->i915)->has_logical_ring_preemption;
521}
522
Chris Wilson70c2a242016-09-09 14:11:46 +0100523static void execlists_dequeue(struct intel_engine_cs *engine)
524{
Mika Kuoppala7a62cc62017-09-22 15:43:06 +0300525 struct intel_engine_execlists * const execlists = &engine->execlists;
526 struct execlist_port *port = execlists->port;
Mika Kuoppala76e70082017-09-22 15:43:07 +0300527 const struct execlist_port * const last_port =
528 &execlists->port[execlists->port_mask];
Chris Wilsonbeecec92017-10-03 21:34:52 +0100529 struct drm_i915_gem_request *last = port_request(port);
Chris Wilson20311bd2016-11-14 20:41:03 +0000530 struct rb_node *rb;
Chris Wilson70c2a242016-09-09 14:11:46 +0100531 bool submit = false;
Michel Thierryacdd8842014-07-24 17:04:38 +0100532
Chris Wilson70c2a242016-09-09 14:11:46 +0100533 /* Hardware submission is through 2 ports. Conceptually each port
534 * has a (RING_START, RING_HEAD, RING_TAIL) tuple. RING_START is
535 * static for a context, and unique to each, so we only execute
536 * requests belonging to a single context from each ring. RING_HEAD
537 * is maintained by the CS in the context image, it marks the place
538 * where it got up to last time, and through RING_TAIL we tell the CS
539 * where we want to execute up to this time.
540 *
541 * In this list the requests are in order of execution. Consecutive
542 * requests from the same context are adjacent in the ringbuffer. We
543 * can combine these requests into a single RING_TAIL update:
544 *
545 * RING_HEAD...req1...req2
546 * ^- RING_TAIL
547 * since to execute req2 the CS must first execute req1.
548 *
549 * Our goal then is to point each port to the end of a consecutive
550 * sequence of requests as being the most optimal (fewest wake ups
551 * and context switches) submission.
552 */
553
Tvrtko Ursulin9f7886d2017-03-21 10:55:11 +0000554 spin_lock_irq(&engine->timeline->lock);
Mika Kuoppala7a62cc62017-09-22 15:43:06 +0300555 rb = execlists->first;
556 GEM_BUG_ON(rb_first(&execlists->queue) != rb);
Chris Wilsonbeecec92017-10-03 21:34:52 +0100557 if (!rb)
558 goto unlock;
559
560 if (last) {
561 /*
562 * Don't resubmit or switch until all outstanding
563 * preemptions (lite-restore) are seen. Then we
564 * know the next preemption status we see corresponds
565 * to this ELSP update.
566 */
567 if (port_count(&port[0]) > 1)
568 goto unlock;
569
570 if (can_preempt(engine) &&
571 rb_entry(rb, struct i915_priolist, node)->priority >
572 max(last->priotree.priority, 0)) {
573 /*
574 * Switch to our empty preempt context so
575 * the state of the GPU is known (idle).
576 */
577 inject_preempt_context(engine);
Chris Wilson4a118ec2017-10-23 22:32:36 +0100578 execlists_set_active(execlists,
579 EXECLISTS_ACTIVE_PREEMPT);
Chris Wilsonbeecec92017-10-03 21:34:52 +0100580 goto unlock;
581 } else {
582 /*
583 * In theory, we could coalesce more requests onto
584 * the second port (the first port is active, with
585 * no preemptions pending). However, that means we
586 * then have to deal with the possible lite-restore
587 * of the second port (as we submit the ELSP, there
588 * may be a context-switch) but also we may complete
589 * the resubmission before the context-switch. Ergo,
590 * coalescing onto the second port will cause a
591 * preemption event, but we cannot predict whether
592 * that will affect port[0] or port[1].
593 *
594 * If the second port is already active, we can wait
595 * until the next context-switch before contemplating
596 * new requests. The GPU will be busy and we should be
597 * able to resubmit the new ELSP before it idles,
598 * avoiding pipeline bubbles (momentary pauses where
599 * the driver is unable to keep up the supply of new
600 * work).
601 */
602 if (port_count(&port[1]))
603 goto unlock;
604
605 /* WaIdleLiteRestore:bdw,skl
606 * Apply the wa NOOPs to prevent
607 * ring:HEAD == req:TAIL as we resubmit the
608 * request. See gen8_emit_breadcrumb() for
609 * where we prepare the padding after the
610 * end of the request.
611 */
612 last->tail = last->wa_tail;
613 }
614 }
615
616 do {
Chris Wilson6c067572017-05-17 13:10:03 +0100617 struct i915_priolist *p = rb_entry(rb, typeof(*p), node);
618 struct drm_i915_gem_request *rq, *rn;
Chris Wilson20311bd2016-11-14 20:41:03 +0000619
Chris Wilson6c067572017-05-17 13:10:03 +0100620 list_for_each_entry_safe(rq, rn, &p->requests, priotree.link) {
621 /*
622 * Can we combine this request with the current port?
623 * It has to be the same context/ringbuffer and not
624 * have any exceptions (e.g. GVT saying never to
625 * combine contexts).
626 *
627 * If we can combine the requests, we can execute both
628 * by updating the RING_TAIL to point to the end of the
629 * second request, and so we never need to tell the
630 * hardware about the first.
Chris Wilson70c2a242016-09-09 14:11:46 +0100631 */
Chris Wilson6c067572017-05-17 13:10:03 +0100632 if (last && !can_merge_ctx(rq->ctx, last->ctx)) {
633 /*
634 * If we are on the second port and cannot
635 * combine this request with the last, then we
636 * are done.
637 */
Mika Kuoppala76e70082017-09-22 15:43:07 +0300638 if (port == last_port) {
Chris Wilson6c067572017-05-17 13:10:03 +0100639 __list_del_many(&p->requests,
640 &rq->priotree.link);
641 goto done;
642 }
Chris Wilson70c2a242016-09-09 14:11:46 +0100643
Chris Wilson6c067572017-05-17 13:10:03 +0100644 /*
645 * If GVT overrides us we only ever submit
646 * port[0], leaving port[1] empty. Note that we
647 * also have to be careful that we don't queue
648 * the same context (even though a different
649 * request) to the second port.
650 */
651 if (ctx_single_port_submission(last->ctx) ||
652 ctx_single_port_submission(rq->ctx)) {
653 __list_del_many(&p->requests,
654 &rq->priotree.link);
655 goto done;
656 }
Chris Wilson70c2a242016-09-09 14:11:46 +0100657
Chris Wilson6c067572017-05-17 13:10:03 +0100658 GEM_BUG_ON(last->ctx == rq->ctx);
Chris Wilson70c2a242016-09-09 14:11:46 +0100659
Chris Wilson6c067572017-05-17 13:10:03 +0100660 if (submit)
661 port_assign(port, last);
662 port++;
Mika Kuoppala7a62cc62017-09-22 15:43:06 +0300663
664 GEM_BUG_ON(port_isset(port));
Chris Wilson6c067572017-05-17 13:10:03 +0100665 }
666
667 INIT_LIST_HEAD(&rq->priotree.link);
Chris Wilson6c067572017-05-17 13:10:03 +0100668 __i915_gem_request_submit(rq);
Mika Kuoppala7a62cc62017-09-22 15:43:06 +0300669 trace_i915_gem_request_in(rq, port_index(port, execlists));
Chris Wilson6c067572017-05-17 13:10:03 +0100670 last = rq;
671 submit = true;
Chris Wilson70c2a242016-09-09 14:11:46 +0100672 }
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000673
Chris Wilson20311bd2016-11-14 20:41:03 +0000674 rb = rb_next(rb);
Mika Kuoppala7a62cc62017-09-22 15:43:06 +0300675 rb_erase(&p->node, &execlists->queue);
Chris Wilson6c067572017-05-17 13:10:03 +0100676 INIT_LIST_HEAD(&p->requests);
677 if (p->priority != I915_PRIORITY_NORMAL)
Chris Wilsonc5cf9a92017-05-17 13:10:04 +0100678 kmem_cache_free(engine->i915->priorities, p);
Chris Wilsonbeecec92017-10-03 21:34:52 +0100679 } while (rb);
Chris Wilson6c067572017-05-17 13:10:03 +0100680done:
Mika Kuoppala7a62cc62017-09-22 15:43:06 +0300681 execlists->first = rb;
Chris Wilson6c067572017-05-17 13:10:03 +0100682 if (submit)
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100683 port_assign(port, last);
Chris Wilsonbeecec92017-10-03 21:34:52 +0100684unlock:
Tvrtko Ursulin9f7886d2017-03-21 10:55:11 +0000685 spin_unlock_irq(&engine->timeline->lock);
Chris Wilson70c2a242016-09-09 14:11:46 +0100686
Chris Wilson4a118ec2017-10-23 22:32:36 +0100687 if (submit) {
688 execlists_set_active(execlists, EXECLISTS_ACTIVE_USER);
Chris Wilson70c2a242016-09-09 14:11:46 +0100689 execlists_submit_ports(engine);
Chris Wilson4a118ec2017-10-23 22:32:36 +0100690 }
Michel Thierryacdd8842014-07-24 17:04:38 +0100691}
692
Chris Wilson3f9e6cd2017-09-25 13:49:27 +0100693static void
694execlist_cancel_port_requests(struct intel_engine_execlists *execlists)
Mika Kuoppalacf4591d2017-09-22 15:43:05 +0300695{
Chris Wilson3f9e6cd2017-09-25 13:49:27 +0100696 struct execlist_port *port = execlists->port;
Mika Kuoppaladc2279e2017-10-10 14:48:57 +0300697 unsigned int num_ports = execlists_num_ports(execlists);
Mika Kuoppalacf4591d2017-09-22 15:43:05 +0300698
Chris Wilson3f9e6cd2017-09-25 13:49:27 +0100699 while (num_ports-- && port_isset(port)) {
Chris Wilson7e44fc22017-09-26 11:17:19 +0100700 struct drm_i915_gem_request *rq = port_request(port);
701
Chris Wilson4a118ec2017-10-23 22:32:36 +0100702 GEM_BUG_ON(!execlists->active);
Chris Wilsond6c05112017-10-03 21:34:47 +0100703 execlists_context_status_change(rq, INTEL_CONTEXT_SCHEDULE_PREEMPTED);
Chris Wilson7e44fc22017-09-26 11:17:19 +0100704 i915_gem_request_put(rq);
705
Chris Wilson3f9e6cd2017-09-25 13:49:27 +0100706 memset(port, 0, sizeof(*port));
707 port++;
708 }
Mika Kuoppalacf4591d2017-09-22 15:43:05 +0300709}
710
Chris Wilson27a5f612017-09-15 18:31:00 +0100711static void execlists_cancel_requests(struct intel_engine_cs *engine)
712{
Mika Kuoppalab620e872017-09-22 15:43:03 +0300713 struct intel_engine_execlists * const execlists = &engine->execlists;
Chris Wilson27a5f612017-09-15 18:31:00 +0100714 struct drm_i915_gem_request *rq, *rn;
715 struct rb_node *rb;
716 unsigned long flags;
Chris Wilson27a5f612017-09-15 18:31:00 +0100717
718 spin_lock_irqsave(&engine->timeline->lock, flags);
719
720 /* Cancel the requests on the HW and clear the ELSP tracker. */
Mika Kuoppalacf4591d2017-09-22 15:43:05 +0300721 execlist_cancel_port_requests(execlists);
Chris Wilson27a5f612017-09-15 18:31:00 +0100722
723 /* Mark all executing requests as skipped. */
724 list_for_each_entry(rq, &engine->timeline->requests, link) {
725 GEM_BUG_ON(!rq->global_seqno);
726 if (!i915_gem_request_completed(rq))
727 dma_fence_set_error(&rq->fence, -EIO);
728 }
729
730 /* Flush the queued requests to the timeline list (for retiring). */
Mika Kuoppalab620e872017-09-22 15:43:03 +0300731 rb = execlists->first;
Chris Wilson27a5f612017-09-15 18:31:00 +0100732 while (rb) {
733 struct i915_priolist *p = rb_entry(rb, typeof(*p), node);
734
735 list_for_each_entry_safe(rq, rn, &p->requests, priotree.link) {
736 INIT_LIST_HEAD(&rq->priotree.link);
Chris Wilson27a5f612017-09-15 18:31:00 +0100737
738 dma_fence_set_error(&rq->fence, -EIO);
739 __i915_gem_request_submit(rq);
740 }
741
742 rb = rb_next(rb);
Mika Kuoppalab620e872017-09-22 15:43:03 +0300743 rb_erase(&p->node, &execlists->queue);
Chris Wilson27a5f612017-09-15 18:31:00 +0100744 INIT_LIST_HEAD(&p->requests);
745 if (p->priority != I915_PRIORITY_NORMAL)
746 kmem_cache_free(engine->i915->priorities, p);
747 }
748
749 /* Remaining _unready_ requests will be nop'ed when submitted */
750
Mika Kuoppalacf4591d2017-09-22 15:43:05 +0300751
Mika Kuoppalab620e872017-09-22 15:43:03 +0300752 execlists->queue = RB_ROOT;
753 execlists->first = NULL;
Chris Wilson3f9e6cd2017-09-25 13:49:27 +0100754 GEM_BUG_ON(port_isset(execlists->port));
Chris Wilson27a5f612017-09-15 18:31:00 +0100755
756 /*
757 * The port is checked prior to scheduling a tasklet, but
758 * just in case we have suspended the tasklet to do the
759 * wedging make sure that when it wakes, it decides there
760 * is no work to do by clearing the irq_posted bit.
761 */
762 clear_bit(ENGINE_IRQ_EXECLIST, &engine->irq_posted);
763
764 spin_unlock_irqrestore(&engine->timeline->lock, flags);
765}
766
Daniel Vetter6e5248b2016-07-15 21:48:06 +0200767/*
Oscar Mateo73e4d072014-07-24 17:04:48 +0100768 * Check the unread Context Status Buffers and manage the submission of new
769 * contexts to the ELSP accordingly.
770 */
Tvrtko Ursulin27af5ee2016-04-04 12:11:56 +0100771static void intel_lrc_irq_handler(unsigned long data)
Thomas Daniele981e7b2014-07-24 17:04:39 +0100772{
Mika Kuoppalab620e872017-09-22 15:43:03 +0300773 struct intel_engine_cs * const engine = (struct intel_engine_cs *)data;
774 struct intel_engine_execlists * const execlists = &engine->execlists;
Chris Wilsonbeecec92017-10-03 21:34:52 +0100775 struct execlist_port * const port = execlists->port;
Chris Wilsonc0336662016-05-06 15:40:21 +0100776 struct drm_i915_private *dev_priv = engine->i915;
Thomas Daniele981e7b2014-07-24 17:04:39 +0100777
Chris Wilson48921262017-04-11 18:58:50 +0100778 /* We can skip acquiring intel_runtime_pm_get() here as it was taken
779 * on our behalf by the request (see i915_gem_mark_busy()) and it will
780 * not be relinquished until the device is idle (see
781 * i915_gem_idle_work_handler()). As a precaution, we make sure
782 * that all ELSP are drained i.e. we have processed the CSB,
783 * before allowing ourselves to idle and calling intel_runtime_pm_put().
784 */
785 GEM_BUG_ON(!dev_priv->gt.awake);
786
Mika Kuoppalab620e872017-09-22 15:43:03 +0300787 intel_uncore_forcewake_get(dev_priv, execlists->fw_domains);
Tvrtko Ursulinc6a2ac72016-02-26 16:58:32 +0000788
Chris Wilson899f6202017-03-21 11:33:20 +0000789 /* Prefer doing test_and_clear_bit() as a two stage operation to avoid
790 * imposing the cost of a locked atomic transaction when submitting a
791 * new request (outside of the context-switch interrupt).
792 */
793 while (test_bit(ENGINE_IRQ_EXECLIST, &engine->irq_posted)) {
Chris Wilson6d2cb5a2017-09-13 14:35:34 +0100794 /* The HWSP contains a (cacheable) mirror of the CSB */
795 const u32 *buf =
796 &engine->status_page.page_addr[I915_HWS_CSB_BUF0_INDEX];
Chris Wilson4af0d722017-03-25 20:10:53 +0000797 unsigned int head, tail;
Thomas Daniele981e7b2014-07-24 17:04:39 +0100798
Mika Kuoppalab620e872017-09-22 15:43:03 +0300799 if (unlikely(execlists->csb_use_mmio)) {
Chris Wilson6d2cb5a2017-09-13 14:35:34 +0100800 buf = (u32 * __force)
801 (dev_priv->regs + i915_mmio_reg_offset(RING_CONTEXT_STATUS_BUF_LO(engine, 0)));
Mika Kuoppalab620e872017-09-22 15:43:03 +0300802 execlists->csb_head = -1; /* force mmio read of CSB ptrs */
Chris Wilson6d2cb5a2017-09-13 14:35:34 +0100803 }
804
Chris Wilson2e70b8c2017-03-23 13:48:03 +0000805 /* The write will be ordered by the uncached read (itself
806 * a memory barrier), so we do not need another in the form
807 * of a locked instruction. The race between the interrupt
808 * handler and the split test/clear is harmless as we order
809 * our clear before the CSB read. If the interrupt arrived
810 * first between the test and the clear, we read the updated
811 * CSB and clear the bit. If the interrupt arrives as we read
812 * the CSB or later (i.e. after we had cleared the bit) the bit
813 * is set and we do a new loop.
814 */
815 __clear_bit(ENGINE_IRQ_EXECLIST, &engine->irq_posted);
Mika Kuoppalab620e872017-09-22 15:43:03 +0300816 if (unlikely(execlists->csb_head == -1)) { /* following a reset */
Chris Wilson767a9832017-09-13 09:56:05 +0100817 head = readl(dev_priv->regs + i915_mmio_reg_offset(RING_CONTEXT_STATUS_PTR(engine)));
818 tail = GEN8_CSB_WRITE_PTR(head);
819 head = GEN8_CSB_READ_PTR(head);
Mika Kuoppalab620e872017-09-22 15:43:03 +0300820 execlists->csb_head = head;
Chris Wilson767a9832017-09-13 09:56:05 +0100821 } else {
822 const int write_idx =
823 intel_hws_csb_write_index(dev_priv) -
824 I915_HWS_CSB_BUF0_INDEX;
825
Mika Kuoppalab620e872017-09-22 15:43:03 +0300826 head = execlists->csb_head;
Chris Wilson767a9832017-09-13 09:56:05 +0100827 tail = READ_ONCE(buf[write_idx]);
828 }
Mika Kuoppalab620e872017-09-22 15:43:03 +0300829
Chris Wilson4af0d722017-03-25 20:10:53 +0000830 while (head != tail) {
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100831 struct drm_i915_gem_request *rq;
Chris Wilson4af0d722017-03-25 20:10:53 +0000832 unsigned int status;
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100833 unsigned int count;
Chris Wilsona37951a2017-01-24 11:00:06 +0000834
Chris Wilson4af0d722017-03-25 20:10:53 +0000835 if (++head == GEN8_CSB_ENTRIES)
836 head = 0;
Thomas Daniele981e7b2014-07-24 17:04:39 +0100837
Chris Wilson2ffe80a2017-02-06 17:05:02 +0000838 /* We are flying near dragons again.
839 *
840 * We hold a reference to the request in execlist_port[]
841 * but no more than that. We are operating in softirq
842 * context and so cannot hold any mutex or sleep. That
843 * prevents us stopping the requests we are processing
844 * in port[] from being retired simultaneously (the
845 * breadcrumb will be complete before we see the
846 * context-switch). As we only hold the reference to the
847 * request, any pointer chasing underneath the request
848 * is subject to a potential use-after-free. Thus we
849 * store all of the bookkeeping within port[] as
850 * required, and avoid using unguarded pointers beneath
851 * request itself. The same applies to the atomic
852 * status notifier.
853 */
854
Chris Wilson6d2cb5a2017-09-13 14:35:34 +0100855 status = READ_ONCE(buf[2 * head]); /* maybe mmio! */
Chris Wilson70c2a242016-09-09 14:11:46 +0100856 if (!(status & GEN8_CTX_STATUS_COMPLETED_MASK))
857 continue;
Thomas Daniele981e7b2014-07-24 17:04:39 +0100858
Chris Wilsonbeecec92017-10-03 21:34:52 +0100859 if (status & GEN8_CTX_STATUS_ACTIVE_IDLE &&
860 buf[2*head + 1] == PREEMPT_ID) {
861 execlist_cancel_port_requests(execlists);
862
863 spin_lock_irq(&engine->timeline->lock);
864 unwind_incomplete_requests(engine);
865 spin_unlock_irq(&engine->timeline->lock);
866
Chris Wilson4a118ec2017-10-23 22:32:36 +0100867 GEM_BUG_ON(!execlists_is_active(execlists,
868 EXECLISTS_ACTIVE_PREEMPT));
869 execlists_clear_active(execlists,
870 EXECLISTS_ACTIVE_PREEMPT);
Chris Wilsonbeecec92017-10-03 21:34:52 +0100871 continue;
872 }
873
874 if (status & GEN8_CTX_STATUS_PREEMPTED &&
Chris Wilson4a118ec2017-10-23 22:32:36 +0100875 execlists_is_active(execlists,
876 EXECLISTS_ACTIVE_PREEMPT))
Chris Wilsonbeecec92017-10-03 21:34:52 +0100877 continue;
878
Chris Wilson4a118ec2017-10-23 22:32:36 +0100879 GEM_BUG_ON(!execlists_is_active(execlists,
880 EXECLISTS_ACTIVE_USER));
881
Chris Wilson86aa7e72017-01-23 11:31:32 +0000882 /* Check the context/desc id for this event matches */
Chris Wilson6d2cb5a2017-09-13 14:35:34 +0100883 GEM_DEBUG_BUG_ON(buf[2 * head + 1] != port->context_id);
Chris Wilson86aa7e72017-01-23 11:31:32 +0000884
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100885 rq = port_unpack(port, &count);
886 GEM_BUG_ON(count == 0);
887 if (--count == 0) {
Chris Wilson70c2a242016-09-09 14:11:46 +0100888 GEM_BUG_ON(status & GEN8_CTX_STATUS_PREEMPTED);
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100889 GEM_BUG_ON(!i915_gem_request_completed(rq));
890 execlists_context_status_change(rq, INTEL_CONTEXT_SCHEDULE_OUT);
Thomas Daniele981e7b2014-07-24 17:04:39 +0100891
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100892 trace_i915_gem_request_out(rq);
893 i915_gem_request_put(rq);
894
Mika Kuoppala7a62cc62017-09-22 15:43:06 +0300895 execlists_port_complete(execlists, port);
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100896 } else {
897 port_set(port, port_pack(rq, count));
Chris Wilson70c2a242016-09-09 14:11:46 +0100898 }
Tvrtko Ursulinc6a2ac72016-02-26 16:58:32 +0000899
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100900 /* After the final element, the hw should be idle */
901 GEM_BUG_ON(port_count(port) == 0 &&
Chris Wilson70c2a242016-09-09 14:11:46 +0100902 !(status & GEN8_CTX_STATUS_ACTIVE_IDLE));
Chris Wilson4a118ec2017-10-23 22:32:36 +0100903 if (port_count(port) == 0)
904 execlists_clear_active(execlists,
905 EXECLISTS_ACTIVE_USER);
Chris Wilson4af0d722017-03-25 20:10:53 +0000906 }
Tvrtko Ursulin26720ab2016-03-17 12:59:46 +0000907
Mika Kuoppalab620e872017-09-22 15:43:03 +0300908 if (head != execlists->csb_head) {
909 execlists->csb_head = head;
Chris Wilson767a9832017-09-13 09:56:05 +0100910 writel(_MASKED_FIELD(GEN8_CSB_READ_PTR_MASK, head << 8),
911 dev_priv->regs + i915_mmio_reg_offset(RING_CONTEXT_STATUS_PTR(engine)));
912 }
Tvrtko Ursulin26720ab2016-03-17 12:59:46 +0000913 }
914
Chris Wilson4a118ec2017-10-23 22:32:36 +0100915 if (!execlists_is_active(execlists, EXECLISTS_ACTIVE_PREEMPT))
Chris Wilson70c2a242016-09-09 14:11:46 +0100916 execlists_dequeue(engine);
Tvrtko Ursulin26720ab2016-03-17 12:59:46 +0000917
Mika Kuoppalab620e872017-09-22 15:43:03 +0300918 intel_uncore_forcewake_put(dev_priv, execlists->fw_domains);
Thomas Daniele981e7b2014-07-24 17:04:39 +0100919}
920
Chris Wilson27606fd2017-09-16 21:44:13 +0100921static void insert_request(struct intel_engine_cs *engine,
922 struct i915_priotree *pt,
923 int prio)
924{
925 struct i915_priolist *p = lookup_priolist(engine, pt, prio);
926
927 list_add_tail(&pt->link, &ptr_mask_bits(p, 1)->requests);
Chris Wilsonbeecec92017-10-03 21:34:52 +0100928 if (ptr_unmask_bits(p, 1))
Mika Kuoppalab620e872017-09-22 15:43:03 +0300929 tasklet_hi_schedule(&engine->execlists.irq_tasklet);
Chris Wilson27606fd2017-09-16 21:44:13 +0100930}
931
Chris Wilsonf4ea6bd2016-08-02 22:50:32 +0100932static void execlists_submit_request(struct drm_i915_gem_request *request)
Michel Thierryacdd8842014-07-24 17:04:38 +0100933{
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +0000934 struct intel_engine_cs *engine = request->engine;
Chris Wilson5590af32016-09-09 14:11:54 +0100935 unsigned long flags;
Michel Thierryacdd8842014-07-24 17:04:38 +0100936
Chris Wilson663f71e2016-11-14 20:41:00 +0000937 /* Will be called from irq-context when using foreign fences. */
938 spin_lock_irqsave(&engine->timeline->lock, flags);
Michel Thierryacdd8842014-07-24 17:04:38 +0100939
Chris Wilson27606fd2017-09-16 21:44:13 +0100940 insert_request(engine, &request->priotree, request->priotree.priority);
Michel Thierryacdd8842014-07-24 17:04:38 +0100941
Mika Kuoppalab620e872017-09-22 15:43:03 +0300942 GEM_BUG_ON(!engine->execlists.first);
Chris Wilson6c067572017-05-17 13:10:03 +0100943 GEM_BUG_ON(list_empty(&request->priotree.link));
944
Chris Wilson663f71e2016-11-14 20:41:00 +0000945 spin_unlock_irqrestore(&engine->timeline->lock, flags);
Michel Thierryacdd8842014-07-24 17:04:38 +0100946}
947
Chris Wilson1f181222017-10-03 21:34:50 +0100948static struct drm_i915_gem_request *pt_to_request(struct i915_priotree *pt)
949{
950 return container_of(pt, struct drm_i915_gem_request, priotree);
951}
952
Chris Wilson20311bd2016-11-14 20:41:03 +0000953static struct intel_engine_cs *
954pt_lock_engine(struct i915_priotree *pt, struct intel_engine_cs *locked)
955{
Chris Wilson1f181222017-10-03 21:34:50 +0100956 struct intel_engine_cs *engine = pt_to_request(pt)->engine;
Chris Wilson20311bd2016-11-14 20:41:03 +0000957
Chris Wilsona79a5242017-03-27 21:21:43 +0100958 GEM_BUG_ON(!locked);
959
Chris Wilson20311bd2016-11-14 20:41:03 +0000960 if (engine != locked) {
Chris Wilsona79a5242017-03-27 21:21:43 +0100961 spin_unlock(&locked->timeline->lock);
962 spin_lock(&engine->timeline->lock);
Chris Wilson20311bd2016-11-14 20:41:03 +0000963 }
964
965 return engine;
966}
967
968static void execlists_schedule(struct drm_i915_gem_request *request, int prio)
969{
Chris Wilsona79a5242017-03-27 21:21:43 +0100970 struct intel_engine_cs *engine;
Chris Wilson20311bd2016-11-14 20:41:03 +0000971 struct i915_dependency *dep, *p;
972 struct i915_dependency stack;
973 LIST_HEAD(dfs);
974
Chris Wilson7d1ea602017-09-28 20:39:00 +0100975 GEM_BUG_ON(prio == I915_PRIORITY_INVALID);
976
Chris Wilson20311bd2016-11-14 20:41:03 +0000977 if (prio <= READ_ONCE(request->priotree.priority))
978 return;
979
Chris Wilson70cd1472016-11-28 14:36:49 +0000980 /* Need BKL in order to use the temporary link inside i915_dependency */
981 lockdep_assert_held(&request->i915->drm.struct_mutex);
Chris Wilson20311bd2016-11-14 20:41:03 +0000982
983 stack.signaler = &request->priotree;
984 list_add(&stack.dfs_link, &dfs);
985
986 /* Recursively bump all dependent priorities to match the new request.
987 *
988 * A naive approach would be to use recursion:
989 * static void update_priorities(struct i915_priotree *pt, prio) {
990 * list_for_each_entry(dep, &pt->signalers_list, signal_link)
991 * update_priorities(dep->signal, prio)
992 * insert_request(pt);
993 * }
994 * but that may have unlimited recursion depth and so runs a very
995 * real risk of overunning the kernel stack. Instead, we build
996 * a flat list of all dependencies starting with the current request.
997 * As we walk the list of dependencies, we add all of its dependencies
998 * to the end of the list (this may include an already visited
999 * request) and continue to walk onwards onto the new dependencies. The
1000 * end result is a topological list of requests in reverse order, the
1001 * last element in the list is the request we must execute first.
1002 */
1003 list_for_each_entry_safe(dep, p, &dfs, dfs_link) {
1004 struct i915_priotree *pt = dep->signaler;
1005
Chris Wilsona79a5242017-03-27 21:21:43 +01001006 /* Within an engine, there can be no cycle, but we may
1007 * refer to the same dependency chain multiple times
1008 * (redundant dependencies are not eliminated) and across
1009 * engines.
1010 */
1011 list_for_each_entry(p, &pt->signalers_list, signal_link) {
Chris Wilson1f181222017-10-03 21:34:50 +01001012 if (i915_gem_request_completed(pt_to_request(p->signaler)))
1013 continue;
1014
Chris Wilsona79a5242017-03-27 21:21:43 +01001015 GEM_BUG_ON(p->signaler->priority < pt->priority);
Chris Wilson20311bd2016-11-14 20:41:03 +00001016 if (prio > READ_ONCE(p->signaler->priority))
1017 list_move_tail(&p->dfs_link, &dfs);
Chris Wilsona79a5242017-03-27 21:21:43 +01001018 }
Chris Wilson20311bd2016-11-14 20:41:03 +00001019
Chris Wilson0798cff2016-12-05 14:29:41 +00001020 list_safe_reset_next(dep, p, dfs_link);
Chris Wilson20311bd2016-11-14 20:41:03 +00001021 }
1022
Chris Wilson349bdb62017-05-17 13:10:05 +01001023 /* If we didn't need to bump any existing priorities, and we haven't
1024 * yet submitted this request (i.e. there is no potential race with
1025 * execlists_submit_request()), we can set our own priority and skip
1026 * acquiring the engine locks.
1027 */
Chris Wilson7d1ea602017-09-28 20:39:00 +01001028 if (request->priotree.priority == I915_PRIORITY_INVALID) {
Chris Wilson349bdb62017-05-17 13:10:05 +01001029 GEM_BUG_ON(!list_empty(&request->priotree.link));
1030 request->priotree.priority = prio;
1031 if (stack.dfs_link.next == stack.dfs_link.prev)
1032 return;
1033 __list_del_entry(&stack.dfs_link);
1034 }
1035
Chris Wilsona79a5242017-03-27 21:21:43 +01001036 engine = request->engine;
1037 spin_lock_irq(&engine->timeline->lock);
1038
Chris Wilson20311bd2016-11-14 20:41:03 +00001039 /* Fifo and depth-first replacement ensure our deps execute before us */
1040 list_for_each_entry_safe_reverse(dep, p, &dfs, dfs_link) {
1041 struct i915_priotree *pt = dep->signaler;
1042
1043 INIT_LIST_HEAD(&dep->dfs_link);
1044
1045 engine = pt_lock_engine(pt, engine);
1046
1047 if (prio <= pt->priority)
1048 continue;
1049
Chris Wilson20311bd2016-11-14 20:41:03 +00001050 pt->priority = prio;
Chris Wilson6c067572017-05-17 13:10:03 +01001051 if (!list_empty(&pt->link)) {
1052 __list_del_entry(&pt->link);
1053 insert_request(engine, pt, prio);
Chris Wilsona79a5242017-03-27 21:21:43 +01001054 }
Chris Wilson20311bd2016-11-14 20:41:03 +00001055 }
1056
Chris Wilsona79a5242017-03-27 21:21:43 +01001057 spin_unlock_irq(&engine->timeline->lock);
Chris Wilson20311bd2016-11-14 20:41:03 +00001058}
1059
Chris Wilson266a2402017-05-04 10:33:08 +01001060static struct intel_ring *
1061execlists_context_pin(struct intel_engine_cs *engine,
1062 struct i915_gem_context *ctx)
Oscar Mateodcb4c122014-11-13 10:28:10 +00001063{
Chris Wilson9021ad02016-05-24 14:53:37 +01001064 struct intel_context *ce = &ctx->engine[engine->id];
Chris Wilson2947e402016-12-18 15:37:23 +00001065 unsigned int flags;
Tvrtko Ursulin7d774ca2016-04-12 15:40:42 +01001066 void *vaddr;
Tvrtko Ursulinca825802016-01-15 15:10:27 +00001067 int ret;
Oscar Mateodcb4c122014-11-13 10:28:10 +00001068
Chris Wilson91c8a322016-07-05 10:40:23 +01001069 lockdep_assert_held(&ctx->i915->drm.struct_mutex);
Tvrtko Ursulinca825802016-01-15 15:10:27 +00001070
Chris Wilson266a2402017-05-04 10:33:08 +01001071 if (likely(ce->pin_count++))
1072 goto out;
Chris Wilsona533b4b2017-03-16 17:16:28 +00001073 GEM_BUG_ON(!ce->pin_count); /* no overflow please! */
Chris Wilson24f1d3c2016-04-28 09:56:53 +01001074
Chris Wilsone8a9c582016-12-18 15:37:20 +00001075 if (!ce->state) {
1076 ret = execlists_context_deferred_alloc(ctx, engine);
1077 if (ret)
1078 goto err;
1079 }
Chris Wilson56f6e0a2017-01-05 15:30:20 +00001080 GEM_BUG_ON(!ce->state);
Chris Wilsone8a9c582016-12-18 15:37:20 +00001081
Chris Wilson72b72ae2017-02-10 10:14:22 +00001082 flags = PIN_GLOBAL | PIN_HIGH;
Daniele Ceraolo Spuriofeef2a72016-12-23 15:56:22 -08001083 if (ctx->ggtt_offset_bias)
1084 flags |= PIN_OFFSET_BIAS | ctx->ggtt_offset_bias;
Chris Wilson2947e402016-12-18 15:37:23 +00001085
1086 ret = i915_vma_pin(ce->state, 0, GEN8_LR_CONTEXT_ALIGN, flags);
Nick Hoathe84fe802015-09-11 12:53:46 +01001087 if (ret)
Chris Wilson24f1d3c2016-04-28 09:56:53 +01001088 goto err;
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001089
Chris Wilsonbf3783e2016-08-15 10:48:54 +01001090 vaddr = i915_gem_object_pin_map(ce->state->obj, I915_MAP_WB);
Tvrtko Ursulin7d774ca2016-04-12 15:40:42 +01001091 if (IS_ERR(vaddr)) {
1092 ret = PTR_ERR(vaddr);
Chris Wilsonbf3783e2016-08-15 10:48:54 +01001093 goto unpin_vma;
Tvrtko Ursulin82352e92016-01-15 17:12:45 +00001094 }
1095
Chris Wilsond822bb12017-04-03 12:34:25 +01001096 ret = intel_ring_pin(ce->ring, ctx->i915, ctx->ggtt_offset_bias);
Nick Hoathe84fe802015-09-11 12:53:46 +01001097 if (ret)
Tvrtko Ursulin7d774ca2016-04-12 15:40:42 +01001098 goto unpin_map;
Alex Daid1675192015-08-12 15:43:43 +01001099
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001100 intel_lr_context_descriptor_update(ctx, engine);
Chris Wilson9021ad02016-05-24 14:53:37 +01001101
Chris Wilsona3aabe82016-10-04 21:11:26 +01001102 ce->lrc_reg_state = vaddr + LRC_STATE_PN * PAGE_SIZE;
1103 ce->lrc_reg_state[CTX_RING_BUFFER_START+1] =
Chris Wilsonbde13eb2016-08-15 10:49:07 +01001104 i915_ggtt_offset(ce->ring->vma);
Chris Wilsona3aabe82016-10-04 21:11:26 +01001105
Chris Wilsona4f5ea62016-10-28 13:58:35 +01001106 ce->state->obj->mm.dirty = true;
Chris Wilson3d574a62017-10-13 21:26:16 +01001107 ce->state->obj->pin_global++;
Daniel Vettere93c28f2015-09-02 14:33:42 +02001108
Chris Wilson9a6feaf2016-07-20 13:31:50 +01001109 i915_gem_context_get(ctx);
Chris Wilson266a2402017-05-04 10:33:08 +01001110out:
1111 return ce->ring;
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001112
Tvrtko Ursulin7d774ca2016-04-12 15:40:42 +01001113unpin_map:
Chris Wilsonbf3783e2016-08-15 10:48:54 +01001114 i915_gem_object_unpin_map(ce->state->obj);
1115unpin_vma:
1116 __i915_vma_unpin(ce->state);
Chris Wilson24f1d3c2016-04-28 09:56:53 +01001117err:
Chris Wilson9021ad02016-05-24 14:53:37 +01001118 ce->pin_count = 0;
Chris Wilson266a2402017-05-04 10:33:08 +01001119 return ERR_PTR(ret);
Oscar Mateodcb4c122014-11-13 10:28:10 +00001120}
1121
Chris Wilsone8a9c582016-12-18 15:37:20 +00001122static void execlists_context_unpin(struct intel_engine_cs *engine,
1123 struct i915_gem_context *ctx)
Oscar Mateodcb4c122014-11-13 10:28:10 +00001124{
Chris Wilson9021ad02016-05-24 14:53:37 +01001125 struct intel_context *ce = &ctx->engine[engine->id];
Daniel Vetteraf3302b2015-12-04 17:27:15 +01001126
Chris Wilson91c8a322016-07-05 10:40:23 +01001127 lockdep_assert_held(&ctx->i915->drm.struct_mutex);
Chris Wilson9021ad02016-05-24 14:53:37 +01001128 GEM_BUG_ON(ce->pin_count == 0);
Tvrtko Ursulin321fe302016-01-28 10:29:55 +00001129
Chris Wilson9021ad02016-05-24 14:53:37 +01001130 if (--ce->pin_count)
Chris Wilson24f1d3c2016-04-28 09:56:53 +01001131 return;
1132
Chris Wilsonaad29fb2016-08-02 22:50:23 +01001133 intel_ring_unpin(ce->ring);
Chris Wilson24f1d3c2016-04-28 09:56:53 +01001134
Chris Wilson3d574a62017-10-13 21:26:16 +01001135 ce->state->obj->pin_global--;
Chris Wilsonbf3783e2016-08-15 10:48:54 +01001136 i915_gem_object_unpin_map(ce->state->obj);
1137 i915_vma_unpin(ce->state);
Chris Wilson24f1d3c2016-04-28 09:56:53 +01001138
Chris Wilson9a6feaf2016-07-20 13:31:50 +01001139 i915_gem_context_put(ctx);
Oscar Mateodcb4c122014-11-13 10:28:10 +00001140}
1141
Chris Wilsonf73e7392016-12-18 15:37:24 +00001142static int execlists_request_alloc(struct drm_i915_gem_request *request)
Chris Wilsonef11c012016-12-18 15:37:19 +00001143{
1144 struct intel_engine_cs *engine = request->engine;
1145 struct intel_context *ce = &request->ctx->engine[engine->id];
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001146 u32 *cs;
Chris Wilsonef11c012016-12-18 15:37:19 +00001147 int ret;
1148
Chris Wilsone8a9c582016-12-18 15:37:20 +00001149 GEM_BUG_ON(!ce->pin_count);
1150
Chris Wilsonef11c012016-12-18 15:37:19 +00001151 /* Flush enough space to reduce the likelihood of waiting after
1152 * we start building the request - in which case we will just
1153 * have to repeat work.
1154 */
1155 request->reserved_space += EXECLISTS_REQUEST_SIZE;
1156
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001157 cs = intel_ring_begin(request, 0);
Michał Winiarski85e2fe62017-09-14 10:32:13 +02001158 if (IS_ERR(cs))
1159 return PTR_ERR(cs);
Chris Wilsonef11c012016-12-18 15:37:19 +00001160
1161 if (!ce->initialised) {
1162 ret = engine->init_context(request);
1163 if (ret)
Michał Winiarski85e2fe62017-09-14 10:32:13 +02001164 return ret;
Chris Wilsonef11c012016-12-18 15:37:19 +00001165
1166 ce->initialised = true;
1167 }
1168
1169 /* Note that after this point, we have committed to using
1170 * this request as it is being used to both track the
1171 * state of engine initialisation and liveness of the
1172 * golden renderstate above. Think twice before you try
1173 * to cancel/unwind this request now.
1174 */
1175
1176 request->reserved_space -= EXECLISTS_REQUEST_SIZE;
1177 return 0;
Chris Wilsonef11c012016-12-18 15:37:19 +00001178}
1179
Arun Siluvery9e000842015-07-03 14:27:31 +01001180/*
1181 * In this WA we need to set GEN8_L3SQCREG4[21:21] and reset it after
1182 * PIPE_CONTROL instruction. This is required for the flush to happen correctly
1183 * but there is a slight complication as this is applied in WA batch where the
1184 * values are only initialized once so we cannot take register value at the
1185 * beginning and reuse it further; hence we save its value to memory, upload a
1186 * constant value with bit21 set and then we restore it back with the saved value.
1187 * To simplify the WA, a constant value is formed by using the default value
1188 * of this register. This shouldn't be a problem because we are only modifying
1189 * it for a short period and this batch in non-premptible. We can ofcourse
1190 * use additional instructions that read the actual value of the register
1191 * at that time and set our bit of interest but it makes the WA complicated.
1192 *
1193 * This WA is also required for Gen9 so extracting as a function avoids
1194 * code duplication.
1195 */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001196static u32 *
1197gen8_emit_flush_coherentl3_wa(struct intel_engine_cs *engine, u32 *batch)
Arun Siluvery9e000842015-07-03 14:27:31 +01001198{
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001199 *batch++ = MI_STORE_REGISTER_MEM_GEN8 | MI_SRM_LRM_GLOBAL_GTT;
1200 *batch++ = i915_mmio_reg_offset(GEN8_L3SQCREG4);
1201 *batch++ = i915_ggtt_offset(engine->scratch) + 256;
1202 *batch++ = 0;
Arun Siluvery9e000842015-07-03 14:27:31 +01001203
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001204 *batch++ = MI_LOAD_REGISTER_IMM(1);
1205 *batch++ = i915_mmio_reg_offset(GEN8_L3SQCREG4);
1206 *batch++ = 0x40400000 | GEN8_LQSC_FLUSH_COHERENT_LINES;
Arun Siluvery9e000842015-07-03 14:27:31 +01001207
Tvrtko Ursulin9f235df2017-02-16 12:23:25 +00001208 batch = gen8_emit_pipe_control(batch,
1209 PIPE_CONTROL_CS_STALL |
1210 PIPE_CONTROL_DC_FLUSH_ENABLE,
1211 0);
Arun Siluvery9e000842015-07-03 14:27:31 +01001212
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001213 *batch++ = MI_LOAD_REGISTER_MEM_GEN8 | MI_SRM_LRM_GLOBAL_GTT;
1214 *batch++ = i915_mmio_reg_offset(GEN8_L3SQCREG4);
1215 *batch++ = i915_ggtt_offset(engine->scratch) + 256;
1216 *batch++ = 0;
Arun Siluvery9e000842015-07-03 14:27:31 +01001217
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001218 return batch;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001219}
1220
Daniel Vetter6e5248b2016-07-15 21:48:06 +02001221/*
1222 * Typically we only have one indirect_ctx and per_ctx batch buffer which are
1223 * initialized at the beginning and shared across all contexts but this field
1224 * helps us to have multiple batches at different offsets and select them based
1225 * on a criteria. At the moment this batch always start at the beginning of the page
1226 * and at this point we don't have multiple wa_ctx batch buffers.
Arun Siluvery17ee9502015-06-19 19:07:01 +01001227 *
Daniel Vetter6e5248b2016-07-15 21:48:06 +02001228 * The number of WA applied are not known at the beginning; we use this field
1229 * to return the no of DWORDS written.
Arun Siluvery17ee9502015-06-19 19:07:01 +01001230 *
Daniel Vetter6e5248b2016-07-15 21:48:06 +02001231 * It is to be noted that this batch does not contain MI_BATCH_BUFFER_END
1232 * so it adds NOOPs as padding to make it cacheline aligned.
1233 * MI_BATCH_BUFFER_END will be added to perctx batch and both of them together
1234 * makes a complete batch buffer.
Arun Siluvery17ee9502015-06-19 19:07:01 +01001235 */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001236static u32 *gen8_init_indirectctx_bb(struct intel_engine_cs *engine, u32 *batch)
Arun Siluvery17ee9502015-06-19 19:07:01 +01001237{
Arun Siluvery7ad00d12015-06-19 18:37:12 +01001238 /* WaDisableCtxRestoreArbitration:bdw,chv */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001239 *batch++ = MI_ARB_ON_OFF | MI_ARB_DISABLE;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001240
Arun Siluveryc82435b2015-06-19 18:37:13 +01001241 /* WaFlushCoherentL3CacheLinesAtContextSwitch:bdw */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001242 if (IS_BROADWELL(engine->i915))
1243 batch = gen8_emit_flush_coherentl3_wa(engine, batch);
Arun Siluveryc82435b2015-06-19 18:37:13 +01001244
Arun Siluvery0160f052015-06-23 15:46:57 +01001245 /* WaClearSlmSpaceAtContextSwitch:bdw,chv */
1246 /* Actual scratch location is at 128 bytes offset */
Tvrtko Ursulin9f235df2017-02-16 12:23:25 +00001247 batch = gen8_emit_pipe_control(batch,
1248 PIPE_CONTROL_FLUSH_L3 |
1249 PIPE_CONTROL_GLOBAL_GTT_IVB |
1250 PIPE_CONTROL_CS_STALL |
1251 PIPE_CONTROL_QW_WRITE,
1252 i915_ggtt_offset(engine->scratch) +
1253 2 * CACHELINE_BYTES);
Arun Siluvery0160f052015-06-23 15:46:57 +01001254
Chris Wilsonbeecec92017-10-03 21:34:52 +01001255 *batch++ = MI_ARB_ON_OFF | MI_ARB_ENABLE;
1256
Arun Siluvery17ee9502015-06-19 19:07:01 +01001257 /* Pad to end of cacheline */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001258 while ((unsigned long)batch % CACHELINE_BYTES)
1259 *batch++ = MI_NOOP;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001260
1261 /*
1262 * MI_BATCH_BUFFER_END is not required in Indirect ctx BB because
1263 * execution depends on the length specified in terms of cache lines
1264 * in the register CTX_RCS_INDIRECT_CTX
1265 */
1266
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001267 return batch;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001268}
1269
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001270static u32 *gen9_init_indirectctx_bb(struct intel_engine_cs *engine, u32 *batch)
Arun Siluvery0504cff2015-07-14 15:01:27 +01001271{
Chris Wilsonbeecec92017-10-03 21:34:52 +01001272 *batch++ = MI_ARB_ON_OFF | MI_ARB_DISABLE;
1273
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02001274 /* WaFlushCoherentL3CacheLinesAtContextSwitch:skl,bxt,glk */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001275 batch = gen8_emit_flush_coherentl3_wa(engine, batch);
Arun Siluverya4106a72015-07-14 15:01:29 +01001276
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02001277 /* WaDisableGatherAtSetShaderCommonSlice:skl,bxt,kbl,glk */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001278 *batch++ = MI_LOAD_REGISTER_IMM(1);
1279 *batch++ = i915_mmio_reg_offset(COMMON_SLICE_CHICKEN2);
1280 *batch++ = _MASKED_BIT_DISABLE(
1281 GEN9_DISABLE_GATHER_AT_SET_SHADER_COMMON_SLICE);
1282 *batch++ = MI_NOOP;
Mika Kuoppala873e8172016-07-20 14:26:13 +03001283
Mika Kuoppala066d4622016-06-07 17:19:15 +03001284 /* WaClearSlmSpaceAtContextSwitch:kbl */
1285 /* Actual scratch location is at 128 bytes offset */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001286 if (IS_KBL_REVID(engine->i915, 0, KBL_REVID_A0)) {
Tvrtko Ursulin9f235df2017-02-16 12:23:25 +00001287 batch = gen8_emit_pipe_control(batch,
1288 PIPE_CONTROL_FLUSH_L3 |
1289 PIPE_CONTROL_GLOBAL_GTT_IVB |
1290 PIPE_CONTROL_CS_STALL |
1291 PIPE_CONTROL_QW_WRITE,
1292 i915_ggtt_offset(engine->scratch)
1293 + 2 * CACHELINE_BYTES);
Mika Kuoppala066d4622016-06-07 17:19:15 +03001294 }
Tim Gore3485d992016-07-05 10:01:30 +01001295
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02001296 /* WaMediaPoolStateCmdInWABB:bxt,glk */
Tim Gore3485d992016-07-05 10:01:30 +01001297 if (HAS_POOLED_EU(engine->i915)) {
1298 /*
1299 * EU pool configuration is setup along with golden context
1300 * during context initialization. This value depends on
1301 * device type (2x6 or 3x6) and needs to be updated based
1302 * on which subslice is disabled especially for 2x6
1303 * devices, however it is safe to load default
1304 * configuration of 3x6 device instead of masking off
1305 * corresponding bits because HW ignores bits of a disabled
1306 * subslice and drops down to appropriate config. Please
1307 * see render_state_setup() in i915_gem_render_state.c for
1308 * possible configurations, to avoid duplication they are
1309 * not shown here again.
1310 */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001311 *batch++ = GEN9_MEDIA_POOL_STATE;
1312 *batch++ = GEN9_MEDIA_POOL_ENABLE;
1313 *batch++ = 0x00777000;
1314 *batch++ = 0;
1315 *batch++ = 0;
1316 *batch++ = 0;
Tim Gore3485d992016-07-05 10:01:30 +01001317 }
1318
Chris Wilsonbeecec92017-10-03 21:34:52 +01001319 *batch++ = MI_ARB_ON_OFF | MI_ARB_ENABLE;
1320
Arun Siluvery0504cff2015-07-14 15:01:27 +01001321 /* Pad to end of cacheline */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001322 while ((unsigned long)batch % CACHELINE_BYTES)
1323 *batch++ = MI_NOOP;
Arun Siluvery0504cff2015-07-14 15:01:27 +01001324
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001325 return batch;
Arun Siluvery0504cff2015-07-14 15:01:27 +01001326}
1327
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001328#define CTX_WA_BB_OBJ_SIZE (PAGE_SIZE)
1329
1330static int lrc_setup_wa_ctx(struct intel_engine_cs *engine)
Arun Siluvery17ee9502015-06-19 19:07:01 +01001331{
Chris Wilson48bb74e2016-08-15 10:49:04 +01001332 struct drm_i915_gem_object *obj;
1333 struct i915_vma *vma;
1334 int err;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001335
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001336 obj = i915_gem_object_create(engine->i915, CTX_WA_BB_OBJ_SIZE);
Chris Wilson48bb74e2016-08-15 10:49:04 +01001337 if (IS_ERR(obj))
1338 return PTR_ERR(obj);
1339
Chris Wilsona01cb372017-01-16 15:21:30 +00001340 vma = i915_vma_instance(obj, &engine->i915->ggtt.base, NULL);
Chris Wilson48bb74e2016-08-15 10:49:04 +01001341 if (IS_ERR(vma)) {
1342 err = PTR_ERR(vma);
1343 goto err;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001344 }
1345
Chris Wilson48bb74e2016-08-15 10:49:04 +01001346 err = i915_vma_pin(vma, 0, PAGE_SIZE, PIN_GLOBAL | PIN_HIGH);
1347 if (err)
1348 goto err;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001349
Chris Wilson48bb74e2016-08-15 10:49:04 +01001350 engine->wa_ctx.vma = vma;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001351 return 0;
Chris Wilson48bb74e2016-08-15 10:49:04 +01001352
1353err:
1354 i915_gem_object_put(obj);
1355 return err;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001356}
1357
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001358static void lrc_destroy_wa_ctx(struct intel_engine_cs *engine)
Arun Siluvery17ee9502015-06-19 19:07:01 +01001359{
Chris Wilson19880c42016-08-15 10:49:05 +01001360 i915_vma_unpin_and_release(&engine->wa_ctx.vma);
Arun Siluvery17ee9502015-06-19 19:07:01 +01001361}
1362
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001363typedef u32 *(*wa_bb_func_t)(struct intel_engine_cs *engine, u32 *batch);
1364
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001365static int intel_init_workaround_bb(struct intel_engine_cs *engine)
Arun Siluvery17ee9502015-06-19 19:07:01 +01001366{
Chris Wilson48bb74e2016-08-15 10:49:04 +01001367 struct i915_ctx_workarounds *wa_ctx = &engine->wa_ctx;
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001368 struct i915_wa_ctx_bb *wa_bb[2] = { &wa_ctx->indirect_ctx,
1369 &wa_ctx->per_ctx };
1370 wa_bb_func_t wa_bb_fn[2];
Arun Siluvery17ee9502015-06-19 19:07:01 +01001371 struct page *page;
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001372 void *batch, *batch_ptr;
1373 unsigned int i;
Chris Wilson48bb74e2016-08-15 10:49:04 +01001374 int ret;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001375
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001376 if (WARN_ON(engine->id != RCS || !engine->scratch))
1377 return -EINVAL;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001378
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001379 switch (INTEL_GEN(engine->i915)) {
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07001380 case 10:
1381 return 0;
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001382 case 9:
1383 wa_bb_fn[0] = gen9_init_indirectctx_bb;
Chris Wilsonb8aa2232017-09-21 14:54:44 +01001384 wa_bb_fn[1] = NULL;
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001385 break;
1386 case 8:
1387 wa_bb_fn[0] = gen8_init_indirectctx_bb;
Chris Wilson3ad7b522017-10-03 21:34:49 +01001388 wa_bb_fn[1] = NULL;
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001389 break;
1390 default:
1391 MISSING_CASE(INTEL_GEN(engine->i915));
Arun Siluvery5e60d792015-06-23 15:50:44 +01001392 return 0;
Arun Siluvery0504cff2015-07-14 15:01:27 +01001393 }
Arun Siluvery5e60d792015-06-23 15:50:44 +01001394
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001395 ret = lrc_setup_wa_ctx(engine);
Arun Siluvery17ee9502015-06-19 19:07:01 +01001396 if (ret) {
1397 DRM_DEBUG_DRIVER("Failed to setup context WA page: %d\n", ret);
1398 return ret;
1399 }
1400
Chris Wilson48bb74e2016-08-15 10:49:04 +01001401 page = i915_gem_object_get_dirty_page(wa_ctx->vma->obj, 0);
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001402 batch = batch_ptr = kmap_atomic(page);
Arun Siluvery17ee9502015-06-19 19:07:01 +01001403
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001404 /*
1405 * Emit the two workaround batch buffers, recording the offset from the
1406 * start of the workaround batch buffer object for each and their
1407 * respective sizes.
1408 */
1409 for (i = 0; i < ARRAY_SIZE(wa_bb_fn); i++) {
1410 wa_bb[i]->offset = batch_ptr - batch;
1411 if (WARN_ON(!IS_ALIGNED(wa_bb[i]->offset, CACHELINE_BYTES))) {
1412 ret = -EINVAL;
1413 break;
1414 }
Chris Wilson604a8f62017-09-21 14:54:43 +01001415 if (wa_bb_fn[i])
1416 batch_ptr = wa_bb_fn[i](engine, batch_ptr);
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001417 wa_bb[i]->size = batch_ptr - (batch + wa_bb[i]->offset);
Arun Siluvery17ee9502015-06-19 19:07:01 +01001418 }
1419
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001420 BUG_ON(batch_ptr - batch > CTX_WA_BB_OBJ_SIZE);
1421
Arun Siluvery17ee9502015-06-19 19:07:01 +01001422 kunmap_atomic(batch);
1423 if (ret)
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001424 lrc_destroy_wa_ctx(engine);
Arun Siluvery17ee9502015-06-19 19:07:01 +01001425
1426 return ret;
1427}
1428
Chris Wilson64f09f02017-08-07 13:19:19 +01001429static u8 gtiir[] = {
1430 [RCS] = 0,
1431 [BCS] = 0,
1432 [VCS] = 1,
1433 [VCS2] = 1,
1434 [VECS] = 3,
1435};
1436
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001437static int gen8_init_common_ring(struct intel_engine_cs *engine)
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001438{
Chris Wilsonc0336662016-05-06 15:40:21 +01001439 struct drm_i915_private *dev_priv = engine->i915;
Mika Kuoppalab620e872017-09-22 15:43:03 +03001440 struct intel_engine_execlists * const execlists = &engine->execlists;
Chris Wilson821ed7d2016-09-09 14:11:53 +01001441 int ret;
1442
1443 ret = intel_mocs_init_engine(engine);
1444 if (ret)
1445 return ret;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001446
Chris Wilsonad07dfc2016-10-07 07:53:26 +01001447 intel_engine_reset_breadcrumbs(engine);
Chris Wilsonf3b8f912017-01-05 15:30:21 +00001448 intel_engine_init_hangcheck(engine);
Chris Wilson821ed7d2016-09-09 14:11:53 +01001449
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001450 I915_WRITE(RING_HWSTAM(engine->mmio_base), 0xffffffff);
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001451 I915_WRITE(RING_MODE_GEN7(engine),
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001452 _MASKED_BIT_ENABLE(GFX_RUN_LIST_ENABLE));
Chris Wilsonf3b8f912017-01-05 15:30:21 +00001453 I915_WRITE(RING_HWS_PGA(engine->mmio_base),
1454 engine->status_page.ggtt_offset);
1455 POSTING_READ(RING_HWS_PGA(engine->mmio_base));
Michel Thierrydfc53c52015-09-28 13:25:12 +01001456
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001457 DRM_DEBUG_DRIVER("Execlists enabled for %s\n", engine->name);
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001458
Chris Wilson64f09f02017-08-07 13:19:19 +01001459 GEM_BUG_ON(engine->id >= ARRAY_SIZE(gtiir));
1460
1461 /*
1462 * Clear any pending interrupt state.
1463 *
1464 * We do it twice out of paranoia that some of the IIR are double
1465 * buffered, and if we only reset it once there may still be
1466 * an interrupt pending.
1467 */
1468 I915_WRITE(GEN8_GT_IIR(gtiir[engine->id]),
1469 GT_CONTEXT_SWITCH_INTERRUPT << engine->irq_shift);
1470 I915_WRITE(GEN8_GT_IIR(gtiir[engine->id]),
1471 GT_CONTEXT_SWITCH_INTERRUPT << engine->irq_shift);
Chris Wilsonf7470262017-01-24 15:20:21 +00001472 clear_bit(ENGINE_IRQ_EXECLIST, &engine->irq_posted);
Mika Kuoppalab620e872017-09-22 15:43:03 +03001473 execlists->csb_head = -1;
Chris Wilson4a118ec2017-10-23 22:32:36 +01001474 execlists->active = 0;
Chris Wilson6b764a52017-04-25 11:38:35 +01001475
Chris Wilson64f09f02017-08-07 13:19:19 +01001476 /* After a GPU reset, we may have requests to replay */
Michał Winiarski9bdc3572017-10-25 18:25:19 +01001477 if (execlists->first)
Mika Kuoppalab620e872017-09-22 15:43:03 +03001478 tasklet_schedule(&execlists->irq_tasklet);
Chris Wilson6b764a52017-04-25 11:38:35 +01001479
Chris Wilson821ed7d2016-09-09 14:11:53 +01001480 return 0;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001481}
1482
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001483static int gen8_init_render_ring(struct intel_engine_cs *engine)
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001484{
Chris Wilsonc0336662016-05-06 15:40:21 +01001485 struct drm_i915_private *dev_priv = engine->i915;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001486 int ret;
1487
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001488 ret = gen8_init_common_ring(engine);
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001489 if (ret)
1490 return ret;
1491
1492 /* We need to disable the AsyncFlip performance optimisations in order
1493 * to use MI_WAIT_FOR_EVENT within the CS. It should already be
1494 * programmed to '1' on all products.
1495 *
1496 * WaDisableAsyncFlipPerfMode:snb,ivb,hsw,vlv,bdw,chv
1497 */
1498 I915_WRITE(MI_MODE, _MASKED_BIT_ENABLE(ASYNC_FLIP_PERF_DISABLE));
1499
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001500 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_FORCE_ORDERING));
1501
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001502 return init_workarounds_ring(engine);
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001503}
1504
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001505static int gen9_init_render_ring(struct intel_engine_cs *engine)
Damien Lespiau82ef8222015-02-09 19:33:08 +00001506{
1507 int ret;
1508
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001509 ret = gen8_init_common_ring(engine);
Damien Lespiau82ef8222015-02-09 19:33:08 +00001510 if (ret)
1511 return ret;
1512
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001513 return init_workarounds_ring(engine);
Damien Lespiau82ef8222015-02-09 19:33:08 +00001514}
1515
Chris Wilson821ed7d2016-09-09 14:11:53 +01001516static void reset_common_ring(struct intel_engine_cs *engine,
1517 struct drm_i915_gem_request *request)
1518{
Mika Kuoppalab620e872017-09-22 15:43:03 +03001519 struct intel_engine_execlists * const execlists = &engine->execlists;
Chris Wilsonc0dcb202017-02-07 15:24:37 +00001520 struct intel_context *ce;
Chris Wilson221ab97192017-09-16 21:44:14 +01001521 unsigned long flags;
Chris Wilsoncdb6ded2017-07-21 13:32:22 +01001522
Chris Wilson221ab97192017-09-16 21:44:14 +01001523 spin_lock_irqsave(&engine->timeline->lock, flags);
1524
Chris Wilsoncdb6ded2017-07-21 13:32:22 +01001525 /*
1526 * Catch up with any missed context-switch interrupts.
1527 *
1528 * Ideally we would just read the remaining CSB entries now that we
1529 * know the gpu is idle. However, the CSB registers are sometimes^W
1530 * often trashed across a GPU reset! Instead we have to rely on
1531 * guessing the missed context-switch events by looking at what
1532 * requests were completed.
1533 */
Mika Kuoppalacf4591d2017-09-22 15:43:05 +03001534 execlist_cancel_port_requests(execlists);
Chris Wilson221ab97192017-09-16 21:44:14 +01001535
1536 /* Push back any incomplete requests for replay after the reset. */
Chris Wilson7e4992a2017-09-28 20:38:59 +01001537 unwind_incomplete_requests(engine);
Chris Wilsoncdb6ded2017-07-21 13:32:22 +01001538
Chris Wilson221ab97192017-09-16 21:44:14 +01001539 spin_unlock_irqrestore(&engine->timeline->lock, flags);
Chris Wilsonc0dcb202017-02-07 15:24:37 +00001540
1541 /* If the request was innocent, we leave the request in the ELSP
1542 * and will try to replay it on restarting. The context image may
1543 * have been corrupted by the reset, in which case we may have
1544 * to service a new GPU hang, but more likely we can continue on
1545 * without impact.
1546 *
1547 * If the request was guilty, we presume the context is corrupt
1548 * and have to at least restore the RING register in the context
1549 * image back to the expected values to skip over the guilty request.
1550 */
Chris Wilson221ab97192017-09-16 21:44:14 +01001551 if (!request || request->fence.error != -EIO)
Chris Wilsonc0dcb202017-02-07 15:24:37 +00001552 return;
Chris Wilson821ed7d2016-09-09 14:11:53 +01001553
Chris Wilsona3aabe82016-10-04 21:11:26 +01001554 /* We want a simple context + ring to execute the breadcrumb update.
1555 * We cannot rely on the context being intact across the GPU hang,
1556 * so clear it and rebuild just what we need for the breadcrumb.
1557 * All pending requests for this context will be zapped, and any
1558 * future request will be after userspace has had the opportunity
1559 * to recreate its own state.
1560 */
Chris Wilsonc0dcb202017-02-07 15:24:37 +00001561 ce = &request->ctx->engine[engine->id];
Chris Wilsona3aabe82016-10-04 21:11:26 +01001562 execlists_init_reg_state(ce->lrc_reg_state,
1563 request->ctx, engine, ce->ring);
1564
Chris Wilson821ed7d2016-09-09 14:11:53 +01001565 /* Move the RING_HEAD onto the breadcrumb, past the hanging batch */
Chris Wilsona3aabe82016-10-04 21:11:26 +01001566 ce->lrc_reg_state[CTX_RING_BUFFER_START+1] =
1567 i915_ggtt_offset(ce->ring->vma);
Chris Wilson821ed7d2016-09-09 14:11:53 +01001568 ce->lrc_reg_state[CTX_RING_HEAD+1] = request->postfix;
Chris Wilsona3aabe82016-10-04 21:11:26 +01001569
Chris Wilson821ed7d2016-09-09 14:11:53 +01001570 request->ring->head = request->postfix;
Chris Wilson821ed7d2016-09-09 14:11:53 +01001571 intel_ring_update_space(request->ring);
1572
Chris Wilsona3aabe82016-10-04 21:11:26 +01001573 /* Reset WaIdleLiteRestore:bdw,skl as well */
Chris Wilson7e4992a2017-09-28 20:38:59 +01001574 unwind_wa_tail(request);
Chris Wilson821ed7d2016-09-09 14:11:53 +01001575}
1576
Michel Thierry7a01a0a2015-06-26 13:46:14 +01001577static int intel_logical_ring_emit_pdps(struct drm_i915_gem_request *req)
1578{
1579 struct i915_hw_ppgtt *ppgtt = req->ctx->ppgtt;
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +00001580 struct intel_engine_cs *engine = req->engine;
Mika Kuoppalae7167762017-02-28 17:28:10 +02001581 const int num_lri_cmds = GEN8_3LVL_PDPES * 2;
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001582 u32 *cs;
1583 int i;
Michel Thierry7a01a0a2015-06-26 13:46:14 +01001584
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001585 cs = intel_ring_begin(req, num_lri_cmds * 2 + 2);
1586 if (IS_ERR(cs))
1587 return PTR_ERR(cs);
Michel Thierry7a01a0a2015-06-26 13:46:14 +01001588
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001589 *cs++ = MI_LOAD_REGISTER_IMM(num_lri_cmds);
Mika Kuoppalae7167762017-02-28 17:28:10 +02001590 for (i = GEN8_3LVL_PDPES - 1; i >= 0; i--) {
Michel Thierry7a01a0a2015-06-26 13:46:14 +01001591 const dma_addr_t pd_daddr = i915_page_dir_dma_addr(ppgtt, i);
1592
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001593 *cs++ = i915_mmio_reg_offset(GEN8_RING_PDP_UDW(engine, i));
1594 *cs++ = upper_32_bits(pd_daddr);
1595 *cs++ = i915_mmio_reg_offset(GEN8_RING_PDP_LDW(engine, i));
1596 *cs++ = lower_32_bits(pd_daddr);
Michel Thierry7a01a0a2015-06-26 13:46:14 +01001597 }
1598
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001599 *cs++ = MI_NOOP;
1600 intel_ring_advance(req, cs);
Michel Thierry7a01a0a2015-06-26 13:46:14 +01001601
1602 return 0;
1603}
1604
John Harrisonbe795fc2015-05-29 17:44:03 +01001605static int gen8_emit_bb_start(struct drm_i915_gem_request *req,
Chris Wilson803688b2016-08-02 22:50:27 +01001606 u64 offset, u32 len,
Mika Kuoppala54af56d2017-02-28 17:28:08 +02001607 const unsigned int flags)
Oscar Mateo15648582014-07-24 17:04:32 +01001608{
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001609 u32 *cs;
Oscar Mateo15648582014-07-24 17:04:32 +01001610 int ret;
1611
Michel Thierry7a01a0a2015-06-26 13:46:14 +01001612 /* Don't rely in hw updating PDPs, specially in lite-restore.
1613 * Ideally, we should set Force PD Restore in ctx descriptor,
1614 * but we can't. Force Restore would be a second option, but
1615 * it is unsafe in case of lite-restore (because the ctx is
Michel Thierry2dba3232015-07-30 11:06:23 +01001616 * not idle). PML4 is allocated during ppgtt init so this is
1617 * not needed in 48-bit.*/
Michel Thierry7a01a0a2015-06-26 13:46:14 +01001618 if (req->ctx->ppgtt &&
Mika Kuoppala54af56d2017-02-28 17:28:08 +02001619 (intel_engine_flag(req->engine) & req->ctx->ppgtt->pd_dirty_rings) &&
1620 !i915_vm_is_48bit(&req->ctx->ppgtt->base) &&
1621 !intel_vgpu_active(req->i915)) {
1622 ret = intel_logical_ring_emit_pdps(req);
1623 if (ret)
1624 return ret;
Michel Thierry7a01a0a2015-06-26 13:46:14 +01001625
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00001626 req->ctx->ppgtt->pd_dirty_rings &= ~intel_engine_flag(req->engine);
Michel Thierry7a01a0a2015-06-26 13:46:14 +01001627 }
1628
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001629 cs = intel_ring_begin(req, 4);
1630 if (IS_ERR(cs))
1631 return PTR_ERR(cs);
Oscar Mateo15648582014-07-24 17:04:32 +01001632
Chris Wilson279f5a02017-10-05 20:10:05 +01001633 /*
1634 * WaDisableCtxRestoreArbitration:bdw,chv
1635 *
1636 * We don't need to perform MI_ARB_ENABLE as often as we do (in
1637 * particular all the gen that do not need the w/a at all!), if we
1638 * took care to make sure that on every switch into this context
1639 * (both ordinary and for preemption) that arbitrartion was enabled
1640 * we would be fine. However, there doesn't seem to be a downside to
1641 * being paranoid and making sure it is set before each batch and
1642 * every context-switch.
1643 *
1644 * Note that if we fail to enable arbitration before the request
1645 * is complete, then we do not see the context-switch interrupt and
1646 * the engine hangs (with RING_HEAD == RING_TAIL).
1647 *
1648 * That satisfies both the GPGPU w/a and our heavy-handed paranoia.
1649 */
Chris Wilson3ad7b522017-10-03 21:34:49 +01001650 *cs++ = MI_ARB_ON_OFF | MI_ARB_ENABLE;
1651
Oscar Mateo15648582014-07-24 17:04:32 +01001652 /* FIXME(BDW): Address space and security selectors. */
Mika Kuoppala54af56d2017-02-28 17:28:08 +02001653 *cs++ = MI_BATCH_BUFFER_START_GEN8 |
1654 (flags & I915_DISPATCH_SECURE ? 0 : BIT(8)) |
1655 (flags & I915_DISPATCH_RS ? MI_BATCH_RESOURCE_STREAMER : 0);
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001656 *cs++ = lower_32_bits(offset);
1657 *cs++ = upper_32_bits(offset);
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001658 intel_ring_advance(req, cs);
Oscar Mateo15648582014-07-24 17:04:32 +01001659
1660 return 0;
1661}
1662
Chris Wilson31bb59c2016-07-01 17:23:27 +01001663static void gen8_logical_ring_enable_irq(struct intel_engine_cs *engine)
Oscar Mateo73d477f2014-07-24 17:04:31 +01001664{
Chris Wilsonc0336662016-05-06 15:40:21 +01001665 struct drm_i915_private *dev_priv = engine->i915;
Chris Wilson31bb59c2016-07-01 17:23:27 +01001666 I915_WRITE_IMR(engine,
1667 ~(engine->irq_enable_mask | engine->irq_keep_mask));
1668 POSTING_READ_FW(RING_IMR(engine->mmio_base));
Oscar Mateo73d477f2014-07-24 17:04:31 +01001669}
1670
Chris Wilson31bb59c2016-07-01 17:23:27 +01001671static void gen8_logical_ring_disable_irq(struct intel_engine_cs *engine)
Oscar Mateo73d477f2014-07-24 17:04:31 +01001672{
Chris Wilsonc0336662016-05-06 15:40:21 +01001673 struct drm_i915_private *dev_priv = engine->i915;
Chris Wilson31bb59c2016-07-01 17:23:27 +01001674 I915_WRITE_IMR(engine, ~engine->irq_keep_mask);
Oscar Mateo73d477f2014-07-24 17:04:31 +01001675}
1676
Chris Wilson7c9cf4e2016-08-02 22:50:25 +01001677static int gen8_emit_flush(struct drm_i915_gem_request *request, u32 mode)
Oscar Mateo47122742014-07-24 17:04:28 +01001678{
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001679 u32 cmd, *cs;
Oscar Mateo47122742014-07-24 17:04:28 +01001680
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001681 cs = intel_ring_begin(request, 4);
1682 if (IS_ERR(cs))
1683 return PTR_ERR(cs);
Oscar Mateo47122742014-07-24 17:04:28 +01001684
1685 cmd = MI_FLUSH_DW + 1;
1686
Chris Wilsonf0a1fb12015-01-22 13:42:00 +00001687 /* We always require a command barrier so that subsequent
1688 * commands, such as breadcrumb interrupts, are strictly ordered
1689 * wrt the contents of the write cache being flushed to memory
1690 * (and thus being coherent from the CPU).
1691 */
1692 cmd |= MI_FLUSH_DW_STORE_INDEX | MI_FLUSH_DW_OP_STOREDW;
1693
Chris Wilson7c9cf4e2016-08-02 22:50:25 +01001694 if (mode & EMIT_INVALIDATE) {
Chris Wilsonf0a1fb12015-01-22 13:42:00 +00001695 cmd |= MI_INVALIDATE_TLB;
Chris Wilson1dae2df2016-08-02 22:50:19 +01001696 if (request->engine->id == VCS)
Chris Wilsonf0a1fb12015-01-22 13:42:00 +00001697 cmd |= MI_INVALIDATE_BSD;
Oscar Mateo47122742014-07-24 17:04:28 +01001698 }
1699
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001700 *cs++ = cmd;
1701 *cs++ = I915_GEM_HWS_SCRATCH_ADDR | MI_FLUSH_DW_USE_GTT;
1702 *cs++ = 0; /* upper addr */
1703 *cs++ = 0; /* value */
1704 intel_ring_advance(request, cs);
Oscar Mateo47122742014-07-24 17:04:28 +01001705
1706 return 0;
1707}
1708
John Harrison7deb4d32015-05-29 17:43:59 +01001709static int gen8_emit_flush_render(struct drm_i915_gem_request *request,
Chris Wilson7c9cf4e2016-08-02 22:50:25 +01001710 u32 mode)
Oscar Mateo47122742014-07-24 17:04:28 +01001711{
Chris Wilsonb5321f32016-08-02 22:50:18 +01001712 struct intel_engine_cs *engine = request->engine;
Chris Wilsonbde13eb2016-08-15 10:49:07 +01001713 u32 scratch_addr =
1714 i915_ggtt_offset(engine->scratch) + 2 * CACHELINE_BYTES;
Mika Kuoppala0b2d0932016-06-07 17:19:10 +03001715 bool vf_flush_wa = false, dc_flush_wa = false;
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001716 u32 *cs, flags = 0;
Mika Kuoppala0b2d0932016-06-07 17:19:10 +03001717 int len;
Oscar Mateo47122742014-07-24 17:04:28 +01001718
1719 flags |= PIPE_CONTROL_CS_STALL;
1720
Chris Wilson7c9cf4e2016-08-02 22:50:25 +01001721 if (mode & EMIT_FLUSH) {
Oscar Mateo47122742014-07-24 17:04:28 +01001722 flags |= PIPE_CONTROL_RENDER_TARGET_CACHE_FLUSH;
1723 flags |= PIPE_CONTROL_DEPTH_CACHE_FLUSH;
Francisco Jerez965fd602016-01-13 18:59:39 -08001724 flags |= PIPE_CONTROL_DC_FLUSH_ENABLE;
Chris Wilson40a24482015-08-21 16:08:41 +01001725 flags |= PIPE_CONTROL_FLUSH_ENABLE;
Oscar Mateo47122742014-07-24 17:04:28 +01001726 }
1727
Chris Wilson7c9cf4e2016-08-02 22:50:25 +01001728 if (mode & EMIT_INVALIDATE) {
Oscar Mateo47122742014-07-24 17:04:28 +01001729 flags |= PIPE_CONTROL_TLB_INVALIDATE;
1730 flags |= PIPE_CONTROL_INSTRUCTION_CACHE_INVALIDATE;
1731 flags |= PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE;
1732 flags |= PIPE_CONTROL_VF_CACHE_INVALIDATE;
1733 flags |= PIPE_CONTROL_CONST_CACHE_INVALIDATE;
1734 flags |= PIPE_CONTROL_STATE_CACHE_INVALIDATE;
1735 flags |= PIPE_CONTROL_QW_WRITE;
1736 flags |= PIPE_CONTROL_GLOBAL_GTT_IVB;
Oscar Mateo47122742014-07-24 17:04:28 +01001737
Ben Widawsky1a5a9ce2015-12-17 09:49:57 -08001738 /*
1739 * On GEN9: before VF_CACHE_INVALIDATE we need to emit a NULL
1740 * pipe control.
1741 */
Chris Wilsonc0336662016-05-06 15:40:21 +01001742 if (IS_GEN9(request->i915))
Ben Widawsky1a5a9ce2015-12-17 09:49:57 -08001743 vf_flush_wa = true;
Mika Kuoppala0b2d0932016-06-07 17:19:10 +03001744
1745 /* WaForGAMHang:kbl */
1746 if (IS_KBL_REVID(request->i915, 0, KBL_REVID_B0))
1747 dc_flush_wa = true;
Ben Widawsky1a5a9ce2015-12-17 09:49:57 -08001748 }
Imre Deak9647ff32015-01-25 13:27:11 -08001749
Mika Kuoppala0b2d0932016-06-07 17:19:10 +03001750 len = 6;
1751
1752 if (vf_flush_wa)
1753 len += 6;
1754
1755 if (dc_flush_wa)
1756 len += 12;
1757
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001758 cs = intel_ring_begin(request, len);
1759 if (IS_ERR(cs))
1760 return PTR_ERR(cs);
Oscar Mateo47122742014-07-24 17:04:28 +01001761
Tvrtko Ursulin9f235df2017-02-16 12:23:25 +00001762 if (vf_flush_wa)
1763 cs = gen8_emit_pipe_control(cs, 0, 0);
Imre Deak9647ff32015-01-25 13:27:11 -08001764
Tvrtko Ursulin9f235df2017-02-16 12:23:25 +00001765 if (dc_flush_wa)
1766 cs = gen8_emit_pipe_control(cs, PIPE_CONTROL_DC_FLUSH_ENABLE,
1767 0);
Mika Kuoppala0b2d0932016-06-07 17:19:10 +03001768
Tvrtko Ursulin9f235df2017-02-16 12:23:25 +00001769 cs = gen8_emit_pipe_control(cs, flags, scratch_addr);
Mika Kuoppala0b2d0932016-06-07 17:19:10 +03001770
Tvrtko Ursulin9f235df2017-02-16 12:23:25 +00001771 if (dc_flush_wa)
1772 cs = gen8_emit_pipe_control(cs, PIPE_CONTROL_CS_STALL, 0);
Mika Kuoppala0b2d0932016-06-07 17:19:10 +03001773
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001774 intel_ring_advance(request, cs);
Oscar Mateo47122742014-07-24 17:04:28 +01001775
1776 return 0;
1777}
1778
Chris Wilson7c17d372016-01-20 15:43:35 +02001779/*
1780 * Reserve space for 2 NOOPs at the end of each request to be
1781 * used as a workaround for not being allowed to do lite
1782 * restore with HEAD==TAIL (WaIdleLiteRestore).
1783 */
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001784static void gen8_emit_wa_tail(struct drm_i915_gem_request *request, u32 *cs)
Oscar Mateo4da46e12014-07-24 17:04:27 +01001785{
Chris Wilsonbeecec92017-10-03 21:34:52 +01001786 /* Ensure there's always at least one preemption point per-request. */
1787 *cs++ = MI_ARB_CHECK;
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001788 *cs++ = MI_NOOP;
1789 request->wa_tail = intel_ring_offset(request, cs);
Chris Wilsoncaddfe72016-10-28 13:58:52 +01001790}
Oscar Mateo4da46e12014-07-24 17:04:27 +01001791
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001792static void gen8_emit_breadcrumb(struct drm_i915_gem_request *request, u32 *cs)
Chris Wilsoncaddfe72016-10-28 13:58:52 +01001793{
Chris Wilson7c17d372016-01-20 15:43:35 +02001794 /* w/a: bit 5 needs to be zero for MI_FLUSH_DW address. */
1795 BUILD_BUG_ON(I915_GEM_HWS_INDEX_ADDR & (1 << 5));
Oscar Mateo4da46e12014-07-24 17:04:27 +01001796
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001797 *cs++ = (MI_FLUSH_DW + 1) | MI_FLUSH_DW_OP_STOREDW;
1798 *cs++ = intel_hws_seqno_address(request->engine) | MI_FLUSH_DW_USE_GTT;
1799 *cs++ = 0;
1800 *cs++ = request->global_seqno;
1801 *cs++ = MI_USER_INTERRUPT;
1802 *cs++ = MI_NOOP;
1803 request->tail = intel_ring_offset(request, cs);
Chris Wilsoned1501d2017-03-27 14:14:12 +01001804 assert_ring_tail_valid(request->ring, request->tail);
Chris Wilsoncaddfe72016-10-28 13:58:52 +01001805
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001806 gen8_emit_wa_tail(request, cs);
Chris Wilson7c17d372016-01-20 15:43:35 +02001807}
Chris Wilson98f29e82016-10-28 13:58:51 +01001808static const int gen8_emit_breadcrumb_sz = 6 + WA_TAIL_DWORDS;
1809
Chris Wilsoncaddfe72016-10-28 13:58:52 +01001810static void gen8_emit_breadcrumb_render(struct drm_i915_gem_request *request,
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001811 u32 *cs)
Chris Wilson7c17d372016-01-20 15:43:35 +02001812{
Michał Winiarskice81a652016-04-12 15:51:55 +02001813 /* We're using qword write, seqno should be aligned to 8 bytes. */
1814 BUILD_BUG_ON(I915_GEM_HWS_INDEX & 1);
1815
Chris Wilson7c17d372016-01-20 15:43:35 +02001816 /* w/a for post sync ops following a GPGPU operation we
1817 * need a prior CS_STALL, which is emitted by the flush
1818 * following the batch.
Michel Thierry53292cd2015-04-15 18:11:33 +01001819 */
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001820 *cs++ = GFX_OP_PIPE_CONTROL(6);
1821 *cs++ = PIPE_CONTROL_GLOBAL_GTT_IVB | PIPE_CONTROL_CS_STALL |
1822 PIPE_CONTROL_QW_WRITE;
1823 *cs++ = intel_hws_seqno_address(request->engine);
1824 *cs++ = 0;
1825 *cs++ = request->global_seqno;
Michał Winiarskice81a652016-04-12 15:51:55 +02001826 /* We're thrashing one dword of HWS. */
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001827 *cs++ = 0;
1828 *cs++ = MI_USER_INTERRUPT;
1829 *cs++ = MI_NOOP;
1830 request->tail = intel_ring_offset(request, cs);
Chris Wilsoned1501d2017-03-27 14:14:12 +01001831 assert_ring_tail_valid(request->ring, request->tail);
Chris Wilsoncaddfe72016-10-28 13:58:52 +01001832
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001833 gen8_emit_wa_tail(request, cs);
Oscar Mateo4da46e12014-07-24 17:04:27 +01001834}
Chris Wilson98f29e82016-10-28 13:58:51 +01001835static const int gen8_emit_breadcrumb_render_sz = 8 + WA_TAIL_DWORDS;
1836
John Harrison87531812015-05-29 17:43:44 +01001837static int gen8_init_rcs_context(struct drm_i915_gem_request *req)
Thomas Daniele7778be2014-12-02 12:50:48 +00001838{
1839 int ret;
1840
Tvrtko Ursulin4ac96592017-02-14 15:00:17 +00001841 ret = intel_ring_workarounds_emit(req);
Thomas Daniele7778be2014-12-02 12:50:48 +00001842 if (ret)
1843 return ret;
1844
Peter Antoine3bbaba02015-07-10 20:13:11 +03001845 ret = intel_rcs_context_init_mocs(req);
1846 /*
1847 * Failing to program the MOCS is non-fatal.The system will not
1848 * run at peak performance. So generate an error and carry on.
1849 */
1850 if (ret)
1851 DRM_ERROR("MOCS failed to program: expect performance issues.\n");
1852
Chris Wilson4e50f082016-10-28 13:58:31 +01001853 return i915_gem_render_state_emit(req);
Thomas Daniele7778be2014-12-02 12:50:48 +00001854}
1855
Oscar Mateo73e4d072014-07-24 17:04:48 +01001856/**
1857 * intel_logical_ring_cleanup() - deallocate the Engine Command Streamer
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01001858 * @engine: Engine Command Streamer.
Oscar Mateo73e4d072014-07-24 17:04:48 +01001859 */
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001860void intel_logical_ring_cleanup(struct intel_engine_cs *engine)
Oscar Mateo454afeb2014-07-24 17:04:22 +01001861{
John Harrison6402c332014-10-31 12:00:26 +00001862 struct drm_i915_private *dev_priv;
Oscar Mateo9832b9d2014-07-24 17:04:30 +01001863
Tvrtko Ursulin27af5ee2016-04-04 12:11:56 +01001864 /*
1865 * Tasklet cannot be active at this point due intel_mark_active/idle
1866 * so this is just for documentation.
1867 */
Mika Kuoppalab620e872017-09-22 15:43:03 +03001868 if (WARN_ON(test_bit(TASKLET_STATE_SCHED, &engine->execlists.irq_tasklet.state)))
1869 tasklet_kill(&engine->execlists.irq_tasklet);
Tvrtko Ursulin27af5ee2016-04-04 12:11:56 +01001870
Chris Wilsonc0336662016-05-06 15:40:21 +01001871 dev_priv = engine->i915;
John Harrison6402c332014-10-31 12:00:26 +00001872
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001873 if (engine->buffer) {
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001874 WARN_ON((I915_READ_MODE(engine) & MODE_IDLE) == 0);
Dave Gordonb0366a52015-12-08 15:02:36 +00001875 }
Oscar Mateo48d82382014-07-24 17:04:23 +01001876
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001877 if (engine->cleanup)
1878 engine->cleanup(engine);
Oscar Mateo48d82382014-07-24 17:04:23 +01001879
Chris Wilsone8a9c582016-12-18 15:37:20 +00001880 intel_engine_cleanup_common(engine);
Arun Siluvery17ee9502015-06-19 19:07:01 +01001881
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001882 lrc_destroy_wa_ctx(engine);
Chris Wilsonc0336662016-05-06 15:40:21 +01001883 engine->i915 = NULL;
Akash Goel3b3f1652016-10-13 22:44:48 +05301884 dev_priv->engine[engine->id] = NULL;
1885 kfree(engine);
Oscar Mateo454afeb2014-07-24 17:04:22 +01001886}
1887
Chris Wilsonff44ad52017-03-16 17:13:03 +00001888static void execlists_set_default_submission(struct intel_engine_cs *engine)
Chris Wilsonddd66c52016-08-02 22:50:31 +01001889{
Chris Wilsonff44ad52017-03-16 17:13:03 +00001890 engine->submit_request = execlists_submit_request;
Chris Wilson27a5f612017-09-15 18:31:00 +01001891 engine->cancel_requests = execlists_cancel_requests;
Chris Wilsonff44ad52017-03-16 17:13:03 +00001892 engine->schedule = execlists_schedule;
Mika Kuoppalab620e872017-09-22 15:43:03 +03001893 engine->execlists.irq_tasklet.func = intel_lrc_irq_handler;
Chris Wilsonaba5e272017-10-25 15:39:41 +01001894
1895 engine->park = NULL;
1896 engine->unpark = NULL;
Chris Wilsonddd66c52016-08-02 22:50:31 +01001897}
1898
Tvrtko Ursulinc9cacf92016-01-12 17:32:34 +00001899static void
Chris Wilsone1382ef2016-05-06 15:40:20 +01001900logical_ring_default_vfuncs(struct intel_engine_cs *engine)
Tvrtko Ursulinc9cacf92016-01-12 17:32:34 +00001901{
1902 /* Default vfuncs which can be overriden by each engine. */
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001903 engine->init_hw = gen8_init_common_ring;
Chris Wilson821ed7d2016-09-09 14:11:53 +01001904 engine->reset_hw = reset_common_ring;
Chris Wilsone8a9c582016-12-18 15:37:20 +00001905
1906 engine->context_pin = execlists_context_pin;
1907 engine->context_unpin = execlists_context_unpin;
1908
Chris Wilsonf73e7392016-12-18 15:37:24 +00001909 engine->request_alloc = execlists_request_alloc;
1910
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001911 engine->emit_flush = gen8_emit_flush;
Chris Wilson9b81d552016-10-28 13:58:50 +01001912 engine->emit_breadcrumb = gen8_emit_breadcrumb;
Chris Wilson98f29e82016-10-28 13:58:51 +01001913 engine->emit_breadcrumb_sz = gen8_emit_breadcrumb_sz;
Chris Wilsonff44ad52017-03-16 17:13:03 +00001914
1915 engine->set_default_submission = execlists_set_default_submission;
Chris Wilsonddd66c52016-08-02 22:50:31 +01001916
Chris Wilson31bb59c2016-07-01 17:23:27 +01001917 engine->irq_enable = gen8_logical_ring_enable_irq;
1918 engine->irq_disable = gen8_logical_ring_disable_irq;
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001919 engine->emit_bb_start = gen8_emit_bb_start;
Tvrtko Ursulinc9cacf92016-01-12 17:32:34 +00001920}
1921
Tvrtko Ursulind9f3af92016-01-12 17:32:35 +00001922static inline void
Dave Gordonc2c7f242016-07-13 16:03:35 +01001923logical_ring_default_irqs(struct intel_engine_cs *engine)
Tvrtko Ursulind9f3af92016-01-12 17:32:35 +00001924{
Dave Gordonc2c7f242016-07-13 16:03:35 +01001925 unsigned shift = engine->irq_shift;
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001926 engine->irq_enable_mask = GT_RENDER_USER_INTERRUPT << shift;
1927 engine->irq_keep_mask = GT_CONTEXT_SWITCH_INTERRUPT << shift;
Tvrtko Ursulind9f3af92016-01-12 17:32:35 +00001928}
1929
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01001930static void
1931logical_ring_setup(struct intel_engine_cs *engine)
1932{
1933 struct drm_i915_private *dev_priv = engine->i915;
1934 enum forcewake_domains fw_domains;
1935
Tvrtko Ursulin019bf272016-07-13 16:03:41 +01001936 intel_engine_setup_common(engine);
1937
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01001938 /* Intentionally left blank. */
1939 engine->buffer = NULL;
1940
1941 fw_domains = intel_uncore_forcewake_for_reg(dev_priv,
1942 RING_ELSP(engine),
1943 FW_REG_WRITE);
1944
1945 fw_domains |= intel_uncore_forcewake_for_reg(dev_priv,
1946 RING_CONTEXT_STATUS_PTR(engine),
1947 FW_REG_READ | FW_REG_WRITE);
1948
1949 fw_domains |= intel_uncore_forcewake_for_reg(dev_priv,
1950 RING_CONTEXT_STATUS_BUF_BASE(engine),
1951 FW_REG_READ);
1952
Mika Kuoppalab620e872017-09-22 15:43:03 +03001953 engine->execlists.fw_domains = fw_domains;
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01001954
Mika Kuoppalab620e872017-09-22 15:43:03 +03001955 tasklet_init(&engine->execlists.irq_tasklet,
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01001956 intel_lrc_irq_handler, (unsigned long)engine);
1957
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01001958 logical_ring_default_vfuncs(engine);
1959 logical_ring_default_irqs(engine);
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01001960}
1961
Daniele Ceraolo Spurio486e93f2017-09-13 09:56:02 +01001962static int logical_ring_init(struct intel_engine_cs *engine)
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01001963{
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01001964 int ret;
1965
Tvrtko Ursulin019bf272016-07-13 16:03:41 +01001966 ret = intel_engine_init_common(engine);
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01001967 if (ret)
1968 goto error;
1969
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01001970 return 0;
1971
1972error:
1973 intel_logical_ring_cleanup(engine);
1974 return ret;
1975}
1976
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +01001977int logical_render_ring_init(struct intel_engine_cs *engine)
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01001978{
1979 struct drm_i915_private *dev_priv = engine->i915;
1980 int ret;
1981
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01001982 logical_ring_setup(engine);
1983
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01001984 if (HAS_L3_DPF(dev_priv))
1985 engine->irq_keep_mask |= GT_RENDER_L3_PARITY_ERROR_INTERRUPT;
1986
1987 /* Override some for render ring. */
1988 if (INTEL_GEN(dev_priv) >= 9)
1989 engine->init_hw = gen9_init_render_ring;
1990 else
1991 engine->init_hw = gen8_init_render_ring;
1992 engine->init_context = gen8_init_rcs_context;
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01001993 engine->emit_flush = gen8_emit_flush_render;
Chris Wilson9b81d552016-10-28 13:58:50 +01001994 engine->emit_breadcrumb = gen8_emit_breadcrumb_render;
Chris Wilson98f29e82016-10-28 13:58:51 +01001995 engine->emit_breadcrumb_sz = gen8_emit_breadcrumb_render_sz;
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01001996
Chris Wilsonf51455d2017-01-10 14:47:34 +00001997 ret = intel_engine_create_scratch(engine, PAGE_SIZE);
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01001998 if (ret)
1999 return ret;
2000
2001 ret = intel_init_workaround_bb(engine);
2002 if (ret) {
2003 /*
2004 * We continue even if we fail to initialize WA batch
2005 * because we only expect rare glitches but nothing
2006 * critical to prevent us from using GPU
2007 */
2008 DRM_ERROR("WA batch buffer initialization failed: %d\n",
2009 ret);
2010 }
2011
Tvrtko Ursulind038fc72016-12-16 13:18:42 +00002012 return logical_ring_init(engine);
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01002013}
2014
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +01002015int logical_xcs_ring_init(struct intel_engine_cs *engine)
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01002016{
2017 logical_ring_setup(engine);
2018
2019 return logical_ring_init(engine);
2020}
2021
Jeff McGee0cea6502015-02-13 10:27:56 -06002022static u32
Chris Wilsonc0336662016-05-06 15:40:21 +01002023make_rpcs(struct drm_i915_private *dev_priv)
Jeff McGee0cea6502015-02-13 10:27:56 -06002024{
2025 u32 rpcs = 0;
2026
2027 /*
2028 * No explicit RPCS request is needed to ensure full
2029 * slice/subslice/EU enablement prior to Gen9.
2030 */
Chris Wilsonc0336662016-05-06 15:40:21 +01002031 if (INTEL_GEN(dev_priv) < 9)
Jeff McGee0cea6502015-02-13 10:27:56 -06002032 return 0;
2033
2034 /*
2035 * Starting in Gen9, render power gating can leave
2036 * slice/subslice/EU in a partially enabled state. We
2037 * must make an explicit request through RPCS for full
2038 * enablement.
2039 */
Imre Deak43b67992016-08-31 19:13:02 +03002040 if (INTEL_INFO(dev_priv)->sseu.has_slice_pg) {
Jeff McGee0cea6502015-02-13 10:27:56 -06002041 rpcs |= GEN8_RPCS_S_CNT_ENABLE;
Imre Deakf08a0c92016-08-31 19:13:04 +03002042 rpcs |= hweight8(INTEL_INFO(dev_priv)->sseu.slice_mask) <<
Jeff McGee0cea6502015-02-13 10:27:56 -06002043 GEN8_RPCS_S_CNT_SHIFT;
2044 rpcs |= GEN8_RPCS_ENABLE;
2045 }
2046
Imre Deak43b67992016-08-31 19:13:02 +03002047 if (INTEL_INFO(dev_priv)->sseu.has_subslice_pg) {
Jeff McGee0cea6502015-02-13 10:27:56 -06002048 rpcs |= GEN8_RPCS_SS_CNT_ENABLE;
Imre Deak57ec1712016-08-31 19:13:05 +03002049 rpcs |= hweight8(INTEL_INFO(dev_priv)->sseu.subslice_mask) <<
Jeff McGee0cea6502015-02-13 10:27:56 -06002050 GEN8_RPCS_SS_CNT_SHIFT;
2051 rpcs |= GEN8_RPCS_ENABLE;
2052 }
2053
Imre Deak43b67992016-08-31 19:13:02 +03002054 if (INTEL_INFO(dev_priv)->sseu.has_eu_pg) {
2055 rpcs |= INTEL_INFO(dev_priv)->sseu.eu_per_subslice <<
Jeff McGee0cea6502015-02-13 10:27:56 -06002056 GEN8_RPCS_EU_MIN_SHIFT;
Imre Deak43b67992016-08-31 19:13:02 +03002057 rpcs |= INTEL_INFO(dev_priv)->sseu.eu_per_subslice <<
Jeff McGee0cea6502015-02-13 10:27:56 -06002058 GEN8_RPCS_EU_MAX_SHIFT;
2059 rpcs |= GEN8_RPCS_ENABLE;
2060 }
2061
2062 return rpcs;
2063}
2064
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002065static u32 intel_lr_indirect_ctx_offset(struct intel_engine_cs *engine)
Michel Thierry71562912016-02-23 10:31:49 +00002066{
2067 u32 indirect_ctx_offset;
2068
Chris Wilsonc0336662016-05-06 15:40:21 +01002069 switch (INTEL_GEN(engine->i915)) {
Michel Thierry71562912016-02-23 10:31:49 +00002070 default:
Chris Wilsonc0336662016-05-06 15:40:21 +01002071 MISSING_CASE(INTEL_GEN(engine->i915));
Michel Thierry71562912016-02-23 10:31:49 +00002072 /* fall through */
Michel Thierry7bd0a2c2017-06-06 13:30:38 -07002073 case 10:
2074 indirect_ctx_offset =
2075 GEN10_CTX_RCS_INDIRECT_CTX_OFFSET_DEFAULT;
2076 break;
Michel Thierry71562912016-02-23 10:31:49 +00002077 case 9:
2078 indirect_ctx_offset =
2079 GEN9_CTX_RCS_INDIRECT_CTX_OFFSET_DEFAULT;
2080 break;
2081 case 8:
2082 indirect_ctx_offset =
2083 GEN8_CTX_RCS_INDIRECT_CTX_OFFSET_DEFAULT;
2084 break;
2085 }
2086
2087 return indirect_ctx_offset;
2088}
2089
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002090static void execlists_init_reg_state(u32 *regs,
Chris Wilsona3aabe82016-10-04 21:11:26 +01002091 struct i915_gem_context *ctx,
2092 struct intel_engine_cs *engine,
2093 struct intel_ring *ring)
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002094{
Chris Wilsona3aabe82016-10-04 21:11:26 +01002095 struct drm_i915_private *dev_priv = engine->i915;
2096 struct i915_hw_ppgtt *ppgtt = ctx->ppgtt ?: dev_priv->mm.aliasing_ppgtt;
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002097 u32 base = engine->mmio_base;
2098 bool rcs = engine->id == RCS;
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002099
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002100 /* A context is actually a big batch buffer with several
2101 * MI_LOAD_REGISTER_IMM commands followed by (reg, value) pairs. The
2102 * values we are setting here are only for the first context restore:
2103 * on a subsequent save, the GPU will recreate this batchbuffer with new
2104 * values (including all the missing MI_LOAD_REGISTER_IMM commands that
2105 * we are not initializing here).
2106 */
2107 regs[CTX_LRI_HEADER_0] = MI_LOAD_REGISTER_IMM(rcs ? 14 : 11) |
2108 MI_LRI_FORCE_POSTED;
2109
2110 CTX_REG(regs, CTX_CONTEXT_CONTROL, RING_CONTEXT_CONTROL(engine),
2111 _MASKED_BIT_ENABLE(CTX_CTRL_INHIBIT_SYN_CTX_SWITCH |
2112 CTX_CTRL_ENGINE_CTX_RESTORE_INHIBIT |
2113 (HAS_RESOURCE_STREAMER(dev_priv) ?
2114 CTX_CTRL_RS_CTX_ENABLE : 0)));
2115 CTX_REG(regs, CTX_RING_HEAD, RING_HEAD(base), 0);
2116 CTX_REG(regs, CTX_RING_TAIL, RING_TAIL(base), 0);
2117 CTX_REG(regs, CTX_RING_BUFFER_START, RING_START(base), 0);
2118 CTX_REG(regs, CTX_RING_BUFFER_CONTROL, RING_CTL(base),
2119 RING_CTL_SIZE(ring->size) | RING_VALID);
2120 CTX_REG(regs, CTX_BB_HEAD_U, RING_BBADDR_UDW(base), 0);
2121 CTX_REG(regs, CTX_BB_HEAD_L, RING_BBADDR(base), 0);
2122 CTX_REG(regs, CTX_BB_STATE, RING_BBSTATE(base), RING_BB_PPGTT);
2123 CTX_REG(regs, CTX_SECOND_BB_HEAD_U, RING_SBBADDR_UDW(base), 0);
2124 CTX_REG(regs, CTX_SECOND_BB_HEAD_L, RING_SBBADDR(base), 0);
2125 CTX_REG(regs, CTX_SECOND_BB_STATE, RING_SBBSTATE(base), 0);
2126 if (rcs) {
Chris Wilson604a8f62017-09-21 14:54:43 +01002127 struct i915_ctx_workarounds *wa_ctx = &engine->wa_ctx;
2128
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002129 CTX_REG(regs, CTX_RCS_INDIRECT_CTX, RING_INDIRECT_CTX(base), 0);
2130 CTX_REG(regs, CTX_RCS_INDIRECT_CTX_OFFSET,
2131 RING_INDIRECT_CTX_OFFSET(base), 0);
Chris Wilson604a8f62017-09-21 14:54:43 +01002132 if (wa_ctx->indirect_ctx.size) {
Chris Wilsonbde13eb2016-08-15 10:49:07 +01002133 u32 ggtt_offset = i915_ggtt_offset(wa_ctx->vma);
Arun Siluvery17ee9502015-06-19 19:07:01 +01002134
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002135 regs[CTX_RCS_INDIRECT_CTX + 1] =
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00002136 (ggtt_offset + wa_ctx->indirect_ctx.offset) |
2137 (wa_ctx->indirect_ctx.size / CACHELINE_BYTES);
Arun Siluvery17ee9502015-06-19 19:07:01 +01002138
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002139 regs[CTX_RCS_INDIRECT_CTX_OFFSET + 1] =
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002140 intel_lr_indirect_ctx_offset(engine) << 6;
Chris Wilson604a8f62017-09-21 14:54:43 +01002141 }
2142
2143 CTX_REG(regs, CTX_BB_PER_CTX_PTR, RING_BB_PER_CTX_PTR(base), 0);
2144 if (wa_ctx->per_ctx.size) {
2145 u32 ggtt_offset = i915_ggtt_offset(wa_ctx->vma);
Arun Siluvery17ee9502015-06-19 19:07:01 +01002146
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002147 regs[CTX_BB_PER_CTX_PTR + 1] =
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00002148 (ggtt_offset + wa_ctx->per_ctx.offset) | 0x01;
Arun Siluvery17ee9502015-06-19 19:07:01 +01002149 }
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002150 }
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002151
2152 regs[CTX_LRI_HEADER_1] = MI_LOAD_REGISTER_IMM(9) | MI_LRI_FORCE_POSTED;
2153
2154 CTX_REG(regs, CTX_CTX_TIMESTAMP, RING_CTX_TIMESTAMP(base), 0);
Ville Syrjälä0d925ea2015-11-04 23:20:11 +02002155 /* PDP values well be assigned later if needed */
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002156 CTX_REG(regs, CTX_PDP3_UDW, GEN8_RING_PDP_UDW(engine, 3), 0);
2157 CTX_REG(regs, CTX_PDP3_LDW, GEN8_RING_PDP_LDW(engine, 3), 0);
2158 CTX_REG(regs, CTX_PDP2_UDW, GEN8_RING_PDP_UDW(engine, 2), 0);
2159 CTX_REG(regs, CTX_PDP2_LDW, GEN8_RING_PDP_LDW(engine, 2), 0);
2160 CTX_REG(regs, CTX_PDP1_UDW, GEN8_RING_PDP_UDW(engine, 1), 0);
2161 CTX_REG(regs, CTX_PDP1_LDW, GEN8_RING_PDP_LDW(engine, 1), 0);
2162 CTX_REG(regs, CTX_PDP0_UDW, GEN8_RING_PDP_UDW(engine, 0), 0);
2163 CTX_REG(regs, CTX_PDP0_LDW, GEN8_RING_PDP_LDW(engine, 0), 0);
Michel Thierryd7b26332015-04-08 12:13:34 +01002164
Chris Wilson949e8ab2017-02-09 14:40:36 +00002165 if (ppgtt && i915_vm_is_48bit(&ppgtt->base)) {
Michel Thierry2dba3232015-07-30 11:06:23 +01002166 /* 64b PPGTT (48bit canonical)
2167 * PDP0_DESCRIPTOR contains the base address to PML4 and
2168 * other PDP Descriptors are ignored.
2169 */
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002170 ASSIGN_CTX_PML4(ppgtt, regs);
Michel Thierry2dba3232015-07-30 11:06:23 +01002171 }
2172
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002173 if (rcs) {
2174 regs[CTX_LRI_HEADER_2] = MI_LOAD_REGISTER_IMM(1);
2175 CTX_REG(regs, CTX_R_PWR_CLK_STATE, GEN8_R_PWR_CLK_STATE,
2176 make_rpcs(dev_priv));
Robert Bragg19f81df2017-06-13 12:23:03 +01002177
2178 i915_oa_init_reg_state(engine, ctx, regs);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002179 }
Chris Wilsona3aabe82016-10-04 21:11:26 +01002180}
2181
2182static int
2183populate_lr_context(struct i915_gem_context *ctx,
2184 struct drm_i915_gem_object *ctx_obj,
2185 struct intel_engine_cs *engine,
2186 struct intel_ring *ring)
2187{
2188 void *vaddr;
2189 int ret;
2190
2191 ret = i915_gem_object_set_to_cpu_domain(ctx_obj, true);
2192 if (ret) {
2193 DRM_DEBUG_DRIVER("Could not set to CPU domain\n");
2194 return ret;
2195 }
2196
2197 vaddr = i915_gem_object_pin_map(ctx_obj, I915_MAP_WB);
2198 if (IS_ERR(vaddr)) {
2199 ret = PTR_ERR(vaddr);
2200 DRM_DEBUG_DRIVER("Could not map object pages! (%d)\n", ret);
2201 return ret;
2202 }
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002203 ctx_obj->mm.dirty = true;
Chris Wilsona3aabe82016-10-04 21:11:26 +01002204
2205 /* The second page of the context object contains some fields which must
2206 * be set up prior to the first execution. */
2207
2208 execlists_init_reg_state(vaddr + LRC_STATE_PN * PAGE_SIZE,
2209 ctx, engine, ring);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002210
Tvrtko Ursulin7d774ca2016-04-12 15:40:42 +01002211 i915_gem_object_unpin_map(ctx_obj);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002212
2213 return 0;
2214}
2215
Chris Wilsone2efd132016-05-24 14:53:34 +01002216static int execlists_context_deferred_alloc(struct i915_gem_context *ctx,
Chris Wilson978f1e02016-04-28 09:56:54 +01002217 struct intel_engine_cs *engine)
Oscar Mateoede7d422014-07-24 17:04:12 +01002218{
Oscar Mateo8c8579172014-07-24 17:04:14 +01002219 struct drm_i915_gem_object *ctx_obj;
Chris Wilson9021ad02016-05-24 14:53:37 +01002220 struct intel_context *ce = &ctx->engine[engine->id];
Chris Wilsonbf3783e2016-08-15 10:48:54 +01002221 struct i915_vma *vma;
Oscar Mateo8c8579172014-07-24 17:04:14 +01002222 uint32_t context_size;
Chris Wilson7e37f882016-08-02 22:50:21 +01002223 struct intel_ring *ring;
Oscar Mateo8c8579172014-07-24 17:04:14 +01002224 int ret;
2225
Chris Wilson9021ad02016-05-24 14:53:37 +01002226 WARN_ON(ce->state);
Oscar Mateoede7d422014-07-24 17:04:12 +01002227
Joonas Lahtinen63ffbcd2017-04-28 10:53:36 +03002228 context_size = round_up(engine->context_size, I915_GTT_PAGE_SIZE);
Oscar Mateo8c8579172014-07-24 17:04:14 +01002229
Michel Thierry0b29c752017-09-13 09:56:00 +01002230 /*
2231 * Before the actual start of the context image, we insert a few pages
2232 * for our own use and for sharing with the GuC.
2233 */
2234 context_size += LRC_HEADER_PAGES * PAGE_SIZE;
Alex Daid1675192015-08-12 15:43:43 +01002235
Tvrtko Ursulin12d79d72016-12-01 14:16:37 +00002236 ctx_obj = i915_gem_object_create(ctx->i915, context_size);
Chris Wilsonfe3db792016-04-25 13:32:13 +01002237 if (IS_ERR(ctx_obj)) {
Dan Carpenter3126a662015-04-30 17:30:50 +03002238 DRM_DEBUG_DRIVER("Alloc LRC backing obj failed.\n");
Chris Wilsonfe3db792016-04-25 13:32:13 +01002239 return PTR_ERR(ctx_obj);
Oscar Mateo8c8579172014-07-24 17:04:14 +01002240 }
2241
Chris Wilsona01cb372017-01-16 15:21:30 +00002242 vma = i915_vma_instance(ctx_obj, &ctx->i915->ggtt.base, NULL);
Chris Wilsonbf3783e2016-08-15 10:48:54 +01002243 if (IS_ERR(vma)) {
2244 ret = PTR_ERR(vma);
2245 goto error_deref_obj;
2246 }
2247
Chris Wilson7e37f882016-08-02 22:50:21 +01002248 ring = intel_engine_create_ring(engine, ctx->ring_size);
Chris Wilsondca33ec2016-08-02 22:50:20 +01002249 if (IS_ERR(ring)) {
2250 ret = PTR_ERR(ring);
Nick Hoathe84fe802015-09-11 12:53:46 +01002251 goto error_deref_obj;
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002252 }
2253
Chris Wilsondca33ec2016-08-02 22:50:20 +01002254 ret = populate_lr_context(ctx, ctx_obj, engine, ring);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002255 if (ret) {
2256 DRM_DEBUG_DRIVER("Failed to populate LRC: %d\n", ret);
Chris Wilsondca33ec2016-08-02 22:50:20 +01002257 goto error_ring_free;
Oscar Mateo84c23772014-07-24 17:04:15 +01002258 }
2259
Chris Wilsondca33ec2016-08-02 22:50:20 +01002260 ce->ring = ring;
Chris Wilsonbf3783e2016-08-15 10:48:54 +01002261 ce->state = vma;
Chuanxiao Dong0d402a22017-05-11 18:07:42 +08002262 ce->initialised |= engine->init_context == NULL;
Oscar Mateoede7d422014-07-24 17:04:12 +01002263
2264 return 0;
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002265
Chris Wilsondca33ec2016-08-02 22:50:20 +01002266error_ring_free:
Chris Wilson7e37f882016-08-02 22:50:21 +01002267 intel_ring_free(ring);
Nick Hoathe84fe802015-09-11 12:53:46 +01002268error_deref_obj:
Chris Wilsonf8c417c2016-07-20 13:31:53 +01002269 i915_gem_object_put(ctx_obj);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002270 return ret;
Oscar Mateoede7d422014-07-24 17:04:12 +01002271}
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002272
Chris Wilson821ed7d2016-09-09 14:11:53 +01002273void intel_lr_context_resume(struct drm_i915_private *dev_priv)
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002274{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00002275 struct intel_engine_cs *engine;
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002276 struct i915_gem_context *ctx;
Akash Goel3b3f1652016-10-13 22:44:48 +05302277 enum intel_engine_id id;
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002278
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002279 /* Because we emit WA_TAIL_DWORDS there may be a disparity
2280 * between our bookkeeping in ce->ring->head and ce->ring->tail and
2281 * that stored in context. As we only write new commands from
2282 * ce->ring->tail onwards, everything before that is junk. If the GPU
2283 * starts reading from its RING_HEAD from the context, it may try to
2284 * execute that junk and die.
2285 *
2286 * So to avoid that we reset the context images upon resume. For
2287 * simplicity, we just zero everything out.
2288 */
Chris Wilson829a0af2017-06-20 12:05:45 +01002289 list_for_each_entry(ctx, &dev_priv->contexts.list, link) {
Akash Goel3b3f1652016-10-13 22:44:48 +05302290 for_each_engine(engine, dev_priv, id) {
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002291 struct intel_context *ce = &ctx->engine[engine->id];
2292 u32 *reg;
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002293
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002294 if (!ce->state)
2295 continue;
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002296
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002297 reg = i915_gem_object_pin_map(ce->state->obj,
2298 I915_MAP_WB);
2299 if (WARN_ON(IS_ERR(reg)))
2300 continue;
Tvrtko Ursulin7d774ca2016-04-12 15:40:42 +01002301
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002302 reg += LRC_STATE_PN * PAGE_SIZE / sizeof(*reg);
2303 reg[CTX_RING_HEAD+1] = 0;
2304 reg[CTX_RING_TAIL+1] = 0;
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002305
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002306 ce->state->obj->mm.dirty = true;
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002307 i915_gem_object_unpin_map(ce->state->obj);
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002308
Chris Wilsone6ba9992017-04-25 14:00:49 +01002309 intel_ring_reset(ce->ring, 0);
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002310 }
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002311 }
2312}