blob: 0651318017fd01520b06aa20e6df5cd1a9d95a8e [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;
Nick Hoath72f95af2015-01-15 13:10:37 +0000420 } else if (req0->request->ctx == cursor->request->ctx) {
Michel Thierryacdd8842014-07-24 17:04:38 +0100421 /* 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
Nick Hoath72f95af2015-01-15 13:10:37 +0000436 execlists_submit_contexts(ring, req0->request->ctx, req0->request->tail,
437 req1 ? req1->request->ctx : NULL,
438 req1 ? req1->request->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 =
Nick Hoath72f95af2015-01-15 13:10:37 +0000458 head_req->request->ctx->engine[ring->id].state;
Thomas Daniele981e7b2014-07-24 17:04:39 +0100459 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;
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000548
549 if (to != ring->default_context)
550 intel_lr_context_pin(ring, to);
551
Nick Hoath2d129552015-01-15 13:10:36 +0000552 if (!request) {
553 /*
554 * If there isn't a request associated with this submission,
555 * create one as a temporary holder.
556 */
557 WARN(1, "execlist context submission without request");
558 request = kzalloc(sizeof(*request), GFP_KERNEL);
559 if (request == NULL)
560 return -ENOMEM;
Nick Hoath2d129552015-01-15 13:10:36 +0000561 request->ring = ring;
Nick Hoath21076372015-01-15 13:10:38 +0000562 } else {
563 WARN_ON(to != request->ctx);
Nick Hoath2d129552015-01-15 13:10:36 +0000564 }
Nick Hoath72f95af2015-01-15 13:10:37 +0000565 request->ctx = to;
566 request->tail = tail;
Nick Hoath2d129552015-01-15 13:10:36 +0000567 req->request = request;
568 i915_gem_request_reference(request);
Nick Hoath72f95af2015-01-15 13:10:37 +0000569 i915_gem_context_reference(req->request->ctx);
Nick Hoath2d129552015-01-15 13:10:36 +0000570
Thomas Daniele981e7b2014-07-24 17:04:39 +0100571 intel_runtime_pm_get(dev_priv);
Michel Thierryacdd8842014-07-24 17:04:38 +0100572
573 spin_lock_irqsave(&ring->execlist_lock, flags);
574
Oscar Mateof1ad5a12014-07-24 17:04:41 +0100575 list_for_each_entry(cursor, &ring->execlist_queue, execlist_link)
576 if (++num_elements > 2)
577 break;
578
579 if (num_elements > 2) {
580 struct intel_ctx_submit_request *tail_req;
581
582 tail_req = list_last_entry(&ring->execlist_queue,
583 struct intel_ctx_submit_request,
584 execlist_link);
585
Nick Hoath72f95af2015-01-15 13:10:37 +0000586 if (to == tail_req->request->ctx) {
Oscar Mateof1ad5a12014-07-24 17:04:41 +0100587 WARN(tail_req->elsp_submitted != 0,
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000588 "More than 2 already-submitted reqs queued\n");
Oscar Mateof1ad5a12014-07-24 17:04:41 +0100589 list_del(&tail_req->execlist_link);
Thomas Danielc86ee3a92014-11-13 10:27:05 +0000590 list_add_tail(&tail_req->execlist_link,
591 &ring->execlist_retired_req_list);
Oscar Mateof1ad5a12014-07-24 17:04:41 +0100592 }
593 }
594
Michel Thierryacdd8842014-07-24 17:04:38 +0100595 list_add_tail(&req->execlist_link, &ring->execlist_queue);
Oscar Mateof1ad5a12014-07-24 17:04:41 +0100596 if (num_elements == 0)
Michel Thierryacdd8842014-07-24 17:04:38 +0100597 execlists_context_unqueue(ring);
598
599 spin_unlock_irqrestore(&ring->execlist_lock, flags);
600
601 return 0;
602}
603
Nick Hoath21076372015-01-15 13:10:38 +0000604static int logical_ring_invalidate_all_caches(struct intel_ringbuffer *ringbuf,
605 struct intel_context *ctx)
Oscar Mateoba8b7cc2014-07-24 17:04:33 +0100606{
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
Nick Hoath21076372015-01-15 13:10:38 +0000615 ret = ring->emit_flush(ringbuf, ctx,
616 I915_GEM_GPU_DOMAINS, flush_domains);
Oscar Mateoba8b7cc2014-07-24 17:04:33 +0100617 if (ret)
618 return ret;
619
620 ring->gpu_caches_dirty = false;
621 return 0;
622}
623
624static int execlists_move_to_gpu(struct intel_ringbuffer *ringbuf,
Nick Hoath21076372015-01-15 13:10:38 +0000625 struct intel_context *ctx,
Oscar Mateoba8b7cc2014-07-24 17:04:33 +0100626 struct list_head *vmas)
627{
628 struct intel_engine_cs *ring = ringbuf->ring;
629 struct i915_vma *vma;
630 uint32_t flush_domains = 0;
631 bool flush_chipset = false;
632 int ret;
633
634 list_for_each_entry(vma, vmas, exec_list) {
635 struct drm_i915_gem_object *obj = vma->obj;
636
637 ret = i915_gem_object_sync(obj, ring);
638 if (ret)
639 return ret;
640
641 if (obj->base.write_domain & I915_GEM_DOMAIN_CPU)
642 flush_chipset |= i915_gem_clflush_object(obj, false);
643
644 flush_domains |= obj->base.write_domain;
645 }
646
647 if (flush_domains & I915_GEM_DOMAIN_GTT)
648 wmb();
649
650 /* Unconditionally invalidate gpu caches and ensure that we do flush
651 * any residual writes from the previous batch.
652 */
Nick Hoath21076372015-01-15 13:10:38 +0000653 return logical_ring_invalidate_all_caches(ringbuf, ctx);
Oscar Mateoba8b7cc2014-07-24 17:04:33 +0100654}
655
Oscar Mateo73e4d072014-07-24 17:04:48 +0100656/**
657 * execlists_submission() - submit a batchbuffer for execution, Execlists style
658 * @dev: DRM device.
659 * @file: DRM file.
660 * @ring: Engine Command Streamer to submit to.
661 * @ctx: Context to employ for this submission.
662 * @args: execbuffer call arguments.
663 * @vmas: list of vmas.
664 * @batch_obj: the batchbuffer to submit.
665 * @exec_start: batchbuffer start virtual address pointer.
666 * @flags: translated execbuffer call flags.
667 *
668 * This is the evil twin version of i915_gem_ringbuffer_submission. It abstracts
669 * away the submission details of the execbuffer ioctl call.
670 *
671 * Return: non-zero if the submission fails.
672 */
Oscar Mateo454afeb2014-07-24 17:04:22 +0100673int intel_execlists_submission(struct drm_device *dev, struct drm_file *file,
674 struct intel_engine_cs *ring,
675 struct intel_context *ctx,
676 struct drm_i915_gem_execbuffer2 *args,
677 struct list_head *vmas,
678 struct drm_i915_gem_object *batch_obj,
679 u64 exec_start, u32 flags)
680{
Oscar Mateoba8b7cc2014-07-24 17:04:33 +0100681 struct drm_i915_private *dev_priv = dev->dev_private;
682 struct intel_ringbuffer *ringbuf = ctx->engine[ring->id].ringbuf;
683 int instp_mode;
684 u32 instp_mask;
685 int ret;
686
687 instp_mode = args->flags & I915_EXEC_CONSTANTS_MASK;
688 instp_mask = I915_EXEC_CONSTANTS_MASK;
689 switch (instp_mode) {
690 case I915_EXEC_CONSTANTS_REL_GENERAL:
691 case I915_EXEC_CONSTANTS_ABSOLUTE:
692 case I915_EXEC_CONSTANTS_REL_SURFACE:
693 if (instp_mode != 0 && ring != &dev_priv->ring[RCS]) {
694 DRM_DEBUG("non-0 rel constants mode on non-RCS\n");
695 return -EINVAL;
696 }
697
698 if (instp_mode != dev_priv->relative_constants_mode) {
699 if (instp_mode == I915_EXEC_CONSTANTS_REL_SURFACE) {
700 DRM_DEBUG("rel surface constants mode invalid on gen5+\n");
701 return -EINVAL;
702 }
703
704 /* The HW changed the meaning on this bit on gen6 */
705 instp_mask &= ~I915_EXEC_CONSTANTS_REL_SURFACE;
706 }
707 break;
708 default:
709 DRM_DEBUG("execbuf with unknown constants: %d\n", instp_mode);
710 return -EINVAL;
711 }
712
713 if (args->num_cliprects != 0) {
714 DRM_DEBUG("clip rectangles are only valid on pre-gen5\n");
715 return -EINVAL;
716 } else {
717 if (args->DR4 == 0xffffffff) {
718 DRM_DEBUG("UXA submitting garbage DR4, fixing up\n");
719 args->DR4 = 0;
720 }
721
722 if (args->DR1 || args->DR4 || args->cliprects_ptr) {
723 DRM_DEBUG("0 cliprects but dirt in cliprects fields\n");
724 return -EINVAL;
725 }
726 }
727
728 if (args->flags & I915_EXEC_GEN7_SOL_RESET) {
729 DRM_DEBUG("sol reset is gen7 only\n");
730 return -EINVAL;
731 }
732
Nick Hoath21076372015-01-15 13:10:38 +0000733 ret = execlists_move_to_gpu(ringbuf, ctx, vmas);
Oscar Mateoba8b7cc2014-07-24 17:04:33 +0100734 if (ret)
735 return ret;
736
737 if (ring == &dev_priv->ring[RCS] &&
738 instp_mode != dev_priv->relative_constants_mode) {
Nick Hoath21076372015-01-15 13:10:38 +0000739 ret = intel_logical_ring_begin(ringbuf, ctx, 4);
Oscar Mateoba8b7cc2014-07-24 17:04:33 +0100740 if (ret)
741 return ret;
742
743 intel_logical_ring_emit(ringbuf, MI_NOOP);
744 intel_logical_ring_emit(ringbuf, MI_LOAD_REGISTER_IMM(1));
745 intel_logical_ring_emit(ringbuf, INSTPM);
746 intel_logical_ring_emit(ringbuf, instp_mask << 16 | instp_mode);
747 intel_logical_ring_advance(ringbuf);
748
749 dev_priv->relative_constants_mode = instp_mode;
750 }
751
Nick Hoath21076372015-01-15 13:10:38 +0000752 ret = ring->emit_bb_start(ringbuf, ctx, exec_start, flags);
Oscar Mateoba8b7cc2014-07-24 17:04:33 +0100753 if (ret)
754 return ret;
755
756 i915_gem_execbuffer_move_to_active(vmas, ring);
757 i915_gem_execbuffer_retire_commands(dev, file, ring, batch_obj);
758
Oscar Mateo454afeb2014-07-24 17:04:22 +0100759 return 0;
760}
761
Thomas Danielc86ee3a92014-11-13 10:27:05 +0000762void intel_execlists_retire_requests(struct intel_engine_cs *ring)
763{
764 struct intel_ctx_submit_request *req, *tmp;
765 struct drm_i915_private *dev_priv = ring->dev->dev_private;
766 unsigned long flags;
767 struct list_head retired_list;
768
769 WARN_ON(!mutex_is_locked(&ring->dev->struct_mutex));
770 if (list_empty(&ring->execlist_retired_req_list))
771 return;
772
773 INIT_LIST_HEAD(&retired_list);
774 spin_lock_irqsave(&ring->execlist_lock, flags);
775 list_replace_init(&ring->execlist_retired_req_list, &retired_list);
776 spin_unlock_irqrestore(&ring->execlist_lock, flags);
777
778 list_for_each_entry_safe(req, tmp, &retired_list, execlist_link) {
Nick Hoath72f95af2015-01-15 13:10:37 +0000779 struct intel_context *ctx = req->request->ctx;
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000780 struct drm_i915_gem_object *ctx_obj =
781 ctx->engine[ring->id].state;
782
783 if (ctx_obj && (ctx != ring->default_context))
784 intel_lr_context_unpin(ring, ctx);
Thomas Danielc86ee3a92014-11-13 10:27:05 +0000785 intel_runtime_pm_put(dev_priv);
Nick Hoath72f95af2015-01-15 13:10:37 +0000786 i915_gem_context_unreference(ctx);
Nick Hoath2d129552015-01-15 13:10:36 +0000787 i915_gem_request_unreference(req->request);
Thomas Danielc86ee3a92014-11-13 10:27:05 +0000788 list_del(&req->execlist_link);
789 kfree(req);
790 }
791}
792
Oscar Mateo454afeb2014-07-24 17:04:22 +0100793void intel_logical_ring_stop(struct intel_engine_cs *ring)
794{
Oscar Mateo9832b9d2014-07-24 17:04:30 +0100795 struct drm_i915_private *dev_priv = ring->dev->dev_private;
796 int ret;
797
798 if (!intel_ring_initialized(ring))
799 return;
800
801 ret = intel_ring_idle(ring);
802 if (ret && !i915_reset_in_progress(&to_i915(ring->dev)->gpu_error))
803 DRM_ERROR("failed to quiesce %s whilst cleaning up: %d\n",
804 ring->name, ret);
805
806 /* TODO: Is this correct with Execlists enabled? */
807 I915_WRITE_MODE(ring, _MASKED_BIT_ENABLE(STOP_RING));
808 if (wait_for_atomic((I915_READ_MODE(ring) & MODE_IDLE) != 0, 1000)) {
809 DRM_ERROR("%s :timed out trying to stop ring\n", ring->name);
810 return;
811 }
812 I915_WRITE_MODE(ring, _MASKED_BIT_DISABLE(STOP_RING));
Oscar Mateo454afeb2014-07-24 17:04:22 +0100813}
814
Nick Hoath21076372015-01-15 13:10:38 +0000815int logical_ring_flush_all_caches(struct intel_ringbuffer *ringbuf,
816 struct intel_context *ctx)
Oscar Mateo48e29f52014-07-24 17:04:29 +0100817{
818 struct intel_engine_cs *ring = ringbuf->ring;
819 int ret;
820
821 if (!ring->gpu_caches_dirty)
822 return 0;
823
Nick Hoath21076372015-01-15 13:10:38 +0000824 ret = ring->emit_flush(ringbuf, ctx, 0, I915_GEM_GPU_DOMAINS);
Oscar Mateo48e29f52014-07-24 17:04:29 +0100825 if (ret)
826 return ret;
827
828 ring->gpu_caches_dirty = false;
829 return 0;
830}
831
Oscar Mateo73e4d072014-07-24 17:04:48 +0100832/**
833 * intel_logical_ring_advance_and_submit() - advance the tail and submit the workload
834 * @ringbuf: Logical Ringbuffer to advance.
835 *
836 * The tail is updated in our logical ringbuffer struct, not in the actual context. What
837 * really happens during submission is that the context and current tail will be placed
838 * on a queue waiting for the ELSP to be ready to accept a new context submission. At that
839 * point, the tail *inside* the context is updated and the ELSP written to.
840 */
Nick Hoath2d129552015-01-15 13:10:36 +0000841void intel_logical_ring_advance_and_submit(struct intel_ringbuffer *ringbuf,
Nick Hoath21076372015-01-15 13:10:38 +0000842 struct intel_context *ctx,
Nick Hoath2d129552015-01-15 13:10:36 +0000843 struct drm_i915_gem_request *request)
Oscar Mateo82e104c2014-07-24 17:04:26 +0100844{
Ben Widawsky84b790f2014-07-24 17:04:36 +0100845 struct intel_engine_cs *ring = ringbuf->ring;
Ben Widawsky84b790f2014-07-24 17:04:36 +0100846
Oscar Mateo82e104c2014-07-24 17:04:26 +0100847 intel_logical_ring_advance(ringbuf);
848
Ben Widawsky84b790f2014-07-24 17:04:36 +0100849 if (intel_ring_stopped(ring))
Oscar Mateo82e104c2014-07-24 17:04:26 +0100850 return;
851
Nick Hoath2d129552015-01-15 13:10:36 +0000852 execlists_context_queue(ring, ctx, ringbuf->tail, request);
Oscar Mateo82e104c2014-07-24 17:04:26 +0100853}
854
Oscar Mateodcb4c122014-11-13 10:28:10 +0000855static int intel_lr_context_pin(struct intel_engine_cs *ring,
856 struct intel_context *ctx)
857{
858 struct drm_i915_gem_object *ctx_obj = ctx->engine[ring->id].state;
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000859 struct intel_ringbuffer *ringbuf = ctx->engine[ring->id].ringbuf;
Oscar Mateodcb4c122014-11-13 10:28:10 +0000860 int ret = 0;
861
862 WARN_ON(!mutex_is_locked(&ring->dev->struct_mutex));
863 if (ctx->engine[ring->id].unpin_count++ == 0) {
864 ret = i915_gem_obj_ggtt_pin(ctx_obj,
865 GEN8_LR_CONTEXT_ALIGN, 0);
866 if (ret)
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000867 goto reset_unpin_count;
868
869 ret = intel_pin_and_map_ringbuffer_obj(ring->dev, ringbuf);
870 if (ret)
871 goto unpin_ctx_obj;
Oscar Mateodcb4c122014-11-13 10:28:10 +0000872 }
873
874 return ret;
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000875
876unpin_ctx_obj:
877 i915_gem_object_ggtt_unpin(ctx_obj);
878reset_unpin_count:
879 ctx->engine[ring->id].unpin_count = 0;
880
881 return ret;
Oscar Mateodcb4c122014-11-13 10:28:10 +0000882}
883
884void intel_lr_context_unpin(struct intel_engine_cs *ring,
885 struct intel_context *ctx)
886{
887 struct drm_i915_gem_object *ctx_obj = ctx->engine[ring->id].state;
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000888 struct intel_ringbuffer *ringbuf = ctx->engine[ring->id].ringbuf;
Oscar Mateodcb4c122014-11-13 10:28:10 +0000889
890 if (ctx_obj) {
891 WARN_ON(!mutex_is_locked(&ring->dev->struct_mutex));
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000892 if (--ctx->engine[ring->id].unpin_count == 0) {
893 intel_unpin_ringbuffer_obj(ringbuf);
Oscar Mateodcb4c122014-11-13 10:28:10 +0000894 i915_gem_object_ggtt_unpin(ctx_obj);
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000895 }
Oscar Mateodcb4c122014-11-13 10:28:10 +0000896 }
897}
898
John Harrison6259cea2014-11-24 18:49:29 +0000899static int logical_ring_alloc_request(struct intel_engine_cs *ring,
900 struct intel_context *ctx)
Oscar Mateo82e104c2014-07-24 17:04:26 +0100901{
John Harrison9eba5d42014-11-24 18:49:23 +0000902 struct drm_i915_gem_request *request;
John Harrison67e29372014-12-05 13:49:35 +0000903 struct drm_i915_private *dev_private = ring->dev->dev_private;
Oscar Mateodcb4c122014-11-13 10:28:10 +0000904 int ret;
905
John Harrison6259cea2014-11-24 18:49:29 +0000906 if (ring->outstanding_lazy_request)
Oscar Mateo82e104c2014-07-24 17:04:26 +0100907 return 0;
908
John Harrisonaaeb1ba2014-12-05 13:49:34 +0000909 request = kzalloc(sizeof(*request), GFP_KERNEL);
John Harrison9eba5d42014-11-24 18:49:23 +0000910 if (request == NULL)
911 return -ENOMEM;
Oscar Mateo82e104c2014-07-24 17:04:26 +0100912
John Harrison9eba5d42014-11-24 18:49:23 +0000913 if (ctx != ring->default_context) {
914 ret = intel_lr_context_pin(ring, ctx);
915 if (ret) {
916 kfree(request);
917 return ret;
Oscar Mateodcb4c122014-11-13 10:28:10 +0000918 }
Oscar Mateo82e104c2014-07-24 17:04:26 +0100919 }
920
John Harrisonabfe2622014-11-24 18:49:24 +0000921 kref_init(&request->ref);
John Harrisonff79e852014-11-24 18:49:41 +0000922 request->ring = ring;
John Harrison67e29372014-12-05 13:49:35 +0000923 request->uniq = dev_private->request_uniq++;
John Harrisonabfe2622014-11-24 18:49:24 +0000924
John Harrison6259cea2014-11-24 18:49:29 +0000925 ret = i915_gem_get_seqno(ring->dev, &request->seqno);
John Harrison9eba5d42014-11-24 18:49:23 +0000926 if (ret) {
927 intel_lr_context_unpin(ring, ctx);
928 kfree(request);
929 return ret;
930 }
931
932 /* Hold a reference to the context this request belongs to
933 * (we will need it when the time comes to emit/retire the
934 * request).
935 */
936 request->ctx = ctx;
937 i915_gem_context_reference(request->ctx);
938
John Harrison6259cea2014-11-24 18:49:29 +0000939 ring->outstanding_lazy_request = request;
John Harrison9eba5d42014-11-24 18:49:23 +0000940 return 0;
Oscar Mateo82e104c2014-07-24 17:04:26 +0100941}
942
943static int logical_ring_wait_request(struct intel_ringbuffer *ringbuf,
944 int bytes)
945{
946 struct intel_engine_cs *ring = ringbuf->ring;
947 struct drm_i915_gem_request *request;
Oscar Mateo82e104c2014-07-24 17:04:26 +0100948 int ret;
949
Dave Gordonebd0fd42014-11-27 11:22:49 +0000950 if (intel_ring_space(ringbuf) >= bytes)
951 return 0;
Oscar Mateo82e104c2014-07-24 17:04:26 +0100952
953 list_for_each_entry(request, &ring->request_list, list) {
Dave Gordon57e21512014-11-18 20:07:20 +0000954 /*
955 * The request queue is per-engine, so can contain requests
956 * from multiple ringbuffers. Here, we must ignore any that
957 * aren't from the ringbuffer we're considering.
958 */
959 struct intel_context *ctx = request->ctx;
960 if (ctx->engine[ring->id].ringbuf != ringbuf)
961 continue;
962
963 /* Would completion of this request free enough space? */
Oscar Mateo82e104c2014-07-24 17:04:26 +0100964 if (__intel_ring_space(request->tail, ringbuf->tail,
965 ringbuf->size) >= bytes) {
Oscar Mateo82e104c2014-07-24 17:04:26 +0100966 break;
967 }
968 }
969
Daniel Vettera4b3a572014-11-26 14:17:05 +0100970 if (&request->list == &ring->request_list)
Oscar Mateo82e104c2014-07-24 17:04:26 +0100971 return -ENOSPC;
972
Daniel Vettera4b3a572014-11-26 14:17:05 +0100973 ret = i915_wait_request(request);
Oscar Mateo82e104c2014-07-24 17:04:26 +0100974 if (ret)
975 return ret;
976
Oscar Mateo82e104c2014-07-24 17:04:26 +0100977 i915_gem_retire_requests_ring(ring);
Oscar Mateo82e104c2014-07-24 17:04:26 +0100978
Dave Gordonebd0fd42014-11-27 11:22:49 +0000979 return intel_ring_space(ringbuf) >= bytes ? 0 : -ENOSPC;
Oscar Mateo82e104c2014-07-24 17:04:26 +0100980}
981
982static int logical_ring_wait_for_space(struct intel_ringbuffer *ringbuf,
Nick Hoath21076372015-01-15 13:10:38 +0000983 struct intel_context *ctx,
Oscar Mateo82e104c2014-07-24 17:04:26 +0100984 int bytes)
985{
986 struct intel_engine_cs *ring = ringbuf->ring;
987 struct drm_device *dev = ring->dev;
988 struct drm_i915_private *dev_priv = dev->dev_private;
989 unsigned long end;
990 int ret;
991
992 ret = logical_ring_wait_request(ringbuf, bytes);
993 if (ret != -ENOSPC)
994 return ret;
995
996 /* Force the context submission in case we have been skipping it */
Nick Hoath21076372015-01-15 13:10:38 +0000997 intel_logical_ring_advance_and_submit(ringbuf, ctx, NULL);
Oscar Mateo82e104c2014-07-24 17:04:26 +0100998
999 /* With GEM the hangcheck timer should kick us out of the loop,
1000 * leaving it early runs the risk of corrupting GEM state (due
1001 * to running on almost untested codepaths). But on resume
1002 * timers don't work yet, so prevent a complete hang in that
1003 * case by choosing an insanely large timeout. */
1004 end = jiffies + 60 * HZ;
1005
Dave Gordonebd0fd42014-11-27 11:22:49 +00001006 ret = 0;
Oscar Mateo82e104c2014-07-24 17:04:26 +01001007 do {
Dave Gordonebd0fd42014-11-27 11:22:49 +00001008 if (intel_ring_space(ringbuf) >= bytes)
Oscar Mateo82e104c2014-07-24 17:04:26 +01001009 break;
Oscar Mateo82e104c2014-07-24 17:04:26 +01001010
1011 msleep(1);
1012
1013 if (dev_priv->mm.interruptible && signal_pending(current)) {
1014 ret = -ERESTARTSYS;
1015 break;
1016 }
1017
1018 ret = i915_gem_check_wedge(&dev_priv->gpu_error,
1019 dev_priv->mm.interruptible);
1020 if (ret)
1021 break;
1022
1023 if (time_after(jiffies, end)) {
1024 ret = -EBUSY;
1025 break;
1026 }
1027 } while (1);
1028
1029 return ret;
1030}
1031
Nick Hoath21076372015-01-15 13:10:38 +00001032static int logical_ring_wrap_buffer(struct intel_ringbuffer *ringbuf,
1033 struct intel_context *ctx)
Oscar Mateo82e104c2014-07-24 17:04:26 +01001034{
1035 uint32_t __iomem *virt;
1036 int rem = ringbuf->size - ringbuf->tail;
1037
1038 if (ringbuf->space < rem) {
Nick Hoath21076372015-01-15 13:10:38 +00001039 int ret = logical_ring_wait_for_space(ringbuf, ctx, rem);
Oscar Mateo82e104c2014-07-24 17:04:26 +01001040
1041 if (ret)
1042 return ret;
1043 }
1044
1045 virt = ringbuf->virtual_start + ringbuf->tail;
1046 rem /= 4;
1047 while (rem--)
1048 iowrite32(MI_NOOP, virt++);
1049
1050 ringbuf->tail = 0;
Dave Gordonebd0fd42014-11-27 11:22:49 +00001051 intel_ring_update_space(ringbuf);
Oscar Mateo82e104c2014-07-24 17:04:26 +01001052
1053 return 0;
1054}
1055
Nick Hoath21076372015-01-15 13:10:38 +00001056static int logical_ring_prepare(struct intel_ringbuffer *ringbuf,
1057 struct intel_context *ctx, int bytes)
Oscar Mateo82e104c2014-07-24 17:04:26 +01001058{
1059 int ret;
1060
1061 if (unlikely(ringbuf->tail + bytes > ringbuf->effective_size)) {
Nick Hoath21076372015-01-15 13:10:38 +00001062 ret = logical_ring_wrap_buffer(ringbuf, ctx);
Oscar Mateo82e104c2014-07-24 17:04:26 +01001063 if (unlikely(ret))
1064 return ret;
1065 }
1066
1067 if (unlikely(ringbuf->space < bytes)) {
Nick Hoath21076372015-01-15 13:10:38 +00001068 ret = logical_ring_wait_for_space(ringbuf, ctx, bytes);
Oscar Mateo82e104c2014-07-24 17:04:26 +01001069 if (unlikely(ret))
1070 return ret;
1071 }
1072
1073 return 0;
1074}
1075
Oscar Mateo73e4d072014-07-24 17:04:48 +01001076/**
1077 * intel_logical_ring_begin() - prepare the logical ringbuffer to accept some commands
1078 *
1079 * @ringbuf: Logical ringbuffer.
1080 * @num_dwords: number of DWORDs that we plan to write to the ringbuffer.
1081 *
1082 * The ringbuffer might not be ready to accept the commands right away (maybe it needs to
1083 * be wrapped, or wait a bit for the tail to be updated). This function takes care of that
1084 * and also preallocates a request (every workload submission is still mediated through
1085 * requests, same as it did with legacy ringbuffer submission).
1086 *
1087 * Return: non-zero if the ringbuffer is not ready to be written to.
1088 */
Nick Hoath21076372015-01-15 13:10:38 +00001089int intel_logical_ring_begin(struct intel_ringbuffer *ringbuf,
1090 struct intel_context *ctx, int num_dwords)
Oscar Mateo82e104c2014-07-24 17:04:26 +01001091{
1092 struct intel_engine_cs *ring = ringbuf->ring;
1093 struct drm_device *dev = ring->dev;
1094 struct drm_i915_private *dev_priv = dev->dev_private;
1095 int ret;
1096
1097 ret = i915_gem_check_wedge(&dev_priv->gpu_error,
1098 dev_priv->mm.interruptible);
1099 if (ret)
1100 return ret;
1101
Nick Hoath21076372015-01-15 13:10:38 +00001102 ret = logical_ring_prepare(ringbuf, ctx, num_dwords * sizeof(uint32_t));
Oscar Mateo82e104c2014-07-24 17:04:26 +01001103 if (ret)
1104 return ret;
1105
1106 /* Preallocate the olr before touching the ring */
Nick Hoath21076372015-01-15 13:10:38 +00001107 ret = logical_ring_alloc_request(ring, ctx);
Oscar Mateo82e104c2014-07-24 17:04:26 +01001108 if (ret)
1109 return ret;
1110
1111 ringbuf->space -= num_dwords * sizeof(uint32_t);
1112 return 0;
1113}
1114
Michel Thierry771b9a52014-11-11 16:47:33 +00001115static int intel_logical_ring_workarounds_emit(struct intel_engine_cs *ring,
1116 struct intel_context *ctx)
1117{
1118 int ret, i;
1119 struct intel_ringbuffer *ringbuf = ctx->engine[ring->id].ringbuf;
1120 struct drm_device *dev = ring->dev;
1121 struct drm_i915_private *dev_priv = dev->dev_private;
1122 struct i915_workarounds *w = &dev_priv->workarounds;
1123
Michel Thierrye6c1abb2014-11-26 14:21:02 +00001124 if (WARN_ON_ONCE(w->count == 0))
Michel Thierry771b9a52014-11-11 16:47:33 +00001125 return 0;
1126
1127 ring->gpu_caches_dirty = true;
Nick Hoath21076372015-01-15 13:10:38 +00001128 ret = logical_ring_flush_all_caches(ringbuf, ctx);
Michel Thierry771b9a52014-11-11 16:47:33 +00001129 if (ret)
1130 return ret;
1131
Nick Hoath21076372015-01-15 13:10:38 +00001132 ret = intel_logical_ring_begin(ringbuf, ctx, w->count * 2 + 2);
Michel Thierry771b9a52014-11-11 16:47:33 +00001133 if (ret)
1134 return ret;
1135
1136 intel_logical_ring_emit(ringbuf, MI_LOAD_REGISTER_IMM(w->count));
1137 for (i = 0; i < w->count; i++) {
1138 intel_logical_ring_emit(ringbuf, w->reg[i].addr);
1139 intel_logical_ring_emit(ringbuf, w->reg[i].value);
1140 }
1141 intel_logical_ring_emit(ringbuf, MI_NOOP);
1142
1143 intel_logical_ring_advance(ringbuf);
1144
1145 ring->gpu_caches_dirty = true;
Nick Hoath21076372015-01-15 13:10:38 +00001146 ret = logical_ring_flush_all_caches(ringbuf, ctx);
Michel Thierry771b9a52014-11-11 16:47:33 +00001147 if (ret)
1148 return ret;
1149
1150 return 0;
1151}
1152
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001153static int gen8_init_common_ring(struct intel_engine_cs *ring)
1154{
1155 struct drm_device *dev = ring->dev;
1156 struct drm_i915_private *dev_priv = dev->dev_private;
1157
Oscar Mateo73d477f2014-07-24 17:04:31 +01001158 I915_WRITE_IMR(ring, ~(ring->irq_enable_mask | ring->irq_keep_mask));
1159 I915_WRITE(RING_HWSTAM(ring->mmio_base), 0xffffffff);
1160
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001161 I915_WRITE(RING_MODE_GEN7(ring),
1162 _MASKED_BIT_DISABLE(GFX_REPLAY_MODE) |
1163 _MASKED_BIT_ENABLE(GFX_RUN_LIST_ENABLE));
1164 POSTING_READ(RING_MODE_GEN7(ring));
Thomas Danielc0a03a22015-01-09 11:09:37 +00001165 ring->next_context_status_buffer = 0;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001166 DRM_DEBUG_DRIVER("Execlists enabled for %s\n", ring->name);
1167
1168 memset(&ring->hangcheck, 0, sizeof(ring->hangcheck));
1169
1170 return 0;
1171}
1172
1173static int gen8_init_render_ring(struct intel_engine_cs *ring)
1174{
1175 struct drm_device *dev = ring->dev;
1176 struct drm_i915_private *dev_priv = dev->dev_private;
1177 int ret;
1178
1179 ret = gen8_init_common_ring(ring);
1180 if (ret)
1181 return ret;
1182
1183 /* We need to disable the AsyncFlip performance optimisations in order
1184 * to use MI_WAIT_FOR_EVENT within the CS. It should already be
1185 * programmed to '1' on all products.
1186 *
1187 * WaDisableAsyncFlipPerfMode:snb,ivb,hsw,vlv,bdw,chv
1188 */
1189 I915_WRITE(MI_MODE, _MASKED_BIT_ENABLE(ASYNC_FLIP_PERF_DISABLE));
1190
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001191 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_FORCE_ORDERING));
1192
Michel Thierry771b9a52014-11-11 16:47:33 +00001193 return init_workarounds_ring(ring);
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001194}
1195
Oscar Mateo15648582014-07-24 17:04:32 +01001196static int gen8_emit_bb_start(struct intel_ringbuffer *ringbuf,
Nick Hoath21076372015-01-15 13:10:38 +00001197 struct intel_context *ctx,
Oscar Mateo15648582014-07-24 17:04:32 +01001198 u64 offset, unsigned flags)
1199{
Oscar Mateo15648582014-07-24 17:04:32 +01001200 bool ppgtt = !(flags & I915_DISPATCH_SECURE);
1201 int ret;
1202
Nick Hoath21076372015-01-15 13:10:38 +00001203 ret = intel_logical_ring_begin(ringbuf, ctx, 4);
Oscar Mateo15648582014-07-24 17:04:32 +01001204 if (ret)
1205 return ret;
1206
1207 /* FIXME(BDW): Address space and security selectors. */
1208 intel_logical_ring_emit(ringbuf, MI_BATCH_BUFFER_START_GEN8 | (ppgtt<<8));
1209 intel_logical_ring_emit(ringbuf, lower_32_bits(offset));
1210 intel_logical_ring_emit(ringbuf, upper_32_bits(offset));
1211 intel_logical_ring_emit(ringbuf, MI_NOOP);
1212 intel_logical_ring_advance(ringbuf);
1213
1214 return 0;
1215}
1216
Oscar Mateo73d477f2014-07-24 17:04:31 +01001217static bool gen8_logical_ring_get_irq(struct intel_engine_cs *ring)
1218{
1219 struct drm_device *dev = ring->dev;
1220 struct drm_i915_private *dev_priv = dev->dev_private;
1221 unsigned long flags;
1222
Daniel Vetter7cd512f2014-09-15 11:38:57 +02001223 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
Oscar Mateo73d477f2014-07-24 17:04:31 +01001224 return false;
1225
1226 spin_lock_irqsave(&dev_priv->irq_lock, flags);
1227 if (ring->irq_refcount++ == 0) {
1228 I915_WRITE_IMR(ring, ~(ring->irq_enable_mask | ring->irq_keep_mask));
1229 POSTING_READ(RING_IMR(ring->mmio_base));
1230 }
1231 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
1232
1233 return true;
1234}
1235
1236static void gen8_logical_ring_put_irq(struct intel_engine_cs *ring)
1237{
1238 struct drm_device *dev = ring->dev;
1239 struct drm_i915_private *dev_priv = dev->dev_private;
1240 unsigned long flags;
1241
1242 spin_lock_irqsave(&dev_priv->irq_lock, flags);
1243 if (--ring->irq_refcount == 0) {
1244 I915_WRITE_IMR(ring, ~ring->irq_keep_mask);
1245 POSTING_READ(RING_IMR(ring->mmio_base));
1246 }
1247 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
1248}
1249
Oscar Mateo47122742014-07-24 17:04:28 +01001250static int gen8_emit_flush(struct intel_ringbuffer *ringbuf,
Nick Hoath21076372015-01-15 13:10:38 +00001251 struct intel_context *ctx,
Oscar Mateo47122742014-07-24 17:04:28 +01001252 u32 invalidate_domains,
1253 u32 unused)
1254{
1255 struct intel_engine_cs *ring = ringbuf->ring;
1256 struct drm_device *dev = ring->dev;
1257 struct drm_i915_private *dev_priv = dev->dev_private;
1258 uint32_t cmd;
1259 int ret;
1260
Nick Hoath21076372015-01-15 13:10:38 +00001261 ret = intel_logical_ring_begin(ringbuf, ctx, 4);
Oscar Mateo47122742014-07-24 17:04:28 +01001262 if (ret)
1263 return ret;
1264
1265 cmd = MI_FLUSH_DW + 1;
1266
1267 if (ring == &dev_priv->ring[VCS]) {
1268 if (invalidate_domains & I915_GEM_GPU_DOMAINS)
1269 cmd |= MI_INVALIDATE_TLB | MI_INVALIDATE_BSD |
1270 MI_FLUSH_DW_STORE_INDEX |
1271 MI_FLUSH_DW_OP_STOREDW;
1272 } else {
1273 if (invalidate_domains & I915_GEM_DOMAIN_RENDER)
1274 cmd |= MI_INVALIDATE_TLB | MI_FLUSH_DW_STORE_INDEX |
1275 MI_FLUSH_DW_OP_STOREDW;
1276 }
1277
1278 intel_logical_ring_emit(ringbuf, cmd);
1279 intel_logical_ring_emit(ringbuf,
1280 I915_GEM_HWS_SCRATCH_ADDR |
1281 MI_FLUSH_DW_USE_GTT);
1282 intel_logical_ring_emit(ringbuf, 0); /* upper addr */
1283 intel_logical_ring_emit(ringbuf, 0); /* value */
1284 intel_logical_ring_advance(ringbuf);
1285
1286 return 0;
1287}
1288
1289static int gen8_emit_flush_render(struct intel_ringbuffer *ringbuf,
Nick Hoath21076372015-01-15 13:10:38 +00001290 struct intel_context *ctx,
Oscar Mateo47122742014-07-24 17:04:28 +01001291 u32 invalidate_domains,
1292 u32 flush_domains)
1293{
1294 struct intel_engine_cs *ring = ringbuf->ring;
1295 u32 scratch_addr = ring->scratch.gtt_offset + 2 * CACHELINE_BYTES;
1296 u32 flags = 0;
1297 int ret;
1298
1299 flags |= PIPE_CONTROL_CS_STALL;
1300
1301 if (flush_domains) {
1302 flags |= PIPE_CONTROL_RENDER_TARGET_CACHE_FLUSH;
1303 flags |= PIPE_CONTROL_DEPTH_CACHE_FLUSH;
1304 }
1305
1306 if (invalidate_domains) {
1307 flags |= PIPE_CONTROL_TLB_INVALIDATE;
1308 flags |= PIPE_CONTROL_INSTRUCTION_CACHE_INVALIDATE;
1309 flags |= PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE;
1310 flags |= PIPE_CONTROL_VF_CACHE_INVALIDATE;
1311 flags |= PIPE_CONTROL_CONST_CACHE_INVALIDATE;
1312 flags |= PIPE_CONTROL_STATE_CACHE_INVALIDATE;
1313 flags |= PIPE_CONTROL_QW_WRITE;
1314 flags |= PIPE_CONTROL_GLOBAL_GTT_IVB;
1315 }
1316
Nick Hoath21076372015-01-15 13:10:38 +00001317 ret = intel_logical_ring_begin(ringbuf, ctx, 6);
Oscar Mateo47122742014-07-24 17:04:28 +01001318 if (ret)
1319 return ret;
1320
1321 intel_logical_ring_emit(ringbuf, GFX_OP_PIPE_CONTROL(6));
1322 intel_logical_ring_emit(ringbuf, flags);
1323 intel_logical_ring_emit(ringbuf, scratch_addr);
1324 intel_logical_ring_emit(ringbuf, 0);
1325 intel_logical_ring_emit(ringbuf, 0);
1326 intel_logical_ring_emit(ringbuf, 0);
1327 intel_logical_ring_advance(ringbuf);
1328
1329 return 0;
1330}
1331
Oscar Mateoe94e37a2014-07-24 17:04:25 +01001332static u32 gen8_get_seqno(struct intel_engine_cs *ring, bool lazy_coherency)
1333{
1334 return intel_read_status_page(ring, I915_GEM_HWS_INDEX);
1335}
1336
1337static void gen8_set_seqno(struct intel_engine_cs *ring, u32 seqno)
1338{
1339 intel_write_status_page(ring, I915_GEM_HWS_INDEX, seqno);
1340}
1341
Nick Hoath2d129552015-01-15 13:10:36 +00001342static int gen8_emit_request(struct intel_ringbuffer *ringbuf,
1343 struct drm_i915_gem_request *request)
Oscar Mateo4da46e12014-07-24 17:04:27 +01001344{
1345 struct intel_engine_cs *ring = ringbuf->ring;
1346 u32 cmd;
1347 int ret;
1348
Nick Hoath21076372015-01-15 13:10:38 +00001349 ret = intel_logical_ring_begin(ringbuf, request->ctx, 6);
Oscar Mateo4da46e12014-07-24 17:04:27 +01001350 if (ret)
1351 return ret;
1352
Ville Syrjälä8edfbb82014-11-14 18:16:56 +02001353 cmd = MI_STORE_DWORD_IMM_GEN4;
Oscar Mateo4da46e12014-07-24 17:04:27 +01001354 cmd |= MI_GLOBAL_GTT;
1355
1356 intel_logical_ring_emit(ringbuf, cmd);
1357 intel_logical_ring_emit(ringbuf,
1358 (ring->status_page.gfx_addr +
1359 (I915_GEM_HWS_INDEX << MI_STORE_DWORD_INDEX_SHIFT)));
1360 intel_logical_ring_emit(ringbuf, 0);
John Harrison6259cea2014-11-24 18:49:29 +00001361 intel_logical_ring_emit(ringbuf,
1362 i915_gem_request_get_seqno(ring->outstanding_lazy_request));
Oscar Mateo4da46e12014-07-24 17:04:27 +01001363 intel_logical_ring_emit(ringbuf, MI_USER_INTERRUPT);
1364 intel_logical_ring_emit(ringbuf, MI_NOOP);
Nick Hoath21076372015-01-15 13:10:38 +00001365 intel_logical_ring_advance_and_submit(ringbuf, request->ctx, request);
Oscar Mateo4da46e12014-07-24 17:04:27 +01001366
1367 return 0;
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);
1405
1406 if (ring->status_page.obj) {
1407 kunmap(sg_page(ring->status_page.obj->pages->sgl));
1408 ring->status_page.obj = NULL;
1409 }
Oscar Mateo454afeb2014-07-24 17:04:22 +01001410}
1411
1412static int logical_ring_init(struct drm_device *dev, struct intel_engine_cs *ring)
1413{
Oscar Mateo48d82382014-07-24 17:04:23 +01001414 int ret;
Oscar Mateo48d82382014-07-24 17:04:23 +01001415
1416 /* Intentionally left blank. */
1417 ring->buffer = NULL;
1418
1419 ring->dev = dev;
1420 INIT_LIST_HEAD(&ring->active_list);
1421 INIT_LIST_HEAD(&ring->request_list);
1422 init_waitqueue_head(&ring->irq_queue);
1423
Michel Thierryacdd8842014-07-24 17:04:38 +01001424 INIT_LIST_HEAD(&ring->execlist_queue);
Thomas Danielc86ee3a92014-11-13 10:27:05 +00001425 INIT_LIST_HEAD(&ring->execlist_retired_req_list);
Michel Thierryacdd8842014-07-24 17:04:38 +01001426 spin_lock_init(&ring->execlist_lock);
1427
Oscar Mateo48d82382014-07-24 17:04:23 +01001428 ret = i915_cmd_parser_init_ring(ring);
1429 if (ret)
1430 return ret;
1431
Oscar Mateo564ddb22014-08-21 11:40:54 +01001432 ret = intel_lr_context_deferred_create(ring->default_context, ring);
1433
1434 return ret;
Oscar Mateo454afeb2014-07-24 17:04:22 +01001435}
1436
1437static int logical_render_ring_init(struct drm_device *dev)
1438{
1439 struct drm_i915_private *dev_priv = dev->dev_private;
1440 struct intel_engine_cs *ring = &dev_priv->ring[RCS];
Daniel Vetter99be1df2014-11-20 00:33:06 +01001441 int ret;
Oscar Mateo454afeb2014-07-24 17:04:22 +01001442
1443 ring->name = "render ring";
1444 ring->id = RCS;
1445 ring->mmio_base = RENDER_RING_BASE;
1446 ring->irq_enable_mask =
1447 GT_RENDER_USER_INTERRUPT << GEN8_RCS_IRQ_SHIFT;
Oscar Mateo73d477f2014-07-24 17:04:31 +01001448 ring->irq_keep_mask =
1449 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_RCS_IRQ_SHIFT;
1450 if (HAS_L3_DPF(dev))
1451 ring->irq_keep_mask |= GT_RENDER_L3_PARITY_ERROR_INTERRUPT;
Oscar Mateo454afeb2014-07-24 17:04:22 +01001452
Daniel Vetterecfe00d2014-11-20 00:33:04 +01001453 ring->init_hw = gen8_init_render_ring;
Thomas Daniele7778be2014-12-02 12:50:48 +00001454 ring->init_context = gen8_init_rcs_context;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001455 ring->cleanup = intel_fini_pipe_control;
Oscar Mateoe94e37a2014-07-24 17:04:25 +01001456 ring->get_seqno = gen8_get_seqno;
1457 ring->set_seqno = gen8_set_seqno;
Oscar Mateo4da46e12014-07-24 17:04:27 +01001458 ring->emit_request = gen8_emit_request;
Oscar Mateo47122742014-07-24 17:04:28 +01001459 ring->emit_flush = gen8_emit_flush_render;
Oscar Mateo73d477f2014-07-24 17:04:31 +01001460 ring->irq_get = gen8_logical_ring_get_irq;
1461 ring->irq_put = gen8_logical_ring_put_irq;
Oscar Mateo15648582014-07-24 17:04:32 +01001462 ring->emit_bb_start = gen8_emit_bb_start;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001463
Daniel Vetter99be1df2014-11-20 00:33:06 +01001464 ring->dev = dev;
1465 ret = logical_ring_init(dev, ring);
1466 if (ret)
1467 return ret;
1468
1469 return intel_init_pipe_control(ring);
Oscar Mateo454afeb2014-07-24 17:04:22 +01001470}
1471
1472static int logical_bsd_ring_init(struct drm_device *dev)
1473{
1474 struct drm_i915_private *dev_priv = dev->dev_private;
1475 struct intel_engine_cs *ring = &dev_priv->ring[VCS];
1476
1477 ring->name = "bsd ring";
1478 ring->id = VCS;
1479 ring->mmio_base = GEN6_BSD_RING_BASE;
1480 ring->irq_enable_mask =
1481 GT_RENDER_USER_INTERRUPT << GEN8_VCS1_IRQ_SHIFT;
Oscar Mateo73d477f2014-07-24 17:04:31 +01001482 ring->irq_keep_mask =
1483 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VCS1_IRQ_SHIFT;
Oscar Mateo454afeb2014-07-24 17:04:22 +01001484
Daniel Vetterecfe00d2014-11-20 00:33:04 +01001485 ring->init_hw = gen8_init_common_ring;
Oscar Mateoe94e37a2014-07-24 17:04:25 +01001486 ring->get_seqno = gen8_get_seqno;
1487 ring->set_seqno = gen8_set_seqno;
Oscar Mateo4da46e12014-07-24 17:04:27 +01001488 ring->emit_request = gen8_emit_request;
Oscar Mateo47122742014-07-24 17:04:28 +01001489 ring->emit_flush = gen8_emit_flush;
Oscar Mateo73d477f2014-07-24 17:04:31 +01001490 ring->irq_get = gen8_logical_ring_get_irq;
1491 ring->irq_put = gen8_logical_ring_put_irq;
Oscar Mateo15648582014-07-24 17:04:32 +01001492 ring->emit_bb_start = gen8_emit_bb_start;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001493
Oscar Mateo454afeb2014-07-24 17:04:22 +01001494 return logical_ring_init(dev, ring);
1495}
1496
1497static int logical_bsd2_ring_init(struct drm_device *dev)
1498{
1499 struct drm_i915_private *dev_priv = dev->dev_private;
1500 struct intel_engine_cs *ring = &dev_priv->ring[VCS2];
1501
1502 ring->name = "bds2 ring";
1503 ring->id = VCS2;
1504 ring->mmio_base = GEN8_BSD2_RING_BASE;
1505 ring->irq_enable_mask =
1506 GT_RENDER_USER_INTERRUPT << GEN8_VCS2_IRQ_SHIFT;
Oscar Mateo73d477f2014-07-24 17:04:31 +01001507 ring->irq_keep_mask =
1508 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VCS2_IRQ_SHIFT;
Oscar Mateo454afeb2014-07-24 17:04:22 +01001509
Daniel Vetterecfe00d2014-11-20 00:33:04 +01001510 ring->init_hw = gen8_init_common_ring;
Oscar Mateoe94e37a2014-07-24 17:04:25 +01001511 ring->get_seqno = gen8_get_seqno;
1512 ring->set_seqno = gen8_set_seqno;
Oscar Mateo4da46e12014-07-24 17:04:27 +01001513 ring->emit_request = gen8_emit_request;
Oscar Mateo47122742014-07-24 17:04:28 +01001514 ring->emit_flush = gen8_emit_flush;
Oscar Mateo73d477f2014-07-24 17:04:31 +01001515 ring->irq_get = gen8_logical_ring_get_irq;
1516 ring->irq_put = gen8_logical_ring_put_irq;
Oscar Mateo15648582014-07-24 17:04:32 +01001517 ring->emit_bb_start = gen8_emit_bb_start;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001518
Oscar Mateo454afeb2014-07-24 17:04:22 +01001519 return logical_ring_init(dev, ring);
1520}
1521
1522static int logical_blt_ring_init(struct drm_device *dev)
1523{
1524 struct drm_i915_private *dev_priv = dev->dev_private;
1525 struct intel_engine_cs *ring = &dev_priv->ring[BCS];
1526
1527 ring->name = "blitter ring";
1528 ring->id = BCS;
1529 ring->mmio_base = BLT_RING_BASE;
1530 ring->irq_enable_mask =
1531 GT_RENDER_USER_INTERRUPT << GEN8_BCS_IRQ_SHIFT;
Oscar Mateo73d477f2014-07-24 17:04:31 +01001532 ring->irq_keep_mask =
1533 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_BCS_IRQ_SHIFT;
Oscar Mateo454afeb2014-07-24 17:04:22 +01001534
Daniel Vetterecfe00d2014-11-20 00:33:04 +01001535 ring->init_hw = gen8_init_common_ring;
Oscar Mateoe94e37a2014-07-24 17:04:25 +01001536 ring->get_seqno = gen8_get_seqno;
1537 ring->set_seqno = gen8_set_seqno;
Oscar Mateo4da46e12014-07-24 17:04:27 +01001538 ring->emit_request = gen8_emit_request;
Oscar Mateo47122742014-07-24 17:04:28 +01001539 ring->emit_flush = gen8_emit_flush;
Oscar Mateo73d477f2014-07-24 17:04:31 +01001540 ring->irq_get = gen8_logical_ring_get_irq;
1541 ring->irq_put = gen8_logical_ring_put_irq;
Oscar Mateo15648582014-07-24 17:04:32 +01001542 ring->emit_bb_start = gen8_emit_bb_start;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001543
Oscar Mateo454afeb2014-07-24 17:04:22 +01001544 return logical_ring_init(dev, ring);
1545}
1546
1547static int logical_vebox_ring_init(struct drm_device *dev)
1548{
1549 struct drm_i915_private *dev_priv = dev->dev_private;
1550 struct intel_engine_cs *ring = &dev_priv->ring[VECS];
1551
1552 ring->name = "video enhancement ring";
1553 ring->id = VECS;
1554 ring->mmio_base = VEBOX_RING_BASE;
1555 ring->irq_enable_mask =
1556 GT_RENDER_USER_INTERRUPT << GEN8_VECS_IRQ_SHIFT;
Oscar Mateo73d477f2014-07-24 17:04:31 +01001557 ring->irq_keep_mask =
1558 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VECS_IRQ_SHIFT;
Oscar Mateo454afeb2014-07-24 17:04:22 +01001559
Daniel Vetterecfe00d2014-11-20 00:33:04 +01001560 ring->init_hw = gen8_init_common_ring;
Oscar Mateoe94e37a2014-07-24 17:04:25 +01001561 ring->get_seqno = gen8_get_seqno;
1562 ring->set_seqno = gen8_set_seqno;
Oscar Mateo4da46e12014-07-24 17:04:27 +01001563 ring->emit_request = gen8_emit_request;
Oscar Mateo47122742014-07-24 17:04:28 +01001564 ring->emit_flush = gen8_emit_flush;
Oscar Mateo73d477f2014-07-24 17:04:31 +01001565 ring->irq_get = gen8_logical_ring_get_irq;
1566 ring->irq_put = gen8_logical_ring_put_irq;
Oscar Mateo15648582014-07-24 17:04:32 +01001567 ring->emit_bb_start = gen8_emit_bb_start;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001568
Oscar Mateo454afeb2014-07-24 17:04:22 +01001569 return logical_ring_init(dev, ring);
1570}
1571
Oscar Mateo73e4d072014-07-24 17:04:48 +01001572/**
1573 * intel_logical_rings_init() - allocate, populate and init the Engine Command Streamers
1574 * @dev: DRM device.
1575 *
1576 * This function inits the engines for an Execlists submission style (the equivalent in the
1577 * legacy ringbuffer submission world would be i915_gem_init_rings). It does it only for
1578 * those engines that are present in the hardware.
1579 *
1580 * Return: non-zero if the initialization failed.
1581 */
Oscar Mateo454afeb2014-07-24 17:04:22 +01001582int intel_logical_rings_init(struct drm_device *dev)
1583{
1584 struct drm_i915_private *dev_priv = dev->dev_private;
1585 int ret;
1586
1587 ret = logical_render_ring_init(dev);
1588 if (ret)
1589 return ret;
1590
1591 if (HAS_BSD(dev)) {
1592 ret = logical_bsd_ring_init(dev);
1593 if (ret)
1594 goto cleanup_render_ring;
1595 }
1596
1597 if (HAS_BLT(dev)) {
1598 ret = logical_blt_ring_init(dev);
1599 if (ret)
1600 goto cleanup_bsd_ring;
1601 }
1602
1603 if (HAS_VEBOX(dev)) {
1604 ret = logical_vebox_ring_init(dev);
1605 if (ret)
1606 goto cleanup_blt_ring;
1607 }
1608
1609 if (HAS_BSD2(dev)) {
1610 ret = logical_bsd2_ring_init(dev);
1611 if (ret)
1612 goto cleanup_vebox_ring;
1613 }
1614
1615 ret = i915_gem_set_seqno(dev, ((u32)~0 - 0x1000));
1616 if (ret)
1617 goto cleanup_bsd2_ring;
1618
1619 return 0;
1620
1621cleanup_bsd2_ring:
1622 intel_logical_ring_cleanup(&dev_priv->ring[VCS2]);
1623cleanup_vebox_ring:
1624 intel_logical_ring_cleanup(&dev_priv->ring[VECS]);
1625cleanup_blt_ring:
1626 intel_logical_ring_cleanup(&dev_priv->ring[BCS]);
1627cleanup_bsd_ring:
1628 intel_logical_ring_cleanup(&dev_priv->ring[VCS]);
1629cleanup_render_ring:
1630 intel_logical_ring_cleanup(&dev_priv->ring[RCS]);
1631
1632 return ret;
1633}
1634
Oscar Mateo564ddb22014-08-21 11:40:54 +01001635int intel_lr_context_render_state_init(struct intel_engine_cs *ring,
1636 struct intel_context *ctx)
1637{
1638 struct intel_ringbuffer *ringbuf = ctx->engine[ring->id].ringbuf;
1639 struct render_state so;
1640 struct drm_i915_file_private *file_priv = ctx->file_priv;
1641 struct drm_file *file = file_priv ? file_priv->file : NULL;
1642 int ret;
1643
1644 ret = i915_gem_render_state_prepare(ring, &so);
1645 if (ret)
1646 return ret;
1647
1648 if (so.rodata == NULL)
1649 return 0;
1650
1651 ret = ring->emit_bb_start(ringbuf,
Nick Hoath21076372015-01-15 13:10:38 +00001652 ctx,
Oscar Mateo564ddb22014-08-21 11:40:54 +01001653 so.ggtt_offset,
1654 I915_DISPATCH_SECURE);
1655 if (ret)
1656 goto out;
1657
1658 i915_vma_move_to_active(i915_gem_obj_to_ggtt(so.obj), ring);
1659
John Harrison9400ae52014-11-24 18:49:36 +00001660 ret = __i915_add_request(ring, file, so.obj);
Oscar Mateo564ddb22014-08-21 11:40:54 +01001661 /* intel_logical_ring_add_request moves object to inactive if it
1662 * fails */
1663out:
1664 i915_gem_render_state_fini(&so);
1665 return ret;
1666}
1667
Oscar Mateo8670d6f2014-07-24 17:04:17 +01001668static int
1669populate_lr_context(struct intel_context *ctx, struct drm_i915_gem_object *ctx_obj,
1670 struct intel_engine_cs *ring, struct intel_ringbuffer *ringbuf)
1671{
Thomas Daniel2d965532014-08-19 10:13:36 +01001672 struct drm_device *dev = ring->dev;
1673 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterae6c4802014-08-06 15:04:53 +02001674 struct i915_hw_ppgtt *ppgtt = ctx->ppgtt;
Oscar Mateo8670d6f2014-07-24 17:04:17 +01001675 struct page *page;
1676 uint32_t *reg_state;
1677 int ret;
1678
Thomas Daniel2d965532014-08-19 10:13:36 +01001679 if (!ppgtt)
1680 ppgtt = dev_priv->mm.aliasing_ppgtt;
1681
Oscar Mateo8670d6f2014-07-24 17:04:17 +01001682 ret = i915_gem_object_set_to_cpu_domain(ctx_obj, true);
1683 if (ret) {
1684 DRM_DEBUG_DRIVER("Could not set to CPU domain\n");
1685 return ret;
1686 }
1687
1688 ret = i915_gem_object_get_pages(ctx_obj);
1689 if (ret) {
1690 DRM_DEBUG_DRIVER("Could not get object pages\n");
1691 return ret;
1692 }
1693
1694 i915_gem_object_pin_pages(ctx_obj);
1695
1696 /* The second page of the context object contains some fields which must
1697 * be set up prior to the first execution. */
1698 page = i915_gem_object_get_page(ctx_obj, 1);
1699 reg_state = kmap_atomic(page);
1700
1701 /* A context is actually a big batch buffer with several MI_LOAD_REGISTER_IMM
1702 * commands followed by (reg, value) pairs. The values we are setting here are
1703 * only for the first context restore: on a subsequent save, the GPU will
1704 * recreate this batchbuffer with new values (including all the missing
1705 * MI_LOAD_REGISTER_IMM commands that we are not initializing here). */
1706 if (ring->id == RCS)
1707 reg_state[CTX_LRI_HEADER_0] = MI_LOAD_REGISTER_IMM(14);
1708 else
1709 reg_state[CTX_LRI_HEADER_0] = MI_LOAD_REGISTER_IMM(11);
1710 reg_state[CTX_LRI_HEADER_0] |= MI_LRI_FORCE_POSTED;
1711 reg_state[CTX_CONTEXT_CONTROL] = RING_CONTEXT_CONTROL(ring);
1712 reg_state[CTX_CONTEXT_CONTROL+1] =
1713 _MASKED_BIT_ENABLE((1<<3) | MI_RESTORE_INHIBIT);
1714 reg_state[CTX_RING_HEAD] = RING_HEAD(ring->mmio_base);
1715 reg_state[CTX_RING_HEAD+1] = 0;
1716 reg_state[CTX_RING_TAIL] = RING_TAIL(ring->mmio_base);
1717 reg_state[CTX_RING_TAIL+1] = 0;
1718 reg_state[CTX_RING_BUFFER_START] = RING_START(ring->mmio_base);
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001719 /* Ring buffer start address is not known until the buffer is pinned.
1720 * It is written to the context image in execlists_update_context()
1721 */
Oscar Mateo8670d6f2014-07-24 17:04:17 +01001722 reg_state[CTX_RING_BUFFER_CONTROL] = RING_CTL(ring->mmio_base);
1723 reg_state[CTX_RING_BUFFER_CONTROL+1] =
1724 ((ringbuf->size - PAGE_SIZE) & RING_NR_PAGES) | RING_VALID;
1725 reg_state[CTX_BB_HEAD_U] = ring->mmio_base + 0x168;
1726 reg_state[CTX_BB_HEAD_U+1] = 0;
1727 reg_state[CTX_BB_HEAD_L] = ring->mmio_base + 0x140;
1728 reg_state[CTX_BB_HEAD_L+1] = 0;
1729 reg_state[CTX_BB_STATE] = ring->mmio_base + 0x110;
1730 reg_state[CTX_BB_STATE+1] = (1<<5);
1731 reg_state[CTX_SECOND_BB_HEAD_U] = ring->mmio_base + 0x11c;
1732 reg_state[CTX_SECOND_BB_HEAD_U+1] = 0;
1733 reg_state[CTX_SECOND_BB_HEAD_L] = ring->mmio_base + 0x114;
1734 reg_state[CTX_SECOND_BB_HEAD_L+1] = 0;
1735 reg_state[CTX_SECOND_BB_STATE] = ring->mmio_base + 0x118;
1736 reg_state[CTX_SECOND_BB_STATE+1] = 0;
1737 if (ring->id == RCS) {
1738 /* TODO: according to BSpec, the register state context
1739 * for CHV does not have these. OTOH, these registers do
1740 * exist in CHV. I'm waiting for a clarification */
1741 reg_state[CTX_BB_PER_CTX_PTR] = ring->mmio_base + 0x1c0;
1742 reg_state[CTX_BB_PER_CTX_PTR+1] = 0;
1743 reg_state[CTX_RCS_INDIRECT_CTX] = ring->mmio_base + 0x1c4;
1744 reg_state[CTX_RCS_INDIRECT_CTX+1] = 0;
1745 reg_state[CTX_RCS_INDIRECT_CTX_OFFSET] = ring->mmio_base + 0x1c8;
1746 reg_state[CTX_RCS_INDIRECT_CTX_OFFSET+1] = 0;
1747 }
1748 reg_state[CTX_LRI_HEADER_1] = MI_LOAD_REGISTER_IMM(9);
1749 reg_state[CTX_LRI_HEADER_1] |= MI_LRI_FORCE_POSTED;
1750 reg_state[CTX_CTX_TIMESTAMP] = ring->mmio_base + 0x3a8;
1751 reg_state[CTX_CTX_TIMESTAMP+1] = 0;
1752 reg_state[CTX_PDP3_UDW] = GEN8_RING_PDP_UDW(ring, 3);
1753 reg_state[CTX_PDP3_LDW] = GEN8_RING_PDP_LDW(ring, 3);
1754 reg_state[CTX_PDP2_UDW] = GEN8_RING_PDP_UDW(ring, 2);
1755 reg_state[CTX_PDP2_LDW] = GEN8_RING_PDP_LDW(ring, 2);
1756 reg_state[CTX_PDP1_UDW] = GEN8_RING_PDP_UDW(ring, 1);
1757 reg_state[CTX_PDP1_LDW] = GEN8_RING_PDP_LDW(ring, 1);
1758 reg_state[CTX_PDP0_UDW] = GEN8_RING_PDP_UDW(ring, 0);
1759 reg_state[CTX_PDP0_LDW] = GEN8_RING_PDP_LDW(ring, 0);
1760 reg_state[CTX_PDP3_UDW+1] = upper_32_bits(ppgtt->pd_dma_addr[3]);
1761 reg_state[CTX_PDP3_LDW+1] = lower_32_bits(ppgtt->pd_dma_addr[3]);
1762 reg_state[CTX_PDP2_UDW+1] = upper_32_bits(ppgtt->pd_dma_addr[2]);
1763 reg_state[CTX_PDP2_LDW+1] = lower_32_bits(ppgtt->pd_dma_addr[2]);
1764 reg_state[CTX_PDP1_UDW+1] = upper_32_bits(ppgtt->pd_dma_addr[1]);
1765 reg_state[CTX_PDP1_LDW+1] = lower_32_bits(ppgtt->pd_dma_addr[1]);
1766 reg_state[CTX_PDP0_UDW+1] = upper_32_bits(ppgtt->pd_dma_addr[0]);
1767 reg_state[CTX_PDP0_LDW+1] = lower_32_bits(ppgtt->pd_dma_addr[0]);
1768 if (ring->id == RCS) {
1769 reg_state[CTX_LRI_HEADER_2] = MI_LOAD_REGISTER_IMM(1);
1770 reg_state[CTX_R_PWR_CLK_STATE] = 0x20c8;
1771 reg_state[CTX_R_PWR_CLK_STATE+1] = 0;
1772 }
1773
1774 kunmap_atomic(reg_state);
1775
1776 ctx_obj->dirty = 1;
1777 set_page_dirty(page);
1778 i915_gem_object_unpin_pages(ctx_obj);
1779
1780 return 0;
1781}
1782
Oscar Mateo73e4d072014-07-24 17:04:48 +01001783/**
1784 * intel_lr_context_free() - free the LRC specific bits of a context
1785 * @ctx: the LR context to free.
1786 *
1787 * The real context freeing is done in i915_gem_context_free: this only
1788 * takes care of the bits that are LRC related: the per-engine backing
1789 * objects and the logical ringbuffer.
1790 */
Oscar Mateoede7d422014-07-24 17:04:12 +01001791void intel_lr_context_free(struct intel_context *ctx)
1792{
Oscar Mateo8c8579172014-07-24 17:04:14 +01001793 int i;
1794
1795 for (i = 0; i < I915_NUM_RINGS; i++) {
1796 struct drm_i915_gem_object *ctx_obj = ctx->engine[i].state;
Oscar Mateo84c23772014-07-24 17:04:15 +01001797
Oscar Mateo8c8579172014-07-24 17:04:14 +01001798 if (ctx_obj) {
Oscar Mateodcb4c122014-11-13 10:28:10 +00001799 struct intel_ringbuffer *ringbuf =
1800 ctx->engine[i].ringbuf;
1801 struct intel_engine_cs *ring = ringbuf->ring;
1802
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001803 if (ctx == ring->default_context) {
1804 intel_unpin_ringbuffer_obj(ringbuf);
1805 i915_gem_object_ggtt_unpin(ctx_obj);
1806 }
Oscar Mateo84c23772014-07-24 17:04:15 +01001807 intel_destroy_ringbuffer_obj(ringbuf);
1808 kfree(ringbuf);
Oscar Mateo8c8579172014-07-24 17:04:14 +01001809 drm_gem_object_unreference(&ctx_obj->base);
1810 }
1811 }
1812}
1813
1814static uint32_t get_lr_context_size(struct intel_engine_cs *ring)
1815{
1816 int ret = 0;
1817
Michael H. Nguyen468c6812014-11-13 17:51:49 +00001818 WARN_ON(INTEL_INFO(ring->dev)->gen < 8);
Oscar Mateo8c8579172014-07-24 17:04:14 +01001819
1820 switch (ring->id) {
1821 case RCS:
Michael H. Nguyen468c6812014-11-13 17:51:49 +00001822 if (INTEL_INFO(ring->dev)->gen >= 9)
1823 ret = GEN9_LR_CONTEXT_RENDER_SIZE;
1824 else
1825 ret = GEN8_LR_CONTEXT_RENDER_SIZE;
Oscar Mateo8c8579172014-07-24 17:04:14 +01001826 break;
1827 case VCS:
1828 case BCS:
1829 case VECS:
1830 case VCS2:
1831 ret = GEN8_LR_CONTEXT_OTHER_SIZE;
1832 break;
1833 }
1834
1835 return ret;
Oscar Mateoede7d422014-07-24 17:04:12 +01001836}
1837
Daniel Vetter70b0ea82014-11-18 09:09:32 +01001838static void lrc_setup_hardware_status_page(struct intel_engine_cs *ring,
Thomas Daniel1df06b72014-10-29 09:52:51 +00001839 struct drm_i915_gem_object *default_ctx_obj)
1840{
1841 struct drm_i915_private *dev_priv = ring->dev->dev_private;
1842
1843 /* The status page is offset 0 from the default context object
1844 * in LRC mode. */
1845 ring->status_page.gfx_addr = i915_gem_obj_ggtt_offset(default_ctx_obj);
1846 ring->status_page.page_addr =
1847 kmap(sg_page(default_ctx_obj->pages->sgl));
Thomas Daniel1df06b72014-10-29 09:52:51 +00001848 ring->status_page.obj = default_ctx_obj;
1849
1850 I915_WRITE(RING_HWS_PGA(ring->mmio_base),
1851 (u32)ring->status_page.gfx_addr);
1852 POSTING_READ(RING_HWS_PGA(ring->mmio_base));
Thomas Daniel1df06b72014-10-29 09:52:51 +00001853}
1854
Oscar Mateo73e4d072014-07-24 17:04:48 +01001855/**
1856 * intel_lr_context_deferred_create() - create the LRC specific bits of a context
1857 * @ctx: LR context to create.
1858 * @ring: engine to be used with the context.
1859 *
1860 * This function can be called more than once, with different engines, if we plan
1861 * to use the context with them. The context backing objects and the ringbuffers
1862 * (specially the ringbuffer backing objects) suck a lot of memory up, and that's why
1863 * the creation is a deferred call: it's better to make sure first that we need to use
1864 * a given ring with the context.
1865 *
Masanari Iida32197aa2014-10-20 23:53:13 +09001866 * Return: non-zero on error.
Oscar Mateo73e4d072014-07-24 17:04:48 +01001867 */
Oscar Mateoede7d422014-07-24 17:04:12 +01001868int intel_lr_context_deferred_create(struct intel_context *ctx,
1869 struct intel_engine_cs *ring)
1870{
Oscar Mateodcb4c122014-11-13 10:28:10 +00001871 const bool is_global_default_ctx = (ctx == ring->default_context);
Oscar Mateo8c8579172014-07-24 17:04:14 +01001872 struct drm_device *dev = ring->dev;
1873 struct drm_i915_gem_object *ctx_obj;
1874 uint32_t context_size;
Oscar Mateo84c23772014-07-24 17:04:15 +01001875 struct intel_ringbuffer *ringbuf;
Oscar Mateo8c8579172014-07-24 17:04:14 +01001876 int ret;
1877
Oscar Mateoede7d422014-07-24 17:04:12 +01001878 WARN_ON(ctx->legacy_hw_ctx.rcs_state != NULL);
Daniel Vetterbfc882b2014-11-20 00:33:08 +01001879 WARN_ON(ctx->engine[ring->id].state);
Oscar Mateoede7d422014-07-24 17:04:12 +01001880
Oscar Mateo8c8579172014-07-24 17:04:14 +01001881 context_size = round_up(get_lr_context_size(ring), 4096);
1882
1883 ctx_obj = i915_gem_alloc_context_obj(dev, context_size);
1884 if (IS_ERR(ctx_obj)) {
1885 ret = PTR_ERR(ctx_obj);
1886 DRM_DEBUG_DRIVER("Alloc LRC backing obj failed: %d\n", ret);
1887 return ret;
1888 }
1889
Oscar Mateodcb4c122014-11-13 10:28:10 +00001890 if (is_global_default_ctx) {
1891 ret = i915_gem_obj_ggtt_pin(ctx_obj, GEN8_LR_CONTEXT_ALIGN, 0);
1892 if (ret) {
1893 DRM_DEBUG_DRIVER("Pin LRC backing obj failed: %d\n",
1894 ret);
1895 drm_gem_object_unreference(&ctx_obj->base);
1896 return ret;
1897 }
Oscar Mateo8c8579172014-07-24 17:04:14 +01001898 }
1899
Oscar Mateo84c23772014-07-24 17:04:15 +01001900 ringbuf = kzalloc(sizeof(*ringbuf), GFP_KERNEL);
1901 if (!ringbuf) {
1902 DRM_DEBUG_DRIVER("Failed to allocate ringbuffer %s\n",
1903 ring->name);
Oscar Mateo84c23772014-07-24 17:04:15 +01001904 ret = -ENOMEM;
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001905 goto error_unpin_ctx;
Oscar Mateo84c23772014-07-24 17:04:15 +01001906 }
1907
Daniel Vetter0c7dd532014-08-11 16:17:44 +02001908 ringbuf->ring = ring;
Oscar Mateo582d67f2014-07-24 17:04:16 +01001909
Oscar Mateo84c23772014-07-24 17:04:15 +01001910 ringbuf->size = 32 * PAGE_SIZE;
1911 ringbuf->effective_size = ringbuf->size;
1912 ringbuf->head = 0;
1913 ringbuf->tail = 0;
Oscar Mateo84c23772014-07-24 17:04:15 +01001914 ringbuf->last_retired_head = -1;
Dave Gordonebd0fd42014-11-27 11:22:49 +00001915 intel_ring_update_space(ringbuf);
Oscar Mateo84c23772014-07-24 17:04:15 +01001916
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001917 if (ringbuf->obj == NULL) {
1918 ret = intel_alloc_ringbuffer_obj(dev, ringbuf);
1919 if (ret) {
1920 DRM_DEBUG_DRIVER(
1921 "Failed to allocate ringbuffer obj %s: %d\n",
Oscar Mateo84c23772014-07-24 17:04:15 +01001922 ring->name, ret);
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001923 goto error_free_rbuf;
1924 }
1925
1926 if (is_global_default_ctx) {
1927 ret = intel_pin_and_map_ringbuffer_obj(dev, ringbuf);
1928 if (ret) {
1929 DRM_ERROR(
1930 "Failed to pin and map ringbuffer %s: %d\n",
1931 ring->name, ret);
1932 goto error_destroy_rbuf;
1933 }
1934 }
1935
Oscar Mateo8670d6f2014-07-24 17:04:17 +01001936 }
1937
1938 ret = populate_lr_context(ctx, ctx_obj, ring, ringbuf);
1939 if (ret) {
1940 DRM_DEBUG_DRIVER("Failed to populate LRC: %d\n", ret);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01001941 goto error;
Oscar Mateo84c23772014-07-24 17:04:15 +01001942 }
1943
1944 ctx->engine[ring->id].ringbuf = ringbuf;
Oscar Mateo8c8579172014-07-24 17:04:14 +01001945 ctx->engine[ring->id].state = ctx_obj;
Oscar Mateoede7d422014-07-24 17:04:12 +01001946
Daniel Vetter70b0ea82014-11-18 09:09:32 +01001947 if (ctx == ring->default_context)
1948 lrc_setup_hardware_status_page(ring, ctx_obj);
Thomas Daniele7778be2014-12-02 12:50:48 +00001949 else if (ring->id == RCS && !ctx->rcs_initialized) {
Michel Thierry771b9a52014-11-11 16:47:33 +00001950 if (ring->init_context) {
1951 ret = ring->init_context(ring, ctx);
Thomas Daniele7778be2014-12-02 12:50:48 +00001952 if (ret) {
Michel Thierry771b9a52014-11-11 16:47:33 +00001953 DRM_ERROR("ring init context: %d\n", ret);
Thomas Daniele7778be2014-12-02 12:50:48 +00001954 ctx->engine[ring->id].ringbuf = NULL;
1955 ctx->engine[ring->id].state = NULL;
1956 goto error;
1957 }
Michel Thierry771b9a52014-11-11 16:47:33 +00001958 }
1959
Oscar Mateo564ddb22014-08-21 11:40:54 +01001960 ctx->rcs_initialized = true;
1961 }
1962
Oscar Mateoede7d422014-07-24 17:04:12 +01001963 return 0;
Oscar Mateo8670d6f2014-07-24 17:04:17 +01001964
1965error:
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001966 if (is_global_default_ctx)
1967 intel_unpin_ringbuffer_obj(ringbuf);
1968error_destroy_rbuf:
1969 intel_destroy_ringbuffer_obj(ringbuf);
1970error_free_rbuf:
Oscar Mateo8670d6f2014-07-24 17:04:17 +01001971 kfree(ringbuf);
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001972error_unpin_ctx:
Oscar Mateodcb4c122014-11-13 10:28:10 +00001973 if (is_global_default_ctx)
1974 i915_gem_object_ggtt_unpin(ctx_obj);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01001975 drm_gem_object_unreference(&ctx_obj->base);
1976 return ret;
Oscar Mateoede7d422014-07-24 17:04:12 +01001977}