blob: 570864583e283a58449b0fb01f4fd1440ec31497 [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 Wilsonbbd6c472016-09-09 14:11:45 +0100434 u32 __iomem *elsp =
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100435 engine->i915->regs + i915_mmio_reg_offset(RING_ELSP(engine));
436 unsigned int n;
Chris Wilsonbbd6c472016-09-09 14:11:45 +0100437
Mika Kuoppala76e70082017-09-22 15:43:07 +0300438 for (n = execlists_num_ports(&engine->execlists); n--; ) {
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100439 struct drm_i915_gem_request *rq;
440 unsigned int count;
441 u64 desc;
Chris Wilson70c2a242016-09-09 14:11:46 +0100442
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100443 rq = port_unpack(&port[n], &count);
444 if (rq) {
445 GEM_BUG_ON(count > !n);
446 if (!count++)
Tvrtko Ursulin73fd9d32017-11-21 18:18:47 +0000447 execlists_context_schedule_in(rq);
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100448 port_set(&port[n], port_pack(rq, count));
449 desc = execlists_update_context(rq);
450 GEM_DEBUG_EXEC(port[n].context_id = upper_32_bits(desc));
Chris Wilsonbccd3b82017-11-09 14:30:19 +0000451
452 GEM_TRACE("%s in[%d]: ctx=%d.%d, seqno=%x\n",
453 engine->name, n,
454 rq->ctx->hw_id, count,
455 rq->global_seqno);
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100456 } else {
457 GEM_BUG_ON(!n);
458 desc = 0;
459 }
460
Chris Wilsonbeecec92017-10-03 21:34:52 +0100461 elsp_write(desc, elsp);
Chris Wilsonbbd6c472016-09-09 14:11:45 +0100462 }
Michel Thierryba74cb12017-11-20 12:34:58 +0000463 execlists_clear_active(&engine->execlists, EXECLISTS_ACTIVE_HWACK);
Chris Wilsonbbd6c472016-09-09 14:11:45 +0100464}
465
Chris Wilson70c2a242016-09-09 14:11:46 +0100466static bool ctx_single_port_submission(const struct i915_gem_context *ctx)
Ben Widawsky84b790f2014-07-24 17:04:36 +0100467{
Chris Wilson70c2a242016-09-09 14:11:46 +0100468 return (IS_ENABLED(CONFIG_DRM_I915_GVT) &&
Chris Wilson60958682016-12-31 11:20:11 +0000469 i915_gem_context_force_single_submission(ctx));
Ben Widawsky84b790f2014-07-24 17:04:36 +0100470}
471
Chris Wilson70c2a242016-09-09 14:11:46 +0100472static bool can_merge_ctx(const struct i915_gem_context *prev,
473 const struct i915_gem_context *next)
Michel Thierryacdd8842014-07-24 17:04:38 +0100474{
Chris Wilson70c2a242016-09-09 14:11:46 +0100475 if (prev != next)
476 return false;
Thomas Daniele981e7b2014-07-24 17:04:39 +0100477
Chris Wilson70c2a242016-09-09 14:11:46 +0100478 if (ctx_single_port_submission(prev))
479 return false;
Michel Thierryacdd8842014-07-24 17:04:38 +0100480
Chris Wilson70c2a242016-09-09 14:11:46 +0100481 return true;
482}
Peter Antoine779949f2015-05-11 16:03:27 +0100483
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100484static void port_assign(struct execlist_port *port,
485 struct drm_i915_gem_request *rq)
486{
487 GEM_BUG_ON(rq == port_request(port));
488
489 if (port_isset(port))
490 i915_gem_request_put(port_request(port));
491
492 port_set(port, port_pack(i915_gem_request_get(rq), port_count(port)));
493}
494
Chris Wilsonbeecec92017-10-03 21:34:52 +0100495static void inject_preempt_context(struct intel_engine_cs *engine)
496{
497 struct intel_context *ce =
498 &engine->i915->preempt_context->engine[engine->id];
499 u32 __iomem *elsp =
500 engine->i915->regs + i915_mmio_reg_offset(RING_ELSP(engine));
501 unsigned int n;
502
503 GEM_BUG_ON(engine->i915->preempt_context->hw_id != PREEMPT_ID);
504 GEM_BUG_ON(!IS_ALIGNED(ce->ring->size, WA_TAIL_BYTES));
505
506 memset(ce->ring->vaddr + ce->ring->tail, 0, WA_TAIL_BYTES);
507 ce->ring->tail += WA_TAIL_BYTES;
508 ce->ring->tail &= (ce->ring->size - 1);
509 ce->lrc_reg_state[CTX_RING_TAIL+1] = ce->ring->tail;
510
Chris Wilsonbccd3b82017-11-09 14:30:19 +0000511 GEM_TRACE("\n");
Chris Wilsonbeecec92017-10-03 21:34:52 +0100512 for (n = execlists_num_ports(&engine->execlists); --n; )
513 elsp_write(0, elsp);
514
515 elsp_write(ce->lrc_desc, elsp);
Michel Thierryba74cb12017-11-20 12:34:58 +0000516 execlists_clear_active(&engine->execlists, EXECLISTS_ACTIVE_HWACK);
Chris Wilsonbeecec92017-10-03 21:34:52 +0100517}
518
Chris Wilson70c2a242016-09-09 14:11:46 +0100519static void execlists_dequeue(struct intel_engine_cs *engine)
520{
Mika Kuoppala7a62cc62017-09-22 15:43:06 +0300521 struct intel_engine_execlists * const execlists = &engine->execlists;
522 struct execlist_port *port = execlists->port;
Mika Kuoppala76e70082017-09-22 15:43:07 +0300523 const struct execlist_port * const last_port =
524 &execlists->port[execlists->port_mask];
Chris Wilsonbeecec92017-10-03 21:34:52 +0100525 struct drm_i915_gem_request *last = port_request(port);
Chris Wilson20311bd2016-11-14 20:41:03 +0000526 struct rb_node *rb;
Chris Wilson70c2a242016-09-09 14:11:46 +0100527 bool submit = false;
Michel Thierryacdd8842014-07-24 17:04:38 +0100528
Chris Wilson70c2a242016-09-09 14:11:46 +0100529 /* Hardware submission is through 2 ports. Conceptually each port
530 * has a (RING_START, RING_HEAD, RING_TAIL) tuple. RING_START is
531 * static for a context, and unique to each, so we only execute
532 * requests belonging to a single context from each ring. RING_HEAD
533 * is maintained by the CS in the context image, it marks the place
534 * where it got up to last time, and through RING_TAIL we tell the CS
535 * where we want to execute up to this time.
536 *
537 * In this list the requests are in order of execution. Consecutive
538 * requests from the same context are adjacent in the ringbuffer. We
539 * can combine these requests into a single RING_TAIL update:
540 *
541 * RING_HEAD...req1...req2
542 * ^- RING_TAIL
543 * since to execute req2 the CS must first execute req1.
544 *
545 * Our goal then is to point each port to the end of a consecutive
546 * sequence of requests as being the most optimal (fewest wake ups
547 * and context switches) submission.
548 */
549
Tvrtko Ursulin9f7886d2017-03-21 10:55:11 +0000550 spin_lock_irq(&engine->timeline->lock);
Mika Kuoppala7a62cc62017-09-22 15:43:06 +0300551 rb = execlists->first;
552 GEM_BUG_ON(rb_first(&execlists->queue) != rb);
Chris Wilsonbeecec92017-10-03 21:34:52 +0100553 if (!rb)
554 goto unlock;
555
556 if (last) {
557 /*
558 * Don't resubmit or switch until all outstanding
559 * preemptions (lite-restore) are seen. Then we
560 * know the next preemption status we see corresponds
561 * to this ELSP update.
562 */
Michel Thierryba74cb12017-11-20 12:34:58 +0000563 GEM_BUG_ON(!port_count(&port[0]));
Chris Wilsonbeecec92017-10-03 21:34:52 +0100564 if (port_count(&port[0]) > 1)
565 goto unlock;
566
Michel Thierryba74cb12017-11-20 12:34:58 +0000567 /*
568 * If we write to ELSP a second time before the HW has had
569 * a chance to respond to the previous write, we can confuse
570 * the HW and hit "undefined behaviour". After writing to ELSP,
571 * we must then wait until we see a context-switch event from
572 * the HW to indicate that it has had a chance to respond.
573 */
574 if (!execlists_is_active(execlists, EXECLISTS_ACTIVE_HWACK))
575 goto unlock;
576
Michał Winiarskia4598d12017-10-25 22:00:18 +0200577 if (HAS_LOGICAL_RING_PREEMPTION(engine->i915) &&
Chris Wilsonbeecec92017-10-03 21:34:52 +0100578 rb_entry(rb, struct i915_priolist, node)->priority >
579 max(last->priotree.priority, 0)) {
580 /*
581 * Switch to our empty preempt context so
582 * the state of the GPU is known (idle).
583 */
584 inject_preempt_context(engine);
Chris Wilson4a118ec2017-10-23 22:32:36 +0100585 execlists_set_active(execlists,
586 EXECLISTS_ACTIVE_PREEMPT);
Chris Wilsonbeecec92017-10-03 21:34:52 +0100587 goto unlock;
588 } else {
589 /*
590 * In theory, we could coalesce more requests onto
591 * the second port (the first port is active, with
592 * no preemptions pending). However, that means we
593 * then have to deal with the possible lite-restore
594 * of the second port (as we submit the ELSP, there
595 * may be a context-switch) but also we may complete
596 * the resubmission before the context-switch. Ergo,
597 * coalescing onto the second port will cause a
598 * preemption event, but we cannot predict whether
599 * that will affect port[0] or port[1].
600 *
601 * If the second port is already active, we can wait
602 * until the next context-switch before contemplating
603 * new requests. The GPU will be busy and we should be
604 * able to resubmit the new ELSP before it idles,
605 * avoiding pipeline bubbles (momentary pauses where
606 * the driver is unable to keep up the supply of new
607 * work).
608 */
609 if (port_count(&port[1]))
610 goto unlock;
611
612 /* WaIdleLiteRestore:bdw,skl
613 * Apply the wa NOOPs to prevent
614 * ring:HEAD == req:TAIL as we resubmit the
615 * request. See gen8_emit_breadcrumb() for
616 * where we prepare the padding after the
617 * end of the request.
618 */
619 last->tail = last->wa_tail;
620 }
621 }
622
623 do {
Chris Wilson6c067572017-05-17 13:10:03 +0100624 struct i915_priolist *p = rb_entry(rb, typeof(*p), node);
625 struct drm_i915_gem_request *rq, *rn;
Chris Wilson20311bd2016-11-14 20:41:03 +0000626
Chris Wilson6c067572017-05-17 13:10:03 +0100627 list_for_each_entry_safe(rq, rn, &p->requests, priotree.link) {
628 /*
629 * Can we combine this request with the current port?
630 * It has to be the same context/ringbuffer and not
631 * have any exceptions (e.g. GVT saying never to
632 * combine contexts).
633 *
634 * If we can combine the requests, we can execute both
635 * by updating the RING_TAIL to point to the end of the
636 * second request, and so we never need to tell the
637 * hardware about the first.
Chris Wilson70c2a242016-09-09 14:11:46 +0100638 */
Chris Wilson6c067572017-05-17 13:10:03 +0100639 if (last && !can_merge_ctx(rq->ctx, last->ctx)) {
640 /*
641 * If we are on the second port and cannot
642 * combine this request with the last, then we
643 * are done.
644 */
Mika Kuoppala76e70082017-09-22 15:43:07 +0300645 if (port == last_port) {
Chris Wilson6c067572017-05-17 13:10:03 +0100646 __list_del_many(&p->requests,
647 &rq->priotree.link);
648 goto done;
649 }
Chris Wilson70c2a242016-09-09 14:11:46 +0100650
Chris Wilson6c067572017-05-17 13:10:03 +0100651 /*
652 * If GVT overrides us we only ever submit
653 * port[0], leaving port[1] empty. Note that we
654 * also have to be careful that we don't queue
655 * the same context (even though a different
656 * request) to the second port.
657 */
658 if (ctx_single_port_submission(last->ctx) ||
659 ctx_single_port_submission(rq->ctx)) {
660 __list_del_many(&p->requests,
661 &rq->priotree.link);
662 goto done;
663 }
Chris Wilson70c2a242016-09-09 14:11:46 +0100664
Chris Wilson6c067572017-05-17 13:10:03 +0100665 GEM_BUG_ON(last->ctx == rq->ctx);
Chris Wilson70c2a242016-09-09 14:11:46 +0100666
Chris Wilson6c067572017-05-17 13:10:03 +0100667 if (submit)
668 port_assign(port, last);
669 port++;
Mika Kuoppala7a62cc62017-09-22 15:43:06 +0300670
671 GEM_BUG_ON(port_isset(port));
Chris Wilson6c067572017-05-17 13:10:03 +0100672 }
673
674 INIT_LIST_HEAD(&rq->priotree.link);
Chris Wilson6c067572017-05-17 13:10:03 +0100675 __i915_gem_request_submit(rq);
Mika Kuoppala7a62cc62017-09-22 15:43:06 +0300676 trace_i915_gem_request_in(rq, port_index(port, execlists));
Chris Wilson6c067572017-05-17 13:10:03 +0100677 last = rq;
678 submit = true;
Chris Wilson70c2a242016-09-09 14:11:46 +0100679 }
Chris Wilsond55ac5b2016-11-14 20:40:59 +0000680
Chris Wilson20311bd2016-11-14 20:41:03 +0000681 rb = rb_next(rb);
Mika Kuoppala7a62cc62017-09-22 15:43:06 +0300682 rb_erase(&p->node, &execlists->queue);
Chris Wilson6c067572017-05-17 13:10:03 +0100683 INIT_LIST_HEAD(&p->requests);
684 if (p->priority != I915_PRIORITY_NORMAL)
Chris Wilsonc5cf9a92017-05-17 13:10:04 +0100685 kmem_cache_free(engine->i915->priorities, p);
Chris Wilsonbeecec92017-10-03 21:34:52 +0100686 } while (rb);
Chris Wilson6c067572017-05-17 13:10:03 +0100687done:
Mika Kuoppala7a62cc62017-09-22 15:43:06 +0300688 execlists->first = rb;
Chris Wilson6c067572017-05-17 13:10:03 +0100689 if (submit)
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100690 port_assign(port, last);
Chris Wilsonbeecec92017-10-03 21:34:52 +0100691unlock:
Tvrtko Ursulin9f7886d2017-03-21 10:55:11 +0000692 spin_unlock_irq(&engine->timeline->lock);
Chris Wilson70c2a242016-09-09 14:11:46 +0100693
Chris Wilson4a118ec2017-10-23 22:32:36 +0100694 if (submit) {
695 execlists_set_active(execlists, EXECLISTS_ACTIVE_USER);
Chris Wilson70c2a242016-09-09 14:11:46 +0100696 execlists_submit_ports(engine);
Chris Wilson4a118ec2017-10-23 22:32:36 +0100697 }
Michel Thierryacdd8842014-07-24 17:04:38 +0100698}
699
Michał Winiarskic41937f2017-10-26 15:35:58 +0200700void
Michał Winiarskia4598d12017-10-25 22:00:18 +0200701execlists_cancel_port_requests(struct intel_engine_execlists * const execlists)
Mika Kuoppalacf4591d2017-09-22 15:43:05 +0300702{
Chris Wilson3f9e6cd2017-09-25 13:49:27 +0100703 struct execlist_port *port = execlists->port;
Mika Kuoppaladc2279e2017-10-10 14:48:57 +0300704 unsigned int num_ports = execlists_num_ports(execlists);
Mika Kuoppalacf4591d2017-09-22 15:43:05 +0300705
Chris Wilson3f9e6cd2017-09-25 13:49:27 +0100706 while (num_ports-- && port_isset(port)) {
Chris Wilson7e44fc22017-09-26 11:17:19 +0100707 struct drm_i915_gem_request *rq = port_request(port);
708
Chris Wilson4a118ec2017-10-23 22:32:36 +0100709 GEM_BUG_ON(!execlists->active);
Tvrtko Ursulin30e17b72017-11-21 18:18:48 +0000710 intel_engine_context_out(rq->engine);
Chris Wilsond6c05112017-10-03 21:34:47 +0100711 execlists_context_status_change(rq, INTEL_CONTEXT_SCHEDULE_PREEMPTED);
Chris Wilson7e44fc22017-09-26 11:17:19 +0100712 i915_gem_request_put(rq);
713
Chris Wilson3f9e6cd2017-09-25 13:49:27 +0100714 memset(port, 0, sizeof(*port));
715 port++;
716 }
Mika Kuoppalacf4591d2017-09-22 15:43:05 +0300717}
718
Chris Wilson27a5f612017-09-15 18:31:00 +0100719static void execlists_cancel_requests(struct intel_engine_cs *engine)
720{
Mika Kuoppalab620e872017-09-22 15:43:03 +0300721 struct intel_engine_execlists * const execlists = &engine->execlists;
Chris Wilson27a5f612017-09-15 18:31:00 +0100722 struct drm_i915_gem_request *rq, *rn;
723 struct rb_node *rb;
724 unsigned long flags;
Chris Wilson27a5f612017-09-15 18:31:00 +0100725
726 spin_lock_irqsave(&engine->timeline->lock, flags);
727
728 /* Cancel the requests on the HW and clear the ELSP tracker. */
Michał Winiarskia4598d12017-10-25 22:00:18 +0200729 execlists_cancel_port_requests(execlists);
Chris Wilson27a5f612017-09-15 18:31:00 +0100730
731 /* Mark all executing requests as skipped. */
732 list_for_each_entry(rq, &engine->timeline->requests, link) {
733 GEM_BUG_ON(!rq->global_seqno);
734 if (!i915_gem_request_completed(rq))
735 dma_fence_set_error(&rq->fence, -EIO);
736 }
737
738 /* Flush the queued requests to the timeline list (for retiring). */
Mika Kuoppalab620e872017-09-22 15:43:03 +0300739 rb = execlists->first;
Chris Wilson27a5f612017-09-15 18:31:00 +0100740 while (rb) {
741 struct i915_priolist *p = rb_entry(rb, typeof(*p), node);
742
743 list_for_each_entry_safe(rq, rn, &p->requests, priotree.link) {
744 INIT_LIST_HEAD(&rq->priotree.link);
Chris Wilson27a5f612017-09-15 18:31:00 +0100745
746 dma_fence_set_error(&rq->fence, -EIO);
747 __i915_gem_request_submit(rq);
748 }
749
750 rb = rb_next(rb);
Mika Kuoppalab620e872017-09-22 15:43:03 +0300751 rb_erase(&p->node, &execlists->queue);
Chris Wilson27a5f612017-09-15 18:31:00 +0100752 INIT_LIST_HEAD(&p->requests);
753 if (p->priority != I915_PRIORITY_NORMAL)
754 kmem_cache_free(engine->i915->priorities, p);
755 }
756
757 /* Remaining _unready_ requests will be nop'ed when submitted */
758
Mika Kuoppalacf4591d2017-09-22 15:43:05 +0300759
Mika Kuoppalab620e872017-09-22 15:43:03 +0300760 execlists->queue = RB_ROOT;
761 execlists->first = NULL;
Chris Wilson3f9e6cd2017-09-25 13:49:27 +0100762 GEM_BUG_ON(port_isset(execlists->port));
Chris Wilson27a5f612017-09-15 18:31:00 +0100763
764 /*
765 * The port is checked prior to scheduling a tasklet, but
766 * just in case we have suspended the tasklet to do the
767 * wedging make sure that when it wakes, it decides there
768 * is no work to do by clearing the irq_posted bit.
769 */
770 clear_bit(ENGINE_IRQ_EXECLIST, &engine->irq_posted);
771
772 spin_unlock_irqrestore(&engine->timeline->lock, flags);
773}
774
Daniel Vetter6e5248b2016-07-15 21:48:06 +0200775/*
Oscar Mateo73e4d072014-07-24 17:04:48 +0100776 * Check the unread Context Status Buffers and manage the submission of new
777 * contexts to the ELSP accordingly.
778 */
Sagar Arun Kamblec6dce8f2017-11-16 19:02:37 +0530779static void execlists_submission_tasklet(unsigned long data)
Thomas Daniele981e7b2014-07-24 17:04:39 +0100780{
Mika Kuoppalab620e872017-09-22 15:43:03 +0300781 struct intel_engine_cs * const engine = (struct intel_engine_cs *)data;
782 struct intel_engine_execlists * const execlists = &engine->execlists;
Chris Wilsonbeecec92017-10-03 21:34:52 +0100783 struct execlist_port * const port = execlists->port;
Chris Wilsonc0336662016-05-06 15:40:21 +0100784 struct drm_i915_private *dev_priv = engine->i915;
Thomas Daniele981e7b2014-07-24 17:04:39 +0100785
Chris Wilson48921262017-04-11 18:58:50 +0100786 /* We can skip acquiring intel_runtime_pm_get() here as it was taken
787 * on our behalf by the request (see i915_gem_mark_busy()) and it will
788 * not be relinquished until the device is idle (see
789 * i915_gem_idle_work_handler()). As a precaution, we make sure
790 * that all ELSP are drained i.e. we have processed the CSB,
791 * before allowing ourselves to idle and calling intel_runtime_pm_put().
792 */
793 GEM_BUG_ON(!dev_priv->gt.awake);
794
Mika Kuoppalab620e872017-09-22 15:43:03 +0300795 intel_uncore_forcewake_get(dev_priv, execlists->fw_domains);
Tvrtko Ursulinc6a2ac72016-02-26 16:58:32 +0000796
Chris Wilson899f6202017-03-21 11:33:20 +0000797 /* Prefer doing test_and_clear_bit() as a two stage operation to avoid
798 * imposing the cost of a locked atomic transaction when submitting a
799 * new request (outside of the context-switch interrupt).
800 */
801 while (test_bit(ENGINE_IRQ_EXECLIST, &engine->irq_posted)) {
Chris Wilson6d2cb5a2017-09-13 14:35:34 +0100802 /* The HWSP contains a (cacheable) mirror of the CSB */
803 const u32 *buf =
804 &engine->status_page.page_addr[I915_HWS_CSB_BUF0_INDEX];
Chris Wilson4af0d722017-03-25 20:10:53 +0000805 unsigned int head, tail;
Thomas Daniele981e7b2014-07-24 17:04:39 +0100806
Mika Kuoppalab620e872017-09-22 15:43:03 +0300807 if (unlikely(execlists->csb_use_mmio)) {
Chris Wilson6d2cb5a2017-09-13 14:35:34 +0100808 buf = (u32 * __force)
809 (dev_priv->regs + i915_mmio_reg_offset(RING_CONTEXT_STATUS_BUF_LO(engine, 0)));
Mika Kuoppalab620e872017-09-22 15:43:03 +0300810 execlists->csb_head = -1; /* force mmio read of CSB ptrs */
Chris Wilson6d2cb5a2017-09-13 14:35:34 +0100811 }
812
Chris Wilson2e70b8c2017-03-23 13:48:03 +0000813 /* The write will be ordered by the uncached read (itself
814 * a memory barrier), so we do not need another in the form
815 * of a locked instruction. The race between the interrupt
816 * handler and the split test/clear is harmless as we order
817 * our clear before the CSB read. If the interrupt arrived
818 * first between the test and the clear, we read the updated
819 * CSB and clear the bit. If the interrupt arrives as we read
820 * the CSB or later (i.e. after we had cleared the bit) the bit
821 * is set and we do a new loop.
822 */
823 __clear_bit(ENGINE_IRQ_EXECLIST, &engine->irq_posted);
Mika Kuoppalab620e872017-09-22 15:43:03 +0300824 if (unlikely(execlists->csb_head == -1)) { /* following a reset */
Chris Wilson767a9832017-09-13 09:56:05 +0100825 head = readl(dev_priv->regs + i915_mmio_reg_offset(RING_CONTEXT_STATUS_PTR(engine)));
826 tail = GEN8_CSB_WRITE_PTR(head);
827 head = GEN8_CSB_READ_PTR(head);
Mika Kuoppalab620e872017-09-22 15:43:03 +0300828 execlists->csb_head = head;
Chris Wilson767a9832017-09-13 09:56:05 +0100829 } else {
830 const int write_idx =
831 intel_hws_csb_write_index(dev_priv) -
832 I915_HWS_CSB_BUF0_INDEX;
833
Mika Kuoppalab620e872017-09-22 15:43:03 +0300834 head = execlists->csb_head;
Chris Wilson767a9832017-09-13 09:56:05 +0100835 tail = READ_ONCE(buf[write_idx]);
836 }
Chris Wilsonbccd3b82017-11-09 14:30:19 +0000837 GEM_TRACE("%s cs-irq head=%d [%d], tail=%d [%d]\n",
838 engine->name,
839 head, GEN8_CSB_READ_PTR(readl(dev_priv->regs + i915_mmio_reg_offset(RING_CONTEXT_STATUS_PTR(engine)))),
840 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 +0300841
Chris Wilson4af0d722017-03-25 20:10:53 +0000842 while (head != tail) {
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100843 struct drm_i915_gem_request *rq;
Chris Wilson4af0d722017-03-25 20:10:53 +0000844 unsigned int status;
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100845 unsigned int count;
Chris Wilsona37951a2017-01-24 11:00:06 +0000846
Chris Wilson4af0d722017-03-25 20:10:53 +0000847 if (++head == GEN8_CSB_ENTRIES)
848 head = 0;
Thomas Daniele981e7b2014-07-24 17:04:39 +0100849
Chris Wilson2ffe80a2017-02-06 17:05:02 +0000850 /* We are flying near dragons again.
851 *
852 * We hold a reference to the request in execlist_port[]
853 * but no more than that. We are operating in softirq
854 * context and so cannot hold any mutex or sleep. That
855 * prevents us stopping the requests we are processing
856 * in port[] from being retired simultaneously (the
857 * breadcrumb will be complete before we see the
858 * context-switch). As we only hold the reference to the
859 * request, any pointer chasing underneath the request
860 * is subject to a potential use-after-free. Thus we
861 * store all of the bookkeeping within port[] as
862 * required, and avoid using unguarded pointers beneath
863 * request itself. The same applies to the atomic
864 * status notifier.
865 */
866
Chris Wilson6d2cb5a2017-09-13 14:35:34 +0100867 status = READ_ONCE(buf[2 * head]); /* maybe mmio! */
Chris Wilsonbccd3b82017-11-09 14:30:19 +0000868 GEM_TRACE("%s csb[%dd]: status=0x%08x:0x%08x\n",
869 engine->name, head,
870 status, buf[2*head + 1]);
Michel Thierryba74cb12017-11-20 12:34:58 +0000871
872 if (status & (GEN8_CTX_STATUS_IDLE_ACTIVE |
873 GEN8_CTX_STATUS_PREEMPTED))
874 execlists_set_active(execlists,
875 EXECLISTS_ACTIVE_HWACK);
876 if (status & GEN8_CTX_STATUS_ACTIVE_IDLE)
877 execlists_clear_active(execlists,
878 EXECLISTS_ACTIVE_HWACK);
879
Chris Wilson70c2a242016-09-09 14:11:46 +0100880 if (!(status & GEN8_CTX_STATUS_COMPLETED_MASK))
881 continue;
Thomas Daniele981e7b2014-07-24 17:04:39 +0100882
Chris Wilson1f5f9ed2017-11-20 12:34:57 +0000883 /* We should never get a COMPLETED | IDLE_ACTIVE! */
884 GEM_BUG_ON(status & GEN8_CTX_STATUS_IDLE_ACTIVE);
885
Chris Wilsone40dd222017-11-20 12:34:55 +0000886 if (status & GEN8_CTX_STATUS_COMPLETE &&
Chris Wilsonbeecec92017-10-03 21:34:52 +0100887 buf[2*head + 1] == PREEMPT_ID) {
Michał Winiarskia4598d12017-10-25 22:00:18 +0200888 execlists_cancel_port_requests(execlists);
889 execlists_unwind_incomplete_requests(execlists);
Chris Wilsonbeecec92017-10-03 21:34:52 +0100890
Chris Wilson4a118ec2017-10-23 22:32:36 +0100891 GEM_BUG_ON(!execlists_is_active(execlists,
892 EXECLISTS_ACTIVE_PREEMPT));
893 execlists_clear_active(execlists,
894 EXECLISTS_ACTIVE_PREEMPT);
Chris Wilsonbeecec92017-10-03 21:34:52 +0100895 continue;
896 }
897
898 if (status & GEN8_CTX_STATUS_PREEMPTED &&
Chris Wilson4a118ec2017-10-23 22:32:36 +0100899 execlists_is_active(execlists,
900 EXECLISTS_ACTIVE_PREEMPT))
Chris Wilsonbeecec92017-10-03 21:34:52 +0100901 continue;
902
Chris Wilson4a118ec2017-10-23 22:32:36 +0100903 GEM_BUG_ON(!execlists_is_active(execlists,
904 EXECLISTS_ACTIVE_USER));
905
Chris Wilson86aa7e72017-01-23 11:31:32 +0000906 /* Check the context/desc id for this event matches */
Chris Wilson6d2cb5a2017-09-13 14:35:34 +0100907 GEM_DEBUG_BUG_ON(buf[2 * head + 1] != port->context_id);
Chris Wilson86aa7e72017-01-23 11:31:32 +0000908
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100909 rq = port_unpack(port, &count);
Chris Wilsonbccd3b82017-11-09 14:30:19 +0000910 GEM_TRACE("%s out[0]: ctx=%d.%d, seqno=%x\n",
911 engine->name,
912 rq->ctx->hw_id, count,
913 rq->global_seqno);
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100914 GEM_BUG_ON(count == 0);
915 if (--count == 0) {
Chris Wilson70c2a242016-09-09 14:11:46 +0100916 GEM_BUG_ON(status & GEN8_CTX_STATUS_PREEMPTED);
Chris Wilsond8747af2017-11-20 12:34:56 +0000917 GEM_BUG_ON(port_isset(&port[1]) &&
918 !(status & GEN8_CTX_STATUS_ELEMENT_SWITCH));
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100919 GEM_BUG_ON(!i915_gem_request_completed(rq));
Tvrtko Ursulin73fd9d32017-11-21 18:18:47 +0000920 execlists_context_schedule_out(rq);
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100921 trace_i915_gem_request_out(rq);
922 i915_gem_request_put(rq);
923
Mika Kuoppala7a62cc62017-09-22 15:43:06 +0300924 execlists_port_complete(execlists, port);
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100925 } else {
926 port_set(port, port_pack(rq, count));
Chris Wilson70c2a242016-09-09 14:11:46 +0100927 }
Tvrtko Ursulinc6a2ac72016-02-26 16:58:32 +0000928
Chris Wilson77f0d0e2017-05-17 13:10:00 +0100929 /* After the final element, the hw should be idle */
930 GEM_BUG_ON(port_count(port) == 0 &&
Chris Wilson70c2a242016-09-09 14:11:46 +0100931 !(status & GEN8_CTX_STATUS_ACTIVE_IDLE));
Chris Wilson4a118ec2017-10-23 22:32:36 +0100932 if (port_count(port) == 0)
933 execlists_clear_active(execlists,
934 EXECLISTS_ACTIVE_USER);
Chris Wilson4af0d722017-03-25 20:10:53 +0000935 }
Tvrtko Ursulin26720ab2016-03-17 12:59:46 +0000936
Mika Kuoppalab620e872017-09-22 15:43:03 +0300937 if (head != execlists->csb_head) {
938 execlists->csb_head = head;
Chris Wilson767a9832017-09-13 09:56:05 +0100939 writel(_MASKED_FIELD(GEN8_CSB_READ_PTR_MASK, head << 8),
940 dev_priv->regs + i915_mmio_reg_offset(RING_CONTEXT_STATUS_PTR(engine)));
941 }
Tvrtko Ursulin26720ab2016-03-17 12:59:46 +0000942 }
943
Chris Wilson4a118ec2017-10-23 22:32:36 +0100944 if (!execlists_is_active(execlists, EXECLISTS_ACTIVE_PREEMPT))
Chris Wilson70c2a242016-09-09 14:11:46 +0100945 execlists_dequeue(engine);
Tvrtko Ursulin26720ab2016-03-17 12:59:46 +0000946
Mika Kuoppalab620e872017-09-22 15:43:03 +0300947 intel_uncore_forcewake_put(dev_priv, execlists->fw_domains);
Thomas Daniele981e7b2014-07-24 17:04:39 +0100948}
949
Chris Wilson27606fd2017-09-16 21:44:13 +0100950static void insert_request(struct intel_engine_cs *engine,
951 struct i915_priotree *pt,
952 int prio)
953{
954 struct i915_priolist *p = lookup_priolist(engine, pt, prio);
955
956 list_add_tail(&pt->link, &ptr_mask_bits(p, 1)->requests);
Chris Wilsonbeecec92017-10-03 21:34:52 +0100957 if (ptr_unmask_bits(p, 1))
Sagar Arun Kamblec6dce8f2017-11-16 19:02:37 +0530958 tasklet_hi_schedule(&engine->execlists.tasklet);
Chris Wilson27606fd2017-09-16 21:44:13 +0100959}
960
Chris Wilsonf4ea6bd2016-08-02 22:50:32 +0100961static void execlists_submit_request(struct drm_i915_gem_request *request)
Michel Thierryacdd8842014-07-24 17:04:38 +0100962{
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +0000963 struct intel_engine_cs *engine = request->engine;
Chris Wilson5590af32016-09-09 14:11:54 +0100964 unsigned long flags;
Michel Thierryacdd8842014-07-24 17:04:38 +0100965
Chris Wilson663f71e2016-11-14 20:41:00 +0000966 /* Will be called from irq-context when using foreign fences. */
967 spin_lock_irqsave(&engine->timeline->lock, flags);
Michel Thierryacdd8842014-07-24 17:04:38 +0100968
Chris Wilson27606fd2017-09-16 21:44:13 +0100969 insert_request(engine, &request->priotree, request->priotree.priority);
Michel Thierryacdd8842014-07-24 17:04:38 +0100970
Mika Kuoppalab620e872017-09-22 15:43:03 +0300971 GEM_BUG_ON(!engine->execlists.first);
Chris Wilson6c067572017-05-17 13:10:03 +0100972 GEM_BUG_ON(list_empty(&request->priotree.link));
973
Chris Wilson663f71e2016-11-14 20:41:00 +0000974 spin_unlock_irqrestore(&engine->timeline->lock, flags);
Michel Thierryacdd8842014-07-24 17:04:38 +0100975}
976
Chris Wilson1f181222017-10-03 21:34:50 +0100977static struct drm_i915_gem_request *pt_to_request(struct i915_priotree *pt)
978{
979 return container_of(pt, struct drm_i915_gem_request, priotree);
980}
981
Chris Wilson20311bd2016-11-14 20:41:03 +0000982static struct intel_engine_cs *
983pt_lock_engine(struct i915_priotree *pt, struct intel_engine_cs *locked)
984{
Chris Wilson1f181222017-10-03 21:34:50 +0100985 struct intel_engine_cs *engine = pt_to_request(pt)->engine;
Chris Wilson20311bd2016-11-14 20:41:03 +0000986
Chris Wilsona79a5242017-03-27 21:21:43 +0100987 GEM_BUG_ON(!locked);
988
Chris Wilson20311bd2016-11-14 20:41:03 +0000989 if (engine != locked) {
Chris Wilsona79a5242017-03-27 21:21:43 +0100990 spin_unlock(&locked->timeline->lock);
991 spin_lock(&engine->timeline->lock);
Chris Wilson20311bd2016-11-14 20:41:03 +0000992 }
993
994 return engine;
995}
996
997static void execlists_schedule(struct drm_i915_gem_request *request, int prio)
998{
Chris Wilsona79a5242017-03-27 21:21:43 +0100999 struct intel_engine_cs *engine;
Chris Wilson20311bd2016-11-14 20:41:03 +00001000 struct i915_dependency *dep, *p;
1001 struct i915_dependency stack;
1002 LIST_HEAD(dfs);
1003
Chris Wilson7d1ea602017-09-28 20:39:00 +01001004 GEM_BUG_ON(prio == I915_PRIORITY_INVALID);
1005
Chris Wilson20311bd2016-11-14 20:41:03 +00001006 if (prio <= READ_ONCE(request->priotree.priority))
1007 return;
1008
Chris Wilson70cd1472016-11-28 14:36:49 +00001009 /* Need BKL in order to use the temporary link inside i915_dependency */
1010 lockdep_assert_held(&request->i915->drm.struct_mutex);
Chris Wilson20311bd2016-11-14 20:41:03 +00001011
1012 stack.signaler = &request->priotree;
1013 list_add(&stack.dfs_link, &dfs);
1014
1015 /* Recursively bump all dependent priorities to match the new request.
1016 *
1017 * A naive approach would be to use recursion:
1018 * static void update_priorities(struct i915_priotree *pt, prio) {
1019 * list_for_each_entry(dep, &pt->signalers_list, signal_link)
1020 * update_priorities(dep->signal, prio)
1021 * insert_request(pt);
1022 * }
1023 * but that may have unlimited recursion depth and so runs a very
1024 * real risk of overunning the kernel stack. Instead, we build
1025 * a flat list of all dependencies starting with the current request.
1026 * As we walk the list of dependencies, we add all of its dependencies
1027 * to the end of the list (this may include an already visited
1028 * request) and continue to walk onwards onto the new dependencies. The
1029 * end result is a topological list of requests in reverse order, the
1030 * last element in the list is the request we must execute first.
1031 */
1032 list_for_each_entry_safe(dep, p, &dfs, dfs_link) {
1033 struct i915_priotree *pt = dep->signaler;
1034
Chris Wilsona79a5242017-03-27 21:21:43 +01001035 /* Within an engine, there can be no cycle, but we may
1036 * refer to the same dependency chain multiple times
1037 * (redundant dependencies are not eliminated) and across
1038 * engines.
1039 */
1040 list_for_each_entry(p, &pt->signalers_list, signal_link) {
Chris Wilson1f181222017-10-03 21:34:50 +01001041 if (i915_gem_request_completed(pt_to_request(p->signaler)))
1042 continue;
1043
Chris Wilsona79a5242017-03-27 21:21:43 +01001044 GEM_BUG_ON(p->signaler->priority < pt->priority);
Chris Wilson20311bd2016-11-14 20:41:03 +00001045 if (prio > READ_ONCE(p->signaler->priority))
1046 list_move_tail(&p->dfs_link, &dfs);
Chris Wilsona79a5242017-03-27 21:21:43 +01001047 }
Chris Wilson20311bd2016-11-14 20:41:03 +00001048
Chris Wilson0798cff2016-12-05 14:29:41 +00001049 list_safe_reset_next(dep, p, dfs_link);
Chris Wilson20311bd2016-11-14 20:41:03 +00001050 }
1051
Chris Wilson349bdb62017-05-17 13:10:05 +01001052 /* If we didn't need to bump any existing priorities, and we haven't
1053 * yet submitted this request (i.e. there is no potential race with
1054 * execlists_submit_request()), we can set our own priority and skip
1055 * acquiring the engine locks.
1056 */
Chris Wilson7d1ea602017-09-28 20:39:00 +01001057 if (request->priotree.priority == I915_PRIORITY_INVALID) {
Chris Wilson349bdb62017-05-17 13:10:05 +01001058 GEM_BUG_ON(!list_empty(&request->priotree.link));
1059 request->priotree.priority = prio;
1060 if (stack.dfs_link.next == stack.dfs_link.prev)
1061 return;
1062 __list_del_entry(&stack.dfs_link);
1063 }
1064
Chris Wilsona79a5242017-03-27 21:21:43 +01001065 engine = request->engine;
1066 spin_lock_irq(&engine->timeline->lock);
1067
Chris Wilson20311bd2016-11-14 20:41:03 +00001068 /* Fifo and depth-first replacement ensure our deps execute before us */
1069 list_for_each_entry_safe_reverse(dep, p, &dfs, dfs_link) {
1070 struct i915_priotree *pt = dep->signaler;
1071
1072 INIT_LIST_HEAD(&dep->dfs_link);
1073
1074 engine = pt_lock_engine(pt, engine);
1075
1076 if (prio <= pt->priority)
1077 continue;
1078
Chris Wilson20311bd2016-11-14 20:41:03 +00001079 pt->priority = prio;
Chris Wilson6c067572017-05-17 13:10:03 +01001080 if (!list_empty(&pt->link)) {
1081 __list_del_entry(&pt->link);
1082 insert_request(engine, pt, prio);
Chris Wilsona79a5242017-03-27 21:21:43 +01001083 }
Chris Wilson20311bd2016-11-14 20:41:03 +00001084 }
1085
Chris Wilsona79a5242017-03-27 21:21:43 +01001086 spin_unlock_irq(&engine->timeline->lock);
Chris Wilson20311bd2016-11-14 20:41:03 +00001087}
1088
Chris Wilsonf4e15af2017-11-10 14:26:32 +00001089static int __context_pin(struct i915_gem_context *ctx, struct i915_vma *vma)
1090{
1091 unsigned int flags;
1092 int err;
1093
1094 /*
1095 * Clear this page out of any CPU caches for coherent swap-in/out.
1096 * We only want to do this on the first bind so that we do not stall
1097 * on an active context (which by nature is already on the GPU).
1098 */
1099 if (!(vma->flags & I915_VMA_GLOBAL_BIND)) {
1100 err = i915_gem_object_set_to_gtt_domain(vma->obj, true);
1101 if (err)
1102 return err;
1103 }
1104
1105 flags = PIN_GLOBAL | PIN_HIGH;
1106 if (ctx->ggtt_offset_bias)
1107 flags |= PIN_OFFSET_BIAS | ctx->ggtt_offset_bias;
1108
1109 return i915_vma_pin(vma, 0, GEN8_LR_CONTEXT_ALIGN, flags);
1110}
1111
Chris Wilson266a2402017-05-04 10:33:08 +01001112static struct intel_ring *
1113execlists_context_pin(struct intel_engine_cs *engine,
1114 struct i915_gem_context *ctx)
Oscar Mateodcb4c122014-11-13 10:28:10 +00001115{
Chris Wilson9021ad02016-05-24 14:53:37 +01001116 struct intel_context *ce = &ctx->engine[engine->id];
Tvrtko Ursulin7d774ca2016-04-12 15:40:42 +01001117 void *vaddr;
Tvrtko Ursulinca825802016-01-15 15:10:27 +00001118 int ret;
Oscar Mateodcb4c122014-11-13 10:28:10 +00001119
Chris Wilson91c8a322016-07-05 10:40:23 +01001120 lockdep_assert_held(&ctx->i915->drm.struct_mutex);
Tvrtko Ursulinca825802016-01-15 15:10:27 +00001121
Chris Wilson266a2402017-05-04 10:33:08 +01001122 if (likely(ce->pin_count++))
1123 goto out;
Chris Wilsona533b4b2017-03-16 17:16:28 +00001124 GEM_BUG_ON(!ce->pin_count); /* no overflow please! */
Chris Wilson24f1d3c2016-04-28 09:56:53 +01001125
Chris Wilsone8a9c582016-12-18 15:37:20 +00001126 if (!ce->state) {
1127 ret = execlists_context_deferred_alloc(ctx, engine);
1128 if (ret)
1129 goto err;
1130 }
Chris Wilson56f6e0a2017-01-05 15:30:20 +00001131 GEM_BUG_ON(!ce->state);
Chris Wilsone8a9c582016-12-18 15:37:20 +00001132
Chris Wilsonf4e15af2017-11-10 14:26:32 +00001133 ret = __context_pin(ctx, ce->state);
Nick Hoathe84fe802015-09-11 12:53:46 +01001134 if (ret)
Chris Wilson24f1d3c2016-04-28 09:56:53 +01001135 goto err;
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001136
Chris Wilsonbf3783e2016-08-15 10:48:54 +01001137 vaddr = i915_gem_object_pin_map(ce->state->obj, I915_MAP_WB);
Tvrtko Ursulin7d774ca2016-04-12 15:40:42 +01001138 if (IS_ERR(vaddr)) {
1139 ret = PTR_ERR(vaddr);
Chris Wilsonbf3783e2016-08-15 10:48:54 +01001140 goto unpin_vma;
Tvrtko Ursulin82352e92016-01-15 17:12:45 +00001141 }
1142
Chris Wilsond822bb12017-04-03 12:34:25 +01001143 ret = intel_ring_pin(ce->ring, ctx->i915, ctx->ggtt_offset_bias);
Nick Hoathe84fe802015-09-11 12:53:46 +01001144 if (ret)
Tvrtko Ursulin7d774ca2016-04-12 15:40:42 +01001145 goto unpin_map;
Alex Daid1675192015-08-12 15:43:43 +01001146
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001147 intel_lr_context_descriptor_update(ctx, engine);
Chris Wilson9021ad02016-05-24 14:53:37 +01001148
Chris Wilsona3aabe82016-10-04 21:11:26 +01001149 ce->lrc_reg_state = vaddr + LRC_STATE_PN * PAGE_SIZE;
1150 ce->lrc_reg_state[CTX_RING_BUFFER_START+1] =
Chris Wilsonbde13eb2016-08-15 10:49:07 +01001151 i915_ggtt_offset(ce->ring->vma);
Chris Wilsona3aabe82016-10-04 21:11:26 +01001152
Chris Wilson3d574a62017-10-13 21:26:16 +01001153 ce->state->obj->pin_global++;
Chris Wilson9a6feaf2016-07-20 13:31:50 +01001154 i915_gem_context_get(ctx);
Chris Wilson266a2402017-05-04 10:33:08 +01001155out:
1156 return ce->ring;
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001157
Tvrtko Ursulin7d774ca2016-04-12 15:40:42 +01001158unpin_map:
Chris Wilsonbf3783e2016-08-15 10:48:54 +01001159 i915_gem_object_unpin_map(ce->state->obj);
1160unpin_vma:
1161 __i915_vma_unpin(ce->state);
Chris Wilson24f1d3c2016-04-28 09:56:53 +01001162err:
Chris Wilson9021ad02016-05-24 14:53:37 +01001163 ce->pin_count = 0;
Chris Wilson266a2402017-05-04 10:33:08 +01001164 return ERR_PTR(ret);
Oscar Mateodcb4c122014-11-13 10:28:10 +00001165}
1166
Chris Wilsone8a9c582016-12-18 15:37:20 +00001167static void execlists_context_unpin(struct intel_engine_cs *engine,
1168 struct i915_gem_context *ctx)
Oscar Mateodcb4c122014-11-13 10:28:10 +00001169{
Chris Wilson9021ad02016-05-24 14:53:37 +01001170 struct intel_context *ce = &ctx->engine[engine->id];
Daniel Vetteraf3302b2015-12-04 17:27:15 +01001171
Chris Wilson91c8a322016-07-05 10:40:23 +01001172 lockdep_assert_held(&ctx->i915->drm.struct_mutex);
Chris Wilson9021ad02016-05-24 14:53:37 +01001173 GEM_BUG_ON(ce->pin_count == 0);
Tvrtko Ursulin321fe302016-01-28 10:29:55 +00001174
Chris Wilson9021ad02016-05-24 14:53:37 +01001175 if (--ce->pin_count)
Chris Wilson24f1d3c2016-04-28 09:56:53 +01001176 return;
1177
Chris Wilsonaad29fb2016-08-02 22:50:23 +01001178 intel_ring_unpin(ce->ring);
Chris Wilson24f1d3c2016-04-28 09:56:53 +01001179
Chris Wilson3d574a62017-10-13 21:26:16 +01001180 ce->state->obj->pin_global--;
Chris Wilsonbf3783e2016-08-15 10:48:54 +01001181 i915_gem_object_unpin_map(ce->state->obj);
1182 i915_vma_unpin(ce->state);
Chris Wilson24f1d3c2016-04-28 09:56:53 +01001183
Chris Wilson9a6feaf2016-07-20 13:31:50 +01001184 i915_gem_context_put(ctx);
Oscar Mateodcb4c122014-11-13 10:28:10 +00001185}
1186
Chris Wilsonf73e7392016-12-18 15:37:24 +00001187static int execlists_request_alloc(struct drm_i915_gem_request *request)
Chris Wilsonef11c012016-12-18 15:37:19 +00001188{
1189 struct intel_engine_cs *engine = request->engine;
1190 struct intel_context *ce = &request->ctx->engine[engine->id];
Chris Wilsonfd138212017-11-15 15:12:04 +00001191 int ret;
Chris Wilsonef11c012016-12-18 15:37:19 +00001192
Chris Wilsone8a9c582016-12-18 15:37:20 +00001193 GEM_BUG_ON(!ce->pin_count);
1194
Chris Wilsonef11c012016-12-18 15:37:19 +00001195 /* Flush enough space to reduce the likelihood of waiting after
1196 * we start building the request - in which case we will just
1197 * have to repeat work.
1198 */
1199 request->reserved_space += EXECLISTS_REQUEST_SIZE;
1200
Chris Wilsonfd138212017-11-15 15:12:04 +00001201 ret = intel_ring_wait_for_space(request->ring, request->reserved_space);
1202 if (ret)
1203 return ret;
Chris Wilsonef11c012016-12-18 15:37:19 +00001204
Chris Wilsonef11c012016-12-18 15:37:19 +00001205 /* Note that after this point, we have committed to using
1206 * this request as it is being used to both track the
1207 * state of engine initialisation and liveness of the
1208 * golden renderstate above. Think twice before you try
1209 * to cancel/unwind this request now.
1210 */
1211
1212 request->reserved_space -= EXECLISTS_REQUEST_SIZE;
1213 return 0;
Chris Wilsonef11c012016-12-18 15:37:19 +00001214}
1215
Arun Siluvery9e000842015-07-03 14:27:31 +01001216/*
1217 * In this WA we need to set GEN8_L3SQCREG4[21:21] and reset it after
1218 * PIPE_CONTROL instruction. This is required for the flush to happen correctly
1219 * but there is a slight complication as this is applied in WA batch where the
1220 * values are only initialized once so we cannot take register value at the
1221 * beginning and reuse it further; hence we save its value to memory, upload a
1222 * constant value with bit21 set and then we restore it back with the saved value.
1223 * To simplify the WA, a constant value is formed by using the default value
1224 * of this register. This shouldn't be a problem because we are only modifying
1225 * it for a short period and this batch in non-premptible. We can ofcourse
1226 * use additional instructions that read the actual value of the register
1227 * at that time and set our bit of interest but it makes the WA complicated.
1228 *
1229 * This WA is also required for Gen9 so extracting as a function avoids
1230 * code duplication.
1231 */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001232static u32 *
1233gen8_emit_flush_coherentl3_wa(struct intel_engine_cs *engine, u32 *batch)
Arun Siluvery9e000842015-07-03 14:27:31 +01001234{
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001235 *batch++ = MI_STORE_REGISTER_MEM_GEN8 | MI_SRM_LRM_GLOBAL_GTT;
1236 *batch++ = i915_mmio_reg_offset(GEN8_L3SQCREG4);
1237 *batch++ = i915_ggtt_offset(engine->scratch) + 256;
1238 *batch++ = 0;
Arun Siluvery9e000842015-07-03 14:27:31 +01001239
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001240 *batch++ = MI_LOAD_REGISTER_IMM(1);
1241 *batch++ = i915_mmio_reg_offset(GEN8_L3SQCREG4);
1242 *batch++ = 0x40400000 | GEN8_LQSC_FLUSH_COHERENT_LINES;
Arun Siluvery9e000842015-07-03 14:27:31 +01001243
Tvrtko Ursulin9f235df2017-02-16 12:23:25 +00001244 batch = gen8_emit_pipe_control(batch,
1245 PIPE_CONTROL_CS_STALL |
1246 PIPE_CONTROL_DC_FLUSH_ENABLE,
1247 0);
Arun Siluvery9e000842015-07-03 14:27:31 +01001248
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001249 *batch++ = MI_LOAD_REGISTER_MEM_GEN8 | MI_SRM_LRM_GLOBAL_GTT;
1250 *batch++ = i915_mmio_reg_offset(GEN8_L3SQCREG4);
1251 *batch++ = i915_ggtt_offset(engine->scratch) + 256;
1252 *batch++ = 0;
Arun Siluvery9e000842015-07-03 14:27:31 +01001253
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001254 return batch;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001255}
1256
Daniel Vetter6e5248b2016-07-15 21:48:06 +02001257/*
1258 * Typically we only have one indirect_ctx and per_ctx batch buffer which are
1259 * initialized at the beginning and shared across all contexts but this field
1260 * helps us to have multiple batches at different offsets and select them based
1261 * on a criteria. At the moment this batch always start at the beginning of the page
1262 * and at this point we don't have multiple wa_ctx batch buffers.
Arun Siluvery17ee9502015-06-19 19:07:01 +01001263 *
Daniel Vetter6e5248b2016-07-15 21:48:06 +02001264 * The number of WA applied are not known at the beginning; we use this field
1265 * to return the no of DWORDS written.
Arun Siluvery17ee9502015-06-19 19:07:01 +01001266 *
Daniel Vetter6e5248b2016-07-15 21:48:06 +02001267 * It is to be noted that this batch does not contain MI_BATCH_BUFFER_END
1268 * so it adds NOOPs as padding to make it cacheline aligned.
1269 * MI_BATCH_BUFFER_END will be added to perctx batch and both of them together
1270 * makes a complete batch buffer.
Arun Siluvery17ee9502015-06-19 19:07:01 +01001271 */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001272static u32 *gen8_init_indirectctx_bb(struct intel_engine_cs *engine, u32 *batch)
Arun Siluvery17ee9502015-06-19 19:07:01 +01001273{
Arun Siluvery7ad00d12015-06-19 18:37:12 +01001274 /* WaDisableCtxRestoreArbitration:bdw,chv */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001275 *batch++ = MI_ARB_ON_OFF | MI_ARB_DISABLE;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001276
Arun Siluveryc82435b2015-06-19 18:37:13 +01001277 /* WaFlushCoherentL3CacheLinesAtContextSwitch:bdw */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001278 if (IS_BROADWELL(engine->i915))
1279 batch = gen8_emit_flush_coherentl3_wa(engine, batch);
Arun Siluveryc82435b2015-06-19 18:37:13 +01001280
Arun Siluvery0160f052015-06-23 15:46:57 +01001281 /* WaClearSlmSpaceAtContextSwitch:bdw,chv */
1282 /* Actual scratch location is at 128 bytes offset */
Tvrtko Ursulin9f235df2017-02-16 12:23:25 +00001283 batch = gen8_emit_pipe_control(batch,
1284 PIPE_CONTROL_FLUSH_L3 |
1285 PIPE_CONTROL_GLOBAL_GTT_IVB |
1286 PIPE_CONTROL_CS_STALL |
1287 PIPE_CONTROL_QW_WRITE,
1288 i915_ggtt_offset(engine->scratch) +
1289 2 * CACHELINE_BYTES);
Arun Siluvery0160f052015-06-23 15:46:57 +01001290
Chris Wilsonbeecec92017-10-03 21:34:52 +01001291 *batch++ = MI_ARB_ON_OFF | MI_ARB_ENABLE;
1292
Arun Siluvery17ee9502015-06-19 19:07:01 +01001293 /* Pad to end of cacheline */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001294 while ((unsigned long)batch % CACHELINE_BYTES)
1295 *batch++ = MI_NOOP;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001296
1297 /*
1298 * MI_BATCH_BUFFER_END is not required in Indirect ctx BB because
1299 * execution depends on the length specified in terms of cache lines
1300 * in the register CTX_RCS_INDIRECT_CTX
1301 */
1302
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001303 return batch;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001304}
1305
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001306static u32 *gen9_init_indirectctx_bb(struct intel_engine_cs *engine, u32 *batch)
Arun Siluvery0504cff2015-07-14 15:01:27 +01001307{
Chris Wilsonbeecec92017-10-03 21:34:52 +01001308 *batch++ = MI_ARB_ON_OFF | MI_ARB_DISABLE;
1309
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02001310 /* WaFlushCoherentL3CacheLinesAtContextSwitch:skl,bxt,glk */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001311 batch = gen8_emit_flush_coherentl3_wa(engine, batch);
Arun Siluverya4106a72015-07-14 15:01:29 +01001312
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02001313 /* WaDisableGatherAtSetShaderCommonSlice:skl,bxt,kbl,glk */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001314 *batch++ = MI_LOAD_REGISTER_IMM(1);
1315 *batch++ = i915_mmio_reg_offset(COMMON_SLICE_CHICKEN2);
1316 *batch++ = _MASKED_BIT_DISABLE(
1317 GEN9_DISABLE_GATHER_AT_SET_SHADER_COMMON_SLICE);
1318 *batch++ = MI_NOOP;
Mika Kuoppala873e8172016-07-20 14:26:13 +03001319
Mika Kuoppala066d4622016-06-07 17:19:15 +03001320 /* WaClearSlmSpaceAtContextSwitch:kbl */
1321 /* Actual scratch location is at 128 bytes offset */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001322 if (IS_KBL_REVID(engine->i915, 0, KBL_REVID_A0)) {
Tvrtko Ursulin9f235df2017-02-16 12:23:25 +00001323 batch = gen8_emit_pipe_control(batch,
1324 PIPE_CONTROL_FLUSH_L3 |
1325 PIPE_CONTROL_GLOBAL_GTT_IVB |
1326 PIPE_CONTROL_CS_STALL |
1327 PIPE_CONTROL_QW_WRITE,
1328 i915_ggtt_offset(engine->scratch)
1329 + 2 * CACHELINE_BYTES);
Mika Kuoppala066d4622016-06-07 17:19:15 +03001330 }
Tim Gore3485d992016-07-05 10:01:30 +01001331
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02001332 /* WaMediaPoolStateCmdInWABB:bxt,glk */
Tim Gore3485d992016-07-05 10:01:30 +01001333 if (HAS_POOLED_EU(engine->i915)) {
1334 /*
1335 * EU pool configuration is setup along with golden context
1336 * during context initialization. This value depends on
1337 * device type (2x6 or 3x6) and needs to be updated based
1338 * on which subslice is disabled especially for 2x6
1339 * devices, however it is safe to load default
1340 * configuration of 3x6 device instead of masking off
1341 * corresponding bits because HW ignores bits of a disabled
1342 * subslice and drops down to appropriate config. Please
1343 * see render_state_setup() in i915_gem_render_state.c for
1344 * possible configurations, to avoid duplication they are
1345 * not shown here again.
1346 */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001347 *batch++ = GEN9_MEDIA_POOL_STATE;
1348 *batch++ = GEN9_MEDIA_POOL_ENABLE;
1349 *batch++ = 0x00777000;
1350 *batch++ = 0;
1351 *batch++ = 0;
1352 *batch++ = 0;
Tim Gore3485d992016-07-05 10:01:30 +01001353 }
1354
Chris Wilsonbeecec92017-10-03 21:34:52 +01001355 *batch++ = MI_ARB_ON_OFF | MI_ARB_ENABLE;
1356
Arun Siluvery0504cff2015-07-14 15:01:27 +01001357 /* Pad to end of cacheline */
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001358 while ((unsigned long)batch % CACHELINE_BYTES)
1359 *batch++ = MI_NOOP;
Arun Siluvery0504cff2015-07-14 15:01:27 +01001360
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001361 return batch;
Arun Siluvery0504cff2015-07-14 15:01:27 +01001362}
1363
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001364#define CTX_WA_BB_OBJ_SIZE (PAGE_SIZE)
1365
1366static int lrc_setup_wa_ctx(struct intel_engine_cs *engine)
Arun Siluvery17ee9502015-06-19 19:07:01 +01001367{
Chris Wilson48bb74e2016-08-15 10:49:04 +01001368 struct drm_i915_gem_object *obj;
1369 struct i915_vma *vma;
1370 int err;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001371
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001372 obj = i915_gem_object_create(engine->i915, CTX_WA_BB_OBJ_SIZE);
Chris Wilson48bb74e2016-08-15 10:49:04 +01001373 if (IS_ERR(obj))
1374 return PTR_ERR(obj);
1375
Chris Wilsona01cb372017-01-16 15:21:30 +00001376 vma = i915_vma_instance(obj, &engine->i915->ggtt.base, NULL);
Chris Wilson48bb74e2016-08-15 10:49:04 +01001377 if (IS_ERR(vma)) {
1378 err = PTR_ERR(vma);
1379 goto err;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001380 }
1381
Chris Wilson48bb74e2016-08-15 10:49:04 +01001382 err = i915_vma_pin(vma, 0, PAGE_SIZE, PIN_GLOBAL | PIN_HIGH);
1383 if (err)
1384 goto err;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001385
Chris Wilson48bb74e2016-08-15 10:49:04 +01001386 engine->wa_ctx.vma = vma;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001387 return 0;
Chris Wilson48bb74e2016-08-15 10:49:04 +01001388
1389err:
1390 i915_gem_object_put(obj);
1391 return err;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001392}
1393
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001394static void lrc_destroy_wa_ctx(struct intel_engine_cs *engine)
Arun Siluvery17ee9502015-06-19 19:07:01 +01001395{
Chris Wilson19880c42016-08-15 10:49:05 +01001396 i915_vma_unpin_and_release(&engine->wa_ctx.vma);
Arun Siluvery17ee9502015-06-19 19:07:01 +01001397}
1398
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001399typedef u32 *(*wa_bb_func_t)(struct intel_engine_cs *engine, u32 *batch);
1400
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001401static int intel_init_workaround_bb(struct intel_engine_cs *engine)
Arun Siluvery17ee9502015-06-19 19:07:01 +01001402{
Chris Wilson48bb74e2016-08-15 10:49:04 +01001403 struct i915_ctx_workarounds *wa_ctx = &engine->wa_ctx;
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001404 struct i915_wa_ctx_bb *wa_bb[2] = { &wa_ctx->indirect_ctx,
1405 &wa_ctx->per_ctx };
1406 wa_bb_func_t wa_bb_fn[2];
Arun Siluvery17ee9502015-06-19 19:07:01 +01001407 struct page *page;
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001408 void *batch, *batch_ptr;
1409 unsigned int i;
Chris Wilson48bb74e2016-08-15 10:49:04 +01001410 int ret;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001411
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001412 if (WARN_ON(engine->id != RCS || !engine->scratch))
1413 return -EINVAL;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001414
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001415 switch (INTEL_GEN(engine->i915)) {
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07001416 case 10:
1417 return 0;
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001418 case 9:
1419 wa_bb_fn[0] = gen9_init_indirectctx_bb;
Chris Wilsonb8aa2232017-09-21 14:54:44 +01001420 wa_bb_fn[1] = NULL;
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001421 break;
1422 case 8:
1423 wa_bb_fn[0] = gen8_init_indirectctx_bb;
Chris Wilson3ad7b522017-10-03 21:34:49 +01001424 wa_bb_fn[1] = NULL;
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001425 break;
1426 default:
1427 MISSING_CASE(INTEL_GEN(engine->i915));
Arun Siluvery5e60d792015-06-23 15:50:44 +01001428 return 0;
Arun Siluvery0504cff2015-07-14 15:01:27 +01001429 }
Arun Siluvery5e60d792015-06-23 15:50:44 +01001430
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001431 ret = lrc_setup_wa_ctx(engine);
Arun Siluvery17ee9502015-06-19 19:07:01 +01001432 if (ret) {
1433 DRM_DEBUG_DRIVER("Failed to setup context WA page: %d\n", ret);
1434 return ret;
1435 }
1436
Chris Wilson48bb74e2016-08-15 10:49:04 +01001437 page = i915_gem_object_get_dirty_page(wa_ctx->vma->obj, 0);
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001438 batch = batch_ptr = kmap_atomic(page);
Arun Siluvery17ee9502015-06-19 19:07:01 +01001439
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001440 /*
1441 * Emit the two workaround batch buffers, recording the offset from the
1442 * start of the workaround batch buffer object for each and their
1443 * respective sizes.
1444 */
1445 for (i = 0; i < ARRAY_SIZE(wa_bb_fn); i++) {
1446 wa_bb[i]->offset = batch_ptr - batch;
1447 if (WARN_ON(!IS_ALIGNED(wa_bb[i]->offset, CACHELINE_BYTES))) {
1448 ret = -EINVAL;
1449 break;
1450 }
Chris Wilson604a8f62017-09-21 14:54:43 +01001451 if (wa_bb_fn[i])
1452 batch_ptr = wa_bb_fn[i](engine, batch_ptr);
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001453 wa_bb[i]->size = batch_ptr - (batch + wa_bb[i]->offset);
Arun Siluvery17ee9502015-06-19 19:07:01 +01001454 }
1455
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001456 BUG_ON(batch_ptr - batch > CTX_WA_BB_OBJ_SIZE);
1457
Arun Siluvery17ee9502015-06-19 19:07:01 +01001458 kunmap_atomic(batch);
1459 if (ret)
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001460 lrc_destroy_wa_ctx(engine);
Arun Siluvery17ee9502015-06-19 19:07:01 +01001461
1462 return ret;
1463}
1464
Chris Wilson64f09f02017-08-07 13:19:19 +01001465static u8 gtiir[] = {
1466 [RCS] = 0,
1467 [BCS] = 0,
1468 [VCS] = 1,
1469 [VCS2] = 1,
1470 [VECS] = 3,
1471};
1472
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001473static int gen8_init_common_ring(struct intel_engine_cs *engine)
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001474{
Chris Wilsonc0336662016-05-06 15:40:21 +01001475 struct drm_i915_private *dev_priv = engine->i915;
Mika Kuoppalab620e872017-09-22 15:43:03 +03001476 struct intel_engine_execlists * const execlists = &engine->execlists;
Chris Wilson821ed7d2016-09-09 14:11:53 +01001477 int ret;
1478
1479 ret = intel_mocs_init_engine(engine);
1480 if (ret)
1481 return ret;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001482
Chris Wilsonad07dfc2016-10-07 07:53:26 +01001483 intel_engine_reset_breadcrumbs(engine);
Chris Wilsonf3b8f912017-01-05 15:30:21 +00001484 intel_engine_init_hangcheck(engine);
Chris Wilson821ed7d2016-09-09 14:11:53 +01001485
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001486 I915_WRITE(RING_HWSTAM(engine->mmio_base), 0xffffffff);
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001487 I915_WRITE(RING_MODE_GEN7(engine),
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001488 _MASKED_BIT_ENABLE(GFX_RUN_LIST_ENABLE));
Chris Wilsonf3b8f912017-01-05 15:30:21 +00001489 I915_WRITE(RING_HWS_PGA(engine->mmio_base),
1490 engine->status_page.ggtt_offset);
1491 POSTING_READ(RING_HWS_PGA(engine->mmio_base));
Michel Thierrydfc53c52015-09-28 13:25:12 +01001492
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001493 DRM_DEBUG_DRIVER("Execlists enabled for %s\n", engine->name);
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001494
Chris Wilson64f09f02017-08-07 13:19:19 +01001495 GEM_BUG_ON(engine->id >= ARRAY_SIZE(gtiir));
1496
1497 /*
1498 * Clear any pending interrupt state.
1499 *
1500 * We do it twice out of paranoia that some of the IIR are double
1501 * buffered, and if we only reset it once there may still be
1502 * an interrupt pending.
1503 */
1504 I915_WRITE(GEN8_GT_IIR(gtiir[engine->id]),
1505 GT_CONTEXT_SWITCH_INTERRUPT << engine->irq_shift);
1506 I915_WRITE(GEN8_GT_IIR(gtiir[engine->id]),
1507 GT_CONTEXT_SWITCH_INTERRUPT << engine->irq_shift);
Chris Wilsonf7470262017-01-24 15:20:21 +00001508 clear_bit(ENGINE_IRQ_EXECLIST, &engine->irq_posted);
Mika Kuoppalab620e872017-09-22 15:43:03 +03001509 execlists->csb_head = -1;
Chris Wilson4a118ec2017-10-23 22:32:36 +01001510 execlists->active = 0;
Chris Wilson6b764a52017-04-25 11:38:35 +01001511
Chris Wilson64f09f02017-08-07 13:19:19 +01001512 /* After a GPU reset, we may have requests to replay */
Michał Winiarski9bdc3572017-10-25 18:25:19 +01001513 if (execlists->first)
Sagar Arun Kamblec6dce8f2017-11-16 19:02:37 +05301514 tasklet_schedule(&execlists->tasklet);
Chris Wilson6b764a52017-04-25 11:38:35 +01001515
Chris Wilson821ed7d2016-09-09 14:11:53 +01001516 return 0;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001517}
1518
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001519static int gen8_init_render_ring(struct intel_engine_cs *engine)
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001520{
Chris Wilsonc0336662016-05-06 15:40:21 +01001521 struct drm_i915_private *dev_priv = engine->i915;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001522 int ret;
1523
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001524 ret = gen8_init_common_ring(engine);
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001525 if (ret)
1526 return ret;
1527
1528 /* We need to disable the AsyncFlip performance optimisations in order
1529 * to use MI_WAIT_FOR_EVENT within the CS. It should already be
1530 * programmed to '1' on all products.
1531 *
1532 * WaDisableAsyncFlipPerfMode:snb,ivb,hsw,vlv,bdw,chv
1533 */
1534 I915_WRITE(MI_MODE, _MASKED_BIT_ENABLE(ASYNC_FLIP_PERF_DISABLE));
1535
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001536 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_FORCE_ORDERING));
1537
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001538 return init_workarounds_ring(engine);
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001539}
1540
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001541static int gen9_init_render_ring(struct intel_engine_cs *engine)
Damien Lespiau82ef8222015-02-09 19:33:08 +00001542{
1543 int ret;
1544
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001545 ret = gen8_init_common_ring(engine);
Damien Lespiau82ef8222015-02-09 19:33:08 +00001546 if (ret)
1547 return ret;
1548
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001549 return init_workarounds_ring(engine);
Damien Lespiau82ef8222015-02-09 19:33:08 +00001550}
1551
Chris Wilson821ed7d2016-09-09 14:11:53 +01001552static void reset_common_ring(struct intel_engine_cs *engine,
1553 struct drm_i915_gem_request *request)
1554{
Mika Kuoppalab620e872017-09-22 15:43:03 +03001555 struct intel_engine_execlists * const execlists = &engine->execlists;
Chris Wilsonc0dcb202017-02-07 15:24:37 +00001556 struct intel_context *ce;
Chris Wilson221ab97192017-09-16 21:44:14 +01001557 unsigned long flags;
Chris Wilsoncdb6ded2017-07-21 13:32:22 +01001558
Chris Wilson221ab97192017-09-16 21:44:14 +01001559 spin_lock_irqsave(&engine->timeline->lock, flags);
1560
Chris Wilsoncdb6ded2017-07-21 13:32:22 +01001561 /*
1562 * Catch up with any missed context-switch interrupts.
1563 *
1564 * Ideally we would just read the remaining CSB entries now that we
1565 * know the gpu is idle. However, the CSB registers are sometimes^W
1566 * often trashed across a GPU reset! Instead we have to rely on
1567 * guessing the missed context-switch events by looking at what
1568 * requests were completed.
1569 */
Michał Winiarskia4598d12017-10-25 22:00:18 +02001570 execlists_cancel_port_requests(execlists);
Chris Wilson221ab97192017-09-16 21:44:14 +01001571
1572 /* Push back any incomplete requests for replay after the reset. */
Michał Winiarskia4598d12017-10-25 22:00:18 +02001573 __unwind_incomplete_requests(engine);
Chris Wilsoncdb6ded2017-07-21 13:32:22 +01001574
Chris Wilson221ab97192017-09-16 21:44:14 +01001575 spin_unlock_irqrestore(&engine->timeline->lock, flags);
Chris Wilsonc0dcb202017-02-07 15:24:37 +00001576
1577 /* If the request was innocent, we leave the request in the ELSP
1578 * and will try to replay it on restarting. The context image may
1579 * have been corrupted by the reset, in which case we may have
1580 * to service a new GPU hang, but more likely we can continue on
1581 * without impact.
1582 *
1583 * If the request was guilty, we presume the context is corrupt
1584 * and have to at least restore the RING register in the context
1585 * image back to the expected values to skip over the guilty request.
1586 */
Chris Wilson221ab97192017-09-16 21:44:14 +01001587 if (!request || request->fence.error != -EIO)
Chris Wilsonc0dcb202017-02-07 15:24:37 +00001588 return;
Chris Wilson821ed7d2016-09-09 14:11:53 +01001589
Chris Wilsona3aabe82016-10-04 21:11:26 +01001590 /* We want a simple context + ring to execute the breadcrumb update.
1591 * We cannot rely on the context being intact across the GPU hang,
1592 * so clear it and rebuild just what we need for the breadcrumb.
1593 * All pending requests for this context will be zapped, and any
1594 * future request will be after userspace has had the opportunity
1595 * to recreate its own state.
1596 */
Chris Wilsonc0dcb202017-02-07 15:24:37 +00001597 ce = &request->ctx->engine[engine->id];
Chris Wilsona3aabe82016-10-04 21:11:26 +01001598 execlists_init_reg_state(ce->lrc_reg_state,
1599 request->ctx, engine, ce->ring);
1600
Chris Wilson821ed7d2016-09-09 14:11:53 +01001601 /* Move the RING_HEAD onto the breadcrumb, past the hanging batch */
Chris Wilsona3aabe82016-10-04 21:11:26 +01001602 ce->lrc_reg_state[CTX_RING_BUFFER_START+1] =
1603 i915_ggtt_offset(ce->ring->vma);
Chris Wilson821ed7d2016-09-09 14:11:53 +01001604 ce->lrc_reg_state[CTX_RING_HEAD+1] = request->postfix;
Chris Wilsona3aabe82016-10-04 21:11:26 +01001605
Chris Wilson821ed7d2016-09-09 14:11:53 +01001606 request->ring->head = request->postfix;
Chris Wilson821ed7d2016-09-09 14:11:53 +01001607 intel_ring_update_space(request->ring);
1608
Chris Wilsona3aabe82016-10-04 21:11:26 +01001609 /* Reset WaIdleLiteRestore:bdw,skl as well */
Chris Wilson7e4992a2017-09-28 20:38:59 +01001610 unwind_wa_tail(request);
Chris Wilson821ed7d2016-09-09 14:11:53 +01001611}
1612
Michel Thierry7a01a0a2015-06-26 13:46:14 +01001613static int intel_logical_ring_emit_pdps(struct drm_i915_gem_request *req)
1614{
1615 struct i915_hw_ppgtt *ppgtt = req->ctx->ppgtt;
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +00001616 struct intel_engine_cs *engine = req->engine;
Mika Kuoppalae7167762017-02-28 17:28:10 +02001617 const int num_lri_cmds = GEN8_3LVL_PDPES * 2;
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001618 u32 *cs;
1619 int i;
Michel Thierry7a01a0a2015-06-26 13:46:14 +01001620
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001621 cs = intel_ring_begin(req, num_lri_cmds * 2 + 2);
1622 if (IS_ERR(cs))
1623 return PTR_ERR(cs);
Michel Thierry7a01a0a2015-06-26 13:46:14 +01001624
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001625 *cs++ = MI_LOAD_REGISTER_IMM(num_lri_cmds);
Mika Kuoppalae7167762017-02-28 17:28:10 +02001626 for (i = GEN8_3LVL_PDPES - 1; i >= 0; i--) {
Michel Thierry7a01a0a2015-06-26 13:46:14 +01001627 const dma_addr_t pd_daddr = i915_page_dir_dma_addr(ppgtt, i);
1628
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001629 *cs++ = i915_mmio_reg_offset(GEN8_RING_PDP_UDW(engine, i));
1630 *cs++ = upper_32_bits(pd_daddr);
1631 *cs++ = i915_mmio_reg_offset(GEN8_RING_PDP_LDW(engine, i));
1632 *cs++ = lower_32_bits(pd_daddr);
Michel Thierry7a01a0a2015-06-26 13:46:14 +01001633 }
1634
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001635 *cs++ = MI_NOOP;
1636 intel_ring_advance(req, cs);
Michel Thierry7a01a0a2015-06-26 13:46:14 +01001637
1638 return 0;
1639}
1640
John Harrisonbe795fc2015-05-29 17:44:03 +01001641static int gen8_emit_bb_start(struct drm_i915_gem_request *req,
Chris Wilson803688b2016-08-02 22:50:27 +01001642 u64 offset, u32 len,
Mika Kuoppala54af56d2017-02-28 17:28:08 +02001643 const unsigned int flags)
Oscar Mateo15648582014-07-24 17:04:32 +01001644{
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001645 u32 *cs;
Oscar Mateo15648582014-07-24 17:04:32 +01001646 int ret;
1647
Michel Thierry7a01a0a2015-06-26 13:46:14 +01001648 /* Don't rely in hw updating PDPs, specially in lite-restore.
1649 * Ideally, we should set Force PD Restore in ctx descriptor,
1650 * but we can't. Force Restore would be a second option, but
1651 * it is unsafe in case of lite-restore (because the ctx is
Michel Thierry2dba3232015-07-30 11:06:23 +01001652 * not idle). PML4 is allocated during ppgtt init so this is
1653 * not needed in 48-bit.*/
Michel Thierry7a01a0a2015-06-26 13:46:14 +01001654 if (req->ctx->ppgtt &&
Mika Kuoppala54af56d2017-02-28 17:28:08 +02001655 (intel_engine_flag(req->engine) & req->ctx->ppgtt->pd_dirty_rings) &&
1656 !i915_vm_is_48bit(&req->ctx->ppgtt->base) &&
1657 !intel_vgpu_active(req->i915)) {
1658 ret = intel_logical_ring_emit_pdps(req);
1659 if (ret)
1660 return ret;
Michel Thierry7a01a0a2015-06-26 13:46:14 +01001661
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00001662 req->ctx->ppgtt->pd_dirty_rings &= ~intel_engine_flag(req->engine);
Michel Thierry7a01a0a2015-06-26 13:46:14 +01001663 }
1664
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001665 cs = intel_ring_begin(req, 4);
1666 if (IS_ERR(cs))
1667 return PTR_ERR(cs);
Oscar Mateo15648582014-07-24 17:04:32 +01001668
Chris Wilson279f5a02017-10-05 20:10:05 +01001669 /*
1670 * WaDisableCtxRestoreArbitration:bdw,chv
1671 *
1672 * We don't need to perform MI_ARB_ENABLE as often as we do (in
1673 * particular all the gen that do not need the w/a at all!), if we
1674 * took care to make sure that on every switch into this context
1675 * (both ordinary and for preemption) that arbitrartion was enabled
1676 * we would be fine. However, there doesn't seem to be a downside to
1677 * being paranoid and making sure it is set before each batch and
1678 * every context-switch.
1679 *
1680 * Note that if we fail to enable arbitration before the request
1681 * is complete, then we do not see the context-switch interrupt and
1682 * the engine hangs (with RING_HEAD == RING_TAIL).
1683 *
1684 * That satisfies both the GPGPU w/a and our heavy-handed paranoia.
1685 */
Chris Wilson3ad7b522017-10-03 21:34:49 +01001686 *cs++ = MI_ARB_ON_OFF | MI_ARB_ENABLE;
1687
Oscar Mateo15648582014-07-24 17:04:32 +01001688 /* FIXME(BDW): Address space and security selectors. */
Mika Kuoppala54af56d2017-02-28 17:28:08 +02001689 *cs++ = MI_BATCH_BUFFER_START_GEN8 |
1690 (flags & I915_DISPATCH_SECURE ? 0 : BIT(8)) |
1691 (flags & I915_DISPATCH_RS ? MI_BATCH_RESOURCE_STREAMER : 0);
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001692 *cs++ = lower_32_bits(offset);
1693 *cs++ = upper_32_bits(offset);
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001694 intel_ring_advance(req, cs);
Oscar Mateo15648582014-07-24 17:04:32 +01001695
1696 return 0;
1697}
1698
Chris Wilson31bb59c2016-07-01 17:23:27 +01001699static void gen8_logical_ring_enable_irq(struct intel_engine_cs *engine)
Oscar Mateo73d477f2014-07-24 17:04:31 +01001700{
Chris Wilsonc0336662016-05-06 15:40:21 +01001701 struct drm_i915_private *dev_priv = engine->i915;
Chris Wilson31bb59c2016-07-01 17:23:27 +01001702 I915_WRITE_IMR(engine,
1703 ~(engine->irq_enable_mask | engine->irq_keep_mask));
1704 POSTING_READ_FW(RING_IMR(engine->mmio_base));
Oscar Mateo73d477f2014-07-24 17:04:31 +01001705}
1706
Chris Wilson31bb59c2016-07-01 17:23:27 +01001707static void gen8_logical_ring_disable_irq(struct intel_engine_cs *engine)
Oscar Mateo73d477f2014-07-24 17:04:31 +01001708{
Chris Wilsonc0336662016-05-06 15:40:21 +01001709 struct drm_i915_private *dev_priv = engine->i915;
Chris Wilson31bb59c2016-07-01 17:23:27 +01001710 I915_WRITE_IMR(engine, ~engine->irq_keep_mask);
Oscar Mateo73d477f2014-07-24 17:04:31 +01001711}
1712
Chris Wilson7c9cf4e2016-08-02 22:50:25 +01001713static int gen8_emit_flush(struct drm_i915_gem_request *request, u32 mode)
Oscar Mateo47122742014-07-24 17:04:28 +01001714{
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001715 u32 cmd, *cs;
Oscar Mateo47122742014-07-24 17:04:28 +01001716
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001717 cs = intel_ring_begin(request, 4);
1718 if (IS_ERR(cs))
1719 return PTR_ERR(cs);
Oscar Mateo47122742014-07-24 17:04:28 +01001720
1721 cmd = MI_FLUSH_DW + 1;
1722
Chris Wilsonf0a1fb12015-01-22 13:42:00 +00001723 /* We always require a command barrier so that subsequent
1724 * commands, such as breadcrumb interrupts, are strictly ordered
1725 * wrt the contents of the write cache being flushed to memory
1726 * (and thus being coherent from the CPU).
1727 */
1728 cmd |= MI_FLUSH_DW_STORE_INDEX | MI_FLUSH_DW_OP_STOREDW;
1729
Chris Wilson7c9cf4e2016-08-02 22:50:25 +01001730 if (mode & EMIT_INVALIDATE) {
Chris Wilsonf0a1fb12015-01-22 13:42:00 +00001731 cmd |= MI_INVALIDATE_TLB;
Chris Wilson1dae2df2016-08-02 22:50:19 +01001732 if (request->engine->id == VCS)
Chris Wilsonf0a1fb12015-01-22 13:42:00 +00001733 cmd |= MI_INVALIDATE_BSD;
Oscar Mateo47122742014-07-24 17:04:28 +01001734 }
1735
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001736 *cs++ = cmd;
1737 *cs++ = I915_GEM_HWS_SCRATCH_ADDR | MI_FLUSH_DW_USE_GTT;
1738 *cs++ = 0; /* upper addr */
1739 *cs++ = 0; /* value */
1740 intel_ring_advance(request, cs);
Oscar Mateo47122742014-07-24 17:04:28 +01001741
1742 return 0;
1743}
1744
John Harrison7deb4d32015-05-29 17:43:59 +01001745static int gen8_emit_flush_render(struct drm_i915_gem_request *request,
Chris Wilson7c9cf4e2016-08-02 22:50:25 +01001746 u32 mode)
Oscar Mateo47122742014-07-24 17:04:28 +01001747{
Chris Wilsonb5321f32016-08-02 22:50:18 +01001748 struct intel_engine_cs *engine = request->engine;
Chris Wilsonbde13eb2016-08-15 10:49:07 +01001749 u32 scratch_addr =
1750 i915_ggtt_offset(engine->scratch) + 2 * CACHELINE_BYTES;
Mika Kuoppala0b2d0932016-06-07 17:19:10 +03001751 bool vf_flush_wa = false, dc_flush_wa = false;
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001752 u32 *cs, flags = 0;
Mika Kuoppala0b2d0932016-06-07 17:19:10 +03001753 int len;
Oscar Mateo47122742014-07-24 17:04:28 +01001754
1755 flags |= PIPE_CONTROL_CS_STALL;
1756
Chris Wilson7c9cf4e2016-08-02 22:50:25 +01001757 if (mode & EMIT_FLUSH) {
Oscar Mateo47122742014-07-24 17:04:28 +01001758 flags |= PIPE_CONTROL_RENDER_TARGET_CACHE_FLUSH;
1759 flags |= PIPE_CONTROL_DEPTH_CACHE_FLUSH;
Francisco Jerez965fd602016-01-13 18:59:39 -08001760 flags |= PIPE_CONTROL_DC_FLUSH_ENABLE;
Chris Wilson40a24482015-08-21 16:08:41 +01001761 flags |= PIPE_CONTROL_FLUSH_ENABLE;
Oscar Mateo47122742014-07-24 17:04:28 +01001762 }
1763
Chris Wilson7c9cf4e2016-08-02 22:50:25 +01001764 if (mode & EMIT_INVALIDATE) {
Oscar Mateo47122742014-07-24 17:04:28 +01001765 flags |= PIPE_CONTROL_TLB_INVALIDATE;
1766 flags |= PIPE_CONTROL_INSTRUCTION_CACHE_INVALIDATE;
1767 flags |= PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE;
1768 flags |= PIPE_CONTROL_VF_CACHE_INVALIDATE;
1769 flags |= PIPE_CONTROL_CONST_CACHE_INVALIDATE;
1770 flags |= PIPE_CONTROL_STATE_CACHE_INVALIDATE;
1771 flags |= PIPE_CONTROL_QW_WRITE;
1772 flags |= PIPE_CONTROL_GLOBAL_GTT_IVB;
Oscar Mateo47122742014-07-24 17:04:28 +01001773
Ben Widawsky1a5a9ce2015-12-17 09:49:57 -08001774 /*
1775 * On GEN9: before VF_CACHE_INVALIDATE we need to emit a NULL
1776 * pipe control.
1777 */
Chris Wilsonc0336662016-05-06 15:40:21 +01001778 if (IS_GEN9(request->i915))
Ben Widawsky1a5a9ce2015-12-17 09:49:57 -08001779 vf_flush_wa = true;
Mika Kuoppala0b2d0932016-06-07 17:19:10 +03001780
1781 /* WaForGAMHang:kbl */
1782 if (IS_KBL_REVID(request->i915, 0, KBL_REVID_B0))
1783 dc_flush_wa = true;
Ben Widawsky1a5a9ce2015-12-17 09:49:57 -08001784 }
Imre Deak9647ff32015-01-25 13:27:11 -08001785
Mika Kuoppala0b2d0932016-06-07 17:19:10 +03001786 len = 6;
1787
1788 if (vf_flush_wa)
1789 len += 6;
1790
1791 if (dc_flush_wa)
1792 len += 12;
1793
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001794 cs = intel_ring_begin(request, len);
1795 if (IS_ERR(cs))
1796 return PTR_ERR(cs);
Oscar Mateo47122742014-07-24 17:04:28 +01001797
Tvrtko Ursulin9f235df2017-02-16 12:23:25 +00001798 if (vf_flush_wa)
1799 cs = gen8_emit_pipe_control(cs, 0, 0);
Imre Deak9647ff32015-01-25 13:27:11 -08001800
Tvrtko Ursulin9f235df2017-02-16 12:23:25 +00001801 if (dc_flush_wa)
1802 cs = gen8_emit_pipe_control(cs, PIPE_CONTROL_DC_FLUSH_ENABLE,
1803 0);
Mika Kuoppala0b2d0932016-06-07 17:19:10 +03001804
Tvrtko Ursulin9f235df2017-02-16 12:23:25 +00001805 cs = gen8_emit_pipe_control(cs, flags, scratch_addr);
Mika Kuoppala0b2d0932016-06-07 17:19:10 +03001806
Tvrtko Ursulin9f235df2017-02-16 12:23:25 +00001807 if (dc_flush_wa)
1808 cs = gen8_emit_pipe_control(cs, PIPE_CONTROL_CS_STALL, 0);
Mika Kuoppala0b2d0932016-06-07 17:19:10 +03001809
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001810 intel_ring_advance(request, cs);
Oscar Mateo47122742014-07-24 17:04:28 +01001811
1812 return 0;
1813}
1814
Chris Wilson7c17d372016-01-20 15:43:35 +02001815/*
1816 * Reserve space for 2 NOOPs at the end of each request to be
1817 * used as a workaround for not being allowed to do lite
1818 * restore with HEAD==TAIL (WaIdleLiteRestore).
1819 */
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001820static void gen8_emit_wa_tail(struct drm_i915_gem_request *request, u32 *cs)
Oscar Mateo4da46e12014-07-24 17:04:27 +01001821{
Chris Wilsonbeecec92017-10-03 21:34:52 +01001822 /* Ensure there's always at least one preemption point per-request. */
1823 *cs++ = MI_ARB_CHECK;
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001824 *cs++ = MI_NOOP;
1825 request->wa_tail = intel_ring_offset(request, cs);
Chris Wilsoncaddfe72016-10-28 13:58:52 +01001826}
Oscar Mateo4da46e12014-07-24 17:04:27 +01001827
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001828static void gen8_emit_breadcrumb(struct drm_i915_gem_request *request, u32 *cs)
Chris Wilsoncaddfe72016-10-28 13:58:52 +01001829{
Chris Wilson7c17d372016-01-20 15:43:35 +02001830 /* w/a: bit 5 needs to be zero for MI_FLUSH_DW address. */
1831 BUILD_BUG_ON(I915_GEM_HWS_INDEX_ADDR & (1 << 5));
Oscar Mateo4da46e12014-07-24 17:04:27 +01001832
Michał Winiarskidf77cd82017-10-25 22:00:15 +02001833 cs = gen8_emit_ggtt_write(cs, request->global_seqno,
1834 intel_hws_seqno_address(request->engine));
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001835 *cs++ = MI_USER_INTERRUPT;
1836 *cs++ = MI_NOOP;
1837 request->tail = intel_ring_offset(request, cs);
Chris Wilsoned1501d2017-03-27 14:14:12 +01001838 assert_ring_tail_valid(request->ring, request->tail);
Chris Wilsoncaddfe72016-10-28 13:58:52 +01001839
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001840 gen8_emit_wa_tail(request, cs);
Chris Wilson7c17d372016-01-20 15:43:35 +02001841}
Chris Wilson98f29e82016-10-28 13:58:51 +01001842static const int gen8_emit_breadcrumb_sz = 6 + WA_TAIL_DWORDS;
1843
Michał Winiarskidf77cd82017-10-25 22:00:15 +02001844static void gen8_emit_breadcrumb_rcs(struct drm_i915_gem_request *request,
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001845 u32 *cs)
Chris Wilson7c17d372016-01-20 15:43:35 +02001846{
Michał Winiarskice81a652016-04-12 15:51:55 +02001847 /* We're using qword write, seqno should be aligned to 8 bytes. */
1848 BUILD_BUG_ON(I915_GEM_HWS_INDEX & 1);
1849
Michał Winiarskidf77cd82017-10-25 22:00:15 +02001850 cs = gen8_emit_ggtt_write_rcs(cs, request->global_seqno,
1851 intel_hws_seqno_address(request->engine));
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001852 *cs++ = MI_USER_INTERRUPT;
1853 *cs++ = MI_NOOP;
1854 request->tail = intel_ring_offset(request, cs);
Chris Wilsoned1501d2017-03-27 14:14:12 +01001855 assert_ring_tail_valid(request->ring, request->tail);
Chris Wilsoncaddfe72016-10-28 13:58:52 +01001856
Tvrtko Ursulin73dec952017-02-14 11:32:42 +00001857 gen8_emit_wa_tail(request, cs);
Oscar Mateo4da46e12014-07-24 17:04:27 +01001858}
Michał Winiarskidf77cd82017-10-25 22:00:15 +02001859static const int gen8_emit_breadcrumb_rcs_sz = 8 + WA_TAIL_DWORDS;
Chris Wilson98f29e82016-10-28 13:58:51 +01001860
John Harrison87531812015-05-29 17:43:44 +01001861static int gen8_init_rcs_context(struct drm_i915_gem_request *req)
Thomas Daniele7778be2014-12-02 12:50:48 +00001862{
1863 int ret;
1864
Tvrtko Ursulin4ac96592017-02-14 15:00:17 +00001865 ret = intel_ring_workarounds_emit(req);
Thomas Daniele7778be2014-12-02 12:50:48 +00001866 if (ret)
1867 return ret;
1868
Peter Antoine3bbaba02015-07-10 20:13:11 +03001869 ret = intel_rcs_context_init_mocs(req);
1870 /*
1871 * Failing to program the MOCS is non-fatal.The system will not
1872 * run at peak performance. So generate an error and carry on.
1873 */
1874 if (ret)
1875 DRM_ERROR("MOCS failed to program: expect performance issues.\n");
1876
Chris Wilson4e50f082016-10-28 13:58:31 +01001877 return i915_gem_render_state_emit(req);
Thomas Daniele7778be2014-12-02 12:50:48 +00001878}
1879
Oscar Mateo73e4d072014-07-24 17:04:48 +01001880/**
1881 * intel_logical_ring_cleanup() - deallocate the Engine Command Streamer
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01001882 * @engine: Engine Command Streamer.
Oscar Mateo73e4d072014-07-24 17:04:48 +01001883 */
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001884void intel_logical_ring_cleanup(struct intel_engine_cs *engine)
Oscar Mateo454afeb2014-07-24 17:04:22 +01001885{
John Harrison6402c332014-10-31 12:00:26 +00001886 struct drm_i915_private *dev_priv;
Oscar Mateo9832b9d2014-07-24 17:04:30 +01001887
Tvrtko Ursulin27af5ee2016-04-04 12:11:56 +01001888 /*
1889 * Tasklet cannot be active at this point due intel_mark_active/idle
1890 * so this is just for documentation.
1891 */
Sagar Arun Kamblec6dce8f2017-11-16 19:02:37 +05301892 if (WARN_ON(test_bit(TASKLET_STATE_SCHED,
1893 &engine->execlists.tasklet.state)))
1894 tasklet_kill(&engine->execlists.tasklet);
Tvrtko Ursulin27af5ee2016-04-04 12:11:56 +01001895
Chris Wilsonc0336662016-05-06 15:40:21 +01001896 dev_priv = engine->i915;
John Harrison6402c332014-10-31 12:00:26 +00001897
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001898 if (engine->buffer) {
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001899 WARN_ON((I915_READ_MODE(engine) & MODE_IDLE) == 0);
Dave Gordonb0366a52015-12-08 15:02:36 +00001900 }
Oscar Mateo48d82382014-07-24 17:04:23 +01001901
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001902 if (engine->cleanup)
1903 engine->cleanup(engine);
Oscar Mateo48d82382014-07-24 17:04:23 +01001904
Chris Wilsone8a9c582016-12-18 15:37:20 +00001905 intel_engine_cleanup_common(engine);
Arun Siluvery17ee9502015-06-19 19:07:01 +01001906
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00001907 lrc_destroy_wa_ctx(engine);
Chris Wilsonc0336662016-05-06 15:40:21 +01001908 engine->i915 = NULL;
Akash Goel3b3f1652016-10-13 22:44:48 +05301909 dev_priv->engine[engine->id] = NULL;
1910 kfree(engine);
Oscar Mateo454afeb2014-07-24 17:04:22 +01001911}
1912
Chris Wilsonff44ad52017-03-16 17:13:03 +00001913static void execlists_set_default_submission(struct intel_engine_cs *engine)
Chris Wilsonddd66c52016-08-02 22:50:31 +01001914{
Chris Wilsonff44ad52017-03-16 17:13:03 +00001915 engine->submit_request = execlists_submit_request;
Chris Wilson27a5f612017-09-15 18:31:00 +01001916 engine->cancel_requests = execlists_cancel_requests;
Chris Wilsonff44ad52017-03-16 17:13:03 +00001917 engine->schedule = execlists_schedule;
Sagar Arun Kamblec6dce8f2017-11-16 19:02:37 +05301918 engine->execlists.tasklet.func = execlists_submission_tasklet;
Chris Wilsonaba5e272017-10-25 15:39:41 +01001919
1920 engine->park = NULL;
1921 engine->unpark = NULL;
Chris Wilsonddd66c52016-08-02 22:50:31 +01001922}
1923
Tvrtko Ursulinc9cacf92016-01-12 17:32:34 +00001924static void
Chris Wilsone1382ef2016-05-06 15:40:20 +01001925logical_ring_default_vfuncs(struct intel_engine_cs *engine)
Tvrtko Ursulinc9cacf92016-01-12 17:32:34 +00001926{
1927 /* Default vfuncs which can be overriden by each engine. */
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001928 engine->init_hw = gen8_init_common_ring;
Chris Wilson821ed7d2016-09-09 14:11:53 +01001929 engine->reset_hw = reset_common_ring;
Chris Wilsone8a9c582016-12-18 15:37:20 +00001930
1931 engine->context_pin = execlists_context_pin;
1932 engine->context_unpin = execlists_context_unpin;
1933
Chris Wilsonf73e7392016-12-18 15:37:24 +00001934 engine->request_alloc = execlists_request_alloc;
1935
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001936 engine->emit_flush = gen8_emit_flush;
Chris Wilson9b81d552016-10-28 13:58:50 +01001937 engine->emit_breadcrumb = gen8_emit_breadcrumb;
Chris Wilson98f29e82016-10-28 13:58:51 +01001938 engine->emit_breadcrumb_sz = gen8_emit_breadcrumb_sz;
Chris Wilsonff44ad52017-03-16 17:13:03 +00001939
1940 engine->set_default_submission = execlists_set_default_submission;
Chris Wilsonddd66c52016-08-02 22:50:31 +01001941
Chris Wilson31bb59c2016-07-01 17:23:27 +01001942 engine->irq_enable = gen8_logical_ring_enable_irq;
1943 engine->irq_disable = gen8_logical_ring_disable_irq;
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001944 engine->emit_bb_start = gen8_emit_bb_start;
Tvrtko Ursulinc9cacf92016-01-12 17:32:34 +00001945}
1946
Tvrtko Ursulind9f3af92016-01-12 17:32:35 +00001947static inline void
Dave Gordonc2c7f242016-07-13 16:03:35 +01001948logical_ring_default_irqs(struct intel_engine_cs *engine)
Tvrtko Ursulind9f3af92016-01-12 17:32:35 +00001949{
Dave Gordonc2c7f242016-07-13 16:03:35 +01001950 unsigned shift = engine->irq_shift;
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001951 engine->irq_enable_mask = GT_RENDER_USER_INTERRUPT << shift;
1952 engine->irq_keep_mask = GT_CONTEXT_SWITCH_INTERRUPT << shift;
Tvrtko Ursulind9f3af92016-01-12 17:32:35 +00001953}
1954
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01001955static void
1956logical_ring_setup(struct intel_engine_cs *engine)
1957{
1958 struct drm_i915_private *dev_priv = engine->i915;
1959 enum forcewake_domains fw_domains;
1960
Tvrtko Ursulin019bf272016-07-13 16:03:41 +01001961 intel_engine_setup_common(engine);
1962
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01001963 /* Intentionally left blank. */
1964 engine->buffer = NULL;
1965
1966 fw_domains = intel_uncore_forcewake_for_reg(dev_priv,
1967 RING_ELSP(engine),
1968 FW_REG_WRITE);
1969
1970 fw_domains |= intel_uncore_forcewake_for_reg(dev_priv,
1971 RING_CONTEXT_STATUS_PTR(engine),
1972 FW_REG_READ | FW_REG_WRITE);
1973
1974 fw_domains |= intel_uncore_forcewake_for_reg(dev_priv,
1975 RING_CONTEXT_STATUS_BUF_BASE(engine),
1976 FW_REG_READ);
1977
Mika Kuoppalab620e872017-09-22 15:43:03 +03001978 engine->execlists.fw_domains = fw_domains;
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01001979
Sagar Arun Kamblec6dce8f2017-11-16 19:02:37 +05301980 tasklet_init(&engine->execlists.tasklet,
1981 execlists_submission_tasklet, (unsigned long)engine);
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01001982
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01001983 logical_ring_default_vfuncs(engine);
1984 logical_ring_default_irqs(engine);
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01001985}
1986
Daniele Ceraolo Spurio486e93f2017-09-13 09:56:02 +01001987static int logical_ring_init(struct intel_engine_cs *engine)
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01001988{
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01001989 int ret;
1990
Tvrtko Ursulin019bf272016-07-13 16:03:41 +01001991 ret = intel_engine_init_common(engine);
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01001992 if (ret)
1993 goto error;
1994
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01001995 return 0;
1996
1997error:
1998 intel_logical_ring_cleanup(engine);
1999 return ret;
2000}
2001
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +01002002int logical_render_ring_init(struct intel_engine_cs *engine)
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01002003{
2004 struct drm_i915_private *dev_priv = engine->i915;
2005 int ret;
2006
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01002007 logical_ring_setup(engine);
2008
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01002009 if (HAS_L3_DPF(dev_priv))
2010 engine->irq_keep_mask |= GT_RENDER_L3_PARITY_ERROR_INTERRUPT;
2011
2012 /* Override some for render ring. */
2013 if (INTEL_GEN(dev_priv) >= 9)
2014 engine->init_hw = gen9_init_render_ring;
2015 else
2016 engine->init_hw = gen8_init_render_ring;
2017 engine->init_context = gen8_init_rcs_context;
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01002018 engine->emit_flush = gen8_emit_flush_render;
Michał Winiarskidf77cd82017-10-25 22:00:15 +02002019 engine->emit_breadcrumb = gen8_emit_breadcrumb_rcs;
2020 engine->emit_breadcrumb_sz = gen8_emit_breadcrumb_rcs_sz;
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01002021
Chris Wilsonf51455d2017-01-10 14:47:34 +00002022 ret = intel_engine_create_scratch(engine, PAGE_SIZE);
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01002023 if (ret)
2024 return ret;
2025
2026 ret = intel_init_workaround_bb(engine);
2027 if (ret) {
2028 /*
2029 * We continue even if we fail to initialize WA batch
2030 * because we only expect rare glitches but nothing
2031 * critical to prevent us from using GPU
2032 */
2033 DRM_ERROR("WA batch buffer initialization failed: %d\n",
2034 ret);
2035 }
2036
Tvrtko Ursulind038fc72016-12-16 13:18:42 +00002037 return logical_ring_init(engine);
Tvrtko Ursulina19d6ff2016-06-23 14:52:41 +01002038}
2039
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +01002040int logical_xcs_ring_init(struct intel_engine_cs *engine)
Tvrtko Ursulinbb454382016-07-13 16:03:36 +01002041{
2042 logical_ring_setup(engine);
2043
2044 return logical_ring_init(engine);
2045}
2046
Jeff McGee0cea6502015-02-13 10:27:56 -06002047static u32
Chris Wilsonc0336662016-05-06 15:40:21 +01002048make_rpcs(struct drm_i915_private *dev_priv)
Jeff McGee0cea6502015-02-13 10:27:56 -06002049{
2050 u32 rpcs = 0;
2051
2052 /*
2053 * No explicit RPCS request is needed to ensure full
2054 * slice/subslice/EU enablement prior to Gen9.
2055 */
Chris Wilsonc0336662016-05-06 15:40:21 +01002056 if (INTEL_GEN(dev_priv) < 9)
Jeff McGee0cea6502015-02-13 10:27:56 -06002057 return 0;
2058
2059 /*
2060 * Starting in Gen9, render power gating can leave
2061 * slice/subslice/EU in a partially enabled state. We
2062 * must make an explicit request through RPCS for full
2063 * enablement.
2064 */
Imre Deak43b67992016-08-31 19:13:02 +03002065 if (INTEL_INFO(dev_priv)->sseu.has_slice_pg) {
Jeff McGee0cea6502015-02-13 10:27:56 -06002066 rpcs |= GEN8_RPCS_S_CNT_ENABLE;
Imre Deakf08a0c92016-08-31 19:13:04 +03002067 rpcs |= hweight8(INTEL_INFO(dev_priv)->sseu.slice_mask) <<
Jeff McGee0cea6502015-02-13 10:27:56 -06002068 GEN8_RPCS_S_CNT_SHIFT;
2069 rpcs |= GEN8_RPCS_ENABLE;
2070 }
2071
Imre Deak43b67992016-08-31 19:13:02 +03002072 if (INTEL_INFO(dev_priv)->sseu.has_subslice_pg) {
Jeff McGee0cea6502015-02-13 10:27:56 -06002073 rpcs |= GEN8_RPCS_SS_CNT_ENABLE;
Imre Deak57ec1712016-08-31 19:13:05 +03002074 rpcs |= hweight8(INTEL_INFO(dev_priv)->sseu.subslice_mask) <<
Jeff McGee0cea6502015-02-13 10:27:56 -06002075 GEN8_RPCS_SS_CNT_SHIFT;
2076 rpcs |= GEN8_RPCS_ENABLE;
2077 }
2078
Imre Deak43b67992016-08-31 19:13:02 +03002079 if (INTEL_INFO(dev_priv)->sseu.has_eu_pg) {
2080 rpcs |= INTEL_INFO(dev_priv)->sseu.eu_per_subslice <<
Jeff McGee0cea6502015-02-13 10:27:56 -06002081 GEN8_RPCS_EU_MIN_SHIFT;
Imre Deak43b67992016-08-31 19:13:02 +03002082 rpcs |= INTEL_INFO(dev_priv)->sseu.eu_per_subslice <<
Jeff McGee0cea6502015-02-13 10:27:56 -06002083 GEN8_RPCS_EU_MAX_SHIFT;
2084 rpcs |= GEN8_RPCS_ENABLE;
2085 }
2086
2087 return rpcs;
2088}
2089
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002090static u32 intel_lr_indirect_ctx_offset(struct intel_engine_cs *engine)
Michel Thierry71562912016-02-23 10:31:49 +00002091{
2092 u32 indirect_ctx_offset;
2093
Chris Wilsonc0336662016-05-06 15:40:21 +01002094 switch (INTEL_GEN(engine->i915)) {
Michel Thierry71562912016-02-23 10:31:49 +00002095 default:
Chris Wilsonc0336662016-05-06 15:40:21 +01002096 MISSING_CASE(INTEL_GEN(engine->i915));
Michel Thierry71562912016-02-23 10:31:49 +00002097 /* fall through */
Michel Thierry7bd0a2c2017-06-06 13:30:38 -07002098 case 10:
2099 indirect_ctx_offset =
2100 GEN10_CTX_RCS_INDIRECT_CTX_OFFSET_DEFAULT;
2101 break;
Michel Thierry71562912016-02-23 10:31:49 +00002102 case 9:
2103 indirect_ctx_offset =
2104 GEN9_CTX_RCS_INDIRECT_CTX_OFFSET_DEFAULT;
2105 break;
2106 case 8:
2107 indirect_ctx_offset =
2108 GEN8_CTX_RCS_INDIRECT_CTX_OFFSET_DEFAULT;
2109 break;
2110 }
2111
2112 return indirect_ctx_offset;
2113}
2114
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002115static void execlists_init_reg_state(u32 *regs,
Chris Wilsona3aabe82016-10-04 21:11:26 +01002116 struct i915_gem_context *ctx,
2117 struct intel_engine_cs *engine,
2118 struct intel_ring *ring)
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002119{
Chris Wilsona3aabe82016-10-04 21:11:26 +01002120 struct drm_i915_private *dev_priv = engine->i915;
2121 struct i915_hw_ppgtt *ppgtt = ctx->ppgtt ?: dev_priv->mm.aliasing_ppgtt;
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002122 u32 base = engine->mmio_base;
2123 bool rcs = engine->id == RCS;
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002124
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002125 /* A context is actually a big batch buffer with several
2126 * MI_LOAD_REGISTER_IMM commands followed by (reg, value) pairs. The
2127 * values we are setting here are only for the first context restore:
2128 * on a subsequent save, the GPU will recreate this batchbuffer with new
2129 * values (including all the missing MI_LOAD_REGISTER_IMM commands that
2130 * we are not initializing here).
2131 */
2132 regs[CTX_LRI_HEADER_0] = MI_LOAD_REGISTER_IMM(rcs ? 14 : 11) |
2133 MI_LRI_FORCE_POSTED;
2134
2135 CTX_REG(regs, CTX_CONTEXT_CONTROL, RING_CONTEXT_CONTROL(engine),
2136 _MASKED_BIT_ENABLE(CTX_CTRL_INHIBIT_SYN_CTX_SWITCH |
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002137 (HAS_RESOURCE_STREAMER(dev_priv) ?
2138 CTX_CTRL_RS_CTX_ENABLE : 0)));
2139 CTX_REG(regs, CTX_RING_HEAD, RING_HEAD(base), 0);
2140 CTX_REG(regs, CTX_RING_TAIL, RING_TAIL(base), 0);
2141 CTX_REG(regs, CTX_RING_BUFFER_START, RING_START(base), 0);
2142 CTX_REG(regs, CTX_RING_BUFFER_CONTROL, RING_CTL(base),
2143 RING_CTL_SIZE(ring->size) | RING_VALID);
2144 CTX_REG(regs, CTX_BB_HEAD_U, RING_BBADDR_UDW(base), 0);
2145 CTX_REG(regs, CTX_BB_HEAD_L, RING_BBADDR(base), 0);
2146 CTX_REG(regs, CTX_BB_STATE, RING_BBSTATE(base), RING_BB_PPGTT);
2147 CTX_REG(regs, CTX_SECOND_BB_HEAD_U, RING_SBBADDR_UDW(base), 0);
2148 CTX_REG(regs, CTX_SECOND_BB_HEAD_L, RING_SBBADDR(base), 0);
2149 CTX_REG(regs, CTX_SECOND_BB_STATE, RING_SBBSTATE(base), 0);
2150 if (rcs) {
Chris Wilson604a8f62017-09-21 14:54:43 +01002151 struct i915_ctx_workarounds *wa_ctx = &engine->wa_ctx;
2152
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002153 CTX_REG(regs, CTX_RCS_INDIRECT_CTX, RING_INDIRECT_CTX(base), 0);
2154 CTX_REG(regs, CTX_RCS_INDIRECT_CTX_OFFSET,
2155 RING_INDIRECT_CTX_OFFSET(base), 0);
Chris Wilson604a8f62017-09-21 14:54:43 +01002156 if (wa_ctx->indirect_ctx.size) {
Chris Wilsonbde13eb2016-08-15 10:49:07 +01002157 u32 ggtt_offset = i915_ggtt_offset(wa_ctx->vma);
Arun Siluvery17ee9502015-06-19 19:07:01 +01002158
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002159 regs[CTX_RCS_INDIRECT_CTX + 1] =
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00002160 (ggtt_offset + wa_ctx->indirect_ctx.offset) |
2161 (wa_ctx->indirect_ctx.size / CACHELINE_BYTES);
Arun Siluvery17ee9502015-06-19 19:07:01 +01002162
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002163 regs[CTX_RCS_INDIRECT_CTX_OFFSET + 1] =
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002164 intel_lr_indirect_ctx_offset(engine) << 6;
Chris Wilson604a8f62017-09-21 14:54:43 +01002165 }
2166
2167 CTX_REG(regs, CTX_BB_PER_CTX_PTR, RING_BB_PER_CTX_PTR(base), 0);
2168 if (wa_ctx->per_ctx.size) {
2169 u32 ggtt_offset = i915_ggtt_offset(wa_ctx->vma);
Arun Siluvery17ee9502015-06-19 19:07:01 +01002170
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002171 regs[CTX_BB_PER_CTX_PTR + 1] =
Tvrtko Ursulin097d4f12017-02-17 07:58:59 +00002172 (ggtt_offset + wa_ctx->per_ctx.offset) | 0x01;
Arun Siluvery17ee9502015-06-19 19:07:01 +01002173 }
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002174 }
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002175
2176 regs[CTX_LRI_HEADER_1] = MI_LOAD_REGISTER_IMM(9) | MI_LRI_FORCE_POSTED;
2177
2178 CTX_REG(regs, CTX_CTX_TIMESTAMP, RING_CTX_TIMESTAMP(base), 0);
Ville Syrjälä0d925ea2015-11-04 23:20:11 +02002179 /* PDP values well be assigned later if needed */
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002180 CTX_REG(regs, CTX_PDP3_UDW, GEN8_RING_PDP_UDW(engine, 3), 0);
2181 CTX_REG(regs, CTX_PDP3_LDW, GEN8_RING_PDP_LDW(engine, 3), 0);
2182 CTX_REG(regs, CTX_PDP2_UDW, GEN8_RING_PDP_UDW(engine, 2), 0);
2183 CTX_REG(regs, CTX_PDP2_LDW, GEN8_RING_PDP_LDW(engine, 2), 0);
2184 CTX_REG(regs, CTX_PDP1_UDW, GEN8_RING_PDP_UDW(engine, 1), 0);
2185 CTX_REG(regs, CTX_PDP1_LDW, GEN8_RING_PDP_LDW(engine, 1), 0);
2186 CTX_REG(regs, CTX_PDP0_UDW, GEN8_RING_PDP_UDW(engine, 0), 0);
2187 CTX_REG(regs, CTX_PDP0_LDW, GEN8_RING_PDP_LDW(engine, 0), 0);
Michel Thierryd7b26332015-04-08 12:13:34 +01002188
Chris Wilson949e8ab2017-02-09 14:40:36 +00002189 if (ppgtt && i915_vm_is_48bit(&ppgtt->base)) {
Michel Thierry2dba3232015-07-30 11:06:23 +01002190 /* 64b PPGTT (48bit canonical)
2191 * PDP0_DESCRIPTOR contains the base address to PML4 and
2192 * other PDP Descriptors are ignored.
2193 */
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002194 ASSIGN_CTX_PML4(ppgtt, regs);
Michel Thierry2dba3232015-07-30 11:06:23 +01002195 }
2196
Tvrtko Ursulin56e51bf2017-02-21 09:58:39 +00002197 if (rcs) {
2198 regs[CTX_LRI_HEADER_2] = MI_LOAD_REGISTER_IMM(1);
2199 CTX_REG(regs, CTX_R_PWR_CLK_STATE, GEN8_R_PWR_CLK_STATE,
2200 make_rpcs(dev_priv));
Robert Bragg19f81df2017-06-13 12:23:03 +01002201
2202 i915_oa_init_reg_state(engine, ctx, regs);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002203 }
Chris Wilsona3aabe82016-10-04 21:11:26 +01002204}
2205
2206static int
2207populate_lr_context(struct i915_gem_context *ctx,
2208 struct drm_i915_gem_object *ctx_obj,
2209 struct intel_engine_cs *engine,
2210 struct intel_ring *ring)
2211{
2212 void *vaddr;
Chris Wilsond2b4b972017-11-10 14:26:33 +00002213 u32 *regs;
Chris Wilsona3aabe82016-10-04 21:11:26 +01002214 int ret;
2215
2216 ret = i915_gem_object_set_to_cpu_domain(ctx_obj, true);
2217 if (ret) {
2218 DRM_DEBUG_DRIVER("Could not set to CPU domain\n");
2219 return ret;
2220 }
2221
2222 vaddr = i915_gem_object_pin_map(ctx_obj, I915_MAP_WB);
2223 if (IS_ERR(vaddr)) {
2224 ret = PTR_ERR(vaddr);
2225 DRM_DEBUG_DRIVER("Could not map object pages! (%d)\n", ret);
2226 return ret;
2227 }
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002228 ctx_obj->mm.dirty = true;
Chris Wilsona3aabe82016-10-04 21:11:26 +01002229
Chris Wilsond2b4b972017-11-10 14:26:33 +00002230 if (engine->default_state) {
2231 /*
2232 * We only want to copy over the template context state;
2233 * skipping over the headers reserved for GuC communication,
2234 * leaving those as zero.
2235 */
2236 const unsigned long start = LRC_HEADER_PAGES * PAGE_SIZE;
2237 void *defaults;
2238
2239 defaults = i915_gem_object_pin_map(engine->default_state,
2240 I915_MAP_WB);
2241 if (IS_ERR(defaults))
2242 return PTR_ERR(defaults);
2243
2244 memcpy(vaddr + start, defaults + start, engine->context_size);
2245 i915_gem_object_unpin_map(engine->default_state);
2246 }
2247
Chris Wilsona3aabe82016-10-04 21:11:26 +01002248 /* The second page of the context object contains some fields which must
2249 * be set up prior to the first execution. */
Chris Wilsond2b4b972017-11-10 14:26:33 +00002250 regs = vaddr + LRC_STATE_PN * PAGE_SIZE;
2251 execlists_init_reg_state(regs, ctx, engine, ring);
2252 if (!engine->default_state)
2253 regs[CTX_CONTEXT_CONTROL + 1] |=
2254 _MASKED_BIT_ENABLE(CTX_CTRL_ENGINE_CTX_RESTORE_INHIBIT);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002255
Tvrtko Ursulin7d774ca2016-04-12 15:40:42 +01002256 i915_gem_object_unpin_map(ctx_obj);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002257
2258 return 0;
2259}
2260
Chris Wilsone2efd132016-05-24 14:53:34 +01002261static int execlists_context_deferred_alloc(struct i915_gem_context *ctx,
Chris Wilson978f1e02016-04-28 09:56:54 +01002262 struct intel_engine_cs *engine)
Oscar Mateoede7d422014-07-24 17:04:12 +01002263{
Oscar Mateo8c8579172014-07-24 17:04:14 +01002264 struct drm_i915_gem_object *ctx_obj;
Chris Wilson9021ad02016-05-24 14:53:37 +01002265 struct intel_context *ce = &ctx->engine[engine->id];
Chris Wilsonbf3783e2016-08-15 10:48:54 +01002266 struct i915_vma *vma;
Oscar Mateo8c8579172014-07-24 17:04:14 +01002267 uint32_t context_size;
Chris Wilson7e37f882016-08-02 22:50:21 +01002268 struct intel_ring *ring;
Oscar Mateo8c8579172014-07-24 17:04:14 +01002269 int ret;
2270
Chris Wilson9021ad02016-05-24 14:53:37 +01002271 WARN_ON(ce->state);
Oscar Mateoede7d422014-07-24 17:04:12 +01002272
Joonas Lahtinen63ffbcd2017-04-28 10:53:36 +03002273 context_size = round_up(engine->context_size, I915_GTT_PAGE_SIZE);
Oscar Mateo8c8579172014-07-24 17:04:14 +01002274
Michel Thierry0b29c752017-09-13 09:56:00 +01002275 /*
2276 * Before the actual start of the context image, we insert a few pages
2277 * for our own use and for sharing with the GuC.
2278 */
2279 context_size += LRC_HEADER_PAGES * PAGE_SIZE;
Alex Daid1675192015-08-12 15:43:43 +01002280
Tvrtko Ursulin12d79d72016-12-01 14:16:37 +00002281 ctx_obj = i915_gem_object_create(ctx->i915, context_size);
Chris Wilsonfe3db792016-04-25 13:32:13 +01002282 if (IS_ERR(ctx_obj)) {
Dan Carpenter3126a662015-04-30 17:30:50 +03002283 DRM_DEBUG_DRIVER("Alloc LRC backing obj failed.\n");
Chris Wilsonfe3db792016-04-25 13:32:13 +01002284 return PTR_ERR(ctx_obj);
Oscar Mateo8c8579172014-07-24 17:04:14 +01002285 }
2286
Chris Wilsona01cb372017-01-16 15:21:30 +00002287 vma = i915_vma_instance(ctx_obj, &ctx->i915->ggtt.base, NULL);
Chris Wilsonbf3783e2016-08-15 10:48:54 +01002288 if (IS_ERR(vma)) {
2289 ret = PTR_ERR(vma);
2290 goto error_deref_obj;
2291 }
2292
Chris Wilson7e37f882016-08-02 22:50:21 +01002293 ring = intel_engine_create_ring(engine, ctx->ring_size);
Chris Wilsondca33ec2016-08-02 22:50:20 +01002294 if (IS_ERR(ring)) {
2295 ret = PTR_ERR(ring);
Nick Hoathe84fe802015-09-11 12:53:46 +01002296 goto error_deref_obj;
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002297 }
2298
Chris Wilsondca33ec2016-08-02 22:50:20 +01002299 ret = populate_lr_context(ctx, ctx_obj, engine, ring);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002300 if (ret) {
2301 DRM_DEBUG_DRIVER("Failed to populate LRC: %d\n", ret);
Chris Wilsondca33ec2016-08-02 22:50:20 +01002302 goto error_ring_free;
Oscar Mateo84c23772014-07-24 17:04:15 +01002303 }
2304
Chris Wilsondca33ec2016-08-02 22:50:20 +01002305 ce->ring = ring;
Chris Wilsonbf3783e2016-08-15 10:48:54 +01002306 ce->state = vma;
Oscar Mateoede7d422014-07-24 17:04:12 +01002307
2308 return 0;
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002309
Chris Wilsondca33ec2016-08-02 22:50:20 +01002310error_ring_free:
Chris Wilson7e37f882016-08-02 22:50:21 +01002311 intel_ring_free(ring);
Nick Hoathe84fe802015-09-11 12:53:46 +01002312error_deref_obj:
Chris Wilsonf8c417c2016-07-20 13:31:53 +01002313 i915_gem_object_put(ctx_obj);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002314 return ret;
Oscar Mateoede7d422014-07-24 17:04:12 +01002315}
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002316
Chris Wilson821ed7d2016-09-09 14:11:53 +01002317void intel_lr_context_resume(struct drm_i915_private *dev_priv)
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002318{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00002319 struct intel_engine_cs *engine;
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002320 struct i915_gem_context *ctx;
Akash Goel3b3f1652016-10-13 22:44:48 +05302321 enum intel_engine_id id;
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002322
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002323 /* Because we emit WA_TAIL_DWORDS there may be a disparity
2324 * between our bookkeeping in ce->ring->head and ce->ring->tail and
2325 * that stored in context. As we only write new commands from
2326 * ce->ring->tail onwards, everything before that is junk. If the GPU
2327 * starts reading from its RING_HEAD from the context, it may try to
2328 * execute that junk and die.
2329 *
2330 * So to avoid that we reset the context images upon resume. For
2331 * simplicity, we just zero everything out.
2332 */
Chris Wilson829a0af2017-06-20 12:05:45 +01002333 list_for_each_entry(ctx, &dev_priv->contexts.list, link) {
Akash Goel3b3f1652016-10-13 22:44:48 +05302334 for_each_engine(engine, dev_priv, id) {
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002335 struct intel_context *ce = &ctx->engine[engine->id];
2336 u32 *reg;
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002337
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002338 if (!ce->state)
2339 continue;
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002340
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002341 reg = i915_gem_object_pin_map(ce->state->obj,
2342 I915_MAP_WB);
2343 if (WARN_ON(IS_ERR(reg)))
2344 continue;
Tvrtko Ursulin7d774ca2016-04-12 15:40:42 +01002345
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002346 reg += LRC_STATE_PN * PAGE_SIZE / sizeof(*reg);
2347 reg[CTX_RING_HEAD+1] = 0;
2348 reg[CTX_RING_TAIL+1] = 0;
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002349
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002350 ce->state->obj->mm.dirty = true;
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002351 i915_gem_object_unpin_map(ce->state->obj);
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002352
Chris Wilsone6ba9992017-04-25 14:00:49 +01002353 intel_ring_reset(ce->ring, 0);
Chris Wilsonbafb2f72016-09-21 14:51:08 +01002354 }
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002355 }
2356}