blob: 7992af808404ff1808c1addb1a7f21292aa0377e [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)
191enum {
192 ADVANCED_CONTEXT = 0,
193 LEGACY_CONTEXT,
194 ADVANCED_AD_CONTEXT,
195 LEGACY_64B_CONTEXT
196};
197#define GEN8_CTX_MODE_SHIFT 3
198enum {
199 FAULT_AND_HANG = 0,
200 FAULT_AND_HALT, /* Debug only */
201 FAULT_AND_STREAM,
202 FAULT_AND_CONTINUE /* Unsupported */
203};
204#define GEN8_CTX_ID_SHIFT 32
205
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000206static int intel_lr_context_pin(struct intel_engine_cs *ring,
207 struct intel_context *ctx);
208
Oscar Mateo73e4d072014-07-24 17:04:48 +0100209/**
210 * intel_sanitize_enable_execlists() - sanitize i915.enable_execlists
211 * @dev: DRM device.
212 * @enable_execlists: value of i915.enable_execlists module parameter.
213 *
214 * Only certain platforms support Execlists (the prerequisites being
Thomas Daniel27401d12014-12-11 12:48:35 +0000215 * support for Logical Ring Contexts and Aliasing PPGTT or better).
Oscar Mateo73e4d072014-07-24 17:04:48 +0100216 *
217 * Return: 1 if Execlists is supported and has to be enabled.
218 */
Oscar Mateo127f1002014-07-24 17:04:11 +0100219int intel_sanitize_enable_execlists(struct drm_device *dev, int enable_execlists)
220{
Daniel Vetterbd84b1e2014-08-11 15:57:57 +0200221 WARN_ON(i915.enable_ppgtt == -1);
222
Damien Lespiau70ee45e2014-11-14 15:05:59 +0000223 if (INTEL_INFO(dev)->gen >= 9)
224 return 1;
225
Oscar Mateo127f1002014-07-24 17:04:11 +0100226 if (enable_execlists == 0)
227 return 0;
228
Oscar Mateo14bf9932014-07-24 17:04:34 +0100229 if (HAS_LOGICAL_RING_CONTEXTS(dev) && USES_PPGTT(dev) &&
230 i915.use_mmio_flip >= 0)
Oscar Mateo127f1002014-07-24 17:04:11 +0100231 return 1;
232
233 return 0;
234}
Oscar Mateoede7d422014-07-24 17:04:12 +0100235
Oscar Mateo73e4d072014-07-24 17:04:48 +0100236/**
237 * intel_execlists_ctx_id() - get the Execlists Context ID
238 * @ctx_obj: Logical Ring Context backing object.
239 *
240 * Do not confuse with ctx->id! Unfortunately we have a name overload
241 * here: the old context ID we pass to userspace as a handler so that
242 * they can refer to a context, and the new context ID we pass to the
243 * ELSP so that the GPU can inform us of the context status via
244 * interrupts.
245 *
246 * Return: 20-bits globally unique context ID.
247 */
Ben Widawsky84b790f2014-07-24 17:04:36 +0100248u32 intel_execlists_ctx_id(struct drm_i915_gem_object *ctx_obj)
249{
250 u32 lrca = i915_gem_obj_ggtt_offset(ctx_obj);
251
252 /* LRCA is required to be 4K aligned so the more significant 20 bits
253 * are globally unique */
254 return lrca >> 12;
255}
256
257static uint64_t execlists_ctx_descriptor(struct drm_i915_gem_object *ctx_obj)
258{
259 uint64_t desc;
260 uint64_t lrca = i915_gem_obj_ggtt_offset(ctx_obj);
Michel Thierryacdd8842014-07-24 17:04:38 +0100261
262 WARN_ON(lrca & 0xFFFFFFFF00000FFFULL);
Ben Widawsky84b790f2014-07-24 17:04:36 +0100263
264 desc = GEN8_CTX_VALID;
265 desc |= LEGACY_CONTEXT << GEN8_CTX_MODE_SHIFT;
266 desc |= GEN8_CTX_L3LLC_COHERENT;
267 desc |= GEN8_CTX_PRIVILEGE;
268 desc |= lrca;
269 desc |= (u64)intel_execlists_ctx_id(ctx_obj) << GEN8_CTX_ID_SHIFT;
270
271 /* TODO: WaDisableLiteRestore when we start using semaphore
272 * signalling between Command Streamers */
273 /* desc |= GEN8_CTX_FORCE_RESTORE; */
274
275 return desc;
276}
277
278static void execlists_elsp_write(struct intel_engine_cs *ring,
279 struct drm_i915_gem_object *ctx_obj0,
280 struct drm_i915_gem_object *ctx_obj1)
281{
Tvrtko Ursulin6e7cc472014-11-13 17:51:51 +0000282 struct drm_device *dev = ring->dev;
283 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky84b790f2014-07-24 17:04:36 +0100284 uint64_t temp = 0;
285 uint32_t desc[4];
Thomas Daniele981e7b2014-07-24 17:04:39 +0100286 unsigned long flags;
Ben Widawsky84b790f2014-07-24 17:04:36 +0100287
288 /* XXX: You must always write both descriptors in the order below. */
289 if (ctx_obj1)
290 temp = execlists_ctx_descriptor(ctx_obj1);
291 else
292 temp = 0;
293 desc[1] = (u32)(temp >> 32);
294 desc[0] = (u32)temp;
295
296 temp = execlists_ctx_descriptor(ctx_obj0);
297 desc[3] = (u32)(temp >> 32);
298 desc[2] = (u32)temp;
299
Thomas Daniele981e7b2014-07-24 17:04:39 +0100300 /* Set Force Wakeup bit to prevent GT from entering C6 while ELSP writes
301 * are in progress.
302 *
303 * The other problem is that we can't just call gen6_gt_force_wake_get()
304 * because that function calls intel_runtime_pm_get(), which might sleep.
305 * Instead, we do the runtime_pm_get/put when creating/destroying requests.
306 */
307 spin_lock_irqsave(&dev_priv->uncore.lock, flags);
Tvrtko Ursulin6e7cc472014-11-13 17:51:51 +0000308 if (IS_CHERRYVIEW(dev) || INTEL_INFO(dev)->gen >= 9) {
Deepak Sa01b0e92014-09-09 19:14:16 +0530309 if (dev_priv->uncore.fw_rendercount++ == 0)
310 dev_priv->uncore.funcs.force_wake_get(dev_priv,
311 FORCEWAKE_RENDER);
312 if (dev_priv->uncore.fw_mediacount++ == 0)
313 dev_priv->uncore.funcs.force_wake_get(dev_priv,
314 FORCEWAKE_MEDIA);
Tvrtko Ursulin6e7cc472014-11-13 17:51:51 +0000315 if (INTEL_INFO(dev)->gen >= 9) {
316 if (dev_priv->uncore.fw_blittercount++ == 0)
317 dev_priv->uncore.funcs.force_wake_get(dev_priv,
318 FORCEWAKE_BLITTER);
319 }
Deepak Sa01b0e92014-09-09 19:14:16 +0530320 } else {
321 if (dev_priv->uncore.forcewake_count++ == 0)
322 dev_priv->uncore.funcs.force_wake_get(dev_priv,
323 FORCEWAKE_ALL);
324 }
Thomas Daniele981e7b2014-07-24 17:04:39 +0100325 spin_unlock_irqrestore(&dev_priv->uncore.lock, flags);
Ben Widawsky84b790f2014-07-24 17:04:36 +0100326
327 I915_WRITE(RING_ELSP(ring), desc[1]);
328 I915_WRITE(RING_ELSP(ring), desc[0]);
329 I915_WRITE(RING_ELSP(ring), desc[3]);
330 /* The context is automatically loaded after the following */
331 I915_WRITE(RING_ELSP(ring), desc[2]);
332
333 /* ELSP is a wo register, so use another nearby reg for posting instead */
334 POSTING_READ(RING_EXECLIST_STATUS(ring));
335
Thomas Daniele981e7b2014-07-24 17:04:39 +0100336 /* Release Force Wakeup (see the big comment above). */
337 spin_lock_irqsave(&dev_priv->uncore.lock, flags);
Tvrtko Ursulin6e7cc472014-11-13 17:51:51 +0000338 if (IS_CHERRYVIEW(dev) || INTEL_INFO(dev)->gen >= 9) {
Deepak Sa01b0e92014-09-09 19:14:16 +0530339 if (--dev_priv->uncore.fw_rendercount == 0)
340 dev_priv->uncore.funcs.force_wake_put(dev_priv,
341 FORCEWAKE_RENDER);
342 if (--dev_priv->uncore.fw_mediacount == 0)
343 dev_priv->uncore.funcs.force_wake_put(dev_priv,
344 FORCEWAKE_MEDIA);
Tvrtko Ursulin6e7cc472014-11-13 17:51:51 +0000345 if (INTEL_INFO(dev)->gen >= 9) {
346 if (--dev_priv->uncore.fw_blittercount == 0)
347 dev_priv->uncore.funcs.force_wake_put(dev_priv,
348 FORCEWAKE_BLITTER);
349 }
Deepak Sa01b0e92014-09-09 19:14:16 +0530350 } else {
351 if (--dev_priv->uncore.forcewake_count == 0)
352 dev_priv->uncore.funcs.force_wake_put(dev_priv,
353 FORCEWAKE_ALL);
354 }
355
Thomas Daniele981e7b2014-07-24 17:04:39 +0100356 spin_unlock_irqrestore(&dev_priv->uncore.lock, flags);
Ben Widawsky84b790f2014-07-24 17:04:36 +0100357}
358
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000359static int execlists_update_context(struct drm_i915_gem_object *ctx_obj,
360 struct drm_i915_gem_object *ring_obj,
361 u32 tail)
Oscar Mateoae1250b2014-07-24 17:04:37 +0100362{
363 struct page *page;
364 uint32_t *reg_state;
365
366 page = i915_gem_object_get_page(ctx_obj, 1);
367 reg_state = kmap_atomic(page);
368
369 reg_state[CTX_RING_TAIL+1] = tail;
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000370 reg_state[CTX_RING_BUFFER_START+1] = i915_gem_obj_ggtt_offset(ring_obj);
Oscar Mateoae1250b2014-07-24 17:04:37 +0100371
372 kunmap_atomic(reg_state);
373
374 return 0;
375}
376
Dave Gordoncd0707c2014-10-30 15:41:56 +0000377static void execlists_submit_contexts(struct intel_engine_cs *ring,
378 struct intel_context *to0, u32 tail0,
379 struct intel_context *to1, u32 tail1)
Ben Widawsky84b790f2014-07-24 17:04:36 +0100380{
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000381 struct drm_i915_gem_object *ctx_obj0 = to0->engine[ring->id].state;
382 struct intel_ringbuffer *ringbuf0 = to0->engine[ring->id].ringbuf;
Ben Widawsky84b790f2014-07-24 17:04:36 +0100383 struct drm_i915_gem_object *ctx_obj1 = NULL;
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000384 struct intel_ringbuffer *ringbuf1 = NULL;
Ben Widawsky84b790f2014-07-24 17:04:36 +0100385
Ben Widawsky84b790f2014-07-24 17:04:36 +0100386 BUG_ON(!ctx_obj0);
Michel Thierryacdd8842014-07-24 17:04:38 +0100387 WARN_ON(!i915_gem_obj_is_pinned(ctx_obj0));
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000388 WARN_ON(!i915_gem_obj_is_pinned(ringbuf0->obj));
Ben Widawsky84b790f2014-07-24 17:04:36 +0100389
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000390 execlists_update_context(ctx_obj0, ringbuf0->obj, tail0);
Oscar Mateoae1250b2014-07-24 17:04:37 +0100391
Ben Widawsky84b790f2014-07-24 17:04:36 +0100392 if (to1) {
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000393 ringbuf1 = to1->engine[ring->id].ringbuf;
Ben Widawsky84b790f2014-07-24 17:04:36 +0100394 ctx_obj1 = to1->engine[ring->id].state;
395 BUG_ON(!ctx_obj1);
Michel Thierryacdd8842014-07-24 17:04:38 +0100396 WARN_ON(!i915_gem_obj_is_pinned(ctx_obj1));
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000397 WARN_ON(!i915_gem_obj_is_pinned(ringbuf1->obj));
Oscar Mateoae1250b2014-07-24 17:04:37 +0100398
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000399 execlists_update_context(ctx_obj1, ringbuf1->obj, tail1);
Ben Widawsky84b790f2014-07-24 17:04:36 +0100400 }
401
402 execlists_elsp_write(ring, ctx_obj0, ctx_obj1);
Ben Widawsky84b790f2014-07-24 17:04:36 +0100403}
404
Michel Thierryacdd8842014-07-24 17:04:38 +0100405static void execlists_context_unqueue(struct intel_engine_cs *ring)
406{
407 struct intel_ctx_submit_request *req0 = NULL, *req1 = NULL;
408 struct intel_ctx_submit_request *cursor = NULL, *tmp = NULL;
Thomas Daniele981e7b2014-07-24 17:04:39 +0100409
410 assert_spin_locked(&ring->execlist_lock);
Michel Thierryacdd8842014-07-24 17:04:38 +0100411
412 if (list_empty(&ring->execlist_queue))
413 return;
414
415 /* Try to read in pairs */
416 list_for_each_entry_safe(cursor, tmp, &ring->execlist_queue,
417 execlist_link) {
418 if (!req0) {
419 req0 = cursor;
420 } else if (req0->ctx == cursor->ctx) {
421 /* Same ctx: ignore first request, as second request
422 * will update tail past first request's workload */
Oscar Mateoe1fee722014-07-24 17:04:40 +0100423 cursor->elsp_submitted = req0->elsp_submitted;
Michel Thierryacdd8842014-07-24 17:04:38 +0100424 list_del(&req0->execlist_link);
Thomas Danielc86ee3a92014-11-13 10:27:05 +0000425 list_add_tail(&req0->execlist_link,
426 &ring->execlist_retired_req_list);
Michel Thierryacdd8842014-07-24 17:04:38 +0100427 req0 = cursor;
428 } else {
429 req1 = cursor;
430 break;
431 }
432 }
433
Oscar Mateoe1fee722014-07-24 17:04:40 +0100434 WARN_ON(req1 && req1->elsp_submitted);
435
Dave Gordoncd0707c2014-10-30 15:41:56 +0000436 execlists_submit_contexts(ring, req0->ctx, req0->tail,
437 req1 ? req1->ctx : NULL,
438 req1 ? req1->tail : 0);
Oscar Mateoe1fee722014-07-24 17:04:40 +0100439
440 req0->elsp_submitted++;
441 if (req1)
442 req1->elsp_submitted++;
Michel Thierryacdd8842014-07-24 17:04:38 +0100443}
444
Thomas Daniele981e7b2014-07-24 17:04:39 +0100445static bool execlists_check_remove_request(struct intel_engine_cs *ring,
446 u32 request_id)
447{
Thomas Daniele981e7b2014-07-24 17:04:39 +0100448 struct intel_ctx_submit_request *head_req;
449
450 assert_spin_locked(&ring->execlist_lock);
451
452 head_req = list_first_entry_or_null(&ring->execlist_queue,
453 struct intel_ctx_submit_request,
454 execlist_link);
455
456 if (head_req != NULL) {
457 struct drm_i915_gem_object *ctx_obj =
458 head_req->ctx->engine[ring->id].state;
459 if (intel_execlists_ctx_id(ctx_obj) == request_id) {
Oscar Mateoe1fee722014-07-24 17:04:40 +0100460 WARN(head_req->elsp_submitted == 0,
461 "Never submitted head request\n");
462
463 if (--head_req->elsp_submitted <= 0) {
464 list_del(&head_req->execlist_link);
Thomas Danielc86ee3a92014-11-13 10:27:05 +0000465 list_add_tail(&head_req->execlist_link,
466 &ring->execlist_retired_req_list);
Oscar Mateoe1fee722014-07-24 17:04:40 +0100467 return true;
468 }
Thomas Daniele981e7b2014-07-24 17:04:39 +0100469 }
470 }
471
472 return false;
473}
474
Oscar Mateo73e4d072014-07-24 17:04:48 +0100475/**
Daniel Vetter3f7531c2014-12-10 17:41:43 +0100476 * intel_lrc_irq_handler() - handle Context Switch interrupts
Oscar Mateo73e4d072014-07-24 17:04:48 +0100477 * @ring: Engine Command Streamer to handle.
478 *
479 * Check the unread Context Status Buffers and manage the submission of new
480 * contexts to the ELSP accordingly.
481 */
Daniel Vetter3f7531c2014-12-10 17:41:43 +0100482void intel_lrc_irq_handler(struct intel_engine_cs *ring)
Thomas Daniele981e7b2014-07-24 17:04:39 +0100483{
484 struct drm_i915_private *dev_priv = ring->dev->dev_private;
485 u32 status_pointer;
486 u8 read_pointer;
487 u8 write_pointer;
488 u32 status;
489 u32 status_id;
490 u32 submit_contexts = 0;
491
492 status_pointer = I915_READ(RING_CONTEXT_STATUS_PTR(ring));
493
494 read_pointer = ring->next_context_status_buffer;
495 write_pointer = status_pointer & 0x07;
496 if (read_pointer > write_pointer)
497 write_pointer += 6;
498
499 spin_lock(&ring->execlist_lock);
500
501 while (read_pointer < write_pointer) {
502 read_pointer++;
503 status = I915_READ(RING_CONTEXT_STATUS_BUF(ring) +
504 (read_pointer % 6) * 8);
505 status_id = I915_READ(RING_CONTEXT_STATUS_BUF(ring) +
506 (read_pointer % 6) * 8 + 4);
507
Oscar Mateoe1fee722014-07-24 17:04:40 +0100508 if (status & GEN8_CTX_STATUS_PREEMPTED) {
509 if (status & GEN8_CTX_STATUS_LITE_RESTORE) {
510 if (execlists_check_remove_request(ring, status_id))
511 WARN(1, "Lite Restored request removed from queue\n");
512 } else
513 WARN(1, "Preemption without Lite Restore\n");
514 }
515
516 if ((status & GEN8_CTX_STATUS_ACTIVE_IDLE) ||
517 (status & GEN8_CTX_STATUS_ELEMENT_SWITCH)) {
Thomas Daniele981e7b2014-07-24 17:04:39 +0100518 if (execlists_check_remove_request(ring, status_id))
519 submit_contexts++;
520 }
521 }
522
523 if (submit_contexts != 0)
524 execlists_context_unqueue(ring);
525
526 spin_unlock(&ring->execlist_lock);
527
528 WARN(submit_contexts > 2, "More than two context complete events?\n");
529 ring->next_context_status_buffer = write_pointer % 6;
530
531 I915_WRITE(RING_CONTEXT_STATUS_PTR(ring),
532 ((u32)ring->next_context_status_buffer & 0x07) << 8);
533}
534
Michel Thierryacdd8842014-07-24 17:04:38 +0100535static int execlists_context_queue(struct intel_engine_cs *ring,
536 struct intel_context *to,
Nick Hoath2d129552015-01-15 13:10:36 +0000537 u32 tail,
538 struct drm_i915_gem_request *request)
Michel Thierryacdd8842014-07-24 17:04:38 +0100539{
Oscar Mateof1ad5a12014-07-24 17:04:41 +0100540 struct intel_ctx_submit_request *req = NULL, *cursor;
Thomas Daniele981e7b2014-07-24 17:04:39 +0100541 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Michel Thierryacdd8842014-07-24 17:04:38 +0100542 unsigned long flags;
Oscar Mateof1ad5a12014-07-24 17:04:41 +0100543 int num_elements = 0;
Michel Thierryacdd8842014-07-24 17:04:38 +0100544
545 req = kzalloc(sizeof(*req), GFP_KERNEL);
546 if (req == NULL)
547 return -ENOMEM;
548 req->ctx = to;
549 i915_gem_context_reference(req->ctx);
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000550
551 if (to != ring->default_context)
552 intel_lr_context_pin(ring, to);
553
Michel Thierryacdd8842014-07-24 17:04:38 +0100554 req->ring = ring;
555 req->tail = tail;
Thomas Daniele981e7b2014-07-24 17:04:39 +0100556
Nick Hoath2d129552015-01-15 13:10:36 +0000557 if (!request) {
558 /*
559 * If there isn't a request associated with this submission,
560 * create one as a temporary holder.
561 */
562 WARN(1, "execlist context submission without request");
563 request = kzalloc(sizeof(*request), GFP_KERNEL);
564 if (request == NULL)
565 return -ENOMEM;
566 request->ctx = to;
567 request->ring = ring;
568 }
569 req->request = request;
570 i915_gem_request_reference(request);
571
Thomas Daniele981e7b2014-07-24 17:04:39 +0100572 intel_runtime_pm_get(dev_priv);
Michel Thierryacdd8842014-07-24 17:04:38 +0100573
574 spin_lock_irqsave(&ring->execlist_lock, flags);
575
Oscar Mateof1ad5a12014-07-24 17:04:41 +0100576 list_for_each_entry(cursor, &ring->execlist_queue, execlist_link)
577 if (++num_elements > 2)
578 break;
579
580 if (num_elements > 2) {
581 struct intel_ctx_submit_request *tail_req;
582
583 tail_req = list_last_entry(&ring->execlist_queue,
584 struct intel_ctx_submit_request,
585 execlist_link);
586
587 if (to == tail_req->ctx) {
588 WARN(tail_req->elsp_submitted != 0,
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000589 "More than 2 already-submitted reqs queued\n");
Oscar Mateof1ad5a12014-07-24 17:04:41 +0100590 list_del(&tail_req->execlist_link);
Thomas Danielc86ee3a92014-11-13 10:27:05 +0000591 list_add_tail(&tail_req->execlist_link,
592 &ring->execlist_retired_req_list);
Oscar Mateof1ad5a12014-07-24 17:04:41 +0100593 }
594 }
595
Michel Thierryacdd8842014-07-24 17:04:38 +0100596 list_add_tail(&req->execlist_link, &ring->execlist_queue);
Oscar Mateof1ad5a12014-07-24 17:04:41 +0100597 if (num_elements == 0)
Michel Thierryacdd8842014-07-24 17:04:38 +0100598 execlists_context_unqueue(ring);
599
600 spin_unlock_irqrestore(&ring->execlist_lock, flags);
601
602 return 0;
603}
604
Oscar Mateoba8b7cc2014-07-24 17:04:33 +0100605static int logical_ring_invalidate_all_caches(struct intel_ringbuffer *ringbuf)
606{
607 struct intel_engine_cs *ring = ringbuf->ring;
608 uint32_t flush_domains;
609 int ret;
610
611 flush_domains = 0;
612 if (ring->gpu_caches_dirty)
613 flush_domains = I915_GEM_GPU_DOMAINS;
614
615 ret = ring->emit_flush(ringbuf, I915_GEM_GPU_DOMAINS, flush_domains);
616 if (ret)
617 return ret;
618
619 ring->gpu_caches_dirty = false;
620 return 0;
621}
622
623static int execlists_move_to_gpu(struct intel_ringbuffer *ringbuf,
624 struct list_head *vmas)
625{
626 struct intel_engine_cs *ring = ringbuf->ring;
627 struct i915_vma *vma;
628 uint32_t flush_domains = 0;
629 bool flush_chipset = false;
630 int ret;
631
632 list_for_each_entry(vma, vmas, exec_list) {
633 struct drm_i915_gem_object *obj = vma->obj;
634
635 ret = i915_gem_object_sync(obj, ring);
636 if (ret)
637 return ret;
638
639 if (obj->base.write_domain & I915_GEM_DOMAIN_CPU)
640 flush_chipset |= i915_gem_clflush_object(obj, false);
641
642 flush_domains |= obj->base.write_domain;
643 }
644
645 if (flush_domains & I915_GEM_DOMAIN_GTT)
646 wmb();
647
648 /* Unconditionally invalidate gpu caches and ensure that we do flush
649 * any residual writes from the previous batch.
650 */
651 return logical_ring_invalidate_all_caches(ringbuf);
652}
653
Oscar Mateo73e4d072014-07-24 17:04:48 +0100654/**
655 * execlists_submission() - submit a batchbuffer for execution, Execlists style
656 * @dev: DRM device.
657 * @file: DRM file.
658 * @ring: Engine Command Streamer to submit to.
659 * @ctx: Context to employ for this submission.
660 * @args: execbuffer call arguments.
661 * @vmas: list of vmas.
662 * @batch_obj: the batchbuffer to submit.
663 * @exec_start: batchbuffer start virtual address pointer.
664 * @flags: translated execbuffer call flags.
665 *
666 * This is the evil twin version of i915_gem_ringbuffer_submission. It abstracts
667 * away the submission details of the execbuffer ioctl call.
668 *
669 * Return: non-zero if the submission fails.
670 */
Oscar Mateo454afeb2014-07-24 17:04:22 +0100671int intel_execlists_submission(struct drm_device *dev, struct drm_file *file,
672 struct intel_engine_cs *ring,
673 struct intel_context *ctx,
674 struct drm_i915_gem_execbuffer2 *args,
675 struct list_head *vmas,
676 struct drm_i915_gem_object *batch_obj,
677 u64 exec_start, u32 flags)
678{
Oscar Mateoba8b7cc2014-07-24 17:04:33 +0100679 struct drm_i915_private *dev_priv = dev->dev_private;
680 struct intel_ringbuffer *ringbuf = ctx->engine[ring->id].ringbuf;
681 int instp_mode;
682 u32 instp_mask;
683 int ret;
684
685 instp_mode = args->flags & I915_EXEC_CONSTANTS_MASK;
686 instp_mask = I915_EXEC_CONSTANTS_MASK;
687 switch (instp_mode) {
688 case I915_EXEC_CONSTANTS_REL_GENERAL:
689 case I915_EXEC_CONSTANTS_ABSOLUTE:
690 case I915_EXEC_CONSTANTS_REL_SURFACE:
691 if (instp_mode != 0 && ring != &dev_priv->ring[RCS]) {
692 DRM_DEBUG("non-0 rel constants mode on non-RCS\n");
693 return -EINVAL;
694 }
695
696 if (instp_mode != dev_priv->relative_constants_mode) {
697 if (instp_mode == I915_EXEC_CONSTANTS_REL_SURFACE) {
698 DRM_DEBUG("rel surface constants mode invalid on gen5+\n");
699 return -EINVAL;
700 }
701
702 /* The HW changed the meaning on this bit on gen6 */
703 instp_mask &= ~I915_EXEC_CONSTANTS_REL_SURFACE;
704 }
705 break;
706 default:
707 DRM_DEBUG("execbuf with unknown constants: %d\n", instp_mode);
708 return -EINVAL;
709 }
710
711 if (args->num_cliprects != 0) {
712 DRM_DEBUG("clip rectangles are only valid on pre-gen5\n");
713 return -EINVAL;
714 } else {
715 if (args->DR4 == 0xffffffff) {
716 DRM_DEBUG("UXA submitting garbage DR4, fixing up\n");
717 args->DR4 = 0;
718 }
719
720 if (args->DR1 || args->DR4 || args->cliprects_ptr) {
721 DRM_DEBUG("0 cliprects but dirt in cliprects fields\n");
722 return -EINVAL;
723 }
724 }
725
726 if (args->flags & I915_EXEC_GEN7_SOL_RESET) {
727 DRM_DEBUG("sol reset is gen7 only\n");
728 return -EINVAL;
729 }
730
731 ret = execlists_move_to_gpu(ringbuf, vmas);
732 if (ret)
733 return ret;
734
735 if (ring == &dev_priv->ring[RCS] &&
736 instp_mode != dev_priv->relative_constants_mode) {
737 ret = intel_logical_ring_begin(ringbuf, 4);
738 if (ret)
739 return ret;
740
741 intel_logical_ring_emit(ringbuf, MI_NOOP);
742 intel_logical_ring_emit(ringbuf, MI_LOAD_REGISTER_IMM(1));
743 intel_logical_ring_emit(ringbuf, INSTPM);
744 intel_logical_ring_emit(ringbuf, instp_mask << 16 | instp_mode);
745 intel_logical_ring_advance(ringbuf);
746
747 dev_priv->relative_constants_mode = instp_mode;
748 }
749
750 ret = ring->emit_bb_start(ringbuf, exec_start, flags);
751 if (ret)
752 return ret;
753
754 i915_gem_execbuffer_move_to_active(vmas, ring);
755 i915_gem_execbuffer_retire_commands(dev, file, ring, batch_obj);
756
Oscar Mateo454afeb2014-07-24 17:04:22 +0100757 return 0;
758}
759
Thomas Danielc86ee3a92014-11-13 10:27:05 +0000760void intel_execlists_retire_requests(struct intel_engine_cs *ring)
761{
762 struct intel_ctx_submit_request *req, *tmp;
763 struct drm_i915_private *dev_priv = ring->dev->dev_private;
764 unsigned long flags;
765 struct list_head retired_list;
766
767 WARN_ON(!mutex_is_locked(&ring->dev->struct_mutex));
768 if (list_empty(&ring->execlist_retired_req_list))
769 return;
770
771 INIT_LIST_HEAD(&retired_list);
772 spin_lock_irqsave(&ring->execlist_lock, flags);
773 list_replace_init(&ring->execlist_retired_req_list, &retired_list);
774 spin_unlock_irqrestore(&ring->execlist_lock, flags);
775
776 list_for_each_entry_safe(req, tmp, &retired_list, execlist_link) {
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000777 struct intel_context *ctx = req->ctx;
778 struct drm_i915_gem_object *ctx_obj =
779 ctx->engine[ring->id].state;
780
781 if (ctx_obj && (ctx != ring->default_context))
782 intel_lr_context_unpin(ring, ctx);
Thomas Danielc86ee3a92014-11-13 10:27:05 +0000783 intel_runtime_pm_put(dev_priv);
784 i915_gem_context_unreference(req->ctx);
Nick Hoath2d129552015-01-15 13:10:36 +0000785 i915_gem_request_unreference(req->request);
Thomas Danielc86ee3a92014-11-13 10:27:05 +0000786 list_del(&req->execlist_link);
787 kfree(req);
788 }
789}
790
Oscar Mateo454afeb2014-07-24 17:04:22 +0100791void intel_logical_ring_stop(struct intel_engine_cs *ring)
792{
Oscar Mateo9832b9d2014-07-24 17:04:30 +0100793 struct drm_i915_private *dev_priv = ring->dev->dev_private;
794 int ret;
795
796 if (!intel_ring_initialized(ring))
797 return;
798
799 ret = intel_ring_idle(ring);
800 if (ret && !i915_reset_in_progress(&to_i915(ring->dev)->gpu_error))
801 DRM_ERROR("failed to quiesce %s whilst cleaning up: %d\n",
802 ring->name, ret);
803
804 /* TODO: Is this correct with Execlists enabled? */
805 I915_WRITE_MODE(ring, _MASKED_BIT_ENABLE(STOP_RING));
806 if (wait_for_atomic((I915_READ_MODE(ring) & MODE_IDLE) != 0, 1000)) {
807 DRM_ERROR("%s :timed out trying to stop ring\n", ring->name);
808 return;
809 }
810 I915_WRITE_MODE(ring, _MASKED_BIT_DISABLE(STOP_RING));
Oscar Mateo454afeb2014-07-24 17:04:22 +0100811}
812
Oscar Mateo48e29f52014-07-24 17:04:29 +0100813int logical_ring_flush_all_caches(struct intel_ringbuffer *ringbuf)
814{
815 struct intel_engine_cs *ring = ringbuf->ring;
816 int ret;
817
818 if (!ring->gpu_caches_dirty)
819 return 0;
820
821 ret = ring->emit_flush(ringbuf, 0, I915_GEM_GPU_DOMAINS);
822 if (ret)
823 return ret;
824
825 ring->gpu_caches_dirty = false;
826 return 0;
827}
828
Oscar Mateo73e4d072014-07-24 17:04:48 +0100829/**
830 * intel_logical_ring_advance_and_submit() - advance the tail and submit the workload
831 * @ringbuf: Logical Ringbuffer to advance.
832 *
833 * The tail is updated in our logical ringbuffer struct, not in the actual context. What
834 * really happens during submission is that the context and current tail will be placed
835 * on a queue waiting for the ELSP to be ready to accept a new context submission. At that
836 * point, the tail *inside* the context is updated and the ELSP written to.
837 */
Nick Hoath2d129552015-01-15 13:10:36 +0000838void intel_logical_ring_advance_and_submit(struct intel_ringbuffer *ringbuf,
839 struct drm_i915_gem_request *request)
Oscar Mateo82e104c2014-07-24 17:04:26 +0100840{
Ben Widawsky84b790f2014-07-24 17:04:36 +0100841 struct intel_engine_cs *ring = ringbuf->ring;
842 struct intel_context *ctx = ringbuf->FIXME_lrc_ctx;
843
Oscar Mateo82e104c2014-07-24 17:04:26 +0100844 intel_logical_ring_advance(ringbuf);
845
Ben Widawsky84b790f2014-07-24 17:04:36 +0100846 if (intel_ring_stopped(ring))
Oscar Mateo82e104c2014-07-24 17:04:26 +0100847 return;
848
Nick Hoath2d129552015-01-15 13:10:36 +0000849 execlists_context_queue(ring, ctx, ringbuf->tail, request);
Oscar Mateo82e104c2014-07-24 17:04:26 +0100850}
851
Oscar Mateodcb4c122014-11-13 10:28:10 +0000852static int intel_lr_context_pin(struct intel_engine_cs *ring,
853 struct intel_context *ctx)
854{
855 struct drm_i915_gem_object *ctx_obj = ctx->engine[ring->id].state;
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000856 struct intel_ringbuffer *ringbuf = ctx->engine[ring->id].ringbuf;
Oscar Mateodcb4c122014-11-13 10:28:10 +0000857 int ret = 0;
858
859 WARN_ON(!mutex_is_locked(&ring->dev->struct_mutex));
860 if (ctx->engine[ring->id].unpin_count++ == 0) {
861 ret = i915_gem_obj_ggtt_pin(ctx_obj,
862 GEN8_LR_CONTEXT_ALIGN, 0);
863 if (ret)
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000864 goto reset_unpin_count;
865
866 ret = intel_pin_and_map_ringbuffer_obj(ring->dev, ringbuf);
867 if (ret)
868 goto unpin_ctx_obj;
Oscar Mateodcb4c122014-11-13 10:28:10 +0000869 }
870
871 return ret;
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000872
873unpin_ctx_obj:
874 i915_gem_object_ggtt_unpin(ctx_obj);
875reset_unpin_count:
876 ctx->engine[ring->id].unpin_count = 0;
877
878 return ret;
Oscar Mateodcb4c122014-11-13 10:28:10 +0000879}
880
881void intel_lr_context_unpin(struct intel_engine_cs *ring,
882 struct intel_context *ctx)
883{
884 struct drm_i915_gem_object *ctx_obj = ctx->engine[ring->id].state;
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000885 struct intel_ringbuffer *ringbuf = ctx->engine[ring->id].ringbuf;
Oscar Mateodcb4c122014-11-13 10:28:10 +0000886
887 if (ctx_obj) {
888 WARN_ON(!mutex_is_locked(&ring->dev->struct_mutex));
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000889 if (--ctx->engine[ring->id].unpin_count == 0) {
890 intel_unpin_ringbuffer_obj(ringbuf);
Oscar Mateodcb4c122014-11-13 10:28:10 +0000891 i915_gem_object_ggtt_unpin(ctx_obj);
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000892 }
Oscar Mateodcb4c122014-11-13 10:28:10 +0000893 }
894}
895
John Harrison6259cea2014-11-24 18:49:29 +0000896static int logical_ring_alloc_request(struct intel_engine_cs *ring,
897 struct intel_context *ctx)
Oscar Mateo82e104c2014-07-24 17:04:26 +0100898{
John Harrison9eba5d42014-11-24 18:49:23 +0000899 struct drm_i915_gem_request *request;
John Harrison67e29372014-12-05 13:49:35 +0000900 struct drm_i915_private *dev_private = ring->dev->dev_private;
Oscar Mateodcb4c122014-11-13 10:28:10 +0000901 int ret;
902
John Harrison6259cea2014-11-24 18:49:29 +0000903 if (ring->outstanding_lazy_request)
Oscar Mateo82e104c2014-07-24 17:04:26 +0100904 return 0;
905
John Harrisonaaeb1ba2014-12-05 13:49:34 +0000906 request = kzalloc(sizeof(*request), GFP_KERNEL);
John Harrison9eba5d42014-11-24 18:49:23 +0000907 if (request == NULL)
908 return -ENOMEM;
Oscar Mateo82e104c2014-07-24 17:04:26 +0100909
John Harrison9eba5d42014-11-24 18:49:23 +0000910 if (ctx != ring->default_context) {
911 ret = intel_lr_context_pin(ring, ctx);
912 if (ret) {
913 kfree(request);
914 return ret;
Oscar Mateodcb4c122014-11-13 10:28:10 +0000915 }
Oscar Mateo82e104c2014-07-24 17:04:26 +0100916 }
917
John Harrisonabfe2622014-11-24 18:49:24 +0000918 kref_init(&request->ref);
John Harrisonff79e852014-11-24 18:49:41 +0000919 request->ring = ring;
John Harrison67e29372014-12-05 13:49:35 +0000920 request->uniq = dev_private->request_uniq++;
John Harrisonabfe2622014-11-24 18:49:24 +0000921
John Harrison6259cea2014-11-24 18:49:29 +0000922 ret = i915_gem_get_seqno(ring->dev, &request->seqno);
John Harrison9eba5d42014-11-24 18:49:23 +0000923 if (ret) {
924 intel_lr_context_unpin(ring, ctx);
925 kfree(request);
926 return ret;
927 }
928
929 /* Hold a reference to the context this request belongs to
930 * (we will need it when the time comes to emit/retire the
931 * request).
932 */
933 request->ctx = ctx;
934 i915_gem_context_reference(request->ctx);
935
John Harrison6259cea2014-11-24 18:49:29 +0000936 ring->outstanding_lazy_request = request;
John Harrison9eba5d42014-11-24 18:49:23 +0000937 return 0;
Oscar Mateo82e104c2014-07-24 17:04:26 +0100938}
939
940static int logical_ring_wait_request(struct intel_ringbuffer *ringbuf,
941 int bytes)
942{
943 struct intel_engine_cs *ring = ringbuf->ring;
944 struct drm_i915_gem_request *request;
Oscar Mateo82e104c2014-07-24 17:04:26 +0100945 int ret;
946
Dave Gordonebd0fd42014-11-27 11:22:49 +0000947 if (intel_ring_space(ringbuf) >= bytes)
948 return 0;
Oscar Mateo82e104c2014-07-24 17:04:26 +0100949
950 list_for_each_entry(request, &ring->request_list, list) {
Dave Gordon57e21512014-11-18 20:07:20 +0000951 /*
952 * The request queue is per-engine, so can contain requests
953 * from multiple ringbuffers. Here, we must ignore any that
954 * aren't from the ringbuffer we're considering.
955 */
956 struct intel_context *ctx = request->ctx;
957 if (ctx->engine[ring->id].ringbuf != ringbuf)
958 continue;
959
960 /* Would completion of this request free enough space? */
Oscar Mateo82e104c2014-07-24 17:04:26 +0100961 if (__intel_ring_space(request->tail, ringbuf->tail,
962 ringbuf->size) >= bytes) {
Oscar Mateo82e104c2014-07-24 17:04:26 +0100963 break;
964 }
965 }
966
Daniel Vettera4b3a572014-11-26 14:17:05 +0100967 if (&request->list == &ring->request_list)
Oscar Mateo82e104c2014-07-24 17:04:26 +0100968 return -ENOSPC;
969
Daniel Vettera4b3a572014-11-26 14:17:05 +0100970 ret = i915_wait_request(request);
Oscar Mateo82e104c2014-07-24 17:04:26 +0100971 if (ret)
972 return ret;
973
Oscar Mateo82e104c2014-07-24 17:04:26 +0100974 i915_gem_retire_requests_ring(ring);
Oscar Mateo82e104c2014-07-24 17:04:26 +0100975
Dave Gordonebd0fd42014-11-27 11:22:49 +0000976 return intel_ring_space(ringbuf) >= bytes ? 0 : -ENOSPC;
Oscar Mateo82e104c2014-07-24 17:04:26 +0100977}
978
979static int logical_ring_wait_for_space(struct intel_ringbuffer *ringbuf,
980 int bytes)
981{
982 struct intel_engine_cs *ring = ringbuf->ring;
983 struct drm_device *dev = ring->dev;
984 struct drm_i915_private *dev_priv = dev->dev_private;
985 unsigned long end;
986 int ret;
987
988 ret = logical_ring_wait_request(ringbuf, bytes);
989 if (ret != -ENOSPC)
990 return ret;
991
992 /* Force the context submission in case we have been skipping it */
Nick Hoath2d129552015-01-15 13:10:36 +0000993 intel_logical_ring_advance_and_submit(ringbuf, NULL);
Oscar Mateo82e104c2014-07-24 17:04:26 +0100994
995 /* With GEM the hangcheck timer should kick us out of the loop,
996 * leaving it early runs the risk of corrupting GEM state (due
997 * to running on almost untested codepaths). But on resume
998 * timers don't work yet, so prevent a complete hang in that
999 * case by choosing an insanely large timeout. */
1000 end = jiffies + 60 * HZ;
1001
Dave Gordonebd0fd42014-11-27 11:22:49 +00001002 ret = 0;
Oscar Mateo82e104c2014-07-24 17:04:26 +01001003 do {
Dave Gordonebd0fd42014-11-27 11:22:49 +00001004 if (intel_ring_space(ringbuf) >= bytes)
Oscar Mateo82e104c2014-07-24 17:04:26 +01001005 break;
Oscar Mateo82e104c2014-07-24 17:04:26 +01001006
1007 msleep(1);
1008
1009 if (dev_priv->mm.interruptible && signal_pending(current)) {
1010 ret = -ERESTARTSYS;
1011 break;
1012 }
1013
1014 ret = i915_gem_check_wedge(&dev_priv->gpu_error,
1015 dev_priv->mm.interruptible);
1016 if (ret)
1017 break;
1018
1019 if (time_after(jiffies, end)) {
1020 ret = -EBUSY;
1021 break;
1022 }
1023 } while (1);
1024
1025 return ret;
1026}
1027
1028static int logical_ring_wrap_buffer(struct intel_ringbuffer *ringbuf)
1029{
1030 uint32_t __iomem *virt;
1031 int rem = ringbuf->size - ringbuf->tail;
1032
1033 if (ringbuf->space < rem) {
1034 int ret = logical_ring_wait_for_space(ringbuf, rem);
1035
1036 if (ret)
1037 return ret;
1038 }
1039
1040 virt = ringbuf->virtual_start + ringbuf->tail;
1041 rem /= 4;
1042 while (rem--)
1043 iowrite32(MI_NOOP, virt++);
1044
1045 ringbuf->tail = 0;
Dave Gordonebd0fd42014-11-27 11:22:49 +00001046 intel_ring_update_space(ringbuf);
Oscar Mateo82e104c2014-07-24 17:04:26 +01001047
1048 return 0;
1049}
1050
1051static int logical_ring_prepare(struct intel_ringbuffer *ringbuf, int bytes)
1052{
1053 int ret;
1054
1055 if (unlikely(ringbuf->tail + bytes > ringbuf->effective_size)) {
1056 ret = logical_ring_wrap_buffer(ringbuf);
1057 if (unlikely(ret))
1058 return ret;
1059 }
1060
1061 if (unlikely(ringbuf->space < bytes)) {
1062 ret = logical_ring_wait_for_space(ringbuf, bytes);
1063 if (unlikely(ret))
1064 return ret;
1065 }
1066
1067 return 0;
1068}
1069
Oscar Mateo73e4d072014-07-24 17:04:48 +01001070/**
1071 * intel_logical_ring_begin() - prepare the logical ringbuffer to accept some commands
1072 *
1073 * @ringbuf: Logical ringbuffer.
1074 * @num_dwords: number of DWORDs that we plan to write to the ringbuffer.
1075 *
1076 * The ringbuffer might not be ready to accept the commands right away (maybe it needs to
1077 * be wrapped, or wait a bit for the tail to be updated). This function takes care of that
1078 * and also preallocates a request (every workload submission is still mediated through
1079 * requests, same as it did with legacy ringbuffer submission).
1080 *
1081 * Return: non-zero if the ringbuffer is not ready to be written to.
1082 */
Oscar Mateo82e104c2014-07-24 17:04:26 +01001083int intel_logical_ring_begin(struct intel_ringbuffer *ringbuf, int num_dwords)
1084{
1085 struct intel_engine_cs *ring = ringbuf->ring;
1086 struct drm_device *dev = ring->dev;
1087 struct drm_i915_private *dev_priv = dev->dev_private;
1088 int ret;
1089
1090 ret = i915_gem_check_wedge(&dev_priv->gpu_error,
1091 dev_priv->mm.interruptible);
1092 if (ret)
1093 return ret;
1094
1095 ret = logical_ring_prepare(ringbuf, num_dwords * sizeof(uint32_t));
1096 if (ret)
1097 return ret;
1098
1099 /* Preallocate the olr before touching the ring */
John Harrison6259cea2014-11-24 18:49:29 +00001100 ret = logical_ring_alloc_request(ring, ringbuf->FIXME_lrc_ctx);
Oscar Mateo82e104c2014-07-24 17:04:26 +01001101 if (ret)
1102 return ret;
1103
1104 ringbuf->space -= num_dwords * sizeof(uint32_t);
1105 return 0;
1106}
1107
Michel Thierry771b9a52014-11-11 16:47:33 +00001108static int intel_logical_ring_workarounds_emit(struct intel_engine_cs *ring,
1109 struct intel_context *ctx)
1110{
1111 int ret, i;
1112 struct intel_ringbuffer *ringbuf = ctx->engine[ring->id].ringbuf;
1113 struct drm_device *dev = ring->dev;
1114 struct drm_i915_private *dev_priv = dev->dev_private;
1115 struct i915_workarounds *w = &dev_priv->workarounds;
1116
Michel Thierrye6c1abb2014-11-26 14:21:02 +00001117 if (WARN_ON_ONCE(w->count == 0))
Michel Thierry771b9a52014-11-11 16:47:33 +00001118 return 0;
1119
1120 ring->gpu_caches_dirty = true;
1121 ret = logical_ring_flush_all_caches(ringbuf);
1122 if (ret)
1123 return ret;
1124
1125 ret = intel_logical_ring_begin(ringbuf, w->count * 2 + 2);
1126 if (ret)
1127 return ret;
1128
1129 intel_logical_ring_emit(ringbuf, MI_LOAD_REGISTER_IMM(w->count));
1130 for (i = 0; i < w->count; i++) {
1131 intel_logical_ring_emit(ringbuf, w->reg[i].addr);
1132 intel_logical_ring_emit(ringbuf, w->reg[i].value);
1133 }
1134 intel_logical_ring_emit(ringbuf, MI_NOOP);
1135
1136 intel_logical_ring_advance(ringbuf);
1137
1138 ring->gpu_caches_dirty = true;
1139 ret = logical_ring_flush_all_caches(ringbuf);
1140 if (ret)
1141 return ret;
1142
1143 return 0;
1144}
1145
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001146static int gen8_init_common_ring(struct intel_engine_cs *ring)
1147{
1148 struct drm_device *dev = ring->dev;
1149 struct drm_i915_private *dev_priv = dev->dev_private;
1150
Oscar Mateo73d477f2014-07-24 17:04:31 +01001151 I915_WRITE_IMR(ring, ~(ring->irq_enable_mask | ring->irq_keep_mask));
1152 I915_WRITE(RING_HWSTAM(ring->mmio_base), 0xffffffff);
1153
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001154 I915_WRITE(RING_MODE_GEN7(ring),
1155 _MASKED_BIT_DISABLE(GFX_REPLAY_MODE) |
1156 _MASKED_BIT_ENABLE(GFX_RUN_LIST_ENABLE));
1157 POSTING_READ(RING_MODE_GEN7(ring));
Thomas Danielc0a03a22015-01-09 11:09:37 +00001158 ring->next_context_status_buffer = 0;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001159 DRM_DEBUG_DRIVER("Execlists enabled for %s\n", ring->name);
1160
1161 memset(&ring->hangcheck, 0, sizeof(ring->hangcheck));
1162
1163 return 0;
1164}
1165
1166static int gen8_init_render_ring(struct intel_engine_cs *ring)
1167{
1168 struct drm_device *dev = ring->dev;
1169 struct drm_i915_private *dev_priv = dev->dev_private;
1170 int ret;
1171
1172 ret = gen8_init_common_ring(ring);
1173 if (ret)
1174 return ret;
1175
1176 /* We need to disable the AsyncFlip performance optimisations in order
1177 * to use MI_WAIT_FOR_EVENT within the CS. It should already be
1178 * programmed to '1' on all products.
1179 *
1180 * WaDisableAsyncFlipPerfMode:snb,ivb,hsw,vlv,bdw,chv
1181 */
1182 I915_WRITE(MI_MODE, _MASKED_BIT_ENABLE(ASYNC_FLIP_PERF_DISABLE));
1183
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001184 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_FORCE_ORDERING));
1185
Michel Thierry771b9a52014-11-11 16:47:33 +00001186 return init_workarounds_ring(ring);
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001187}
1188
Oscar Mateo15648582014-07-24 17:04:32 +01001189static int gen8_emit_bb_start(struct intel_ringbuffer *ringbuf,
1190 u64 offset, unsigned flags)
1191{
Oscar Mateo15648582014-07-24 17:04:32 +01001192 bool ppgtt = !(flags & I915_DISPATCH_SECURE);
1193 int ret;
1194
1195 ret = intel_logical_ring_begin(ringbuf, 4);
1196 if (ret)
1197 return ret;
1198
1199 /* FIXME(BDW): Address space and security selectors. */
1200 intel_logical_ring_emit(ringbuf, MI_BATCH_BUFFER_START_GEN8 | (ppgtt<<8));
1201 intel_logical_ring_emit(ringbuf, lower_32_bits(offset));
1202 intel_logical_ring_emit(ringbuf, upper_32_bits(offset));
1203 intel_logical_ring_emit(ringbuf, MI_NOOP);
1204 intel_logical_ring_advance(ringbuf);
1205
1206 return 0;
1207}
1208
Oscar Mateo73d477f2014-07-24 17:04:31 +01001209static bool gen8_logical_ring_get_irq(struct intel_engine_cs *ring)
1210{
1211 struct drm_device *dev = ring->dev;
1212 struct drm_i915_private *dev_priv = dev->dev_private;
1213 unsigned long flags;
1214
Daniel Vetter7cd512f2014-09-15 11:38:57 +02001215 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
Oscar Mateo73d477f2014-07-24 17:04:31 +01001216 return false;
1217
1218 spin_lock_irqsave(&dev_priv->irq_lock, flags);
1219 if (ring->irq_refcount++ == 0) {
1220 I915_WRITE_IMR(ring, ~(ring->irq_enable_mask | ring->irq_keep_mask));
1221 POSTING_READ(RING_IMR(ring->mmio_base));
1222 }
1223 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
1224
1225 return true;
1226}
1227
1228static void gen8_logical_ring_put_irq(struct intel_engine_cs *ring)
1229{
1230 struct drm_device *dev = ring->dev;
1231 struct drm_i915_private *dev_priv = dev->dev_private;
1232 unsigned long flags;
1233
1234 spin_lock_irqsave(&dev_priv->irq_lock, flags);
1235 if (--ring->irq_refcount == 0) {
1236 I915_WRITE_IMR(ring, ~ring->irq_keep_mask);
1237 POSTING_READ(RING_IMR(ring->mmio_base));
1238 }
1239 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
1240}
1241
Oscar Mateo47122742014-07-24 17:04:28 +01001242static int gen8_emit_flush(struct intel_ringbuffer *ringbuf,
1243 u32 invalidate_domains,
1244 u32 unused)
1245{
1246 struct intel_engine_cs *ring = ringbuf->ring;
1247 struct drm_device *dev = ring->dev;
1248 struct drm_i915_private *dev_priv = dev->dev_private;
1249 uint32_t cmd;
1250 int ret;
1251
1252 ret = intel_logical_ring_begin(ringbuf, 4);
1253 if (ret)
1254 return ret;
1255
1256 cmd = MI_FLUSH_DW + 1;
1257
1258 if (ring == &dev_priv->ring[VCS]) {
1259 if (invalidate_domains & I915_GEM_GPU_DOMAINS)
1260 cmd |= MI_INVALIDATE_TLB | MI_INVALIDATE_BSD |
1261 MI_FLUSH_DW_STORE_INDEX |
1262 MI_FLUSH_DW_OP_STOREDW;
1263 } else {
1264 if (invalidate_domains & I915_GEM_DOMAIN_RENDER)
1265 cmd |= MI_INVALIDATE_TLB | MI_FLUSH_DW_STORE_INDEX |
1266 MI_FLUSH_DW_OP_STOREDW;
1267 }
1268
1269 intel_logical_ring_emit(ringbuf, cmd);
1270 intel_logical_ring_emit(ringbuf,
1271 I915_GEM_HWS_SCRATCH_ADDR |
1272 MI_FLUSH_DW_USE_GTT);
1273 intel_logical_ring_emit(ringbuf, 0); /* upper addr */
1274 intel_logical_ring_emit(ringbuf, 0); /* value */
1275 intel_logical_ring_advance(ringbuf);
1276
1277 return 0;
1278}
1279
1280static int gen8_emit_flush_render(struct intel_ringbuffer *ringbuf,
1281 u32 invalidate_domains,
1282 u32 flush_domains)
1283{
1284 struct intel_engine_cs *ring = ringbuf->ring;
1285 u32 scratch_addr = ring->scratch.gtt_offset + 2 * CACHELINE_BYTES;
1286 u32 flags = 0;
1287 int ret;
1288
1289 flags |= PIPE_CONTROL_CS_STALL;
1290
1291 if (flush_domains) {
1292 flags |= PIPE_CONTROL_RENDER_TARGET_CACHE_FLUSH;
1293 flags |= PIPE_CONTROL_DEPTH_CACHE_FLUSH;
1294 }
1295
1296 if (invalidate_domains) {
1297 flags |= PIPE_CONTROL_TLB_INVALIDATE;
1298 flags |= PIPE_CONTROL_INSTRUCTION_CACHE_INVALIDATE;
1299 flags |= PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE;
1300 flags |= PIPE_CONTROL_VF_CACHE_INVALIDATE;
1301 flags |= PIPE_CONTROL_CONST_CACHE_INVALIDATE;
1302 flags |= PIPE_CONTROL_STATE_CACHE_INVALIDATE;
1303 flags |= PIPE_CONTROL_QW_WRITE;
1304 flags |= PIPE_CONTROL_GLOBAL_GTT_IVB;
1305 }
1306
1307 ret = intel_logical_ring_begin(ringbuf, 6);
1308 if (ret)
1309 return ret;
1310
1311 intel_logical_ring_emit(ringbuf, GFX_OP_PIPE_CONTROL(6));
1312 intel_logical_ring_emit(ringbuf, flags);
1313 intel_logical_ring_emit(ringbuf, scratch_addr);
1314 intel_logical_ring_emit(ringbuf, 0);
1315 intel_logical_ring_emit(ringbuf, 0);
1316 intel_logical_ring_emit(ringbuf, 0);
1317 intel_logical_ring_advance(ringbuf);
1318
1319 return 0;
1320}
1321
Oscar Mateoe94e37a2014-07-24 17:04:25 +01001322static u32 gen8_get_seqno(struct intel_engine_cs *ring, bool lazy_coherency)
1323{
1324 return intel_read_status_page(ring, I915_GEM_HWS_INDEX);
1325}
1326
1327static void gen8_set_seqno(struct intel_engine_cs *ring, u32 seqno)
1328{
1329 intel_write_status_page(ring, I915_GEM_HWS_INDEX, seqno);
1330}
1331
Nick Hoath2d129552015-01-15 13:10:36 +00001332static int gen8_emit_request(struct intel_ringbuffer *ringbuf,
1333 struct drm_i915_gem_request *request)
Oscar Mateo4da46e12014-07-24 17:04:27 +01001334{
1335 struct intel_engine_cs *ring = ringbuf->ring;
1336 u32 cmd;
1337 int ret;
1338
1339 ret = intel_logical_ring_begin(ringbuf, 6);
1340 if (ret)
1341 return ret;
1342
Ville Syrjälä8edfbb82014-11-14 18:16:56 +02001343 cmd = MI_STORE_DWORD_IMM_GEN4;
Oscar Mateo4da46e12014-07-24 17:04:27 +01001344 cmd |= MI_GLOBAL_GTT;
1345
1346 intel_logical_ring_emit(ringbuf, cmd);
1347 intel_logical_ring_emit(ringbuf,
1348 (ring->status_page.gfx_addr +
1349 (I915_GEM_HWS_INDEX << MI_STORE_DWORD_INDEX_SHIFT)));
1350 intel_logical_ring_emit(ringbuf, 0);
John Harrison6259cea2014-11-24 18:49:29 +00001351 intel_logical_ring_emit(ringbuf,
1352 i915_gem_request_get_seqno(ring->outstanding_lazy_request));
Oscar Mateo4da46e12014-07-24 17:04:27 +01001353 intel_logical_ring_emit(ringbuf, MI_USER_INTERRUPT);
1354 intel_logical_ring_emit(ringbuf, MI_NOOP);
Nick Hoath2d129552015-01-15 13:10:36 +00001355 intel_logical_ring_advance_and_submit(ringbuf, request);
Oscar Mateo4da46e12014-07-24 17:04:27 +01001356
1357 return 0;
1358}
1359
Thomas Daniele7778be2014-12-02 12:50:48 +00001360static int gen8_init_rcs_context(struct intel_engine_cs *ring,
1361 struct intel_context *ctx)
1362{
1363 int ret;
1364
1365 ret = intel_logical_ring_workarounds_emit(ring, ctx);
1366 if (ret)
1367 return ret;
1368
1369 return intel_lr_context_render_state_init(ring, ctx);
1370}
1371
Oscar Mateo73e4d072014-07-24 17:04:48 +01001372/**
1373 * intel_logical_ring_cleanup() - deallocate the Engine Command Streamer
1374 *
1375 * @ring: Engine Command Streamer.
1376 *
1377 */
Oscar Mateo454afeb2014-07-24 17:04:22 +01001378void intel_logical_ring_cleanup(struct intel_engine_cs *ring)
1379{
John Harrison6402c332014-10-31 12:00:26 +00001380 struct drm_i915_private *dev_priv;
Oscar Mateo9832b9d2014-07-24 17:04:30 +01001381
Oscar Mateo48d82382014-07-24 17:04:23 +01001382 if (!intel_ring_initialized(ring))
1383 return;
1384
John Harrison6402c332014-10-31 12:00:26 +00001385 dev_priv = ring->dev->dev_private;
1386
Oscar Mateo9832b9d2014-07-24 17:04:30 +01001387 intel_logical_ring_stop(ring);
1388 WARN_ON((I915_READ_MODE(ring) & MODE_IDLE) == 0);
John Harrison6259cea2014-11-24 18:49:29 +00001389 i915_gem_request_assign(&ring->outstanding_lazy_request, NULL);
Oscar Mateo48d82382014-07-24 17:04:23 +01001390
1391 if (ring->cleanup)
1392 ring->cleanup(ring);
1393
1394 i915_cmd_parser_fini_ring(ring);
1395
1396 if (ring->status_page.obj) {
1397 kunmap(sg_page(ring->status_page.obj->pages->sgl));
1398 ring->status_page.obj = NULL;
1399 }
Oscar Mateo454afeb2014-07-24 17:04:22 +01001400}
1401
1402static int logical_ring_init(struct drm_device *dev, struct intel_engine_cs *ring)
1403{
Oscar Mateo48d82382014-07-24 17:04:23 +01001404 int ret;
Oscar Mateo48d82382014-07-24 17:04:23 +01001405
1406 /* Intentionally left blank. */
1407 ring->buffer = NULL;
1408
1409 ring->dev = dev;
1410 INIT_LIST_HEAD(&ring->active_list);
1411 INIT_LIST_HEAD(&ring->request_list);
1412 init_waitqueue_head(&ring->irq_queue);
1413
Michel Thierryacdd8842014-07-24 17:04:38 +01001414 INIT_LIST_HEAD(&ring->execlist_queue);
Thomas Danielc86ee3a92014-11-13 10:27:05 +00001415 INIT_LIST_HEAD(&ring->execlist_retired_req_list);
Michel Thierryacdd8842014-07-24 17:04:38 +01001416 spin_lock_init(&ring->execlist_lock);
1417
Oscar Mateo48d82382014-07-24 17:04:23 +01001418 ret = i915_cmd_parser_init_ring(ring);
1419 if (ret)
1420 return ret;
1421
Oscar Mateo564ddb22014-08-21 11:40:54 +01001422 ret = intel_lr_context_deferred_create(ring->default_context, ring);
1423
1424 return ret;
Oscar Mateo454afeb2014-07-24 17:04:22 +01001425}
1426
1427static int logical_render_ring_init(struct drm_device *dev)
1428{
1429 struct drm_i915_private *dev_priv = dev->dev_private;
1430 struct intel_engine_cs *ring = &dev_priv->ring[RCS];
Daniel Vetter99be1df2014-11-20 00:33:06 +01001431 int ret;
Oscar Mateo454afeb2014-07-24 17:04:22 +01001432
1433 ring->name = "render ring";
1434 ring->id = RCS;
1435 ring->mmio_base = RENDER_RING_BASE;
1436 ring->irq_enable_mask =
1437 GT_RENDER_USER_INTERRUPT << GEN8_RCS_IRQ_SHIFT;
Oscar Mateo73d477f2014-07-24 17:04:31 +01001438 ring->irq_keep_mask =
1439 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_RCS_IRQ_SHIFT;
1440 if (HAS_L3_DPF(dev))
1441 ring->irq_keep_mask |= GT_RENDER_L3_PARITY_ERROR_INTERRUPT;
Oscar Mateo454afeb2014-07-24 17:04:22 +01001442
Daniel Vetterecfe00d2014-11-20 00:33:04 +01001443 ring->init_hw = gen8_init_render_ring;
Thomas Daniele7778be2014-12-02 12:50:48 +00001444 ring->init_context = gen8_init_rcs_context;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001445 ring->cleanup = intel_fini_pipe_control;
Oscar Mateoe94e37a2014-07-24 17:04:25 +01001446 ring->get_seqno = gen8_get_seqno;
1447 ring->set_seqno = gen8_set_seqno;
Oscar Mateo4da46e12014-07-24 17:04:27 +01001448 ring->emit_request = gen8_emit_request;
Oscar Mateo47122742014-07-24 17:04:28 +01001449 ring->emit_flush = gen8_emit_flush_render;
Oscar Mateo73d477f2014-07-24 17:04:31 +01001450 ring->irq_get = gen8_logical_ring_get_irq;
1451 ring->irq_put = gen8_logical_ring_put_irq;
Oscar Mateo15648582014-07-24 17:04:32 +01001452 ring->emit_bb_start = gen8_emit_bb_start;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001453
Daniel Vetter99be1df2014-11-20 00:33:06 +01001454 ring->dev = dev;
1455 ret = logical_ring_init(dev, ring);
1456 if (ret)
1457 return ret;
1458
1459 return intel_init_pipe_control(ring);
Oscar Mateo454afeb2014-07-24 17:04:22 +01001460}
1461
1462static int logical_bsd_ring_init(struct drm_device *dev)
1463{
1464 struct drm_i915_private *dev_priv = dev->dev_private;
1465 struct intel_engine_cs *ring = &dev_priv->ring[VCS];
1466
1467 ring->name = "bsd ring";
1468 ring->id = VCS;
1469 ring->mmio_base = GEN6_BSD_RING_BASE;
1470 ring->irq_enable_mask =
1471 GT_RENDER_USER_INTERRUPT << GEN8_VCS1_IRQ_SHIFT;
Oscar Mateo73d477f2014-07-24 17:04:31 +01001472 ring->irq_keep_mask =
1473 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VCS1_IRQ_SHIFT;
Oscar Mateo454afeb2014-07-24 17:04:22 +01001474
Daniel Vetterecfe00d2014-11-20 00:33:04 +01001475 ring->init_hw = gen8_init_common_ring;
Oscar Mateoe94e37a2014-07-24 17:04:25 +01001476 ring->get_seqno = gen8_get_seqno;
1477 ring->set_seqno = gen8_set_seqno;
Oscar Mateo4da46e12014-07-24 17:04:27 +01001478 ring->emit_request = gen8_emit_request;
Oscar Mateo47122742014-07-24 17:04:28 +01001479 ring->emit_flush = gen8_emit_flush;
Oscar Mateo73d477f2014-07-24 17:04:31 +01001480 ring->irq_get = gen8_logical_ring_get_irq;
1481 ring->irq_put = gen8_logical_ring_put_irq;
Oscar Mateo15648582014-07-24 17:04:32 +01001482 ring->emit_bb_start = gen8_emit_bb_start;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001483
Oscar Mateo454afeb2014-07-24 17:04:22 +01001484 return logical_ring_init(dev, ring);
1485}
1486
1487static int logical_bsd2_ring_init(struct drm_device *dev)
1488{
1489 struct drm_i915_private *dev_priv = dev->dev_private;
1490 struct intel_engine_cs *ring = &dev_priv->ring[VCS2];
1491
1492 ring->name = "bds2 ring";
1493 ring->id = VCS2;
1494 ring->mmio_base = GEN8_BSD2_RING_BASE;
1495 ring->irq_enable_mask =
1496 GT_RENDER_USER_INTERRUPT << GEN8_VCS2_IRQ_SHIFT;
Oscar Mateo73d477f2014-07-24 17:04:31 +01001497 ring->irq_keep_mask =
1498 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VCS2_IRQ_SHIFT;
Oscar Mateo454afeb2014-07-24 17:04:22 +01001499
Daniel Vetterecfe00d2014-11-20 00:33:04 +01001500 ring->init_hw = gen8_init_common_ring;
Oscar Mateoe94e37a2014-07-24 17:04:25 +01001501 ring->get_seqno = gen8_get_seqno;
1502 ring->set_seqno = gen8_set_seqno;
Oscar Mateo4da46e12014-07-24 17:04:27 +01001503 ring->emit_request = gen8_emit_request;
Oscar Mateo47122742014-07-24 17:04:28 +01001504 ring->emit_flush = gen8_emit_flush;
Oscar Mateo73d477f2014-07-24 17:04:31 +01001505 ring->irq_get = gen8_logical_ring_get_irq;
1506 ring->irq_put = gen8_logical_ring_put_irq;
Oscar Mateo15648582014-07-24 17:04:32 +01001507 ring->emit_bb_start = gen8_emit_bb_start;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001508
Oscar Mateo454afeb2014-07-24 17:04:22 +01001509 return logical_ring_init(dev, ring);
1510}
1511
1512static int logical_blt_ring_init(struct drm_device *dev)
1513{
1514 struct drm_i915_private *dev_priv = dev->dev_private;
1515 struct intel_engine_cs *ring = &dev_priv->ring[BCS];
1516
1517 ring->name = "blitter ring";
1518 ring->id = BCS;
1519 ring->mmio_base = BLT_RING_BASE;
1520 ring->irq_enable_mask =
1521 GT_RENDER_USER_INTERRUPT << GEN8_BCS_IRQ_SHIFT;
Oscar Mateo73d477f2014-07-24 17:04:31 +01001522 ring->irq_keep_mask =
1523 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_BCS_IRQ_SHIFT;
Oscar Mateo454afeb2014-07-24 17:04:22 +01001524
Daniel Vetterecfe00d2014-11-20 00:33:04 +01001525 ring->init_hw = gen8_init_common_ring;
Oscar Mateoe94e37a2014-07-24 17:04:25 +01001526 ring->get_seqno = gen8_get_seqno;
1527 ring->set_seqno = gen8_set_seqno;
Oscar Mateo4da46e12014-07-24 17:04:27 +01001528 ring->emit_request = gen8_emit_request;
Oscar Mateo47122742014-07-24 17:04:28 +01001529 ring->emit_flush = gen8_emit_flush;
Oscar Mateo73d477f2014-07-24 17:04:31 +01001530 ring->irq_get = gen8_logical_ring_get_irq;
1531 ring->irq_put = gen8_logical_ring_put_irq;
Oscar Mateo15648582014-07-24 17:04:32 +01001532 ring->emit_bb_start = gen8_emit_bb_start;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001533
Oscar Mateo454afeb2014-07-24 17:04:22 +01001534 return logical_ring_init(dev, ring);
1535}
1536
1537static int logical_vebox_ring_init(struct drm_device *dev)
1538{
1539 struct drm_i915_private *dev_priv = dev->dev_private;
1540 struct intel_engine_cs *ring = &dev_priv->ring[VECS];
1541
1542 ring->name = "video enhancement ring";
1543 ring->id = VECS;
1544 ring->mmio_base = VEBOX_RING_BASE;
1545 ring->irq_enable_mask =
1546 GT_RENDER_USER_INTERRUPT << GEN8_VECS_IRQ_SHIFT;
Oscar Mateo73d477f2014-07-24 17:04:31 +01001547 ring->irq_keep_mask =
1548 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VECS_IRQ_SHIFT;
Oscar Mateo454afeb2014-07-24 17:04:22 +01001549
Daniel Vetterecfe00d2014-11-20 00:33:04 +01001550 ring->init_hw = gen8_init_common_ring;
Oscar Mateoe94e37a2014-07-24 17:04:25 +01001551 ring->get_seqno = gen8_get_seqno;
1552 ring->set_seqno = gen8_set_seqno;
Oscar Mateo4da46e12014-07-24 17:04:27 +01001553 ring->emit_request = gen8_emit_request;
Oscar Mateo47122742014-07-24 17:04:28 +01001554 ring->emit_flush = gen8_emit_flush;
Oscar Mateo73d477f2014-07-24 17:04:31 +01001555 ring->irq_get = gen8_logical_ring_get_irq;
1556 ring->irq_put = gen8_logical_ring_put_irq;
Oscar Mateo15648582014-07-24 17:04:32 +01001557 ring->emit_bb_start = gen8_emit_bb_start;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001558
Oscar Mateo454afeb2014-07-24 17:04:22 +01001559 return logical_ring_init(dev, ring);
1560}
1561
Oscar Mateo73e4d072014-07-24 17:04:48 +01001562/**
1563 * intel_logical_rings_init() - allocate, populate and init the Engine Command Streamers
1564 * @dev: DRM device.
1565 *
1566 * This function inits the engines for an Execlists submission style (the equivalent in the
1567 * legacy ringbuffer submission world would be i915_gem_init_rings). It does it only for
1568 * those engines that are present in the hardware.
1569 *
1570 * Return: non-zero if the initialization failed.
1571 */
Oscar Mateo454afeb2014-07-24 17:04:22 +01001572int intel_logical_rings_init(struct drm_device *dev)
1573{
1574 struct drm_i915_private *dev_priv = dev->dev_private;
1575 int ret;
1576
1577 ret = logical_render_ring_init(dev);
1578 if (ret)
1579 return ret;
1580
1581 if (HAS_BSD(dev)) {
1582 ret = logical_bsd_ring_init(dev);
1583 if (ret)
1584 goto cleanup_render_ring;
1585 }
1586
1587 if (HAS_BLT(dev)) {
1588 ret = logical_blt_ring_init(dev);
1589 if (ret)
1590 goto cleanup_bsd_ring;
1591 }
1592
1593 if (HAS_VEBOX(dev)) {
1594 ret = logical_vebox_ring_init(dev);
1595 if (ret)
1596 goto cleanup_blt_ring;
1597 }
1598
1599 if (HAS_BSD2(dev)) {
1600 ret = logical_bsd2_ring_init(dev);
1601 if (ret)
1602 goto cleanup_vebox_ring;
1603 }
1604
1605 ret = i915_gem_set_seqno(dev, ((u32)~0 - 0x1000));
1606 if (ret)
1607 goto cleanup_bsd2_ring;
1608
1609 return 0;
1610
1611cleanup_bsd2_ring:
1612 intel_logical_ring_cleanup(&dev_priv->ring[VCS2]);
1613cleanup_vebox_ring:
1614 intel_logical_ring_cleanup(&dev_priv->ring[VECS]);
1615cleanup_blt_ring:
1616 intel_logical_ring_cleanup(&dev_priv->ring[BCS]);
1617cleanup_bsd_ring:
1618 intel_logical_ring_cleanup(&dev_priv->ring[VCS]);
1619cleanup_render_ring:
1620 intel_logical_ring_cleanup(&dev_priv->ring[RCS]);
1621
1622 return ret;
1623}
1624
Oscar Mateo564ddb22014-08-21 11:40:54 +01001625int intel_lr_context_render_state_init(struct intel_engine_cs *ring,
1626 struct intel_context *ctx)
1627{
1628 struct intel_ringbuffer *ringbuf = ctx->engine[ring->id].ringbuf;
1629 struct render_state so;
1630 struct drm_i915_file_private *file_priv = ctx->file_priv;
1631 struct drm_file *file = file_priv ? file_priv->file : NULL;
1632 int ret;
1633
1634 ret = i915_gem_render_state_prepare(ring, &so);
1635 if (ret)
1636 return ret;
1637
1638 if (so.rodata == NULL)
1639 return 0;
1640
1641 ret = ring->emit_bb_start(ringbuf,
1642 so.ggtt_offset,
1643 I915_DISPATCH_SECURE);
1644 if (ret)
1645 goto out;
1646
1647 i915_vma_move_to_active(i915_gem_obj_to_ggtt(so.obj), ring);
1648
John Harrison9400ae52014-11-24 18:49:36 +00001649 ret = __i915_add_request(ring, file, so.obj);
Oscar Mateo564ddb22014-08-21 11:40:54 +01001650 /* intel_logical_ring_add_request moves object to inactive if it
1651 * fails */
1652out:
1653 i915_gem_render_state_fini(&so);
1654 return ret;
1655}
1656
Oscar Mateo8670d6f2014-07-24 17:04:17 +01001657static int
1658populate_lr_context(struct intel_context *ctx, struct drm_i915_gem_object *ctx_obj,
1659 struct intel_engine_cs *ring, struct intel_ringbuffer *ringbuf)
1660{
Thomas Daniel2d965532014-08-19 10:13:36 +01001661 struct drm_device *dev = ring->dev;
1662 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterae6c4802014-08-06 15:04:53 +02001663 struct i915_hw_ppgtt *ppgtt = ctx->ppgtt;
Oscar Mateo8670d6f2014-07-24 17:04:17 +01001664 struct page *page;
1665 uint32_t *reg_state;
1666 int ret;
1667
Thomas Daniel2d965532014-08-19 10:13:36 +01001668 if (!ppgtt)
1669 ppgtt = dev_priv->mm.aliasing_ppgtt;
1670
Oscar Mateo8670d6f2014-07-24 17:04:17 +01001671 ret = i915_gem_object_set_to_cpu_domain(ctx_obj, true);
1672 if (ret) {
1673 DRM_DEBUG_DRIVER("Could not set to CPU domain\n");
1674 return ret;
1675 }
1676
1677 ret = i915_gem_object_get_pages(ctx_obj);
1678 if (ret) {
1679 DRM_DEBUG_DRIVER("Could not get object pages\n");
1680 return ret;
1681 }
1682
1683 i915_gem_object_pin_pages(ctx_obj);
1684
1685 /* The second page of the context object contains some fields which must
1686 * be set up prior to the first execution. */
1687 page = i915_gem_object_get_page(ctx_obj, 1);
1688 reg_state = kmap_atomic(page);
1689
1690 /* A context is actually a big batch buffer with several MI_LOAD_REGISTER_IMM
1691 * commands followed by (reg, value) pairs. The values we are setting here are
1692 * only for the first context restore: on a subsequent save, the GPU will
1693 * recreate this batchbuffer with new values (including all the missing
1694 * MI_LOAD_REGISTER_IMM commands that we are not initializing here). */
1695 if (ring->id == RCS)
1696 reg_state[CTX_LRI_HEADER_0] = MI_LOAD_REGISTER_IMM(14);
1697 else
1698 reg_state[CTX_LRI_HEADER_0] = MI_LOAD_REGISTER_IMM(11);
1699 reg_state[CTX_LRI_HEADER_0] |= MI_LRI_FORCE_POSTED;
1700 reg_state[CTX_CONTEXT_CONTROL] = RING_CONTEXT_CONTROL(ring);
1701 reg_state[CTX_CONTEXT_CONTROL+1] =
1702 _MASKED_BIT_ENABLE((1<<3) | MI_RESTORE_INHIBIT);
1703 reg_state[CTX_RING_HEAD] = RING_HEAD(ring->mmio_base);
1704 reg_state[CTX_RING_HEAD+1] = 0;
1705 reg_state[CTX_RING_TAIL] = RING_TAIL(ring->mmio_base);
1706 reg_state[CTX_RING_TAIL+1] = 0;
1707 reg_state[CTX_RING_BUFFER_START] = RING_START(ring->mmio_base);
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001708 /* Ring buffer start address is not known until the buffer is pinned.
1709 * It is written to the context image in execlists_update_context()
1710 */
Oscar Mateo8670d6f2014-07-24 17:04:17 +01001711 reg_state[CTX_RING_BUFFER_CONTROL] = RING_CTL(ring->mmio_base);
1712 reg_state[CTX_RING_BUFFER_CONTROL+1] =
1713 ((ringbuf->size - PAGE_SIZE) & RING_NR_PAGES) | RING_VALID;
1714 reg_state[CTX_BB_HEAD_U] = ring->mmio_base + 0x168;
1715 reg_state[CTX_BB_HEAD_U+1] = 0;
1716 reg_state[CTX_BB_HEAD_L] = ring->mmio_base + 0x140;
1717 reg_state[CTX_BB_HEAD_L+1] = 0;
1718 reg_state[CTX_BB_STATE] = ring->mmio_base + 0x110;
1719 reg_state[CTX_BB_STATE+1] = (1<<5);
1720 reg_state[CTX_SECOND_BB_HEAD_U] = ring->mmio_base + 0x11c;
1721 reg_state[CTX_SECOND_BB_HEAD_U+1] = 0;
1722 reg_state[CTX_SECOND_BB_HEAD_L] = ring->mmio_base + 0x114;
1723 reg_state[CTX_SECOND_BB_HEAD_L+1] = 0;
1724 reg_state[CTX_SECOND_BB_STATE] = ring->mmio_base + 0x118;
1725 reg_state[CTX_SECOND_BB_STATE+1] = 0;
1726 if (ring->id == RCS) {
1727 /* TODO: according to BSpec, the register state context
1728 * for CHV does not have these. OTOH, these registers do
1729 * exist in CHV. I'm waiting for a clarification */
1730 reg_state[CTX_BB_PER_CTX_PTR] = ring->mmio_base + 0x1c0;
1731 reg_state[CTX_BB_PER_CTX_PTR+1] = 0;
1732 reg_state[CTX_RCS_INDIRECT_CTX] = ring->mmio_base + 0x1c4;
1733 reg_state[CTX_RCS_INDIRECT_CTX+1] = 0;
1734 reg_state[CTX_RCS_INDIRECT_CTX_OFFSET] = ring->mmio_base + 0x1c8;
1735 reg_state[CTX_RCS_INDIRECT_CTX_OFFSET+1] = 0;
1736 }
1737 reg_state[CTX_LRI_HEADER_1] = MI_LOAD_REGISTER_IMM(9);
1738 reg_state[CTX_LRI_HEADER_1] |= MI_LRI_FORCE_POSTED;
1739 reg_state[CTX_CTX_TIMESTAMP] = ring->mmio_base + 0x3a8;
1740 reg_state[CTX_CTX_TIMESTAMP+1] = 0;
1741 reg_state[CTX_PDP3_UDW] = GEN8_RING_PDP_UDW(ring, 3);
1742 reg_state[CTX_PDP3_LDW] = GEN8_RING_PDP_LDW(ring, 3);
1743 reg_state[CTX_PDP2_UDW] = GEN8_RING_PDP_UDW(ring, 2);
1744 reg_state[CTX_PDP2_LDW] = GEN8_RING_PDP_LDW(ring, 2);
1745 reg_state[CTX_PDP1_UDW] = GEN8_RING_PDP_UDW(ring, 1);
1746 reg_state[CTX_PDP1_LDW] = GEN8_RING_PDP_LDW(ring, 1);
1747 reg_state[CTX_PDP0_UDW] = GEN8_RING_PDP_UDW(ring, 0);
1748 reg_state[CTX_PDP0_LDW] = GEN8_RING_PDP_LDW(ring, 0);
1749 reg_state[CTX_PDP3_UDW+1] = upper_32_bits(ppgtt->pd_dma_addr[3]);
1750 reg_state[CTX_PDP3_LDW+1] = lower_32_bits(ppgtt->pd_dma_addr[3]);
1751 reg_state[CTX_PDP2_UDW+1] = upper_32_bits(ppgtt->pd_dma_addr[2]);
1752 reg_state[CTX_PDP2_LDW+1] = lower_32_bits(ppgtt->pd_dma_addr[2]);
1753 reg_state[CTX_PDP1_UDW+1] = upper_32_bits(ppgtt->pd_dma_addr[1]);
1754 reg_state[CTX_PDP1_LDW+1] = lower_32_bits(ppgtt->pd_dma_addr[1]);
1755 reg_state[CTX_PDP0_UDW+1] = upper_32_bits(ppgtt->pd_dma_addr[0]);
1756 reg_state[CTX_PDP0_LDW+1] = lower_32_bits(ppgtt->pd_dma_addr[0]);
1757 if (ring->id == RCS) {
1758 reg_state[CTX_LRI_HEADER_2] = MI_LOAD_REGISTER_IMM(1);
1759 reg_state[CTX_R_PWR_CLK_STATE] = 0x20c8;
1760 reg_state[CTX_R_PWR_CLK_STATE+1] = 0;
1761 }
1762
1763 kunmap_atomic(reg_state);
1764
1765 ctx_obj->dirty = 1;
1766 set_page_dirty(page);
1767 i915_gem_object_unpin_pages(ctx_obj);
1768
1769 return 0;
1770}
1771
Oscar Mateo73e4d072014-07-24 17:04:48 +01001772/**
1773 * intel_lr_context_free() - free the LRC specific bits of a context
1774 * @ctx: the LR context to free.
1775 *
1776 * The real context freeing is done in i915_gem_context_free: this only
1777 * takes care of the bits that are LRC related: the per-engine backing
1778 * objects and the logical ringbuffer.
1779 */
Oscar Mateoede7d422014-07-24 17:04:12 +01001780void intel_lr_context_free(struct intel_context *ctx)
1781{
Oscar Mateo8c8579172014-07-24 17:04:14 +01001782 int i;
1783
1784 for (i = 0; i < I915_NUM_RINGS; i++) {
1785 struct drm_i915_gem_object *ctx_obj = ctx->engine[i].state;
Oscar Mateo84c23772014-07-24 17:04:15 +01001786
Oscar Mateo8c8579172014-07-24 17:04:14 +01001787 if (ctx_obj) {
Oscar Mateodcb4c122014-11-13 10:28:10 +00001788 struct intel_ringbuffer *ringbuf =
1789 ctx->engine[i].ringbuf;
1790 struct intel_engine_cs *ring = ringbuf->ring;
1791
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001792 if (ctx == ring->default_context) {
1793 intel_unpin_ringbuffer_obj(ringbuf);
1794 i915_gem_object_ggtt_unpin(ctx_obj);
1795 }
Oscar Mateo84c23772014-07-24 17:04:15 +01001796 intel_destroy_ringbuffer_obj(ringbuf);
1797 kfree(ringbuf);
Oscar Mateo8c8579172014-07-24 17:04:14 +01001798 drm_gem_object_unreference(&ctx_obj->base);
1799 }
1800 }
1801}
1802
1803static uint32_t get_lr_context_size(struct intel_engine_cs *ring)
1804{
1805 int ret = 0;
1806
Michael H. Nguyen468c6812014-11-13 17:51:49 +00001807 WARN_ON(INTEL_INFO(ring->dev)->gen < 8);
Oscar Mateo8c8579172014-07-24 17:04:14 +01001808
1809 switch (ring->id) {
1810 case RCS:
Michael H. Nguyen468c6812014-11-13 17:51:49 +00001811 if (INTEL_INFO(ring->dev)->gen >= 9)
1812 ret = GEN9_LR_CONTEXT_RENDER_SIZE;
1813 else
1814 ret = GEN8_LR_CONTEXT_RENDER_SIZE;
Oscar Mateo8c8579172014-07-24 17:04:14 +01001815 break;
1816 case VCS:
1817 case BCS:
1818 case VECS:
1819 case VCS2:
1820 ret = GEN8_LR_CONTEXT_OTHER_SIZE;
1821 break;
1822 }
1823
1824 return ret;
Oscar Mateoede7d422014-07-24 17:04:12 +01001825}
1826
Daniel Vetter70b0ea82014-11-18 09:09:32 +01001827static void lrc_setup_hardware_status_page(struct intel_engine_cs *ring,
Thomas Daniel1df06b72014-10-29 09:52:51 +00001828 struct drm_i915_gem_object *default_ctx_obj)
1829{
1830 struct drm_i915_private *dev_priv = ring->dev->dev_private;
1831
1832 /* The status page is offset 0 from the default context object
1833 * in LRC mode. */
1834 ring->status_page.gfx_addr = i915_gem_obj_ggtt_offset(default_ctx_obj);
1835 ring->status_page.page_addr =
1836 kmap(sg_page(default_ctx_obj->pages->sgl));
Thomas Daniel1df06b72014-10-29 09:52:51 +00001837 ring->status_page.obj = default_ctx_obj;
1838
1839 I915_WRITE(RING_HWS_PGA(ring->mmio_base),
1840 (u32)ring->status_page.gfx_addr);
1841 POSTING_READ(RING_HWS_PGA(ring->mmio_base));
Thomas Daniel1df06b72014-10-29 09:52:51 +00001842}
1843
Oscar Mateo73e4d072014-07-24 17:04:48 +01001844/**
1845 * intel_lr_context_deferred_create() - create the LRC specific bits of a context
1846 * @ctx: LR context to create.
1847 * @ring: engine to be used with the context.
1848 *
1849 * This function can be called more than once, with different engines, if we plan
1850 * to use the context with them. The context backing objects and the ringbuffers
1851 * (specially the ringbuffer backing objects) suck a lot of memory up, and that's why
1852 * the creation is a deferred call: it's better to make sure first that we need to use
1853 * a given ring with the context.
1854 *
Masanari Iida32197aa2014-10-20 23:53:13 +09001855 * Return: non-zero on error.
Oscar Mateo73e4d072014-07-24 17:04:48 +01001856 */
Oscar Mateoede7d422014-07-24 17:04:12 +01001857int intel_lr_context_deferred_create(struct intel_context *ctx,
1858 struct intel_engine_cs *ring)
1859{
Oscar Mateodcb4c122014-11-13 10:28:10 +00001860 const bool is_global_default_ctx = (ctx == ring->default_context);
Oscar Mateo8c8579172014-07-24 17:04:14 +01001861 struct drm_device *dev = ring->dev;
1862 struct drm_i915_gem_object *ctx_obj;
1863 uint32_t context_size;
Oscar Mateo84c23772014-07-24 17:04:15 +01001864 struct intel_ringbuffer *ringbuf;
Oscar Mateo8c8579172014-07-24 17:04:14 +01001865 int ret;
1866
Oscar Mateoede7d422014-07-24 17:04:12 +01001867 WARN_ON(ctx->legacy_hw_ctx.rcs_state != NULL);
Daniel Vetterbfc882b2014-11-20 00:33:08 +01001868 WARN_ON(ctx->engine[ring->id].state);
Oscar Mateoede7d422014-07-24 17:04:12 +01001869
Oscar Mateo8c8579172014-07-24 17:04:14 +01001870 context_size = round_up(get_lr_context_size(ring), 4096);
1871
1872 ctx_obj = i915_gem_alloc_context_obj(dev, context_size);
1873 if (IS_ERR(ctx_obj)) {
1874 ret = PTR_ERR(ctx_obj);
1875 DRM_DEBUG_DRIVER("Alloc LRC backing obj failed: %d\n", ret);
1876 return ret;
1877 }
1878
Oscar Mateodcb4c122014-11-13 10:28:10 +00001879 if (is_global_default_ctx) {
1880 ret = i915_gem_obj_ggtt_pin(ctx_obj, GEN8_LR_CONTEXT_ALIGN, 0);
1881 if (ret) {
1882 DRM_DEBUG_DRIVER("Pin LRC backing obj failed: %d\n",
1883 ret);
1884 drm_gem_object_unreference(&ctx_obj->base);
1885 return ret;
1886 }
Oscar Mateo8c8579172014-07-24 17:04:14 +01001887 }
1888
Oscar Mateo84c23772014-07-24 17:04:15 +01001889 ringbuf = kzalloc(sizeof(*ringbuf), GFP_KERNEL);
1890 if (!ringbuf) {
1891 DRM_DEBUG_DRIVER("Failed to allocate ringbuffer %s\n",
1892 ring->name);
Oscar Mateo84c23772014-07-24 17:04:15 +01001893 ret = -ENOMEM;
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001894 goto error_unpin_ctx;
Oscar Mateo84c23772014-07-24 17:04:15 +01001895 }
1896
Daniel Vetter0c7dd532014-08-11 16:17:44 +02001897 ringbuf->ring = ring;
Oscar Mateo582d67f2014-07-24 17:04:16 +01001898 ringbuf->FIXME_lrc_ctx = ctx;
1899
Oscar Mateo84c23772014-07-24 17:04:15 +01001900 ringbuf->size = 32 * PAGE_SIZE;
1901 ringbuf->effective_size = ringbuf->size;
1902 ringbuf->head = 0;
1903 ringbuf->tail = 0;
Oscar Mateo84c23772014-07-24 17:04:15 +01001904 ringbuf->last_retired_head = -1;
Dave Gordonebd0fd42014-11-27 11:22:49 +00001905 intel_ring_update_space(ringbuf);
Oscar Mateo84c23772014-07-24 17:04:15 +01001906
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001907 if (ringbuf->obj == NULL) {
1908 ret = intel_alloc_ringbuffer_obj(dev, ringbuf);
1909 if (ret) {
1910 DRM_DEBUG_DRIVER(
1911 "Failed to allocate ringbuffer obj %s: %d\n",
Oscar Mateo84c23772014-07-24 17:04:15 +01001912 ring->name, ret);
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001913 goto error_free_rbuf;
1914 }
1915
1916 if (is_global_default_ctx) {
1917 ret = intel_pin_and_map_ringbuffer_obj(dev, ringbuf);
1918 if (ret) {
1919 DRM_ERROR(
1920 "Failed to pin and map ringbuffer %s: %d\n",
1921 ring->name, ret);
1922 goto error_destroy_rbuf;
1923 }
1924 }
1925
Oscar Mateo8670d6f2014-07-24 17:04:17 +01001926 }
1927
1928 ret = populate_lr_context(ctx, ctx_obj, ring, ringbuf);
1929 if (ret) {
1930 DRM_DEBUG_DRIVER("Failed to populate LRC: %d\n", ret);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01001931 goto error;
Oscar Mateo84c23772014-07-24 17:04:15 +01001932 }
1933
1934 ctx->engine[ring->id].ringbuf = ringbuf;
Oscar Mateo8c8579172014-07-24 17:04:14 +01001935 ctx->engine[ring->id].state = ctx_obj;
Oscar Mateoede7d422014-07-24 17:04:12 +01001936
Daniel Vetter70b0ea82014-11-18 09:09:32 +01001937 if (ctx == ring->default_context)
1938 lrc_setup_hardware_status_page(ring, ctx_obj);
Thomas Daniele7778be2014-12-02 12:50:48 +00001939 else if (ring->id == RCS && !ctx->rcs_initialized) {
Michel Thierry771b9a52014-11-11 16:47:33 +00001940 if (ring->init_context) {
1941 ret = ring->init_context(ring, ctx);
Thomas Daniele7778be2014-12-02 12:50:48 +00001942 if (ret) {
Michel Thierry771b9a52014-11-11 16:47:33 +00001943 DRM_ERROR("ring init context: %d\n", ret);
Thomas Daniele7778be2014-12-02 12:50:48 +00001944 ctx->engine[ring->id].ringbuf = NULL;
1945 ctx->engine[ring->id].state = NULL;
1946 goto error;
1947 }
Michel Thierry771b9a52014-11-11 16:47:33 +00001948 }
1949
Oscar Mateo564ddb22014-08-21 11:40:54 +01001950 ctx->rcs_initialized = true;
1951 }
1952
Oscar Mateoede7d422014-07-24 17:04:12 +01001953 return 0;
Oscar Mateo8670d6f2014-07-24 17:04:17 +01001954
1955error:
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001956 if (is_global_default_ctx)
1957 intel_unpin_ringbuffer_obj(ringbuf);
1958error_destroy_rbuf:
1959 intel_destroy_ringbuffer_obj(ringbuf);
1960error_free_rbuf:
Oscar Mateo8670d6f2014-07-24 17:04:17 +01001961 kfree(ringbuf);
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001962error_unpin_ctx:
Oscar Mateodcb4c122014-11-13 10:28:10 +00001963 if (is_global_default_ctx)
1964 i915_gem_object_ggtt_unpin(ctx_obj);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01001965 drm_gem_object_unreference(&ctx_obj->base);
1966 return ret;
Oscar Mateoede7d422014-07-24 17:04:12 +01001967}