blob: 2779070f59d2435e402a9840c742f5fd332ffe2c [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"
Oscar Mateo127f1002014-07-24 17:04:11 +0100138
Michael H. Nguyen468c6812014-11-13 17:51:49 +0000139#define GEN9_LR_CONTEXT_RENDER_SIZE (22 * PAGE_SIZE)
Oscar Mateo8c8579172014-07-24 17:04:14 +0100140#define GEN8_LR_CONTEXT_RENDER_SIZE (20 * PAGE_SIZE)
141#define GEN8_LR_CONTEXT_OTHER_SIZE (2 * PAGE_SIZE)
142
Thomas Daniele981e7b2014-07-24 17:04:39 +0100143#define RING_EXECLIST_QFULL (1 << 0x2)
144#define RING_EXECLIST1_VALID (1 << 0x3)
145#define RING_EXECLIST0_VALID (1 << 0x4)
146#define RING_EXECLIST_ACTIVE_STATUS (3 << 0xE)
147#define RING_EXECLIST1_ACTIVE (1 << 0x11)
148#define RING_EXECLIST0_ACTIVE (1 << 0x12)
149
150#define GEN8_CTX_STATUS_IDLE_ACTIVE (1 << 0)
151#define GEN8_CTX_STATUS_PREEMPTED (1 << 1)
152#define GEN8_CTX_STATUS_ELEMENT_SWITCH (1 << 2)
153#define GEN8_CTX_STATUS_ACTIVE_IDLE (1 << 3)
154#define GEN8_CTX_STATUS_COMPLETE (1 << 4)
155#define GEN8_CTX_STATUS_LITE_RESTORE (1 << 15)
Oscar Mateo8670d6f2014-07-24 17:04:17 +0100156
157#define CTX_LRI_HEADER_0 0x01
158#define CTX_CONTEXT_CONTROL 0x02
159#define CTX_RING_HEAD 0x04
160#define CTX_RING_TAIL 0x06
161#define CTX_RING_BUFFER_START 0x08
162#define CTX_RING_BUFFER_CONTROL 0x0a
163#define CTX_BB_HEAD_U 0x0c
164#define CTX_BB_HEAD_L 0x0e
165#define CTX_BB_STATE 0x10
166#define CTX_SECOND_BB_HEAD_U 0x12
167#define CTX_SECOND_BB_HEAD_L 0x14
168#define CTX_SECOND_BB_STATE 0x16
169#define CTX_BB_PER_CTX_PTR 0x18
170#define CTX_RCS_INDIRECT_CTX 0x1a
171#define CTX_RCS_INDIRECT_CTX_OFFSET 0x1c
172#define CTX_LRI_HEADER_1 0x21
173#define CTX_CTX_TIMESTAMP 0x22
174#define CTX_PDP3_UDW 0x24
175#define CTX_PDP3_LDW 0x26
176#define CTX_PDP2_UDW 0x28
177#define CTX_PDP2_LDW 0x2a
178#define CTX_PDP1_UDW 0x2c
179#define CTX_PDP1_LDW 0x2e
180#define CTX_PDP0_UDW 0x30
181#define CTX_PDP0_LDW 0x32
182#define CTX_LRI_HEADER_2 0x41
183#define CTX_R_PWR_CLK_STATE 0x42
184#define CTX_GPGPU_CSR_BASE_ADDRESS 0x44
185
Ben Widawsky84b790f2014-07-24 17:04:36 +0100186#define GEN8_CTX_VALID (1<<0)
187#define GEN8_CTX_FORCE_PD_RESTORE (1<<1)
188#define GEN8_CTX_FORCE_RESTORE (1<<2)
189#define GEN8_CTX_L3LLC_COHERENT (1<<5)
190#define GEN8_CTX_PRIVILEGE (1<<8)
Michel Thierrye5815a22015-04-08 12:13:32 +0100191
192#define ASSIGN_CTX_PDP(ppgtt, reg_state, n) { \
Michel Thierryd7b26332015-04-08 12:13:34 +0100193 const u64 _addr = test_bit(n, ppgtt->pdp.used_pdpes) ? \
Michel Thierrye5815a22015-04-08 12:13:32 +0100194 ppgtt->pdp.page_directory[n]->daddr : \
195 ppgtt->scratch_pd->daddr; \
196 reg_state[CTX_PDP ## n ## _UDW+1] = upper_32_bits(_addr); \
197 reg_state[CTX_PDP ## n ## _LDW+1] = lower_32_bits(_addr); \
198}
199
Ben Widawsky84b790f2014-07-24 17:04:36 +0100200enum {
201 ADVANCED_CONTEXT = 0,
202 LEGACY_CONTEXT,
203 ADVANCED_AD_CONTEXT,
204 LEGACY_64B_CONTEXT
205};
206#define GEN8_CTX_MODE_SHIFT 3
207enum {
208 FAULT_AND_HANG = 0,
209 FAULT_AND_HALT, /* Debug only */
210 FAULT_AND_STREAM,
211 FAULT_AND_CONTINUE /* Unsupported */
212};
213#define GEN8_CTX_ID_SHIFT 32
214
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000215static int intel_lr_context_pin(struct intel_engine_cs *ring,
216 struct intel_context *ctx);
217
Oscar Mateo73e4d072014-07-24 17:04:48 +0100218/**
219 * intel_sanitize_enable_execlists() - sanitize i915.enable_execlists
220 * @dev: DRM device.
221 * @enable_execlists: value of i915.enable_execlists module parameter.
222 *
223 * Only certain platforms support Execlists (the prerequisites being
Thomas Daniel27401d12014-12-11 12:48:35 +0000224 * support for Logical Ring Contexts and Aliasing PPGTT or better).
Oscar Mateo73e4d072014-07-24 17:04:48 +0100225 *
226 * Return: 1 if Execlists is supported and has to be enabled.
227 */
Oscar Mateo127f1002014-07-24 17:04:11 +0100228int intel_sanitize_enable_execlists(struct drm_device *dev, int enable_execlists)
229{
Daniel Vetterbd84b1e2014-08-11 15:57:57 +0200230 WARN_ON(i915.enable_ppgtt == -1);
231
Damien Lespiau70ee45e2014-11-14 15:05:59 +0000232 if (INTEL_INFO(dev)->gen >= 9)
233 return 1;
234
Oscar Mateo127f1002014-07-24 17:04:11 +0100235 if (enable_execlists == 0)
236 return 0;
237
Oscar Mateo14bf9932014-07-24 17:04:34 +0100238 if (HAS_LOGICAL_RING_CONTEXTS(dev) && USES_PPGTT(dev) &&
239 i915.use_mmio_flip >= 0)
Oscar Mateo127f1002014-07-24 17:04:11 +0100240 return 1;
241
242 return 0;
243}
Oscar Mateoede7d422014-07-24 17:04:12 +0100244
Oscar Mateo73e4d072014-07-24 17:04:48 +0100245/**
246 * intel_execlists_ctx_id() - get the Execlists Context ID
247 * @ctx_obj: Logical Ring Context backing object.
248 *
249 * Do not confuse with ctx->id! Unfortunately we have a name overload
250 * here: the old context ID we pass to userspace as a handler so that
251 * they can refer to a context, and the new context ID we pass to the
252 * ELSP so that the GPU can inform us of the context status via
253 * interrupts.
254 *
255 * Return: 20-bits globally unique context ID.
256 */
Ben Widawsky84b790f2014-07-24 17:04:36 +0100257u32 intel_execlists_ctx_id(struct drm_i915_gem_object *ctx_obj)
258{
259 u32 lrca = i915_gem_obj_ggtt_offset(ctx_obj);
260
261 /* LRCA is required to be 4K aligned so the more significant 20 bits
262 * are globally unique */
263 return lrca >> 12;
264}
265
Nick Hoath203a5712015-02-06 11:30:04 +0000266static uint64_t execlists_ctx_descriptor(struct intel_engine_cs *ring,
267 struct drm_i915_gem_object *ctx_obj)
Ben Widawsky84b790f2014-07-24 17:04:36 +0100268{
Nick Hoath203a5712015-02-06 11:30:04 +0000269 struct drm_device *dev = ring->dev;
Ben Widawsky84b790f2014-07-24 17:04:36 +0100270 uint64_t desc;
271 uint64_t lrca = i915_gem_obj_ggtt_offset(ctx_obj);
Michel Thierryacdd8842014-07-24 17:04:38 +0100272
273 WARN_ON(lrca & 0xFFFFFFFF00000FFFULL);
Ben Widawsky84b790f2014-07-24 17:04:36 +0100274
275 desc = GEN8_CTX_VALID;
276 desc |= LEGACY_CONTEXT << GEN8_CTX_MODE_SHIFT;
Arun Siluvery51847fb2015-04-07 14:01:33 +0100277 if (IS_GEN8(ctx_obj->base.dev))
278 desc |= GEN8_CTX_L3LLC_COHERENT;
Ben Widawsky84b790f2014-07-24 17:04:36 +0100279 desc |= GEN8_CTX_PRIVILEGE;
280 desc |= lrca;
281 desc |= (u64)intel_execlists_ctx_id(ctx_obj) << GEN8_CTX_ID_SHIFT;
282
283 /* TODO: WaDisableLiteRestore when we start using semaphore
284 * signalling between Command Streamers */
285 /* desc |= GEN8_CTX_FORCE_RESTORE; */
286
Nick Hoath203a5712015-02-06 11:30:04 +0000287 /* WaEnableForceRestoreInCtxtDescForVCS:skl */
288 if (IS_GEN9(dev) &&
289 INTEL_REVID(dev) <= SKL_REVID_B0 &&
290 (ring->id == BCS || ring->id == VCS ||
291 ring->id == VECS || ring->id == VCS2))
292 desc |= GEN8_CTX_FORCE_RESTORE;
293
Ben Widawsky84b790f2014-07-24 17:04:36 +0100294 return desc;
295}
296
297static void execlists_elsp_write(struct intel_engine_cs *ring,
298 struct drm_i915_gem_object *ctx_obj0,
299 struct drm_i915_gem_object *ctx_obj1)
300{
Tvrtko Ursulin6e7cc472014-11-13 17:51:51 +0000301 struct drm_device *dev = ring->dev;
302 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky84b790f2014-07-24 17:04:36 +0100303 uint64_t temp = 0;
304 uint32_t desc[4];
305
306 /* XXX: You must always write both descriptors in the order below. */
307 if (ctx_obj1)
Nick Hoath203a5712015-02-06 11:30:04 +0000308 temp = execlists_ctx_descriptor(ring, ctx_obj1);
Ben Widawsky84b790f2014-07-24 17:04:36 +0100309 else
310 temp = 0;
311 desc[1] = (u32)(temp >> 32);
312 desc[0] = (u32)temp;
313
Nick Hoath203a5712015-02-06 11:30:04 +0000314 temp = execlists_ctx_descriptor(ring, ctx_obj0);
Ben Widawsky84b790f2014-07-24 17:04:36 +0100315 desc[3] = (u32)(temp >> 32);
316 desc[2] = (u32)temp;
317
Mika Kuoppala59bad942015-01-16 11:34:40 +0200318 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Ben Widawsky84b790f2014-07-24 17:04:36 +0100319 I915_WRITE(RING_ELSP(ring), desc[1]);
320 I915_WRITE(RING_ELSP(ring), desc[0]);
321 I915_WRITE(RING_ELSP(ring), desc[3]);
Chris Wilson6daccb02015-01-16 11:34:35 +0200322
Ben Widawsky84b790f2014-07-24 17:04:36 +0100323 /* The context is automatically loaded after the following */
324 I915_WRITE(RING_ELSP(ring), desc[2]);
325
326 /* ELSP is a wo register, so use another nearby reg for posting instead */
327 POSTING_READ(RING_EXECLIST_STATUS(ring));
Mika Kuoppala59bad942015-01-16 11:34:40 +0200328 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Ben Widawsky84b790f2014-07-24 17:04:36 +0100329}
330
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000331static int execlists_update_context(struct drm_i915_gem_object *ctx_obj,
332 struct drm_i915_gem_object *ring_obj,
Michel Thierryd7b26332015-04-08 12:13:34 +0100333 struct i915_hw_ppgtt *ppgtt,
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000334 u32 tail)
Oscar Mateoae1250b2014-07-24 17:04:37 +0100335{
336 struct page *page;
337 uint32_t *reg_state;
338
339 page = i915_gem_object_get_page(ctx_obj, 1);
340 reg_state = kmap_atomic(page);
341
342 reg_state[CTX_RING_TAIL+1] = tail;
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000343 reg_state[CTX_RING_BUFFER_START+1] = i915_gem_obj_ggtt_offset(ring_obj);
Oscar Mateoae1250b2014-07-24 17:04:37 +0100344
Michel Thierryd7b26332015-04-08 12:13:34 +0100345 /* True PPGTT with dynamic page allocation: update PDP registers and
346 * point the unallocated PDPs to the scratch page
347 */
348 if (ppgtt) {
349 ASSIGN_CTX_PDP(ppgtt, reg_state, 3);
350 ASSIGN_CTX_PDP(ppgtt, reg_state, 2);
351 ASSIGN_CTX_PDP(ppgtt, reg_state, 1);
352 ASSIGN_CTX_PDP(ppgtt, reg_state, 0);
353 }
354
Oscar Mateoae1250b2014-07-24 17:04:37 +0100355 kunmap_atomic(reg_state);
356
357 return 0;
358}
359
Dave Gordoncd0707c2014-10-30 15:41:56 +0000360static void execlists_submit_contexts(struct intel_engine_cs *ring,
361 struct intel_context *to0, u32 tail0,
362 struct intel_context *to1, u32 tail1)
Ben Widawsky84b790f2014-07-24 17:04:36 +0100363{
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000364 struct drm_i915_gem_object *ctx_obj0 = to0->engine[ring->id].state;
365 struct intel_ringbuffer *ringbuf0 = to0->engine[ring->id].ringbuf;
Ben Widawsky84b790f2014-07-24 17:04:36 +0100366 struct drm_i915_gem_object *ctx_obj1 = NULL;
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000367 struct intel_ringbuffer *ringbuf1 = NULL;
Ben Widawsky84b790f2014-07-24 17:04:36 +0100368
Ben Widawsky84b790f2014-07-24 17:04:36 +0100369 BUG_ON(!ctx_obj0);
Michel Thierryacdd8842014-07-24 17:04:38 +0100370 WARN_ON(!i915_gem_obj_is_pinned(ctx_obj0));
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000371 WARN_ON(!i915_gem_obj_is_pinned(ringbuf0->obj));
Ben Widawsky84b790f2014-07-24 17:04:36 +0100372
Michel Thierryd7b26332015-04-08 12:13:34 +0100373 execlists_update_context(ctx_obj0, ringbuf0->obj, to0->ppgtt, tail0);
Oscar Mateoae1250b2014-07-24 17:04:37 +0100374
Ben Widawsky84b790f2014-07-24 17:04:36 +0100375 if (to1) {
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000376 ringbuf1 = to1->engine[ring->id].ringbuf;
Ben Widawsky84b790f2014-07-24 17:04:36 +0100377 ctx_obj1 = to1->engine[ring->id].state;
378 BUG_ON(!ctx_obj1);
Michel Thierryacdd8842014-07-24 17:04:38 +0100379 WARN_ON(!i915_gem_obj_is_pinned(ctx_obj1));
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000380 WARN_ON(!i915_gem_obj_is_pinned(ringbuf1->obj));
Oscar Mateoae1250b2014-07-24 17:04:37 +0100381
Michel Thierryd7b26332015-04-08 12:13:34 +0100382 execlists_update_context(ctx_obj1, ringbuf1->obj, to1->ppgtt, tail1);
Ben Widawsky84b790f2014-07-24 17:04:36 +0100383 }
384
385 execlists_elsp_write(ring, ctx_obj0, ctx_obj1);
Ben Widawsky84b790f2014-07-24 17:04:36 +0100386}
387
Michel Thierryacdd8842014-07-24 17:04:38 +0100388static void execlists_context_unqueue(struct intel_engine_cs *ring)
389{
Nick Hoath6d3d8272015-01-15 13:10:39 +0000390 struct drm_i915_gem_request *req0 = NULL, *req1 = NULL;
391 struct drm_i915_gem_request *cursor = NULL, *tmp = NULL;
Thomas Daniele981e7b2014-07-24 17:04:39 +0100392
393 assert_spin_locked(&ring->execlist_lock);
Michel Thierryacdd8842014-07-24 17:04:38 +0100394
395 if (list_empty(&ring->execlist_queue))
396 return;
397
398 /* Try to read in pairs */
399 list_for_each_entry_safe(cursor, tmp, &ring->execlist_queue,
400 execlist_link) {
401 if (!req0) {
402 req0 = cursor;
Nick Hoath6d3d8272015-01-15 13:10:39 +0000403 } else if (req0->ctx == cursor->ctx) {
Michel Thierryacdd8842014-07-24 17:04:38 +0100404 /* Same ctx: ignore first request, as second request
405 * will update tail past first request's workload */
Oscar Mateoe1fee722014-07-24 17:04:40 +0100406 cursor->elsp_submitted = req0->elsp_submitted;
Michel Thierryacdd8842014-07-24 17:04:38 +0100407 list_del(&req0->execlist_link);
Thomas Danielc86ee3a92014-11-13 10:27:05 +0000408 list_add_tail(&req0->execlist_link,
409 &ring->execlist_retired_req_list);
Michel Thierryacdd8842014-07-24 17:04:38 +0100410 req0 = cursor;
411 } else {
412 req1 = cursor;
413 break;
414 }
415 }
416
Oscar Mateoe1fee722014-07-24 17:04:40 +0100417 WARN_ON(req1 && req1->elsp_submitted);
418
Nick Hoath6d3d8272015-01-15 13:10:39 +0000419 execlists_submit_contexts(ring, req0->ctx, req0->tail,
420 req1 ? req1->ctx : NULL,
421 req1 ? req1->tail : 0);
Oscar Mateoe1fee722014-07-24 17:04:40 +0100422
423 req0->elsp_submitted++;
424 if (req1)
425 req1->elsp_submitted++;
Michel Thierryacdd8842014-07-24 17:04:38 +0100426}
427
Thomas Daniele981e7b2014-07-24 17:04:39 +0100428static bool execlists_check_remove_request(struct intel_engine_cs *ring,
429 u32 request_id)
430{
Nick Hoath6d3d8272015-01-15 13:10:39 +0000431 struct drm_i915_gem_request *head_req;
Thomas Daniele981e7b2014-07-24 17:04:39 +0100432
433 assert_spin_locked(&ring->execlist_lock);
434
435 head_req = list_first_entry_or_null(&ring->execlist_queue,
Nick Hoath6d3d8272015-01-15 13:10:39 +0000436 struct drm_i915_gem_request,
Thomas Daniele981e7b2014-07-24 17:04:39 +0100437 execlist_link);
438
439 if (head_req != NULL) {
440 struct drm_i915_gem_object *ctx_obj =
Nick Hoath6d3d8272015-01-15 13:10:39 +0000441 head_req->ctx->engine[ring->id].state;
Thomas Daniele981e7b2014-07-24 17:04:39 +0100442 if (intel_execlists_ctx_id(ctx_obj) == request_id) {
Oscar Mateoe1fee722014-07-24 17:04:40 +0100443 WARN(head_req->elsp_submitted == 0,
444 "Never submitted head request\n");
445
446 if (--head_req->elsp_submitted <= 0) {
447 list_del(&head_req->execlist_link);
Thomas Danielc86ee3a92014-11-13 10:27:05 +0000448 list_add_tail(&head_req->execlist_link,
449 &ring->execlist_retired_req_list);
Oscar Mateoe1fee722014-07-24 17:04:40 +0100450 return true;
451 }
Thomas Daniele981e7b2014-07-24 17:04:39 +0100452 }
453 }
454
455 return false;
456}
457
Oscar Mateo73e4d072014-07-24 17:04:48 +0100458/**
Daniel Vetter3f7531c2014-12-10 17:41:43 +0100459 * intel_lrc_irq_handler() - handle Context Switch interrupts
Oscar Mateo73e4d072014-07-24 17:04:48 +0100460 * @ring: Engine Command Streamer to handle.
461 *
462 * Check the unread Context Status Buffers and manage the submission of new
463 * contexts to the ELSP accordingly.
464 */
Daniel Vetter3f7531c2014-12-10 17:41:43 +0100465void intel_lrc_irq_handler(struct intel_engine_cs *ring)
Thomas Daniele981e7b2014-07-24 17:04:39 +0100466{
467 struct drm_i915_private *dev_priv = ring->dev->dev_private;
468 u32 status_pointer;
469 u8 read_pointer;
470 u8 write_pointer;
471 u32 status;
472 u32 status_id;
473 u32 submit_contexts = 0;
474
475 status_pointer = I915_READ(RING_CONTEXT_STATUS_PTR(ring));
476
477 read_pointer = ring->next_context_status_buffer;
478 write_pointer = status_pointer & 0x07;
479 if (read_pointer > write_pointer)
480 write_pointer += 6;
481
482 spin_lock(&ring->execlist_lock);
483
484 while (read_pointer < write_pointer) {
485 read_pointer++;
486 status = I915_READ(RING_CONTEXT_STATUS_BUF(ring) +
487 (read_pointer % 6) * 8);
488 status_id = I915_READ(RING_CONTEXT_STATUS_BUF(ring) +
489 (read_pointer % 6) * 8 + 4);
490
Oscar Mateoe1fee722014-07-24 17:04:40 +0100491 if (status & GEN8_CTX_STATUS_PREEMPTED) {
492 if (status & GEN8_CTX_STATUS_LITE_RESTORE) {
493 if (execlists_check_remove_request(ring, status_id))
494 WARN(1, "Lite Restored request removed from queue\n");
495 } else
496 WARN(1, "Preemption without Lite Restore\n");
497 }
498
499 if ((status & GEN8_CTX_STATUS_ACTIVE_IDLE) ||
500 (status & GEN8_CTX_STATUS_ELEMENT_SWITCH)) {
Thomas Daniele981e7b2014-07-24 17:04:39 +0100501 if (execlists_check_remove_request(ring, status_id))
502 submit_contexts++;
503 }
504 }
505
506 if (submit_contexts != 0)
507 execlists_context_unqueue(ring);
508
509 spin_unlock(&ring->execlist_lock);
510
511 WARN(submit_contexts > 2, "More than two context complete events?\n");
512 ring->next_context_status_buffer = write_pointer % 6;
513
514 I915_WRITE(RING_CONTEXT_STATUS_PTR(ring),
515 ((u32)ring->next_context_status_buffer & 0x07) << 8);
516}
517
Michel Thierryacdd8842014-07-24 17:04:38 +0100518static int execlists_context_queue(struct intel_engine_cs *ring,
519 struct intel_context *to,
Nick Hoath2d129552015-01-15 13:10:36 +0000520 u32 tail,
521 struct drm_i915_gem_request *request)
Michel Thierryacdd8842014-07-24 17:04:38 +0100522{
Nick Hoath6d3d8272015-01-15 13:10:39 +0000523 struct drm_i915_gem_request *cursor;
Thomas Daniele981e7b2014-07-24 17:04:39 +0100524 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Oscar Mateof1ad5a12014-07-24 17:04:41 +0100525 int num_elements = 0;
Michel Thierryacdd8842014-07-24 17:04:38 +0100526
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000527 if (to != ring->default_context)
528 intel_lr_context_pin(ring, to);
529
Nick Hoath2d129552015-01-15 13:10:36 +0000530 if (!request) {
531 /*
532 * If there isn't a request associated with this submission,
533 * create one as a temporary holder.
534 */
Nick Hoath2d129552015-01-15 13:10:36 +0000535 request = kzalloc(sizeof(*request), GFP_KERNEL);
536 if (request == NULL)
537 return -ENOMEM;
Nick Hoath2d129552015-01-15 13:10:36 +0000538 request->ring = ring;
Nick Hoath6d3d8272015-01-15 13:10:39 +0000539 request->ctx = to;
Nick Hoathb3a38992015-02-19 16:30:47 +0000540 kref_init(&request->ref);
541 request->uniq = dev_priv->request_uniq++;
542 i915_gem_context_reference(request->ctx);
Nick Hoath21076372015-01-15 13:10:38 +0000543 } else {
Nick Hoathb3a38992015-02-19 16:30:47 +0000544 i915_gem_request_reference(request);
Nick Hoath21076372015-01-15 13:10:38 +0000545 WARN_ON(to != request->ctx);
Nick Hoath2d129552015-01-15 13:10:36 +0000546 }
Nick Hoath72f95af2015-01-15 13:10:37 +0000547 request->tail = tail;
Nick Hoath2d129552015-01-15 13:10:36 +0000548
Thomas Daniele981e7b2014-07-24 17:04:39 +0100549 intel_runtime_pm_get(dev_priv);
Michel Thierryacdd8842014-07-24 17:04:38 +0100550
Chris Wilsonb5eba372015-04-07 16:20:48 +0100551 spin_lock_irq(&ring->execlist_lock);
Michel Thierryacdd8842014-07-24 17:04:38 +0100552
Oscar Mateof1ad5a12014-07-24 17:04:41 +0100553 list_for_each_entry(cursor, &ring->execlist_queue, execlist_link)
554 if (++num_elements > 2)
555 break;
556
557 if (num_elements > 2) {
Nick Hoath6d3d8272015-01-15 13:10:39 +0000558 struct drm_i915_gem_request *tail_req;
Oscar Mateof1ad5a12014-07-24 17:04:41 +0100559
560 tail_req = list_last_entry(&ring->execlist_queue,
Nick Hoath6d3d8272015-01-15 13:10:39 +0000561 struct drm_i915_gem_request,
Oscar Mateof1ad5a12014-07-24 17:04:41 +0100562 execlist_link);
563
Nick Hoath6d3d8272015-01-15 13:10:39 +0000564 if (to == tail_req->ctx) {
Oscar Mateof1ad5a12014-07-24 17:04:41 +0100565 WARN(tail_req->elsp_submitted != 0,
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000566 "More than 2 already-submitted reqs queued\n");
Oscar Mateof1ad5a12014-07-24 17:04:41 +0100567 list_del(&tail_req->execlist_link);
Thomas Danielc86ee3a92014-11-13 10:27:05 +0000568 list_add_tail(&tail_req->execlist_link,
569 &ring->execlist_retired_req_list);
Oscar Mateof1ad5a12014-07-24 17:04:41 +0100570 }
571 }
572
Nick Hoath6d3d8272015-01-15 13:10:39 +0000573 list_add_tail(&request->execlist_link, &ring->execlist_queue);
Oscar Mateof1ad5a12014-07-24 17:04:41 +0100574 if (num_elements == 0)
Michel Thierryacdd8842014-07-24 17:04:38 +0100575 execlists_context_unqueue(ring);
576
Chris Wilsonb5eba372015-04-07 16:20:48 +0100577 spin_unlock_irq(&ring->execlist_lock);
Michel Thierryacdd8842014-07-24 17:04:38 +0100578
579 return 0;
580}
581
Nick Hoath21076372015-01-15 13:10:38 +0000582static int logical_ring_invalidate_all_caches(struct intel_ringbuffer *ringbuf,
583 struct intel_context *ctx)
Oscar Mateoba8b7cc2014-07-24 17:04:33 +0100584{
585 struct intel_engine_cs *ring = ringbuf->ring;
586 uint32_t flush_domains;
587 int ret;
588
589 flush_domains = 0;
590 if (ring->gpu_caches_dirty)
591 flush_domains = I915_GEM_GPU_DOMAINS;
592
Nick Hoath21076372015-01-15 13:10:38 +0000593 ret = ring->emit_flush(ringbuf, ctx,
594 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
602static int execlists_move_to_gpu(struct intel_ringbuffer *ringbuf,
Nick Hoath21076372015-01-15 13:10:38 +0000603 struct intel_context *ctx,
Oscar Mateoba8b7cc2014-07-24 17:04:33 +0100604 struct list_head *vmas)
605{
606 struct intel_engine_cs *ring = ringbuf->ring;
607 struct i915_vma *vma;
608 uint32_t flush_domains = 0;
609 bool flush_chipset = false;
610 int ret;
611
612 list_for_each_entry(vma, vmas, exec_list) {
613 struct drm_i915_gem_object *obj = vma->obj;
614
615 ret = i915_gem_object_sync(obj, ring);
616 if (ret)
617 return ret;
618
619 if (obj->base.write_domain & I915_GEM_DOMAIN_CPU)
620 flush_chipset |= i915_gem_clflush_object(obj, false);
621
622 flush_domains |= obj->base.write_domain;
623 }
624
625 if (flush_domains & I915_GEM_DOMAIN_GTT)
626 wmb();
627
628 /* Unconditionally invalidate gpu caches and ensure that we do flush
629 * any residual writes from the previous batch.
630 */
Nick Hoath21076372015-01-15 13:10:38 +0000631 return logical_ring_invalidate_all_caches(ringbuf, ctx);
Oscar Mateoba8b7cc2014-07-24 17:04:33 +0100632}
633
John Harrison6689cb22015-03-19 12:30:08 +0000634int intel_logical_ring_alloc_request_extras(struct drm_i915_gem_request *request,
635 struct intel_context *ctx)
John Harrisonbc0dce32015-03-19 12:30:07 +0000636{
John Harrisonbc0dce32015-03-19 12:30:07 +0000637 int ret;
638
John Harrison6689cb22015-03-19 12:30:08 +0000639 if (ctx != request->ring->default_context) {
640 ret = intel_lr_context_pin(request->ring, ctx);
641 if (ret)
John Harrisonbc0dce32015-03-19 12:30:07 +0000642 return ret;
John Harrisonbc0dce32015-03-19 12:30:07 +0000643 }
644
John Harrison6689cb22015-03-19 12:30:08 +0000645 request->ringbuf = ctx->engine[request->ring->id].ringbuf;
646 request->ctx = ctx;
John Harrisonbc0dce32015-03-19 12:30:07 +0000647 i915_gem_context_reference(request->ctx);
John Harrisonbc0dce32015-03-19 12:30:07 +0000648
John Harrisonbc0dce32015-03-19 12:30:07 +0000649 return 0;
650}
651
652static int logical_ring_wait_request(struct intel_ringbuffer *ringbuf,
653 int bytes)
654{
655 struct intel_engine_cs *ring = ringbuf->ring;
656 struct drm_i915_gem_request *request;
John Harrisondbe46462015-03-19 12:30:09 +0000657 int ret, new_space;
John Harrisonbc0dce32015-03-19 12:30:07 +0000658
659 if (intel_ring_space(ringbuf) >= bytes)
660 return 0;
661
662 list_for_each_entry(request, &ring->request_list, list) {
663 /*
664 * The request queue is per-engine, so can contain requests
665 * from multiple ringbuffers. Here, we must ignore any that
666 * aren't from the ringbuffer we're considering.
667 */
668 struct intel_context *ctx = request->ctx;
669 if (ctx->engine[ring->id].ringbuf != ringbuf)
670 continue;
671
672 /* Would completion of this request free enough space? */
John Harrisondbe46462015-03-19 12:30:09 +0000673 new_space = __intel_ring_space(request->postfix, ringbuf->tail,
674 ringbuf->size);
675 if (new_space >= bytes)
John Harrisonbc0dce32015-03-19 12:30:07 +0000676 break;
John Harrisonbc0dce32015-03-19 12:30:07 +0000677 }
678
679 if (&request->list == &ring->request_list)
680 return -ENOSPC;
681
682 ret = i915_wait_request(request);
683 if (ret)
684 return ret;
685
686 i915_gem_retire_requests_ring(ring);
687
John Harrisondbe46462015-03-19 12:30:09 +0000688 WARN_ON(intel_ring_space(ringbuf) < new_space);
689
John Harrisonbc0dce32015-03-19 12:30:07 +0000690 return intel_ring_space(ringbuf) >= bytes ? 0 : -ENOSPC;
691}
692
693/*
694 * intel_logical_ring_advance_and_submit() - advance the tail and submit the workload
695 * @ringbuf: Logical Ringbuffer to advance.
696 *
697 * The tail is updated in our logical ringbuffer struct, not in the actual context. What
698 * really happens during submission is that the context and current tail will be placed
699 * on a queue waiting for the ELSP to be ready to accept a new context submission. At that
700 * point, the tail *inside* the context is updated and the ELSP written to.
701 */
702static void
703intel_logical_ring_advance_and_submit(struct intel_ringbuffer *ringbuf,
704 struct intel_context *ctx,
705 struct drm_i915_gem_request *request)
706{
707 struct intel_engine_cs *ring = ringbuf->ring;
708
709 intel_logical_ring_advance(ringbuf);
710
711 if (intel_ring_stopped(ring))
712 return;
713
714 execlists_context_queue(ring, ctx, ringbuf->tail, request);
715}
716
717static int logical_ring_wait_for_space(struct intel_ringbuffer *ringbuf,
718 struct intel_context *ctx,
719 int bytes)
720{
721 struct intel_engine_cs *ring = ringbuf->ring;
722 struct drm_device *dev = ring->dev;
723 struct drm_i915_private *dev_priv = dev->dev_private;
724 unsigned long end;
725 int ret;
726
727 ret = logical_ring_wait_request(ringbuf, bytes);
728 if (ret != -ENOSPC)
729 return ret;
730
731 /* Force the context submission in case we have been skipping it */
732 intel_logical_ring_advance_and_submit(ringbuf, ctx, NULL);
733
734 /* With GEM the hangcheck timer should kick us out of the loop,
735 * leaving it early runs the risk of corrupting GEM state (due
736 * to running on almost untested codepaths). But on resume
737 * timers don't work yet, so prevent a complete hang in that
738 * case by choosing an insanely large timeout. */
739 end = jiffies + 60 * HZ;
740
741 ret = 0;
742 do {
743 if (intel_ring_space(ringbuf) >= bytes)
744 break;
745
746 msleep(1);
747
748 if (dev_priv->mm.interruptible && signal_pending(current)) {
749 ret = -ERESTARTSYS;
750 break;
751 }
752
753 ret = i915_gem_check_wedge(&dev_priv->gpu_error,
754 dev_priv->mm.interruptible);
755 if (ret)
756 break;
757
758 if (time_after(jiffies, end)) {
759 ret = -EBUSY;
760 break;
761 }
762 } while (1);
763
764 return ret;
765}
766
767static int logical_ring_wrap_buffer(struct intel_ringbuffer *ringbuf,
768 struct intel_context *ctx)
769{
770 uint32_t __iomem *virt;
771 int rem = ringbuf->size - ringbuf->tail;
772
773 if (ringbuf->space < rem) {
774 int ret = logical_ring_wait_for_space(ringbuf, ctx, rem);
775
776 if (ret)
777 return ret;
778 }
779
780 virt = ringbuf->virtual_start + ringbuf->tail;
781 rem /= 4;
782 while (rem--)
783 iowrite32(MI_NOOP, virt++);
784
785 ringbuf->tail = 0;
786 intel_ring_update_space(ringbuf);
787
788 return 0;
789}
790
791static int logical_ring_prepare(struct intel_ringbuffer *ringbuf,
792 struct intel_context *ctx, int bytes)
793{
794 int ret;
795
796 if (unlikely(ringbuf->tail + bytes > ringbuf->effective_size)) {
797 ret = logical_ring_wrap_buffer(ringbuf, ctx);
798 if (unlikely(ret))
799 return ret;
800 }
801
802 if (unlikely(ringbuf->space < bytes)) {
803 ret = logical_ring_wait_for_space(ringbuf, ctx, bytes);
804 if (unlikely(ret))
805 return ret;
806 }
807
808 return 0;
809}
810
811/**
812 * intel_logical_ring_begin() - prepare the logical ringbuffer to accept some commands
813 *
814 * @ringbuf: Logical ringbuffer.
815 * @num_dwords: number of DWORDs that we plan to write to the ringbuffer.
816 *
817 * The ringbuffer might not be ready to accept the commands right away (maybe it needs to
818 * be wrapped, or wait a bit for the tail to be updated). This function takes care of that
819 * and also preallocates a request (every workload submission is still mediated through
820 * requests, same as it did with legacy ringbuffer submission).
821 *
822 * Return: non-zero if the ringbuffer is not ready to be written to.
823 */
824static int intel_logical_ring_begin(struct intel_ringbuffer *ringbuf,
825 struct intel_context *ctx, int num_dwords)
826{
827 struct intel_engine_cs *ring = ringbuf->ring;
828 struct drm_device *dev = ring->dev;
829 struct drm_i915_private *dev_priv = dev->dev_private;
830 int ret;
831
832 ret = i915_gem_check_wedge(&dev_priv->gpu_error,
833 dev_priv->mm.interruptible);
834 if (ret)
835 return ret;
836
837 ret = logical_ring_prepare(ringbuf, ctx, num_dwords * sizeof(uint32_t));
838 if (ret)
839 return ret;
840
841 /* Preallocate the olr before touching the ring */
John Harrison6689cb22015-03-19 12:30:08 +0000842 ret = i915_gem_request_alloc(ring, ctx);
John Harrisonbc0dce32015-03-19 12:30:07 +0000843 if (ret)
844 return ret;
845
846 ringbuf->space -= num_dwords * sizeof(uint32_t);
847 return 0;
848}
849
Oscar Mateo73e4d072014-07-24 17:04:48 +0100850/**
851 * execlists_submission() - submit a batchbuffer for execution, Execlists style
852 * @dev: DRM device.
853 * @file: DRM file.
854 * @ring: Engine Command Streamer to submit to.
855 * @ctx: Context to employ for this submission.
856 * @args: execbuffer call arguments.
857 * @vmas: list of vmas.
858 * @batch_obj: the batchbuffer to submit.
859 * @exec_start: batchbuffer start virtual address pointer.
John Harrison8e004ef2015-02-13 11:48:10 +0000860 * @dispatch_flags: translated execbuffer call flags.
Oscar Mateo73e4d072014-07-24 17:04:48 +0100861 *
862 * This is the evil twin version of i915_gem_ringbuffer_submission. It abstracts
863 * away the submission details of the execbuffer ioctl call.
864 *
865 * Return: non-zero if the submission fails.
866 */
Oscar Mateo454afeb2014-07-24 17:04:22 +0100867int intel_execlists_submission(struct drm_device *dev, struct drm_file *file,
868 struct intel_engine_cs *ring,
869 struct intel_context *ctx,
870 struct drm_i915_gem_execbuffer2 *args,
871 struct list_head *vmas,
872 struct drm_i915_gem_object *batch_obj,
John Harrison8e004ef2015-02-13 11:48:10 +0000873 u64 exec_start, u32 dispatch_flags)
Oscar Mateo454afeb2014-07-24 17:04:22 +0100874{
Oscar Mateoba8b7cc2014-07-24 17:04:33 +0100875 struct drm_i915_private *dev_priv = dev->dev_private;
876 struct intel_ringbuffer *ringbuf = ctx->engine[ring->id].ringbuf;
877 int instp_mode;
878 u32 instp_mask;
879 int ret;
880
881 instp_mode = args->flags & I915_EXEC_CONSTANTS_MASK;
882 instp_mask = I915_EXEC_CONSTANTS_MASK;
883 switch (instp_mode) {
884 case I915_EXEC_CONSTANTS_REL_GENERAL:
885 case I915_EXEC_CONSTANTS_ABSOLUTE:
886 case I915_EXEC_CONSTANTS_REL_SURFACE:
887 if (instp_mode != 0 && ring != &dev_priv->ring[RCS]) {
888 DRM_DEBUG("non-0 rel constants mode on non-RCS\n");
889 return -EINVAL;
890 }
891
892 if (instp_mode != dev_priv->relative_constants_mode) {
893 if (instp_mode == I915_EXEC_CONSTANTS_REL_SURFACE) {
894 DRM_DEBUG("rel surface constants mode invalid on gen5+\n");
895 return -EINVAL;
896 }
897
898 /* The HW changed the meaning on this bit on gen6 */
899 instp_mask &= ~I915_EXEC_CONSTANTS_REL_SURFACE;
900 }
901 break;
902 default:
903 DRM_DEBUG("execbuf with unknown constants: %d\n", instp_mode);
904 return -EINVAL;
905 }
906
907 if (args->num_cliprects != 0) {
908 DRM_DEBUG("clip rectangles are only valid on pre-gen5\n");
909 return -EINVAL;
910 } else {
911 if (args->DR4 == 0xffffffff) {
912 DRM_DEBUG("UXA submitting garbage DR4, fixing up\n");
913 args->DR4 = 0;
914 }
915
916 if (args->DR1 || args->DR4 || args->cliprects_ptr) {
917 DRM_DEBUG("0 cliprects but dirt in cliprects fields\n");
918 return -EINVAL;
919 }
920 }
921
922 if (args->flags & I915_EXEC_GEN7_SOL_RESET) {
923 DRM_DEBUG("sol reset is gen7 only\n");
924 return -EINVAL;
925 }
926
Nick Hoath21076372015-01-15 13:10:38 +0000927 ret = execlists_move_to_gpu(ringbuf, ctx, vmas);
Oscar Mateoba8b7cc2014-07-24 17:04:33 +0100928 if (ret)
929 return ret;
930
931 if (ring == &dev_priv->ring[RCS] &&
932 instp_mode != dev_priv->relative_constants_mode) {
Nick Hoath21076372015-01-15 13:10:38 +0000933 ret = intel_logical_ring_begin(ringbuf, ctx, 4);
Oscar Mateoba8b7cc2014-07-24 17:04:33 +0100934 if (ret)
935 return ret;
936
937 intel_logical_ring_emit(ringbuf, MI_NOOP);
938 intel_logical_ring_emit(ringbuf, MI_LOAD_REGISTER_IMM(1));
939 intel_logical_ring_emit(ringbuf, INSTPM);
940 intel_logical_ring_emit(ringbuf, instp_mask << 16 | instp_mode);
941 intel_logical_ring_advance(ringbuf);
942
943 dev_priv->relative_constants_mode = instp_mode;
944 }
945
John Harrison8e004ef2015-02-13 11:48:10 +0000946 ret = ring->emit_bb_start(ringbuf, ctx, exec_start, dispatch_flags);
Oscar Mateoba8b7cc2014-07-24 17:04:33 +0100947 if (ret)
948 return ret;
949
John Harrison5e4be7b2015-02-13 11:48:11 +0000950 trace_i915_gem_ring_dispatch(intel_ring_get_request(ring), dispatch_flags);
951
Oscar Mateoba8b7cc2014-07-24 17:04:33 +0100952 i915_gem_execbuffer_move_to_active(vmas, ring);
953 i915_gem_execbuffer_retire_commands(dev, file, ring, batch_obj);
954
Oscar Mateo454afeb2014-07-24 17:04:22 +0100955 return 0;
956}
957
Thomas Danielc86ee3a92014-11-13 10:27:05 +0000958void intel_execlists_retire_requests(struct intel_engine_cs *ring)
959{
Nick Hoath6d3d8272015-01-15 13:10:39 +0000960 struct drm_i915_gem_request *req, *tmp;
Thomas Danielc86ee3a92014-11-13 10:27:05 +0000961 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Thomas Danielc86ee3a92014-11-13 10:27:05 +0000962 struct list_head retired_list;
963
964 WARN_ON(!mutex_is_locked(&ring->dev->struct_mutex));
965 if (list_empty(&ring->execlist_retired_req_list))
966 return;
967
968 INIT_LIST_HEAD(&retired_list);
Chris Wilsonb5eba372015-04-07 16:20:48 +0100969 spin_lock_irq(&ring->execlist_lock);
Thomas Danielc86ee3a92014-11-13 10:27:05 +0000970 list_replace_init(&ring->execlist_retired_req_list, &retired_list);
Chris Wilsonb5eba372015-04-07 16:20:48 +0100971 spin_unlock_irq(&ring->execlist_lock);
Thomas Danielc86ee3a92014-11-13 10:27:05 +0000972
973 list_for_each_entry_safe(req, tmp, &retired_list, execlist_link) {
Nick Hoath6d3d8272015-01-15 13:10:39 +0000974 struct intel_context *ctx = req->ctx;
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000975 struct drm_i915_gem_object *ctx_obj =
976 ctx->engine[ring->id].state;
977
978 if (ctx_obj && (ctx != ring->default_context))
979 intel_lr_context_unpin(ring, ctx);
Thomas Danielc86ee3a92014-11-13 10:27:05 +0000980 intel_runtime_pm_put(dev_priv);
Thomas Danielc86ee3a92014-11-13 10:27:05 +0000981 list_del(&req->execlist_link);
Nick Hoathf8210792015-01-29 16:55:07 +0000982 i915_gem_request_unreference(req);
Thomas Danielc86ee3a92014-11-13 10:27:05 +0000983 }
984}
985
Oscar Mateo454afeb2014-07-24 17:04:22 +0100986void intel_logical_ring_stop(struct intel_engine_cs *ring)
987{
Oscar Mateo9832b9d2014-07-24 17:04:30 +0100988 struct drm_i915_private *dev_priv = ring->dev->dev_private;
989 int ret;
990
991 if (!intel_ring_initialized(ring))
992 return;
993
994 ret = intel_ring_idle(ring);
995 if (ret && !i915_reset_in_progress(&to_i915(ring->dev)->gpu_error))
996 DRM_ERROR("failed to quiesce %s whilst cleaning up: %d\n",
997 ring->name, ret);
998
999 /* TODO: Is this correct with Execlists enabled? */
1000 I915_WRITE_MODE(ring, _MASKED_BIT_ENABLE(STOP_RING));
1001 if (wait_for_atomic((I915_READ_MODE(ring) & MODE_IDLE) != 0, 1000)) {
1002 DRM_ERROR("%s :timed out trying to stop ring\n", ring->name);
1003 return;
1004 }
1005 I915_WRITE_MODE(ring, _MASKED_BIT_DISABLE(STOP_RING));
Oscar Mateo454afeb2014-07-24 17:04:22 +01001006}
1007
Nick Hoath21076372015-01-15 13:10:38 +00001008int logical_ring_flush_all_caches(struct intel_ringbuffer *ringbuf,
1009 struct intel_context *ctx)
Oscar Mateo48e29f52014-07-24 17:04:29 +01001010{
1011 struct intel_engine_cs *ring = ringbuf->ring;
1012 int ret;
1013
1014 if (!ring->gpu_caches_dirty)
1015 return 0;
1016
Nick Hoath21076372015-01-15 13:10:38 +00001017 ret = ring->emit_flush(ringbuf, ctx, 0, I915_GEM_GPU_DOMAINS);
Oscar Mateo48e29f52014-07-24 17:04:29 +01001018 if (ret)
1019 return ret;
1020
1021 ring->gpu_caches_dirty = false;
1022 return 0;
1023}
1024
Oscar Mateodcb4c122014-11-13 10:28:10 +00001025static int intel_lr_context_pin(struct intel_engine_cs *ring,
1026 struct intel_context *ctx)
1027{
1028 struct drm_i915_gem_object *ctx_obj = ctx->engine[ring->id].state;
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001029 struct intel_ringbuffer *ringbuf = ctx->engine[ring->id].ringbuf;
Oscar Mateodcb4c122014-11-13 10:28:10 +00001030 int ret = 0;
1031
1032 WARN_ON(!mutex_is_locked(&ring->dev->struct_mutex));
Mika Kuoppalaa7cbede2015-01-13 11:32:25 +02001033 if (ctx->engine[ring->id].pin_count++ == 0) {
Oscar Mateodcb4c122014-11-13 10:28:10 +00001034 ret = i915_gem_obj_ggtt_pin(ctx_obj,
1035 GEN8_LR_CONTEXT_ALIGN, 0);
1036 if (ret)
Mika Kuoppalaa7cbede2015-01-13 11:32:25 +02001037 goto reset_pin_count;
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001038
1039 ret = intel_pin_and_map_ringbuffer_obj(ring->dev, ringbuf);
1040 if (ret)
1041 goto unpin_ctx_obj;
Oscar Mateodcb4c122014-11-13 10:28:10 +00001042 }
1043
1044 return ret;
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001045
1046unpin_ctx_obj:
1047 i915_gem_object_ggtt_unpin(ctx_obj);
Mika Kuoppalaa7cbede2015-01-13 11:32:25 +02001048reset_pin_count:
1049 ctx->engine[ring->id].pin_count = 0;
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001050
1051 return ret;
Oscar Mateodcb4c122014-11-13 10:28:10 +00001052}
1053
1054void intel_lr_context_unpin(struct intel_engine_cs *ring,
1055 struct intel_context *ctx)
1056{
1057 struct drm_i915_gem_object *ctx_obj = ctx->engine[ring->id].state;
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001058 struct intel_ringbuffer *ringbuf = ctx->engine[ring->id].ringbuf;
Oscar Mateodcb4c122014-11-13 10:28:10 +00001059
1060 if (ctx_obj) {
1061 WARN_ON(!mutex_is_locked(&ring->dev->struct_mutex));
Mika Kuoppalaa7cbede2015-01-13 11:32:25 +02001062 if (--ctx->engine[ring->id].pin_count == 0) {
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001063 intel_unpin_ringbuffer_obj(ringbuf);
Oscar Mateodcb4c122014-11-13 10:28:10 +00001064 i915_gem_object_ggtt_unpin(ctx_obj);
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001065 }
Oscar Mateodcb4c122014-11-13 10:28:10 +00001066 }
1067}
1068
Michel Thierry771b9a52014-11-11 16:47:33 +00001069static int intel_logical_ring_workarounds_emit(struct intel_engine_cs *ring,
1070 struct intel_context *ctx)
1071{
1072 int ret, i;
1073 struct intel_ringbuffer *ringbuf = ctx->engine[ring->id].ringbuf;
1074 struct drm_device *dev = ring->dev;
1075 struct drm_i915_private *dev_priv = dev->dev_private;
1076 struct i915_workarounds *w = &dev_priv->workarounds;
1077
Michel Thierrye6c1abb2014-11-26 14:21:02 +00001078 if (WARN_ON_ONCE(w->count == 0))
Michel Thierry771b9a52014-11-11 16:47:33 +00001079 return 0;
1080
1081 ring->gpu_caches_dirty = true;
Nick Hoath21076372015-01-15 13:10:38 +00001082 ret = logical_ring_flush_all_caches(ringbuf, ctx);
Michel Thierry771b9a52014-11-11 16:47:33 +00001083 if (ret)
1084 return ret;
1085
Nick Hoath21076372015-01-15 13:10:38 +00001086 ret = intel_logical_ring_begin(ringbuf, ctx, w->count * 2 + 2);
Michel Thierry771b9a52014-11-11 16:47:33 +00001087 if (ret)
1088 return ret;
1089
1090 intel_logical_ring_emit(ringbuf, MI_LOAD_REGISTER_IMM(w->count));
1091 for (i = 0; i < w->count; i++) {
1092 intel_logical_ring_emit(ringbuf, w->reg[i].addr);
1093 intel_logical_ring_emit(ringbuf, w->reg[i].value);
1094 }
1095 intel_logical_ring_emit(ringbuf, MI_NOOP);
1096
1097 intel_logical_ring_advance(ringbuf);
1098
1099 ring->gpu_caches_dirty = true;
Nick Hoath21076372015-01-15 13:10:38 +00001100 ret = logical_ring_flush_all_caches(ringbuf, ctx);
Michel Thierry771b9a52014-11-11 16:47:33 +00001101 if (ret)
1102 return ret;
1103
1104 return 0;
1105}
1106
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001107static int gen8_init_common_ring(struct intel_engine_cs *ring)
1108{
1109 struct drm_device *dev = ring->dev;
1110 struct drm_i915_private *dev_priv = dev->dev_private;
1111
Oscar Mateo73d477f2014-07-24 17:04:31 +01001112 I915_WRITE_IMR(ring, ~(ring->irq_enable_mask | ring->irq_keep_mask));
1113 I915_WRITE(RING_HWSTAM(ring->mmio_base), 0xffffffff);
1114
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001115 I915_WRITE(RING_MODE_GEN7(ring),
1116 _MASKED_BIT_DISABLE(GFX_REPLAY_MODE) |
1117 _MASKED_BIT_ENABLE(GFX_RUN_LIST_ENABLE));
1118 POSTING_READ(RING_MODE_GEN7(ring));
Thomas Danielc0a03a22015-01-09 11:09:37 +00001119 ring->next_context_status_buffer = 0;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001120 DRM_DEBUG_DRIVER("Execlists enabled for %s\n", ring->name);
1121
1122 memset(&ring->hangcheck, 0, sizeof(ring->hangcheck));
1123
1124 return 0;
1125}
1126
1127static int gen8_init_render_ring(struct intel_engine_cs *ring)
1128{
1129 struct drm_device *dev = ring->dev;
1130 struct drm_i915_private *dev_priv = dev->dev_private;
1131 int ret;
1132
1133 ret = gen8_init_common_ring(ring);
1134 if (ret)
1135 return ret;
1136
1137 /* We need to disable the AsyncFlip performance optimisations in order
1138 * to use MI_WAIT_FOR_EVENT within the CS. It should already be
1139 * programmed to '1' on all products.
1140 *
1141 * WaDisableAsyncFlipPerfMode:snb,ivb,hsw,vlv,bdw,chv
1142 */
1143 I915_WRITE(MI_MODE, _MASKED_BIT_ENABLE(ASYNC_FLIP_PERF_DISABLE));
1144
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001145 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_FORCE_ORDERING));
1146
Michel Thierry771b9a52014-11-11 16:47:33 +00001147 return init_workarounds_ring(ring);
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001148}
1149
Damien Lespiau82ef8222015-02-09 19:33:08 +00001150static int gen9_init_render_ring(struct intel_engine_cs *ring)
1151{
1152 int ret;
1153
1154 ret = gen8_init_common_ring(ring);
1155 if (ret)
1156 return ret;
1157
1158 return init_workarounds_ring(ring);
1159}
1160
Oscar Mateo15648582014-07-24 17:04:32 +01001161static int gen8_emit_bb_start(struct intel_ringbuffer *ringbuf,
Nick Hoath21076372015-01-15 13:10:38 +00001162 struct intel_context *ctx,
John Harrison8e004ef2015-02-13 11:48:10 +00001163 u64 offset, unsigned dispatch_flags)
Oscar Mateo15648582014-07-24 17:04:32 +01001164{
John Harrison8e004ef2015-02-13 11:48:10 +00001165 bool ppgtt = !(dispatch_flags & I915_DISPATCH_SECURE);
Oscar Mateo15648582014-07-24 17:04:32 +01001166 int ret;
1167
Nick Hoath21076372015-01-15 13:10:38 +00001168 ret = intel_logical_ring_begin(ringbuf, ctx, 4);
Oscar Mateo15648582014-07-24 17:04:32 +01001169 if (ret)
1170 return ret;
1171
1172 /* FIXME(BDW): Address space and security selectors. */
1173 intel_logical_ring_emit(ringbuf, MI_BATCH_BUFFER_START_GEN8 | (ppgtt<<8));
1174 intel_logical_ring_emit(ringbuf, lower_32_bits(offset));
1175 intel_logical_ring_emit(ringbuf, upper_32_bits(offset));
1176 intel_logical_ring_emit(ringbuf, MI_NOOP);
1177 intel_logical_ring_advance(ringbuf);
1178
1179 return 0;
1180}
1181
Oscar Mateo73d477f2014-07-24 17:04:31 +01001182static bool gen8_logical_ring_get_irq(struct intel_engine_cs *ring)
1183{
1184 struct drm_device *dev = ring->dev;
1185 struct drm_i915_private *dev_priv = dev->dev_private;
1186 unsigned long flags;
1187
Daniel Vetter7cd512f2014-09-15 11:38:57 +02001188 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
Oscar Mateo73d477f2014-07-24 17:04:31 +01001189 return false;
1190
1191 spin_lock_irqsave(&dev_priv->irq_lock, flags);
1192 if (ring->irq_refcount++ == 0) {
1193 I915_WRITE_IMR(ring, ~(ring->irq_enable_mask | ring->irq_keep_mask));
1194 POSTING_READ(RING_IMR(ring->mmio_base));
1195 }
1196 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
1197
1198 return true;
1199}
1200
1201static void gen8_logical_ring_put_irq(struct intel_engine_cs *ring)
1202{
1203 struct drm_device *dev = ring->dev;
1204 struct drm_i915_private *dev_priv = dev->dev_private;
1205 unsigned long flags;
1206
1207 spin_lock_irqsave(&dev_priv->irq_lock, flags);
1208 if (--ring->irq_refcount == 0) {
1209 I915_WRITE_IMR(ring, ~ring->irq_keep_mask);
1210 POSTING_READ(RING_IMR(ring->mmio_base));
1211 }
1212 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
1213}
1214
Oscar Mateo47122742014-07-24 17:04:28 +01001215static int gen8_emit_flush(struct intel_ringbuffer *ringbuf,
Nick Hoath21076372015-01-15 13:10:38 +00001216 struct intel_context *ctx,
Oscar Mateo47122742014-07-24 17:04:28 +01001217 u32 invalidate_domains,
1218 u32 unused)
1219{
1220 struct intel_engine_cs *ring = ringbuf->ring;
1221 struct drm_device *dev = ring->dev;
1222 struct drm_i915_private *dev_priv = dev->dev_private;
1223 uint32_t cmd;
1224 int ret;
1225
Nick Hoath21076372015-01-15 13:10:38 +00001226 ret = intel_logical_ring_begin(ringbuf, ctx, 4);
Oscar Mateo47122742014-07-24 17:04:28 +01001227 if (ret)
1228 return ret;
1229
1230 cmd = MI_FLUSH_DW + 1;
1231
Chris Wilsonf0a1fb12015-01-22 13:42:00 +00001232 /* We always require a command barrier so that subsequent
1233 * commands, such as breadcrumb interrupts, are strictly ordered
1234 * wrt the contents of the write cache being flushed to memory
1235 * (and thus being coherent from the CPU).
1236 */
1237 cmd |= MI_FLUSH_DW_STORE_INDEX | MI_FLUSH_DW_OP_STOREDW;
1238
1239 if (invalidate_domains & I915_GEM_GPU_DOMAINS) {
1240 cmd |= MI_INVALIDATE_TLB;
1241 if (ring == &dev_priv->ring[VCS])
1242 cmd |= MI_INVALIDATE_BSD;
Oscar Mateo47122742014-07-24 17:04:28 +01001243 }
1244
1245 intel_logical_ring_emit(ringbuf, cmd);
1246 intel_logical_ring_emit(ringbuf,
1247 I915_GEM_HWS_SCRATCH_ADDR |
1248 MI_FLUSH_DW_USE_GTT);
1249 intel_logical_ring_emit(ringbuf, 0); /* upper addr */
1250 intel_logical_ring_emit(ringbuf, 0); /* value */
1251 intel_logical_ring_advance(ringbuf);
1252
1253 return 0;
1254}
1255
1256static int gen8_emit_flush_render(struct intel_ringbuffer *ringbuf,
Nick Hoath21076372015-01-15 13:10:38 +00001257 struct intel_context *ctx,
Oscar Mateo47122742014-07-24 17:04:28 +01001258 u32 invalidate_domains,
1259 u32 flush_domains)
1260{
1261 struct intel_engine_cs *ring = ringbuf->ring;
1262 u32 scratch_addr = ring->scratch.gtt_offset + 2 * CACHELINE_BYTES;
1263 u32 flags = 0;
1264 int ret;
1265
1266 flags |= PIPE_CONTROL_CS_STALL;
1267
1268 if (flush_domains) {
1269 flags |= PIPE_CONTROL_RENDER_TARGET_CACHE_FLUSH;
1270 flags |= PIPE_CONTROL_DEPTH_CACHE_FLUSH;
1271 }
1272
1273 if (invalidate_domains) {
1274 flags |= PIPE_CONTROL_TLB_INVALIDATE;
1275 flags |= PIPE_CONTROL_INSTRUCTION_CACHE_INVALIDATE;
1276 flags |= PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE;
1277 flags |= PIPE_CONTROL_VF_CACHE_INVALIDATE;
1278 flags |= PIPE_CONTROL_CONST_CACHE_INVALIDATE;
1279 flags |= PIPE_CONTROL_STATE_CACHE_INVALIDATE;
1280 flags |= PIPE_CONTROL_QW_WRITE;
1281 flags |= PIPE_CONTROL_GLOBAL_GTT_IVB;
1282 }
1283
Nick Hoath21076372015-01-15 13:10:38 +00001284 ret = intel_logical_ring_begin(ringbuf, ctx, 6);
Oscar Mateo47122742014-07-24 17:04:28 +01001285 if (ret)
1286 return ret;
1287
1288 intel_logical_ring_emit(ringbuf, GFX_OP_PIPE_CONTROL(6));
1289 intel_logical_ring_emit(ringbuf, flags);
1290 intel_logical_ring_emit(ringbuf, scratch_addr);
1291 intel_logical_ring_emit(ringbuf, 0);
1292 intel_logical_ring_emit(ringbuf, 0);
1293 intel_logical_ring_emit(ringbuf, 0);
1294 intel_logical_ring_advance(ringbuf);
1295
1296 return 0;
1297}
1298
Oscar Mateoe94e37a2014-07-24 17:04:25 +01001299static u32 gen8_get_seqno(struct intel_engine_cs *ring, bool lazy_coherency)
1300{
1301 return intel_read_status_page(ring, I915_GEM_HWS_INDEX);
1302}
1303
1304static void gen8_set_seqno(struct intel_engine_cs *ring, u32 seqno)
1305{
1306 intel_write_status_page(ring, I915_GEM_HWS_INDEX, seqno);
1307}
1308
Nick Hoath2d129552015-01-15 13:10:36 +00001309static int gen8_emit_request(struct intel_ringbuffer *ringbuf,
1310 struct drm_i915_gem_request *request)
Oscar Mateo4da46e12014-07-24 17:04:27 +01001311{
1312 struct intel_engine_cs *ring = ringbuf->ring;
1313 u32 cmd;
1314 int ret;
1315
Nick Hoath21076372015-01-15 13:10:38 +00001316 ret = intel_logical_ring_begin(ringbuf, request->ctx, 6);
Oscar Mateo4da46e12014-07-24 17:04:27 +01001317 if (ret)
1318 return ret;
1319
Ville Syrjälä8edfbb82014-11-14 18:16:56 +02001320 cmd = MI_STORE_DWORD_IMM_GEN4;
Oscar Mateo4da46e12014-07-24 17:04:27 +01001321 cmd |= MI_GLOBAL_GTT;
1322
1323 intel_logical_ring_emit(ringbuf, cmd);
1324 intel_logical_ring_emit(ringbuf,
1325 (ring->status_page.gfx_addr +
1326 (I915_GEM_HWS_INDEX << MI_STORE_DWORD_INDEX_SHIFT)));
1327 intel_logical_ring_emit(ringbuf, 0);
John Harrison6259cea2014-11-24 18:49:29 +00001328 intel_logical_ring_emit(ringbuf,
1329 i915_gem_request_get_seqno(ring->outstanding_lazy_request));
Oscar Mateo4da46e12014-07-24 17:04:27 +01001330 intel_logical_ring_emit(ringbuf, MI_USER_INTERRUPT);
1331 intel_logical_ring_emit(ringbuf, MI_NOOP);
Nick Hoath21076372015-01-15 13:10:38 +00001332 intel_logical_ring_advance_and_submit(ringbuf, request->ctx, request);
Oscar Mateo4da46e12014-07-24 17:04:27 +01001333
1334 return 0;
1335}
1336
Damien Lespiaucef437a2015-02-10 19:32:19 +00001337static int intel_lr_context_render_state_init(struct intel_engine_cs *ring,
1338 struct intel_context *ctx)
1339{
1340 struct intel_ringbuffer *ringbuf = ctx->engine[ring->id].ringbuf;
1341 struct render_state so;
1342 struct drm_i915_file_private *file_priv = ctx->file_priv;
1343 struct drm_file *file = file_priv ? file_priv->file : NULL;
1344 int ret;
1345
1346 ret = i915_gem_render_state_prepare(ring, &so);
1347 if (ret)
1348 return ret;
1349
1350 if (so.rodata == NULL)
1351 return 0;
1352
1353 ret = ring->emit_bb_start(ringbuf,
1354 ctx,
1355 so.ggtt_offset,
1356 I915_DISPATCH_SECURE);
1357 if (ret)
1358 goto out;
1359
1360 i915_vma_move_to_active(i915_gem_obj_to_ggtt(so.obj), ring);
1361
1362 ret = __i915_add_request(ring, file, so.obj);
1363 /* intel_logical_ring_add_request moves object to inactive if it
1364 * fails */
1365out:
1366 i915_gem_render_state_fini(&so);
1367 return ret;
1368}
1369
Thomas Daniele7778be2014-12-02 12:50:48 +00001370static int gen8_init_rcs_context(struct intel_engine_cs *ring,
1371 struct intel_context *ctx)
1372{
1373 int ret;
1374
1375 ret = intel_logical_ring_workarounds_emit(ring, ctx);
1376 if (ret)
1377 return ret;
1378
1379 return intel_lr_context_render_state_init(ring, ctx);
1380}
1381
Oscar Mateo73e4d072014-07-24 17:04:48 +01001382/**
1383 * intel_logical_ring_cleanup() - deallocate the Engine Command Streamer
1384 *
1385 * @ring: Engine Command Streamer.
1386 *
1387 */
Oscar Mateo454afeb2014-07-24 17:04:22 +01001388void intel_logical_ring_cleanup(struct intel_engine_cs *ring)
1389{
John Harrison6402c332014-10-31 12:00:26 +00001390 struct drm_i915_private *dev_priv;
Oscar Mateo9832b9d2014-07-24 17:04:30 +01001391
Oscar Mateo48d82382014-07-24 17:04:23 +01001392 if (!intel_ring_initialized(ring))
1393 return;
1394
John Harrison6402c332014-10-31 12:00:26 +00001395 dev_priv = ring->dev->dev_private;
1396
Oscar Mateo9832b9d2014-07-24 17:04:30 +01001397 intel_logical_ring_stop(ring);
1398 WARN_ON((I915_READ_MODE(ring) & MODE_IDLE) == 0);
John Harrison6259cea2014-11-24 18:49:29 +00001399 i915_gem_request_assign(&ring->outstanding_lazy_request, NULL);
Oscar Mateo48d82382014-07-24 17:04:23 +01001400
1401 if (ring->cleanup)
1402 ring->cleanup(ring);
1403
1404 i915_cmd_parser_fini_ring(ring);
Chris Wilson06fbca72015-04-07 16:20:36 +01001405 i915_gem_batch_pool_fini(&ring->batch_pool);
Oscar Mateo48d82382014-07-24 17:04:23 +01001406
1407 if (ring->status_page.obj) {
1408 kunmap(sg_page(ring->status_page.obj->pages->sgl));
1409 ring->status_page.obj = NULL;
1410 }
Oscar Mateo454afeb2014-07-24 17:04:22 +01001411}
1412
1413static int logical_ring_init(struct drm_device *dev, struct intel_engine_cs *ring)
1414{
Oscar Mateo48d82382014-07-24 17:04:23 +01001415 int ret;
Oscar Mateo48d82382014-07-24 17:04:23 +01001416
1417 /* Intentionally left blank. */
1418 ring->buffer = NULL;
1419
1420 ring->dev = dev;
1421 INIT_LIST_HEAD(&ring->active_list);
1422 INIT_LIST_HEAD(&ring->request_list);
Chris Wilson06fbca72015-04-07 16:20:36 +01001423 i915_gem_batch_pool_init(dev, &ring->batch_pool);
Oscar Mateo48d82382014-07-24 17:04:23 +01001424 init_waitqueue_head(&ring->irq_queue);
1425
Michel Thierryacdd8842014-07-24 17:04:38 +01001426 INIT_LIST_HEAD(&ring->execlist_queue);
Thomas Danielc86ee3a92014-11-13 10:27:05 +00001427 INIT_LIST_HEAD(&ring->execlist_retired_req_list);
Michel Thierryacdd8842014-07-24 17:04:38 +01001428 spin_lock_init(&ring->execlist_lock);
1429
Oscar Mateo48d82382014-07-24 17:04:23 +01001430 ret = i915_cmd_parser_init_ring(ring);
1431 if (ret)
1432 return ret;
1433
Oscar Mateo564ddb22014-08-21 11:40:54 +01001434 ret = intel_lr_context_deferred_create(ring->default_context, ring);
1435
1436 return ret;
Oscar Mateo454afeb2014-07-24 17:04:22 +01001437}
1438
1439static int logical_render_ring_init(struct drm_device *dev)
1440{
1441 struct drm_i915_private *dev_priv = dev->dev_private;
1442 struct intel_engine_cs *ring = &dev_priv->ring[RCS];
Daniel Vetter99be1df2014-11-20 00:33:06 +01001443 int ret;
Oscar Mateo454afeb2014-07-24 17:04:22 +01001444
1445 ring->name = "render ring";
1446 ring->id = RCS;
1447 ring->mmio_base = RENDER_RING_BASE;
1448 ring->irq_enable_mask =
1449 GT_RENDER_USER_INTERRUPT << GEN8_RCS_IRQ_SHIFT;
Oscar Mateo73d477f2014-07-24 17:04:31 +01001450 ring->irq_keep_mask =
1451 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_RCS_IRQ_SHIFT;
1452 if (HAS_L3_DPF(dev))
1453 ring->irq_keep_mask |= GT_RENDER_L3_PARITY_ERROR_INTERRUPT;
Oscar Mateo454afeb2014-07-24 17:04:22 +01001454
Damien Lespiau82ef8222015-02-09 19:33:08 +00001455 if (INTEL_INFO(dev)->gen >= 9)
1456 ring->init_hw = gen9_init_render_ring;
1457 else
1458 ring->init_hw = gen8_init_render_ring;
Thomas Daniele7778be2014-12-02 12:50:48 +00001459 ring->init_context = gen8_init_rcs_context;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001460 ring->cleanup = intel_fini_pipe_control;
Oscar Mateoe94e37a2014-07-24 17:04:25 +01001461 ring->get_seqno = gen8_get_seqno;
1462 ring->set_seqno = gen8_set_seqno;
Oscar Mateo4da46e12014-07-24 17:04:27 +01001463 ring->emit_request = gen8_emit_request;
Oscar Mateo47122742014-07-24 17:04:28 +01001464 ring->emit_flush = gen8_emit_flush_render;
Oscar Mateo73d477f2014-07-24 17:04:31 +01001465 ring->irq_get = gen8_logical_ring_get_irq;
1466 ring->irq_put = gen8_logical_ring_put_irq;
Oscar Mateo15648582014-07-24 17:04:32 +01001467 ring->emit_bb_start = gen8_emit_bb_start;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001468
Daniel Vetter99be1df2014-11-20 00:33:06 +01001469 ring->dev = dev;
1470 ret = logical_ring_init(dev, ring);
1471 if (ret)
1472 return ret;
1473
1474 return intel_init_pipe_control(ring);
Oscar Mateo454afeb2014-07-24 17:04:22 +01001475}
1476
1477static int logical_bsd_ring_init(struct drm_device *dev)
1478{
1479 struct drm_i915_private *dev_priv = dev->dev_private;
1480 struct intel_engine_cs *ring = &dev_priv->ring[VCS];
1481
1482 ring->name = "bsd ring";
1483 ring->id = VCS;
1484 ring->mmio_base = GEN6_BSD_RING_BASE;
1485 ring->irq_enable_mask =
1486 GT_RENDER_USER_INTERRUPT << GEN8_VCS1_IRQ_SHIFT;
Oscar Mateo73d477f2014-07-24 17:04:31 +01001487 ring->irq_keep_mask =
1488 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VCS1_IRQ_SHIFT;
Oscar Mateo454afeb2014-07-24 17:04:22 +01001489
Daniel Vetterecfe00d2014-11-20 00:33:04 +01001490 ring->init_hw = gen8_init_common_ring;
Oscar Mateoe94e37a2014-07-24 17:04:25 +01001491 ring->get_seqno = gen8_get_seqno;
1492 ring->set_seqno = gen8_set_seqno;
Oscar Mateo4da46e12014-07-24 17:04:27 +01001493 ring->emit_request = gen8_emit_request;
Oscar Mateo47122742014-07-24 17:04:28 +01001494 ring->emit_flush = gen8_emit_flush;
Oscar Mateo73d477f2014-07-24 17:04:31 +01001495 ring->irq_get = gen8_logical_ring_get_irq;
1496 ring->irq_put = gen8_logical_ring_put_irq;
Oscar Mateo15648582014-07-24 17:04:32 +01001497 ring->emit_bb_start = gen8_emit_bb_start;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001498
Oscar Mateo454afeb2014-07-24 17:04:22 +01001499 return logical_ring_init(dev, ring);
1500}
1501
1502static int logical_bsd2_ring_init(struct drm_device *dev)
1503{
1504 struct drm_i915_private *dev_priv = dev->dev_private;
1505 struct intel_engine_cs *ring = &dev_priv->ring[VCS2];
1506
1507 ring->name = "bds2 ring";
1508 ring->id = VCS2;
1509 ring->mmio_base = GEN8_BSD2_RING_BASE;
1510 ring->irq_enable_mask =
1511 GT_RENDER_USER_INTERRUPT << GEN8_VCS2_IRQ_SHIFT;
Oscar Mateo73d477f2014-07-24 17:04:31 +01001512 ring->irq_keep_mask =
1513 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VCS2_IRQ_SHIFT;
Oscar Mateo454afeb2014-07-24 17:04:22 +01001514
Daniel Vetterecfe00d2014-11-20 00:33:04 +01001515 ring->init_hw = gen8_init_common_ring;
Oscar Mateoe94e37a2014-07-24 17:04:25 +01001516 ring->get_seqno = gen8_get_seqno;
1517 ring->set_seqno = gen8_set_seqno;
Oscar Mateo4da46e12014-07-24 17:04:27 +01001518 ring->emit_request = gen8_emit_request;
Oscar Mateo47122742014-07-24 17:04:28 +01001519 ring->emit_flush = gen8_emit_flush;
Oscar Mateo73d477f2014-07-24 17:04:31 +01001520 ring->irq_get = gen8_logical_ring_get_irq;
1521 ring->irq_put = gen8_logical_ring_put_irq;
Oscar Mateo15648582014-07-24 17:04:32 +01001522 ring->emit_bb_start = gen8_emit_bb_start;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001523
Oscar Mateo454afeb2014-07-24 17:04:22 +01001524 return logical_ring_init(dev, ring);
1525}
1526
1527static int logical_blt_ring_init(struct drm_device *dev)
1528{
1529 struct drm_i915_private *dev_priv = dev->dev_private;
1530 struct intel_engine_cs *ring = &dev_priv->ring[BCS];
1531
1532 ring->name = "blitter ring";
1533 ring->id = BCS;
1534 ring->mmio_base = BLT_RING_BASE;
1535 ring->irq_enable_mask =
1536 GT_RENDER_USER_INTERRUPT << GEN8_BCS_IRQ_SHIFT;
Oscar Mateo73d477f2014-07-24 17:04:31 +01001537 ring->irq_keep_mask =
1538 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_BCS_IRQ_SHIFT;
Oscar Mateo454afeb2014-07-24 17:04:22 +01001539
Daniel Vetterecfe00d2014-11-20 00:33:04 +01001540 ring->init_hw = gen8_init_common_ring;
Oscar Mateoe94e37a2014-07-24 17:04:25 +01001541 ring->get_seqno = gen8_get_seqno;
1542 ring->set_seqno = gen8_set_seqno;
Oscar Mateo4da46e12014-07-24 17:04:27 +01001543 ring->emit_request = gen8_emit_request;
Oscar Mateo47122742014-07-24 17:04:28 +01001544 ring->emit_flush = gen8_emit_flush;
Oscar Mateo73d477f2014-07-24 17:04:31 +01001545 ring->irq_get = gen8_logical_ring_get_irq;
1546 ring->irq_put = gen8_logical_ring_put_irq;
Oscar Mateo15648582014-07-24 17:04:32 +01001547 ring->emit_bb_start = gen8_emit_bb_start;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001548
Oscar Mateo454afeb2014-07-24 17:04:22 +01001549 return logical_ring_init(dev, ring);
1550}
1551
1552static int logical_vebox_ring_init(struct drm_device *dev)
1553{
1554 struct drm_i915_private *dev_priv = dev->dev_private;
1555 struct intel_engine_cs *ring = &dev_priv->ring[VECS];
1556
1557 ring->name = "video enhancement ring";
1558 ring->id = VECS;
1559 ring->mmio_base = VEBOX_RING_BASE;
1560 ring->irq_enable_mask =
1561 GT_RENDER_USER_INTERRUPT << GEN8_VECS_IRQ_SHIFT;
Oscar Mateo73d477f2014-07-24 17:04:31 +01001562 ring->irq_keep_mask =
1563 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VECS_IRQ_SHIFT;
Oscar Mateo454afeb2014-07-24 17:04:22 +01001564
Daniel Vetterecfe00d2014-11-20 00:33:04 +01001565 ring->init_hw = gen8_init_common_ring;
Oscar Mateoe94e37a2014-07-24 17:04:25 +01001566 ring->get_seqno = gen8_get_seqno;
1567 ring->set_seqno = gen8_set_seqno;
Oscar Mateo4da46e12014-07-24 17:04:27 +01001568 ring->emit_request = gen8_emit_request;
Oscar Mateo47122742014-07-24 17:04:28 +01001569 ring->emit_flush = gen8_emit_flush;
Oscar Mateo73d477f2014-07-24 17:04:31 +01001570 ring->irq_get = gen8_logical_ring_get_irq;
1571 ring->irq_put = gen8_logical_ring_put_irq;
Oscar Mateo15648582014-07-24 17:04:32 +01001572 ring->emit_bb_start = gen8_emit_bb_start;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001573
Oscar Mateo454afeb2014-07-24 17:04:22 +01001574 return logical_ring_init(dev, ring);
1575}
1576
Oscar Mateo73e4d072014-07-24 17:04:48 +01001577/**
1578 * intel_logical_rings_init() - allocate, populate and init the Engine Command Streamers
1579 * @dev: DRM device.
1580 *
1581 * This function inits the engines for an Execlists submission style (the equivalent in the
1582 * legacy ringbuffer submission world would be i915_gem_init_rings). It does it only for
1583 * those engines that are present in the hardware.
1584 *
1585 * Return: non-zero if the initialization failed.
1586 */
Oscar Mateo454afeb2014-07-24 17:04:22 +01001587int intel_logical_rings_init(struct drm_device *dev)
1588{
1589 struct drm_i915_private *dev_priv = dev->dev_private;
1590 int ret;
1591
1592 ret = logical_render_ring_init(dev);
1593 if (ret)
1594 return ret;
1595
1596 if (HAS_BSD(dev)) {
1597 ret = logical_bsd_ring_init(dev);
1598 if (ret)
1599 goto cleanup_render_ring;
1600 }
1601
1602 if (HAS_BLT(dev)) {
1603 ret = logical_blt_ring_init(dev);
1604 if (ret)
1605 goto cleanup_bsd_ring;
1606 }
1607
1608 if (HAS_VEBOX(dev)) {
1609 ret = logical_vebox_ring_init(dev);
1610 if (ret)
1611 goto cleanup_blt_ring;
1612 }
1613
1614 if (HAS_BSD2(dev)) {
1615 ret = logical_bsd2_ring_init(dev);
1616 if (ret)
1617 goto cleanup_vebox_ring;
1618 }
1619
1620 ret = i915_gem_set_seqno(dev, ((u32)~0 - 0x1000));
1621 if (ret)
1622 goto cleanup_bsd2_ring;
1623
1624 return 0;
1625
1626cleanup_bsd2_ring:
1627 intel_logical_ring_cleanup(&dev_priv->ring[VCS2]);
1628cleanup_vebox_ring:
1629 intel_logical_ring_cleanup(&dev_priv->ring[VECS]);
1630cleanup_blt_ring:
1631 intel_logical_ring_cleanup(&dev_priv->ring[BCS]);
1632cleanup_bsd_ring:
1633 intel_logical_ring_cleanup(&dev_priv->ring[VCS]);
1634cleanup_render_ring:
1635 intel_logical_ring_cleanup(&dev_priv->ring[RCS]);
1636
1637 return ret;
1638}
1639
Jeff McGee0cea6502015-02-13 10:27:56 -06001640static u32
1641make_rpcs(struct drm_device *dev)
1642{
1643 u32 rpcs = 0;
1644
1645 /*
1646 * No explicit RPCS request is needed to ensure full
1647 * slice/subslice/EU enablement prior to Gen9.
1648 */
1649 if (INTEL_INFO(dev)->gen < 9)
1650 return 0;
1651
1652 /*
1653 * Starting in Gen9, render power gating can leave
1654 * slice/subslice/EU in a partially enabled state. We
1655 * must make an explicit request through RPCS for full
1656 * enablement.
1657 */
1658 if (INTEL_INFO(dev)->has_slice_pg) {
1659 rpcs |= GEN8_RPCS_S_CNT_ENABLE;
1660 rpcs |= INTEL_INFO(dev)->slice_total <<
1661 GEN8_RPCS_S_CNT_SHIFT;
1662 rpcs |= GEN8_RPCS_ENABLE;
1663 }
1664
1665 if (INTEL_INFO(dev)->has_subslice_pg) {
1666 rpcs |= GEN8_RPCS_SS_CNT_ENABLE;
1667 rpcs |= INTEL_INFO(dev)->subslice_per_slice <<
1668 GEN8_RPCS_SS_CNT_SHIFT;
1669 rpcs |= GEN8_RPCS_ENABLE;
1670 }
1671
1672 if (INTEL_INFO(dev)->has_eu_pg) {
1673 rpcs |= INTEL_INFO(dev)->eu_per_subslice <<
1674 GEN8_RPCS_EU_MIN_SHIFT;
1675 rpcs |= INTEL_INFO(dev)->eu_per_subslice <<
1676 GEN8_RPCS_EU_MAX_SHIFT;
1677 rpcs |= GEN8_RPCS_ENABLE;
1678 }
1679
1680 return rpcs;
1681}
1682
Oscar Mateo8670d6f2014-07-24 17:04:17 +01001683static int
1684populate_lr_context(struct intel_context *ctx, struct drm_i915_gem_object *ctx_obj,
1685 struct intel_engine_cs *ring, struct intel_ringbuffer *ringbuf)
1686{
Thomas Daniel2d965532014-08-19 10:13:36 +01001687 struct drm_device *dev = ring->dev;
1688 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterae6c4802014-08-06 15:04:53 +02001689 struct i915_hw_ppgtt *ppgtt = ctx->ppgtt;
Oscar Mateo8670d6f2014-07-24 17:04:17 +01001690 struct page *page;
1691 uint32_t *reg_state;
1692 int ret;
1693
Thomas Daniel2d965532014-08-19 10:13:36 +01001694 if (!ppgtt)
1695 ppgtt = dev_priv->mm.aliasing_ppgtt;
1696
Oscar Mateo8670d6f2014-07-24 17:04:17 +01001697 ret = i915_gem_object_set_to_cpu_domain(ctx_obj, true);
1698 if (ret) {
1699 DRM_DEBUG_DRIVER("Could not set to CPU domain\n");
1700 return ret;
1701 }
1702
1703 ret = i915_gem_object_get_pages(ctx_obj);
1704 if (ret) {
1705 DRM_DEBUG_DRIVER("Could not get object pages\n");
1706 return ret;
1707 }
1708
1709 i915_gem_object_pin_pages(ctx_obj);
1710
1711 /* The second page of the context object contains some fields which must
1712 * be set up prior to the first execution. */
1713 page = i915_gem_object_get_page(ctx_obj, 1);
1714 reg_state = kmap_atomic(page);
1715
1716 /* A context is actually a big batch buffer with several MI_LOAD_REGISTER_IMM
1717 * commands followed by (reg, value) pairs. The values we are setting here are
1718 * only for the first context restore: on a subsequent save, the GPU will
1719 * recreate this batchbuffer with new values (including all the missing
1720 * MI_LOAD_REGISTER_IMM commands that we are not initializing here). */
1721 if (ring->id == RCS)
1722 reg_state[CTX_LRI_HEADER_0] = MI_LOAD_REGISTER_IMM(14);
1723 else
1724 reg_state[CTX_LRI_HEADER_0] = MI_LOAD_REGISTER_IMM(11);
1725 reg_state[CTX_LRI_HEADER_0] |= MI_LRI_FORCE_POSTED;
1726 reg_state[CTX_CONTEXT_CONTROL] = RING_CONTEXT_CONTROL(ring);
1727 reg_state[CTX_CONTEXT_CONTROL+1] =
Zhi Wang5baa22c52015-02-10 17:11:36 +08001728 _MASKED_BIT_ENABLE(CTX_CTRL_INHIBIT_SYN_CTX_SWITCH |
1729 CTX_CTRL_ENGINE_CTX_RESTORE_INHIBIT);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01001730 reg_state[CTX_RING_HEAD] = RING_HEAD(ring->mmio_base);
1731 reg_state[CTX_RING_HEAD+1] = 0;
1732 reg_state[CTX_RING_TAIL] = RING_TAIL(ring->mmio_base);
1733 reg_state[CTX_RING_TAIL+1] = 0;
1734 reg_state[CTX_RING_BUFFER_START] = RING_START(ring->mmio_base);
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001735 /* Ring buffer start address is not known until the buffer is pinned.
1736 * It is written to the context image in execlists_update_context()
1737 */
Oscar Mateo8670d6f2014-07-24 17:04:17 +01001738 reg_state[CTX_RING_BUFFER_CONTROL] = RING_CTL(ring->mmio_base);
1739 reg_state[CTX_RING_BUFFER_CONTROL+1] =
1740 ((ringbuf->size - PAGE_SIZE) & RING_NR_PAGES) | RING_VALID;
1741 reg_state[CTX_BB_HEAD_U] = ring->mmio_base + 0x168;
1742 reg_state[CTX_BB_HEAD_U+1] = 0;
1743 reg_state[CTX_BB_HEAD_L] = ring->mmio_base + 0x140;
1744 reg_state[CTX_BB_HEAD_L+1] = 0;
1745 reg_state[CTX_BB_STATE] = ring->mmio_base + 0x110;
1746 reg_state[CTX_BB_STATE+1] = (1<<5);
1747 reg_state[CTX_SECOND_BB_HEAD_U] = ring->mmio_base + 0x11c;
1748 reg_state[CTX_SECOND_BB_HEAD_U+1] = 0;
1749 reg_state[CTX_SECOND_BB_HEAD_L] = ring->mmio_base + 0x114;
1750 reg_state[CTX_SECOND_BB_HEAD_L+1] = 0;
1751 reg_state[CTX_SECOND_BB_STATE] = ring->mmio_base + 0x118;
1752 reg_state[CTX_SECOND_BB_STATE+1] = 0;
1753 if (ring->id == RCS) {
1754 /* TODO: according to BSpec, the register state context
1755 * for CHV does not have these. OTOH, these registers do
1756 * exist in CHV. I'm waiting for a clarification */
1757 reg_state[CTX_BB_PER_CTX_PTR] = ring->mmio_base + 0x1c0;
1758 reg_state[CTX_BB_PER_CTX_PTR+1] = 0;
1759 reg_state[CTX_RCS_INDIRECT_CTX] = ring->mmio_base + 0x1c4;
1760 reg_state[CTX_RCS_INDIRECT_CTX+1] = 0;
1761 reg_state[CTX_RCS_INDIRECT_CTX_OFFSET] = ring->mmio_base + 0x1c8;
1762 reg_state[CTX_RCS_INDIRECT_CTX_OFFSET+1] = 0;
1763 }
1764 reg_state[CTX_LRI_HEADER_1] = MI_LOAD_REGISTER_IMM(9);
1765 reg_state[CTX_LRI_HEADER_1] |= MI_LRI_FORCE_POSTED;
1766 reg_state[CTX_CTX_TIMESTAMP] = ring->mmio_base + 0x3a8;
1767 reg_state[CTX_CTX_TIMESTAMP+1] = 0;
1768 reg_state[CTX_PDP3_UDW] = GEN8_RING_PDP_UDW(ring, 3);
1769 reg_state[CTX_PDP3_LDW] = GEN8_RING_PDP_LDW(ring, 3);
1770 reg_state[CTX_PDP2_UDW] = GEN8_RING_PDP_UDW(ring, 2);
1771 reg_state[CTX_PDP2_LDW] = GEN8_RING_PDP_LDW(ring, 2);
1772 reg_state[CTX_PDP1_UDW] = GEN8_RING_PDP_UDW(ring, 1);
1773 reg_state[CTX_PDP1_LDW] = GEN8_RING_PDP_LDW(ring, 1);
1774 reg_state[CTX_PDP0_UDW] = GEN8_RING_PDP_UDW(ring, 0);
1775 reg_state[CTX_PDP0_LDW] = GEN8_RING_PDP_LDW(ring, 0);
Michel Thierryd7b26332015-04-08 12:13:34 +01001776
1777 /* With dynamic page allocation, PDPs may not be allocated at this point,
1778 * Point the unallocated PDPs to the scratch page
Michel Thierrye5815a22015-04-08 12:13:32 +01001779 */
1780 ASSIGN_CTX_PDP(ppgtt, reg_state, 3);
1781 ASSIGN_CTX_PDP(ppgtt, reg_state, 2);
1782 ASSIGN_CTX_PDP(ppgtt, reg_state, 1);
1783 ASSIGN_CTX_PDP(ppgtt, reg_state, 0);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01001784 if (ring->id == RCS) {
1785 reg_state[CTX_LRI_HEADER_2] = MI_LOAD_REGISTER_IMM(1);
Jeff McGee0cea6502015-02-13 10:27:56 -06001786 reg_state[CTX_R_PWR_CLK_STATE] = GEN8_R_PWR_CLK_STATE;
1787 reg_state[CTX_R_PWR_CLK_STATE+1] = make_rpcs(dev);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01001788 }
1789
1790 kunmap_atomic(reg_state);
1791
1792 ctx_obj->dirty = 1;
1793 set_page_dirty(page);
1794 i915_gem_object_unpin_pages(ctx_obj);
1795
1796 return 0;
1797}
1798
Oscar Mateo73e4d072014-07-24 17:04:48 +01001799/**
1800 * intel_lr_context_free() - free the LRC specific bits of a context
1801 * @ctx: the LR context to free.
1802 *
1803 * The real context freeing is done in i915_gem_context_free: this only
1804 * takes care of the bits that are LRC related: the per-engine backing
1805 * objects and the logical ringbuffer.
1806 */
Oscar Mateoede7d422014-07-24 17:04:12 +01001807void intel_lr_context_free(struct intel_context *ctx)
1808{
Oscar Mateo8c8579172014-07-24 17:04:14 +01001809 int i;
1810
1811 for (i = 0; i < I915_NUM_RINGS; i++) {
1812 struct drm_i915_gem_object *ctx_obj = ctx->engine[i].state;
Oscar Mateo84c23772014-07-24 17:04:15 +01001813
Oscar Mateo8c8579172014-07-24 17:04:14 +01001814 if (ctx_obj) {
Oscar Mateodcb4c122014-11-13 10:28:10 +00001815 struct intel_ringbuffer *ringbuf =
1816 ctx->engine[i].ringbuf;
1817 struct intel_engine_cs *ring = ringbuf->ring;
1818
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001819 if (ctx == ring->default_context) {
1820 intel_unpin_ringbuffer_obj(ringbuf);
1821 i915_gem_object_ggtt_unpin(ctx_obj);
1822 }
Mika Kuoppalaa7cbede2015-01-13 11:32:25 +02001823 WARN_ON(ctx->engine[ring->id].pin_count);
Oscar Mateo84c23772014-07-24 17:04:15 +01001824 intel_destroy_ringbuffer_obj(ringbuf);
1825 kfree(ringbuf);
Oscar Mateo8c8579172014-07-24 17:04:14 +01001826 drm_gem_object_unreference(&ctx_obj->base);
1827 }
1828 }
1829}
1830
1831static uint32_t get_lr_context_size(struct intel_engine_cs *ring)
1832{
1833 int ret = 0;
1834
Michael H. Nguyen468c6812014-11-13 17:51:49 +00001835 WARN_ON(INTEL_INFO(ring->dev)->gen < 8);
Oscar Mateo8c8579172014-07-24 17:04:14 +01001836
1837 switch (ring->id) {
1838 case RCS:
Michael H. Nguyen468c6812014-11-13 17:51:49 +00001839 if (INTEL_INFO(ring->dev)->gen >= 9)
1840 ret = GEN9_LR_CONTEXT_RENDER_SIZE;
1841 else
1842 ret = GEN8_LR_CONTEXT_RENDER_SIZE;
Oscar Mateo8c8579172014-07-24 17:04:14 +01001843 break;
1844 case VCS:
1845 case BCS:
1846 case VECS:
1847 case VCS2:
1848 ret = GEN8_LR_CONTEXT_OTHER_SIZE;
1849 break;
1850 }
1851
1852 return ret;
Oscar Mateoede7d422014-07-24 17:04:12 +01001853}
1854
Daniel Vetter70b0ea82014-11-18 09:09:32 +01001855static void lrc_setup_hardware_status_page(struct intel_engine_cs *ring,
Thomas Daniel1df06b72014-10-29 09:52:51 +00001856 struct drm_i915_gem_object *default_ctx_obj)
1857{
1858 struct drm_i915_private *dev_priv = ring->dev->dev_private;
1859
1860 /* The status page is offset 0 from the default context object
1861 * in LRC mode. */
1862 ring->status_page.gfx_addr = i915_gem_obj_ggtt_offset(default_ctx_obj);
1863 ring->status_page.page_addr =
1864 kmap(sg_page(default_ctx_obj->pages->sgl));
Thomas Daniel1df06b72014-10-29 09:52:51 +00001865 ring->status_page.obj = default_ctx_obj;
1866
1867 I915_WRITE(RING_HWS_PGA(ring->mmio_base),
1868 (u32)ring->status_page.gfx_addr);
1869 POSTING_READ(RING_HWS_PGA(ring->mmio_base));
Thomas Daniel1df06b72014-10-29 09:52:51 +00001870}
1871
Oscar Mateo73e4d072014-07-24 17:04:48 +01001872/**
1873 * intel_lr_context_deferred_create() - create the LRC specific bits of a context
1874 * @ctx: LR context to create.
1875 * @ring: engine to be used with the context.
1876 *
1877 * This function can be called more than once, with different engines, if we plan
1878 * to use the context with them. The context backing objects and the ringbuffers
1879 * (specially the ringbuffer backing objects) suck a lot of memory up, and that's why
1880 * the creation is a deferred call: it's better to make sure first that we need to use
1881 * a given ring with the context.
1882 *
Masanari Iida32197aa2014-10-20 23:53:13 +09001883 * Return: non-zero on error.
Oscar Mateo73e4d072014-07-24 17:04:48 +01001884 */
Oscar Mateoede7d422014-07-24 17:04:12 +01001885int intel_lr_context_deferred_create(struct intel_context *ctx,
1886 struct intel_engine_cs *ring)
1887{
Oscar Mateodcb4c122014-11-13 10:28:10 +00001888 const bool is_global_default_ctx = (ctx == ring->default_context);
Oscar Mateo8c8579172014-07-24 17:04:14 +01001889 struct drm_device *dev = ring->dev;
1890 struct drm_i915_gem_object *ctx_obj;
1891 uint32_t context_size;
Oscar Mateo84c23772014-07-24 17:04:15 +01001892 struct intel_ringbuffer *ringbuf;
Oscar Mateo8c8579172014-07-24 17:04:14 +01001893 int ret;
1894
Oscar Mateoede7d422014-07-24 17:04:12 +01001895 WARN_ON(ctx->legacy_hw_ctx.rcs_state != NULL);
Daniel Vetterbfc882b2014-11-20 00:33:08 +01001896 WARN_ON(ctx->engine[ring->id].state);
Oscar Mateoede7d422014-07-24 17:04:12 +01001897
Oscar Mateo8c8579172014-07-24 17:04:14 +01001898 context_size = round_up(get_lr_context_size(ring), 4096);
1899
1900 ctx_obj = i915_gem_alloc_context_obj(dev, context_size);
1901 if (IS_ERR(ctx_obj)) {
1902 ret = PTR_ERR(ctx_obj);
1903 DRM_DEBUG_DRIVER("Alloc LRC backing obj failed: %d\n", ret);
1904 return ret;
1905 }
1906
Oscar Mateodcb4c122014-11-13 10:28:10 +00001907 if (is_global_default_ctx) {
1908 ret = i915_gem_obj_ggtt_pin(ctx_obj, GEN8_LR_CONTEXT_ALIGN, 0);
1909 if (ret) {
1910 DRM_DEBUG_DRIVER("Pin LRC backing obj failed: %d\n",
1911 ret);
1912 drm_gem_object_unreference(&ctx_obj->base);
1913 return ret;
1914 }
Oscar Mateo8c8579172014-07-24 17:04:14 +01001915 }
1916
Oscar Mateo84c23772014-07-24 17:04:15 +01001917 ringbuf = kzalloc(sizeof(*ringbuf), GFP_KERNEL);
1918 if (!ringbuf) {
1919 DRM_DEBUG_DRIVER("Failed to allocate ringbuffer %s\n",
1920 ring->name);
Oscar Mateo84c23772014-07-24 17:04:15 +01001921 ret = -ENOMEM;
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001922 goto error_unpin_ctx;
Oscar Mateo84c23772014-07-24 17:04:15 +01001923 }
1924
Daniel Vetter0c7dd532014-08-11 16:17:44 +02001925 ringbuf->ring = ring;
Oscar Mateo582d67f2014-07-24 17:04:16 +01001926
Oscar Mateo84c23772014-07-24 17:04:15 +01001927 ringbuf->size = 32 * PAGE_SIZE;
1928 ringbuf->effective_size = ringbuf->size;
1929 ringbuf->head = 0;
1930 ringbuf->tail = 0;
Oscar Mateo84c23772014-07-24 17:04:15 +01001931 ringbuf->last_retired_head = -1;
Dave Gordonebd0fd42014-11-27 11:22:49 +00001932 intel_ring_update_space(ringbuf);
Oscar Mateo84c23772014-07-24 17:04:15 +01001933
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001934 if (ringbuf->obj == NULL) {
1935 ret = intel_alloc_ringbuffer_obj(dev, ringbuf);
1936 if (ret) {
1937 DRM_DEBUG_DRIVER(
1938 "Failed to allocate ringbuffer obj %s: %d\n",
Oscar Mateo84c23772014-07-24 17:04:15 +01001939 ring->name, ret);
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001940 goto error_free_rbuf;
1941 }
1942
1943 if (is_global_default_ctx) {
1944 ret = intel_pin_and_map_ringbuffer_obj(dev, ringbuf);
1945 if (ret) {
1946 DRM_ERROR(
1947 "Failed to pin and map ringbuffer %s: %d\n",
1948 ring->name, ret);
1949 goto error_destroy_rbuf;
1950 }
1951 }
1952
Oscar Mateo8670d6f2014-07-24 17:04:17 +01001953 }
1954
1955 ret = populate_lr_context(ctx, ctx_obj, ring, ringbuf);
1956 if (ret) {
1957 DRM_DEBUG_DRIVER("Failed to populate LRC: %d\n", ret);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01001958 goto error;
Oscar Mateo84c23772014-07-24 17:04:15 +01001959 }
1960
1961 ctx->engine[ring->id].ringbuf = ringbuf;
Oscar Mateo8c8579172014-07-24 17:04:14 +01001962 ctx->engine[ring->id].state = ctx_obj;
Oscar Mateoede7d422014-07-24 17:04:12 +01001963
Daniel Vetter70b0ea82014-11-18 09:09:32 +01001964 if (ctx == ring->default_context)
1965 lrc_setup_hardware_status_page(ring, ctx_obj);
Thomas Daniele7778be2014-12-02 12:50:48 +00001966 else if (ring->id == RCS && !ctx->rcs_initialized) {
Michel Thierry771b9a52014-11-11 16:47:33 +00001967 if (ring->init_context) {
1968 ret = ring->init_context(ring, ctx);
Thomas Daniele7778be2014-12-02 12:50:48 +00001969 if (ret) {
Michel Thierry771b9a52014-11-11 16:47:33 +00001970 DRM_ERROR("ring init context: %d\n", ret);
Thomas Daniele7778be2014-12-02 12:50:48 +00001971 ctx->engine[ring->id].ringbuf = NULL;
1972 ctx->engine[ring->id].state = NULL;
1973 goto error;
1974 }
Michel Thierry771b9a52014-11-11 16:47:33 +00001975 }
1976
Oscar Mateo564ddb22014-08-21 11:40:54 +01001977 ctx->rcs_initialized = true;
1978 }
1979
Oscar Mateoede7d422014-07-24 17:04:12 +01001980 return 0;
Oscar Mateo8670d6f2014-07-24 17:04:17 +01001981
1982error:
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001983 if (is_global_default_ctx)
1984 intel_unpin_ringbuffer_obj(ringbuf);
1985error_destroy_rbuf:
1986 intel_destroy_ringbuffer_obj(ringbuf);
1987error_free_rbuf:
Oscar Mateo8670d6f2014-07-24 17:04:17 +01001988 kfree(ringbuf);
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001989error_unpin_ctx:
Oscar Mateodcb4c122014-11-13 10:28:10 +00001990 if (is_global_default_ctx)
1991 i915_gem_object_ggtt_unpin(ctx_obj);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01001992 drm_gem_object_unreference(&ctx_obj->base);
1993 return ret;
Oscar Mateoede7d422014-07-24 17:04:12 +01001994}
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00001995
1996void intel_lr_context_reset(struct drm_device *dev,
1997 struct intel_context *ctx)
1998{
1999 struct drm_i915_private *dev_priv = dev->dev_private;
2000 struct intel_engine_cs *ring;
2001 int i;
2002
2003 for_each_ring(ring, dev_priv, i) {
2004 struct drm_i915_gem_object *ctx_obj =
2005 ctx->engine[ring->id].state;
2006 struct intel_ringbuffer *ringbuf =
2007 ctx->engine[ring->id].ringbuf;
2008 uint32_t *reg_state;
2009 struct page *page;
2010
2011 if (!ctx_obj)
2012 continue;
2013
2014 if (i915_gem_object_get_pages(ctx_obj)) {
2015 WARN(1, "Failed get_pages for context obj\n");
2016 continue;
2017 }
2018 page = i915_gem_object_get_page(ctx_obj, 1);
2019 reg_state = kmap_atomic(page);
2020
2021 reg_state[CTX_RING_HEAD+1] = 0;
2022 reg_state[CTX_RING_TAIL+1] = 0;
2023
2024 kunmap_atomic(reg_state);
2025
2026 ringbuf->head = 0;
2027 ringbuf->tail = 0;
2028 }
2029}