blob: 1af84c52115cd26f94ec598fc3635b14c6db83ef [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 */
134
135#include <drm/drmP.h>
136#include <drm/i915_drm.h>
137#include "i915_drv.h"
Peter Antoine3bbaba02015-07-10 20:13:11 +0300138#include "intel_mocs.h"
Oscar Mateo127f1002014-07-24 17:04:11 +0100139
Michael H. Nguyen468c6812014-11-13 17:51:49 +0000140#define GEN9_LR_CONTEXT_RENDER_SIZE (22 * PAGE_SIZE)
Oscar Mateo8c8579172014-07-24 17:04:14 +0100141#define GEN8_LR_CONTEXT_RENDER_SIZE (20 * PAGE_SIZE)
142#define GEN8_LR_CONTEXT_OTHER_SIZE (2 * PAGE_SIZE)
143
Thomas Daniele981e7b2014-07-24 17:04:39 +0100144#define RING_EXECLIST_QFULL (1 << 0x2)
145#define RING_EXECLIST1_VALID (1 << 0x3)
146#define RING_EXECLIST0_VALID (1 << 0x4)
147#define RING_EXECLIST_ACTIVE_STATUS (3 << 0xE)
148#define RING_EXECLIST1_ACTIVE (1 << 0x11)
149#define RING_EXECLIST0_ACTIVE (1 << 0x12)
150
151#define GEN8_CTX_STATUS_IDLE_ACTIVE (1 << 0)
152#define GEN8_CTX_STATUS_PREEMPTED (1 << 1)
153#define GEN8_CTX_STATUS_ELEMENT_SWITCH (1 << 2)
154#define GEN8_CTX_STATUS_ACTIVE_IDLE (1 << 3)
155#define GEN8_CTX_STATUS_COMPLETE (1 << 4)
156#define GEN8_CTX_STATUS_LITE_RESTORE (1 << 15)
Oscar Mateo8670d6f2014-07-24 17:04:17 +0100157
158#define CTX_LRI_HEADER_0 0x01
159#define CTX_CONTEXT_CONTROL 0x02
160#define CTX_RING_HEAD 0x04
161#define CTX_RING_TAIL 0x06
162#define CTX_RING_BUFFER_START 0x08
163#define CTX_RING_BUFFER_CONTROL 0x0a
164#define CTX_BB_HEAD_U 0x0c
165#define CTX_BB_HEAD_L 0x0e
166#define CTX_BB_STATE 0x10
167#define CTX_SECOND_BB_HEAD_U 0x12
168#define CTX_SECOND_BB_HEAD_L 0x14
169#define CTX_SECOND_BB_STATE 0x16
170#define CTX_BB_PER_CTX_PTR 0x18
171#define CTX_RCS_INDIRECT_CTX 0x1a
172#define CTX_RCS_INDIRECT_CTX_OFFSET 0x1c
173#define CTX_LRI_HEADER_1 0x21
174#define CTX_CTX_TIMESTAMP 0x22
175#define CTX_PDP3_UDW 0x24
176#define CTX_PDP3_LDW 0x26
177#define CTX_PDP2_UDW 0x28
178#define CTX_PDP2_LDW 0x2a
179#define CTX_PDP1_UDW 0x2c
180#define CTX_PDP1_LDW 0x2e
181#define CTX_PDP0_UDW 0x30
182#define CTX_PDP0_LDW 0x32
183#define CTX_LRI_HEADER_2 0x41
184#define CTX_R_PWR_CLK_STATE 0x42
185#define CTX_GPGPU_CSR_BASE_ADDRESS 0x44
186
Ben Widawsky84b790f2014-07-24 17:04:36 +0100187#define GEN8_CTX_VALID (1<<0)
188#define GEN8_CTX_FORCE_PD_RESTORE (1<<1)
189#define GEN8_CTX_FORCE_RESTORE (1<<2)
190#define GEN8_CTX_L3LLC_COHERENT (1<<5)
191#define GEN8_CTX_PRIVILEGE (1<<8)
Michel Thierrye5815a22015-04-08 12:13:32 +0100192
193#define ASSIGN_CTX_PDP(ppgtt, reg_state, n) { \
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); \
197}
198
Michel Thierry2dba3232015-07-30 11:06:23 +0100199#define ASSIGN_CTX_PML4(ppgtt, reg_state) { \
200 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)); \
202}
203
Ben Widawsky84b790f2014-07-24 17:04:36 +0100204enum {
205 ADVANCED_CONTEXT = 0,
Michel Thierry2dba3232015-07-30 11:06:23 +0100206 LEGACY_32B_CONTEXT,
Ben Widawsky84b790f2014-07-24 17:04:36 +0100207 ADVANCED_AD_CONTEXT,
208 LEGACY_64B_CONTEXT
209};
Michel Thierry2dba3232015-07-30 11:06:23 +0100210#define GEN8_CTX_ADDRESSING_MODE_SHIFT 3
211#define GEN8_CTX_ADDRESSING_MODE(dev) (USES_FULL_48BIT_PPGTT(dev) ?\
212 LEGACY_64B_CONTEXT :\
213 LEGACY_32B_CONTEXT)
Ben Widawsky84b790f2014-07-24 17:04:36 +0100214enum {
215 FAULT_AND_HANG = 0,
216 FAULT_AND_HALT, /* Debug only */
217 FAULT_AND_STREAM,
218 FAULT_AND_CONTINUE /* Unsupported */
219};
220#define GEN8_CTX_ID_SHIFT 32
Arun Siluvery17ee9502015-06-19 19:07:01 +0100221#define CTX_RCS_INDIRECT_CTX_OFFSET_DEFAULT 0x17
Ben Widawsky84b790f2014-07-24 17:04:36 +0100222
Mika Kuoppala8ba319d2015-07-03 17:09:35 +0300223static int intel_lr_context_pin(struct drm_i915_gem_request *rq);
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000224
Oscar Mateo73e4d072014-07-24 17:04:48 +0100225/**
226 * intel_sanitize_enable_execlists() - sanitize i915.enable_execlists
227 * @dev: DRM device.
228 * @enable_execlists: value of i915.enable_execlists module parameter.
229 *
230 * Only certain platforms support Execlists (the prerequisites being
Thomas Daniel27401d12014-12-11 12:48:35 +0000231 * support for Logical Ring Contexts and Aliasing PPGTT or better).
Oscar Mateo73e4d072014-07-24 17:04:48 +0100232 *
233 * Return: 1 if Execlists is supported and has to be enabled.
234 */
Oscar Mateo127f1002014-07-24 17:04:11 +0100235int intel_sanitize_enable_execlists(struct drm_device *dev, int enable_execlists)
236{
Daniel Vetterbd84b1e2014-08-11 15:57:57 +0200237 WARN_ON(i915.enable_ppgtt == -1);
238
Damien Lespiau70ee45e2014-11-14 15:05:59 +0000239 if (INTEL_INFO(dev)->gen >= 9)
240 return 1;
241
Oscar Mateo127f1002014-07-24 17:04:11 +0100242 if (enable_execlists == 0)
243 return 0;
244
Oscar Mateo14bf9932014-07-24 17:04:34 +0100245 if (HAS_LOGICAL_RING_CONTEXTS(dev) && USES_PPGTT(dev) &&
246 i915.use_mmio_flip >= 0)
Oscar Mateo127f1002014-07-24 17:04:11 +0100247 return 1;
248
249 return 0;
250}
Oscar Mateoede7d422014-07-24 17:04:12 +0100251
Oscar Mateo73e4d072014-07-24 17:04:48 +0100252/**
253 * intel_execlists_ctx_id() - get the Execlists Context ID
254 * @ctx_obj: Logical Ring Context backing object.
255 *
256 * Do not confuse with ctx->id! Unfortunately we have a name overload
257 * here: the old context ID we pass to userspace as a handler so that
258 * they can refer to a context, and the new context ID we pass to the
259 * ELSP so that the GPU can inform us of the context status via
260 * interrupts.
261 *
262 * Return: 20-bits globally unique context ID.
263 */
Ben Widawsky84b790f2014-07-24 17:04:36 +0100264u32 intel_execlists_ctx_id(struct drm_i915_gem_object *ctx_obj)
265{
Alex Daid1675192015-08-12 15:43:43 +0100266 u32 lrca = i915_gem_obj_ggtt_offset(ctx_obj) +
267 LRC_PPHWSP_PN * PAGE_SIZE;
Ben Widawsky84b790f2014-07-24 17:04:36 +0100268
269 /* LRCA is required to be 4K aligned so the more significant 20 bits
270 * are globally unique */
271 return lrca >> 12;
272}
273
Dave Gordon919f1f52015-08-12 15:43:38 +0100274uint64_t intel_lr_context_descriptor(struct intel_context *ctx,
275 struct intel_engine_cs *ring)
Ben Widawsky84b790f2014-07-24 17:04:36 +0100276{
Nick Hoath203a5712015-02-06 11:30:04 +0000277 struct drm_device *dev = ring->dev;
Dave Gordon919f1f52015-08-12 15:43:38 +0100278 struct drm_i915_gem_object *ctx_obj = ctx->engine[ring->id].state;
Ben Widawsky84b790f2014-07-24 17:04:36 +0100279 uint64_t desc;
Alex Daid1675192015-08-12 15:43:43 +0100280 uint64_t lrca = i915_gem_obj_ggtt_offset(ctx_obj) +
281 LRC_PPHWSP_PN * PAGE_SIZE;
Michel Thierryacdd8842014-07-24 17:04:38 +0100282
283 WARN_ON(lrca & 0xFFFFFFFF00000FFFULL);
Ben Widawsky84b790f2014-07-24 17:04:36 +0100284
285 desc = GEN8_CTX_VALID;
Michel Thierry2dba3232015-07-30 11:06:23 +0100286 desc |= GEN8_CTX_ADDRESSING_MODE(dev) << GEN8_CTX_ADDRESSING_MODE_SHIFT;
Arun Siluvery51847fb2015-04-07 14:01:33 +0100287 if (IS_GEN8(ctx_obj->base.dev))
288 desc |= GEN8_CTX_L3LLC_COHERENT;
Ben Widawsky84b790f2014-07-24 17:04:36 +0100289 desc |= GEN8_CTX_PRIVILEGE;
290 desc |= lrca;
291 desc |= (u64)intel_execlists_ctx_id(ctx_obj) << GEN8_CTX_ID_SHIFT;
292
293 /* TODO: WaDisableLiteRestore when we start using semaphore
294 * signalling between Command Streamers */
295 /* desc |= GEN8_CTX_FORCE_RESTORE; */
296
Nick Hoath203a5712015-02-06 11:30:04 +0000297 /* WaEnableForceRestoreInCtxtDescForVCS:skl */
298 if (IS_GEN9(dev) &&
299 INTEL_REVID(dev) <= SKL_REVID_B0 &&
300 (ring->id == BCS || ring->id == VCS ||
301 ring->id == VECS || ring->id == VCS2))
302 desc |= GEN8_CTX_FORCE_RESTORE;
303
Ben Widawsky84b790f2014-07-24 17:04:36 +0100304 return desc;
305}
306
Mika Kuoppalacc3c4252015-07-03 17:09:36 +0300307static void execlists_elsp_write(struct drm_i915_gem_request *rq0,
308 struct drm_i915_gem_request *rq1)
Ben Widawsky84b790f2014-07-24 17:04:36 +0100309{
Mika Kuoppalacc3c4252015-07-03 17:09:36 +0300310
311 struct intel_engine_cs *ring = rq0->ring;
Tvrtko Ursulin6e7cc472014-11-13 17:51:51 +0000312 struct drm_device *dev = ring->dev;
313 struct drm_i915_private *dev_priv = dev->dev_private;
Mika Kuoppala1cff8cc2015-07-06 11:09:25 +0300314 uint64_t desc[2];
Ben Widawsky84b790f2014-07-24 17:04:36 +0100315
Mika Kuoppala1cff8cc2015-07-06 11:09:25 +0300316 if (rq1) {
Dave Gordon919f1f52015-08-12 15:43:38 +0100317 desc[1] = intel_lr_context_descriptor(rq1->ctx, rq1->ring);
Mika Kuoppala1cff8cc2015-07-06 11:09:25 +0300318 rq1->elsp_submitted++;
319 } else {
320 desc[1] = 0;
321 }
Ben Widawsky84b790f2014-07-24 17:04:36 +0100322
Dave Gordon919f1f52015-08-12 15:43:38 +0100323 desc[0] = intel_lr_context_descriptor(rq0->ctx, rq0->ring);
Mika Kuoppala1cff8cc2015-07-06 11:09:25 +0300324 rq0->elsp_submitted++;
Ben Widawsky84b790f2014-07-24 17:04:36 +0100325
Mika Kuoppala1cff8cc2015-07-06 11:09:25 +0300326 /* You must always write both descriptors in the order below. */
Chris Wilsona6111f72015-04-07 16:21:02 +0100327 spin_lock(&dev_priv->uncore.lock);
328 intel_uncore_forcewake_get__locked(dev_priv, FORCEWAKE_ALL);
Mika Kuoppala1cff8cc2015-07-06 11:09:25 +0300329 I915_WRITE_FW(RING_ELSP(ring), upper_32_bits(desc[1]));
330 I915_WRITE_FW(RING_ELSP(ring), lower_32_bits(desc[1]));
Chris Wilson6daccb02015-01-16 11:34:35 +0200331
Mika Kuoppala1cff8cc2015-07-06 11:09:25 +0300332 I915_WRITE_FW(RING_ELSP(ring), upper_32_bits(desc[0]));
Ben Widawsky84b790f2014-07-24 17:04:36 +0100333 /* The context is automatically loaded after the following */
Mika Kuoppala1cff8cc2015-07-06 11:09:25 +0300334 I915_WRITE_FW(RING_ELSP(ring), lower_32_bits(desc[0]));
Ben Widawsky84b790f2014-07-24 17:04:36 +0100335
Mika Kuoppala1cff8cc2015-07-06 11:09:25 +0300336 /* ELSP is a wo register, use another nearby reg for posting */
Chris Wilsona6111f72015-04-07 16:21:02 +0100337 POSTING_READ_FW(RING_EXECLIST_STATUS(ring));
338 intel_uncore_forcewake_put__locked(dev_priv, FORCEWAKE_ALL);
339 spin_unlock(&dev_priv->uncore.lock);
Ben Widawsky84b790f2014-07-24 17:04:36 +0100340}
341
Mika Kuoppala05d98242015-07-03 17:09:33 +0300342static int execlists_update_context(struct drm_i915_gem_request *rq)
Oscar Mateoae1250b2014-07-24 17:04:37 +0100343{
Mika Kuoppala05d98242015-07-03 17:09:33 +0300344 struct intel_engine_cs *ring = rq->ring;
345 struct i915_hw_ppgtt *ppgtt = rq->ctx->ppgtt;
346 struct drm_i915_gem_object *ctx_obj = rq->ctx->engine[ring->id].state;
347 struct drm_i915_gem_object *rb_obj = rq->ringbuf->obj;
Oscar Mateoae1250b2014-07-24 17:04:37 +0100348 struct page *page;
349 uint32_t *reg_state;
350
Mika Kuoppala05d98242015-07-03 17:09:33 +0300351 BUG_ON(!ctx_obj);
352 WARN_ON(!i915_gem_obj_is_pinned(ctx_obj));
353 WARN_ON(!i915_gem_obj_is_pinned(rb_obj));
354
Alex Daid1675192015-08-12 15:43:43 +0100355 page = i915_gem_object_get_page(ctx_obj, LRC_STATE_PN);
Oscar Mateoae1250b2014-07-24 17:04:37 +0100356 reg_state = kmap_atomic(page);
357
Mika Kuoppala05d98242015-07-03 17:09:33 +0300358 reg_state[CTX_RING_TAIL+1] = rq->tail;
359 reg_state[CTX_RING_BUFFER_START+1] = i915_gem_obj_ggtt_offset(rb_obj);
Oscar Mateoae1250b2014-07-24 17:04:37 +0100360
Michel Thierry2dba3232015-07-30 11:06:23 +0100361 if (ppgtt && !USES_FULL_48BIT_PPGTT(ppgtt->base.dev)) {
362 /* True 32b PPGTT with dynamic page allocation: update PDP
363 * registers and point the unallocated PDPs to scratch page.
364 * PML4 is allocated during ppgtt init, so this is not needed
365 * in 48-bit mode.
366 */
Michel Thierryd7b26332015-04-08 12:13:34 +0100367 ASSIGN_CTX_PDP(ppgtt, reg_state, 3);
368 ASSIGN_CTX_PDP(ppgtt, reg_state, 2);
369 ASSIGN_CTX_PDP(ppgtt, reg_state, 1);
370 ASSIGN_CTX_PDP(ppgtt, reg_state, 0);
371 }
372
Oscar Mateoae1250b2014-07-24 17:04:37 +0100373 kunmap_atomic(reg_state);
374
375 return 0;
376}
377
Mika Kuoppalad8cb8872015-07-03 17:09:32 +0300378static void execlists_submit_requests(struct drm_i915_gem_request *rq0,
379 struct drm_i915_gem_request *rq1)
Ben Widawsky84b790f2014-07-24 17:04:36 +0100380{
Mika Kuoppala05d98242015-07-03 17:09:33 +0300381 execlists_update_context(rq0);
Oscar Mateoae1250b2014-07-24 17:04:37 +0100382
Mika Kuoppalacc3c4252015-07-03 17:09:36 +0300383 if (rq1)
Mika Kuoppala05d98242015-07-03 17:09:33 +0300384 execlists_update_context(rq1);
Ben Widawsky84b790f2014-07-24 17:04:36 +0100385
Mika Kuoppalacc3c4252015-07-03 17:09:36 +0300386 execlists_elsp_write(rq0, rq1);
Ben Widawsky84b790f2014-07-24 17:04:36 +0100387}
388
Michel Thierryacdd8842014-07-24 17:04:38 +0100389static void execlists_context_unqueue(struct intel_engine_cs *ring)
390{
Nick Hoath6d3d8272015-01-15 13:10:39 +0000391 struct drm_i915_gem_request *req0 = NULL, *req1 = NULL;
392 struct drm_i915_gem_request *cursor = NULL, *tmp = NULL;
Thomas Daniele981e7b2014-07-24 17:04:39 +0100393
394 assert_spin_locked(&ring->execlist_lock);
Michel Thierryacdd8842014-07-24 17:04:38 +0100395
Peter Antoine779949f2015-05-11 16:03:27 +0100396 /*
397 * If irqs are not active generate a warning as batches that finish
398 * without the irqs may get lost and a GPU Hang may occur.
399 */
400 WARN_ON(!intel_irqs_enabled(ring->dev->dev_private));
401
Michel Thierryacdd8842014-07-24 17:04:38 +0100402 if (list_empty(&ring->execlist_queue))
403 return;
404
405 /* Try to read in pairs */
406 list_for_each_entry_safe(cursor, tmp, &ring->execlist_queue,
407 execlist_link) {
408 if (!req0) {
409 req0 = cursor;
Nick Hoath6d3d8272015-01-15 13:10:39 +0000410 } else if (req0->ctx == cursor->ctx) {
Michel Thierryacdd8842014-07-24 17:04:38 +0100411 /* Same ctx: ignore first request, as second request
412 * will update tail past first request's workload */
Oscar Mateoe1fee722014-07-24 17:04:40 +0100413 cursor->elsp_submitted = req0->elsp_submitted;
Michel Thierryacdd8842014-07-24 17:04:38 +0100414 list_del(&req0->execlist_link);
Thomas Danielc86ee3a92014-11-13 10:27:05 +0000415 list_add_tail(&req0->execlist_link,
416 &ring->execlist_retired_req_list);
Michel Thierryacdd8842014-07-24 17:04:38 +0100417 req0 = cursor;
418 } else {
419 req1 = cursor;
420 break;
421 }
422 }
423
Michel Thierry53292cd2015-04-15 18:11:33 +0100424 if (IS_GEN8(ring->dev) || IS_GEN9(ring->dev)) {
425 /*
426 * WaIdleLiteRestore: make sure we never cause a lite
427 * restore with HEAD==TAIL
428 */
Michel Thierryd63f8202015-04-27 12:31:44 +0100429 if (req0->elsp_submitted) {
Michel Thierry53292cd2015-04-15 18:11:33 +0100430 /*
431 * Apply the wa NOOPS to prevent ring:HEAD == req:TAIL
432 * as we resubmit the request. See gen8_emit_request()
433 * for where we prepare the padding after the end of the
434 * request.
435 */
436 struct intel_ringbuffer *ringbuf;
437
438 ringbuf = req0->ctx->engine[ring->id].ringbuf;
439 req0->tail += 8;
440 req0->tail &= ringbuf->size - 1;
441 }
442 }
443
Oscar Mateoe1fee722014-07-24 17:04:40 +0100444 WARN_ON(req1 && req1->elsp_submitted);
445
Mika Kuoppalad8cb8872015-07-03 17:09:32 +0300446 execlists_submit_requests(req0, req1);
Michel Thierryacdd8842014-07-24 17:04:38 +0100447}
448
Thomas Daniele981e7b2014-07-24 17:04:39 +0100449static bool execlists_check_remove_request(struct intel_engine_cs *ring,
450 u32 request_id)
451{
Nick Hoath6d3d8272015-01-15 13:10:39 +0000452 struct drm_i915_gem_request *head_req;
Thomas Daniele981e7b2014-07-24 17:04:39 +0100453
454 assert_spin_locked(&ring->execlist_lock);
455
456 head_req = list_first_entry_or_null(&ring->execlist_queue,
Nick Hoath6d3d8272015-01-15 13:10:39 +0000457 struct drm_i915_gem_request,
Thomas Daniele981e7b2014-07-24 17:04:39 +0100458 execlist_link);
459
460 if (head_req != NULL) {
461 struct drm_i915_gem_object *ctx_obj =
Nick Hoath6d3d8272015-01-15 13:10:39 +0000462 head_req->ctx->engine[ring->id].state;
Thomas Daniele981e7b2014-07-24 17:04:39 +0100463 if (intel_execlists_ctx_id(ctx_obj) == request_id) {
Oscar Mateoe1fee722014-07-24 17:04:40 +0100464 WARN(head_req->elsp_submitted == 0,
465 "Never submitted head request\n");
466
467 if (--head_req->elsp_submitted <= 0) {
468 list_del(&head_req->execlist_link);
Thomas Danielc86ee3a92014-11-13 10:27:05 +0000469 list_add_tail(&head_req->execlist_link,
470 &ring->execlist_retired_req_list);
Oscar Mateoe1fee722014-07-24 17:04:40 +0100471 return true;
472 }
Thomas Daniele981e7b2014-07-24 17:04:39 +0100473 }
474 }
475
476 return false;
477}
478
Oscar Mateo73e4d072014-07-24 17:04:48 +0100479/**
Daniel Vetter3f7531c2014-12-10 17:41:43 +0100480 * intel_lrc_irq_handler() - handle Context Switch interrupts
Oscar Mateo73e4d072014-07-24 17:04:48 +0100481 * @ring: Engine Command Streamer to handle.
482 *
483 * Check the unread Context Status Buffers and manage the submission of new
484 * contexts to the ELSP accordingly.
485 */
Daniel Vetter3f7531c2014-12-10 17:41:43 +0100486void intel_lrc_irq_handler(struct intel_engine_cs *ring)
Thomas Daniele981e7b2014-07-24 17:04:39 +0100487{
488 struct drm_i915_private *dev_priv = ring->dev->dev_private;
489 u32 status_pointer;
490 u8 read_pointer;
491 u8 write_pointer;
492 u32 status;
493 u32 status_id;
494 u32 submit_contexts = 0;
495
496 status_pointer = I915_READ(RING_CONTEXT_STATUS_PTR(ring));
497
498 read_pointer = ring->next_context_status_buffer;
499 write_pointer = status_pointer & 0x07;
500 if (read_pointer > write_pointer)
501 write_pointer += 6;
502
503 spin_lock(&ring->execlist_lock);
504
505 while (read_pointer < write_pointer) {
506 read_pointer++;
507 status = I915_READ(RING_CONTEXT_STATUS_BUF(ring) +
508 (read_pointer % 6) * 8);
509 status_id = I915_READ(RING_CONTEXT_STATUS_BUF(ring) +
510 (read_pointer % 6) * 8 + 4);
511
Mika Kuoppala031a8932015-08-06 17:09:17 +0300512 if (status & GEN8_CTX_STATUS_IDLE_ACTIVE)
513 continue;
514
Oscar Mateoe1fee722014-07-24 17:04:40 +0100515 if (status & GEN8_CTX_STATUS_PREEMPTED) {
516 if (status & GEN8_CTX_STATUS_LITE_RESTORE) {
517 if (execlists_check_remove_request(ring, status_id))
518 WARN(1, "Lite Restored request removed from queue\n");
519 } else
520 WARN(1, "Preemption without Lite Restore\n");
521 }
522
523 if ((status & GEN8_CTX_STATUS_ACTIVE_IDLE) ||
524 (status & GEN8_CTX_STATUS_ELEMENT_SWITCH)) {
Thomas Daniele981e7b2014-07-24 17:04:39 +0100525 if (execlists_check_remove_request(ring, status_id))
526 submit_contexts++;
527 }
528 }
529
530 if (submit_contexts != 0)
531 execlists_context_unqueue(ring);
532
533 spin_unlock(&ring->execlist_lock);
534
535 WARN(submit_contexts > 2, "More than two context complete events?\n");
536 ring->next_context_status_buffer = write_pointer % 6;
537
538 I915_WRITE(RING_CONTEXT_STATUS_PTR(ring),
Mika Kuoppalacc536992015-08-06 17:00:59 +0300539 _MASKED_FIELD(0x07 << 8, ((u32)ring->next_context_status_buffer & 0x07) << 8));
Thomas Daniele981e7b2014-07-24 17:04:39 +0100540}
541
John Harrisonae707972015-05-29 17:44:14 +0100542static int execlists_context_queue(struct drm_i915_gem_request *request)
Michel Thierryacdd8842014-07-24 17:04:38 +0100543{
John Harrisonae707972015-05-29 17:44:14 +0100544 struct intel_engine_cs *ring = request->ring;
Nick Hoath6d3d8272015-01-15 13:10:39 +0000545 struct drm_i915_gem_request *cursor;
Oscar Mateof1ad5a12014-07-24 17:04:41 +0100546 int num_elements = 0;
Michel Thierryacdd8842014-07-24 17:04:38 +0100547
John Harrisonae707972015-05-29 17:44:14 +0100548 if (request->ctx != ring->default_context)
Mika Kuoppala8ba319d2015-07-03 17:09:35 +0300549 intel_lr_context_pin(request);
John Harrison9bb1af42015-05-29 17:44:13 +0100550
551 i915_gem_request_reference(request);
552
Chris Wilsonb5eba372015-04-07 16:20:48 +0100553 spin_lock_irq(&ring->execlist_lock);
Michel Thierryacdd8842014-07-24 17:04:38 +0100554
Oscar Mateof1ad5a12014-07-24 17:04:41 +0100555 list_for_each_entry(cursor, &ring->execlist_queue, execlist_link)
556 if (++num_elements > 2)
557 break;
558
559 if (num_elements > 2) {
Nick Hoath6d3d8272015-01-15 13:10:39 +0000560 struct drm_i915_gem_request *tail_req;
Oscar Mateof1ad5a12014-07-24 17:04:41 +0100561
562 tail_req = list_last_entry(&ring->execlist_queue,
Nick Hoath6d3d8272015-01-15 13:10:39 +0000563 struct drm_i915_gem_request,
Oscar Mateof1ad5a12014-07-24 17:04:41 +0100564 execlist_link);
565
John Harrisonae707972015-05-29 17:44:14 +0100566 if (request->ctx == tail_req->ctx) {
Oscar Mateof1ad5a12014-07-24 17:04:41 +0100567 WARN(tail_req->elsp_submitted != 0,
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000568 "More than 2 already-submitted reqs queued\n");
Oscar Mateof1ad5a12014-07-24 17:04:41 +0100569 list_del(&tail_req->execlist_link);
Thomas Danielc86ee3a92014-11-13 10:27:05 +0000570 list_add_tail(&tail_req->execlist_link,
571 &ring->execlist_retired_req_list);
Oscar Mateof1ad5a12014-07-24 17:04:41 +0100572 }
573 }
574
Nick Hoath6d3d8272015-01-15 13:10:39 +0000575 list_add_tail(&request->execlist_link, &ring->execlist_queue);
Oscar Mateof1ad5a12014-07-24 17:04:41 +0100576 if (num_elements == 0)
Michel Thierryacdd8842014-07-24 17:04:38 +0100577 execlists_context_unqueue(ring);
578
Chris Wilsonb5eba372015-04-07 16:20:48 +0100579 spin_unlock_irq(&ring->execlist_lock);
Michel Thierryacdd8842014-07-24 17:04:38 +0100580
581 return 0;
582}
583
John Harrison2f200552015-05-29 17:43:53 +0100584static int logical_ring_invalidate_all_caches(struct drm_i915_gem_request *req)
Oscar Mateoba8b7cc2014-07-24 17:04:33 +0100585{
John Harrison2f200552015-05-29 17:43:53 +0100586 struct intel_engine_cs *ring = req->ring;
Oscar Mateoba8b7cc2014-07-24 17:04:33 +0100587 uint32_t flush_domains;
588 int ret;
589
590 flush_domains = 0;
591 if (ring->gpu_caches_dirty)
592 flush_domains = I915_GEM_GPU_DOMAINS;
593
John Harrison7deb4d32015-05-29 17:43:59 +0100594 ret = ring->emit_flush(req, I915_GEM_GPU_DOMAINS, flush_domains);
Oscar Mateoba8b7cc2014-07-24 17:04:33 +0100595 if (ret)
596 return ret;
597
598 ring->gpu_caches_dirty = false;
599 return 0;
600}
601
John Harrison535fbe82015-05-29 17:43:32 +0100602static int execlists_move_to_gpu(struct drm_i915_gem_request *req,
Oscar Mateoba8b7cc2014-07-24 17:04:33 +0100603 struct list_head *vmas)
604{
John Harrison535fbe82015-05-29 17:43:32 +0100605 const unsigned other_rings = ~intel_ring_flag(req->ring);
Oscar Mateoba8b7cc2014-07-24 17:04:33 +0100606 struct i915_vma *vma;
607 uint32_t flush_domains = 0;
608 bool flush_chipset = false;
609 int ret;
610
611 list_for_each_entry(vma, vmas, exec_list) {
612 struct drm_i915_gem_object *obj = vma->obj;
613
Chris Wilson03ade512015-04-27 13:41:18 +0100614 if (obj->active & other_rings) {
John Harrison91af1272015-06-18 13:14:56 +0100615 ret = i915_gem_object_sync(obj, req->ring, &req);
Chris Wilson03ade512015-04-27 13:41:18 +0100616 if (ret)
617 return ret;
618 }
Oscar Mateoba8b7cc2014-07-24 17:04:33 +0100619
620 if (obj->base.write_domain & I915_GEM_DOMAIN_CPU)
621 flush_chipset |= i915_gem_clflush_object(obj, false);
622
623 flush_domains |= obj->base.write_domain;
624 }
625
626 if (flush_domains & I915_GEM_DOMAIN_GTT)
627 wmb();
628
629 /* Unconditionally invalidate gpu caches and ensure that we do flush
630 * any residual writes from the previous batch.
631 */
John Harrison2f200552015-05-29 17:43:53 +0100632 return logical_ring_invalidate_all_caches(req);
Oscar Mateoba8b7cc2014-07-24 17:04:33 +0100633}
634
John Harrison40e895c2015-05-29 17:43:26 +0100635int intel_logical_ring_alloc_request_extras(struct drm_i915_gem_request *request)
John Harrisonbc0dce32015-03-19 12:30:07 +0000636{
John Harrisonbc0dce32015-03-19 12:30:07 +0000637 int ret;
638
Mika Kuoppalaf3cc01f2015-07-06 11:08:30 +0300639 request->ringbuf = request->ctx->engine[request->ring->id].ringbuf;
640
John Harrison40e895c2015-05-29 17:43:26 +0100641 if (request->ctx != request->ring->default_context) {
Mika Kuoppala8ba319d2015-07-03 17:09:35 +0300642 ret = intel_lr_context_pin(request);
John Harrison6689cb22015-03-19 12:30:08 +0000643 if (ret)
John Harrisonbc0dce32015-03-19 12:30:07 +0000644 return ret;
John Harrisonbc0dce32015-03-19 12:30:07 +0000645 }
646
John Harrisonbc0dce32015-03-19 12:30:07 +0000647 return 0;
648}
649
John Harrisonae707972015-05-29 17:44:14 +0100650static int logical_ring_wait_for_space(struct drm_i915_gem_request *req,
Chris Wilson595e1ee2015-04-07 16:20:51 +0100651 int bytes)
John Harrisonbc0dce32015-03-19 12:30:07 +0000652{
John Harrisonae707972015-05-29 17:44:14 +0100653 struct intel_ringbuffer *ringbuf = req->ringbuf;
654 struct intel_engine_cs *ring = req->ring;
655 struct drm_i915_gem_request *target;
Chris Wilsonb4716182015-04-27 13:41:17 +0100656 unsigned space;
657 int ret;
John Harrisonbc0dce32015-03-19 12:30:07 +0000658
659 if (intel_ring_space(ringbuf) >= bytes)
660 return 0;
661
John Harrison79bbcc22015-06-30 12:40:55 +0100662 /* The whole point of reserving space is to not wait! */
663 WARN_ON(ringbuf->reserved_in_use);
664
John Harrisonae707972015-05-29 17:44:14 +0100665 list_for_each_entry(target, &ring->request_list, list) {
John Harrisonbc0dce32015-03-19 12:30:07 +0000666 /*
667 * The request queue is per-engine, so can contain requests
668 * from multiple ringbuffers. Here, we must ignore any that
669 * aren't from the ringbuffer we're considering.
670 */
John Harrisonae707972015-05-29 17:44:14 +0100671 if (target->ringbuf != ringbuf)
John Harrisonbc0dce32015-03-19 12:30:07 +0000672 continue;
673
674 /* Would completion of this request free enough space? */
John Harrisonae707972015-05-29 17:44:14 +0100675 space = __intel_ring_space(target->postfix, ringbuf->tail,
Chris Wilsonb4716182015-04-27 13:41:17 +0100676 ringbuf->size);
677 if (space >= bytes)
John Harrisonbc0dce32015-03-19 12:30:07 +0000678 break;
John Harrisonbc0dce32015-03-19 12:30:07 +0000679 }
680
John Harrisonae707972015-05-29 17:44:14 +0100681 if (WARN_ON(&target->list == &ring->request_list))
John Harrisonbc0dce32015-03-19 12:30:07 +0000682 return -ENOSPC;
683
John Harrisonae707972015-05-29 17:44:14 +0100684 ret = i915_wait_request(target);
John Harrisonbc0dce32015-03-19 12:30:07 +0000685 if (ret)
686 return ret;
687
Chris Wilsonb4716182015-04-27 13:41:17 +0100688 ringbuf->space = space;
689 return 0;
John Harrisonbc0dce32015-03-19 12:30:07 +0000690}
691
692/*
693 * intel_logical_ring_advance_and_submit() - advance the tail and submit the workload
John Harrisonae707972015-05-29 17:44:14 +0100694 * @request: Request to advance the logical ringbuffer of.
John Harrisonbc0dce32015-03-19 12:30:07 +0000695 *
696 * The tail is updated in our logical ringbuffer struct, not in the actual context. What
697 * really happens during submission is that the context and current tail will be placed
698 * on a queue waiting for the ELSP to be ready to accept a new context submission. At that
699 * point, the tail *inside* the context is updated and the ELSP written to.
700 */
701static void
John Harrisonae707972015-05-29 17:44:14 +0100702intel_logical_ring_advance_and_submit(struct drm_i915_gem_request *request)
John Harrisonbc0dce32015-03-19 12:30:07 +0000703{
John Harrisonae707972015-05-29 17:44:14 +0100704 struct intel_engine_cs *ring = request->ring;
Alex Daid1675192015-08-12 15:43:43 +0100705 struct drm_i915_private *dev_priv = request->i915;
John Harrisonbc0dce32015-03-19 12:30:07 +0000706
John Harrisonae707972015-05-29 17:44:14 +0100707 intel_logical_ring_advance(request->ringbuf);
John Harrisonbc0dce32015-03-19 12:30:07 +0000708
Alex Daid1675192015-08-12 15:43:43 +0100709 request->tail = request->ringbuf->tail;
710
John Harrisonbc0dce32015-03-19 12:30:07 +0000711 if (intel_ring_stopped(ring))
712 return;
713
Alex Daid1675192015-08-12 15:43:43 +0100714 if (dev_priv->guc.execbuf_client)
715 i915_guc_submit(dev_priv->guc.execbuf_client, request);
716 else
717 execlists_context_queue(request);
John Harrisonbc0dce32015-03-19 12:30:07 +0000718}
719
John Harrison79bbcc22015-06-30 12:40:55 +0100720static void __wrap_ring_buffer(struct intel_ringbuffer *ringbuf)
John Harrisonbc0dce32015-03-19 12:30:07 +0000721{
722 uint32_t __iomem *virt;
723 int rem = ringbuf->size - ringbuf->tail;
724
John Harrisonbc0dce32015-03-19 12:30:07 +0000725 virt = ringbuf->virtual_start + ringbuf->tail;
726 rem /= 4;
727 while (rem--)
728 iowrite32(MI_NOOP, virt++);
729
730 ringbuf->tail = 0;
731 intel_ring_update_space(ringbuf);
John Harrisonbc0dce32015-03-19 12:30:07 +0000732}
733
John Harrisonae707972015-05-29 17:44:14 +0100734static int logical_ring_prepare(struct drm_i915_gem_request *req, int bytes)
John Harrisonbc0dce32015-03-19 12:30:07 +0000735{
John Harrisonae707972015-05-29 17:44:14 +0100736 struct intel_ringbuffer *ringbuf = req->ringbuf;
John Harrison79bbcc22015-06-30 12:40:55 +0100737 int remain_usable = ringbuf->effective_size - ringbuf->tail;
738 int remain_actual = ringbuf->size - ringbuf->tail;
739 int ret, total_bytes, wait_bytes = 0;
740 bool need_wrap = false;
John Harrisonbc0dce32015-03-19 12:30:07 +0000741
John Harrison79bbcc22015-06-30 12:40:55 +0100742 if (ringbuf->reserved_in_use)
743 total_bytes = bytes;
744 else
745 total_bytes = bytes + ringbuf->reserved_size;
John Harrison29b1b412015-06-18 13:10:09 +0100746
John Harrison79bbcc22015-06-30 12:40:55 +0100747 if (unlikely(bytes > remain_usable)) {
748 /*
749 * Not enough space for the basic request. So need to flush
750 * out the remainder and then wait for base + reserved.
751 */
752 wait_bytes = remain_actual + total_bytes;
753 need_wrap = true;
754 } else {
755 if (unlikely(total_bytes > remain_usable)) {
756 /*
757 * The base request will fit but the reserved space
758 * falls off the end. So only need to to wait for the
759 * reserved size after flushing out the remainder.
760 */
761 wait_bytes = remain_actual + ringbuf->reserved_size;
762 need_wrap = true;
763 } else if (total_bytes > ringbuf->space) {
764 /* No wrapping required, just waiting. */
765 wait_bytes = total_bytes;
John Harrison29b1b412015-06-18 13:10:09 +0100766 }
John Harrisonbc0dce32015-03-19 12:30:07 +0000767 }
768
John Harrison79bbcc22015-06-30 12:40:55 +0100769 if (wait_bytes) {
770 ret = logical_ring_wait_for_space(req, wait_bytes);
John Harrisonbc0dce32015-03-19 12:30:07 +0000771 if (unlikely(ret))
772 return ret;
John Harrison79bbcc22015-06-30 12:40:55 +0100773
774 if (need_wrap)
775 __wrap_ring_buffer(ringbuf);
John Harrisonbc0dce32015-03-19 12:30:07 +0000776 }
777
778 return 0;
779}
780
781/**
782 * intel_logical_ring_begin() - prepare the logical ringbuffer to accept some commands
783 *
John Harrison4d616a22015-05-29 17:44:08 +0100784 * @request: The request to start some new work for
Arun Siluvery4d78c8d2015-06-23 15:50:43 +0100785 * @ctx: Logical ring context whose ringbuffer is being prepared.
John Harrisonbc0dce32015-03-19 12:30:07 +0000786 * @num_dwords: number of DWORDs that we plan to write to the ringbuffer.
787 *
788 * The ringbuffer might not be ready to accept the commands right away (maybe it needs to
789 * be wrapped, or wait a bit for the tail to be updated). This function takes care of that
790 * and also preallocates a request (every workload submission is still mediated through
791 * requests, same as it did with legacy ringbuffer submission).
792 *
793 * Return: non-zero if the ringbuffer is not ready to be written to.
794 */
Peter Antoine3bbaba02015-07-10 20:13:11 +0300795int intel_logical_ring_begin(struct drm_i915_gem_request *req, int num_dwords)
John Harrisonbc0dce32015-03-19 12:30:07 +0000796{
John Harrison4d616a22015-05-29 17:44:08 +0100797 struct drm_i915_private *dev_priv;
John Harrisonbc0dce32015-03-19 12:30:07 +0000798 int ret;
799
John Harrison4d616a22015-05-29 17:44:08 +0100800 WARN_ON(req == NULL);
801 dev_priv = req->ring->dev->dev_private;
802
John Harrisonbc0dce32015-03-19 12:30:07 +0000803 ret = i915_gem_check_wedge(&dev_priv->gpu_error,
804 dev_priv->mm.interruptible);
805 if (ret)
806 return ret;
807
John Harrisonae707972015-05-29 17:44:14 +0100808 ret = logical_ring_prepare(req, num_dwords * sizeof(uint32_t));
John Harrisonbc0dce32015-03-19 12:30:07 +0000809 if (ret)
810 return ret;
811
John Harrison4d616a22015-05-29 17:44:08 +0100812 req->ringbuf->space -= num_dwords * sizeof(uint32_t);
John Harrisonbc0dce32015-03-19 12:30:07 +0000813 return 0;
814}
815
John Harrisonccd98fe2015-05-29 17:44:09 +0100816int intel_logical_ring_reserve_space(struct drm_i915_gem_request *request)
817{
818 /*
819 * The first call merely notes the reserve request and is common for
820 * all back ends. The subsequent localised _begin() call actually
821 * ensures that the reservation is available. Without the begin, if
822 * the request creator immediately submitted the request without
823 * adding any commands to it then there might not actually be
824 * sufficient room for the submission commands.
825 */
826 intel_ring_reserved_space_reserve(request->ringbuf, MIN_SPACE_FOR_ADD_REQUEST);
827
828 return intel_logical_ring_begin(request, 0);
829}
830
Oscar Mateo73e4d072014-07-24 17:04:48 +0100831/**
832 * execlists_submission() - submit a batchbuffer for execution, Execlists style
833 * @dev: DRM device.
834 * @file: DRM file.
835 * @ring: Engine Command Streamer to submit to.
836 * @ctx: Context to employ for this submission.
837 * @args: execbuffer call arguments.
838 * @vmas: list of vmas.
839 * @batch_obj: the batchbuffer to submit.
840 * @exec_start: batchbuffer start virtual address pointer.
John Harrison8e004ef2015-02-13 11:48:10 +0000841 * @dispatch_flags: translated execbuffer call flags.
Oscar Mateo73e4d072014-07-24 17:04:48 +0100842 *
843 * This is the evil twin version of i915_gem_ringbuffer_submission. It abstracts
844 * away the submission details of the execbuffer ioctl call.
845 *
846 * Return: non-zero if the submission fails.
847 */
John Harrison5f19e2b2015-05-29 17:43:27 +0100848int intel_execlists_submission(struct i915_execbuffer_params *params,
Oscar Mateo454afeb2014-07-24 17:04:22 +0100849 struct drm_i915_gem_execbuffer2 *args,
John Harrison5f19e2b2015-05-29 17:43:27 +0100850 struct list_head *vmas)
Oscar Mateo454afeb2014-07-24 17:04:22 +0100851{
John Harrison5f19e2b2015-05-29 17:43:27 +0100852 struct drm_device *dev = params->dev;
853 struct intel_engine_cs *ring = params->ring;
Oscar Mateoba8b7cc2014-07-24 17:04:33 +0100854 struct drm_i915_private *dev_priv = dev->dev_private;
John Harrison5f19e2b2015-05-29 17:43:27 +0100855 struct intel_ringbuffer *ringbuf = params->ctx->engine[ring->id].ringbuf;
856 u64 exec_start;
Oscar Mateoba8b7cc2014-07-24 17:04:33 +0100857 int instp_mode;
858 u32 instp_mask;
859 int ret;
860
861 instp_mode = args->flags & I915_EXEC_CONSTANTS_MASK;
862 instp_mask = I915_EXEC_CONSTANTS_MASK;
863 switch (instp_mode) {
864 case I915_EXEC_CONSTANTS_REL_GENERAL:
865 case I915_EXEC_CONSTANTS_ABSOLUTE:
866 case I915_EXEC_CONSTANTS_REL_SURFACE:
867 if (instp_mode != 0 && ring != &dev_priv->ring[RCS]) {
868 DRM_DEBUG("non-0 rel constants mode on non-RCS\n");
869 return -EINVAL;
870 }
871
872 if (instp_mode != dev_priv->relative_constants_mode) {
873 if (instp_mode == I915_EXEC_CONSTANTS_REL_SURFACE) {
874 DRM_DEBUG("rel surface constants mode invalid on gen5+\n");
875 return -EINVAL;
876 }
877
878 /* The HW changed the meaning on this bit on gen6 */
879 instp_mask &= ~I915_EXEC_CONSTANTS_REL_SURFACE;
880 }
881 break;
882 default:
883 DRM_DEBUG("execbuf with unknown constants: %d\n", instp_mode);
884 return -EINVAL;
885 }
886
887 if (args->num_cliprects != 0) {
888 DRM_DEBUG("clip rectangles are only valid on pre-gen5\n");
889 return -EINVAL;
890 } else {
891 if (args->DR4 == 0xffffffff) {
892 DRM_DEBUG("UXA submitting garbage DR4, fixing up\n");
893 args->DR4 = 0;
894 }
895
896 if (args->DR1 || args->DR4 || args->cliprects_ptr) {
897 DRM_DEBUG("0 cliprects but dirt in cliprects fields\n");
898 return -EINVAL;
899 }
900 }
901
902 if (args->flags & I915_EXEC_GEN7_SOL_RESET) {
903 DRM_DEBUG("sol reset is gen7 only\n");
904 return -EINVAL;
905 }
906
John Harrison535fbe82015-05-29 17:43:32 +0100907 ret = execlists_move_to_gpu(params->request, vmas);
Oscar Mateoba8b7cc2014-07-24 17:04:33 +0100908 if (ret)
909 return ret;
910
911 if (ring == &dev_priv->ring[RCS] &&
912 instp_mode != dev_priv->relative_constants_mode) {
John Harrison4d616a22015-05-29 17:44:08 +0100913 ret = intel_logical_ring_begin(params->request, 4);
Oscar Mateoba8b7cc2014-07-24 17:04:33 +0100914 if (ret)
915 return ret;
916
917 intel_logical_ring_emit(ringbuf, MI_NOOP);
918 intel_logical_ring_emit(ringbuf, MI_LOAD_REGISTER_IMM(1));
919 intel_logical_ring_emit(ringbuf, INSTPM);
920 intel_logical_ring_emit(ringbuf, instp_mask << 16 | instp_mode);
921 intel_logical_ring_advance(ringbuf);
922
923 dev_priv->relative_constants_mode = instp_mode;
924 }
925
John Harrison5f19e2b2015-05-29 17:43:27 +0100926 exec_start = params->batch_obj_vm_offset +
927 args->batch_start_offset;
928
John Harrisonbe795fc2015-05-29 17:44:03 +0100929 ret = ring->emit_bb_start(params->request, exec_start, params->dispatch_flags);
Oscar Mateoba8b7cc2014-07-24 17:04:33 +0100930 if (ret)
931 return ret;
932
John Harrison95c24162015-05-29 17:43:31 +0100933 trace_i915_gem_ring_dispatch(params->request, params->dispatch_flags);
John Harrison5e4be7b2015-02-13 11:48:11 +0000934
John Harrison8a8edb52015-05-29 17:43:33 +0100935 i915_gem_execbuffer_move_to_active(vmas, params->request);
John Harrisonadeca762015-05-29 17:43:28 +0100936 i915_gem_execbuffer_retire_commands(params);
Oscar Mateoba8b7cc2014-07-24 17:04:33 +0100937
Oscar Mateo454afeb2014-07-24 17:04:22 +0100938 return 0;
939}
940
Thomas Danielc86ee3a92014-11-13 10:27:05 +0000941void intel_execlists_retire_requests(struct intel_engine_cs *ring)
942{
Nick Hoath6d3d8272015-01-15 13:10:39 +0000943 struct drm_i915_gem_request *req, *tmp;
Thomas Danielc86ee3a92014-11-13 10:27:05 +0000944 struct list_head retired_list;
945
946 WARN_ON(!mutex_is_locked(&ring->dev->struct_mutex));
947 if (list_empty(&ring->execlist_retired_req_list))
948 return;
949
950 INIT_LIST_HEAD(&retired_list);
Chris Wilsonb5eba372015-04-07 16:20:48 +0100951 spin_lock_irq(&ring->execlist_lock);
Thomas Danielc86ee3a92014-11-13 10:27:05 +0000952 list_replace_init(&ring->execlist_retired_req_list, &retired_list);
Chris Wilsonb5eba372015-04-07 16:20:48 +0100953 spin_unlock_irq(&ring->execlist_lock);
Thomas Danielc86ee3a92014-11-13 10:27:05 +0000954
955 list_for_each_entry_safe(req, tmp, &retired_list, execlist_link) {
Nick Hoath6d3d8272015-01-15 13:10:39 +0000956 struct intel_context *ctx = req->ctx;
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000957 struct drm_i915_gem_object *ctx_obj =
958 ctx->engine[ring->id].state;
959
960 if (ctx_obj && (ctx != ring->default_context))
Mika Kuoppala8ba319d2015-07-03 17:09:35 +0300961 intel_lr_context_unpin(req);
Thomas Danielc86ee3a92014-11-13 10:27:05 +0000962 list_del(&req->execlist_link);
Nick Hoathf8210792015-01-29 16:55:07 +0000963 i915_gem_request_unreference(req);
Thomas Danielc86ee3a92014-11-13 10:27:05 +0000964 }
965}
966
Oscar Mateo454afeb2014-07-24 17:04:22 +0100967void intel_logical_ring_stop(struct intel_engine_cs *ring)
968{
Oscar Mateo9832b9d2014-07-24 17:04:30 +0100969 struct drm_i915_private *dev_priv = ring->dev->dev_private;
970 int ret;
971
972 if (!intel_ring_initialized(ring))
973 return;
974
975 ret = intel_ring_idle(ring);
976 if (ret && !i915_reset_in_progress(&to_i915(ring->dev)->gpu_error))
977 DRM_ERROR("failed to quiesce %s whilst cleaning up: %d\n",
978 ring->name, ret);
979
980 /* TODO: Is this correct with Execlists enabled? */
981 I915_WRITE_MODE(ring, _MASKED_BIT_ENABLE(STOP_RING));
982 if (wait_for_atomic((I915_READ_MODE(ring) & MODE_IDLE) != 0, 1000)) {
983 DRM_ERROR("%s :timed out trying to stop ring\n", ring->name);
984 return;
985 }
986 I915_WRITE_MODE(ring, _MASKED_BIT_DISABLE(STOP_RING));
Oscar Mateo454afeb2014-07-24 17:04:22 +0100987}
988
John Harrison4866d722015-05-29 17:43:55 +0100989int logical_ring_flush_all_caches(struct drm_i915_gem_request *req)
Oscar Mateo48e29f52014-07-24 17:04:29 +0100990{
John Harrison4866d722015-05-29 17:43:55 +0100991 struct intel_engine_cs *ring = req->ring;
Oscar Mateo48e29f52014-07-24 17:04:29 +0100992 int ret;
993
994 if (!ring->gpu_caches_dirty)
995 return 0;
996
John Harrison7deb4d32015-05-29 17:43:59 +0100997 ret = ring->emit_flush(req, 0, I915_GEM_GPU_DOMAINS);
Oscar Mateo48e29f52014-07-24 17:04:29 +0100998 if (ret)
999 return ret;
1000
1001 ring->gpu_caches_dirty = false;
1002 return 0;
1003}
1004
Mika Kuoppala8ba319d2015-07-03 17:09:35 +03001005static int intel_lr_context_pin(struct drm_i915_gem_request *rq)
Oscar Mateodcb4c122014-11-13 10:28:10 +00001006{
Alex Daid1675192015-08-12 15:43:43 +01001007 struct drm_i915_private *dev_priv = rq->i915;
Mika Kuoppala8ba319d2015-07-03 17:09:35 +03001008 struct intel_engine_cs *ring = rq->ring;
1009 struct drm_i915_gem_object *ctx_obj = rq->ctx->engine[ring->id].state;
1010 struct intel_ringbuffer *ringbuf = rq->ringbuf;
Oscar Mateodcb4c122014-11-13 10:28:10 +00001011 int ret = 0;
1012
1013 WARN_ON(!mutex_is_locked(&ring->dev->struct_mutex));
Mika Kuoppala8ba319d2015-07-03 17:09:35 +03001014 if (rq->ctx->engine[ring->id].pin_count++ == 0) {
Alex Daid1675192015-08-12 15:43:43 +01001015 ret = i915_gem_obj_ggtt_pin(ctx_obj, GEN8_LR_CONTEXT_ALIGN,
1016 PIN_OFFSET_BIAS | GUC_WOPCM_TOP);
Oscar Mateodcb4c122014-11-13 10:28:10 +00001017 if (ret)
Mika Kuoppalaa7cbede2015-01-13 11:32:25 +02001018 goto reset_pin_count;
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001019
1020 ret = intel_pin_and_map_ringbuffer_obj(ring->dev, ringbuf);
1021 if (ret)
1022 goto unpin_ctx_obj;
Alex Daid1675192015-08-12 15:43:43 +01001023
1024 /* Invalidate GuC TLB. */
1025 if (i915.enable_guc_submission)
1026 I915_WRITE(GEN8_GTCR, GEN8_GTCR_INVALIDATE);
Oscar Mateodcb4c122014-11-13 10:28:10 +00001027 }
1028
1029 return ret;
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001030
1031unpin_ctx_obj:
1032 i915_gem_object_ggtt_unpin(ctx_obj);
Mika Kuoppalaa7cbede2015-01-13 11:32:25 +02001033reset_pin_count:
Mika Kuoppala8ba319d2015-07-03 17:09:35 +03001034 rq->ctx->engine[ring->id].pin_count = 0;
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001035
1036 return ret;
Oscar Mateodcb4c122014-11-13 10:28:10 +00001037}
1038
Mika Kuoppala8ba319d2015-07-03 17:09:35 +03001039void intel_lr_context_unpin(struct drm_i915_gem_request *rq)
Oscar Mateodcb4c122014-11-13 10:28:10 +00001040{
Mika Kuoppala8ba319d2015-07-03 17:09:35 +03001041 struct intel_engine_cs *ring = rq->ring;
1042 struct drm_i915_gem_object *ctx_obj = rq->ctx->engine[ring->id].state;
1043 struct intel_ringbuffer *ringbuf = rq->ringbuf;
Oscar Mateodcb4c122014-11-13 10:28:10 +00001044
1045 if (ctx_obj) {
1046 WARN_ON(!mutex_is_locked(&ring->dev->struct_mutex));
Mika Kuoppala8ba319d2015-07-03 17:09:35 +03001047 if (--rq->ctx->engine[ring->id].pin_count == 0) {
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001048 intel_unpin_ringbuffer_obj(ringbuf);
Oscar Mateodcb4c122014-11-13 10:28:10 +00001049 i915_gem_object_ggtt_unpin(ctx_obj);
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001050 }
Oscar Mateodcb4c122014-11-13 10:28:10 +00001051 }
1052}
1053
John Harrisone2be4fa2015-05-29 17:43:54 +01001054static int intel_logical_ring_workarounds_emit(struct drm_i915_gem_request *req)
Michel Thierry771b9a52014-11-11 16:47:33 +00001055{
1056 int ret, i;
John Harrisone2be4fa2015-05-29 17:43:54 +01001057 struct intel_engine_cs *ring = req->ring;
1058 struct intel_ringbuffer *ringbuf = req->ringbuf;
Michel Thierry771b9a52014-11-11 16:47:33 +00001059 struct drm_device *dev = ring->dev;
1060 struct drm_i915_private *dev_priv = dev->dev_private;
1061 struct i915_workarounds *w = &dev_priv->workarounds;
1062
Michel Thierrye6c1abb2014-11-26 14:21:02 +00001063 if (WARN_ON_ONCE(w->count == 0))
Michel Thierry771b9a52014-11-11 16:47:33 +00001064 return 0;
1065
1066 ring->gpu_caches_dirty = true;
John Harrison4866d722015-05-29 17:43:55 +01001067 ret = logical_ring_flush_all_caches(req);
Michel Thierry771b9a52014-11-11 16:47:33 +00001068 if (ret)
1069 return ret;
1070
John Harrison4d616a22015-05-29 17:44:08 +01001071 ret = intel_logical_ring_begin(req, w->count * 2 + 2);
Michel Thierry771b9a52014-11-11 16:47:33 +00001072 if (ret)
1073 return ret;
1074
1075 intel_logical_ring_emit(ringbuf, MI_LOAD_REGISTER_IMM(w->count));
1076 for (i = 0; i < w->count; i++) {
1077 intel_logical_ring_emit(ringbuf, w->reg[i].addr);
1078 intel_logical_ring_emit(ringbuf, w->reg[i].value);
1079 }
1080 intel_logical_ring_emit(ringbuf, MI_NOOP);
1081
1082 intel_logical_ring_advance(ringbuf);
1083
1084 ring->gpu_caches_dirty = true;
John Harrison4866d722015-05-29 17:43:55 +01001085 ret = logical_ring_flush_all_caches(req);
Michel Thierry771b9a52014-11-11 16:47:33 +00001086 if (ret)
1087 return ret;
1088
1089 return 0;
1090}
1091
Arun Siluvery83b8a982015-07-08 10:27:05 +01001092#define wa_ctx_emit(batch, index, cmd) \
Arun Siluvery17ee9502015-06-19 19:07:01 +01001093 do { \
Arun Siluvery83b8a982015-07-08 10:27:05 +01001094 int __index = (index)++; \
1095 if (WARN_ON(__index >= (PAGE_SIZE / sizeof(uint32_t)))) { \
Arun Siluvery17ee9502015-06-19 19:07:01 +01001096 return -ENOSPC; \
1097 } \
Arun Siluvery83b8a982015-07-08 10:27:05 +01001098 batch[__index] = (cmd); \
Arun Siluvery17ee9502015-06-19 19:07:01 +01001099 } while (0)
1100
Arun Siluvery9e000842015-07-03 14:27:31 +01001101
1102/*
1103 * In this WA we need to set GEN8_L3SQCREG4[21:21] and reset it after
1104 * PIPE_CONTROL instruction. This is required for the flush to happen correctly
1105 * but there is a slight complication as this is applied in WA batch where the
1106 * values are only initialized once so we cannot take register value at the
1107 * beginning and reuse it further; hence we save its value to memory, upload a
1108 * constant value with bit21 set and then we restore it back with the saved value.
1109 * To simplify the WA, a constant value is formed by using the default value
1110 * of this register. This shouldn't be a problem because we are only modifying
1111 * it for a short period and this batch in non-premptible. We can ofcourse
1112 * use additional instructions that read the actual value of the register
1113 * at that time and set our bit of interest but it makes the WA complicated.
1114 *
1115 * This WA is also required for Gen9 so extracting as a function avoids
1116 * code duplication.
1117 */
1118static inline int gen8_emit_flush_coherentl3_wa(struct intel_engine_cs *ring,
1119 uint32_t *const batch,
1120 uint32_t index)
1121{
1122 uint32_t l3sqc4_flush = (0x40400000 | GEN8_LQSC_FLUSH_COHERENT_LINES);
1123
Arun Siluverya4106a72015-07-14 15:01:29 +01001124 /*
1125 * WaDisableLSQCROPERFforOCL:skl
1126 * This WA is implemented in skl_init_clock_gating() but since
1127 * this batch updates GEN8_L3SQCREG4 with default value we need to
1128 * set this bit here to retain the WA during flush.
1129 */
1130 if (IS_SKYLAKE(ring->dev) && INTEL_REVID(ring->dev) <= SKL_REVID_E0)
1131 l3sqc4_flush |= GEN8_LQSC_RO_PERF_DIS;
1132
Arun Siluveryf1afe242015-08-04 16:22:20 +01001133 wa_ctx_emit(batch, index, (MI_STORE_REGISTER_MEM_GEN8 |
Arun Siluvery83b8a982015-07-08 10:27:05 +01001134 MI_SRM_LRM_GLOBAL_GTT));
1135 wa_ctx_emit(batch, index, GEN8_L3SQCREG4);
1136 wa_ctx_emit(batch, index, ring->scratch.gtt_offset + 256);
1137 wa_ctx_emit(batch, index, 0);
Arun Siluvery9e000842015-07-03 14:27:31 +01001138
Arun Siluvery83b8a982015-07-08 10:27:05 +01001139 wa_ctx_emit(batch, index, MI_LOAD_REGISTER_IMM(1));
1140 wa_ctx_emit(batch, index, GEN8_L3SQCREG4);
1141 wa_ctx_emit(batch, index, l3sqc4_flush);
Arun Siluvery9e000842015-07-03 14:27:31 +01001142
Arun Siluvery83b8a982015-07-08 10:27:05 +01001143 wa_ctx_emit(batch, index, GFX_OP_PIPE_CONTROL(6));
1144 wa_ctx_emit(batch, index, (PIPE_CONTROL_CS_STALL |
1145 PIPE_CONTROL_DC_FLUSH_ENABLE));
1146 wa_ctx_emit(batch, index, 0);
1147 wa_ctx_emit(batch, index, 0);
1148 wa_ctx_emit(batch, index, 0);
1149 wa_ctx_emit(batch, index, 0);
Arun Siluvery9e000842015-07-03 14:27:31 +01001150
Arun Siluveryf1afe242015-08-04 16:22:20 +01001151 wa_ctx_emit(batch, index, (MI_LOAD_REGISTER_MEM_GEN8 |
Arun Siluvery83b8a982015-07-08 10:27:05 +01001152 MI_SRM_LRM_GLOBAL_GTT));
1153 wa_ctx_emit(batch, index, GEN8_L3SQCREG4);
1154 wa_ctx_emit(batch, index, ring->scratch.gtt_offset + 256);
1155 wa_ctx_emit(batch, index, 0);
Arun Siluvery9e000842015-07-03 14:27:31 +01001156
1157 return index;
1158}
1159
Arun Siluvery17ee9502015-06-19 19:07:01 +01001160static inline uint32_t wa_ctx_start(struct i915_wa_ctx_bb *wa_ctx,
1161 uint32_t offset,
1162 uint32_t start_alignment)
1163{
1164 return wa_ctx->offset = ALIGN(offset, start_alignment);
1165}
1166
1167static inline int wa_ctx_end(struct i915_wa_ctx_bb *wa_ctx,
1168 uint32_t offset,
1169 uint32_t size_alignment)
1170{
1171 wa_ctx->size = offset - wa_ctx->offset;
1172
1173 WARN(wa_ctx->size % size_alignment,
1174 "wa_ctx_bb failed sanity checks: size %d is not aligned to %d\n",
1175 wa_ctx->size, size_alignment);
1176 return 0;
1177}
1178
1179/**
1180 * gen8_init_indirectctx_bb() - initialize indirect ctx batch with WA
1181 *
1182 * @ring: only applicable for RCS
1183 * @wa_ctx: structure representing wa_ctx
1184 * offset: specifies start of the batch, should be cache-aligned. This is updated
1185 * with the offset value received as input.
1186 * size: size of the batch in DWORDS but HW expects in terms of cachelines
1187 * @batch: page in which WA are loaded
1188 * @offset: This field specifies the start of the batch, it should be
1189 * cache-aligned otherwise it is adjusted accordingly.
1190 * Typically we only have one indirect_ctx and per_ctx batch buffer which are
1191 * initialized at the beginning and shared across all contexts but this field
1192 * helps us to have multiple batches at different offsets and select them based
1193 * on a criteria. At the moment this batch always start at the beginning of the page
1194 * and at this point we don't have multiple wa_ctx batch buffers.
1195 *
1196 * The number of WA applied are not known at the beginning; we use this field
1197 * to return the no of DWORDS written.
Arun Siluvery4d78c8d2015-06-23 15:50:43 +01001198 *
Arun Siluvery17ee9502015-06-19 19:07:01 +01001199 * It is to be noted that this batch does not contain MI_BATCH_BUFFER_END
1200 * so it adds NOOPs as padding to make it cacheline aligned.
1201 * MI_BATCH_BUFFER_END will be added to perctx batch and both of them together
1202 * makes a complete batch buffer.
1203 *
1204 * Return: non-zero if we exceed the PAGE_SIZE limit.
1205 */
1206
1207static int gen8_init_indirectctx_bb(struct intel_engine_cs *ring,
1208 struct i915_wa_ctx_bb *wa_ctx,
1209 uint32_t *const batch,
1210 uint32_t *offset)
1211{
Arun Siluvery0160f052015-06-23 15:46:57 +01001212 uint32_t scratch_addr;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001213 uint32_t index = wa_ctx_start(wa_ctx, *offset, CACHELINE_DWORDS);
1214
Arun Siluvery7ad00d12015-06-19 18:37:12 +01001215 /* WaDisableCtxRestoreArbitration:bdw,chv */
Arun Siluvery83b8a982015-07-08 10:27:05 +01001216 wa_ctx_emit(batch, index, MI_ARB_ON_OFF | MI_ARB_DISABLE);
Arun Siluvery17ee9502015-06-19 19:07:01 +01001217
Arun Siluveryc82435b2015-06-19 18:37:13 +01001218 /* WaFlushCoherentL3CacheLinesAtContextSwitch:bdw */
1219 if (IS_BROADWELL(ring->dev)) {
Arun Siluvery9e000842015-07-03 14:27:31 +01001220 index = gen8_emit_flush_coherentl3_wa(ring, batch, index);
1221 if (index < 0)
1222 return index;
Arun Siluveryc82435b2015-06-19 18:37:13 +01001223 }
1224
Arun Siluvery0160f052015-06-23 15:46:57 +01001225 /* WaClearSlmSpaceAtContextSwitch:bdw,chv */
1226 /* Actual scratch location is at 128 bytes offset */
1227 scratch_addr = ring->scratch.gtt_offset + 2*CACHELINE_BYTES;
1228
Arun Siluvery83b8a982015-07-08 10:27:05 +01001229 wa_ctx_emit(batch, index, GFX_OP_PIPE_CONTROL(6));
1230 wa_ctx_emit(batch, index, (PIPE_CONTROL_FLUSH_L3 |
1231 PIPE_CONTROL_GLOBAL_GTT_IVB |
1232 PIPE_CONTROL_CS_STALL |
1233 PIPE_CONTROL_QW_WRITE));
1234 wa_ctx_emit(batch, index, scratch_addr);
1235 wa_ctx_emit(batch, index, 0);
1236 wa_ctx_emit(batch, index, 0);
1237 wa_ctx_emit(batch, index, 0);
Arun Siluvery0160f052015-06-23 15:46:57 +01001238
Arun Siluvery17ee9502015-06-19 19:07:01 +01001239 /* Pad to end of cacheline */
1240 while (index % CACHELINE_DWORDS)
Arun Siluvery83b8a982015-07-08 10:27:05 +01001241 wa_ctx_emit(batch, index, MI_NOOP);
Arun Siluvery17ee9502015-06-19 19:07:01 +01001242
1243 /*
1244 * MI_BATCH_BUFFER_END is not required in Indirect ctx BB because
1245 * execution depends on the length specified in terms of cache lines
1246 * in the register CTX_RCS_INDIRECT_CTX
1247 */
1248
1249 return wa_ctx_end(wa_ctx, *offset = index, CACHELINE_DWORDS);
1250}
1251
1252/**
1253 * gen8_init_perctx_bb() - initialize per ctx batch with WA
1254 *
1255 * @ring: only applicable for RCS
1256 * @wa_ctx: structure representing wa_ctx
1257 * offset: specifies start of the batch, should be cache-aligned.
1258 * size: size of the batch in DWORDS but HW expects in terms of cachelines
Arun Siluvery4d78c8d2015-06-23 15:50:43 +01001259 * @batch: page in which WA are loaded
Arun Siluvery17ee9502015-06-19 19:07:01 +01001260 * @offset: This field specifies the start of this batch.
1261 * This batch is started immediately after indirect_ctx batch. Since we ensure
1262 * that indirect_ctx ends on a cacheline this batch is aligned automatically.
1263 *
1264 * The number of DWORDS written are returned using this field.
1265 *
1266 * This batch is terminated with MI_BATCH_BUFFER_END and so we need not add padding
1267 * to align it with cacheline as padding after MI_BATCH_BUFFER_END is redundant.
1268 */
1269static int gen8_init_perctx_bb(struct intel_engine_cs *ring,
1270 struct i915_wa_ctx_bb *wa_ctx,
1271 uint32_t *const batch,
1272 uint32_t *offset)
1273{
1274 uint32_t index = wa_ctx_start(wa_ctx, *offset, CACHELINE_DWORDS);
1275
Arun Siluvery7ad00d12015-06-19 18:37:12 +01001276 /* WaDisableCtxRestoreArbitration:bdw,chv */
Arun Siluvery83b8a982015-07-08 10:27:05 +01001277 wa_ctx_emit(batch, index, MI_ARB_ON_OFF | MI_ARB_ENABLE);
Arun Siluvery7ad00d12015-06-19 18:37:12 +01001278
Arun Siluvery83b8a982015-07-08 10:27:05 +01001279 wa_ctx_emit(batch, index, MI_BATCH_BUFFER_END);
Arun Siluvery17ee9502015-06-19 19:07:01 +01001280
1281 return wa_ctx_end(wa_ctx, *offset = index, 1);
1282}
1283
Arun Siluvery0504cff2015-07-14 15:01:27 +01001284static int gen9_init_indirectctx_bb(struct intel_engine_cs *ring,
1285 struct i915_wa_ctx_bb *wa_ctx,
1286 uint32_t *const batch,
1287 uint32_t *offset)
1288{
Arun Siluverya4106a72015-07-14 15:01:29 +01001289 int ret;
Arun Siluvery0907c8f2015-07-14 15:01:28 +01001290 struct drm_device *dev = ring->dev;
Arun Siluvery0504cff2015-07-14 15:01:27 +01001291 uint32_t index = wa_ctx_start(wa_ctx, *offset, CACHELINE_DWORDS);
1292
Arun Siluvery0907c8f2015-07-14 15:01:28 +01001293 /* WaDisableCtxRestoreArbitration:skl,bxt */
1294 if ((IS_SKYLAKE(dev) && (INTEL_REVID(dev) <= SKL_REVID_D0)) ||
1295 (IS_BROXTON(dev) && (INTEL_REVID(dev) == BXT_REVID_A0)))
1296 wa_ctx_emit(batch, index, MI_ARB_ON_OFF | MI_ARB_DISABLE);
Arun Siluvery0504cff2015-07-14 15:01:27 +01001297
Arun Siluverya4106a72015-07-14 15:01:29 +01001298 /* WaFlushCoherentL3CacheLinesAtContextSwitch:skl,bxt */
1299 ret = gen8_emit_flush_coherentl3_wa(ring, batch, index);
1300 if (ret < 0)
1301 return ret;
1302 index = ret;
1303
Arun Siluvery0504cff2015-07-14 15:01:27 +01001304 /* Pad to end of cacheline */
1305 while (index % CACHELINE_DWORDS)
1306 wa_ctx_emit(batch, index, MI_NOOP);
1307
1308 return wa_ctx_end(wa_ctx, *offset = index, CACHELINE_DWORDS);
1309}
1310
1311static int gen9_init_perctx_bb(struct intel_engine_cs *ring,
1312 struct i915_wa_ctx_bb *wa_ctx,
1313 uint32_t *const batch,
1314 uint32_t *offset)
1315{
Arun Siluvery0907c8f2015-07-14 15:01:28 +01001316 struct drm_device *dev = ring->dev;
Arun Siluvery0504cff2015-07-14 15:01:27 +01001317 uint32_t index = wa_ctx_start(wa_ctx, *offset, CACHELINE_DWORDS);
1318
Arun Siluvery9b014352015-07-14 15:01:30 +01001319 /* WaSetDisablePixMaskCammingAndRhwoInCommonSliceChicken:skl,bxt */
1320 if ((IS_SKYLAKE(dev) && (INTEL_REVID(dev) <= SKL_REVID_B0)) ||
1321 (IS_BROXTON(dev) && (INTEL_REVID(dev) == BXT_REVID_A0))) {
1322 wa_ctx_emit(batch, index, MI_LOAD_REGISTER_IMM(1));
1323 wa_ctx_emit(batch, index, GEN9_SLICE_COMMON_ECO_CHICKEN0);
1324 wa_ctx_emit(batch, index,
1325 _MASKED_BIT_ENABLE(DISABLE_PIXEL_MASK_CAMMING));
1326 wa_ctx_emit(batch, index, MI_NOOP);
1327 }
1328
Arun Siluvery0907c8f2015-07-14 15:01:28 +01001329 /* WaDisableCtxRestoreArbitration:skl,bxt */
1330 if ((IS_SKYLAKE(dev) && (INTEL_REVID(dev) <= SKL_REVID_D0)) ||
1331 (IS_BROXTON(dev) && (INTEL_REVID(dev) == BXT_REVID_A0)))
1332 wa_ctx_emit(batch, index, MI_ARB_ON_OFF | MI_ARB_ENABLE);
1333
Arun Siluvery0504cff2015-07-14 15:01:27 +01001334 wa_ctx_emit(batch, index, MI_BATCH_BUFFER_END);
1335
1336 return wa_ctx_end(wa_ctx, *offset = index, 1);
1337}
1338
Arun Siluvery17ee9502015-06-19 19:07:01 +01001339static int lrc_setup_wa_ctx_obj(struct intel_engine_cs *ring, u32 size)
1340{
1341 int ret;
1342
1343 ring->wa_ctx.obj = i915_gem_alloc_object(ring->dev, PAGE_ALIGN(size));
1344 if (!ring->wa_ctx.obj) {
1345 DRM_DEBUG_DRIVER("alloc LRC WA ctx backing obj failed.\n");
1346 return -ENOMEM;
1347 }
1348
1349 ret = i915_gem_obj_ggtt_pin(ring->wa_ctx.obj, PAGE_SIZE, 0);
1350 if (ret) {
1351 DRM_DEBUG_DRIVER("pin LRC WA ctx backing obj failed: %d\n",
1352 ret);
1353 drm_gem_object_unreference(&ring->wa_ctx.obj->base);
1354 return ret;
1355 }
1356
1357 return 0;
1358}
1359
1360static void lrc_destroy_wa_ctx_obj(struct intel_engine_cs *ring)
1361{
1362 if (ring->wa_ctx.obj) {
1363 i915_gem_object_ggtt_unpin(ring->wa_ctx.obj);
1364 drm_gem_object_unreference(&ring->wa_ctx.obj->base);
1365 ring->wa_ctx.obj = NULL;
1366 }
1367}
1368
1369static int intel_init_workaround_bb(struct intel_engine_cs *ring)
1370{
1371 int ret;
1372 uint32_t *batch;
1373 uint32_t offset;
1374 struct page *page;
1375 struct i915_ctx_workarounds *wa_ctx = &ring->wa_ctx;
1376
1377 WARN_ON(ring->id != RCS);
1378
Arun Siluvery5e60d792015-06-23 15:50:44 +01001379 /* update this when WA for higher Gen are added */
Arun Siluvery0504cff2015-07-14 15:01:27 +01001380 if (INTEL_INFO(ring->dev)->gen > 9) {
1381 DRM_ERROR("WA batch buffer is not initialized for Gen%d\n",
1382 INTEL_INFO(ring->dev)->gen);
Arun Siluvery5e60d792015-06-23 15:50:44 +01001383 return 0;
Arun Siluvery0504cff2015-07-14 15:01:27 +01001384 }
Arun Siluvery5e60d792015-06-23 15:50:44 +01001385
Arun Siluveryc4db7592015-06-19 18:37:11 +01001386 /* some WA perform writes to scratch page, ensure it is valid */
1387 if (ring->scratch.obj == NULL) {
1388 DRM_ERROR("scratch page not allocated for %s\n", ring->name);
1389 return -EINVAL;
1390 }
1391
Arun Siluvery17ee9502015-06-19 19:07:01 +01001392 ret = lrc_setup_wa_ctx_obj(ring, PAGE_SIZE);
1393 if (ret) {
1394 DRM_DEBUG_DRIVER("Failed to setup context WA page: %d\n", ret);
1395 return ret;
1396 }
1397
1398 page = i915_gem_object_get_page(wa_ctx->obj, 0);
1399 batch = kmap_atomic(page);
1400 offset = 0;
1401
1402 if (INTEL_INFO(ring->dev)->gen == 8) {
1403 ret = gen8_init_indirectctx_bb(ring,
1404 &wa_ctx->indirect_ctx,
1405 batch,
1406 &offset);
1407 if (ret)
1408 goto out;
1409
1410 ret = gen8_init_perctx_bb(ring,
1411 &wa_ctx->per_ctx,
1412 batch,
1413 &offset);
1414 if (ret)
1415 goto out;
Arun Siluvery0504cff2015-07-14 15:01:27 +01001416 } else if (INTEL_INFO(ring->dev)->gen == 9) {
1417 ret = gen9_init_indirectctx_bb(ring,
1418 &wa_ctx->indirect_ctx,
1419 batch,
1420 &offset);
1421 if (ret)
1422 goto out;
1423
1424 ret = gen9_init_perctx_bb(ring,
1425 &wa_ctx->per_ctx,
1426 batch,
1427 &offset);
1428 if (ret)
1429 goto out;
Arun Siluvery17ee9502015-06-19 19:07:01 +01001430 }
1431
1432out:
1433 kunmap_atomic(batch);
1434 if (ret)
1435 lrc_destroy_wa_ctx_obj(ring);
1436
1437 return ret;
1438}
1439
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001440static int gen8_init_common_ring(struct intel_engine_cs *ring)
1441{
1442 struct drm_device *dev = ring->dev;
1443 struct drm_i915_private *dev_priv = dev->dev_private;
1444
Oscar Mateo73d477f2014-07-24 17:04:31 +01001445 I915_WRITE_IMR(ring, ~(ring->irq_enable_mask | ring->irq_keep_mask));
1446 I915_WRITE(RING_HWSTAM(ring->mmio_base), 0xffffffff);
1447
Arun Siluvery2e5356d2015-06-02 20:06:59 +01001448 if (ring->status_page.obj) {
1449 I915_WRITE(RING_HWS_PGA(ring->mmio_base),
1450 (u32)ring->status_page.gfx_addr);
1451 POSTING_READ(RING_HWS_PGA(ring->mmio_base));
1452 }
1453
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001454 I915_WRITE(RING_MODE_GEN7(ring),
1455 _MASKED_BIT_DISABLE(GFX_REPLAY_MODE) |
1456 _MASKED_BIT_ENABLE(GFX_RUN_LIST_ENABLE));
1457 POSTING_READ(RING_MODE_GEN7(ring));
Thomas Danielc0a03a22015-01-09 11:09:37 +00001458 ring->next_context_status_buffer = 0;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001459 DRM_DEBUG_DRIVER("Execlists enabled for %s\n", ring->name);
1460
1461 memset(&ring->hangcheck, 0, sizeof(ring->hangcheck));
1462
1463 return 0;
1464}
1465
1466static int gen8_init_render_ring(struct intel_engine_cs *ring)
1467{
1468 struct drm_device *dev = ring->dev;
1469 struct drm_i915_private *dev_priv = dev->dev_private;
1470 int ret;
1471
1472 ret = gen8_init_common_ring(ring);
1473 if (ret)
1474 return ret;
1475
1476 /* We need to disable the AsyncFlip performance optimisations in order
1477 * to use MI_WAIT_FOR_EVENT within the CS. It should already be
1478 * programmed to '1' on all products.
1479 *
1480 * WaDisableAsyncFlipPerfMode:snb,ivb,hsw,vlv,bdw,chv
1481 */
1482 I915_WRITE(MI_MODE, _MASKED_BIT_ENABLE(ASYNC_FLIP_PERF_DISABLE));
1483
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001484 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_FORCE_ORDERING));
1485
Michel Thierry771b9a52014-11-11 16:47:33 +00001486 return init_workarounds_ring(ring);
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001487}
1488
Damien Lespiau82ef8222015-02-09 19:33:08 +00001489static int gen9_init_render_ring(struct intel_engine_cs *ring)
1490{
1491 int ret;
1492
1493 ret = gen8_init_common_ring(ring);
1494 if (ret)
1495 return ret;
1496
1497 return init_workarounds_ring(ring);
1498}
1499
Michel Thierry7a01a0a2015-06-26 13:46:14 +01001500static int intel_logical_ring_emit_pdps(struct drm_i915_gem_request *req)
1501{
1502 struct i915_hw_ppgtt *ppgtt = req->ctx->ppgtt;
1503 struct intel_engine_cs *ring = req->ring;
1504 struct intel_ringbuffer *ringbuf = req->ringbuf;
1505 const int num_lri_cmds = GEN8_LEGACY_PDPES * 2;
1506 int i, ret;
1507
1508 ret = intel_logical_ring_begin(req, num_lri_cmds * 2 + 2);
1509 if (ret)
1510 return ret;
1511
1512 intel_logical_ring_emit(ringbuf, MI_LOAD_REGISTER_IMM(num_lri_cmds));
1513 for (i = GEN8_LEGACY_PDPES - 1; i >= 0; i--) {
1514 const dma_addr_t pd_daddr = i915_page_dir_dma_addr(ppgtt, i);
1515
1516 intel_logical_ring_emit(ringbuf, GEN8_RING_PDP_UDW(ring, i));
1517 intel_logical_ring_emit(ringbuf, upper_32_bits(pd_daddr));
1518 intel_logical_ring_emit(ringbuf, GEN8_RING_PDP_LDW(ring, i));
1519 intel_logical_ring_emit(ringbuf, lower_32_bits(pd_daddr));
1520 }
1521
1522 intel_logical_ring_emit(ringbuf, MI_NOOP);
1523 intel_logical_ring_advance(ringbuf);
1524
1525 return 0;
1526}
1527
John Harrisonbe795fc2015-05-29 17:44:03 +01001528static int gen8_emit_bb_start(struct drm_i915_gem_request *req,
John Harrison8e004ef2015-02-13 11:48:10 +00001529 u64 offset, unsigned dispatch_flags)
Oscar Mateo15648582014-07-24 17:04:32 +01001530{
John Harrisonbe795fc2015-05-29 17:44:03 +01001531 struct intel_ringbuffer *ringbuf = req->ringbuf;
John Harrison8e004ef2015-02-13 11:48:10 +00001532 bool ppgtt = !(dispatch_flags & I915_DISPATCH_SECURE);
Oscar Mateo15648582014-07-24 17:04:32 +01001533 int ret;
1534
Michel Thierry7a01a0a2015-06-26 13:46:14 +01001535 /* Don't rely in hw updating PDPs, specially in lite-restore.
1536 * Ideally, we should set Force PD Restore in ctx descriptor,
1537 * but we can't. Force Restore would be a second option, but
1538 * it is unsafe in case of lite-restore (because the ctx is
Michel Thierry2dba3232015-07-30 11:06:23 +01001539 * not idle). PML4 is allocated during ppgtt init so this is
1540 * not needed in 48-bit.*/
Michel Thierry7a01a0a2015-06-26 13:46:14 +01001541 if (req->ctx->ppgtt &&
1542 (intel_ring_flag(req->ring) & req->ctx->ppgtt->pd_dirty_rings)) {
Michel Thierry2dba3232015-07-30 11:06:23 +01001543 if (!USES_FULL_48BIT_PPGTT(req->i915)) {
1544 ret = intel_logical_ring_emit_pdps(req);
1545 if (ret)
1546 return ret;
1547 }
Michel Thierry7a01a0a2015-06-26 13:46:14 +01001548
1549 req->ctx->ppgtt->pd_dirty_rings &= ~intel_ring_flag(req->ring);
1550 }
1551
John Harrison4d616a22015-05-29 17:44:08 +01001552 ret = intel_logical_ring_begin(req, 4);
Oscar Mateo15648582014-07-24 17:04:32 +01001553 if (ret)
1554 return ret;
1555
1556 /* FIXME(BDW): Address space and security selectors. */
Abdiel Janulgue69225282015-06-16 13:39:42 +03001557 intel_logical_ring_emit(ringbuf, MI_BATCH_BUFFER_START_GEN8 |
1558 (ppgtt<<8) |
1559 (dispatch_flags & I915_DISPATCH_RS ?
1560 MI_BATCH_RESOURCE_STREAMER : 0));
Oscar Mateo15648582014-07-24 17:04:32 +01001561 intel_logical_ring_emit(ringbuf, lower_32_bits(offset));
1562 intel_logical_ring_emit(ringbuf, upper_32_bits(offset));
1563 intel_logical_ring_emit(ringbuf, MI_NOOP);
1564 intel_logical_ring_advance(ringbuf);
1565
1566 return 0;
1567}
1568
Oscar Mateo73d477f2014-07-24 17:04:31 +01001569static bool gen8_logical_ring_get_irq(struct intel_engine_cs *ring)
1570{
1571 struct drm_device *dev = ring->dev;
1572 struct drm_i915_private *dev_priv = dev->dev_private;
1573 unsigned long flags;
1574
Daniel Vetter7cd512f2014-09-15 11:38:57 +02001575 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
Oscar Mateo73d477f2014-07-24 17:04:31 +01001576 return false;
1577
1578 spin_lock_irqsave(&dev_priv->irq_lock, flags);
1579 if (ring->irq_refcount++ == 0) {
1580 I915_WRITE_IMR(ring, ~(ring->irq_enable_mask | ring->irq_keep_mask));
1581 POSTING_READ(RING_IMR(ring->mmio_base));
1582 }
1583 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
1584
1585 return true;
1586}
1587
1588static void gen8_logical_ring_put_irq(struct intel_engine_cs *ring)
1589{
1590 struct drm_device *dev = ring->dev;
1591 struct drm_i915_private *dev_priv = dev->dev_private;
1592 unsigned long flags;
1593
1594 spin_lock_irqsave(&dev_priv->irq_lock, flags);
1595 if (--ring->irq_refcount == 0) {
1596 I915_WRITE_IMR(ring, ~ring->irq_keep_mask);
1597 POSTING_READ(RING_IMR(ring->mmio_base));
1598 }
1599 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
1600}
1601
John Harrison7deb4d32015-05-29 17:43:59 +01001602static int gen8_emit_flush(struct drm_i915_gem_request *request,
Oscar Mateo47122742014-07-24 17:04:28 +01001603 u32 invalidate_domains,
1604 u32 unused)
1605{
John Harrison7deb4d32015-05-29 17:43:59 +01001606 struct intel_ringbuffer *ringbuf = request->ringbuf;
Oscar Mateo47122742014-07-24 17:04:28 +01001607 struct intel_engine_cs *ring = ringbuf->ring;
1608 struct drm_device *dev = ring->dev;
1609 struct drm_i915_private *dev_priv = dev->dev_private;
1610 uint32_t cmd;
1611 int ret;
1612
John Harrison4d616a22015-05-29 17:44:08 +01001613 ret = intel_logical_ring_begin(request, 4);
Oscar Mateo47122742014-07-24 17:04:28 +01001614 if (ret)
1615 return ret;
1616
1617 cmd = MI_FLUSH_DW + 1;
1618
Chris Wilsonf0a1fb12015-01-22 13:42:00 +00001619 /* We always require a command barrier so that subsequent
1620 * commands, such as breadcrumb interrupts, are strictly ordered
1621 * wrt the contents of the write cache being flushed to memory
1622 * (and thus being coherent from the CPU).
1623 */
1624 cmd |= MI_FLUSH_DW_STORE_INDEX | MI_FLUSH_DW_OP_STOREDW;
1625
1626 if (invalidate_domains & I915_GEM_GPU_DOMAINS) {
1627 cmd |= MI_INVALIDATE_TLB;
1628 if (ring == &dev_priv->ring[VCS])
1629 cmd |= MI_INVALIDATE_BSD;
Oscar Mateo47122742014-07-24 17:04:28 +01001630 }
1631
1632 intel_logical_ring_emit(ringbuf, cmd);
1633 intel_logical_ring_emit(ringbuf,
1634 I915_GEM_HWS_SCRATCH_ADDR |
1635 MI_FLUSH_DW_USE_GTT);
1636 intel_logical_ring_emit(ringbuf, 0); /* upper addr */
1637 intel_logical_ring_emit(ringbuf, 0); /* value */
1638 intel_logical_ring_advance(ringbuf);
1639
1640 return 0;
1641}
1642
John Harrison7deb4d32015-05-29 17:43:59 +01001643static int gen8_emit_flush_render(struct drm_i915_gem_request *request,
Oscar Mateo47122742014-07-24 17:04:28 +01001644 u32 invalidate_domains,
1645 u32 flush_domains)
1646{
John Harrison7deb4d32015-05-29 17:43:59 +01001647 struct intel_ringbuffer *ringbuf = request->ringbuf;
Oscar Mateo47122742014-07-24 17:04:28 +01001648 struct intel_engine_cs *ring = ringbuf->ring;
1649 u32 scratch_addr = ring->scratch.gtt_offset + 2 * CACHELINE_BYTES;
Imre Deak9647ff32015-01-25 13:27:11 -08001650 bool vf_flush_wa;
Oscar Mateo47122742014-07-24 17:04:28 +01001651 u32 flags = 0;
1652 int ret;
1653
1654 flags |= PIPE_CONTROL_CS_STALL;
1655
1656 if (flush_domains) {
1657 flags |= PIPE_CONTROL_RENDER_TARGET_CACHE_FLUSH;
1658 flags |= PIPE_CONTROL_DEPTH_CACHE_FLUSH;
1659 }
1660
1661 if (invalidate_domains) {
1662 flags |= PIPE_CONTROL_TLB_INVALIDATE;
1663 flags |= PIPE_CONTROL_INSTRUCTION_CACHE_INVALIDATE;
1664 flags |= PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE;
1665 flags |= PIPE_CONTROL_VF_CACHE_INVALIDATE;
1666 flags |= PIPE_CONTROL_CONST_CACHE_INVALIDATE;
1667 flags |= PIPE_CONTROL_STATE_CACHE_INVALIDATE;
1668 flags |= PIPE_CONTROL_QW_WRITE;
1669 flags |= PIPE_CONTROL_GLOBAL_GTT_IVB;
1670 }
1671
Imre Deak9647ff32015-01-25 13:27:11 -08001672 /*
1673 * On GEN9+ Before VF_CACHE_INVALIDATE we need to emit a NULL pipe
1674 * control.
1675 */
1676 vf_flush_wa = INTEL_INFO(ring->dev)->gen >= 9 &&
1677 flags & PIPE_CONTROL_VF_CACHE_INVALIDATE;
1678
John Harrison4d616a22015-05-29 17:44:08 +01001679 ret = intel_logical_ring_begin(request, vf_flush_wa ? 12 : 6);
Oscar Mateo47122742014-07-24 17:04:28 +01001680 if (ret)
1681 return ret;
1682
Imre Deak9647ff32015-01-25 13:27:11 -08001683 if (vf_flush_wa) {
1684 intel_logical_ring_emit(ringbuf, GFX_OP_PIPE_CONTROL(6));
1685 intel_logical_ring_emit(ringbuf, 0);
1686 intel_logical_ring_emit(ringbuf, 0);
1687 intel_logical_ring_emit(ringbuf, 0);
1688 intel_logical_ring_emit(ringbuf, 0);
1689 intel_logical_ring_emit(ringbuf, 0);
1690 }
1691
Oscar Mateo47122742014-07-24 17:04:28 +01001692 intel_logical_ring_emit(ringbuf, GFX_OP_PIPE_CONTROL(6));
1693 intel_logical_ring_emit(ringbuf, flags);
1694 intel_logical_ring_emit(ringbuf, scratch_addr);
1695 intel_logical_ring_emit(ringbuf, 0);
1696 intel_logical_ring_emit(ringbuf, 0);
1697 intel_logical_ring_emit(ringbuf, 0);
1698 intel_logical_ring_advance(ringbuf);
1699
1700 return 0;
1701}
1702
Oscar Mateoe94e37a2014-07-24 17:04:25 +01001703static u32 gen8_get_seqno(struct intel_engine_cs *ring, bool lazy_coherency)
1704{
1705 return intel_read_status_page(ring, I915_GEM_HWS_INDEX);
1706}
1707
1708static void gen8_set_seqno(struct intel_engine_cs *ring, u32 seqno)
1709{
1710 intel_write_status_page(ring, I915_GEM_HWS_INDEX, seqno);
1711}
1712
Imre Deak319404d2015-08-14 18:35:27 +03001713static u32 bxt_a_get_seqno(struct intel_engine_cs *ring, bool lazy_coherency)
1714{
1715
1716 /*
1717 * On BXT A steppings there is a HW coherency issue whereby the
1718 * MI_STORE_DATA_IMM storing the completed request's seqno
1719 * occasionally doesn't invalidate the CPU cache. Work around this by
1720 * clflushing the corresponding cacheline whenever the caller wants
1721 * the coherency to be guaranteed. Note that this cacheline is known
1722 * to be clean at this point, since we only write it in
1723 * bxt_a_set_seqno(), where we also do a clflush after the write. So
1724 * this clflush in practice becomes an invalidate operation.
1725 */
1726
1727 if (!lazy_coherency)
1728 intel_flush_status_page(ring, I915_GEM_HWS_INDEX);
1729
1730 return intel_read_status_page(ring, I915_GEM_HWS_INDEX);
1731}
1732
1733static void bxt_a_set_seqno(struct intel_engine_cs *ring, u32 seqno)
1734{
1735 intel_write_status_page(ring, I915_GEM_HWS_INDEX, seqno);
1736
1737 /* See bxt_a_get_seqno() explaining the reason for the clflush. */
1738 intel_flush_status_page(ring, I915_GEM_HWS_INDEX);
1739}
1740
John Harrisonc4e76632015-05-29 17:44:01 +01001741static int gen8_emit_request(struct drm_i915_gem_request *request)
Oscar Mateo4da46e12014-07-24 17:04:27 +01001742{
John Harrisonc4e76632015-05-29 17:44:01 +01001743 struct intel_ringbuffer *ringbuf = request->ringbuf;
Oscar Mateo4da46e12014-07-24 17:04:27 +01001744 struct intel_engine_cs *ring = ringbuf->ring;
1745 u32 cmd;
1746 int ret;
1747
Michel Thierry53292cd2015-04-15 18:11:33 +01001748 /*
1749 * Reserve space for 2 NOOPs at the end of each request to be
1750 * used as a workaround for not being allowed to do lite
1751 * restore with HEAD==TAIL (WaIdleLiteRestore).
1752 */
John Harrison4d616a22015-05-29 17:44:08 +01001753 ret = intel_logical_ring_begin(request, 8);
Oscar Mateo4da46e12014-07-24 17:04:27 +01001754 if (ret)
1755 return ret;
1756
Ville Syrjälä8edfbb82014-11-14 18:16:56 +02001757 cmd = MI_STORE_DWORD_IMM_GEN4;
Oscar Mateo4da46e12014-07-24 17:04:27 +01001758 cmd |= MI_GLOBAL_GTT;
1759
1760 intel_logical_ring_emit(ringbuf, cmd);
1761 intel_logical_ring_emit(ringbuf,
1762 (ring->status_page.gfx_addr +
1763 (I915_GEM_HWS_INDEX << MI_STORE_DWORD_INDEX_SHIFT)));
1764 intel_logical_ring_emit(ringbuf, 0);
John Harrisonc4e76632015-05-29 17:44:01 +01001765 intel_logical_ring_emit(ringbuf, i915_gem_request_get_seqno(request));
Oscar Mateo4da46e12014-07-24 17:04:27 +01001766 intel_logical_ring_emit(ringbuf, MI_USER_INTERRUPT);
1767 intel_logical_ring_emit(ringbuf, MI_NOOP);
John Harrisonae707972015-05-29 17:44:14 +01001768 intel_logical_ring_advance_and_submit(request);
Oscar Mateo4da46e12014-07-24 17:04:27 +01001769
Michel Thierry53292cd2015-04-15 18:11:33 +01001770 /*
1771 * Here we add two extra NOOPs as padding to avoid
1772 * lite restore of a context with HEAD==TAIL.
1773 */
1774 intel_logical_ring_emit(ringbuf, MI_NOOP);
1775 intel_logical_ring_emit(ringbuf, MI_NOOP);
1776 intel_logical_ring_advance(ringbuf);
1777
Oscar Mateo4da46e12014-07-24 17:04:27 +01001778 return 0;
1779}
1780
John Harrisonbe013632015-05-29 17:43:45 +01001781static int intel_lr_context_render_state_init(struct drm_i915_gem_request *req)
Damien Lespiaucef437a2015-02-10 19:32:19 +00001782{
Damien Lespiaucef437a2015-02-10 19:32:19 +00001783 struct render_state so;
Damien Lespiaucef437a2015-02-10 19:32:19 +00001784 int ret;
1785
John Harrisonbe013632015-05-29 17:43:45 +01001786 ret = i915_gem_render_state_prepare(req->ring, &so);
Damien Lespiaucef437a2015-02-10 19:32:19 +00001787 if (ret)
1788 return ret;
1789
1790 if (so.rodata == NULL)
1791 return 0;
1792
John Harrisonbe795fc2015-05-29 17:44:03 +01001793 ret = req->ring->emit_bb_start(req, so.ggtt_offset,
John Harrisonbe013632015-05-29 17:43:45 +01001794 I915_DISPATCH_SECURE);
Damien Lespiaucef437a2015-02-10 19:32:19 +00001795 if (ret)
1796 goto out;
1797
Arun Siluvery84e81022015-07-20 10:46:10 +01001798 ret = req->ring->emit_bb_start(req,
1799 (so.ggtt_offset + so.aux_batch_offset),
1800 I915_DISPATCH_SECURE);
1801 if (ret)
1802 goto out;
1803
John Harrisonb2af0372015-05-29 17:43:50 +01001804 i915_vma_move_to_active(i915_gem_obj_to_ggtt(so.obj), req);
Damien Lespiaucef437a2015-02-10 19:32:19 +00001805
Damien Lespiaucef437a2015-02-10 19:32:19 +00001806out:
1807 i915_gem_render_state_fini(&so);
1808 return ret;
1809}
1810
John Harrison87531812015-05-29 17:43:44 +01001811static int gen8_init_rcs_context(struct drm_i915_gem_request *req)
Thomas Daniele7778be2014-12-02 12:50:48 +00001812{
1813 int ret;
1814
John Harrisone2be4fa2015-05-29 17:43:54 +01001815 ret = intel_logical_ring_workarounds_emit(req);
Thomas Daniele7778be2014-12-02 12:50:48 +00001816 if (ret)
1817 return ret;
1818
Peter Antoine3bbaba02015-07-10 20:13:11 +03001819 ret = intel_rcs_context_init_mocs(req);
1820 /*
1821 * Failing to program the MOCS is non-fatal.The system will not
1822 * run at peak performance. So generate an error and carry on.
1823 */
1824 if (ret)
1825 DRM_ERROR("MOCS failed to program: expect performance issues.\n");
1826
John Harrisonbe013632015-05-29 17:43:45 +01001827 return intel_lr_context_render_state_init(req);
Thomas Daniele7778be2014-12-02 12:50:48 +00001828}
1829
Oscar Mateo73e4d072014-07-24 17:04:48 +01001830/**
1831 * intel_logical_ring_cleanup() - deallocate the Engine Command Streamer
1832 *
1833 * @ring: Engine Command Streamer.
1834 *
1835 */
Oscar Mateo454afeb2014-07-24 17:04:22 +01001836void intel_logical_ring_cleanup(struct intel_engine_cs *ring)
1837{
John Harrison6402c332014-10-31 12:00:26 +00001838 struct drm_i915_private *dev_priv;
Oscar Mateo9832b9d2014-07-24 17:04:30 +01001839
Oscar Mateo48d82382014-07-24 17:04:23 +01001840 if (!intel_ring_initialized(ring))
1841 return;
1842
John Harrison6402c332014-10-31 12:00:26 +00001843 dev_priv = ring->dev->dev_private;
1844
Oscar Mateo9832b9d2014-07-24 17:04:30 +01001845 intel_logical_ring_stop(ring);
1846 WARN_ON((I915_READ_MODE(ring) & MODE_IDLE) == 0);
Oscar Mateo48d82382014-07-24 17:04:23 +01001847
1848 if (ring->cleanup)
1849 ring->cleanup(ring);
1850
1851 i915_cmd_parser_fini_ring(ring);
Chris Wilson06fbca72015-04-07 16:20:36 +01001852 i915_gem_batch_pool_fini(&ring->batch_pool);
Oscar Mateo48d82382014-07-24 17:04:23 +01001853
1854 if (ring->status_page.obj) {
1855 kunmap(sg_page(ring->status_page.obj->pages->sgl));
1856 ring->status_page.obj = NULL;
1857 }
Arun Siluvery17ee9502015-06-19 19:07:01 +01001858
1859 lrc_destroy_wa_ctx_obj(ring);
Oscar Mateo454afeb2014-07-24 17:04:22 +01001860}
1861
1862static int logical_ring_init(struct drm_device *dev, struct intel_engine_cs *ring)
1863{
Oscar Mateo48d82382014-07-24 17:04:23 +01001864 int ret;
Oscar Mateo48d82382014-07-24 17:04:23 +01001865
1866 /* Intentionally left blank. */
1867 ring->buffer = NULL;
1868
1869 ring->dev = dev;
1870 INIT_LIST_HEAD(&ring->active_list);
1871 INIT_LIST_HEAD(&ring->request_list);
Chris Wilson06fbca72015-04-07 16:20:36 +01001872 i915_gem_batch_pool_init(dev, &ring->batch_pool);
Oscar Mateo48d82382014-07-24 17:04:23 +01001873 init_waitqueue_head(&ring->irq_queue);
1874
Michel Thierryacdd8842014-07-24 17:04:38 +01001875 INIT_LIST_HEAD(&ring->execlist_queue);
Thomas Danielc86ee3a92014-11-13 10:27:05 +00001876 INIT_LIST_HEAD(&ring->execlist_retired_req_list);
Michel Thierryacdd8842014-07-24 17:04:38 +01001877 spin_lock_init(&ring->execlist_lock);
1878
Oscar Mateo48d82382014-07-24 17:04:23 +01001879 ret = i915_cmd_parser_init_ring(ring);
1880 if (ret)
1881 return ret;
1882
Oscar Mateo564ddb22014-08-21 11:40:54 +01001883 ret = intel_lr_context_deferred_create(ring->default_context, ring);
1884
1885 return ret;
Oscar Mateo454afeb2014-07-24 17:04:22 +01001886}
1887
1888static int logical_render_ring_init(struct drm_device *dev)
1889{
1890 struct drm_i915_private *dev_priv = dev->dev_private;
1891 struct intel_engine_cs *ring = &dev_priv->ring[RCS];
Daniel Vetter99be1df2014-11-20 00:33:06 +01001892 int ret;
Oscar Mateo454afeb2014-07-24 17:04:22 +01001893
1894 ring->name = "render ring";
1895 ring->id = RCS;
1896 ring->mmio_base = RENDER_RING_BASE;
1897 ring->irq_enable_mask =
1898 GT_RENDER_USER_INTERRUPT << GEN8_RCS_IRQ_SHIFT;
Oscar Mateo73d477f2014-07-24 17:04:31 +01001899 ring->irq_keep_mask =
1900 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_RCS_IRQ_SHIFT;
1901 if (HAS_L3_DPF(dev))
1902 ring->irq_keep_mask |= GT_RENDER_L3_PARITY_ERROR_INTERRUPT;
Oscar Mateo454afeb2014-07-24 17:04:22 +01001903
Damien Lespiau82ef8222015-02-09 19:33:08 +00001904 if (INTEL_INFO(dev)->gen >= 9)
1905 ring->init_hw = gen9_init_render_ring;
1906 else
1907 ring->init_hw = gen8_init_render_ring;
Thomas Daniele7778be2014-12-02 12:50:48 +00001908 ring->init_context = gen8_init_rcs_context;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001909 ring->cleanup = intel_fini_pipe_control;
Imre Deak319404d2015-08-14 18:35:27 +03001910 if (IS_BROXTON(dev) && INTEL_REVID(dev) < BXT_REVID_B0) {
1911 ring->get_seqno = bxt_a_get_seqno;
1912 ring->set_seqno = bxt_a_set_seqno;
1913 } else {
1914 ring->get_seqno = gen8_get_seqno;
1915 ring->set_seqno = gen8_set_seqno;
1916 }
Oscar Mateo4da46e12014-07-24 17:04:27 +01001917 ring->emit_request = gen8_emit_request;
Oscar Mateo47122742014-07-24 17:04:28 +01001918 ring->emit_flush = gen8_emit_flush_render;
Oscar Mateo73d477f2014-07-24 17:04:31 +01001919 ring->irq_get = gen8_logical_ring_get_irq;
1920 ring->irq_put = gen8_logical_ring_put_irq;
Oscar Mateo15648582014-07-24 17:04:32 +01001921 ring->emit_bb_start = gen8_emit_bb_start;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001922
Daniel Vetter99be1df2014-11-20 00:33:06 +01001923 ring->dev = dev;
Arun Siluveryc4db7592015-06-19 18:37:11 +01001924
1925 ret = intel_init_pipe_control(ring);
Daniel Vetter99be1df2014-11-20 00:33:06 +01001926 if (ret)
1927 return ret;
1928
Arun Siluvery17ee9502015-06-19 19:07:01 +01001929 ret = intel_init_workaround_bb(ring);
1930 if (ret) {
1931 /*
1932 * We continue even if we fail to initialize WA batch
1933 * because we only expect rare glitches but nothing
1934 * critical to prevent us from using GPU
1935 */
1936 DRM_ERROR("WA batch buffer initialization failed: %d\n",
1937 ret);
1938 }
1939
Arun Siluveryc4db7592015-06-19 18:37:11 +01001940 ret = logical_ring_init(dev, ring);
1941 if (ret) {
Arun Siluvery17ee9502015-06-19 19:07:01 +01001942 lrc_destroy_wa_ctx_obj(ring);
Arun Siluveryc4db7592015-06-19 18:37:11 +01001943 }
Arun Siluvery17ee9502015-06-19 19:07:01 +01001944
1945 return ret;
Oscar Mateo454afeb2014-07-24 17:04:22 +01001946}
1947
1948static int logical_bsd_ring_init(struct drm_device *dev)
1949{
1950 struct drm_i915_private *dev_priv = dev->dev_private;
1951 struct intel_engine_cs *ring = &dev_priv->ring[VCS];
1952
1953 ring->name = "bsd ring";
1954 ring->id = VCS;
1955 ring->mmio_base = GEN6_BSD_RING_BASE;
1956 ring->irq_enable_mask =
1957 GT_RENDER_USER_INTERRUPT << GEN8_VCS1_IRQ_SHIFT;
Oscar Mateo73d477f2014-07-24 17:04:31 +01001958 ring->irq_keep_mask =
1959 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VCS1_IRQ_SHIFT;
Oscar Mateo454afeb2014-07-24 17:04:22 +01001960
Daniel Vetterecfe00d2014-11-20 00:33:04 +01001961 ring->init_hw = gen8_init_common_ring;
Imre Deak319404d2015-08-14 18:35:27 +03001962 if (IS_BROXTON(dev) && INTEL_REVID(dev) < BXT_REVID_B0) {
1963 ring->get_seqno = bxt_a_get_seqno;
1964 ring->set_seqno = bxt_a_set_seqno;
1965 } else {
1966 ring->get_seqno = gen8_get_seqno;
1967 ring->set_seqno = gen8_set_seqno;
1968 }
Oscar Mateo4da46e12014-07-24 17:04:27 +01001969 ring->emit_request = gen8_emit_request;
Oscar Mateo47122742014-07-24 17:04:28 +01001970 ring->emit_flush = gen8_emit_flush;
Oscar Mateo73d477f2014-07-24 17:04:31 +01001971 ring->irq_get = gen8_logical_ring_get_irq;
1972 ring->irq_put = gen8_logical_ring_put_irq;
Oscar Mateo15648582014-07-24 17:04:32 +01001973 ring->emit_bb_start = gen8_emit_bb_start;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001974
Oscar Mateo454afeb2014-07-24 17:04:22 +01001975 return logical_ring_init(dev, ring);
1976}
1977
1978static int logical_bsd2_ring_init(struct drm_device *dev)
1979{
1980 struct drm_i915_private *dev_priv = dev->dev_private;
1981 struct intel_engine_cs *ring = &dev_priv->ring[VCS2];
1982
1983 ring->name = "bds2 ring";
1984 ring->id = VCS2;
1985 ring->mmio_base = GEN8_BSD2_RING_BASE;
1986 ring->irq_enable_mask =
1987 GT_RENDER_USER_INTERRUPT << GEN8_VCS2_IRQ_SHIFT;
Oscar Mateo73d477f2014-07-24 17:04:31 +01001988 ring->irq_keep_mask =
1989 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VCS2_IRQ_SHIFT;
Oscar Mateo454afeb2014-07-24 17:04:22 +01001990
Daniel Vetterecfe00d2014-11-20 00:33:04 +01001991 ring->init_hw = gen8_init_common_ring;
Oscar Mateoe94e37a2014-07-24 17:04:25 +01001992 ring->get_seqno = gen8_get_seqno;
1993 ring->set_seqno = gen8_set_seqno;
Oscar Mateo4da46e12014-07-24 17:04:27 +01001994 ring->emit_request = gen8_emit_request;
Oscar Mateo47122742014-07-24 17:04:28 +01001995 ring->emit_flush = gen8_emit_flush;
Oscar Mateo73d477f2014-07-24 17:04:31 +01001996 ring->irq_get = gen8_logical_ring_get_irq;
1997 ring->irq_put = gen8_logical_ring_put_irq;
Oscar Mateo15648582014-07-24 17:04:32 +01001998 ring->emit_bb_start = gen8_emit_bb_start;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001999
Oscar Mateo454afeb2014-07-24 17:04:22 +01002000 return logical_ring_init(dev, ring);
2001}
2002
2003static int logical_blt_ring_init(struct drm_device *dev)
2004{
2005 struct drm_i915_private *dev_priv = dev->dev_private;
2006 struct intel_engine_cs *ring = &dev_priv->ring[BCS];
2007
2008 ring->name = "blitter ring";
2009 ring->id = BCS;
2010 ring->mmio_base = BLT_RING_BASE;
2011 ring->irq_enable_mask =
2012 GT_RENDER_USER_INTERRUPT << GEN8_BCS_IRQ_SHIFT;
Oscar Mateo73d477f2014-07-24 17:04:31 +01002013 ring->irq_keep_mask =
2014 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_BCS_IRQ_SHIFT;
Oscar Mateo454afeb2014-07-24 17:04:22 +01002015
Daniel Vetterecfe00d2014-11-20 00:33:04 +01002016 ring->init_hw = gen8_init_common_ring;
Imre Deak319404d2015-08-14 18:35:27 +03002017 if (IS_BROXTON(dev) && INTEL_REVID(dev) < BXT_REVID_B0) {
2018 ring->get_seqno = bxt_a_get_seqno;
2019 ring->set_seqno = bxt_a_set_seqno;
2020 } else {
2021 ring->get_seqno = gen8_get_seqno;
2022 ring->set_seqno = gen8_set_seqno;
2023 }
Oscar Mateo4da46e12014-07-24 17:04:27 +01002024 ring->emit_request = gen8_emit_request;
Oscar Mateo47122742014-07-24 17:04:28 +01002025 ring->emit_flush = gen8_emit_flush;
Oscar Mateo73d477f2014-07-24 17:04:31 +01002026 ring->irq_get = gen8_logical_ring_get_irq;
2027 ring->irq_put = gen8_logical_ring_put_irq;
Oscar Mateo15648582014-07-24 17:04:32 +01002028 ring->emit_bb_start = gen8_emit_bb_start;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01002029
Oscar Mateo454afeb2014-07-24 17:04:22 +01002030 return logical_ring_init(dev, ring);
2031}
2032
2033static int logical_vebox_ring_init(struct drm_device *dev)
2034{
2035 struct drm_i915_private *dev_priv = dev->dev_private;
2036 struct intel_engine_cs *ring = &dev_priv->ring[VECS];
2037
2038 ring->name = "video enhancement ring";
2039 ring->id = VECS;
2040 ring->mmio_base = VEBOX_RING_BASE;
2041 ring->irq_enable_mask =
2042 GT_RENDER_USER_INTERRUPT << GEN8_VECS_IRQ_SHIFT;
Oscar Mateo73d477f2014-07-24 17:04:31 +01002043 ring->irq_keep_mask =
2044 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VECS_IRQ_SHIFT;
Oscar Mateo454afeb2014-07-24 17:04:22 +01002045
Daniel Vetterecfe00d2014-11-20 00:33:04 +01002046 ring->init_hw = gen8_init_common_ring;
Imre Deak319404d2015-08-14 18:35:27 +03002047 if (IS_BROXTON(dev) && INTEL_REVID(dev) < BXT_REVID_B0) {
2048 ring->get_seqno = bxt_a_get_seqno;
2049 ring->set_seqno = bxt_a_set_seqno;
2050 } else {
2051 ring->get_seqno = gen8_get_seqno;
2052 ring->set_seqno = gen8_set_seqno;
2053 }
Oscar Mateo4da46e12014-07-24 17:04:27 +01002054 ring->emit_request = gen8_emit_request;
Oscar Mateo47122742014-07-24 17:04:28 +01002055 ring->emit_flush = gen8_emit_flush;
Oscar Mateo73d477f2014-07-24 17:04:31 +01002056 ring->irq_get = gen8_logical_ring_get_irq;
2057 ring->irq_put = gen8_logical_ring_put_irq;
Oscar Mateo15648582014-07-24 17:04:32 +01002058 ring->emit_bb_start = gen8_emit_bb_start;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01002059
Oscar Mateo454afeb2014-07-24 17:04:22 +01002060 return logical_ring_init(dev, ring);
2061}
2062
Oscar Mateo73e4d072014-07-24 17:04:48 +01002063/**
2064 * intel_logical_rings_init() - allocate, populate and init the Engine Command Streamers
2065 * @dev: DRM device.
2066 *
2067 * This function inits the engines for an Execlists submission style (the equivalent in the
2068 * legacy ringbuffer submission world would be i915_gem_init_rings). It does it only for
2069 * those engines that are present in the hardware.
2070 *
2071 * Return: non-zero if the initialization failed.
2072 */
Oscar Mateo454afeb2014-07-24 17:04:22 +01002073int intel_logical_rings_init(struct drm_device *dev)
2074{
2075 struct drm_i915_private *dev_priv = dev->dev_private;
2076 int ret;
2077
2078 ret = logical_render_ring_init(dev);
2079 if (ret)
2080 return ret;
2081
2082 if (HAS_BSD(dev)) {
2083 ret = logical_bsd_ring_init(dev);
2084 if (ret)
2085 goto cleanup_render_ring;
2086 }
2087
2088 if (HAS_BLT(dev)) {
2089 ret = logical_blt_ring_init(dev);
2090 if (ret)
2091 goto cleanup_bsd_ring;
2092 }
2093
2094 if (HAS_VEBOX(dev)) {
2095 ret = logical_vebox_ring_init(dev);
2096 if (ret)
2097 goto cleanup_blt_ring;
2098 }
2099
2100 if (HAS_BSD2(dev)) {
2101 ret = logical_bsd2_ring_init(dev);
2102 if (ret)
2103 goto cleanup_vebox_ring;
2104 }
2105
2106 ret = i915_gem_set_seqno(dev, ((u32)~0 - 0x1000));
2107 if (ret)
2108 goto cleanup_bsd2_ring;
2109
2110 return 0;
2111
2112cleanup_bsd2_ring:
2113 intel_logical_ring_cleanup(&dev_priv->ring[VCS2]);
2114cleanup_vebox_ring:
2115 intel_logical_ring_cleanup(&dev_priv->ring[VECS]);
2116cleanup_blt_ring:
2117 intel_logical_ring_cleanup(&dev_priv->ring[BCS]);
2118cleanup_bsd_ring:
2119 intel_logical_ring_cleanup(&dev_priv->ring[VCS]);
2120cleanup_render_ring:
2121 intel_logical_ring_cleanup(&dev_priv->ring[RCS]);
2122
2123 return ret;
2124}
2125
Jeff McGee0cea6502015-02-13 10:27:56 -06002126static u32
2127make_rpcs(struct drm_device *dev)
2128{
2129 u32 rpcs = 0;
2130
2131 /*
2132 * No explicit RPCS request is needed to ensure full
2133 * slice/subslice/EU enablement prior to Gen9.
2134 */
2135 if (INTEL_INFO(dev)->gen < 9)
2136 return 0;
2137
2138 /*
2139 * Starting in Gen9, render power gating can leave
2140 * slice/subslice/EU in a partially enabled state. We
2141 * must make an explicit request through RPCS for full
2142 * enablement.
2143 */
2144 if (INTEL_INFO(dev)->has_slice_pg) {
2145 rpcs |= GEN8_RPCS_S_CNT_ENABLE;
2146 rpcs |= INTEL_INFO(dev)->slice_total <<
2147 GEN8_RPCS_S_CNT_SHIFT;
2148 rpcs |= GEN8_RPCS_ENABLE;
2149 }
2150
2151 if (INTEL_INFO(dev)->has_subslice_pg) {
2152 rpcs |= GEN8_RPCS_SS_CNT_ENABLE;
2153 rpcs |= INTEL_INFO(dev)->subslice_per_slice <<
2154 GEN8_RPCS_SS_CNT_SHIFT;
2155 rpcs |= GEN8_RPCS_ENABLE;
2156 }
2157
2158 if (INTEL_INFO(dev)->has_eu_pg) {
2159 rpcs |= INTEL_INFO(dev)->eu_per_subslice <<
2160 GEN8_RPCS_EU_MIN_SHIFT;
2161 rpcs |= INTEL_INFO(dev)->eu_per_subslice <<
2162 GEN8_RPCS_EU_MAX_SHIFT;
2163 rpcs |= GEN8_RPCS_ENABLE;
2164 }
2165
2166 return rpcs;
2167}
2168
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002169static int
2170populate_lr_context(struct intel_context *ctx, struct drm_i915_gem_object *ctx_obj,
2171 struct intel_engine_cs *ring, struct intel_ringbuffer *ringbuf)
2172{
Thomas Daniel2d965532014-08-19 10:13:36 +01002173 struct drm_device *dev = ring->dev;
2174 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterae6c4802014-08-06 15:04:53 +02002175 struct i915_hw_ppgtt *ppgtt = ctx->ppgtt;
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002176 struct page *page;
2177 uint32_t *reg_state;
2178 int ret;
2179
Thomas Daniel2d965532014-08-19 10:13:36 +01002180 if (!ppgtt)
2181 ppgtt = dev_priv->mm.aliasing_ppgtt;
2182
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002183 ret = i915_gem_object_set_to_cpu_domain(ctx_obj, true);
2184 if (ret) {
2185 DRM_DEBUG_DRIVER("Could not set to CPU domain\n");
2186 return ret;
2187 }
2188
2189 ret = i915_gem_object_get_pages(ctx_obj);
2190 if (ret) {
2191 DRM_DEBUG_DRIVER("Could not get object pages\n");
2192 return ret;
2193 }
2194
2195 i915_gem_object_pin_pages(ctx_obj);
2196
2197 /* The second page of the context object contains some fields which must
2198 * be set up prior to the first execution. */
Alex Daid1675192015-08-12 15:43:43 +01002199 page = i915_gem_object_get_page(ctx_obj, LRC_STATE_PN);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002200 reg_state = kmap_atomic(page);
2201
2202 /* A context is actually a big batch buffer with several MI_LOAD_REGISTER_IMM
2203 * commands followed by (reg, value) pairs. The values we are setting here are
2204 * only for the first context restore: on a subsequent save, the GPU will
2205 * recreate this batchbuffer with new values (including all the missing
2206 * MI_LOAD_REGISTER_IMM commands that we are not initializing here). */
2207 if (ring->id == RCS)
2208 reg_state[CTX_LRI_HEADER_0] = MI_LOAD_REGISTER_IMM(14);
2209 else
2210 reg_state[CTX_LRI_HEADER_0] = MI_LOAD_REGISTER_IMM(11);
2211 reg_state[CTX_LRI_HEADER_0] |= MI_LRI_FORCE_POSTED;
2212 reg_state[CTX_CONTEXT_CONTROL] = RING_CONTEXT_CONTROL(ring);
2213 reg_state[CTX_CONTEXT_CONTROL+1] =
Zhi Wang5baa22c52015-02-10 17:11:36 +08002214 _MASKED_BIT_ENABLE(CTX_CTRL_INHIBIT_SYN_CTX_SWITCH |
Abdiel Janulgue69225282015-06-16 13:39:42 +03002215 CTX_CTRL_ENGINE_CTX_RESTORE_INHIBIT |
2216 CTX_CTRL_RS_CTX_ENABLE);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002217 reg_state[CTX_RING_HEAD] = RING_HEAD(ring->mmio_base);
2218 reg_state[CTX_RING_HEAD+1] = 0;
2219 reg_state[CTX_RING_TAIL] = RING_TAIL(ring->mmio_base);
2220 reg_state[CTX_RING_TAIL+1] = 0;
2221 reg_state[CTX_RING_BUFFER_START] = RING_START(ring->mmio_base);
Thomas Daniel7ba717c2014-11-13 10:28:56 +00002222 /* Ring buffer start address is not known until the buffer is pinned.
2223 * It is written to the context image in execlists_update_context()
2224 */
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002225 reg_state[CTX_RING_BUFFER_CONTROL] = RING_CTL(ring->mmio_base);
2226 reg_state[CTX_RING_BUFFER_CONTROL+1] =
2227 ((ringbuf->size - PAGE_SIZE) & RING_NR_PAGES) | RING_VALID;
2228 reg_state[CTX_BB_HEAD_U] = ring->mmio_base + 0x168;
2229 reg_state[CTX_BB_HEAD_U+1] = 0;
2230 reg_state[CTX_BB_HEAD_L] = ring->mmio_base + 0x140;
2231 reg_state[CTX_BB_HEAD_L+1] = 0;
2232 reg_state[CTX_BB_STATE] = ring->mmio_base + 0x110;
2233 reg_state[CTX_BB_STATE+1] = (1<<5);
2234 reg_state[CTX_SECOND_BB_HEAD_U] = ring->mmio_base + 0x11c;
2235 reg_state[CTX_SECOND_BB_HEAD_U+1] = 0;
2236 reg_state[CTX_SECOND_BB_HEAD_L] = ring->mmio_base + 0x114;
2237 reg_state[CTX_SECOND_BB_HEAD_L+1] = 0;
2238 reg_state[CTX_SECOND_BB_STATE] = ring->mmio_base + 0x118;
2239 reg_state[CTX_SECOND_BB_STATE+1] = 0;
2240 if (ring->id == RCS) {
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002241 reg_state[CTX_BB_PER_CTX_PTR] = ring->mmio_base + 0x1c0;
2242 reg_state[CTX_BB_PER_CTX_PTR+1] = 0;
2243 reg_state[CTX_RCS_INDIRECT_CTX] = ring->mmio_base + 0x1c4;
2244 reg_state[CTX_RCS_INDIRECT_CTX+1] = 0;
2245 reg_state[CTX_RCS_INDIRECT_CTX_OFFSET] = ring->mmio_base + 0x1c8;
2246 reg_state[CTX_RCS_INDIRECT_CTX_OFFSET+1] = 0;
Arun Siluvery17ee9502015-06-19 19:07:01 +01002247 if (ring->wa_ctx.obj) {
2248 struct i915_ctx_workarounds *wa_ctx = &ring->wa_ctx;
2249 uint32_t ggtt_offset = i915_gem_obj_ggtt_offset(wa_ctx->obj);
2250
2251 reg_state[CTX_RCS_INDIRECT_CTX+1] =
2252 (ggtt_offset + wa_ctx->indirect_ctx.offset * sizeof(uint32_t)) |
2253 (wa_ctx->indirect_ctx.size / CACHELINE_DWORDS);
2254
2255 reg_state[CTX_RCS_INDIRECT_CTX_OFFSET+1] =
2256 CTX_RCS_INDIRECT_CTX_OFFSET_DEFAULT << 6;
2257
2258 reg_state[CTX_BB_PER_CTX_PTR+1] =
2259 (ggtt_offset + wa_ctx->per_ctx.offset * sizeof(uint32_t)) |
2260 0x01;
2261 }
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002262 }
2263 reg_state[CTX_LRI_HEADER_1] = MI_LOAD_REGISTER_IMM(9);
2264 reg_state[CTX_LRI_HEADER_1] |= MI_LRI_FORCE_POSTED;
2265 reg_state[CTX_CTX_TIMESTAMP] = ring->mmio_base + 0x3a8;
2266 reg_state[CTX_CTX_TIMESTAMP+1] = 0;
2267 reg_state[CTX_PDP3_UDW] = GEN8_RING_PDP_UDW(ring, 3);
2268 reg_state[CTX_PDP3_LDW] = GEN8_RING_PDP_LDW(ring, 3);
2269 reg_state[CTX_PDP2_UDW] = GEN8_RING_PDP_UDW(ring, 2);
2270 reg_state[CTX_PDP2_LDW] = GEN8_RING_PDP_LDW(ring, 2);
2271 reg_state[CTX_PDP1_UDW] = GEN8_RING_PDP_UDW(ring, 1);
2272 reg_state[CTX_PDP1_LDW] = GEN8_RING_PDP_LDW(ring, 1);
2273 reg_state[CTX_PDP0_UDW] = GEN8_RING_PDP_UDW(ring, 0);
2274 reg_state[CTX_PDP0_LDW] = GEN8_RING_PDP_LDW(ring, 0);
Michel Thierryd7b26332015-04-08 12:13:34 +01002275
Michel Thierry2dba3232015-07-30 11:06:23 +01002276 if (USES_FULL_48BIT_PPGTT(ppgtt->base.dev)) {
2277 /* 64b PPGTT (48bit canonical)
2278 * PDP0_DESCRIPTOR contains the base address to PML4 and
2279 * other PDP Descriptors are ignored.
2280 */
2281 ASSIGN_CTX_PML4(ppgtt, reg_state);
2282 } else {
2283 /* 32b PPGTT
2284 * PDP*_DESCRIPTOR contains the base address of space supported.
2285 * With dynamic page allocation, PDPs may not be allocated at
2286 * this point. Point the unallocated PDPs to the scratch page
2287 */
2288 ASSIGN_CTX_PDP(ppgtt, reg_state, 3);
2289 ASSIGN_CTX_PDP(ppgtt, reg_state, 2);
2290 ASSIGN_CTX_PDP(ppgtt, reg_state, 1);
2291 ASSIGN_CTX_PDP(ppgtt, reg_state, 0);
2292 }
2293
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002294 if (ring->id == RCS) {
2295 reg_state[CTX_LRI_HEADER_2] = MI_LOAD_REGISTER_IMM(1);
Jeff McGee0cea6502015-02-13 10:27:56 -06002296 reg_state[CTX_R_PWR_CLK_STATE] = GEN8_R_PWR_CLK_STATE;
2297 reg_state[CTX_R_PWR_CLK_STATE+1] = make_rpcs(dev);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002298 }
2299
2300 kunmap_atomic(reg_state);
2301
2302 ctx_obj->dirty = 1;
2303 set_page_dirty(page);
2304 i915_gem_object_unpin_pages(ctx_obj);
2305
2306 return 0;
2307}
2308
Oscar Mateo73e4d072014-07-24 17:04:48 +01002309/**
2310 * intel_lr_context_free() - free the LRC specific bits of a context
2311 * @ctx: the LR context to free.
2312 *
2313 * The real context freeing is done in i915_gem_context_free: this only
2314 * takes care of the bits that are LRC related: the per-engine backing
2315 * objects and the logical ringbuffer.
2316 */
Oscar Mateoede7d422014-07-24 17:04:12 +01002317void intel_lr_context_free(struct intel_context *ctx)
2318{
Oscar Mateo8c8579172014-07-24 17:04:14 +01002319 int i;
2320
2321 for (i = 0; i < I915_NUM_RINGS; i++) {
2322 struct drm_i915_gem_object *ctx_obj = ctx->engine[i].state;
Oscar Mateo84c23772014-07-24 17:04:15 +01002323
Oscar Mateo8c8579172014-07-24 17:04:14 +01002324 if (ctx_obj) {
Oscar Mateodcb4c122014-11-13 10:28:10 +00002325 struct intel_ringbuffer *ringbuf =
2326 ctx->engine[i].ringbuf;
2327 struct intel_engine_cs *ring = ringbuf->ring;
2328
Thomas Daniel7ba717c2014-11-13 10:28:56 +00002329 if (ctx == ring->default_context) {
2330 intel_unpin_ringbuffer_obj(ringbuf);
2331 i915_gem_object_ggtt_unpin(ctx_obj);
2332 }
Mika Kuoppalaa7cbede2015-01-13 11:32:25 +02002333 WARN_ON(ctx->engine[ring->id].pin_count);
Oscar Mateo84c23772014-07-24 17:04:15 +01002334 intel_destroy_ringbuffer_obj(ringbuf);
2335 kfree(ringbuf);
Oscar Mateo8c8579172014-07-24 17:04:14 +01002336 drm_gem_object_unreference(&ctx_obj->base);
2337 }
2338 }
2339}
2340
2341static uint32_t get_lr_context_size(struct intel_engine_cs *ring)
2342{
2343 int ret = 0;
2344
Michael H. Nguyen468c6812014-11-13 17:51:49 +00002345 WARN_ON(INTEL_INFO(ring->dev)->gen < 8);
Oscar Mateo8c8579172014-07-24 17:04:14 +01002346
2347 switch (ring->id) {
2348 case RCS:
Michael H. Nguyen468c6812014-11-13 17:51:49 +00002349 if (INTEL_INFO(ring->dev)->gen >= 9)
2350 ret = GEN9_LR_CONTEXT_RENDER_SIZE;
2351 else
2352 ret = GEN8_LR_CONTEXT_RENDER_SIZE;
Oscar Mateo8c8579172014-07-24 17:04:14 +01002353 break;
2354 case VCS:
2355 case BCS:
2356 case VECS:
2357 case VCS2:
2358 ret = GEN8_LR_CONTEXT_OTHER_SIZE;
2359 break;
2360 }
2361
2362 return ret;
Oscar Mateoede7d422014-07-24 17:04:12 +01002363}
2364
Daniel Vetter70b0ea82014-11-18 09:09:32 +01002365static void lrc_setup_hardware_status_page(struct intel_engine_cs *ring,
Thomas Daniel1df06b72014-10-29 09:52:51 +00002366 struct drm_i915_gem_object *default_ctx_obj)
2367{
2368 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Alex Daid1675192015-08-12 15:43:43 +01002369 struct page *page;
Thomas Daniel1df06b72014-10-29 09:52:51 +00002370
Alex Daid1675192015-08-12 15:43:43 +01002371 /* The HWSP is part of the default context object in LRC mode. */
2372 ring->status_page.gfx_addr = i915_gem_obj_ggtt_offset(default_ctx_obj)
2373 + LRC_PPHWSP_PN * PAGE_SIZE;
2374 page = i915_gem_object_get_page(default_ctx_obj, LRC_PPHWSP_PN);
2375 ring->status_page.page_addr = kmap(page);
Thomas Daniel1df06b72014-10-29 09:52:51 +00002376 ring->status_page.obj = default_ctx_obj;
2377
2378 I915_WRITE(RING_HWS_PGA(ring->mmio_base),
2379 (u32)ring->status_page.gfx_addr);
2380 POSTING_READ(RING_HWS_PGA(ring->mmio_base));
Thomas Daniel1df06b72014-10-29 09:52:51 +00002381}
2382
Oscar Mateo73e4d072014-07-24 17:04:48 +01002383/**
2384 * intel_lr_context_deferred_create() - create the LRC specific bits of a context
2385 * @ctx: LR context to create.
2386 * @ring: engine to be used with the context.
2387 *
2388 * This function can be called more than once, with different engines, if we plan
2389 * to use the context with them. The context backing objects and the ringbuffers
2390 * (specially the ringbuffer backing objects) suck a lot of memory up, and that's why
2391 * the creation is a deferred call: it's better to make sure first that we need to use
2392 * a given ring with the context.
2393 *
Masanari Iida32197aa2014-10-20 23:53:13 +09002394 * Return: non-zero on error.
Oscar Mateo73e4d072014-07-24 17:04:48 +01002395 */
Oscar Mateoede7d422014-07-24 17:04:12 +01002396int intel_lr_context_deferred_create(struct intel_context *ctx,
2397 struct intel_engine_cs *ring)
2398{
Oscar Mateodcb4c122014-11-13 10:28:10 +00002399 const bool is_global_default_ctx = (ctx == ring->default_context);
Oscar Mateo8c8579172014-07-24 17:04:14 +01002400 struct drm_device *dev = ring->dev;
Alex Daid1675192015-08-12 15:43:43 +01002401 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateo8c8579172014-07-24 17:04:14 +01002402 struct drm_i915_gem_object *ctx_obj;
2403 uint32_t context_size;
Oscar Mateo84c23772014-07-24 17:04:15 +01002404 struct intel_ringbuffer *ringbuf;
Oscar Mateo8c8579172014-07-24 17:04:14 +01002405 int ret;
2406
Oscar Mateoede7d422014-07-24 17:04:12 +01002407 WARN_ON(ctx->legacy_hw_ctx.rcs_state != NULL);
Daniel Vetterbfc882b2014-11-20 00:33:08 +01002408 WARN_ON(ctx->engine[ring->id].state);
Oscar Mateoede7d422014-07-24 17:04:12 +01002409
Oscar Mateo8c8579172014-07-24 17:04:14 +01002410 context_size = round_up(get_lr_context_size(ring), 4096);
2411
Alex Daid1675192015-08-12 15:43:43 +01002412 /* One extra page as the sharing data between driver and GuC */
2413 context_size += PAGE_SIZE * LRC_PPHWSP_PN;
2414
Chris Wilson149c86e2015-04-07 16:21:11 +01002415 ctx_obj = i915_gem_alloc_object(dev, context_size);
Dan Carpenter3126a662015-04-30 17:30:50 +03002416 if (!ctx_obj) {
2417 DRM_DEBUG_DRIVER("Alloc LRC backing obj failed.\n");
2418 return -ENOMEM;
Oscar Mateo8c8579172014-07-24 17:04:14 +01002419 }
2420
Oscar Mateodcb4c122014-11-13 10:28:10 +00002421 if (is_global_default_ctx) {
Alex Daid1675192015-08-12 15:43:43 +01002422 ret = i915_gem_obj_ggtt_pin(ctx_obj, GEN8_LR_CONTEXT_ALIGN,
2423 PIN_OFFSET_BIAS | GUC_WOPCM_TOP);
Oscar Mateodcb4c122014-11-13 10:28:10 +00002424 if (ret) {
2425 DRM_DEBUG_DRIVER("Pin LRC backing obj failed: %d\n",
2426 ret);
2427 drm_gem_object_unreference(&ctx_obj->base);
2428 return ret;
2429 }
Alex Daid1675192015-08-12 15:43:43 +01002430
2431 /* Invalidate GuC TLB. */
2432 if (i915.enable_guc_submission)
2433 I915_WRITE(GEN8_GTCR, GEN8_GTCR_INVALIDATE);
Oscar Mateo8c8579172014-07-24 17:04:14 +01002434 }
2435
Oscar Mateo84c23772014-07-24 17:04:15 +01002436 ringbuf = kzalloc(sizeof(*ringbuf), GFP_KERNEL);
2437 if (!ringbuf) {
2438 DRM_DEBUG_DRIVER("Failed to allocate ringbuffer %s\n",
2439 ring->name);
Oscar Mateo84c23772014-07-24 17:04:15 +01002440 ret = -ENOMEM;
Thomas Daniel7ba717c2014-11-13 10:28:56 +00002441 goto error_unpin_ctx;
Oscar Mateo84c23772014-07-24 17:04:15 +01002442 }
2443
Daniel Vetter0c7dd532014-08-11 16:17:44 +02002444 ringbuf->ring = ring;
Oscar Mateo582d67f2014-07-24 17:04:16 +01002445
Alex Daid1675192015-08-12 15:43:43 +01002446 ringbuf->size = 4 * PAGE_SIZE;
Oscar Mateo84c23772014-07-24 17:04:15 +01002447 ringbuf->effective_size = ringbuf->size;
2448 ringbuf->head = 0;
2449 ringbuf->tail = 0;
Oscar Mateo84c23772014-07-24 17:04:15 +01002450 ringbuf->last_retired_head = -1;
Dave Gordonebd0fd42014-11-27 11:22:49 +00002451 intel_ring_update_space(ringbuf);
Oscar Mateo84c23772014-07-24 17:04:15 +01002452
Thomas Daniel7ba717c2014-11-13 10:28:56 +00002453 if (ringbuf->obj == NULL) {
2454 ret = intel_alloc_ringbuffer_obj(dev, ringbuf);
2455 if (ret) {
2456 DRM_DEBUG_DRIVER(
2457 "Failed to allocate ringbuffer obj %s: %d\n",
Oscar Mateo84c23772014-07-24 17:04:15 +01002458 ring->name, ret);
Thomas Daniel7ba717c2014-11-13 10:28:56 +00002459 goto error_free_rbuf;
2460 }
2461
2462 if (is_global_default_ctx) {
2463 ret = intel_pin_and_map_ringbuffer_obj(dev, ringbuf);
2464 if (ret) {
2465 DRM_ERROR(
2466 "Failed to pin and map ringbuffer %s: %d\n",
2467 ring->name, ret);
2468 goto error_destroy_rbuf;
2469 }
2470 }
2471
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002472 }
2473
2474 ret = populate_lr_context(ctx, ctx_obj, ring, ringbuf);
2475 if (ret) {
2476 DRM_DEBUG_DRIVER("Failed to populate LRC: %d\n", ret);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002477 goto error;
Oscar Mateo84c23772014-07-24 17:04:15 +01002478 }
2479
2480 ctx->engine[ring->id].ringbuf = ringbuf;
Oscar Mateo8c8579172014-07-24 17:04:14 +01002481 ctx->engine[ring->id].state = ctx_obj;
Oscar Mateoede7d422014-07-24 17:04:12 +01002482
Daniel Vetter70b0ea82014-11-18 09:09:32 +01002483 if (ctx == ring->default_context)
2484 lrc_setup_hardware_status_page(ring, ctx_obj);
Thomas Daniele7778be2014-12-02 12:50:48 +00002485 else if (ring->id == RCS && !ctx->rcs_initialized) {
Michel Thierry771b9a52014-11-11 16:47:33 +00002486 if (ring->init_context) {
John Harrison76c39162015-05-29 17:43:43 +01002487 struct drm_i915_gem_request *req;
2488
2489 ret = i915_gem_request_alloc(ring, ctx, &req);
2490 if (ret)
2491 return ret;
2492
John Harrison87531812015-05-29 17:43:44 +01002493 ret = ring->init_context(req);
Thomas Daniele7778be2014-12-02 12:50:48 +00002494 if (ret) {
Michel Thierry771b9a52014-11-11 16:47:33 +00002495 DRM_ERROR("ring init context: %d\n", ret);
John Harrison76c39162015-05-29 17:43:43 +01002496 i915_gem_request_cancel(req);
Thomas Daniele7778be2014-12-02 12:50:48 +00002497 ctx->engine[ring->id].ringbuf = NULL;
2498 ctx->engine[ring->id].state = NULL;
2499 goto error;
2500 }
John Harrison76c39162015-05-29 17:43:43 +01002501
John Harrison75289872015-05-29 17:43:49 +01002502 i915_add_request_no_flush(req);
Michel Thierry771b9a52014-11-11 16:47:33 +00002503 }
2504
Oscar Mateo564ddb22014-08-21 11:40:54 +01002505 ctx->rcs_initialized = true;
2506 }
2507
Oscar Mateoede7d422014-07-24 17:04:12 +01002508 return 0;
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002509
2510error:
Thomas Daniel7ba717c2014-11-13 10:28:56 +00002511 if (is_global_default_ctx)
2512 intel_unpin_ringbuffer_obj(ringbuf);
2513error_destroy_rbuf:
2514 intel_destroy_ringbuffer_obj(ringbuf);
2515error_free_rbuf:
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002516 kfree(ringbuf);
Thomas Daniel7ba717c2014-11-13 10:28:56 +00002517error_unpin_ctx:
Oscar Mateodcb4c122014-11-13 10:28:10 +00002518 if (is_global_default_ctx)
2519 i915_gem_object_ggtt_unpin(ctx_obj);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01002520 drm_gem_object_unreference(&ctx_obj->base);
2521 return ret;
Oscar Mateoede7d422014-07-24 17:04:12 +01002522}
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002523
2524void intel_lr_context_reset(struct drm_device *dev,
2525 struct intel_context *ctx)
2526{
2527 struct drm_i915_private *dev_priv = dev->dev_private;
2528 struct intel_engine_cs *ring;
2529 int i;
2530
2531 for_each_ring(ring, dev_priv, i) {
2532 struct drm_i915_gem_object *ctx_obj =
2533 ctx->engine[ring->id].state;
2534 struct intel_ringbuffer *ringbuf =
2535 ctx->engine[ring->id].ringbuf;
2536 uint32_t *reg_state;
2537 struct page *page;
2538
2539 if (!ctx_obj)
2540 continue;
2541
2542 if (i915_gem_object_get_pages(ctx_obj)) {
2543 WARN(1, "Failed get_pages for context obj\n");
2544 continue;
2545 }
Alex Daid1675192015-08-12 15:43:43 +01002546 page = i915_gem_object_get_page(ctx_obj, LRC_STATE_PN);
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00002547 reg_state = kmap_atomic(page);
2548
2549 reg_state[CTX_RING_HEAD+1] = 0;
2550 reg_state[CTX_RING_TAIL+1] = 0;
2551
2552 kunmap_atomic(reg_state);
2553
2554 ringbuf->head = 0;
2555 ringbuf->tail = 0;
2556 }
2557}