blob: 6205d320b86fd674a830b9766dea61bdbf1cdc56 [file] [log] [blame]
Oscar Mateob20385f2014-07-24 17:04:10 +01001/*
2 * Copyright © 2014 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 *
23 * Authors:
24 * Ben Widawsky <ben@bwidawsk.net>
25 * Michel Thierry <michel.thierry@intel.com>
26 * Thomas Daniel <thomas.daniel@intel.com>
27 * Oscar Mateo <oscar.mateo@intel.com>
28 *
29 */
30
Oscar Mateo73e4d072014-07-24 17:04:48 +010031/**
32 * DOC: Logical Rings, Logical Ring Contexts and Execlists
33 *
34 * Motivation:
Oscar Mateob20385f2014-07-24 17:04:10 +010035 * GEN8 brings an expansion of the HW contexts: "Logical Ring Contexts".
36 * These expanded contexts enable a number of new abilities, especially
37 * "Execlists" (also implemented in this file).
38 *
Oscar Mateo73e4d072014-07-24 17:04:48 +010039 * One of the main differences with the legacy HW contexts is that logical
40 * ring contexts incorporate many more things to the context's state, like
41 * PDPs or ringbuffer control registers:
42 *
43 * The reason why PDPs are included in the context is straightforward: as
44 * PPGTTs (per-process GTTs) are actually per-context, having the PDPs
45 * contained there mean you don't need to do a ppgtt->switch_mm yourself,
46 * instead, the GPU will do it for you on the context switch.
47 *
48 * But, what about the ringbuffer control registers (head, tail, etc..)?
49 * shouldn't we just need a set of those per engine command streamer? This is
50 * where the name "Logical Rings" starts to make sense: by virtualizing the
51 * rings, the engine cs shifts to a new "ring buffer" with every context
52 * switch. When you want to submit a workload to the GPU you: A) choose your
53 * context, B) find its appropriate virtualized ring, C) write commands to it
54 * and then, finally, D) tell the GPU to switch to that context.
55 *
56 * Instead of the legacy MI_SET_CONTEXT, the way you tell the GPU to switch
57 * to a contexts is via a context execution list, ergo "Execlists".
58 *
59 * LRC implementation:
60 * Regarding the creation of contexts, we have:
61 *
62 * - One global default context.
63 * - One local default context for each opened fd.
64 * - One local extra context for each context create ioctl call.
65 *
66 * Now that ringbuffers belong per-context (and not per-engine, like before)
67 * and that contexts are uniquely tied to a given engine (and not reusable,
68 * like before) we need:
69 *
70 * - One ringbuffer per-engine inside each context.
71 * - One backing object per-engine inside each context.
72 *
73 * The global default context starts its life with these new objects fully
74 * allocated and populated. The local default context for each opened fd is
75 * more complex, because we don't know at creation time which engine is going
76 * to use them. To handle this, we have implemented a deferred creation of LR
77 * contexts:
78 *
79 * The local context starts its life as a hollow or blank holder, that only
80 * gets populated for a given engine once we receive an execbuffer. If later
81 * on we receive another execbuffer ioctl for the same context but a different
82 * engine, we allocate/populate a new ringbuffer and context backing object and
83 * so on.
84 *
85 * Finally, regarding local contexts created using the ioctl call: as they are
86 * only allowed with the render ring, we can allocate & populate them right
87 * away (no need to defer anything, at least for now).
88 *
89 * Execlists implementation:
Oscar Mateob20385f2014-07-24 17:04:10 +010090 * Execlists are the new method by which, on gen8+ hardware, workloads are
91 * submitted for execution (as opposed to the legacy, ringbuffer-based, method).
Oscar Mateo73e4d072014-07-24 17:04:48 +010092 * This method works as follows:
93 *
94 * When a request is committed, its commands (the BB start and any leading or
95 * trailing commands, like the seqno breadcrumbs) are placed in the ringbuffer
96 * for the appropriate context. The tail pointer in the hardware context is not
97 * updated at this time, but instead, kept by the driver in the ringbuffer
98 * structure. A structure representing this request is added to a request queue
99 * for the appropriate engine: this structure contains a copy of the context's
100 * tail after the request was written to the ring buffer and a pointer to the
101 * context itself.
102 *
103 * If the engine's request queue was empty before the request was added, the
104 * queue is processed immediately. Otherwise the queue will be processed during
105 * a context switch interrupt. In any case, elements on the queue will get sent
106 * (in pairs) to the GPU's ExecLists Submit Port (ELSP, for short) with a
107 * globally unique 20-bits submission ID.
108 *
109 * When execution of a request completes, the GPU updates the context status
110 * buffer with a context complete event and generates a context switch interrupt.
111 * During the interrupt handling, the driver examines the events in the buffer:
112 * for each context complete event, if the announced ID matches that on the head
113 * of the request queue, then that request is retired and removed from the queue.
114 *
115 * After processing, if any requests were retired and the queue is not empty
116 * then a new execution list can be submitted. The two requests at the front of
117 * the queue are next to be submitted but since a context may not occur twice in
118 * an execution list, if subsequent requests have the same ID as the first then
119 * the two requests must be combined. This is done simply by discarding requests
120 * at the head of the queue until either only one requests is left (in which case
121 * we use a NULL second context) or the first two requests have unique IDs.
122 *
123 * By always executing the first two requests in the queue the driver ensures
124 * that the GPU is kept as busy as possible. In the case where a single context
125 * completes but a second context is still executing, the request for this second
126 * context will be at the head of the queue when we remove the first one. This
127 * request will then be resubmitted along with a new request for a different context,
128 * which will cause the hardware to continue executing the second request and queue
129 * the new request (the GPU detects the condition of a context getting preempted
130 * with the same context and optimizes the context switch flow by not doing
131 * preemption, but just sampling the new tail pointer).
132 *
Oscar Mateob20385f2014-07-24 17:04:10 +0100133 */
Tvrtko Ursulin27af5ee2016-04-04 12:11:56 +0100134#include <linux/interrupt.h>
Oscar Mateob20385f2014-07-24 17:04:10 +0100135
136#include <drm/drmP.h>
137#include <drm/i915_drm.h>
138#include "i915_drv.h"
Chris Wilson7c2fa7f2017-11-10 14:26:34 +0000139#include "i915_gem_render_state.h"
Peter Antoine3bbaba02015-07-10 20:13:11 +0300140#include "intel_mocs.h"
Oscar Mateo127f1002014-07-24 17:04:11 +0100141
Thomas Daniele981e7b2014-07-24 17:04:39 +0100142#define RING_EXECLIST_QFULL (1 << 0x2)
143#define RING_EXECLIST1_VALID (1 << 0x3)
144#define RING_EXECLIST0_VALID (1 << 0x4)
145#define RING_EXECLIST_ACTIVE_STATUS (3 << 0xE)
146#define RING_EXECLIST1_ACTIVE (1 << 0x11)
147#define RING_EXECLIST0_ACTIVE (1 << 0x12)
148
149#define GEN8_CTX_STATUS_IDLE_ACTIVE (1 << 0)
150#define GEN8_CTX_STATUS_PREEMPTED (1 << 1)
151#define GEN8_CTX_STATUS_ELEMENT_SWITCH (1 << 2)
152#define GEN8_CTX_STATUS_ACTIVE_IDLE (1 << 3)
153#define GEN8_CTX_STATUS_COMPLETE (1 << 4)
154#define GEN8_CTX_STATUS_LITE_RESTORE (1 << 15)
Oscar Mateo8670d6f2014-07-24 17:04:17 +0100155
Chris Wilson70c2a242016-09-09 14:11:46 +0100156#define GEN8_CTX_STATUS_COMPLETED_MASK \
Chris Wilsond8747af2017-11-20 12:34:56 +0000157 (GEN8_CTX_STATUS_COMPLETE | GEN8_CTX_STATUS_PREEMPTED)
Chris Wilson70c2a242016-09-09 14:11:46 +0100158
Oscar Mateo8670d6f2014-07-24 17:04:17 +0100159#define CTX_LRI_HEADER_0 0x01
160#define CTX_CONTEXT_CONTROL 0x02
161#define CTX_RING_HEAD 0x04
162#define CTX_RING_TAIL 0x06
163#define CTX_RING_BUFFER_START 0x08
164#define CTX_RING_BUFFER_CONTROL 0x0a
165#define CTX_BB_HEAD_U 0x0c
166#define CTX_BB_HEAD_L 0x0e
167#define CTX_BB_STATE 0x10
168#define CTX_SECOND_BB_HEAD_U 0x12
169#define CTX_SECOND_BB_HEAD_L 0x14
170#define CTX_SECOND_BB_STATE 0x16
171#define CTX_BB_PER_CTX_PTR 0x18
172#define CTX_RCS_INDIRECT_CTX 0x1a
173#define CTX_RCS_INDIRECT_CTX_OFFSET 0x1c
174#define CTX_LRI_HEADER_1 0x21
175#define CTX_CTX_TIMESTAMP 0x22
176#define CTX_PDP3_UDW 0x24
177#define CTX_PDP3_LDW 0x26
178#define CTX_PDP2_UDW 0x28
179#define CTX_PDP2_LDW 0x2a
180#define CTX_PDP1_UDW 0x2c
181#define CTX_PDP1_LDW 0x2e
182#define CTX_PDP0_UDW 0x30
183#define CTX_PDP0_LDW 0x32
184#define CTX_LRI_HEADER_2 0x41
185#define CTX_R_PWR_CLK_STATE 0x42
186#define CTX_GPGPU_CSR_BASE_ADDRESS 0x44
187
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +0000188#define CTX_REG(reg_state, pos, reg, val) do { \
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200189 (reg_state)[(pos)+0] = i915_mmio_reg_offset(reg); \
Ville Syrjälä0d925ea2015-11-04 23:20:11 +0200190 (reg_state)[(pos)+1] = (val); \
191} while (0)
192
193#define ASSIGN_CTX_PDP(ppgtt, reg_state, n) do { \
Mika Kuoppalad852c7b2015-06-25 18:35:06 +0300194 const u64 _addr = i915_page_dir_dma_addr((ppgtt), (n)); \
Michel Thierrye5815a22015-04-08 12:13:32 +0100195 reg_state[CTX_PDP ## n ## _UDW+1] = upper_32_bits(_addr); \
196 reg_state[CTX_PDP ## n ## _LDW+1] = lower_32_bits(_addr); \
Ville Syrjälä9244a812015-11-04 23:20:09 +0200197} while (0)
Michel Thierrye5815a22015-04-08 12:13:32 +0100198
Ville Syrjälä9244a812015-11-04 23:20:09 +0200199#define ASSIGN_CTX_PML4(ppgtt, reg_state) do { \
Michel Thierry2dba3232015-07-30 11:06:23 +0100200 reg_state[CTX_PDP0_UDW + 1] = upper_32_bits(px_dma(&ppgtt->pml4)); \
201 reg_state[CTX_PDP0_LDW + 1] = lower_32_bits(px_dma(&ppgtt->pml4)); \
Ville Syrjälä9244a812015-11-04 23:20:09 +0200202} while (0)
Michel Thierry2dba3232015-07-30 11:06:23 +0100203
Michel Thierry71562912016-02-23 10:31:49 +0000204#define GEN8_CTX_RCS_INDIRECT_CTX_OFFSET_DEFAULT 0x17
205#define GEN9_CTX_RCS_INDIRECT_CTX_OFFSET_DEFAULT 0x26
Michel Thierry7bd0a2c2017-06-06 13:30:38 -0700206#define GEN10_CTX_RCS_INDIRECT_CTX_OFFSET_DEFAULT 0x19
Ben Widawsky84b790f2014-07-24 17:04:36 +0100207
Chris Wilson0e93cdd2016-04-29 09:07:06 +0100208/* Typical size of the average request (2 pipecontrols and a MI_BB) */
209#define EXECLISTS_REQUEST_SIZE 64 /* bytes */
Chris Wilsona3aabe82016-10-04 21:11:26 +0100210#define WA_TAIL_DWORDS 2
Chris Wilson7e4992a2017-09-28 20:38:59 +0100211#define WA_TAIL_BYTES (sizeof(u32) * WA_TAIL_DWORDS)
Chris Wilsonbeecec92017-10-03 21:34:52 +0100212#define PREEMPT_ID 0x1
Chris Wilsona3aabe82016-10-04 21:11:26 +0100213
Chris Wilsone2efd132016-05-24 14:53:34 +0100214static int execlists_context_deferred_alloc(struct i915_gem_context *ctx,
Chris Wilson978f1e02016-04-28 09:56:54 +0100215 struct intel_engine_cs *engine);
Chris Wilsona3aabe82016-10-04 21:11:26 +0100216static void execlists_init_reg_state(u32 *reg_state,
217 struct i915_gem_context *ctx,
218 struct intel_engine_cs *engine,
219 struct intel_ring *ring);
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000220
Oscar Mateo73e4d072014-07-24 17:04:48 +0100221/**
Tvrtko Ursulinca825802016-01-15 15:10:27 +0000222 * intel_lr_context_descriptor_update() - calculate & cache the descriptor
223 * descriptor for a pinned context
Tvrtko Ursulinca825802016-01-15 15:10:27 +0000224 * @ctx: Context to work on
Chris Wilson9021ad02016-05-24 14:53:37 +0100225 * @engine: Engine the descriptor will be used with
Tvrtko Ursulinca825802016-01-15 15:10:27 +0000226 *
227 * The context descriptor encodes various attributes of a context,
228 * including its GTT address and some flags. Because it's fairly
229 * expensive to calculate, we'll just do it once and cache the result,
230 * which remains valid until the context is unpinned.
231 *
Daniel Vetter6e5248b2016-07-15 21:48:06 +0200232 * This is what a descriptor looks like, from LSB to MSB::
233 *
Mika Kuoppala2355cf02017-01-27 15:03:09 +0200234 * bits 0-11: flags, GEN8_CTX_* (cached in ctx->desc_template)
Daniel Vetter6e5248b2016-07-15 21:48:06 +0200235 * bits 12-31: LRCA, GTT address of (the HWSP of) this context
236 * bits 32-52: ctx ID, a globally unique tag
237 * bits 53-54: mbz, reserved for use by hardware
238 * bits 55-63: group ID, currently unused and set to 0
Tvrtko Ursulinca825802016-01-15 15:10:27 +0000239 */
240static void
Chris Wilsone2efd132016-05-24 14:53:34 +0100241intel_lr_context_descriptor_update(struct i915_gem_context *ctx,
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +0000242 struct intel_engine_cs *engine)
Tvrtko Ursulinca825802016-01-15 15:10:27 +0000243{
Chris Wilson9021ad02016-05-24 14:53:37 +0100244 struct intel_context *ce = &ctx->engine[engine->id];
Chris Wilson7069b142016-04-28 09:56:52 +0100245 u64 desc;
Tvrtko Ursulinca825802016-01-15 15:10:27 +0000246
Chris Wilson7069b142016-04-28 09:56:52 +0100247 BUILD_BUG_ON(MAX_CONTEXT_HW_ID > (1<<GEN8_CTX_ID_WIDTH));
248
Mika Kuoppala2355cf02017-01-27 15:03:09 +0200249 desc = ctx->desc_template; /* bits 0-11 */
Michel Thierry0b29c752017-09-13 09:56:00 +0100250 desc |= i915_ggtt_offset(ce->state) + LRC_HEADER_PAGES * PAGE_SIZE;
Chris Wilson9021ad02016-05-24 14:53:37 +0100251 /* bits 12-31 */
Chris Wilson7069b142016-04-28 09:56:52 +0100252 desc |= (u64)ctx->hw_id << GEN8_CTX_ID_SHIFT; /* bits 32-52 */
Tvrtko Ursulinca825802016-01-15 15:10:27 +0000253
Chris Wilson9021ad02016-05-24 14:53:37 +0100254 ce->lrc_desc = desc;
Tvrtko Ursulinca825802016-01-15 15:10:27 +0000255}
256
Chris Wilson27606fd2017-09-16 21:44:13 +0100257static struct i915_priolist *
258lookup_priolist(struct intel_engine_cs *engine,
259 struct i915_priotree *pt,
260 int prio)
Chris Wilson08dd3e12017-09-16 21:44:12 +0100261{
Mika Kuoppalab620e872017-09-22 15:43:03 +0300262 struct intel_engine_execlists * const execlists = &engine->execlists;
Chris Wilson08dd3e12017-09-16 21:44:12 +0100263 struct i915_priolist *p;
264 struct rb_node **parent, *rb;
265 bool first = true;
266
Mika Kuoppalab620e872017-09-22 15:43:03 +0300267 if (unlikely(execlists->no_priolist))
Chris Wilson08dd3e12017-09-16 21:44:12 +0100268 prio = I915_PRIORITY_NORMAL;
269
270find_priolist:
271 /* most positive priority is scheduled first, equal priorities fifo */
272 rb = NULL;
Mika Kuoppalab620e872017-09-22 15:43:03 +0300273 parent = &execlists->queue.rb_node;
Chris Wilson08dd3e12017-09-16 21:44:12 +0100274 while (*parent) {
275 rb = *parent;
276 p = rb_entry(rb, typeof(*p), node);
277 if (prio > p->priority) {
278 parent = &rb->rb_left;
279 } else if (prio < p->priority) {
280 parent = &rb->rb_right;
281 first = false;
282 } else {
Chris Wilson27606fd2017-09-16 21:44:13 +0100283 return p;
Chris Wilson08dd3e12017-09-16 21:44:12 +0100284 }
285 }
286
287 if (prio == I915_PRIORITY_NORMAL) {
Mika Kuoppalab620e872017-09-22 15:43:03 +0300288 p = &execlists->default_priolist;
Chris Wilson08dd3e12017-09-16 21:44:12 +0100289 } else {
290 p = kmem_cache_alloc(engine->i915->priorities, GFP_ATOMIC);
291 /* Convert an allocation failure to a priority bump */
292 if (unlikely(!p)) {
293 prio = I915_PRIORITY_NORMAL; /* recurses just once */
294
295 /* To maintain ordering with all rendering, after an
296 * allocation failure we have to disable all scheduling.
297 * Requests will then be executed in fifo, and schedule
298 * will ensure that dependencies are emitted in fifo.
299 * There will be still some reordering with existing
300 * requests, so if userspace lied about their
301 * dependencies that reordering may be visible.
302 */
Mika Kuoppalab620e872017-09-22 15:43:03 +0300303 execlists->no_priolist = true;
Chris Wilson08dd3e12017-09-16 21:44:12 +0100304 goto find_priolist;
305 }
306 }
307
308 p->priority = prio;
Chris Wilson27606fd2017-09-16 21:44:13 +0100309 INIT_LIST_HEAD(&p->requests);
Chris Wilson08dd3e12017-09-16 21:44:12 +0100310 rb_link_node(&p->node, rb, parent);
Mika Kuoppalab620e872017-09-22 15:43:03 +0300311 rb_insert_color(&p->node, &execlists->queue);
Chris Wilson08dd3e12017-09-16 21:44:12 +0100312
Chris Wilson08dd3e12017-09-16 21:44:12 +0100313 if (first)
Mika Kuoppalab620e872017-09-22 15:43:03 +0300314 execlists->first = &p->node;
Chris Wilson08dd3e12017-09-16 21:44:12 +0100315
Chris Wilson27606fd2017-09-16 21:44:13 +0100316 return ptr_pack_bits(p, first, 1);
Chris Wilson08dd3e12017-09-16 21:44:12 +0100317}
318
Chris Wilson7e4992a2017-09-28 20:38:59 +0100319static void unwind_wa_tail(struct drm_i915_gem_request *rq)
320{
321 rq->tail = intel_ring_wrap(rq->ring, rq->wa_tail - WA_TAIL_BYTES);
322 assert_ring_tail_valid(rq->ring, rq->tail);
323}
324
Michał Winiarskia4598d12017-10-25 22:00:18 +0200325static void __unwind_incomplete_requests(struct intel_engine_cs *engine)
Chris Wilson7e4992a2017-09-28 20:38:59 +0100326{
327 struct drm_i915_gem_request *rq, *rn;
Michał Winiarski097a9482017-09-28 20:39:01 +0100328 struct i915_priolist *uninitialized_var(p);
329 int last_prio = I915_PRIORITY_INVALID;
Chris Wilson7e4992a2017-09-28 20:38:59 +0100330
331 lockdep_assert_held(&engine->timeline->lock);
332
333 list_for_each_entry_safe_reverse(rq, rn,
334 &engine->timeline->requests,
335 link) {
Chris Wilson7e4992a2017-09-28 20:38:59 +0100336 if (i915_gem_request_completed(rq))
337 return;
338
339 __i915_gem_request_unsubmit(rq);
340 unwind_wa_tail(rq);
341
Michał Winiarski097a9482017-09-28 20:39:01 +0100342 GEM_BUG_ON(rq->priotree.priority == I915_PRIORITY_INVALID);
343 if (rq->priotree.priority != last_prio) {
344 p = lookup_priolist(engine,
345 &rq->priotree,
346 rq->priotree.priority);
347 p = ptr_mask_bits(p, 1);
348
349 last_prio = rq->priotree.priority;
350 }
351
352 list_add(&rq->priotree.link, &p->requests);
Chris Wilson7e4992a2017-09-28 20:38:59 +0100353 }
354}
355
Michał Winiarskic41937f2017-10-26 15:35:58 +0200356void
Michał Winiarskia4598d12017-10-25 22:00:18 +0200357execlists_unwind_incomplete_requests(struct intel_engine_execlists *execlists)
358{
359 struct intel_engine_cs *engine =
360 container_of(execlists, typeof(*engine), execlists);
361
362 spin_lock_irq(&engine->timeline->lock);
363 __unwind_incomplete_requests(engine);
364 spin_unlock_irq(&engine->timeline->lock);
365}
366
Chris Wilsonbbd6c472016-09-09 14:11:45 +0100367static inline void
368execlists_context_status_change(struct drm_i915_gem_request *rq,
369 unsigned long status)
Ben Widawsky84b790f2014-07-24 17:04:36 +0100370{
Chris Wilsonbbd6c472016-09-09 14:11:45 +0100371 /*
372 * Only used when GVT-g is enabled now. When GVT-g is disabled,
373 * The compiler should eliminate this function as dead-code.
374 */
375 if (!IS_ENABLED(CONFIG_DRM_I915_GVT))
376 return;
Ben Widawsky84b790f2014-07-24 17:04:36 +0100377
Changbin Du3fc03062017-03-13 10:47:11 +0800378 atomic_notifier_call_chain(&rq->engine->context_status_notifier,
379 status, rq);
Ben Widawsky84b790f2014-07-24 17:04:36 +0100380}
381
Tvrtko Ursulin73fd9d32017-11-21 18:18:47 +0000382static inline void
383execlists_context_schedule_in(struct drm_i915_gem_request *rq)
384{
385 execlists_context_status_change(rq, INTEL_CONTEXT_SCHEDULE_IN);
Tvrtko Ursulin30e17b72017-11-21 18:18:48 +0000386 intel_engine_context_in(rq->engine);
Tvrtko Ursulin73fd9d32017-11-21 18:18:47 +0000387}
388
389static inline void
390execlists_context_schedule_out(struct drm_i915_gem_request *rq)
391{
Tvrtko Ursulin30e17b72017-11-21 18:18:48 +0000392 intel_engine_context_out(rq->engine);
Tvrtko Ursulin73fd9d32017-11-21 18:18:47 +0000393 execlists_context_status_change(rq, INTEL_CONTEXT_SCHEDULE_OUT);
394}
395
Tvrtko Ursulinc6a2ac72016-02-26 16:58:32 +0000396static void
397execlists_update_context_pdps(struct i915_hw_ppgtt *ppgtt, u32 *reg_state)
398{
399 ASSIGN_CTX_PDP(ppgtt, reg_state, 3);
400 ASSIGN_CTX_PDP(ppgtt, reg_state, 2);
401 ASSIGN_CTX_PDP(ppgtt, reg_state, 1);
402 ASSIGN_CTX_PDP(ppgtt, reg_state, 0);
403}
404
Chris Wilson70c2a242016-09-09 14:11:46 +0100405static u64 execlists_update_context(struct drm_i915_gem_request *rq)
Oscar Mateoae1250b2014-07-24 17:04:37 +0100406{
Chris Wilson70c2a242016-09-09 14:11:46 +0100407 struct intel_context *ce = &rq->ctx->engine[rq->engine->id];
Zhi Wang04da8112017-02-06 18:37:16 +0800408 struct i915_hw_ppgtt *ppgtt =
409 rq->ctx->ppgtt ?: rq->i915->mm.aliasing_ppgtt;
Chris Wilson70c2a242016-09-09 14:11:46 +0100410 u32 *reg_state = ce->lrc_reg_state;
Oscar Mateoae1250b2014-07-24 17:04:37 +0100411
Chris Wilsone6ba9992017-04-25 14:00:49 +0100412 reg_state[CTX_RING_TAIL+1] = intel_ring_set_tail(rq->ring, rq->tail);
Oscar Mateoae1250b2014-07-24 17:04:37 +0100413
Tvrtko Ursulinc6a2ac72016-02-26 16:58:32 +0000414 /* True 32b PPGTT with dynamic page allocation: update PDP
415 * registers and point the unallocated PDPs to scratch page.
416 * PML4 is allocated during ppgtt init, so this is not needed
417 * in 48-bit mode.
418 */
Chris Wilson949e8ab2017-02-09 14:40:36 +0000419 if (ppgtt && !i915_vm_is_48bit(&ppgtt->base))
Tvrtko Ursulinc6a2ac72016-02-26 16:58:32 +0000420 execlists_update_context_pdps(ppgtt, reg_state);
Chris Wilson70c2a242016-09-09 14:11:46 +0100421
422 return ce->lrc_desc;
Oscar Mateoae1250b2014-07-24 17:04:37 +0100423}
424
Chris Wilsonbeecec92017-10-03 21:34:52 +0100425static inline void elsp_write(u64 desc, u32 __iomem *elsp)
426{
427 writel(upper_32_bits(desc), elsp);
428 writel(lower_32_bits(desc), elsp);
429}
430
Chris Wilson70c2a242016-09-09 14:11:46 +0100431static void execlists_submit_ports(struct intel_engine_cs *engine)
Chris Wilsonbbd6c472016-09-09 14:11:45 +0100432{
Mika Kuoppalab620e872017-09-22 15:43:03 +0300433 struct execlist_port *port = engine->execlists.port;
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100434 unsigned int n;
Chris Wilsonbbd6c472016-09-09 14:11:45 +0100435
Mika Kuoppala76e70082017-09-22 15:43:07 +0300436 for (n = execlists_num_ports(&engine->execlists); n--; ) {
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100437 struct drm_i915_gem_request *rq;
438 unsigned int count;
439 u64 desc;
Chris Wilson70c2a242016-09-09 14:11:46 +0100440
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100441 rq = port_unpack(&port[n], &count);
442 if (rq) {
443 GEM_BUG_ON(count > !n);
444 if (!count++)
Tvrtko Ursulin73fd9d32017-11-21 18:18:47 +0000445 execlists_context_schedule_in(rq);
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100446 port_set(&port[n], port_pack(rq, count));
447 desc = execlists_update_context(rq);
448 GEM_DEBUG_EXEC(port[n].context_id = upper_32_bits(desc));
Chris Wilsonbccd3b82017-11-09 14:30:19 +0000449
450 GEM_TRACE("%s in[%d]: ctx=%d.%d, seqno=%x\n",
451 engine->name, n,
Chris Wilson16c86192017-12-19 22:09:16 +0000452 port[n].context_id, count,
Chris Wilsonbccd3b82017-11-09 14:30:19 +0000453 rq->global_seqno);
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100454 } else {
455 GEM_BUG_ON(!n);
456 desc = 0;
457 }
458
Chris Wilson2fc7a062017-12-07 22:24:34 +0000459 elsp_write(desc, engine->execlists.elsp);
Chris Wilsonbbd6c472016-09-09 14:11:45 +0100460 }
Michel Thierryba74cb12017-11-20 12:34:58 +0000461 execlists_clear_active(&engine->execlists, EXECLISTS_ACTIVE_HWACK);
Chris Wilsonbbd6c472016-09-09 14:11:45 +0100462}
463
Chris Wilson70c2a242016-09-09 14:11:46 +0100464static bool ctx_single_port_submission(const struct i915_gem_context *ctx)
Ben Widawsky84b790f2014-07-24 17:04:36 +0100465{
Chris Wilson70c2a242016-09-09 14:11:46 +0100466 return (IS_ENABLED(CONFIG_DRM_I915_GVT) &&
Chris Wilson60958682016-12-31 11:20:11 +0000467 i915_gem_context_force_single_submission(ctx));
Ben Widawsky84b790f2014-07-24 17:04:36 +0100468}
469
Chris Wilson70c2a242016-09-09 14:11:46 +0100470static bool can_merge_ctx(const struct i915_gem_context *prev,
471 const struct i915_gem_context *next)
Michel Thierryacdd8842014-07-24 17:04:38 +0100472{
Chris Wilson70c2a242016-09-09 14:11:46 +0100473 if (prev != next)
474 return false;
Thomas Daniele981e7b2014-07-24 17:04:39 +0100475
Chris Wilson70c2a242016-09-09 14:11:46 +0100476 if (ctx_single_port_submission(prev))
477 return false;
Michel Thierryacdd8842014-07-24 17:04:38 +0100478
Chris Wilson70c2a242016-09-09 14:11:46 +0100479 return true;
480}
Peter Antoine779949f2015-05-11 16:03:27 +0100481
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100482static void port_assign(struct execlist_port *port,
483 struct drm_i915_gem_request *rq)
484{
485 GEM_BUG_ON(rq == port_request(port));
486
487 if (port_isset(port))
488 i915_gem_request_put(port_request(port));
489
490 port_set(port, port_pack(i915_gem_request_get(rq), port_count(port)));
491}
492
Chris Wilsonbeecec92017-10-03 21:34:52 +0100493static void inject_preempt_context(struct intel_engine_cs *engine)
494{
495 struct intel_context *ce =
496 &engine->i915->preempt_context->engine[engine->id];
Chris Wilsonbeecec92017-10-03 21:34:52 +0100497 unsigned int n;
498
499 GEM_BUG_ON(engine->i915->preempt_context->hw_id != PREEMPT_ID);
500 GEM_BUG_ON(!IS_ALIGNED(ce->ring->size, WA_TAIL_BYTES));
501
502 memset(ce->ring->vaddr + ce->ring->tail, 0, WA_TAIL_BYTES);
503 ce->ring->tail += WA_TAIL_BYTES;
504 ce->ring->tail &= (ce->ring->size - 1);
505 ce->lrc_reg_state[CTX_RING_TAIL+1] = ce->ring->tail;
506
Chris Wilsonbccd3b82017-11-09 14:30:19 +0000507 GEM_TRACE("\n");
Chris Wilsonbeecec92017-10-03 21:34:52 +0100508 for (n = execlists_num_ports(&engine->execlists); --n; )
Chris Wilson2fc7a062017-12-07 22:24:34 +0000509 elsp_write(0, engine->execlists.elsp);
Chris Wilsonbeecec92017-10-03 21:34:52 +0100510
Chris Wilson2fc7a062017-12-07 22:24:34 +0000511 elsp_write(ce->lrc_desc, engine->execlists.elsp);
Michel Thierryba74cb12017-11-20 12:34:58 +0000512 execlists_clear_active(&engine->execlists, EXECLISTS_ACTIVE_HWACK);
Chris Wilsonbeecec92017-10-03 21:34:52 +0100513}
514
Chris Wilson70c2a242016-09-09 14:11:46 +0100515static void execlists_dequeue(struct intel_engine_cs *engine)
516{
Mika Kuoppala7a62cc62017-09-22 15:43:06 +0300517 struct intel_engine_execlists * const execlists = &engine->execlists;
518 struct execlist_port *port = execlists->port;
Mika Kuoppala76e70082017-09-22 15:43:07 +0300519 const struct execlist_port * const last_port =
520 &execlists->port[execlists->port_mask];
Chris Wilsonbeecec92017-10-03 21:34:52 +0100521 struct drm_i915_gem_request *last = port_request(port);
Chris Wilson20311bd2016-11-14 20:41:03 +0000522 struct rb_node *rb;
Chris Wilson70c2a242016-09-09 14:11:46 +0100523 bool submit = false;
Michel Thierryacdd8842014-07-24 17:04:38 +0100524
Chris Wilson70c2a242016-09-09 14:11:46 +0100525 /* Hardware submission is through 2 ports. Conceptually each port
526 * has a (RING_START, RING_HEAD, RING_TAIL) tuple. RING_START is
527 * static for a context, and unique to each, so we only execute
528 * requests belonging to a single context from each ring. RING_HEAD
529 * is maintained by the CS in the context image, it marks the place
530 * where it got up to last time, and through RING_TAIL we tell the CS
531 * where we want to execute up to this time.
532 *
533 * In this list the requests are in order of execution. Consecutive
534 * requests from the same context are adjacent in the ringbuffer. We
535 * can combine these requests into a single RING_TAIL update:
536 *
537 * RING_HEAD...req1...req2
538 * ^- RING_TAIL
539 * since to execute req2 the CS must first execute req1.
540 *
541 * Our goal then is to point each port to the end of a consecutive
542 * sequence of requests as being the most optimal (fewest wake ups
543 * and context switches) submission.
544 */
545
Tvrtko Ursulin9f7886d2017-03-21 10:55:11 +0000546 spin_lock_irq(&engine->timeline->lock);
Mika Kuoppala7a62cc62017-09-22 15:43:06 +0300547 rb = execlists->first;
548 GEM_BUG_ON(rb_first(&execlists->queue) != rb);
Chris Wilsonbeecec92017-10-03 21:34:52 +0100549 if (!rb)
550 goto unlock;
551
552 if (last) {
553 /*
554 * Don't resubmit or switch until all outstanding
555 * preemptions (lite-restore) are seen. Then we
556 * know the next preemption status we see corresponds
557 * to this ELSP update.
558 */
Michel Thierryba74cb12017-11-20 12:34:58 +0000559 GEM_BUG_ON(!port_count(&port[0]));
Chris Wilsonbeecec92017-10-03 21:34:52 +0100560 if (port_count(&port[0]) > 1)
561 goto unlock;
562
Michel Thierryba74cb12017-11-20 12:34:58 +0000563 /*
564 * If we write to ELSP a second time before the HW has had
565 * a chance to respond to the previous write, we can confuse
566 * the HW and hit "undefined behaviour". After writing to ELSP,
567 * we must then wait until we see a context-switch event from
568 * the HW to indicate that it has had a chance to respond.
569 */
570 if (!execlists_is_active(execlists, EXECLISTS_ACTIVE_HWACK))
571 goto unlock;
572
Michał Winiarskia4598d12017-10-25 22:00:18 +0200573 if (HAS_LOGICAL_RING_PREEMPTION(engine->i915) &&
Chris Wilsonbeecec92017-10-03 21:34:52 +0100574 rb_entry(rb, struct i915_priolist, node)->priority >
575 max(last->priotree.priority, 0)) {
576 /*
577 * Switch to our empty preempt context so
578 * the state of the GPU is known (idle).
579 */
580 inject_preempt_context(engine);
Chris Wilson4a118ec2017-10-23 22:32:36 +0100581 execlists_set_active(execlists,
582 EXECLISTS_ACTIVE_PREEMPT);
Chris Wilsonbeecec92017-10-03 21:34:52 +0100583 goto unlock;
584 } else {
585 /*
586 * In theory, we could coalesce more requests onto
587 * the second port (the first port is active, with
588 * no preemptions pending). However, that means we
589 * then have to deal with the possible lite-restore
590 * of the second port (as we submit the ELSP, there
591 * may be a context-switch) but also we may complete
592 * the resubmission before the context-switch. Ergo,
593 * coalescing onto the second port will cause a
594 * preemption event, but we cannot predict whether
595 * that will affect port[0] or port[1].
596 *
597 * If the second port is already active, we can wait
598 * until the next context-switch before contemplating
599 * new requests. The GPU will be busy and we should be
600 * able to resubmit the new ELSP before it idles,
601 * avoiding pipeline bubbles (momentary pauses where
602 * the driver is unable to keep up the supply of new
603 * work).
604 */
605 if (port_count(&port[1]))
606 goto unlock;
607
608 /* WaIdleLiteRestore:bdw,skl
609 * Apply the wa NOOPs to prevent
610 * ring:HEAD == req:TAIL as we resubmit the
611 * request. See gen8_emit_breadcrumb() for
612 * where we prepare the padding after the
613 * end of the request.
614 */
615 last->tail = last->wa_tail;
616 }
617 }
618
619 do {
Chris Wilson6c067572017-05-17 13:10:03 +0100620 struct i915_priolist *p = rb_entry(rb, typeof(*p), node);
621 struct drm_i915_gem_request *rq, *rn;
Chris Wilson20311bd2016-11-14 20:41:03 +0000622
Chris Wilson6c067572017-05-17 13:10:03 +0100623 list_for_each_entry_safe(rq, rn, &p->requests, priotree.link) {
624 /*
625 * Can we combine this request with the current port?
626 * It has to be the same context/ringbuffer and not
627 * have any exceptions (e.g. GVT saying never to
628 * combine contexts).
629 *
630 * If we can combine the requests, we can execute both
631 * by updating the RING_TAIL to point to the end of the
632 * second request, and so we never need to tell the
633 * hardware about the first.
Chris Wilson70c2a242016-09-09 14:11:46 +0100634 */
Chris Wilson6c067572017-05-17 13:10:03 +0100635 if (last && !can_merge_ctx(rq->ctx, last->ctx)) {
636 /*
637 * If we are on the second port and cannot
638 * combine this request with the last, then we
639 * are done.
640 */
Mika Kuoppala76e70082017-09-22 15:43:07 +0300641 if (port == last_port) {
Chris Wilson6c067572017-05-17 13:10:03 +0100642 __list_del_many(&p->requests,
643 &rq->priotree.link);
644 goto done;
645 }
Chris Wilson70c2a242016-09-09 14:11:46 +0100646
Chris Wilson6c067572017-05-17 13:10:03 +0100647 /*
648 * If GVT overrides us we only ever submit
649 * port[0], leaving port[1] empty. Note that we
650 * also have to be careful that we don't queue
651 * the same context (even though a different
652 * request) to the second port.
653 */
654 if (ctx_single_port_submission(last->ctx) ||
655 ctx_single_port_submission(rq->ctx)) {
656 __list_del_many(&p->requests,
657 &rq->priotree.link);
658 goto done;
659 }
Chris Wilson70c2a242016-09-09 14:11:46 +0100660
Chris Wilson6c067572017-05-17 13:10:03 +0100661 GEM_BUG_ON(last->ctx == rq->ctx);
Chris Wilson70c2a242016-09-09 14:11:46 +0100662
Chris Wilson6c067572017-05-17 13:10:03 +0100663 if (submit)
664 port_assign(port, last);
665 port++;
Mika Kuoppala7a62cc62017-09-22 15:43:06 +0300666
667 GEM_BUG_ON(port_isset(port));
Chris Wilson6c067572017-05-17 13:10:03 +0100668 }
669
670 INIT_LIST_HEAD(&rq->priotree.link);
Chris Wilson6c067572017-05-17 13:10:03 +0100671 __i915_gem_request_submit(rq);
Mika Kuoppala7a62cc62017-09-22 15:43:06 +0300672 trace_i915_gem_request_in(rq, port_index(port, execlists));
Chris Wilson6c067572017-05-17 13:10:03 +0100673 last = rq;
674 submit = true;
Chris Wilson70c2a242016-09-09 14:11:46 +0100675 }
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000676
Chris Wilson20311bd2016-11-14 20:41:03 +0000677 rb = rb_next(rb);
Mika Kuoppala7a62cc62017-09-22 15:43:06 +0300678 rb_erase(&p->node, &execlists->queue);
Chris Wilson6c067572017-05-17 13:10:03 +0100679 INIT_LIST_HEAD(&p->requests);
680 if (p->priority != I915_PRIORITY_NORMAL)
Chris Wilsonc5cf9a92017-05-17 13:10:04 +0100681 kmem_cache_free(engine->i915->priorities, p);
Chris Wilsonbeecec92017-10-03 21:34:52 +0100682 } while (rb);
Chris Wilson6c067572017-05-17 13:10:03 +0100683done:
Mika Kuoppala7a62cc62017-09-22 15:43:06 +0300684 execlists->first = rb;
Chris Wilson6c067572017-05-17 13:10:03 +0100685 if (submit)
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100686 port_assign(port, last);
Chris Wilsonbeecec92017-10-03 21:34:52 +0100687unlock:
Tvrtko Ursulin9f7886d2017-03-21 10:55:11 +0000688 spin_unlock_irq(&engine->timeline->lock);
Chris Wilson70c2a242016-09-09 14:11:46 +0100689
Chris Wilson4a118ec2017-10-23 22:32:36 +0100690 if (submit) {
691 execlists_set_active(execlists, EXECLISTS_ACTIVE_USER);
Chris Wilson70c2a242016-09-09 14:11:46 +0100692 execlists_submit_ports(engine);
Chris Wilson4a118ec2017-10-23 22:32:36 +0100693 }
Michel Thierryacdd8842014-07-24 17:04:38 +0100694}
695
Michał Winiarskic41937f2017-10-26 15:35:58 +0200696void
Michał Winiarskia4598d12017-10-25 22:00:18 +0200697execlists_cancel_port_requests(struct intel_engine_execlists * const execlists)
Mika Kuoppalacf4591d2017-09-22 15:43:05 +0300698{
Chris Wilson3f9e6cd2017-09-25 13:49:27 +0100699 struct execlist_port *port = execlists->port;
Mika Kuoppaladc2279e2017-10-10 14:48:57 +0300700 unsigned int num_ports = execlists_num_ports(execlists);
Mika Kuoppalacf4591d2017-09-22 15:43:05 +0300701
Chris Wilson3f9e6cd2017-09-25 13:49:27 +0100702 while (num_ports-- && port_isset(port)) {
Chris Wilson7e44fc22017-09-26 11:17:19 +0100703 struct drm_i915_gem_request *rq = port_request(port);
704
Chris Wilson4a118ec2017-10-23 22:32:36 +0100705 GEM_BUG_ON(!execlists->active);
Tvrtko Ursulin30e17b72017-11-21 18:18:48 +0000706 intel_engine_context_out(rq->engine);
Chris Wilsond6c05112017-10-03 21:34:47 +0100707 execlists_context_status_change(rq, INTEL_CONTEXT_SCHEDULE_PREEMPTED);
Chris Wilson7e44fc22017-09-26 11:17:19 +0100708 i915_gem_request_put(rq);
709
Chris Wilson3f9e6cd2017-09-25 13:49:27 +0100710 memset(port, 0, sizeof(*port));
711 port++;
712 }
Mika Kuoppalacf4591d2017-09-22 15:43:05 +0300713}
714
Chris Wilson27a5f612017-09-15 18:31:00 +0100715static void execlists_cancel_requests(struct intel_engine_cs *engine)
716{
Mika Kuoppalab620e872017-09-22 15:43:03 +0300717 struct intel_engine_execlists * const execlists = &engine->execlists;
Chris Wilson27a5f612017-09-15 18:31:00 +0100718 struct drm_i915_gem_request *rq, *rn;
719 struct rb_node *rb;
720 unsigned long flags;
Chris Wilson27a5f612017-09-15 18:31:00 +0100721
722 spin_lock_irqsave(&engine->timeline->lock, flags);
723
724 /* Cancel the requests on the HW and clear the ELSP tracker. */
Michał Winiarskia4598d12017-10-25 22:00:18 +0200725 execlists_cancel_port_requests(execlists);
Chris Wilson27a5f612017-09-15 18:31:00 +0100726
727 /* Mark all executing requests as skipped. */
728 list_for_each_entry(rq, &engine->timeline->requests, link) {
729 GEM_BUG_ON(!rq->global_seqno);
730 if (!i915_gem_request_completed(rq))
731 dma_fence_set_error(&rq->fence, -EIO);
732 }
733
734 /* Flush the queued requests to the timeline list (for retiring). */
Mika Kuoppalab620e872017-09-22 15:43:03 +0300735 rb = execlists->first;
Chris Wilson27a5f612017-09-15 18:31:00 +0100736 while (rb) {
737 struct i915_priolist *p = rb_entry(rb, typeof(*p), node);
738
739 list_for_each_entry_safe(rq, rn, &p->requests, priotree.link) {
740 INIT_LIST_HEAD(&rq->priotree.link);
Chris Wilson27a5f612017-09-15 18:31:00 +0100741
742 dma_fence_set_error(&rq->fence, -EIO);
743 __i915_gem_request_submit(rq);
744 }
745
746 rb = rb_next(rb);
Mika Kuoppalab620e872017-09-22 15:43:03 +0300747 rb_erase(&p->node, &execlists->queue);
Chris Wilson27a5f612017-09-15 18:31:00 +0100748 INIT_LIST_HEAD(&p->requests);
749 if (p->priority != I915_PRIORITY_NORMAL)
750 kmem_cache_free(engine->i915->priorities, p);
751 }
752
753 /* Remaining _unready_ requests will be nop'ed when submitted */
754
Mika Kuoppalacf4591d2017-09-22 15:43:05 +0300755
Mika Kuoppalab620e872017-09-22 15:43:03 +0300756 execlists->queue = RB_ROOT;
757 execlists->first = NULL;
Chris Wilson3f9e6cd2017-09-25 13:49:27 +0100758 GEM_BUG_ON(port_isset(execlists->port));
Chris Wilson27a5f612017-09-15 18:31:00 +0100759
760 /*
761 * The port is checked prior to scheduling a tasklet, but
762 * just in case we have suspended the tasklet to do the
763 * wedging make sure that when it wakes, it decides there
764 * is no work to do by clearing the irq_posted bit.
765 */
766 clear_bit(ENGINE_IRQ_EXECLIST, &engine->irq_posted);
767
768 spin_unlock_irqrestore(&engine->timeline->lock, flags);
769}
770
Daniel Vetter6e5248b2016-07-15 21:48:06 +0200771/*
Oscar Mateo73e4d072014-07-24 17:04:48 +0100772 * Check the unread Context Status Buffers and manage the submission of new
773 * contexts to the ELSP accordingly.
774 */
Sagar Arun Kamblec6dce8f2017-11-16 19:02:37 +0530775static void execlists_submission_tasklet(unsigned long data)
Thomas Daniele981e7b2014-07-24 17:04:39 +0100776{
Mika Kuoppalab620e872017-09-22 15:43:03 +0300777 struct intel_engine_cs * const engine = (struct intel_engine_cs *)data;
778 struct intel_engine_execlists * const execlists = &engine->execlists;
Chris Wilsonbeecec92017-10-03 21:34:52 +0100779 struct execlist_port * const port = execlists->port;
Chris Wilsonc0336662016-05-06 15:40:21 +0100780 struct drm_i915_private *dev_priv = engine->i915;
Thomas Daniele981e7b2014-07-24 17:04:39 +0100781
Chris Wilson48921262017-04-11 18:58:50 +0100782 /* We can skip acquiring intel_runtime_pm_get() here as it was taken
783 * on our behalf by the request (see i915_gem_mark_busy()) and it will
784 * not be relinquished until the device is idle (see
785 * i915_gem_idle_work_handler()). As a precaution, we make sure
786 * that all ELSP are drained i.e. we have processed the CSB,
787 * before allowing ourselves to idle and calling intel_runtime_pm_put().
788 */
789 GEM_BUG_ON(!dev_priv->gt.awake);
790
Mika Kuoppalab620e872017-09-22 15:43:03 +0300791 intel_uncore_forcewake_get(dev_priv, execlists->fw_domains);
Tvrtko Ursulinc6a2ac72016-02-26 16:58:32 +0000792
Chris Wilson899f6202017-03-21 11:33:20 +0000793 /* Prefer doing test_and_clear_bit() as a two stage operation to avoid
794 * imposing the cost of a locked atomic transaction when submitting a
795 * new request (outside of the context-switch interrupt).
796 */
797 while (test_bit(ENGINE_IRQ_EXECLIST, &engine->irq_posted)) {
Chris Wilson6d2cb5a2017-09-13 14:35:34 +0100798 /* The HWSP contains a (cacheable) mirror of the CSB */
799 const u32 *buf =
800 &engine->status_page.page_addr[I915_HWS_CSB_BUF0_INDEX];
Chris Wilson4af0d722017-03-25 20:10:53 +0000801 unsigned int head, tail;
Thomas Daniele981e7b2014-07-24 17:04:39 +0100802
Mika Kuoppalab620e872017-09-22 15:43:03 +0300803 if (unlikely(execlists->csb_use_mmio)) {
Chris Wilson6d2cb5a2017-09-13 14:35:34 +0100804 buf = (u32 * __force)
805 (dev_priv->regs + i915_mmio_reg_offset(RING_CONTEXT_STATUS_BUF_LO(engine, 0)));
Mika Kuoppalab620e872017-09-22 15:43:03 +0300806 execlists->csb_head = -1; /* force mmio read of CSB ptrs */
Chris Wilson6d2cb5a2017-09-13 14:35:34 +0100807 }
808
Chris Wilson2e70b8c2017-03-23 13:48:03 +0000809 /* The write will be ordered by the uncached read (itself
810 * a memory barrier), so we do not need another in the form
811 * of a locked instruction. The race between the interrupt
812 * handler and the split test/clear is harmless as we order
813 * our clear before the CSB read. If the interrupt arrived
814 * first between the test and the clear, we read the updated
815 * CSB and clear the bit. If the interrupt arrives as we read
816 * the CSB or later (i.e. after we had cleared the bit) the bit
817 * is set and we do a new loop.
818 */
819 __clear_bit(ENGINE_IRQ_EXECLIST, &engine->irq_posted);
Mika Kuoppalab620e872017-09-22 15:43:03 +0300820 if (unlikely(execlists->csb_head == -1)) { /* following a reset */
Chris Wilson767a9832017-09-13 09:56:05 +0100821 head = readl(dev_priv->regs + i915_mmio_reg_offset(RING_CONTEXT_STATUS_PTR(engine)));
822 tail = GEN8_CSB_WRITE_PTR(head);
823 head = GEN8_CSB_READ_PTR(head);
Mika Kuoppalab620e872017-09-22 15:43:03 +0300824 execlists->csb_head = head;
Chris Wilson767a9832017-09-13 09:56:05 +0100825 } else {
826 const int write_idx =
827 intel_hws_csb_write_index(dev_priv) -
828 I915_HWS_CSB_BUF0_INDEX;
829
Mika Kuoppalab620e872017-09-22 15:43:03 +0300830 head = execlists->csb_head;
Chris Wilson767a9832017-09-13 09:56:05 +0100831 tail = READ_ONCE(buf[write_idx]);
832 }
Chris Wilsonbccd3b82017-11-09 14:30:19 +0000833 GEM_TRACE("%s cs-irq head=%d [%d], tail=%d [%d]\n",
834 engine->name,
835 head, GEN8_CSB_READ_PTR(readl(dev_priv->regs + i915_mmio_reg_offset(RING_CONTEXT_STATUS_PTR(engine)))),
836 tail, GEN8_CSB_WRITE_PTR(readl(dev_priv->regs + i915_mmio_reg_offset(RING_CONTEXT_STATUS_PTR(engine)))));
Mika Kuoppalab620e872017-09-22 15:43:03 +0300837
Chris Wilson4af0d722017-03-25 20:10:53 +0000838 while (head != tail) {
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100839 struct drm_i915_gem_request *rq;
Chris Wilson4af0d722017-03-25 20:10:53 +0000840 unsigned int status;
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100841 unsigned int count;
Chris Wilsona37951a2017-01-24 11:00:06 +0000842
Chris Wilson4af0d722017-03-25 20:10:53 +0000843 if (++head == GEN8_CSB_ENTRIES)
844 head = 0;
Thomas Daniele981e7b2014-07-24 17:04:39 +0100845
Chris Wilson2ffe80a2017-02-06 17:05:02 +0000846 /* We are flying near dragons again.
847 *
848 * We hold a reference to the request in execlist_port[]
849 * but no more than that. We are operating in softirq
850 * context and so cannot hold any mutex or sleep. That
851 * prevents us stopping the requests we are processing
852 * in port[] from being retired simultaneously (the
853 * breadcrumb will be complete before we see the
854 * context-switch). As we only hold the reference to the
855 * request, any pointer chasing underneath the request
856 * is subject to a potential use-after-free. Thus we
857 * store all of the bookkeeping within port[] as
858 * required, and avoid using unguarded pointers beneath
859 * request itself. The same applies to the atomic
860 * status notifier.
861 */
862
Chris Wilson6d2cb5a2017-09-13 14:35:34 +0100863 status = READ_ONCE(buf[2 * head]); /* maybe mmio! */
Chris Wilson16c86192017-12-19 22:09:16 +0000864 GEM_TRACE("%s csb[%d]: status=0x%08x:0x%08x\n",
Chris Wilsonbccd3b82017-11-09 14:30:19 +0000865 engine->name, head,
866 status, buf[2*head + 1]);
Michel Thierryba74cb12017-11-20 12:34:58 +0000867
868 if (status & (GEN8_CTX_STATUS_IDLE_ACTIVE |
869 GEN8_CTX_STATUS_PREEMPTED))
870 execlists_set_active(execlists,
871 EXECLISTS_ACTIVE_HWACK);
872 if (status & GEN8_CTX_STATUS_ACTIVE_IDLE)
873 execlists_clear_active(execlists,
874 EXECLISTS_ACTIVE_HWACK);
875
Chris Wilson70c2a242016-09-09 14:11:46 +0100876 if (!(status & GEN8_CTX_STATUS_COMPLETED_MASK))
877 continue;
Thomas Daniele981e7b2014-07-24 17:04:39 +0100878
Chris Wilson1f5f9ed2017-11-20 12:34:57 +0000879 /* We should never get a COMPLETED | IDLE_ACTIVE! */
880 GEM_BUG_ON(status & GEN8_CTX_STATUS_IDLE_ACTIVE);
881
Chris Wilsone40dd222017-11-20 12:34:55 +0000882 if (status & GEN8_CTX_STATUS_COMPLETE &&
Chris Wilsonbeecec92017-10-03 21:34:52 +0100883 buf[2*head + 1] == PREEMPT_ID) {
Michał Winiarskia4598d12017-10-25 22:00:18 +0200884 execlists_cancel_port_requests(execlists);
885 execlists_unwind_incomplete_requests(execlists);
Chris Wilsonbeecec92017-10-03 21:34:52 +0100886
Chris Wilson4a118ec2017-10-23 22:32:36 +0100887 GEM_BUG_ON(!execlists_is_active(execlists,
888 EXECLISTS_ACTIVE_PREEMPT));
889 execlists_clear_active(execlists,
890 EXECLISTS_ACTIVE_PREEMPT);
Chris Wilsonbeecec92017-10-03 21:34:52 +0100891 continue;
892 }
893
894 if (status & GEN8_CTX_STATUS_PREEMPTED &&
Chris Wilson4a118ec2017-10-23 22:32:36 +0100895 execlists_is_active(execlists,
896 EXECLISTS_ACTIVE_PREEMPT))
Chris Wilsonbeecec92017-10-03 21:34:52 +0100897 continue;
898
Chris Wilson4a118ec2017-10-23 22:32:36 +0100899 GEM_BUG_ON(!execlists_is_active(execlists,
900 EXECLISTS_ACTIVE_USER));
901
Chris Wilson86aa7e72017-01-23 11:31:32 +0000902 /* Check the context/desc id for this event matches */
Chris Wilson6d2cb5a2017-09-13 14:35:34 +0100903 GEM_DEBUG_BUG_ON(buf[2 * head + 1] != port->context_id);
Chris Wilson86aa7e72017-01-23 11:31:32 +0000904
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100905 rq = port_unpack(port, &count);
Chris Wilsonbccd3b82017-11-09 14:30:19 +0000906 GEM_TRACE("%s out[0]: ctx=%d.%d, seqno=%x\n",
907 engine->name,
Chris Wilson16c86192017-12-19 22:09:16 +0000908 port->context_id, count,
Chris Wilsonbccd3b82017-11-09 14:30:19 +0000909 rq->global_seqno);
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100910 GEM_BUG_ON(count == 0);
911 if (--count == 0) {
Chris Wilson70c2a242016-09-09 14:11:46 +0100912 GEM_BUG_ON(status & GEN8_CTX_STATUS_PREEMPTED);
Chris Wilsond8747af2017-11-20 12:34:56 +0000913 GEM_BUG_ON(port_isset(&port[1]) &&
914 !(status & GEN8_CTX_STATUS_ELEMENT_SWITCH));
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100915 GEM_BUG_ON(!i915_gem_request_completed(rq));
Tvrtko Ursulin73fd9d32017-11-21 18:18:47 +0000916 execlists_context_schedule_out(rq);
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100917 trace_i915_gem_request_out(rq);
918 i915_gem_request_put(rq);
919
Mika Kuoppala7a62cc62017-09-22 15:43:06 +0300920 execlists_port_complete(execlists, port);
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100921 } else {
922 port_set(port, port_pack(rq, count));
Chris Wilson70c2a242016-09-09 14:11:46 +0100923 }
Tvrtko Ursulinc6a2ac72016-02-26 16:58:32 +0000924
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100925 /* After the final element, the hw should be idle */
926 GEM_BUG_ON(port_count(port) == 0 &&
Chris Wilson70c2a242016-09-09 14:11:46 +0100927 !(status & GEN8_CTX_STATUS_ACTIVE_IDLE));
Chris Wilson4a118ec2017-10-23 22:32:36 +0100928 if (port_count(port) == 0)
929 execlists_clear_active(execlists,
930 EXECLISTS_ACTIVE_USER);
Chris Wilson4af0d722017-03-25 20:10:53 +0000931 }
Tvrtko Ursulin26720ab2016-03-17 12:59:46 +0000932
Mika Kuoppalab620e872017-09-22 15:43:03 +0300933 if (head != execlists->csb_head) {
934 execlists->csb_head = head;
Chris Wilson767a9832017-09-13 09:56:05 +0100935 writel(_MASKED_FIELD(GEN8_CSB_READ_PTR_MASK, head << 8),
936 dev_priv->regs + i915_mmio_reg_offset(RING_CONTEXT_STATUS_PTR(engine)));
937 }
Tvrtko Ursulin26720ab2016-03-17 12:59:46 +0000938 }
939
Chris Wilson4a118ec2017-10-23 22:32:36 +0100940 if (!execlists_is_active(execlists, EXECLISTS_ACTIVE_PREEMPT))
Chris Wilson70c2a242016-09-09 14:11:46 +0100941 execlists_dequeue(engine);
Tvrtko Ursulin26720ab2016-03-17 12:59:46 +0000942
Mika Kuoppalab620e872017-09-22 15:43:03 +0300943 intel_uncore_forcewake_put(dev_priv, execlists->fw_domains);
Thomas Daniele981e7b2014-07-24 17:04:39 +0100944}
945
Chris Wilson27606fd2017-09-16 21:44:13 +0100946static void insert_request(struct intel_engine_cs *engine,
947 struct i915_priotree *pt,
948 int prio)
949{
950 struct i915_priolist *p = lookup_priolist(engine, pt, prio);
951
952 list_add_tail(&pt->link, &ptr_mask_bits(p, 1)->requests);
Chris Wilsonbeecec92017-10-03 21:34:52 +0100953 if (ptr_unmask_bits(p, 1))
Sagar Arun Kamblec6dce8f2017-11-16 19:02:37 +0530954 tasklet_hi_schedule(&engine->execlists.tasklet);
Chris Wilson27606fd2017-09-16 21:44:13 +0100955}
956
Chris Wilsonf4ea6bd2016-08-02 22:50:32 +0100957static void execlists_submit_request(struct drm_i915_gem_request *request)
Michel Thierryacdd8842014-07-24 17:04:38 +0100958{
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +0000959 struct intel_engine_cs *engine = request->engine;
Chris Wilson5590af32016-09-09 14:11:54 +0100960 unsigned long flags;
Michel Thierryacdd8842014-07-24 17:04:38 +0100961
Chris Wilson663f71e2016-11-14 20:41:00 +0000962 /* Will be called from irq-context when using foreign fences. */
963 spin_lock_irqsave(&engine->timeline->lock, flags);
Michel Thierryacdd8842014-07-24 17:04:38 +0100964
Chris Wilson27606fd2017-09-16 21:44:13 +0100965 insert_request(engine, &request->priotree, request->priotree.priority);
Michel Thierryacdd8842014-07-24 17:04:38 +0100966
Mika Kuoppalab620e872017-09-22 15:43:03 +0300967 GEM_BUG_ON(!engine->execlists.first);
Chris Wilson6c067572017-05-17 13:10:03 +0100968 GEM_BUG_ON(list_empty(&request->priotree.link));
969
Chris Wilson663f71e2016-11-14 20:41:00 +0000970 spin_unlock_irqrestore(&engine->timeline->lock, flags);
Michel Thierryacdd8842014-07-24 17:04:38 +0100971}
972
Chris Wilson1f181222017-10-03 21:34:50 +0100973static struct drm_i915_gem_request *pt_to_request(struct i915_priotree *pt)
974{
975 return container_of(pt, struct drm_i915_gem_request, priotree);
976}
977
Chris Wilson20311bd2016-11-14 20:41:03 +0000978static struct intel_engine_cs *
979pt_lock_engine(struct i915_priotree *pt, struct intel_engine_cs *locked)
980{
Chris Wilson1f181222017-10-03 21:34:50 +0100981 struct intel_engine_cs *engine = pt_to_request(pt)->engine;
Chris Wilson20311bd2016-11-14 20:41:03 +0000982
Chris Wilsona79a5242017-03-27 21:21:43 +0100983 GEM_BUG_ON(!locked);
984
Chris Wilson20311bd2016-11-14 20:41:03 +0000985 if (engine != locked) {
Chris Wilsona79a5242017-03-27 21:21:43 +0100986 spin_unlock(&locked->timeline->lock);
987 spin_lock(&engine->timeline->lock);
Chris Wilson20311bd2016-11-14 20:41:03 +0000988 }
989
990 return engine;
991}
992
993static void execlists_schedule(struct drm_i915_gem_request *request, int prio)
994{
Chris Wilsona79a5242017-03-27 21:21:43 +0100995 struct intel_engine_cs *engine;
Chris Wilson20311bd2016-11-14 20:41:03 +0000996 struct i915_dependency *dep, *p;
997 struct i915_dependency stack;
998 LIST_HEAD(dfs);
999
Chris Wilson7d1ea602017-09-28 20:39:00 +01001000 GEM_BUG_ON(prio == I915_PRIORITY_INVALID);
1001
Chris Wilson20311bd2016-11-14 20:41:03 +00001002 if (prio <= READ_ONCE(request->priotree.priority))
1003 return;
1004
Chris Wilson70cd1472016-11-28 14:36:49 +00001005 /* Need BKL in order to use the temporary link inside i915_dependency */
1006 lockdep_assert_held(&request->i915->drm.struct_mutex);
Chris Wilson20311bd2016-11-14 20:41:03 +00001007
1008 stack.signaler = &request->priotree;
1009 list_add(&stack.dfs_link, &dfs);
1010
1011 /* Recursively bump all dependent priorities to match the new request.
1012 *
1013 * A naive approach would be to use recursion:
1014 * static void update_priorities(struct i915_priotree *pt, prio) {
1015 * list_for_each_entry(dep, &pt->signalers_list, signal_link)
1016 * update_priorities(dep->signal, prio)
1017 * insert_request(pt);
1018 * }
1019 * but that may have unlimited recursion depth and so runs a very
1020 * real risk of overunning the kernel stack. Instead, we build
1021 * a flat list of all dependencies starting with the current request.
1022 * As we walk the list of dependencies, we add all of its dependencies
1023 * to the end of the list (this may include an already visited
1024 * request) and continue to walk onwards onto the new dependencies. The
1025 * end result is a topological list of requests in reverse order, the
1026 * last element in the list is the request we must execute first.
1027 */
1028 list_for_each_entry_safe(dep, p, &dfs, dfs_link) {
1029 struct i915_priotree *pt = dep->signaler;
1030
Chris Wilsona79a5242017-03-27 21:21:43 +01001031 /* Within an engine, there can be no cycle, but we may
1032 * refer to the same dependency chain multiple times
1033 * (redundant dependencies are not eliminated) and across
1034 * engines.
1035 */
1036 list_for_each_entry(p, &pt->signalers_list, signal_link) {
Chris Wilson1f181222017-10-03 21:34:50 +01001037 if (i915_gem_request_completed(pt_to_request(p->signaler)))
1038 continue;
1039
Chris Wilsona79a5242017-03-27 21:21:43 +01001040 GEM_BUG_ON(p->signaler->priority < pt->priority);
Chris Wilson20311bd2016-11-14 20:41:03 +00001041 if (prio > READ_ONCE(p->signaler->priority))
1042 list_move_tail(&p->dfs_link, &dfs);
Chris Wilsona79a5242017-03-27 21:21:43 +01001043 }
Chris Wilson20311bd2016-11-14 20:41:03 +00001044
Chris Wilson0798cff2016-12-05 14:29:41 +00001045 list_safe_reset_next(dep, p, dfs_link);
Chris Wilson20311bd2016-11-14 20:41:03 +00001046 }
1047
Chris Wilson349bdb62017-05-17 13:10:05 +01001048 /* If we didn't need to bump any existing priorities, and we haven't
1049 * yet submitted this request (i.e. there is no potential race with
1050 * execlists_submit_request()), we can set our own priority and skip
1051 * acquiring the engine locks.
1052 */
Chris Wilson7d1ea602017-09-28 20:39:00 +01001053 if (request->priotree.priority == I915_PRIORITY_INVALID) {
Chris Wilson349bdb62017-05-17 13:10:05 +01001054 GEM_BUG_ON(!list_empty(&request->priotree.link));
1055 request->priotree.priority = prio;
1056 if (stack.dfs_link.next == stack.dfs_link.prev)
1057 return;
1058 __list_del_entry(&stack.dfs_link);
1059 }
1060
Chris Wilsona79a5242017-03-27 21:21:43 +01001061 engine = request->engine;
1062 spin_lock_irq(&engine->timeline->lock);
1063
Chris Wilson20311bd2016-11-14 20:41:03 +00001064 /* Fifo and depth-first replacement ensure our deps execute before us */
1065 list_for_each_entry_safe_reverse(dep, p, &dfs, dfs_link) {
1066 struct i915_priotree *pt = dep->signaler;
1067
1068 INIT_LIST_HEAD(&dep->dfs_link);
1069
1070 engine = pt_lock_engine(pt, engine);
1071
1072 if (prio <= pt->priority)
1073 continue;
1074
Chris Wilson20311bd2016-11-14 20:41:03 +00001075 pt->priority = prio;
Chris Wilson6c067572017-05-17 13:10:03 +01001076 if (!list_empty(&pt->link)) {
1077 __list_del_entry(&pt->link);
1078 insert_request(engine, pt, prio);
Chris Wilsona79a5242017-03-27 21:21:43 +01001079 }
Chris Wilson20311bd2016-11-14 20:41:03 +00001080 }
1081
Chris Wilsona79a5242017-03-27 21:21:43 +01001082 spin_unlock_irq(&engine->timeline->lock);
Chris Wilson20311bd2016-11-14 20:41:03 +00001083}
1084
Chris Wilsonf4e15af2017-11-10 14:26:32 +00001085static int __context_pin(struct i915_gem_context *ctx, struct i915_vma *vma)
1086{
1087 unsigned int flags;
1088 int err;
1089
1090 /*
1091 * Clear this page out of any CPU caches for coherent swap-in/out.
1092 * We only want to do this on the first bind so that we do not stall
1093 * on an active context (which by nature is already on the GPU).
1094 */
1095 if (!(vma->flags & I915_VMA_GLOBAL_BIND)) {
1096 err = i915_gem_object_set_to_gtt_domain(vma->obj, true);
1097 if (err)
1098 return err;
1099 }
1100
1101 flags = PIN_GLOBAL | PIN_HIGH;
1102 if (ctx->ggtt_offset_bias)
1103 flags |= PIN_OFFSET_BIAS | ctx->ggtt_offset_bias;
1104
1105 return i915_vma_pin(vma, 0, GEN8_LR_CONTEXT_ALIGN, flags);
1106}
1107
Chris Wilson266a2402017-05-04 10:33:08 +01001108static struct intel_ring *
1109execlists_context_pin(struct intel_engine_cs *engine,
1110 struct i915_gem_context *ctx)
Oscar Mateodcb4c122014-11-13 10:28:10 +00001111{
Chris Wilson9021ad02016-05-24 14:53:37 +01001112 struct intel_context *ce = &ctx->engine[engine->id];
Tvrtko Ursulin7d774ca2016-04-12 15:40:42 +01001113 void *vaddr;
Tvrtko Ursulinca825802016-01-15 15:10:27 +00001114 int ret;
Oscar Mateodcb4c122014-11-13 10:28:10 +00001115
Chris Wilson91c8a322016-07-05 10:40:23 +01001116 lockdep_assert_held(&ctx->i915->drm.struct_mutex);
Tvrtko Ursulinca825802016-01-15 15:10:27 +00001117
Chris Wilson266a2402017-05-04 10:33:08 +01001118 if (likely(ce->pin_count++))
1119 goto out;
Chris Wilsona533b4b2017-03-16 17:16:28 +00001120 GEM_BUG_ON(!ce->pin_count); /* no overflow please! */
Chris Wilson24f1d3c2016-04-28 09:56:53 +01001121
Chris Wilsone8a9c582016-12-18 15:37:20 +00001122 if (!ce->state) {
1123 ret = execlists_context_deferred_alloc(ctx, engine);
1124 if (ret)
1125 goto err;
1126 }
Chris Wilson56f6e0a2017-01-05 15:30:20 +00001127 GEM_BUG_ON(!ce->state);
Chris Wilsone8a9c582016-12-18 15:37:20 +00001128
Chris Wilsonf4e15af2017-11-10 14:26:32 +00001129 ret = __context_pin(ctx, ce->state);
Nick Hoathe84fe802015-09-11 12:53:46 +01001130 if (ret)
Chris Wilson24f1d3c2016-04-28 09:56:53 +01001131 goto err;
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001132
Chris Wilsonbf3783e2016-08-15 10:48:54 +01001133 vaddr = i915_gem_object_pin_map(ce->state->obj, I915_MAP_WB);
Tvrtko Ursulin7d774ca2016-04-12 15:40:42 +01001134 if (IS_ERR(vaddr)) {
1135 ret = PTR_ERR(vaddr);
Chris Wilsonbf3783e2016-08-15 10:48:54 +01001136 goto unpin_vma;
Tvrtko Ursulin82352e92016-01-15 17:12:45 +00001137 }
1138
Chris Wilsond822bb12017-04-03 12:34:25 +01001139 ret = intel_ring_pin(ce->ring, ctx->i915, ctx->ggtt_offset_bias);
Nick Hoathe84fe802015-09-11 12:53:46 +01001140 if (ret)
Tvrtko Ursulin7d774ca2016-04-12 15:40:42 +01001141 goto unpin_map;
Alex Daid1675192015-08-12 15:43:43 +01001142
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001143 intel_lr_context_descriptor_update(ctx, engine);
Chris Wilson9021ad02016-05-24 14:53:37 +01001144
Chris Wilsona3aabe82016-10-04 21:11:26 +01001145 ce->lrc_reg_state = vaddr + LRC_STATE_PN * PAGE_SIZE;
1146 ce->lrc_reg_state[CTX_RING_BUFFER_START+1] =
Chris Wilsonbde13eb2016-08-15 10:49:07 +01001147 i915_ggtt_offset(ce->ring->vma);
Chris Wilsona3aabe82016-10-04 21:11:26 +01001148
Chris Wilson3d574a62017-10-13 21:26:16 +01001149 ce->state->obj->pin_global++;
Chris Wilson9a6feaf2016-07-20 13:31:50 +01001150 i915_gem_context_get(ctx);
Chris Wilson266a2402017-05-04 10:33:08 +01001151out:
1152 return ce->ring;
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001153
Tvrtko Ursulin7d774ca2016-04-12 15:40:42 +01001154unpin_map:
Chris Wilsonbf3783e2016-08-15 10:48:54 +01001155 i915_gem_object_unpin_map(ce->state->obj);
1156unpin_vma:
1157 __i915_vma_unpin(ce->state);
Chris Wilson24f1d3c2016-04-28 09:56:53 +01001158err:
Chris Wilson9021ad02016-05-24 14:53:37 +01001159 ce->pin_count = 0;
Chris Wilson266a2402017-05-04 10:33:08 +01001160 return ERR_PTR(ret);
Oscar Mateodcb4c122014-11-13 10:28:10 +00001161}
1162
Chris Wilsone8a9c582016-12-18 15:37:20 +00001163static void execlists_context_unpin(struct intel_engine_cs *engine,
1164 struct i915_gem_context *ctx)
Oscar Mateodcb4c122014-11-13 10:28:10 +00001165{
Chris Wilson9021ad02016-05-24 14:53:37 +01001166 struct intel_context *ce = &ctx->engine[engine->id];
Daniel Vetteraf3302b2015-12-04 17:27:15 +01001167
Chris Wilson91c8a322016-07-05 10:40:23 +01001168 lockdep_assert_held(&ctx->i915->drm.struct_mutex);
Chris Wilson9021ad02016-05-24 14:53:37 +01001169 GEM_BUG_ON(ce->pin_count == 0);
Tvrtko Ursulin321fe302016-01-28 10:29:55 +00001170
Chris Wilson9021ad02016-05-24 14:53:37 +01001171 if (--ce->pin_count)
Chris Wilson24f1d3c2016-04-28 09:56:53 +01001172 return;
1173
Chris Wilsonaad29fb2016-08-02 22:50:23 +01001174 intel_ring_unpin(ce->ring);
Chris Wilson24f1d3c2016-04-28 09:56:53 +01001175
Chris Wilson3d574a62017-10-13 21:26:16 +01001176 ce->state->obj->pin_global--;
Chris Wilsonbf3783e2016-08-15 10:48:54 +01001177 i915_gem_object_unpin_map(ce->state->obj);
1178 i915_vma_unpin(ce->state);
Chris Wilson24f1d3c2016-04-28 09:56:53 +01001179
Chris Wilson9a6feaf2016-07-20 13:31:50 +01001180 i915_gem_context_put(ctx);
Oscar Mateodcb4c122014-11-13 10:28:10 +00001181}
1182
Chris Wilsonf73e7392016-12-18 15:37:24 +00001183static int execlists_request_alloc(struct drm_i915_gem_request *request)
Chris Wilsonef11c012016-12-18 15:37:19 +00001184{
1185 struct intel_engine_cs *engine = request->engine;
1186 struct intel_context *ce = &request->ctx->engine[engine->id];
Chris Wilsonfd138212017-11-15 15:12:04 +00001187 int ret;
Chris Wilsonef11c012016-12-18 15:37:19 +00001188
Chris Wilsone8a9c582016-12-18 15:37:20 +00001189 GEM_BUG_ON(!ce->pin_count);
1190
Chris Wilsonef11c012016-12-18 15:37:19 +00001191 /* Flush enough space to reduce the likelihood of waiting after
1192 * we start building the request - in which case we will just
1193 * have to repeat work.
1194 */
1195 request->reserved_space += EXECLISTS_REQUEST_SIZE;
1196
Chris Wilsonfd138212017-11-15 15:12:04 +00001197 ret = intel_ring_wait_for_space(request->ring, request->reserved_space);
1198 if (ret)
1199 return ret;
Chris Wilsonef11c012016-12-18 15:37:19 +00001200
Chris Wilsonef11c012016-12-18 15:37:19 +00001201 /* Note that after this point, we have committed to using
1202 * this request as it is being used to both track the
1203 * state of engine initialisation and liveness of the
1204 * golden renderstate above. Think twice before you try
1205 * to cancel/unwind this request now.
1206 */
1207
1208 request->reserved_space -= EXECLISTS_REQUEST_SIZE;
1209 return 0;
Chris Wilsonef11c012016-12-18 15:37:19 +00001210}
1211
Arun Siluvery9e000842015-07-03 14:27:31 +01001212/*
1213 * In this WA we need to set GEN8_L3SQCREG4[21:21] and reset it after
1214 * PIPE_CONTROL instruction. This is required for the flush to happen correctly
1215 * but there is a slight complication as this is applied in WA batch where the
1216 * values are only initialized once so we cannot take register value at the
1217 * beginning and reuse it further; hence we save its value to memory, upload a
1218 * constant value with bit21 set and then we restore it back with the saved value.
1219 * To simplify the WA, a constant value is formed by using the default value
1220 * of this register. This shouldn't be a problem because we are only modifying
1221 * it for a short period and this batch in non-premptible. We can ofcourse
1222 * use additional instructions that read the actual value of the register
1223 * at that time and set our bit of interest but it makes the WA complicated.
1224 *
1225 * This WA is also required for Gen9 so extracting as a function avoids
1226 * code duplication.
1227 */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001228static u32 *
1229gen8_emit_flush_coherentl3_wa(struct intel_engine_cs *engine, u32 *batch)
Arun Siluvery9e000842015-07-03 14:27:31 +01001230{
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001231 *batch++ = MI_STORE_REGISTER_MEM_GEN8 | MI_SRM_LRM_GLOBAL_GTT;
1232 *batch++ = i915_mmio_reg_offset(GEN8_L3SQCREG4);
1233 *batch++ = i915_ggtt_offset(engine->scratch) + 256;
1234 *batch++ = 0;
Arun Siluvery9e000842015-07-03 14:27:31 +01001235
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001236 *batch++ = MI_LOAD_REGISTER_IMM(1);
1237 *batch++ = i915_mmio_reg_offset(GEN8_L3SQCREG4);
1238 *batch++ = 0x40400000 | GEN8_LQSC_FLUSH_COHERENT_LINES;
Arun Siluvery9e000842015-07-03 14:27:31 +01001239
Tvrtko Ursulin9f235df2017-02-16 12:23:25 +00001240 batch = gen8_emit_pipe_control(batch,
1241 PIPE_CONTROL_CS_STALL |
1242 PIPE_CONTROL_DC_FLUSH_ENABLE,
1243 0);
Arun Siluvery9e000842015-07-03 14:27:31 +01001244
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001245 *batch++ = MI_LOAD_REGISTER_MEM_GEN8 | MI_SRM_LRM_GLOBAL_GTT;
1246 *batch++ = i915_mmio_reg_offset(GEN8_L3SQCREG4);
1247 *batch++ = i915_ggtt_offset(engine->scratch) + 256;
1248 *batch++ = 0;
Arun Siluvery9e000842015-07-03 14:27:31 +01001249
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001250 return batch;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001251}
1252
Daniel Vetter6e5248b2016-07-15 21:48:06 +02001253/*
1254 * Typically we only have one indirect_ctx and per_ctx batch buffer which are
1255 * initialized at the beginning and shared across all contexts but this field
1256 * helps us to have multiple batches at different offsets and select them based
1257 * on a criteria. At the moment this batch always start at the beginning of the page
1258 * and at this point we don't have multiple wa_ctx batch buffers.
Arun Siluvery17ee9502015-06-19 19:07:01 +01001259 *
Daniel Vetter6e5248b2016-07-15 21:48:06 +02001260 * The number of WA applied are not known at the beginning; we use this field
1261 * to return the no of DWORDS written.
Arun Siluvery17ee9502015-06-19 19:07:01 +01001262 *
Daniel Vetter6e5248b2016-07-15 21:48:06 +02001263 * It is to be noted that this batch does not contain MI_BATCH_BUFFER_END
1264 * so it adds NOOPs as padding to make it cacheline aligned.
1265 * MI_BATCH_BUFFER_END will be added to perctx batch and both of them together
1266 * makes a complete batch buffer.
Arun Siluvery17ee9502015-06-19 19:07:01 +01001267 */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001268static u32 *gen8_init_indirectctx_bb(struct intel_engine_cs *engine, u32 *batch)
Arun Siluvery17ee9502015-06-19 19:07:01 +01001269{
Arun Siluvery7ad00d12015-06-19 18:37:12 +01001270 /* WaDisableCtxRestoreArbitration:bdw,chv */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001271 *batch++ = MI_ARB_ON_OFF | MI_ARB_DISABLE;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001272
Arun Siluveryc82435b2015-06-19 18:37:13 +01001273 /* WaFlushCoherentL3CacheLinesAtContextSwitch:bdw */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001274 if (IS_BROADWELL(engine->i915))
1275 batch = gen8_emit_flush_coherentl3_wa(engine, batch);
Arun Siluveryc82435b2015-06-19 18:37:13 +01001276
Arun Siluvery0160f052015-06-23 15:46:57 +01001277 /* WaClearSlmSpaceAtContextSwitch:bdw,chv */
1278 /* Actual scratch location is at 128 bytes offset */
Tvrtko Ursulin9f235df2017-02-16 12:23:25 +00001279 batch = gen8_emit_pipe_control(batch,
1280 PIPE_CONTROL_FLUSH_L3 |
1281 PIPE_CONTROL_GLOBAL_GTT_IVB |
1282 PIPE_CONTROL_CS_STALL |
1283 PIPE_CONTROL_QW_WRITE,
1284 i915_ggtt_offset(engine->scratch) +
1285 2 * CACHELINE_BYTES);
Arun Siluvery0160f052015-06-23 15:46:57 +01001286
Chris Wilsonbeecec92017-10-03 21:34:52 +01001287 *batch++ = MI_ARB_ON_OFF | MI_ARB_ENABLE;
1288
Arun Siluvery17ee9502015-06-19 19:07:01 +01001289 /* Pad to end of cacheline */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001290 while ((unsigned long)batch % CACHELINE_BYTES)
1291 *batch++ = MI_NOOP;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001292
1293 /*
1294 * MI_BATCH_BUFFER_END is not required in Indirect ctx BB because
1295 * execution depends on the length specified in terms of cache lines
1296 * in the register CTX_RCS_INDIRECT_CTX
1297 */
1298
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001299 return batch;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001300}
1301
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001302static u32 *gen9_init_indirectctx_bb(struct intel_engine_cs *engine, u32 *batch)
Arun Siluvery0504cff2015-07-14 15:01:27 +01001303{
Chris Wilsonbeecec92017-10-03 21:34:52 +01001304 *batch++ = MI_ARB_ON_OFF | MI_ARB_DISABLE;
1305
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02001306 /* WaFlushCoherentL3CacheLinesAtContextSwitch:skl,bxt,glk */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001307 batch = gen8_emit_flush_coherentl3_wa(engine, batch);
Arun Siluverya4106a72015-07-14 15:01:29 +01001308
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02001309 /* WaDisableGatherAtSetShaderCommonSlice:skl,bxt,kbl,glk */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001310 *batch++ = MI_LOAD_REGISTER_IMM(1);
1311 *batch++ = i915_mmio_reg_offset(COMMON_SLICE_CHICKEN2);
1312 *batch++ = _MASKED_BIT_DISABLE(
1313 GEN9_DISABLE_GATHER_AT_SET_SHADER_COMMON_SLICE);
1314 *batch++ = MI_NOOP;
Mika Kuoppala873e8172016-07-20 14:26:13 +03001315
Mika Kuoppala066d4622016-06-07 17:19:15 +03001316 /* WaClearSlmSpaceAtContextSwitch:kbl */
1317 /* Actual scratch location is at 128 bytes offset */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001318 if (IS_KBL_REVID(engine->i915, 0, KBL_REVID_A0)) {
Tvrtko Ursulin9f235df2017-02-16 12:23:25 +00001319 batch = gen8_emit_pipe_control(batch,
1320 PIPE_CONTROL_FLUSH_L3 |
1321 PIPE_CONTROL_GLOBAL_GTT_IVB |
1322 PIPE_CONTROL_CS_STALL |
1323 PIPE_CONTROL_QW_WRITE,
1324 i915_ggtt_offset(engine->scratch)
1325 + 2 * CACHELINE_BYTES);
Mika Kuoppala066d4622016-06-07 17:19:15 +03001326 }
Tim Gore3485d992016-07-05 10:01:30 +01001327
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02001328 /* WaMediaPoolStateCmdInWABB:bxt,glk */
Tim Gore3485d992016-07-05 10:01:30 +01001329 if (HAS_POOLED_EU(engine->i915)) {
1330 /*
1331 * EU pool configuration is setup along with golden context
1332 * during context initialization. This value depends on
1333 * device type (2x6 or 3x6) and needs to be updated based
1334 * on which subslice is disabled especially for 2x6
1335 * devices, however it is safe to load default
1336 * configuration of 3x6 device instead of masking off
1337 * corresponding bits because HW ignores bits of a disabled
1338 * subslice and drops down to appropriate config. Please
1339 * see render_state_setup() in i915_gem_render_state.c for
1340 * possible configurations, to avoid duplication they are
1341 * not shown here again.
1342 */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001343 *batch++ = GEN9_MEDIA_POOL_STATE;
1344 *batch++ = GEN9_MEDIA_POOL_ENABLE;
1345 *batch++ = 0x00777000;
1346 *batch++ = 0;
1347 *batch++ = 0;
1348 *batch++ = 0;
Tim Gore3485d992016-07-05 10:01:30 +01001349 }
1350
Chris Wilsonbeecec92017-10-03 21:34:52 +01001351 *batch++ = MI_ARB_ON_OFF | MI_ARB_ENABLE;
1352
Arun Siluvery0504cff2015-07-14 15:01:27 +01001353 /* Pad to end of cacheline */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001354 while ((unsigned long)batch % CACHELINE_BYTES)
1355 *batch++ = MI_NOOP;
Arun Siluvery0504cff2015-07-14 15:01:27 +01001356
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001357 return batch;
Arun Siluvery0504cff2015-07-14 15:01:27 +01001358}
1359
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001360#define CTX_WA_BB_OBJ_SIZE (PAGE_SIZE)
1361
1362static int lrc_setup_wa_ctx(struct intel_engine_cs *engine)
Arun Siluvery17ee9502015-06-19 19:07:01 +01001363{
Chris Wilson48bb74e2016-08-15 10:49:04 +01001364 struct drm_i915_gem_object *obj;
1365 struct i915_vma *vma;
1366 int err;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001367
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001368 obj = i915_gem_object_create(engine->i915, CTX_WA_BB_OBJ_SIZE);
Chris Wilson48bb74e2016-08-15 10:49:04 +01001369 if (IS_ERR(obj))
1370 return PTR_ERR(obj);
1371
Chris Wilsona01cb372017-01-16 15:21:30 +00001372 vma = i915_vma_instance(obj, &engine->i915->ggtt.base, NULL);
Chris Wilson48bb74e2016-08-15 10:49:04 +01001373 if (IS_ERR(vma)) {
1374 err = PTR_ERR(vma);
1375 goto err;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001376 }
1377
Chris Wilson48bb74e2016-08-15 10:49:04 +01001378 err = i915_vma_pin(vma, 0, PAGE_SIZE, PIN_GLOBAL | PIN_HIGH);
1379 if (err)
1380 goto err;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001381
Chris Wilson48bb74e2016-08-15 10:49:04 +01001382 engine->wa_ctx.vma = vma;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001383 return 0;
Chris Wilson48bb74e2016-08-15 10:49:04 +01001384
1385err:
1386 i915_gem_object_put(obj);
1387 return err;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001388}
1389
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001390static void lrc_destroy_wa_ctx(struct intel_engine_cs *engine)
Arun Siluvery17ee9502015-06-19 19:07:01 +01001391{
Chris Wilson19880c42016-08-15 10:49:05 +01001392 i915_vma_unpin_and_release(&engine->wa_ctx.vma);
Arun Siluvery17ee9502015-06-19 19:07:01 +01001393}
1394
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001395typedef u32 *(*wa_bb_func_t)(struct intel_engine_cs *engine, u32 *batch);
1396
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001397static int intel_init_workaround_bb(struct intel_engine_cs *engine)
Arun Siluvery17ee9502015-06-19 19:07:01 +01001398{
Chris Wilson48bb74e2016-08-15 10:49:04 +01001399 struct i915_ctx_workarounds *wa_ctx = &engine->wa_ctx;
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001400 struct i915_wa_ctx_bb *wa_bb[2] = { &wa_ctx->indirect_ctx,
1401 &wa_ctx->per_ctx };
1402 wa_bb_func_t wa_bb_fn[2];
Arun Siluvery17ee9502015-06-19 19:07:01 +01001403 struct page *page;
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001404 void *batch, *batch_ptr;
1405 unsigned int i;
Chris Wilson48bb74e2016-08-15 10:49:04 +01001406 int ret;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001407
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001408 if (WARN_ON(engine->id != RCS || !engine->scratch))
1409 return -EINVAL;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001410
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001411 switch (INTEL_GEN(engine->i915)) {
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07001412 case 10:
1413 return 0;
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001414 case 9:
1415 wa_bb_fn[0] = gen9_init_indirectctx_bb;
Chris Wilsonb8aa2232017-09-21 14:54:44 +01001416 wa_bb_fn[1] = NULL;
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001417 break;
1418 case 8:
1419 wa_bb_fn[0] = gen8_init_indirectctx_bb;
Chris Wilson3ad7b522017-10-03 21:34:49 +01001420 wa_bb_fn[1] = NULL;
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001421 break;
1422 default:
1423 MISSING_CASE(INTEL_GEN(engine->i915));
Arun Siluvery5e60d792015-06-23 15:50:44 +01001424 return 0;
Arun Siluvery0504cff2015-07-14 15:01:27 +01001425 }
Arun Siluvery5e60d792015-06-23 15:50:44 +01001426
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001427 ret = lrc_setup_wa_ctx(engine);
Arun Siluvery17ee9502015-06-19 19:07:01 +01001428 if (ret) {
1429 DRM_DEBUG_DRIVER("Failed to setup context WA page: %d\n", ret);
1430 return ret;
1431 }
1432
Chris Wilson48bb74e2016-08-15 10:49:04 +01001433 page = i915_gem_object_get_dirty_page(wa_ctx->vma->obj, 0);
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001434 batch = batch_ptr = kmap_atomic(page);
Arun Siluvery17ee9502015-06-19 19:07:01 +01001435
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001436 /*
1437 * Emit the two workaround batch buffers, recording the offset from the
1438 * start of the workaround batch buffer object for each and their
1439 * respective sizes.
1440 */
1441 for (i = 0; i < ARRAY_SIZE(wa_bb_fn); i++) {
1442 wa_bb[i]->offset = batch_ptr - batch;
1443 if (WARN_ON(!IS_ALIGNED(wa_bb[i]->offset, CACHELINE_BYTES))) {
1444 ret = -EINVAL;
1445 break;
1446 }
Chris Wilson604a8f62017-09-21 14:54:43 +01001447 if (wa_bb_fn[i])
1448 batch_ptr = wa_bb_fn[i](engine, batch_ptr);
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001449 wa_bb[i]->size = batch_ptr - (batch + wa_bb[i]->offset);
Arun Siluvery17ee9502015-06-19 19:07:01 +01001450 }
1451
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001452 BUG_ON(batch_ptr - batch > CTX_WA_BB_OBJ_SIZE);
1453
Arun Siluvery17ee9502015-06-19 19:07:01 +01001454 kunmap_atomic(batch);
1455 if (ret)
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001456 lrc_destroy_wa_ctx(engine);
Arun Siluvery17ee9502015-06-19 19:07:01 +01001457
1458 return ret;
1459}
1460
Chris Wilson64f09f02017-08-07 13:19:19 +01001461static u8 gtiir[] = {
1462 [RCS] = 0,
1463 [BCS] = 0,
1464 [VCS] = 1,
1465 [VCS2] = 1,
1466 [VECS] = 3,
1467};
1468
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001469static int gen8_init_common_ring(struct intel_engine_cs *engine)
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001470{
Chris Wilsonc0336662016-05-06 15:40:21 +01001471 struct drm_i915_private *dev_priv = engine->i915;
Mika Kuoppalab620e872017-09-22 15:43:03 +03001472 struct intel_engine_execlists * const execlists = &engine->execlists;
Chris Wilson821ed7d2016-09-09 14:11:53 +01001473 int ret;
1474
1475 ret = intel_mocs_init_engine(engine);
1476 if (ret)
1477 return ret;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001478
Chris Wilsonad07dfc2016-10-07 07:53:26 +01001479 intel_engine_reset_breadcrumbs(engine);
Chris Wilsonf3b8f912017-01-05 15:30:21 +00001480 intel_engine_init_hangcheck(engine);
Chris Wilson821ed7d2016-09-09 14:11:53 +01001481
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001482 I915_WRITE(RING_HWSTAM(engine->mmio_base), 0xffffffff);
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001483 I915_WRITE(RING_MODE_GEN7(engine),
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001484 _MASKED_BIT_ENABLE(GFX_RUN_LIST_ENABLE));
Chris Wilsonf3b8f912017-01-05 15:30:21 +00001485 I915_WRITE(RING_HWS_PGA(engine->mmio_base),
1486 engine->status_page.ggtt_offset);
1487 POSTING_READ(RING_HWS_PGA(engine->mmio_base));
Michel Thierrydfc53c52015-09-28 13:25:12 +01001488
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001489 DRM_DEBUG_DRIVER("Execlists enabled for %s\n", engine->name);
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001490
Chris Wilson64f09f02017-08-07 13:19:19 +01001491 GEM_BUG_ON(engine->id >= ARRAY_SIZE(gtiir));
1492
1493 /*
1494 * Clear any pending interrupt state.
1495 *
1496 * We do it twice out of paranoia that some of the IIR are double
1497 * buffered, and if we only reset it once there may still be
1498 * an interrupt pending.
1499 */
1500 I915_WRITE(GEN8_GT_IIR(gtiir[engine->id]),
1501 GT_CONTEXT_SWITCH_INTERRUPT << engine->irq_shift);
1502 I915_WRITE(GEN8_GT_IIR(gtiir[engine->id]),
1503 GT_CONTEXT_SWITCH_INTERRUPT << engine->irq_shift);
Chris Wilsonf7470262017-01-24 15:20:21 +00001504 clear_bit(ENGINE_IRQ_EXECLIST, &engine->irq_posted);
Mika Kuoppalab620e872017-09-22 15:43:03 +03001505 execlists->csb_head = -1;
Chris Wilson4a118ec2017-10-23 22:32:36 +01001506 execlists->active = 0;
Chris Wilson6b764a52017-04-25 11:38:35 +01001507
Chris Wilson2fc7a062017-12-07 22:24:34 +00001508 execlists->elsp =
1509 dev_priv->regs + i915_mmio_reg_offset(RING_ELSP(engine));
1510
Chris Wilson64f09f02017-08-07 13:19:19 +01001511 /* After a GPU reset, we may have requests to replay */
Michał Winiarski9bdc3572017-10-25 18:25:19 +01001512 if (execlists->first)
Sagar Arun Kamblec6dce8f2017-11-16 19:02:37 +05301513 tasklet_schedule(&execlists->tasklet);
Chris Wilson6b764a52017-04-25 11:38:35 +01001514
Chris Wilson821ed7d2016-09-09 14:11:53 +01001515 return 0;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001516}
1517
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001518static int gen8_init_render_ring(struct intel_engine_cs *engine)
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001519{
Chris Wilsonc0336662016-05-06 15:40:21 +01001520 struct drm_i915_private *dev_priv = engine->i915;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001521 int ret;
1522
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001523 ret = gen8_init_common_ring(engine);
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001524 if (ret)
1525 return ret;
1526
1527 /* We need to disable the AsyncFlip performance optimisations in order
1528 * to use MI_WAIT_FOR_EVENT within the CS. It should already be
1529 * programmed to '1' on all products.
1530 *
1531 * WaDisableAsyncFlipPerfMode:snb,ivb,hsw,vlv,bdw,chv
1532 */
1533 I915_WRITE(MI_MODE, _MASKED_BIT_ENABLE(ASYNC_FLIP_PERF_DISABLE));
1534
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001535 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_FORCE_ORDERING));
1536
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001537 return init_workarounds_ring(engine);
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001538}
1539
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001540static int gen9_init_render_ring(struct intel_engine_cs *engine)
Damien Lespiau82ef8222015-02-09 19:33:08 +00001541{
1542 int ret;
1543
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001544 ret = gen8_init_common_ring(engine);
Damien Lespiau82ef8222015-02-09 19:33:08 +00001545 if (ret)
1546 return ret;
1547
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001548 return init_workarounds_ring(engine);
Damien Lespiau82ef8222015-02-09 19:33:08 +00001549}
1550
Chris Wilson821ed7d2016-09-09 14:11:53 +01001551static void reset_common_ring(struct intel_engine_cs *engine,
1552 struct drm_i915_gem_request *request)
1553{
Mika Kuoppalab620e872017-09-22 15:43:03 +03001554 struct intel_engine_execlists * const execlists = &engine->execlists;
Chris Wilsonc0dcb202017-02-07 15:24:37 +00001555 struct intel_context *ce;
Chris Wilson221ab97192017-09-16 21:44:14 +01001556 unsigned long flags;
Chris Wilsoncdb6ded2017-07-21 13:32:22 +01001557
Chris Wilson221ab97192017-09-16 21:44:14 +01001558 spin_lock_irqsave(&engine->timeline->lock, flags);
1559
Chris Wilsoncdb6ded2017-07-21 13:32:22 +01001560 /*
1561 * Catch up with any missed context-switch interrupts.
1562 *
1563 * Ideally we would just read the remaining CSB entries now that we
1564 * know the gpu is idle. However, the CSB registers are sometimes^W
1565 * often trashed across a GPU reset! Instead we have to rely on
1566 * guessing the missed context-switch events by looking at what
1567 * requests were completed.
1568 */
Michał Winiarskia4598d12017-10-25 22:00:18 +02001569 execlists_cancel_port_requests(execlists);
Chris Wilson221ab97192017-09-16 21:44:14 +01001570
1571 /* Push back any incomplete requests for replay after the reset. */
Michał Winiarskia4598d12017-10-25 22:00:18 +02001572 __unwind_incomplete_requests(engine);
Chris Wilsoncdb6ded2017-07-21 13:32:22 +01001573
Chris Wilson221ab97192017-09-16 21:44:14 +01001574 spin_unlock_irqrestore(&engine->timeline->lock, flags);
Chris Wilsonc0dcb202017-02-07 15:24:37 +00001575
1576 /* If the request was innocent, we leave the request in the ELSP
1577 * and will try to replay it on restarting. The context image may
1578 * have been corrupted by the reset, in which case we may have
1579 * to service a new GPU hang, but more likely we can continue on
1580 * without impact.
1581 *
1582 * If the request was guilty, we presume the context is corrupt
1583 * and have to at least restore the RING register in the context
1584 * image back to the expected values to skip over the guilty request.
1585 */
Chris Wilson221ab97192017-09-16 21:44:14 +01001586 if (!request || request->fence.error != -EIO)
Chris Wilsonc0dcb202017-02-07 15:24:37 +00001587 return;
Chris Wilson821ed7d2016-09-09 14:11:53 +01001588
Chris Wilsona3aabe82016-10-04 21:11:26 +01001589 /* We want a simple context + ring to execute the breadcrumb update.
1590 * We cannot rely on the context being intact across the GPU hang,
1591 * so clear it and rebuild just what we need for the breadcrumb.
1592 * All pending requests for this context will be zapped, and any
1593 * future request will be after userspace has had the opportunity
1594 * to recreate its own state.
1595 */
Chris Wilsonc0dcb202017-02-07 15:24:37 +00001596 ce = &request->ctx->engine[engine->id];
Chris Wilsona3aabe82016-10-04 21:11:26 +01001597 execlists_init_reg_state(ce->lrc_reg_state,
1598 request->ctx, engine, ce->ring);
1599
Chris Wilson821ed7d2016-09-09 14:11:53 +01001600 /* Move the RING_HEAD onto the breadcrumb, past the hanging batch */
Chris Wilsona3aabe82016-10-04 21:11:26 +01001601 ce->lrc_reg_state[CTX_RING_BUFFER_START+1] =
1602 i915_ggtt_offset(ce->ring->vma);
Chris Wilson821ed7d2016-09-09 14:11:53 +01001603 ce->lrc_reg_state[CTX_RING_HEAD+1] = request->postfix;
Chris Wilsona3aabe82016-10-04 21:11:26 +01001604
Chris Wilson821ed7d2016-09-09 14:11:53 +01001605 request->ring->head = request->postfix;
Chris Wilson821ed7d2016-09-09 14:11:53 +01001606 intel_ring_update_space(request->ring);
1607
Chris Wilsona3aabe82016-10-04 21:11:26 +01001608 /* Reset WaIdleLiteRestore:bdw,skl as well */
Chris Wilson7e4992a2017-09-28 20:38:59 +01001609 unwind_wa_tail(request);
Chris Wilson821ed7d2016-09-09 14:11:53 +01001610}
1611
Michel Thierry7a01a0a2015-06-26 13:46:14 +01001612static int intel_logical_ring_emit_pdps(struct drm_i915_gem_request *req)
1613{
1614 struct i915_hw_ppgtt *ppgtt = req->ctx->ppgtt;
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +00001615 struct intel_engine_cs *engine = req->engine;
Mika Kuoppalae7167762017-02-28 17:28:10 +02001616 const int num_lri_cmds = GEN8_3LVL_PDPES * 2;
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001617 u32 *cs;
1618 int i;
Michel Thierry7a01a0a2015-06-26 13:46:14 +01001619
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001620 cs = intel_ring_begin(req, num_lri_cmds * 2 + 2);
1621 if (IS_ERR(cs))
1622 return PTR_ERR(cs);
Michel Thierry7a01a0a2015-06-26 13:46:14 +01001623
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001624 *cs++ = MI_LOAD_REGISTER_IMM(num_lri_cmds);
Mika Kuoppalae7167762017-02-28 17:28:10 +02001625 for (i = GEN8_3LVL_PDPES - 1; i >= 0; i--) {
Michel Thierry7a01a0a2015-06-26 13:46:14 +01001626 const dma_addr_t pd_daddr = i915_page_dir_dma_addr(ppgtt, i);
1627
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001628 *cs++ = i915_mmio_reg_offset(GEN8_RING_PDP_UDW(engine, i));
1629 *cs++ = upper_32_bits(pd_daddr);
1630 *cs++ = i915_mmio_reg_offset(GEN8_RING_PDP_LDW(engine, i));
1631 *cs++ = lower_32_bits(pd_daddr);
Michel Thierry7a01a0a2015-06-26 13:46:14 +01001632 }
1633
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001634 *cs++ = MI_NOOP;
1635 intel_ring_advance(req, cs);
Michel Thierry7a01a0a2015-06-26 13:46:14 +01001636
1637 return 0;
1638}
1639
John Harrisonbe795fc2015-05-29 17:44:03 +01001640static int gen8_emit_bb_start(struct drm_i915_gem_request *req,
Chris Wilson803688b2016-08-02 22:50:27 +01001641 u64 offset, u32 len,
Mika Kuoppala54af56d2017-02-28 17:28:08 +02001642 const unsigned int flags)
Oscar Mateo15648582014-07-24 17:04:32 +01001643{
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001644 u32 *cs;
Oscar Mateo15648582014-07-24 17:04:32 +01001645 int ret;
1646
Michel Thierry7a01a0a2015-06-26 13:46:14 +01001647 /* Don't rely in hw updating PDPs, specially in lite-restore.
1648 * Ideally, we should set Force PD Restore in ctx descriptor,
1649 * but we can't. Force Restore would be a second option, but
1650 * it is unsafe in case of lite-restore (because the ctx is
Michel Thierry2dba3232015-07-30 11:06:23 +01001651 * not idle). PML4 is allocated during ppgtt init so this is
1652 * not needed in 48-bit.*/
Michel Thierry7a01a0a2015-06-26 13:46:14 +01001653 if (req->ctx->ppgtt &&
Mika Kuoppala54af56d2017-02-28 17:28:08 +02001654 (intel_engine_flag(req->engine) & req->ctx->ppgtt->pd_dirty_rings) &&
1655 !i915_vm_is_48bit(&req->ctx->ppgtt->base) &&
1656 !intel_vgpu_active(req->i915)) {
1657 ret = intel_logical_ring_emit_pdps(req);
1658 if (ret)
1659 return ret;
Michel Thierry7a01a0a2015-06-26 13:46:14 +01001660
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00001661 req->ctx->ppgtt->pd_dirty_rings &= ~intel_engine_flag(req->engine);
Michel Thierry7a01a0a2015-06-26 13:46:14 +01001662 }
1663
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001664 cs = intel_ring_begin(req, 4);
1665 if (IS_ERR(cs))
1666 return PTR_ERR(cs);
Oscar Mateo15648582014-07-24 17:04:32 +01001667
Chris Wilson279f5a02017-10-05 20:10:05 +01001668 /*
1669 * WaDisableCtxRestoreArbitration:bdw,chv
1670 *
1671 * We don't need to perform MI_ARB_ENABLE as often as we do (in
1672 * particular all the gen that do not need the w/a at all!), if we
1673 * took care to make sure that on every switch into this context
1674 * (both ordinary and for preemption) that arbitrartion was enabled
1675 * we would be fine. However, there doesn't seem to be a downside to
1676 * being paranoid and making sure it is set before each batch and
1677 * every context-switch.
1678 *
1679 * Note that if we fail to enable arbitration before the request
1680 * is complete, then we do not see the context-switch interrupt and
1681 * the engine hangs (with RING_HEAD == RING_TAIL).
1682 *
1683 * That satisfies both the GPGPU w/a and our heavy-handed paranoia.
1684 */
Chris Wilson3ad7b522017-10-03 21:34:49 +01001685 *cs++ = MI_ARB_ON_OFF | MI_ARB_ENABLE;
1686
Oscar Mateo15648582014-07-24 17:04:32 +01001687 /* FIXME(BDW): Address space and security selectors. */
Mika Kuoppala54af56d2017-02-28 17:28:08 +02001688 *cs++ = MI_BATCH_BUFFER_START_GEN8 |
1689 (flags & I915_DISPATCH_SECURE ? 0 : BIT(8)) |
1690 (flags & I915_DISPATCH_RS ? MI_BATCH_RESOURCE_STREAMER : 0);
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001691 *cs++ = lower_32_bits(offset);
1692 *cs++ = upper_32_bits(offset);
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001693 intel_ring_advance(req, cs);
Oscar Mateo15648582014-07-24 17:04:32 +01001694
1695 return 0;
1696}
1697
Chris Wilson31bb59c2016-07-01 17:23:27 +01001698static void gen8_logical_ring_enable_irq(struct intel_engine_cs *engine)
Oscar Mateo73d477f2014-07-24 17:04:31 +01001699{
Chris Wilsonc0336662016-05-06 15:40:21 +01001700 struct drm_i915_private *dev_priv = engine->i915;
Chris Wilson31bb59c2016-07-01 17:23:27 +01001701 I915_WRITE_IMR(engine,
1702 ~(engine->irq_enable_mask | engine->irq_keep_mask));
1703 POSTING_READ_FW(RING_IMR(engine->mmio_base));
Oscar Mateo73d477f2014-07-24 17:04:31 +01001704}
1705
Chris Wilson31bb59c2016-07-01 17:23:27 +01001706static void gen8_logical_ring_disable_irq(struct intel_engine_cs *engine)
Oscar Mateo73d477f2014-07-24 17:04:31 +01001707{
Chris Wilsonc0336662016-05-06 15:40:21 +01001708 struct drm_i915_private *dev_priv = engine->i915;
Chris Wilson31bb59c2016-07-01 17:23:27 +01001709 I915_WRITE_IMR(engine, ~engine->irq_keep_mask);
Oscar Mateo73d477f2014-07-24 17:04:31 +01001710}
1711
Chris Wilson7c9cf4e2016-08-02 22:50:25 +01001712static int gen8_emit_flush(struct drm_i915_gem_request *request, u32 mode)
Oscar Mateo47122742014-07-24 17:04:28 +01001713{
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001714 u32 cmd, *cs;
Oscar Mateo47122742014-07-24 17:04:28 +01001715
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001716 cs = intel_ring_begin(request, 4);
1717 if (IS_ERR(cs))
1718 return PTR_ERR(cs);
Oscar Mateo47122742014-07-24 17:04:28 +01001719
1720 cmd = MI_FLUSH_DW + 1;
1721
Chris Wilsonf0a1fb12015-01-22 13:42:00 +00001722 /* We always require a command barrier so that subsequent
1723 * commands, such as breadcrumb interrupts, are strictly ordered
1724 * wrt the contents of the write cache being flushed to memory
1725 * (and thus being coherent from the CPU).
1726 */
1727 cmd |= MI_FLUSH_DW_STORE_INDEX | MI_FLUSH_DW_OP_STOREDW;
1728
Chris Wilson7c9cf4e2016-08-02 22:50:25 +01001729 if (mode & EMIT_INVALIDATE) {
Chris Wilsonf0a1fb12015-01-22 13:42:00 +00001730 cmd |= MI_INVALIDATE_TLB;
Chris Wilson1dae2df2016-08-02 22:50:19 +01001731 if (request->engine->id == VCS)
Chris Wilsonf0a1fb12015-01-22 13:42:00 +00001732 cmd |= MI_INVALIDATE_BSD;
Oscar Mateo47122742014-07-24 17:04:28 +01001733 }
1734
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001735 *cs++ = cmd;
1736 *cs++ = I915_GEM_HWS_SCRATCH_ADDR | MI_FLUSH_DW_USE_GTT;
1737 *cs++ = 0; /* upper addr */
1738 *cs++ = 0; /* value */
1739 intel_ring_advance(request, cs);
Oscar Mateo47122742014-07-24 17:04:28 +01001740
1741 return 0;
1742}
1743
John Harrison7deb4d32015-05-29 17:43:59 +01001744static int gen8_emit_flush_render(struct drm_i915_gem_request *request,
Chris Wilson7c9cf4e2016-08-02 22:50:25 +01001745 u32 mode)
Oscar Mateo47122742014-07-24 17:04:28 +01001746{
Chris Wilsonb5321f32016-08-02 22:50:18 +01001747 struct intel_engine_cs *engine = request->engine;
Chris Wilsonbde13eb2016-08-15 10:49:07 +01001748 u32 scratch_addr =
1749 i915_ggtt_offset(engine->scratch) + 2 * CACHELINE_BYTES;
Mika Kuoppala0b2d0932016-06-07 17:19:10 +03001750 bool vf_flush_wa = false, dc_flush_wa = false;
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001751 u32 *cs, flags = 0;
Mika Kuoppala0b2d0932016-06-07 17:19:10 +03001752 int len;
Oscar Mateo47122742014-07-24 17:04:28 +01001753
1754 flags |= PIPE_CONTROL_CS_STALL;
1755
Chris Wilson7c9cf4e2016-08-02 22:50:25 +01001756 if (mode & EMIT_FLUSH) {
Oscar Mateo47122742014-07-24 17:04:28 +01001757 flags |= PIPE_CONTROL_RENDER_TARGET_CACHE_FLUSH;
1758 flags |= PIPE_CONTROL_DEPTH_CACHE_FLUSH;
Francisco Jerez965fd602016-01-13 18:59:39 -08001759 flags |= PIPE_CONTROL_DC_FLUSH_ENABLE;
Chris Wilson40a24482015-08-21 16:08:41 +01001760 flags |= PIPE_CONTROL_FLUSH_ENABLE;
Oscar Mateo47122742014-07-24 17:04:28 +01001761 }
1762
Chris Wilson7c9cf4e2016-08-02 22:50:25 +01001763 if (mode & EMIT_INVALIDATE) {
Oscar Mateo47122742014-07-24 17:04:28 +01001764 flags |= PIPE_CONTROL_TLB_INVALIDATE;
1765 flags |= PIPE_CONTROL_INSTRUCTION_CACHE_INVALIDATE;
1766 flags |= PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE;
1767 flags |= PIPE_CONTROL_VF_CACHE_INVALIDATE;
1768 flags |= PIPE_CONTROL_CONST_CACHE_INVALIDATE;
1769 flags |= PIPE_CONTROL_STATE_CACHE_INVALIDATE;
1770 flags |= PIPE_CONTROL_QW_WRITE;
1771 flags |= PIPE_CONTROL_GLOBAL_GTT_IVB;
Oscar Mateo47122742014-07-24 17:04:28 +01001772
Ben Widawsky1a5a9ce2015-12-17 09:49:57 -08001773 /*
1774 * On GEN9: before VF_CACHE_INVALIDATE we need to emit a NULL
1775 * pipe control.
1776 */
Chris Wilsonc0336662016-05-06 15:40:21 +01001777 if (IS_GEN9(request->i915))
Ben Widawsky1a5a9ce2015-12-17 09:49:57 -08001778 vf_flush_wa = true;
Mika Kuoppala0b2d0932016-06-07 17:19:10 +03001779
1780 /* WaForGAMHang:kbl */
1781 if (IS_KBL_REVID(request->i915, 0, KBL_REVID_B0))
1782 dc_flush_wa = true;
Ben Widawsky1a5a9ce2015-12-17 09:49:57 -08001783 }
Imre Deak9647ff32015-01-25 13:27:11 -08001784
Mika Kuoppala0b2d0932016-06-07 17:19:10 +03001785 len = 6;
1786
1787 if (vf_flush_wa)
1788 len += 6;
1789
1790 if (dc_flush_wa)
1791 len += 12;
1792
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001793 cs = intel_ring_begin(request, len);
1794 if (IS_ERR(cs))
1795 return PTR_ERR(cs);
Oscar Mateo47122742014-07-24 17:04:28 +01001796
Tvrtko Ursulin9f235df2017-02-16 12:23:25 +00001797 if (vf_flush_wa)
1798 cs = gen8_emit_pipe_control(cs, 0, 0);
Imre Deak9647ff32015-01-25 13:27:11 -08001799
Tvrtko Ursulin9f235df2017-02-16 12:23:25 +00001800 if (dc_flush_wa)
1801 cs = gen8_emit_pipe_control(cs, PIPE_CONTROL_DC_FLUSH_ENABLE,
1802 0);
Mika Kuoppala0b2d0932016-06-07 17:19:10 +03001803
Tvrtko Ursulin9f235df2017-02-16 12:23:25 +00001804 cs = gen8_emit_pipe_control(cs, flags, scratch_addr);
Mika Kuoppala0b2d0932016-06-07 17:19:10 +03001805
Tvrtko Ursulin9f235df2017-02-16 12:23:25 +00001806 if (dc_flush_wa)
1807 cs = gen8_emit_pipe_control(cs, PIPE_CONTROL_CS_STALL, 0);
Mika Kuoppala0b2d0932016-06-07 17:19:10 +03001808
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001809 intel_ring_advance(request, cs);
Oscar Mateo47122742014-07-24 17:04:28 +01001810
1811 return 0;
1812}
1813
Chris Wilson7c17d372016-01-20 15:43:35 +02001814/*
1815 * Reserve space for 2 NOOPs at the end of each request to be
1816 * used as a workaround for not being allowed to do lite
1817 * restore with HEAD==TAIL (WaIdleLiteRestore).
1818 */
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001819static void gen8_emit_wa_tail(struct drm_i915_gem_request *request, u32 *cs)
Oscar Mateo4da46e12014-07-24 17:04:27 +01001820{
Chris Wilsonbeecec92017-10-03 21:34:52 +01001821 /* Ensure there's always at least one preemption point per-request. */
1822 *cs++ = MI_ARB_CHECK;
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001823 *cs++ = MI_NOOP;
1824 request->wa_tail = intel_ring_offset(request, cs);
Chris Wilsoncaddfe72016-10-28 13:58:52 +01001825}
Oscar Mateo4da46e12014-07-24 17:04:27 +01001826
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001827static void gen8_emit_breadcrumb(struct drm_i915_gem_request *request, u32 *cs)
Chris Wilsoncaddfe72016-10-28 13:58:52 +01001828{
Chris Wilson7c17d372016-01-20 15:43:35 +02001829 /* w/a: bit 5 needs to be zero for MI_FLUSH_DW address. */
1830 BUILD_BUG_ON(I915_GEM_HWS_INDEX_ADDR & (1 << 5));
Oscar Mateo4da46e12014-07-24 17:04:27 +01001831
Michał Winiarskidf77cd82017-10-25 22:00:15 +02001832 cs = gen8_emit_ggtt_write(cs, request->global_seqno,
1833 intel_hws_seqno_address(request->engine));
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001834 *cs++ = MI_USER_INTERRUPT;
1835 *cs++ = MI_NOOP;
1836 request->tail = intel_ring_offset(request, cs);
Chris Wilsoned1501d2017-03-27 14:14:12 +01001837 assert_ring_tail_valid(request->ring, request->tail);
Chris Wilsoncaddfe72016-10-28 13:58:52 +01001838
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001839 gen8_emit_wa_tail(request, cs);
Chris Wilson7c17d372016-01-20 15:43:35 +02001840}
Chris Wilson98f29e82016-10-28 13:58:51 +01001841static const int gen8_emit_breadcrumb_sz = 6 + WA_TAIL_DWORDS;
1842
Michał Winiarskidf77cd82017-10-25 22:00:15 +02001843static void gen8_emit_breadcrumb_rcs(struct drm_i915_gem_request *request,
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001844 u32 *cs)
Chris Wilson7c17d372016-01-20 15:43:35 +02001845{
Michał Winiarskice81a652016-04-12 15:51:55 +02001846 /* We're using qword write, seqno should be aligned to 8 bytes. */
1847 BUILD_BUG_ON(I915_GEM_HWS_INDEX & 1);
1848
Michał Winiarskidf77cd82017-10-25 22:00:15 +02001849 cs = gen8_emit_ggtt_write_rcs(cs, request->global_seqno,
1850 intel_hws_seqno_address(request->engine));
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001851 *cs++ = MI_USER_INTERRUPT;
1852 *cs++ = MI_NOOP;
1853 request->tail = intel_ring_offset(request, cs);
Chris Wilsoned1501d2017-03-27 14:14:12 +01001854 assert_ring_tail_valid(request->ring, request->tail);
Chris Wilsoncaddfe72016-10-28 13:58:52 +01001855
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001856 gen8_emit_wa_tail(request, cs);
Oscar Mateo4da46e12014-07-24 17:04:27 +01001857}
Michał Winiarskidf77cd82017-10-25 22:00:15 +02001858static const int gen8_emit_breadcrumb_rcs_sz = 8 + WA_TAIL_DWORDS;
Chris Wilson98f29e82016-10-28 13:58:51 +01001859
John Harrison87531812015-05-29 17:43:44 +01001860static int gen8_init_rcs_context(struct drm_i915_gem_request *req)
Thomas Daniele7778be2014-12-02 12:50:48 +00001861{
1862 int ret;
1863
Tvrtko Ursulin4ac96592017-02-14 15:00:17 +00001864 ret = intel_ring_workarounds_emit(req);
Thomas Daniele7778be2014-12-02 12:50:48 +00001865 if (ret)
1866 return ret;
1867
Peter Antoine3bbaba02015-07-10 20:13:11 +03001868 ret = intel_rcs_context_init_mocs(req);
1869 /*
1870 * Failing to program the MOCS is non-fatal.The system will not
1871 * run at peak performance. So generate an error and carry on.
1872 */
1873 if (ret)
1874 DRM_ERROR("MOCS failed to program: expect performance issues.\n");
1875
Chris Wilson4e50f082016-10-28 13:58:31 +01001876 return i915_gem_render_state_emit(req);
Thomas Daniele7778be2014-12-02 12:50:48 +00001877}
1878
Oscar Mateo73e4d072014-07-24 17:04:48 +01001879/**
1880 * intel_logical_ring_cleanup() - deallocate the Engine Command Streamer
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01001881 * @engine: Engine Command Streamer.
Oscar Mateo73e4d072014-07-24 17:04:48 +01001882 */
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001883void intel_logical_ring_cleanup(struct intel_engine_cs *engine)
Oscar Mateo454afeb2014-07-24 17:04:22 +01001884{
John Harrison6402c332014-10-31 12:00:26 +00001885 struct drm_i915_private *dev_priv;
Oscar Mateo9832b9d2014-07-24 17:04:30 +01001886
Tvrtko Ursulin27af5ee2016-04-04 12:11:56 +01001887 /*
1888 * Tasklet cannot be active at this point due intel_mark_active/idle
1889 * so this is just for documentation.
1890 */
Sagar Arun Kamblec6dce8f2017-11-16 19:02:37 +05301891 if (WARN_ON(test_bit(TASKLET_STATE_SCHED,
1892 &engine->execlists.tasklet.state)))
1893 tasklet_kill(&engine->execlists.tasklet);
Tvrtko Ursulin27af5ee2016-04-04 12:11:56 +01001894
Chris Wilsonc0336662016-05-06 15:40:21 +01001895 dev_priv = engine->i915;
John Harrison6402c332014-10-31 12:00:26 +00001896
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001897 if (engine->buffer) {
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001898 WARN_ON((I915_READ_MODE(engine) & MODE_IDLE) == 0);
Dave Gordonb0366a52015-12-08 15:02:36 +00001899 }
Oscar Mateo48d82382014-07-24 17:04:23 +01001900
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001901 if (engine->cleanup)
1902 engine->cleanup(engine);
Oscar Mateo48d82382014-07-24 17:04:23 +01001903
Chris Wilsone8a9c582016-12-18 15:37:20 +00001904 intel_engine_cleanup_common(engine);
Arun Siluvery17ee9502015-06-19 19:07:01 +01001905
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001906 lrc_destroy_wa_ctx(engine);
Chris Wilsonc0336662016-05-06 15:40:21 +01001907 engine->i915 = NULL;
Akash Goel3b3f1652016-10-13 22:44:48 +05301908 dev_priv->engine[engine->id] = NULL;
1909 kfree(engine);
Oscar Mateo454afeb2014-07-24 17:04:22 +01001910}
1911
Chris Wilsonff44ad52017-03-16 17:13:03 +00001912static void execlists_set_default_submission(struct intel_engine_cs *engine)
Chris Wilsonddd66c52016-08-02 22:50:31 +01001913{
Chris Wilsonff44ad52017-03-16 17:13:03 +00001914 engine->submit_request = execlists_submit_request;
Chris Wilson27a5f612017-09-15 18:31:00 +01001915 engine->cancel_requests = execlists_cancel_requests;
Chris Wilsonff44ad52017-03-16 17:13:03 +00001916 engine->schedule = execlists_schedule;
Sagar Arun Kamblec6dce8f2017-11-16 19:02:37 +05301917 engine->execlists.tasklet.func = execlists_submission_tasklet;
Chris Wilsonaba5e272017-10-25 15:39:41 +01001918
1919 engine->park = NULL;
1920 engine->unpark = NULL;
Tvrtko Ursulincf669b42017-11-29 10:28:05 +00001921
1922 engine->flags |= I915_ENGINE_SUPPORTS_STATS;
Chris Wilsonddd66c52016-08-02 22:50:31 +01001923}
1924
Tvrtko Ursulinc9cacf92016-01-12 17:32:34 +00001925static void
Chris Wilsone1382ef2016-05-06 15:40:20 +01001926logical_ring_default_vfuncs(struct intel_engine_cs *engine)
Tvrtko Ursulinc9cacf92016-01-12 17:32:34 +00001927{
1928 /* Default vfuncs which can be overriden by each engine. */
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001929 engine->init_hw = gen8_init_common_ring;
Chris Wilson821ed7d2016-09-09 14:11:53 +01001930 engine->reset_hw = reset_common_ring;
Chris Wilsone8a9c582016-12-18 15:37:20 +00001931
1932 engine->context_pin = execlists_context_pin;
1933 engine->context_unpin = execlists_context_unpin;
1934
Chris Wilsonf73e7392016-12-18 15:37:24 +00001935 engine->request_alloc = execlists_request_alloc;
1936
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001937 engine->emit_flush = gen8_emit_flush;
Chris Wilson9b81d552016-10-28 13:58:50 +01001938 engine->emit_breadcrumb = gen8_emit_breadcrumb;
Chris Wilson98f29e82016-10-28 13:58:51 +01001939 engine->emit_breadcrumb_sz = gen8_emit_breadcrumb_sz;
Chris Wilsonff44ad52017-03-16 17:13:03 +00001940
1941 engine->set_default_submission = execlists_set_default_submission;
Chris Wilsonddd66c52016-08-02 22:50:31 +01001942
Chris Wilson31bb59c2016-07-01 17:23:27 +01001943 engine->irq_enable = gen8_logical_ring_enable_irq;
1944 engine->irq_disable = gen8_logical_ring_disable_irq;
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001945 engine->emit_bb_start = gen8_emit_bb_start;
Tvrtko Ursulinc9cacf92016-01-12 17:32:34 +00001946}
1947
Tvrtko Ursulind9f3af92016-01-12 17:32:35 +00001948static inline void
Dave Gordonc2c7f242016-07-13 16:03:35 +01001949logical_ring_default_irqs(struct intel_engine_cs *engine)
Tvrtko Ursulind9f3af92016-01-12 17:32:35 +00001950{
Dave Gordonc2c7f242016-07-13 16:03:35 +01001951 unsigned shift = engine->irq_shift;
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001952 engine->irq_enable_mask = GT_RENDER_USER_INTERRUPT << shift;
1953 engine->irq_keep_mask = GT_CONTEXT_SWITCH_INTERRUPT << shift;
Tvrtko Ursulind9f3af92016-01-12 17:32:35 +00001954}
1955
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01001956static void
1957logical_ring_setup(struct intel_engine_cs *engine)
1958{
1959 struct drm_i915_private *dev_priv = engine->i915;
1960 enum forcewake_domains fw_domains;
1961
Tvrtko Ursulin019bf272016-07-13 16:03:41 +01001962 intel_engine_setup_common(engine);
1963
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01001964 /* Intentionally left blank. */
1965 engine->buffer = NULL;
1966
1967 fw_domains = intel_uncore_forcewake_for_reg(dev_priv,
1968 RING_ELSP(engine),
1969 FW_REG_WRITE);
1970
1971 fw_domains |= intel_uncore_forcewake_for_reg(dev_priv,
1972 RING_CONTEXT_STATUS_PTR(engine),
1973 FW_REG_READ | FW_REG_WRITE);
1974
1975 fw_domains |= intel_uncore_forcewake_for_reg(dev_priv,
1976 RING_CONTEXT_STATUS_BUF_BASE(engine),
1977 FW_REG_READ);
1978
Mika Kuoppalab620e872017-09-22 15:43:03 +03001979 engine->execlists.fw_domains = fw_domains;
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01001980
Sagar Arun Kamblec6dce8f2017-11-16 19:02:37 +05301981 tasklet_init(&engine->execlists.tasklet,
1982 execlists_submission_tasklet, (unsigned long)engine);
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01001983
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01001984 logical_ring_default_vfuncs(engine);
1985 logical_ring_default_irqs(engine);
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01001986}
1987
Daniele Ceraolo Spurio486e93f2017-09-13 09:56:02 +01001988static int logical_ring_init(struct intel_engine_cs *engine)
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01001989{
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01001990 int ret;
1991
Tvrtko Ursulin019bf272016-07-13 16:03:41 +01001992 ret = intel_engine_init_common(engine);
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01001993 if (ret)
1994 goto error;
1995
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01001996 return 0;
1997
1998error:
1999 intel_logical_ring_cleanup(engine);
2000 return ret;
2001}
2002
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +01002003int logical_render_ring_init(struct intel_engine_cs *engine)
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01002004{
2005 struct drm_i915_private *dev_priv = engine->i915;
2006 int ret;
2007
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01002008 logical_ring_setup(engine);
2009
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01002010 if (HAS_L3_DPF(dev_priv))
2011 engine->irq_keep_mask |= GT_RENDER_L3_PARITY_ERROR_INTERRUPT;
2012
2013 /* Override some for render ring. */
2014 if (INTEL_GEN(dev_priv) >= 9)
2015 engine->init_hw = gen9_init_render_ring;
2016 else
2017 engine->init_hw = gen8_init_render_ring;
2018 engine->init_context = gen8_init_rcs_context;
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01002019 engine->emit_flush = gen8_emit_flush_render;
Michał Winiarskidf77cd82017-10-25 22:00:15 +02002020 engine->emit_breadcrumb = gen8_emit_breadcrumb_rcs;
2021 engine->emit_breadcrumb_sz = gen8_emit_breadcrumb_rcs_sz;
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01002022
Chris Wilsonf51455d2017-01-10 14:47:34 +00002023 ret = intel_engine_create_scratch(engine, PAGE_SIZE);
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01002024 if (ret)
2025 return ret;
2026
2027 ret = intel_init_workaround_bb(engine);
2028 if (ret) {
2029 /*
2030 * We continue even if we fail to initialize WA batch
2031 * because we only expect rare glitches but nothing
2032 * critical to prevent us from using GPU
2033 */
2034 DRM_ERROR("WA batch buffer initialization failed: %d\n",
2035 ret);
2036 }
2037
Tvrtko Ursulind038fc72016-12-16 13:18:42 +00002038 return logical_ring_init(engine);
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01002039}
2040
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +01002041int logical_xcs_ring_init(struct intel_engine_cs *engine)
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01002042{
2043 logical_ring_setup(engine);
2044
2045 return logical_ring_init(engine);
2046}
2047
Jeff McGee0cea6502015-02-13 10:27:56 -06002048static u32
Chris Wilsonc0336662016-05-06 15:40:21 +01002049make_rpcs(struct drm_i915_private *dev_priv)
Jeff McGee0cea6502015-02-13 10:27:56 -06002050{
2051 u32 rpcs = 0;
2052
2053 /*
2054 * No explicit RPCS request is needed to ensure full
2055 * slice/subslice/EU enablement prior to Gen9.
2056 */
Chris Wilsonc0336662016-05-06 15:40:21 +01002057 if (INTEL_GEN(dev_priv) < 9)
Jeff McGee0cea6502015-02-13 10:27:56 -06002058 return 0;
2059
2060 /*
2061 * Starting in Gen9, render power gating can leave
2062 * slice/subslice/EU in a partially enabled state. We
2063 * must make an explicit request through RPCS for full
2064 * enablement.
2065 */
Imre Deak43b67992016-08-31 19:13:02 +03002066 if (INTEL_INFO(dev_priv)->sseu.has_slice_pg) {
Jeff McGee0cea6502015-02-13 10:27:56 -06002067 rpcs |= GEN8_RPCS_S_CNT_ENABLE;
Imre Deakf08a0c92016-08-31 19:13:04 +03002068 rpcs |= hweight8(INTEL_INFO(dev_priv)->sseu.slice_mask) <<
Jeff McGee0cea6502015-02-13 10:27:56 -06002069 GEN8_RPCS_S_CNT_SHIFT;
2070 rpcs |= GEN8_RPCS_ENABLE;
2071 }
2072
Imre Deak43b67992016-08-31 19:13:02 +03002073 if (INTEL_INFO(dev_priv)->sseu.has_subslice_pg) {
Jeff McGee0cea6502015-02-13 10:27:56 -06002074 rpcs |= GEN8_RPCS_SS_CNT_ENABLE;
Imre Deak57ec1712016-08-31 19:13:05 +03002075 rpcs |= hweight8(INTEL_INFO(dev_priv)->sseu.subslice_mask) <<
Jeff McGee0cea6502015-02-13 10:27:56 -06002076 GEN8_RPCS_SS_CNT_SHIFT;
2077 rpcs |= GEN8_RPCS_ENABLE;
2078 }
2079
Imre Deak43b67992016-08-31 19:13:02 +03002080 if (INTEL_INFO(dev_priv)->sseu.has_eu_pg) {
2081 rpcs |= INTEL_INFO(dev_priv)->sseu.eu_per_subslice <<
Jeff McGee0cea6502015-02-13 10:27:56 -06002082 GEN8_RPCS_EU_MIN_SHIFT;
Imre Deak43b67992016-08-31 19:13:02 +03002083 rpcs |= INTEL_INFO(dev_priv)->sseu.eu_per_subslice <<
Jeff McGee0cea6502015-02-13 10:27:56 -06002084 GEN8_RPCS_EU_MAX_SHIFT;
2085 rpcs |= GEN8_RPCS_ENABLE;
2086 }
2087
2088 return rpcs;
2089}
2090
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002091static u32 intel_lr_indirect_ctx_offset(struct intel_engine_cs *engine)
Michel Thierry71562912016-02-23 10:31:49 +00002092{
2093 u32 indirect_ctx_offset;
2094
Chris Wilsonc0336662016-05-06 15:40:21 +01002095 switch (INTEL_GEN(engine->i915)) {
Michel Thierry71562912016-02-23 10:31:49 +00002096 default:
Chris Wilsonc0336662016-05-06 15:40:21 +01002097 MISSING_CASE(INTEL_GEN(engine->i915));
Michel Thierry71562912016-02-23 10:31:49 +00002098 /* fall through */
Michel Thierry7bd0a2c2017-06-06 13:30:38 -07002099 case 10:
2100 indirect_ctx_offset =
2101 GEN10_CTX_RCS_INDIRECT_CTX_OFFSET_DEFAULT;
2102 break;
Michel Thierry71562912016-02-23 10:31:49 +00002103 case 9:
2104 indirect_ctx_offset =
2105 GEN9_CTX_RCS_INDIRECT_CTX_OFFSET_DEFAULT;
2106 break;
2107 case 8:
2108 indirect_ctx_offset =
2109 GEN8_CTX_RCS_INDIRECT_CTX_OFFSET_DEFAULT;
2110 break;
2111 }
2112
2113 return indirect_ctx_offset;
2114}
2115
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002116static void execlists_init_reg_state(u32 *regs,
Chris Wilsona3aabe82016-10-04 21:11:26 +01002117 struct i915_gem_context *ctx,
2118 struct intel_engine_cs *engine,
2119 struct intel_ring *ring)
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002120{
Chris Wilsona3aabe82016-10-04 21:11:26 +01002121 struct drm_i915_private *dev_priv = engine->i915;
2122 struct i915_hw_ppgtt *ppgtt = ctx->ppgtt ?: dev_priv->mm.aliasing_ppgtt;
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002123 u32 base = engine->mmio_base;
2124 bool rcs = engine->id == RCS;
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002125
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002126 /* A context is actually a big batch buffer with several
2127 * MI_LOAD_REGISTER_IMM commands followed by (reg, value) pairs. The
2128 * values we are setting here are only for the first context restore:
2129 * on a subsequent save, the GPU will recreate this batchbuffer with new
2130 * values (including all the missing MI_LOAD_REGISTER_IMM commands that
2131 * we are not initializing here).
2132 */
2133 regs[CTX_LRI_HEADER_0] = MI_LOAD_REGISTER_IMM(rcs ? 14 : 11) |
2134 MI_LRI_FORCE_POSTED;
2135
2136 CTX_REG(regs, CTX_CONTEXT_CONTROL, RING_CONTEXT_CONTROL(engine),
2137 _MASKED_BIT_ENABLE(CTX_CTRL_INHIBIT_SYN_CTX_SWITCH |
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002138 (HAS_RESOURCE_STREAMER(dev_priv) ?
2139 CTX_CTRL_RS_CTX_ENABLE : 0)));
2140 CTX_REG(regs, CTX_RING_HEAD, RING_HEAD(base), 0);
2141 CTX_REG(regs, CTX_RING_TAIL, RING_TAIL(base), 0);
2142 CTX_REG(regs, CTX_RING_BUFFER_START, RING_START(base), 0);
2143 CTX_REG(regs, CTX_RING_BUFFER_CONTROL, RING_CTL(base),
2144 RING_CTL_SIZE(ring->size) | RING_VALID);
2145 CTX_REG(regs, CTX_BB_HEAD_U, RING_BBADDR_UDW(base), 0);
2146 CTX_REG(regs, CTX_BB_HEAD_L, RING_BBADDR(base), 0);
2147 CTX_REG(regs, CTX_BB_STATE, RING_BBSTATE(base), RING_BB_PPGTT);
2148 CTX_REG(regs, CTX_SECOND_BB_HEAD_U, RING_SBBADDR_UDW(base), 0);
2149 CTX_REG(regs, CTX_SECOND_BB_HEAD_L, RING_SBBADDR(base), 0);
2150 CTX_REG(regs, CTX_SECOND_BB_STATE, RING_SBBSTATE(base), 0);
2151 if (rcs) {
Chris Wilson604a8f62017-09-21 14:54:43 +01002152 struct i915_ctx_workarounds *wa_ctx = &engine->wa_ctx;
2153
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002154 CTX_REG(regs, CTX_RCS_INDIRECT_CTX, RING_INDIRECT_CTX(base), 0);
2155 CTX_REG(regs, CTX_RCS_INDIRECT_CTX_OFFSET,
2156 RING_INDIRECT_CTX_OFFSET(base), 0);
Chris Wilson604a8f62017-09-21 14:54:43 +01002157 if (wa_ctx->indirect_ctx.size) {
Chris Wilsonbde13eb2016-08-15 10:49:07 +01002158 u32 ggtt_offset = i915_ggtt_offset(wa_ctx->vma);
Arun Siluvery17ee9502015-06-19 19:07:01 +01002159
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002160 regs[CTX_RCS_INDIRECT_CTX + 1] =
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00002161 (ggtt_offset + wa_ctx->indirect_ctx.offset) |
2162 (wa_ctx->indirect_ctx.size / CACHELINE_BYTES);
Arun Siluvery17ee9502015-06-19 19:07:01 +01002163
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002164 regs[CTX_RCS_INDIRECT_CTX_OFFSET + 1] =
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002165 intel_lr_indirect_ctx_offset(engine) << 6;
Chris Wilson604a8f62017-09-21 14:54:43 +01002166 }
2167
2168 CTX_REG(regs, CTX_BB_PER_CTX_PTR, RING_BB_PER_CTX_PTR(base), 0);
2169 if (wa_ctx->per_ctx.size) {
2170 u32 ggtt_offset = i915_ggtt_offset(wa_ctx->vma);
Arun Siluvery17ee9502015-06-19 19:07:01 +01002171
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002172 regs[CTX_BB_PER_CTX_PTR + 1] =
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00002173 (ggtt_offset + wa_ctx->per_ctx.offset) | 0x01;
Arun Siluvery17ee9502015-06-19 19:07:01 +01002174 }
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002175 }
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002176
2177 regs[CTX_LRI_HEADER_1] = MI_LOAD_REGISTER_IMM(9) | MI_LRI_FORCE_POSTED;
2178
2179 CTX_REG(regs, CTX_CTX_TIMESTAMP, RING_CTX_TIMESTAMP(base), 0);
Ville Syrjälä0d925ea2015-11-04 23:20:11 +02002180 /* PDP values well be assigned later if needed */
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002181 CTX_REG(regs, CTX_PDP3_UDW, GEN8_RING_PDP_UDW(engine, 3), 0);
2182 CTX_REG(regs, CTX_PDP3_LDW, GEN8_RING_PDP_LDW(engine, 3), 0);
2183 CTX_REG(regs, CTX_PDP2_UDW, GEN8_RING_PDP_UDW(engine, 2), 0);
2184 CTX_REG(regs, CTX_PDP2_LDW, GEN8_RING_PDP_LDW(engine, 2), 0);
2185 CTX_REG(regs, CTX_PDP1_UDW, GEN8_RING_PDP_UDW(engine, 1), 0);
2186 CTX_REG(regs, CTX_PDP1_LDW, GEN8_RING_PDP_LDW(engine, 1), 0);
2187 CTX_REG(regs, CTX_PDP0_UDW, GEN8_RING_PDP_UDW(engine, 0), 0);
2188 CTX_REG(regs, CTX_PDP0_LDW, GEN8_RING_PDP_LDW(engine, 0), 0);
Michel Thierryd7b26332015-04-08 12:13:34 +01002189
Chris Wilson949e8ab2017-02-09 14:40:36 +00002190 if (ppgtt && i915_vm_is_48bit(&ppgtt->base)) {
Michel Thierry2dba3232015-07-30 11:06:23 +01002191 /* 64b PPGTT (48bit canonical)
2192 * PDP0_DESCRIPTOR contains the base address to PML4 and
2193 * other PDP Descriptors are ignored.
2194 */
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002195 ASSIGN_CTX_PML4(ppgtt, regs);
Michel Thierry2dba3232015-07-30 11:06:23 +01002196 }
2197
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002198 if (rcs) {
2199 regs[CTX_LRI_HEADER_2] = MI_LOAD_REGISTER_IMM(1);
2200 CTX_REG(regs, CTX_R_PWR_CLK_STATE, GEN8_R_PWR_CLK_STATE,
2201 make_rpcs(dev_priv));
Robert Bragg19f81df2017-06-13 12:23:03 +01002202
2203 i915_oa_init_reg_state(engine, ctx, regs);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002204 }
Chris Wilsona3aabe82016-10-04 21:11:26 +01002205}
2206
2207static int
2208populate_lr_context(struct i915_gem_context *ctx,
2209 struct drm_i915_gem_object *ctx_obj,
2210 struct intel_engine_cs *engine,
2211 struct intel_ring *ring)
2212{
2213 void *vaddr;
Chris Wilsond2b4b972017-11-10 14:26:33 +00002214 u32 *regs;
Chris Wilsona3aabe82016-10-04 21:11:26 +01002215 int ret;
2216
2217 ret = i915_gem_object_set_to_cpu_domain(ctx_obj, true);
2218 if (ret) {
2219 DRM_DEBUG_DRIVER("Could not set to CPU domain\n");
2220 return ret;
2221 }
2222
2223 vaddr = i915_gem_object_pin_map(ctx_obj, I915_MAP_WB);
2224 if (IS_ERR(vaddr)) {
2225 ret = PTR_ERR(vaddr);
2226 DRM_DEBUG_DRIVER("Could not map object pages! (%d)\n", ret);
2227 return ret;
2228 }
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002229 ctx_obj->mm.dirty = true;
Chris Wilsona3aabe82016-10-04 21:11:26 +01002230
Chris Wilsond2b4b972017-11-10 14:26:33 +00002231 if (engine->default_state) {
2232 /*
2233 * We only want to copy over the template context state;
2234 * skipping over the headers reserved for GuC communication,
2235 * leaving those as zero.
2236 */
2237 const unsigned long start = LRC_HEADER_PAGES * PAGE_SIZE;
2238 void *defaults;
2239
2240 defaults = i915_gem_object_pin_map(engine->default_state,
2241 I915_MAP_WB);
2242 if (IS_ERR(defaults))
2243 return PTR_ERR(defaults);
2244
2245 memcpy(vaddr + start, defaults + start, engine->context_size);
2246 i915_gem_object_unpin_map(engine->default_state);
2247 }
2248
Chris Wilsona3aabe82016-10-04 21:11:26 +01002249 /* The second page of the context object contains some fields which must
2250 * be set up prior to the first execution. */
Chris Wilsond2b4b972017-11-10 14:26:33 +00002251 regs = vaddr + LRC_STATE_PN * PAGE_SIZE;
2252 execlists_init_reg_state(regs, ctx, engine, ring);
2253 if (!engine->default_state)
2254 regs[CTX_CONTEXT_CONTROL + 1] |=
2255 _MASKED_BIT_ENABLE(CTX_CTRL_ENGINE_CTX_RESTORE_INHIBIT);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002256
Tvrtko Ursulin7d774ca2016-04-12 15:40:42 +01002257 i915_gem_object_unpin_map(ctx_obj);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002258
2259 return 0;
2260}
2261
Chris Wilsone2efd132016-05-24 14:53:34 +01002262static int execlists_context_deferred_alloc(struct i915_gem_context *ctx,
Chris Wilson978f1e02016-04-28 09:56:54 +01002263 struct intel_engine_cs *engine)
Oscar Mateoede7d422014-07-24 17:04:12 +01002264{
Oscar Mateo8c8579172014-07-24 17:04:14 +01002265 struct drm_i915_gem_object *ctx_obj;
Chris Wilson9021ad02016-05-24 14:53:37 +01002266 struct intel_context *ce = &ctx->engine[engine->id];
Chris Wilsonbf3783e2016-08-15 10:48:54 +01002267 struct i915_vma *vma;
Oscar Mateo8c8579172014-07-24 17:04:14 +01002268 uint32_t context_size;
Chris Wilson7e37f882016-08-02 22:50:21 +01002269 struct intel_ring *ring;
Oscar Mateo8c8579172014-07-24 17:04:14 +01002270 int ret;
2271
Chris Wilson9021ad02016-05-24 14:53:37 +01002272 WARN_ON(ce->state);
Oscar Mateoede7d422014-07-24 17:04:12 +01002273
Joonas Lahtinen63ffbcd2017-04-28 10:53:36 +03002274 context_size = round_up(engine->context_size, I915_GTT_PAGE_SIZE);
Oscar Mateo8c8579172014-07-24 17:04:14 +01002275
Michel Thierry0b29c752017-09-13 09:56:00 +01002276 /*
2277 * Before the actual start of the context image, we insert a few pages
2278 * for our own use and for sharing with the GuC.
2279 */
2280 context_size += LRC_HEADER_PAGES * PAGE_SIZE;
Alex Daid1675192015-08-12 15:43:43 +01002281
Tvrtko Ursulin12d79d72016-12-01 14:16:37 +00002282 ctx_obj = i915_gem_object_create(ctx->i915, context_size);
Chris Wilsonfe3db792016-04-25 13:32:13 +01002283 if (IS_ERR(ctx_obj)) {
Dan Carpenter3126a662015-04-30 17:30:50 +03002284 DRM_DEBUG_DRIVER("Alloc LRC backing obj failed.\n");
Chris Wilsonfe3db792016-04-25 13:32:13 +01002285 return PTR_ERR(ctx_obj);
Oscar Mateo8c8579172014-07-24 17:04:14 +01002286 }
2287
Chris Wilsona01cb372017-01-16 15:21:30 +00002288 vma = i915_vma_instance(ctx_obj, &ctx->i915->ggtt.base, NULL);
Chris Wilsonbf3783e2016-08-15 10:48:54 +01002289 if (IS_ERR(vma)) {
2290 ret = PTR_ERR(vma);
2291 goto error_deref_obj;
2292 }
2293
Chris Wilson7e37f882016-08-02 22:50:21 +01002294 ring = intel_engine_create_ring(engine, ctx->ring_size);
Chris Wilsondca33ec2016-08-02 22:50:20 +01002295 if (IS_ERR(ring)) {
2296 ret = PTR_ERR(ring);
Nick Hoathe84fe802015-09-11 12:53:46 +01002297 goto error_deref_obj;
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002298 }
2299
Chris Wilsondca33ec2016-08-02 22:50:20 +01002300 ret = populate_lr_context(ctx, ctx_obj, engine, ring);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002301 if (ret) {
2302 DRM_DEBUG_DRIVER("Failed to populate LRC: %d\n", ret);
Chris Wilsondca33ec2016-08-02 22:50:20 +01002303 goto error_ring_free;
Oscar Mateo84c23772014-07-24 17:04:15 +01002304 }
2305
Chris Wilsondca33ec2016-08-02 22:50:20 +01002306 ce->ring = ring;
Chris Wilsonbf3783e2016-08-15 10:48:54 +01002307 ce->state = vma;
Oscar Mateoede7d422014-07-24 17:04:12 +01002308
2309 return 0;
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002310
Chris Wilsondca33ec2016-08-02 22:50:20 +01002311error_ring_free:
Chris Wilson7e37f882016-08-02 22:50:21 +01002312 intel_ring_free(ring);
Nick Hoathe84fe802015-09-11 12:53:46 +01002313error_deref_obj:
Chris Wilsonf8c417c2016-07-20 13:31:53 +01002314 i915_gem_object_put(ctx_obj);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002315 return ret;
Oscar Mateoede7d422014-07-24 17:04:12 +01002316}
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002317
Chris Wilson821ed7d2016-09-09 14:11:53 +01002318void intel_lr_context_resume(struct drm_i915_private *dev_priv)
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002319{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00002320 struct intel_engine_cs *engine;
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002321 struct i915_gem_context *ctx;
Akash Goel3b3f1652016-10-13 22:44:48 +05302322 enum intel_engine_id id;
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002323
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002324 /* Because we emit WA_TAIL_DWORDS there may be a disparity
2325 * between our bookkeeping in ce->ring->head and ce->ring->tail and
2326 * that stored in context. As we only write new commands from
2327 * ce->ring->tail onwards, everything before that is junk. If the GPU
2328 * starts reading from its RING_HEAD from the context, it may try to
2329 * execute that junk and die.
2330 *
2331 * So to avoid that we reset the context images upon resume. For
2332 * simplicity, we just zero everything out.
2333 */
Chris Wilson829a0af2017-06-20 12:05:45 +01002334 list_for_each_entry(ctx, &dev_priv->contexts.list, link) {
Akash Goel3b3f1652016-10-13 22:44:48 +05302335 for_each_engine(engine, dev_priv, id) {
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002336 struct intel_context *ce = &ctx->engine[engine->id];
2337 u32 *reg;
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002338
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002339 if (!ce->state)
2340 continue;
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002341
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002342 reg = i915_gem_object_pin_map(ce->state->obj,
2343 I915_MAP_WB);
2344 if (WARN_ON(IS_ERR(reg)))
2345 continue;
Tvrtko Ursulin7d774ca2016-04-12 15:40:42 +01002346
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002347 reg += LRC_STATE_PN * PAGE_SIZE / sizeof(*reg);
2348 reg[CTX_RING_HEAD+1] = 0;
2349 reg[CTX_RING_TAIL+1] = 0;
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002350
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002351 ce->state->obj->mm.dirty = true;
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002352 i915_gem_object_unpin_map(ce->state->obj);
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002353
Chris Wilsone6ba9992017-04-25 14:00:49 +01002354 intel_ring_reset(ce->ring, 0);
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002355 }
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002356 }
2357}