blob: a5f614de08282b84678e9fb65d084bbb0bd74fab [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{
Nick Hoath6d3d8272015-01-15 13:10:39 +0000407 struct drm_i915_gem_request *req0 = NULL, *req1 = NULL;
408 struct drm_i915_gem_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 Hoath6d3d8272015-01-15 13:10:39 +0000420 } else if (req0->ctx == cursor->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 Hoath6d3d8272015-01-15 13:10:39 +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{
Nick Hoath6d3d8272015-01-15 13:10:39 +0000448 struct drm_i915_gem_request *head_req;
Thomas Daniele981e7b2014-07-24 17:04:39 +0100449
450 assert_spin_locked(&ring->execlist_lock);
451
452 head_req = list_first_entry_or_null(&ring->execlist_queue,
Nick Hoath6d3d8272015-01-15 13:10:39 +0000453 struct drm_i915_gem_request,
Thomas Daniele981e7b2014-07-24 17:04:39 +0100454 execlist_link);
455
456 if (head_req != NULL) {
457 struct drm_i915_gem_object *ctx_obj =
Nick Hoath6d3d8272015-01-15 13:10:39 +0000458 head_req->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{
Nick Hoath6d3d8272015-01-15 13:10:39 +0000540 struct drm_i915_gem_request *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
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000545 if (to != ring->default_context)
546 intel_lr_context_pin(ring, to);
547
Nick Hoath2d129552015-01-15 13:10:36 +0000548 if (!request) {
549 /*
550 * If there isn't a request associated with this submission,
551 * create one as a temporary holder.
552 */
553 WARN(1, "execlist context submission without request");
554 request = kzalloc(sizeof(*request), GFP_KERNEL);
555 if (request == NULL)
556 return -ENOMEM;
Nick Hoath2d129552015-01-15 13:10:36 +0000557 request->ring = ring;
Nick Hoath6d3d8272015-01-15 13:10:39 +0000558 request->ctx = to;
Nick Hoath21076372015-01-15 13:10:38 +0000559 } else {
560 WARN_ON(to != request->ctx);
Nick Hoath2d129552015-01-15 13:10:36 +0000561 }
Nick Hoath72f95af2015-01-15 13:10:37 +0000562 request->tail = tail;
Nick Hoath2d129552015-01-15 13:10:36 +0000563 i915_gem_request_reference(request);
Nick Hoath6d3d8272015-01-15 13:10:39 +0000564 i915_gem_context_reference(request->ctx);
Nick Hoath2d129552015-01-15 13:10:36 +0000565
Thomas Daniele981e7b2014-07-24 17:04:39 +0100566 intel_runtime_pm_get(dev_priv);
Michel Thierryacdd8842014-07-24 17:04:38 +0100567
568 spin_lock_irqsave(&ring->execlist_lock, flags);
569
Oscar Mateof1ad5a12014-07-24 17:04:41 +0100570 list_for_each_entry(cursor, &ring->execlist_queue, execlist_link)
571 if (++num_elements > 2)
572 break;
573
574 if (num_elements > 2) {
Nick Hoath6d3d8272015-01-15 13:10:39 +0000575 struct drm_i915_gem_request *tail_req;
Oscar Mateof1ad5a12014-07-24 17:04:41 +0100576
577 tail_req = list_last_entry(&ring->execlist_queue,
Nick Hoath6d3d8272015-01-15 13:10:39 +0000578 struct drm_i915_gem_request,
Oscar Mateof1ad5a12014-07-24 17:04:41 +0100579 execlist_link);
580
Nick Hoath6d3d8272015-01-15 13:10:39 +0000581 if (to == tail_req->ctx) {
Oscar Mateof1ad5a12014-07-24 17:04:41 +0100582 WARN(tail_req->elsp_submitted != 0,
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000583 "More than 2 already-submitted reqs queued\n");
Oscar Mateof1ad5a12014-07-24 17:04:41 +0100584 list_del(&tail_req->execlist_link);
Thomas Danielc86ee3a92014-11-13 10:27:05 +0000585 list_add_tail(&tail_req->execlist_link,
586 &ring->execlist_retired_req_list);
Oscar Mateof1ad5a12014-07-24 17:04:41 +0100587 }
588 }
589
Nick Hoath6d3d8272015-01-15 13:10:39 +0000590 list_add_tail(&request->execlist_link, &ring->execlist_queue);
Oscar Mateof1ad5a12014-07-24 17:04:41 +0100591 if (num_elements == 0)
Michel Thierryacdd8842014-07-24 17:04:38 +0100592 execlists_context_unqueue(ring);
593
594 spin_unlock_irqrestore(&ring->execlist_lock, flags);
595
596 return 0;
597}
598
Nick Hoath21076372015-01-15 13:10:38 +0000599static int logical_ring_invalidate_all_caches(struct intel_ringbuffer *ringbuf,
600 struct intel_context *ctx)
Oscar Mateoba8b7cc2014-07-24 17:04:33 +0100601{
602 struct intel_engine_cs *ring = ringbuf->ring;
603 uint32_t flush_domains;
604 int ret;
605
606 flush_domains = 0;
607 if (ring->gpu_caches_dirty)
608 flush_domains = I915_GEM_GPU_DOMAINS;
609
Nick Hoath21076372015-01-15 13:10:38 +0000610 ret = ring->emit_flush(ringbuf, ctx,
611 I915_GEM_GPU_DOMAINS, flush_domains);
Oscar Mateoba8b7cc2014-07-24 17:04:33 +0100612 if (ret)
613 return ret;
614
615 ring->gpu_caches_dirty = false;
616 return 0;
617}
618
619static int execlists_move_to_gpu(struct intel_ringbuffer *ringbuf,
Nick Hoath21076372015-01-15 13:10:38 +0000620 struct intel_context *ctx,
Oscar Mateoba8b7cc2014-07-24 17:04:33 +0100621 struct list_head *vmas)
622{
623 struct intel_engine_cs *ring = ringbuf->ring;
624 struct i915_vma *vma;
625 uint32_t flush_domains = 0;
626 bool flush_chipset = false;
627 int ret;
628
629 list_for_each_entry(vma, vmas, exec_list) {
630 struct drm_i915_gem_object *obj = vma->obj;
631
632 ret = i915_gem_object_sync(obj, ring);
633 if (ret)
634 return ret;
635
636 if (obj->base.write_domain & I915_GEM_DOMAIN_CPU)
637 flush_chipset |= i915_gem_clflush_object(obj, false);
638
639 flush_domains |= obj->base.write_domain;
640 }
641
642 if (flush_domains & I915_GEM_DOMAIN_GTT)
643 wmb();
644
645 /* Unconditionally invalidate gpu caches and ensure that we do flush
646 * any residual writes from the previous batch.
647 */
Nick Hoath21076372015-01-15 13:10:38 +0000648 return logical_ring_invalidate_all_caches(ringbuf, ctx);
Oscar Mateoba8b7cc2014-07-24 17:04:33 +0100649}
650
Oscar Mateo73e4d072014-07-24 17:04:48 +0100651/**
652 * execlists_submission() - submit a batchbuffer for execution, Execlists style
653 * @dev: DRM device.
654 * @file: DRM file.
655 * @ring: Engine Command Streamer to submit to.
656 * @ctx: Context to employ for this submission.
657 * @args: execbuffer call arguments.
658 * @vmas: list of vmas.
659 * @batch_obj: the batchbuffer to submit.
660 * @exec_start: batchbuffer start virtual address pointer.
661 * @flags: translated execbuffer call flags.
662 *
663 * This is the evil twin version of i915_gem_ringbuffer_submission. It abstracts
664 * away the submission details of the execbuffer ioctl call.
665 *
666 * Return: non-zero if the submission fails.
667 */
Oscar Mateo454afeb2014-07-24 17:04:22 +0100668int intel_execlists_submission(struct drm_device *dev, struct drm_file *file,
669 struct intel_engine_cs *ring,
670 struct intel_context *ctx,
671 struct drm_i915_gem_execbuffer2 *args,
672 struct list_head *vmas,
673 struct drm_i915_gem_object *batch_obj,
674 u64 exec_start, u32 flags)
675{
Oscar Mateoba8b7cc2014-07-24 17:04:33 +0100676 struct drm_i915_private *dev_priv = dev->dev_private;
677 struct intel_ringbuffer *ringbuf = ctx->engine[ring->id].ringbuf;
678 int instp_mode;
679 u32 instp_mask;
680 int ret;
681
682 instp_mode = args->flags & I915_EXEC_CONSTANTS_MASK;
683 instp_mask = I915_EXEC_CONSTANTS_MASK;
684 switch (instp_mode) {
685 case I915_EXEC_CONSTANTS_REL_GENERAL:
686 case I915_EXEC_CONSTANTS_ABSOLUTE:
687 case I915_EXEC_CONSTANTS_REL_SURFACE:
688 if (instp_mode != 0 && ring != &dev_priv->ring[RCS]) {
689 DRM_DEBUG("non-0 rel constants mode on non-RCS\n");
690 return -EINVAL;
691 }
692
693 if (instp_mode != dev_priv->relative_constants_mode) {
694 if (instp_mode == I915_EXEC_CONSTANTS_REL_SURFACE) {
695 DRM_DEBUG("rel surface constants mode invalid on gen5+\n");
696 return -EINVAL;
697 }
698
699 /* The HW changed the meaning on this bit on gen6 */
700 instp_mask &= ~I915_EXEC_CONSTANTS_REL_SURFACE;
701 }
702 break;
703 default:
704 DRM_DEBUG("execbuf with unknown constants: %d\n", instp_mode);
705 return -EINVAL;
706 }
707
708 if (args->num_cliprects != 0) {
709 DRM_DEBUG("clip rectangles are only valid on pre-gen5\n");
710 return -EINVAL;
711 } else {
712 if (args->DR4 == 0xffffffff) {
713 DRM_DEBUG("UXA submitting garbage DR4, fixing up\n");
714 args->DR4 = 0;
715 }
716
717 if (args->DR1 || args->DR4 || args->cliprects_ptr) {
718 DRM_DEBUG("0 cliprects but dirt in cliprects fields\n");
719 return -EINVAL;
720 }
721 }
722
723 if (args->flags & I915_EXEC_GEN7_SOL_RESET) {
724 DRM_DEBUG("sol reset is gen7 only\n");
725 return -EINVAL;
726 }
727
Nick Hoath21076372015-01-15 13:10:38 +0000728 ret = execlists_move_to_gpu(ringbuf, ctx, vmas);
Oscar Mateoba8b7cc2014-07-24 17:04:33 +0100729 if (ret)
730 return ret;
731
732 if (ring == &dev_priv->ring[RCS] &&
733 instp_mode != dev_priv->relative_constants_mode) {
Nick Hoath21076372015-01-15 13:10:38 +0000734 ret = intel_logical_ring_begin(ringbuf, ctx, 4);
Oscar Mateoba8b7cc2014-07-24 17:04:33 +0100735 if (ret)
736 return ret;
737
738 intel_logical_ring_emit(ringbuf, MI_NOOP);
739 intel_logical_ring_emit(ringbuf, MI_LOAD_REGISTER_IMM(1));
740 intel_logical_ring_emit(ringbuf, INSTPM);
741 intel_logical_ring_emit(ringbuf, instp_mask << 16 | instp_mode);
742 intel_logical_ring_advance(ringbuf);
743
744 dev_priv->relative_constants_mode = instp_mode;
745 }
746
Nick Hoath21076372015-01-15 13:10:38 +0000747 ret = ring->emit_bb_start(ringbuf, ctx, exec_start, flags);
Oscar Mateoba8b7cc2014-07-24 17:04:33 +0100748 if (ret)
749 return ret;
750
751 i915_gem_execbuffer_move_to_active(vmas, ring);
752 i915_gem_execbuffer_retire_commands(dev, file, ring, batch_obj);
753
Oscar Mateo454afeb2014-07-24 17:04:22 +0100754 return 0;
755}
756
Thomas Danielc86ee3a92014-11-13 10:27:05 +0000757void intel_execlists_retire_requests(struct intel_engine_cs *ring)
758{
Nick Hoath6d3d8272015-01-15 13:10:39 +0000759 struct drm_i915_gem_request *req, *tmp;
Thomas Danielc86ee3a92014-11-13 10:27:05 +0000760 struct drm_i915_private *dev_priv = ring->dev->dev_private;
761 unsigned long flags;
762 struct list_head retired_list;
763
764 WARN_ON(!mutex_is_locked(&ring->dev->struct_mutex));
765 if (list_empty(&ring->execlist_retired_req_list))
766 return;
767
768 INIT_LIST_HEAD(&retired_list);
769 spin_lock_irqsave(&ring->execlist_lock, flags);
770 list_replace_init(&ring->execlist_retired_req_list, &retired_list);
771 spin_unlock_irqrestore(&ring->execlist_lock, flags);
772
773 list_for_each_entry_safe(req, tmp, &retired_list, execlist_link) {
Nick Hoath6d3d8272015-01-15 13:10:39 +0000774 struct intel_context *ctx = req->ctx;
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000775 struct drm_i915_gem_object *ctx_obj =
776 ctx->engine[ring->id].state;
777
778 if (ctx_obj && (ctx != ring->default_context))
779 intel_lr_context_unpin(ring, ctx);
Thomas Danielc86ee3a92014-11-13 10:27:05 +0000780 intel_runtime_pm_put(dev_priv);
Nick Hoath72f95af2015-01-15 13:10:37 +0000781 i915_gem_context_unreference(ctx);
Nick Hoath6d3d8272015-01-15 13:10:39 +0000782 i915_gem_request_unreference(req);
Thomas Danielc86ee3a92014-11-13 10:27:05 +0000783 list_del(&req->execlist_link);
Thomas Danielc86ee3a92014-11-13 10:27:05 +0000784 }
785}
786
Oscar Mateo454afeb2014-07-24 17:04:22 +0100787void intel_logical_ring_stop(struct intel_engine_cs *ring)
788{
Oscar Mateo9832b9d2014-07-24 17:04:30 +0100789 struct drm_i915_private *dev_priv = ring->dev->dev_private;
790 int ret;
791
792 if (!intel_ring_initialized(ring))
793 return;
794
795 ret = intel_ring_idle(ring);
796 if (ret && !i915_reset_in_progress(&to_i915(ring->dev)->gpu_error))
797 DRM_ERROR("failed to quiesce %s whilst cleaning up: %d\n",
798 ring->name, ret);
799
800 /* TODO: Is this correct with Execlists enabled? */
801 I915_WRITE_MODE(ring, _MASKED_BIT_ENABLE(STOP_RING));
802 if (wait_for_atomic((I915_READ_MODE(ring) & MODE_IDLE) != 0, 1000)) {
803 DRM_ERROR("%s :timed out trying to stop ring\n", ring->name);
804 return;
805 }
806 I915_WRITE_MODE(ring, _MASKED_BIT_DISABLE(STOP_RING));
Oscar Mateo454afeb2014-07-24 17:04:22 +0100807}
808
Nick Hoath21076372015-01-15 13:10:38 +0000809int logical_ring_flush_all_caches(struct intel_ringbuffer *ringbuf,
810 struct intel_context *ctx)
Oscar Mateo48e29f52014-07-24 17:04:29 +0100811{
812 struct intel_engine_cs *ring = ringbuf->ring;
813 int ret;
814
815 if (!ring->gpu_caches_dirty)
816 return 0;
817
Nick Hoath21076372015-01-15 13:10:38 +0000818 ret = ring->emit_flush(ringbuf, ctx, 0, I915_GEM_GPU_DOMAINS);
Oscar Mateo48e29f52014-07-24 17:04:29 +0100819 if (ret)
820 return ret;
821
822 ring->gpu_caches_dirty = false;
823 return 0;
824}
825
Oscar Mateo73e4d072014-07-24 17:04:48 +0100826/**
827 * intel_logical_ring_advance_and_submit() - advance the tail and submit the workload
828 * @ringbuf: Logical Ringbuffer to advance.
829 *
830 * The tail is updated in our logical ringbuffer struct, not in the actual context. What
831 * really happens during submission is that the context and current tail will be placed
832 * on a queue waiting for the ELSP to be ready to accept a new context submission. At that
833 * point, the tail *inside* the context is updated and the ELSP written to.
834 */
Nick Hoath2d129552015-01-15 13:10:36 +0000835void intel_logical_ring_advance_and_submit(struct intel_ringbuffer *ringbuf,
Nick Hoath21076372015-01-15 13:10:38 +0000836 struct intel_context *ctx,
Nick Hoath2d129552015-01-15 13:10:36 +0000837 struct drm_i915_gem_request *request)
Oscar Mateo82e104c2014-07-24 17:04:26 +0100838{
Ben Widawsky84b790f2014-07-24 17:04:36 +0100839 struct intel_engine_cs *ring = ringbuf->ring;
Ben Widawsky84b790f2014-07-24 17:04:36 +0100840
Oscar Mateo82e104c2014-07-24 17:04:26 +0100841 intel_logical_ring_advance(ringbuf);
842
Ben Widawsky84b790f2014-07-24 17:04:36 +0100843 if (intel_ring_stopped(ring))
Oscar Mateo82e104c2014-07-24 17:04:26 +0100844 return;
845
Nick Hoath2d129552015-01-15 13:10:36 +0000846 execlists_context_queue(ring, ctx, ringbuf->tail, request);
Oscar Mateo82e104c2014-07-24 17:04:26 +0100847}
848
Oscar Mateodcb4c122014-11-13 10:28:10 +0000849static int intel_lr_context_pin(struct intel_engine_cs *ring,
850 struct intel_context *ctx)
851{
852 struct drm_i915_gem_object *ctx_obj = ctx->engine[ring->id].state;
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000853 struct intel_ringbuffer *ringbuf = ctx->engine[ring->id].ringbuf;
Oscar Mateodcb4c122014-11-13 10:28:10 +0000854 int ret = 0;
855
856 WARN_ON(!mutex_is_locked(&ring->dev->struct_mutex));
857 if (ctx->engine[ring->id].unpin_count++ == 0) {
858 ret = i915_gem_obj_ggtt_pin(ctx_obj,
859 GEN8_LR_CONTEXT_ALIGN, 0);
860 if (ret)
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000861 goto reset_unpin_count;
862
863 ret = intel_pin_and_map_ringbuffer_obj(ring->dev, ringbuf);
864 if (ret)
865 goto unpin_ctx_obj;
Oscar Mateodcb4c122014-11-13 10:28:10 +0000866 }
867
868 return ret;
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000869
870unpin_ctx_obj:
871 i915_gem_object_ggtt_unpin(ctx_obj);
872reset_unpin_count:
873 ctx->engine[ring->id].unpin_count = 0;
874
875 return ret;
Oscar Mateodcb4c122014-11-13 10:28:10 +0000876}
877
878void intel_lr_context_unpin(struct intel_engine_cs *ring,
879 struct intel_context *ctx)
880{
881 struct drm_i915_gem_object *ctx_obj = ctx->engine[ring->id].state;
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000882 struct intel_ringbuffer *ringbuf = ctx->engine[ring->id].ringbuf;
Oscar Mateodcb4c122014-11-13 10:28:10 +0000883
884 if (ctx_obj) {
885 WARN_ON(!mutex_is_locked(&ring->dev->struct_mutex));
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000886 if (--ctx->engine[ring->id].unpin_count == 0) {
887 intel_unpin_ringbuffer_obj(ringbuf);
Oscar Mateodcb4c122014-11-13 10:28:10 +0000888 i915_gem_object_ggtt_unpin(ctx_obj);
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000889 }
Oscar Mateodcb4c122014-11-13 10:28:10 +0000890 }
891}
892
John Harrison6259cea2014-11-24 18:49:29 +0000893static int logical_ring_alloc_request(struct intel_engine_cs *ring,
894 struct intel_context *ctx)
Oscar Mateo82e104c2014-07-24 17:04:26 +0100895{
John Harrison9eba5d42014-11-24 18:49:23 +0000896 struct drm_i915_gem_request *request;
John Harrison67e29372014-12-05 13:49:35 +0000897 struct drm_i915_private *dev_private = ring->dev->dev_private;
Oscar Mateodcb4c122014-11-13 10:28:10 +0000898 int ret;
899
John Harrison6259cea2014-11-24 18:49:29 +0000900 if (ring->outstanding_lazy_request)
Oscar Mateo82e104c2014-07-24 17:04:26 +0100901 return 0;
902
John Harrisonaaeb1ba2014-12-05 13:49:34 +0000903 request = kzalloc(sizeof(*request), GFP_KERNEL);
John Harrison9eba5d42014-11-24 18:49:23 +0000904 if (request == NULL)
905 return -ENOMEM;
Oscar Mateo82e104c2014-07-24 17:04:26 +0100906
John Harrison9eba5d42014-11-24 18:49:23 +0000907 if (ctx != ring->default_context) {
908 ret = intel_lr_context_pin(ring, ctx);
909 if (ret) {
910 kfree(request);
911 return ret;
Oscar Mateodcb4c122014-11-13 10:28:10 +0000912 }
Oscar Mateo82e104c2014-07-24 17:04:26 +0100913 }
914
John Harrisonabfe2622014-11-24 18:49:24 +0000915 kref_init(&request->ref);
John Harrisonff79e852014-11-24 18:49:41 +0000916 request->ring = ring;
John Harrison67e29372014-12-05 13:49:35 +0000917 request->uniq = dev_private->request_uniq++;
John Harrisonabfe2622014-11-24 18:49:24 +0000918
John Harrison6259cea2014-11-24 18:49:29 +0000919 ret = i915_gem_get_seqno(ring->dev, &request->seqno);
John Harrison9eba5d42014-11-24 18:49:23 +0000920 if (ret) {
921 intel_lr_context_unpin(ring, ctx);
922 kfree(request);
923 return ret;
924 }
925
926 /* Hold a reference to the context this request belongs to
927 * (we will need it when the time comes to emit/retire the
928 * request).
929 */
930 request->ctx = ctx;
931 i915_gem_context_reference(request->ctx);
932
John Harrison6259cea2014-11-24 18:49:29 +0000933 ring->outstanding_lazy_request = request;
John Harrison9eba5d42014-11-24 18:49:23 +0000934 return 0;
Oscar Mateo82e104c2014-07-24 17:04:26 +0100935}
936
937static int logical_ring_wait_request(struct intel_ringbuffer *ringbuf,
938 int bytes)
939{
940 struct intel_engine_cs *ring = ringbuf->ring;
941 struct drm_i915_gem_request *request;
Oscar Mateo82e104c2014-07-24 17:04:26 +0100942 int ret;
943
Dave Gordonebd0fd42014-11-27 11:22:49 +0000944 if (intel_ring_space(ringbuf) >= bytes)
945 return 0;
Oscar Mateo82e104c2014-07-24 17:04:26 +0100946
947 list_for_each_entry(request, &ring->request_list, list) {
Dave Gordon57e21512014-11-18 20:07:20 +0000948 /*
949 * The request queue is per-engine, so can contain requests
950 * from multiple ringbuffers. Here, we must ignore any that
951 * aren't from the ringbuffer we're considering.
952 */
953 struct intel_context *ctx = request->ctx;
954 if (ctx->engine[ring->id].ringbuf != ringbuf)
955 continue;
956
957 /* Would completion of this request free enough space? */
Oscar Mateo82e104c2014-07-24 17:04:26 +0100958 if (__intel_ring_space(request->tail, ringbuf->tail,
959 ringbuf->size) >= bytes) {
Oscar Mateo82e104c2014-07-24 17:04:26 +0100960 break;
961 }
962 }
963
Daniel Vettera4b3a572014-11-26 14:17:05 +0100964 if (&request->list == &ring->request_list)
Oscar Mateo82e104c2014-07-24 17:04:26 +0100965 return -ENOSPC;
966
Daniel Vettera4b3a572014-11-26 14:17:05 +0100967 ret = i915_wait_request(request);
Oscar Mateo82e104c2014-07-24 17:04:26 +0100968 if (ret)
969 return ret;
970
Oscar Mateo82e104c2014-07-24 17:04:26 +0100971 i915_gem_retire_requests_ring(ring);
Oscar Mateo82e104c2014-07-24 17:04:26 +0100972
Dave Gordonebd0fd42014-11-27 11:22:49 +0000973 return intel_ring_space(ringbuf) >= bytes ? 0 : -ENOSPC;
Oscar Mateo82e104c2014-07-24 17:04:26 +0100974}
975
976static int logical_ring_wait_for_space(struct intel_ringbuffer *ringbuf,
Nick Hoath21076372015-01-15 13:10:38 +0000977 struct intel_context *ctx,
Oscar Mateo82e104c2014-07-24 17:04:26 +0100978 int bytes)
979{
980 struct intel_engine_cs *ring = ringbuf->ring;
981 struct drm_device *dev = ring->dev;
982 struct drm_i915_private *dev_priv = dev->dev_private;
983 unsigned long end;
984 int ret;
985
986 ret = logical_ring_wait_request(ringbuf, bytes);
987 if (ret != -ENOSPC)
988 return ret;
989
990 /* Force the context submission in case we have been skipping it */
Nick Hoath21076372015-01-15 13:10:38 +0000991 intel_logical_ring_advance_and_submit(ringbuf, ctx, NULL);
Oscar Mateo82e104c2014-07-24 17:04:26 +0100992
993 /* With GEM the hangcheck timer should kick us out of the loop,
994 * leaving it early runs the risk of corrupting GEM state (due
995 * to running on almost untested codepaths). But on resume
996 * timers don't work yet, so prevent a complete hang in that
997 * case by choosing an insanely large timeout. */
998 end = jiffies + 60 * HZ;
999
Dave Gordonebd0fd42014-11-27 11:22:49 +00001000 ret = 0;
Oscar Mateo82e104c2014-07-24 17:04:26 +01001001 do {
Dave Gordonebd0fd42014-11-27 11:22:49 +00001002 if (intel_ring_space(ringbuf) >= bytes)
Oscar Mateo82e104c2014-07-24 17:04:26 +01001003 break;
Oscar Mateo82e104c2014-07-24 17:04:26 +01001004
1005 msleep(1);
1006
1007 if (dev_priv->mm.interruptible && signal_pending(current)) {
1008 ret = -ERESTARTSYS;
1009 break;
1010 }
1011
1012 ret = i915_gem_check_wedge(&dev_priv->gpu_error,
1013 dev_priv->mm.interruptible);
1014 if (ret)
1015 break;
1016
1017 if (time_after(jiffies, end)) {
1018 ret = -EBUSY;
1019 break;
1020 }
1021 } while (1);
1022
1023 return ret;
1024}
1025
Nick Hoath21076372015-01-15 13:10:38 +00001026static int logical_ring_wrap_buffer(struct intel_ringbuffer *ringbuf,
1027 struct intel_context *ctx)
Oscar Mateo82e104c2014-07-24 17:04:26 +01001028{
1029 uint32_t __iomem *virt;
1030 int rem = ringbuf->size - ringbuf->tail;
1031
1032 if (ringbuf->space < rem) {
Nick Hoath21076372015-01-15 13:10:38 +00001033 int ret = logical_ring_wait_for_space(ringbuf, ctx, rem);
Oscar Mateo82e104c2014-07-24 17:04:26 +01001034
1035 if (ret)
1036 return ret;
1037 }
1038
1039 virt = ringbuf->virtual_start + ringbuf->tail;
1040 rem /= 4;
1041 while (rem--)
1042 iowrite32(MI_NOOP, virt++);
1043
1044 ringbuf->tail = 0;
Dave Gordonebd0fd42014-11-27 11:22:49 +00001045 intel_ring_update_space(ringbuf);
Oscar Mateo82e104c2014-07-24 17:04:26 +01001046
1047 return 0;
1048}
1049
Nick Hoath21076372015-01-15 13:10:38 +00001050static int logical_ring_prepare(struct intel_ringbuffer *ringbuf,
1051 struct intel_context *ctx, int bytes)
Oscar Mateo82e104c2014-07-24 17:04:26 +01001052{
1053 int ret;
1054
1055 if (unlikely(ringbuf->tail + bytes > ringbuf->effective_size)) {
Nick Hoath21076372015-01-15 13:10:38 +00001056 ret = logical_ring_wrap_buffer(ringbuf, ctx);
Oscar Mateo82e104c2014-07-24 17:04:26 +01001057 if (unlikely(ret))
1058 return ret;
1059 }
1060
1061 if (unlikely(ringbuf->space < bytes)) {
Nick Hoath21076372015-01-15 13:10:38 +00001062 ret = logical_ring_wait_for_space(ringbuf, ctx, bytes);
Oscar Mateo82e104c2014-07-24 17:04:26 +01001063 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 */
Nick Hoath21076372015-01-15 13:10:38 +00001083int intel_logical_ring_begin(struct intel_ringbuffer *ringbuf,
1084 struct intel_context *ctx, int num_dwords)
Oscar Mateo82e104c2014-07-24 17:04:26 +01001085{
1086 struct intel_engine_cs *ring = ringbuf->ring;
1087 struct drm_device *dev = ring->dev;
1088 struct drm_i915_private *dev_priv = dev->dev_private;
1089 int ret;
1090
1091 ret = i915_gem_check_wedge(&dev_priv->gpu_error,
1092 dev_priv->mm.interruptible);
1093 if (ret)
1094 return ret;
1095
Nick Hoath21076372015-01-15 13:10:38 +00001096 ret = logical_ring_prepare(ringbuf, ctx, num_dwords * sizeof(uint32_t));
Oscar Mateo82e104c2014-07-24 17:04:26 +01001097 if (ret)
1098 return ret;
1099
1100 /* Preallocate the olr before touching the ring */
Nick Hoath21076372015-01-15 13:10:38 +00001101 ret = logical_ring_alloc_request(ring, ctx);
Oscar Mateo82e104c2014-07-24 17:04:26 +01001102 if (ret)
1103 return ret;
1104
1105 ringbuf->space -= num_dwords * sizeof(uint32_t);
1106 return 0;
1107}
1108
Michel Thierry771b9a52014-11-11 16:47:33 +00001109static int intel_logical_ring_workarounds_emit(struct intel_engine_cs *ring,
1110 struct intel_context *ctx)
1111{
1112 int ret, i;
1113 struct intel_ringbuffer *ringbuf = ctx->engine[ring->id].ringbuf;
1114 struct drm_device *dev = ring->dev;
1115 struct drm_i915_private *dev_priv = dev->dev_private;
1116 struct i915_workarounds *w = &dev_priv->workarounds;
1117
Michel Thierrye6c1abb2014-11-26 14:21:02 +00001118 if (WARN_ON_ONCE(w->count == 0))
Michel Thierry771b9a52014-11-11 16:47:33 +00001119 return 0;
1120
1121 ring->gpu_caches_dirty = true;
Nick Hoath21076372015-01-15 13:10:38 +00001122 ret = logical_ring_flush_all_caches(ringbuf, ctx);
Michel Thierry771b9a52014-11-11 16:47:33 +00001123 if (ret)
1124 return ret;
1125
Nick Hoath21076372015-01-15 13:10:38 +00001126 ret = intel_logical_ring_begin(ringbuf, ctx, w->count * 2 + 2);
Michel Thierry771b9a52014-11-11 16:47:33 +00001127 if (ret)
1128 return ret;
1129
1130 intel_logical_ring_emit(ringbuf, MI_LOAD_REGISTER_IMM(w->count));
1131 for (i = 0; i < w->count; i++) {
1132 intel_logical_ring_emit(ringbuf, w->reg[i].addr);
1133 intel_logical_ring_emit(ringbuf, w->reg[i].value);
1134 }
1135 intel_logical_ring_emit(ringbuf, MI_NOOP);
1136
1137 intel_logical_ring_advance(ringbuf);
1138
1139 ring->gpu_caches_dirty = true;
Nick Hoath21076372015-01-15 13:10:38 +00001140 ret = logical_ring_flush_all_caches(ringbuf, ctx);
Michel Thierry771b9a52014-11-11 16:47:33 +00001141 if (ret)
1142 return ret;
1143
1144 return 0;
1145}
1146
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001147static int gen8_init_common_ring(struct intel_engine_cs *ring)
1148{
1149 struct drm_device *dev = ring->dev;
1150 struct drm_i915_private *dev_priv = dev->dev_private;
1151
Oscar Mateo73d477f2014-07-24 17:04:31 +01001152 I915_WRITE_IMR(ring, ~(ring->irq_enable_mask | ring->irq_keep_mask));
1153 I915_WRITE(RING_HWSTAM(ring->mmio_base), 0xffffffff);
1154
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001155 I915_WRITE(RING_MODE_GEN7(ring),
1156 _MASKED_BIT_DISABLE(GFX_REPLAY_MODE) |
1157 _MASKED_BIT_ENABLE(GFX_RUN_LIST_ENABLE));
1158 POSTING_READ(RING_MODE_GEN7(ring));
Thomas Danielc0a03a22015-01-09 11:09:37 +00001159 ring->next_context_status_buffer = 0;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001160 DRM_DEBUG_DRIVER("Execlists enabled for %s\n", ring->name);
1161
1162 memset(&ring->hangcheck, 0, sizeof(ring->hangcheck));
1163
1164 return 0;
1165}
1166
1167static int gen8_init_render_ring(struct intel_engine_cs *ring)
1168{
1169 struct drm_device *dev = ring->dev;
1170 struct drm_i915_private *dev_priv = dev->dev_private;
1171 int ret;
1172
1173 ret = gen8_init_common_ring(ring);
1174 if (ret)
1175 return ret;
1176
1177 /* We need to disable the AsyncFlip performance optimisations in order
1178 * to use MI_WAIT_FOR_EVENT within the CS. It should already be
1179 * programmed to '1' on all products.
1180 *
1181 * WaDisableAsyncFlipPerfMode:snb,ivb,hsw,vlv,bdw,chv
1182 */
1183 I915_WRITE(MI_MODE, _MASKED_BIT_ENABLE(ASYNC_FLIP_PERF_DISABLE));
1184
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001185 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_FORCE_ORDERING));
1186
Michel Thierry771b9a52014-11-11 16:47:33 +00001187 return init_workarounds_ring(ring);
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001188}
1189
Oscar Mateo15648582014-07-24 17:04:32 +01001190static int gen8_emit_bb_start(struct intel_ringbuffer *ringbuf,
Nick Hoath21076372015-01-15 13:10:38 +00001191 struct intel_context *ctx,
Oscar Mateo15648582014-07-24 17:04:32 +01001192 u64 offset, unsigned flags)
1193{
Oscar Mateo15648582014-07-24 17:04:32 +01001194 bool ppgtt = !(flags & I915_DISPATCH_SECURE);
1195 int ret;
1196
Nick Hoath21076372015-01-15 13:10:38 +00001197 ret = intel_logical_ring_begin(ringbuf, ctx, 4);
Oscar Mateo15648582014-07-24 17:04:32 +01001198 if (ret)
1199 return ret;
1200
1201 /* FIXME(BDW): Address space and security selectors. */
1202 intel_logical_ring_emit(ringbuf, MI_BATCH_BUFFER_START_GEN8 | (ppgtt<<8));
1203 intel_logical_ring_emit(ringbuf, lower_32_bits(offset));
1204 intel_logical_ring_emit(ringbuf, upper_32_bits(offset));
1205 intel_logical_ring_emit(ringbuf, MI_NOOP);
1206 intel_logical_ring_advance(ringbuf);
1207
1208 return 0;
1209}
1210
Oscar Mateo73d477f2014-07-24 17:04:31 +01001211static bool gen8_logical_ring_get_irq(struct intel_engine_cs *ring)
1212{
1213 struct drm_device *dev = ring->dev;
1214 struct drm_i915_private *dev_priv = dev->dev_private;
1215 unsigned long flags;
1216
Daniel Vetter7cd512f2014-09-15 11:38:57 +02001217 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
Oscar Mateo73d477f2014-07-24 17:04:31 +01001218 return false;
1219
1220 spin_lock_irqsave(&dev_priv->irq_lock, flags);
1221 if (ring->irq_refcount++ == 0) {
1222 I915_WRITE_IMR(ring, ~(ring->irq_enable_mask | ring->irq_keep_mask));
1223 POSTING_READ(RING_IMR(ring->mmio_base));
1224 }
1225 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
1226
1227 return true;
1228}
1229
1230static void gen8_logical_ring_put_irq(struct intel_engine_cs *ring)
1231{
1232 struct drm_device *dev = ring->dev;
1233 struct drm_i915_private *dev_priv = dev->dev_private;
1234 unsigned long flags;
1235
1236 spin_lock_irqsave(&dev_priv->irq_lock, flags);
1237 if (--ring->irq_refcount == 0) {
1238 I915_WRITE_IMR(ring, ~ring->irq_keep_mask);
1239 POSTING_READ(RING_IMR(ring->mmio_base));
1240 }
1241 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
1242}
1243
Oscar Mateo47122742014-07-24 17:04:28 +01001244static int gen8_emit_flush(struct intel_ringbuffer *ringbuf,
Nick Hoath21076372015-01-15 13:10:38 +00001245 struct intel_context *ctx,
Oscar Mateo47122742014-07-24 17:04:28 +01001246 u32 invalidate_domains,
1247 u32 unused)
1248{
1249 struct intel_engine_cs *ring = ringbuf->ring;
1250 struct drm_device *dev = ring->dev;
1251 struct drm_i915_private *dev_priv = dev->dev_private;
1252 uint32_t cmd;
1253 int ret;
1254
Nick Hoath21076372015-01-15 13:10:38 +00001255 ret = intel_logical_ring_begin(ringbuf, ctx, 4);
Oscar Mateo47122742014-07-24 17:04:28 +01001256 if (ret)
1257 return ret;
1258
1259 cmd = MI_FLUSH_DW + 1;
1260
1261 if (ring == &dev_priv->ring[VCS]) {
1262 if (invalidate_domains & I915_GEM_GPU_DOMAINS)
1263 cmd |= MI_INVALIDATE_TLB | MI_INVALIDATE_BSD |
1264 MI_FLUSH_DW_STORE_INDEX |
1265 MI_FLUSH_DW_OP_STOREDW;
1266 } else {
1267 if (invalidate_domains & I915_GEM_DOMAIN_RENDER)
1268 cmd |= MI_INVALIDATE_TLB | MI_FLUSH_DW_STORE_INDEX |
1269 MI_FLUSH_DW_OP_STOREDW;
1270 }
1271
1272 intel_logical_ring_emit(ringbuf, cmd);
1273 intel_logical_ring_emit(ringbuf,
1274 I915_GEM_HWS_SCRATCH_ADDR |
1275 MI_FLUSH_DW_USE_GTT);
1276 intel_logical_ring_emit(ringbuf, 0); /* upper addr */
1277 intel_logical_ring_emit(ringbuf, 0); /* value */
1278 intel_logical_ring_advance(ringbuf);
1279
1280 return 0;
1281}
1282
1283static int gen8_emit_flush_render(struct intel_ringbuffer *ringbuf,
Nick Hoath21076372015-01-15 13:10:38 +00001284 struct intel_context *ctx,
Oscar Mateo47122742014-07-24 17:04:28 +01001285 u32 invalidate_domains,
1286 u32 flush_domains)
1287{
1288 struct intel_engine_cs *ring = ringbuf->ring;
1289 u32 scratch_addr = ring->scratch.gtt_offset + 2 * CACHELINE_BYTES;
1290 u32 flags = 0;
1291 int ret;
1292
1293 flags |= PIPE_CONTROL_CS_STALL;
1294
1295 if (flush_domains) {
1296 flags |= PIPE_CONTROL_RENDER_TARGET_CACHE_FLUSH;
1297 flags |= PIPE_CONTROL_DEPTH_CACHE_FLUSH;
1298 }
1299
1300 if (invalidate_domains) {
1301 flags |= PIPE_CONTROL_TLB_INVALIDATE;
1302 flags |= PIPE_CONTROL_INSTRUCTION_CACHE_INVALIDATE;
1303 flags |= PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE;
1304 flags |= PIPE_CONTROL_VF_CACHE_INVALIDATE;
1305 flags |= PIPE_CONTROL_CONST_CACHE_INVALIDATE;
1306 flags |= PIPE_CONTROL_STATE_CACHE_INVALIDATE;
1307 flags |= PIPE_CONTROL_QW_WRITE;
1308 flags |= PIPE_CONTROL_GLOBAL_GTT_IVB;
1309 }
1310
Nick Hoath21076372015-01-15 13:10:38 +00001311 ret = intel_logical_ring_begin(ringbuf, ctx, 6);
Oscar Mateo47122742014-07-24 17:04:28 +01001312 if (ret)
1313 return ret;
1314
1315 intel_logical_ring_emit(ringbuf, GFX_OP_PIPE_CONTROL(6));
1316 intel_logical_ring_emit(ringbuf, flags);
1317 intel_logical_ring_emit(ringbuf, scratch_addr);
1318 intel_logical_ring_emit(ringbuf, 0);
1319 intel_logical_ring_emit(ringbuf, 0);
1320 intel_logical_ring_emit(ringbuf, 0);
1321 intel_logical_ring_advance(ringbuf);
1322
1323 return 0;
1324}
1325
Oscar Mateoe94e37a2014-07-24 17:04:25 +01001326static u32 gen8_get_seqno(struct intel_engine_cs *ring, bool lazy_coherency)
1327{
1328 return intel_read_status_page(ring, I915_GEM_HWS_INDEX);
1329}
1330
1331static void gen8_set_seqno(struct intel_engine_cs *ring, u32 seqno)
1332{
1333 intel_write_status_page(ring, I915_GEM_HWS_INDEX, seqno);
1334}
1335
Nick Hoath2d129552015-01-15 13:10:36 +00001336static int gen8_emit_request(struct intel_ringbuffer *ringbuf,
1337 struct drm_i915_gem_request *request)
Oscar Mateo4da46e12014-07-24 17:04:27 +01001338{
1339 struct intel_engine_cs *ring = ringbuf->ring;
1340 u32 cmd;
1341 int ret;
1342
Nick Hoath21076372015-01-15 13:10:38 +00001343 ret = intel_logical_ring_begin(ringbuf, request->ctx, 6);
Oscar Mateo4da46e12014-07-24 17:04:27 +01001344 if (ret)
1345 return ret;
1346
Ville Syrjälä8edfbb82014-11-14 18:16:56 +02001347 cmd = MI_STORE_DWORD_IMM_GEN4;
Oscar Mateo4da46e12014-07-24 17:04:27 +01001348 cmd |= MI_GLOBAL_GTT;
1349
1350 intel_logical_ring_emit(ringbuf, cmd);
1351 intel_logical_ring_emit(ringbuf,
1352 (ring->status_page.gfx_addr +
1353 (I915_GEM_HWS_INDEX << MI_STORE_DWORD_INDEX_SHIFT)));
1354 intel_logical_ring_emit(ringbuf, 0);
John Harrison6259cea2014-11-24 18:49:29 +00001355 intel_logical_ring_emit(ringbuf,
1356 i915_gem_request_get_seqno(ring->outstanding_lazy_request));
Oscar Mateo4da46e12014-07-24 17:04:27 +01001357 intel_logical_ring_emit(ringbuf, MI_USER_INTERRUPT);
1358 intel_logical_ring_emit(ringbuf, MI_NOOP);
Nick Hoath21076372015-01-15 13:10:38 +00001359 intel_logical_ring_advance_and_submit(ringbuf, request->ctx, request);
Oscar Mateo4da46e12014-07-24 17:04:27 +01001360
1361 return 0;
1362}
1363
Thomas Daniele7778be2014-12-02 12:50:48 +00001364static int gen8_init_rcs_context(struct intel_engine_cs *ring,
1365 struct intel_context *ctx)
1366{
1367 int ret;
1368
1369 ret = intel_logical_ring_workarounds_emit(ring, ctx);
1370 if (ret)
1371 return ret;
1372
1373 return intel_lr_context_render_state_init(ring, ctx);
1374}
1375
Oscar Mateo73e4d072014-07-24 17:04:48 +01001376/**
1377 * intel_logical_ring_cleanup() - deallocate the Engine Command Streamer
1378 *
1379 * @ring: Engine Command Streamer.
1380 *
1381 */
Oscar Mateo454afeb2014-07-24 17:04:22 +01001382void intel_logical_ring_cleanup(struct intel_engine_cs *ring)
1383{
John Harrison6402c332014-10-31 12:00:26 +00001384 struct drm_i915_private *dev_priv;
Oscar Mateo9832b9d2014-07-24 17:04:30 +01001385
Oscar Mateo48d82382014-07-24 17:04:23 +01001386 if (!intel_ring_initialized(ring))
1387 return;
1388
John Harrison6402c332014-10-31 12:00:26 +00001389 dev_priv = ring->dev->dev_private;
1390
Oscar Mateo9832b9d2014-07-24 17:04:30 +01001391 intel_logical_ring_stop(ring);
1392 WARN_ON((I915_READ_MODE(ring) & MODE_IDLE) == 0);
John Harrison6259cea2014-11-24 18:49:29 +00001393 i915_gem_request_assign(&ring->outstanding_lazy_request, NULL);
Oscar Mateo48d82382014-07-24 17:04:23 +01001394
1395 if (ring->cleanup)
1396 ring->cleanup(ring);
1397
1398 i915_cmd_parser_fini_ring(ring);
1399
1400 if (ring->status_page.obj) {
1401 kunmap(sg_page(ring->status_page.obj->pages->sgl));
1402 ring->status_page.obj = NULL;
1403 }
Oscar Mateo454afeb2014-07-24 17:04:22 +01001404}
1405
1406static int logical_ring_init(struct drm_device *dev, struct intel_engine_cs *ring)
1407{
Oscar Mateo48d82382014-07-24 17:04:23 +01001408 int ret;
Oscar Mateo48d82382014-07-24 17:04:23 +01001409
1410 /* Intentionally left blank. */
1411 ring->buffer = NULL;
1412
1413 ring->dev = dev;
1414 INIT_LIST_HEAD(&ring->active_list);
1415 INIT_LIST_HEAD(&ring->request_list);
1416 init_waitqueue_head(&ring->irq_queue);
1417
Michel Thierryacdd8842014-07-24 17:04:38 +01001418 INIT_LIST_HEAD(&ring->execlist_queue);
Thomas Danielc86ee3a92014-11-13 10:27:05 +00001419 INIT_LIST_HEAD(&ring->execlist_retired_req_list);
Michel Thierryacdd8842014-07-24 17:04:38 +01001420 spin_lock_init(&ring->execlist_lock);
1421
Oscar Mateo48d82382014-07-24 17:04:23 +01001422 ret = i915_cmd_parser_init_ring(ring);
1423 if (ret)
1424 return ret;
1425
Oscar Mateo564ddb22014-08-21 11:40:54 +01001426 ret = intel_lr_context_deferred_create(ring->default_context, ring);
1427
1428 return ret;
Oscar Mateo454afeb2014-07-24 17:04:22 +01001429}
1430
1431static int logical_render_ring_init(struct drm_device *dev)
1432{
1433 struct drm_i915_private *dev_priv = dev->dev_private;
1434 struct intel_engine_cs *ring = &dev_priv->ring[RCS];
Daniel Vetter99be1df2014-11-20 00:33:06 +01001435 int ret;
Oscar Mateo454afeb2014-07-24 17:04:22 +01001436
1437 ring->name = "render ring";
1438 ring->id = RCS;
1439 ring->mmio_base = RENDER_RING_BASE;
1440 ring->irq_enable_mask =
1441 GT_RENDER_USER_INTERRUPT << GEN8_RCS_IRQ_SHIFT;
Oscar Mateo73d477f2014-07-24 17:04:31 +01001442 ring->irq_keep_mask =
1443 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_RCS_IRQ_SHIFT;
1444 if (HAS_L3_DPF(dev))
1445 ring->irq_keep_mask |= GT_RENDER_L3_PARITY_ERROR_INTERRUPT;
Oscar Mateo454afeb2014-07-24 17:04:22 +01001446
Daniel Vetterecfe00d2014-11-20 00:33:04 +01001447 ring->init_hw = gen8_init_render_ring;
Thomas Daniele7778be2014-12-02 12:50:48 +00001448 ring->init_context = gen8_init_rcs_context;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001449 ring->cleanup = intel_fini_pipe_control;
Oscar Mateoe94e37a2014-07-24 17:04:25 +01001450 ring->get_seqno = gen8_get_seqno;
1451 ring->set_seqno = gen8_set_seqno;
Oscar Mateo4da46e12014-07-24 17:04:27 +01001452 ring->emit_request = gen8_emit_request;
Oscar Mateo47122742014-07-24 17:04:28 +01001453 ring->emit_flush = gen8_emit_flush_render;
Oscar Mateo73d477f2014-07-24 17:04:31 +01001454 ring->irq_get = gen8_logical_ring_get_irq;
1455 ring->irq_put = gen8_logical_ring_put_irq;
Oscar Mateo15648582014-07-24 17:04:32 +01001456 ring->emit_bb_start = gen8_emit_bb_start;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001457
Daniel Vetter99be1df2014-11-20 00:33:06 +01001458 ring->dev = dev;
1459 ret = logical_ring_init(dev, ring);
1460 if (ret)
1461 return ret;
1462
1463 return intel_init_pipe_control(ring);
Oscar Mateo454afeb2014-07-24 17:04:22 +01001464}
1465
1466static int logical_bsd_ring_init(struct drm_device *dev)
1467{
1468 struct drm_i915_private *dev_priv = dev->dev_private;
1469 struct intel_engine_cs *ring = &dev_priv->ring[VCS];
1470
1471 ring->name = "bsd ring";
1472 ring->id = VCS;
1473 ring->mmio_base = GEN6_BSD_RING_BASE;
1474 ring->irq_enable_mask =
1475 GT_RENDER_USER_INTERRUPT << GEN8_VCS1_IRQ_SHIFT;
Oscar Mateo73d477f2014-07-24 17:04:31 +01001476 ring->irq_keep_mask =
1477 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VCS1_IRQ_SHIFT;
Oscar Mateo454afeb2014-07-24 17:04:22 +01001478
Daniel Vetterecfe00d2014-11-20 00:33:04 +01001479 ring->init_hw = gen8_init_common_ring;
Oscar Mateoe94e37a2014-07-24 17:04:25 +01001480 ring->get_seqno = gen8_get_seqno;
1481 ring->set_seqno = gen8_set_seqno;
Oscar Mateo4da46e12014-07-24 17:04:27 +01001482 ring->emit_request = gen8_emit_request;
Oscar Mateo47122742014-07-24 17:04:28 +01001483 ring->emit_flush = gen8_emit_flush;
Oscar Mateo73d477f2014-07-24 17:04:31 +01001484 ring->irq_get = gen8_logical_ring_get_irq;
1485 ring->irq_put = gen8_logical_ring_put_irq;
Oscar Mateo15648582014-07-24 17:04:32 +01001486 ring->emit_bb_start = gen8_emit_bb_start;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001487
Oscar Mateo454afeb2014-07-24 17:04:22 +01001488 return logical_ring_init(dev, ring);
1489}
1490
1491static int logical_bsd2_ring_init(struct drm_device *dev)
1492{
1493 struct drm_i915_private *dev_priv = dev->dev_private;
1494 struct intel_engine_cs *ring = &dev_priv->ring[VCS2];
1495
1496 ring->name = "bds2 ring";
1497 ring->id = VCS2;
1498 ring->mmio_base = GEN8_BSD2_RING_BASE;
1499 ring->irq_enable_mask =
1500 GT_RENDER_USER_INTERRUPT << GEN8_VCS2_IRQ_SHIFT;
Oscar Mateo73d477f2014-07-24 17:04:31 +01001501 ring->irq_keep_mask =
1502 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VCS2_IRQ_SHIFT;
Oscar Mateo454afeb2014-07-24 17:04:22 +01001503
Daniel Vetterecfe00d2014-11-20 00:33:04 +01001504 ring->init_hw = gen8_init_common_ring;
Oscar Mateoe94e37a2014-07-24 17:04:25 +01001505 ring->get_seqno = gen8_get_seqno;
1506 ring->set_seqno = gen8_set_seqno;
Oscar Mateo4da46e12014-07-24 17:04:27 +01001507 ring->emit_request = gen8_emit_request;
Oscar Mateo47122742014-07-24 17:04:28 +01001508 ring->emit_flush = gen8_emit_flush;
Oscar Mateo73d477f2014-07-24 17:04:31 +01001509 ring->irq_get = gen8_logical_ring_get_irq;
1510 ring->irq_put = gen8_logical_ring_put_irq;
Oscar Mateo15648582014-07-24 17:04:32 +01001511 ring->emit_bb_start = gen8_emit_bb_start;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001512
Oscar Mateo454afeb2014-07-24 17:04:22 +01001513 return logical_ring_init(dev, ring);
1514}
1515
1516static int logical_blt_ring_init(struct drm_device *dev)
1517{
1518 struct drm_i915_private *dev_priv = dev->dev_private;
1519 struct intel_engine_cs *ring = &dev_priv->ring[BCS];
1520
1521 ring->name = "blitter ring";
1522 ring->id = BCS;
1523 ring->mmio_base = BLT_RING_BASE;
1524 ring->irq_enable_mask =
1525 GT_RENDER_USER_INTERRUPT << GEN8_BCS_IRQ_SHIFT;
Oscar Mateo73d477f2014-07-24 17:04:31 +01001526 ring->irq_keep_mask =
1527 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_BCS_IRQ_SHIFT;
Oscar Mateo454afeb2014-07-24 17:04:22 +01001528
Daniel Vetterecfe00d2014-11-20 00:33:04 +01001529 ring->init_hw = gen8_init_common_ring;
Oscar Mateoe94e37a2014-07-24 17:04:25 +01001530 ring->get_seqno = gen8_get_seqno;
1531 ring->set_seqno = gen8_set_seqno;
Oscar Mateo4da46e12014-07-24 17:04:27 +01001532 ring->emit_request = gen8_emit_request;
Oscar Mateo47122742014-07-24 17:04:28 +01001533 ring->emit_flush = gen8_emit_flush;
Oscar Mateo73d477f2014-07-24 17:04:31 +01001534 ring->irq_get = gen8_logical_ring_get_irq;
1535 ring->irq_put = gen8_logical_ring_put_irq;
Oscar Mateo15648582014-07-24 17:04:32 +01001536 ring->emit_bb_start = gen8_emit_bb_start;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001537
Oscar Mateo454afeb2014-07-24 17:04:22 +01001538 return logical_ring_init(dev, ring);
1539}
1540
1541static int logical_vebox_ring_init(struct drm_device *dev)
1542{
1543 struct drm_i915_private *dev_priv = dev->dev_private;
1544 struct intel_engine_cs *ring = &dev_priv->ring[VECS];
1545
1546 ring->name = "video enhancement ring";
1547 ring->id = VECS;
1548 ring->mmio_base = VEBOX_RING_BASE;
1549 ring->irq_enable_mask =
1550 GT_RENDER_USER_INTERRUPT << GEN8_VECS_IRQ_SHIFT;
Oscar Mateo73d477f2014-07-24 17:04:31 +01001551 ring->irq_keep_mask =
1552 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VECS_IRQ_SHIFT;
Oscar Mateo454afeb2014-07-24 17:04:22 +01001553
Daniel Vetterecfe00d2014-11-20 00:33:04 +01001554 ring->init_hw = gen8_init_common_ring;
Oscar Mateoe94e37a2014-07-24 17:04:25 +01001555 ring->get_seqno = gen8_get_seqno;
1556 ring->set_seqno = gen8_set_seqno;
Oscar Mateo4da46e12014-07-24 17:04:27 +01001557 ring->emit_request = gen8_emit_request;
Oscar Mateo47122742014-07-24 17:04:28 +01001558 ring->emit_flush = gen8_emit_flush;
Oscar Mateo73d477f2014-07-24 17:04:31 +01001559 ring->irq_get = gen8_logical_ring_get_irq;
1560 ring->irq_put = gen8_logical_ring_put_irq;
Oscar Mateo15648582014-07-24 17:04:32 +01001561 ring->emit_bb_start = gen8_emit_bb_start;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001562
Oscar Mateo454afeb2014-07-24 17:04:22 +01001563 return logical_ring_init(dev, ring);
1564}
1565
Oscar Mateo73e4d072014-07-24 17:04:48 +01001566/**
1567 * intel_logical_rings_init() - allocate, populate and init the Engine Command Streamers
1568 * @dev: DRM device.
1569 *
1570 * This function inits the engines for an Execlists submission style (the equivalent in the
1571 * legacy ringbuffer submission world would be i915_gem_init_rings). It does it only for
1572 * those engines that are present in the hardware.
1573 *
1574 * Return: non-zero if the initialization failed.
1575 */
Oscar Mateo454afeb2014-07-24 17:04:22 +01001576int intel_logical_rings_init(struct drm_device *dev)
1577{
1578 struct drm_i915_private *dev_priv = dev->dev_private;
1579 int ret;
1580
1581 ret = logical_render_ring_init(dev);
1582 if (ret)
1583 return ret;
1584
1585 if (HAS_BSD(dev)) {
1586 ret = logical_bsd_ring_init(dev);
1587 if (ret)
1588 goto cleanup_render_ring;
1589 }
1590
1591 if (HAS_BLT(dev)) {
1592 ret = logical_blt_ring_init(dev);
1593 if (ret)
1594 goto cleanup_bsd_ring;
1595 }
1596
1597 if (HAS_VEBOX(dev)) {
1598 ret = logical_vebox_ring_init(dev);
1599 if (ret)
1600 goto cleanup_blt_ring;
1601 }
1602
1603 if (HAS_BSD2(dev)) {
1604 ret = logical_bsd2_ring_init(dev);
1605 if (ret)
1606 goto cleanup_vebox_ring;
1607 }
1608
1609 ret = i915_gem_set_seqno(dev, ((u32)~0 - 0x1000));
1610 if (ret)
1611 goto cleanup_bsd2_ring;
1612
1613 return 0;
1614
1615cleanup_bsd2_ring:
1616 intel_logical_ring_cleanup(&dev_priv->ring[VCS2]);
1617cleanup_vebox_ring:
1618 intel_logical_ring_cleanup(&dev_priv->ring[VECS]);
1619cleanup_blt_ring:
1620 intel_logical_ring_cleanup(&dev_priv->ring[BCS]);
1621cleanup_bsd_ring:
1622 intel_logical_ring_cleanup(&dev_priv->ring[VCS]);
1623cleanup_render_ring:
1624 intel_logical_ring_cleanup(&dev_priv->ring[RCS]);
1625
1626 return ret;
1627}
1628
Oscar Mateo564ddb22014-08-21 11:40:54 +01001629int intel_lr_context_render_state_init(struct intel_engine_cs *ring,
1630 struct intel_context *ctx)
1631{
1632 struct intel_ringbuffer *ringbuf = ctx->engine[ring->id].ringbuf;
1633 struct render_state so;
1634 struct drm_i915_file_private *file_priv = ctx->file_priv;
1635 struct drm_file *file = file_priv ? file_priv->file : NULL;
1636 int ret;
1637
1638 ret = i915_gem_render_state_prepare(ring, &so);
1639 if (ret)
1640 return ret;
1641
1642 if (so.rodata == NULL)
1643 return 0;
1644
1645 ret = ring->emit_bb_start(ringbuf,
Nick Hoath21076372015-01-15 13:10:38 +00001646 ctx,
Oscar Mateo564ddb22014-08-21 11:40:54 +01001647 so.ggtt_offset,
1648 I915_DISPATCH_SECURE);
1649 if (ret)
1650 goto out;
1651
1652 i915_vma_move_to_active(i915_gem_obj_to_ggtt(so.obj), ring);
1653
John Harrison9400ae52014-11-24 18:49:36 +00001654 ret = __i915_add_request(ring, file, so.obj);
Oscar Mateo564ddb22014-08-21 11:40:54 +01001655 /* intel_logical_ring_add_request moves object to inactive if it
1656 * fails */
1657out:
1658 i915_gem_render_state_fini(&so);
1659 return ret;
1660}
1661
Oscar Mateo8670d6f2014-07-24 17:04:17 +01001662static int
1663populate_lr_context(struct intel_context *ctx, struct drm_i915_gem_object *ctx_obj,
1664 struct intel_engine_cs *ring, struct intel_ringbuffer *ringbuf)
1665{
Thomas Daniel2d965532014-08-19 10:13:36 +01001666 struct drm_device *dev = ring->dev;
1667 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterae6c4802014-08-06 15:04:53 +02001668 struct i915_hw_ppgtt *ppgtt = ctx->ppgtt;
Oscar Mateo8670d6f2014-07-24 17:04:17 +01001669 struct page *page;
1670 uint32_t *reg_state;
1671 int ret;
1672
Thomas Daniel2d965532014-08-19 10:13:36 +01001673 if (!ppgtt)
1674 ppgtt = dev_priv->mm.aliasing_ppgtt;
1675
Oscar Mateo8670d6f2014-07-24 17:04:17 +01001676 ret = i915_gem_object_set_to_cpu_domain(ctx_obj, true);
1677 if (ret) {
1678 DRM_DEBUG_DRIVER("Could not set to CPU domain\n");
1679 return ret;
1680 }
1681
1682 ret = i915_gem_object_get_pages(ctx_obj);
1683 if (ret) {
1684 DRM_DEBUG_DRIVER("Could not get object pages\n");
1685 return ret;
1686 }
1687
1688 i915_gem_object_pin_pages(ctx_obj);
1689
1690 /* The second page of the context object contains some fields which must
1691 * be set up prior to the first execution. */
1692 page = i915_gem_object_get_page(ctx_obj, 1);
1693 reg_state = kmap_atomic(page);
1694
1695 /* A context is actually a big batch buffer with several MI_LOAD_REGISTER_IMM
1696 * commands followed by (reg, value) pairs. The values we are setting here are
1697 * only for the first context restore: on a subsequent save, the GPU will
1698 * recreate this batchbuffer with new values (including all the missing
1699 * MI_LOAD_REGISTER_IMM commands that we are not initializing here). */
1700 if (ring->id == RCS)
1701 reg_state[CTX_LRI_HEADER_0] = MI_LOAD_REGISTER_IMM(14);
1702 else
1703 reg_state[CTX_LRI_HEADER_0] = MI_LOAD_REGISTER_IMM(11);
1704 reg_state[CTX_LRI_HEADER_0] |= MI_LRI_FORCE_POSTED;
1705 reg_state[CTX_CONTEXT_CONTROL] = RING_CONTEXT_CONTROL(ring);
1706 reg_state[CTX_CONTEXT_CONTROL+1] =
1707 _MASKED_BIT_ENABLE((1<<3) | MI_RESTORE_INHIBIT);
1708 reg_state[CTX_RING_HEAD] = RING_HEAD(ring->mmio_base);
1709 reg_state[CTX_RING_HEAD+1] = 0;
1710 reg_state[CTX_RING_TAIL] = RING_TAIL(ring->mmio_base);
1711 reg_state[CTX_RING_TAIL+1] = 0;
1712 reg_state[CTX_RING_BUFFER_START] = RING_START(ring->mmio_base);
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001713 /* Ring buffer start address is not known until the buffer is pinned.
1714 * It is written to the context image in execlists_update_context()
1715 */
Oscar Mateo8670d6f2014-07-24 17:04:17 +01001716 reg_state[CTX_RING_BUFFER_CONTROL] = RING_CTL(ring->mmio_base);
1717 reg_state[CTX_RING_BUFFER_CONTROL+1] =
1718 ((ringbuf->size - PAGE_SIZE) & RING_NR_PAGES) | RING_VALID;
1719 reg_state[CTX_BB_HEAD_U] = ring->mmio_base + 0x168;
1720 reg_state[CTX_BB_HEAD_U+1] = 0;
1721 reg_state[CTX_BB_HEAD_L] = ring->mmio_base + 0x140;
1722 reg_state[CTX_BB_HEAD_L+1] = 0;
1723 reg_state[CTX_BB_STATE] = ring->mmio_base + 0x110;
1724 reg_state[CTX_BB_STATE+1] = (1<<5);
1725 reg_state[CTX_SECOND_BB_HEAD_U] = ring->mmio_base + 0x11c;
1726 reg_state[CTX_SECOND_BB_HEAD_U+1] = 0;
1727 reg_state[CTX_SECOND_BB_HEAD_L] = ring->mmio_base + 0x114;
1728 reg_state[CTX_SECOND_BB_HEAD_L+1] = 0;
1729 reg_state[CTX_SECOND_BB_STATE] = ring->mmio_base + 0x118;
1730 reg_state[CTX_SECOND_BB_STATE+1] = 0;
1731 if (ring->id == RCS) {
1732 /* TODO: according to BSpec, the register state context
1733 * for CHV does not have these. OTOH, these registers do
1734 * exist in CHV. I'm waiting for a clarification */
1735 reg_state[CTX_BB_PER_CTX_PTR] = ring->mmio_base + 0x1c0;
1736 reg_state[CTX_BB_PER_CTX_PTR+1] = 0;
1737 reg_state[CTX_RCS_INDIRECT_CTX] = ring->mmio_base + 0x1c4;
1738 reg_state[CTX_RCS_INDIRECT_CTX+1] = 0;
1739 reg_state[CTX_RCS_INDIRECT_CTX_OFFSET] = ring->mmio_base + 0x1c8;
1740 reg_state[CTX_RCS_INDIRECT_CTX_OFFSET+1] = 0;
1741 }
1742 reg_state[CTX_LRI_HEADER_1] = MI_LOAD_REGISTER_IMM(9);
1743 reg_state[CTX_LRI_HEADER_1] |= MI_LRI_FORCE_POSTED;
1744 reg_state[CTX_CTX_TIMESTAMP] = ring->mmio_base + 0x3a8;
1745 reg_state[CTX_CTX_TIMESTAMP+1] = 0;
1746 reg_state[CTX_PDP3_UDW] = GEN8_RING_PDP_UDW(ring, 3);
1747 reg_state[CTX_PDP3_LDW] = GEN8_RING_PDP_LDW(ring, 3);
1748 reg_state[CTX_PDP2_UDW] = GEN8_RING_PDP_UDW(ring, 2);
1749 reg_state[CTX_PDP2_LDW] = GEN8_RING_PDP_LDW(ring, 2);
1750 reg_state[CTX_PDP1_UDW] = GEN8_RING_PDP_UDW(ring, 1);
1751 reg_state[CTX_PDP1_LDW] = GEN8_RING_PDP_LDW(ring, 1);
1752 reg_state[CTX_PDP0_UDW] = GEN8_RING_PDP_UDW(ring, 0);
1753 reg_state[CTX_PDP0_LDW] = GEN8_RING_PDP_LDW(ring, 0);
1754 reg_state[CTX_PDP3_UDW+1] = upper_32_bits(ppgtt->pd_dma_addr[3]);
1755 reg_state[CTX_PDP3_LDW+1] = lower_32_bits(ppgtt->pd_dma_addr[3]);
1756 reg_state[CTX_PDP2_UDW+1] = upper_32_bits(ppgtt->pd_dma_addr[2]);
1757 reg_state[CTX_PDP2_LDW+1] = lower_32_bits(ppgtt->pd_dma_addr[2]);
1758 reg_state[CTX_PDP1_UDW+1] = upper_32_bits(ppgtt->pd_dma_addr[1]);
1759 reg_state[CTX_PDP1_LDW+1] = lower_32_bits(ppgtt->pd_dma_addr[1]);
1760 reg_state[CTX_PDP0_UDW+1] = upper_32_bits(ppgtt->pd_dma_addr[0]);
1761 reg_state[CTX_PDP0_LDW+1] = lower_32_bits(ppgtt->pd_dma_addr[0]);
1762 if (ring->id == RCS) {
1763 reg_state[CTX_LRI_HEADER_2] = MI_LOAD_REGISTER_IMM(1);
1764 reg_state[CTX_R_PWR_CLK_STATE] = 0x20c8;
1765 reg_state[CTX_R_PWR_CLK_STATE+1] = 0;
1766 }
1767
1768 kunmap_atomic(reg_state);
1769
1770 ctx_obj->dirty = 1;
1771 set_page_dirty(page);
1772 i915_gem_object_unpin_pages(ctx_obj);
1773
1774 return 0;
1775}
1776
Oscar Mateo73e4d072014-07-24 17:04:48 +01001777/**
1778 * intel_lr_context_free() - free the LRC specific bits of a context
1779 * @ctx: the LR context to free.
1780 *
1781 * The real context freeing is done in i915_gem_context_free: this only
1782 * takes care of the bits that are LRC related: the per-engine backing
1783 * objects and the logical ringbuffer.
1784 */
Oscar Mateoede7d422014-07-24 17:04:12 +01001785void intel_lr_context_free(struct intel_context *ctx)
1786{
Oscar Mateo8c8579172014-07-24 17:04:14 +01001787 int i;
1788
1789 for (i = 0; i < I915_NUM_RINGS; i++) {
1790 struct drm_i915_gem_object *ctx_obj = ctx->engine[i].state;
Oscar Mateo84c23772014-07-24 17:04:15 +01001791
Oscar Mateo8c8579172014-07-24 17:04:14 +01001792 if (ctx_obj) {
Oscar Mateodcb4c122014-11-13 10:28:10 +00001793 struct intel_ringbuffer *ringbuf =
1794 ctx->engine[i].ringbuf;
1795 struct intel_engine_cs *ring = ringbuf->ring;
1796
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001797 if (ctx == ring->default_context) {
1798 intel_unpin_ringbuffer_obj(ringbuf);
1799 i915_gem_object_ggtt_unpin(ctx_obj);
1800 }
Oscar Mateo84c23772014-07-24 17:04:15 +01001801 intel_destroy_ringbuffer_obj(ringbuf);
1802 kfree(ringbuf);
Oscar Mateo8c8579172014-07-24 17:04:14 +01001803 drm_gem_object_unreference(&ctx_obj->base);
1804 }
1805 }
1806}
1807
1808static uint32_t get_lr_context_size(struct intel_engine_cs *ring)
1809{
1810 int ret = 0;
1811
Michael H. Nguyen468c6812014-11-13 17:51:49 +00001812 WARN_ON(INTEL_INFO(ring->dev)->gen < 8);
Oscar Mateo8c8579172014-07-24 17:04:14 +01001813
1814 switch (ring->id) {
1815 case RCS:
Michael H. Nguyen468c6812014-11-13 17:51:49 +00001816 if (INTEL_INFO(ring->dev)->gen >= 9)
1817 ret = GEN9_LR_CONTEXT_RENDER_SIZE;
1818 else
1819 ret = GEN8_LR_CONTEXT_RENDER_SIZE;
Oscar Mateo8c8579172014-07-24 17:04:14 +01001820 break;
1821 case VCS:
1822 case BCS:
1823 case VECS:
1824 case VCS2:
1825 ret = GEN8_LR_CONTEXT_OTHER_SIZE;
1826 break;
1827 }
1828
1829 return ret;
Oscar Mateoede7d422014-07-24 17:04:12 +01001830}
1831
Daniel Vetter70b0ea82014-11-18 09:09:32 +01001832static void lrc_setup_hardware_status_page(struct intel_engine_cs *ring,
Thomas Daniel1df06b72014-10-29 09:52:51 +00001833 struct drm_i915_gem_object *default_ctx_obj)
1834{
1835 struct drm_i915_private *dev_priv = ring->dev->dev_private;
1836
1837 /* The status page is offset 0 from the default context object
1838 * in LRC mode. */
1839 ring->status_page.gfx_addr = i915_gem_obj_ggtt_offset(default_ctx_obj);
1840 ring->status_page.page_addr =
1841 kmap(sg_page(default_ctx_obj->pages->sgl));
Thomas Daniel1df06b72014-10-29 09:52:51 +00001842 ring->status_page.obj = default_ctx_obj;
1843
1844 I915_WRITE(RING_HWS_PGA(ring->mmio_base),
1845 (u32)ring->status_page.gfx_addr);
1846 POSTING_READ(RING_HWS_PGA(ring->mmio_base));
Thomas Daniel1df06b72014-10-29 09:52:51 +00001847}
1848
Oscar Mateo73e4d072014-07-24 17:04:48 +01001849/**
1850 * intel_lr_context_deferred_create() - create the LRC specific bits of a context
1851 * @ctx: LR context to create.
1852 * @ring: engine to be used with the context.
1853 *
1854 * This function can be called more than once, with different engines, if we plan
1855 * to use the context with them. The context backing objects and the ringbuffers
1856 * (specially the ringbuffer backing objects) suck a lot of memory up, and that's why
1857 * the creation is a deferred call: it's better to make sure first that we need to use
1858 * a given ring with the context.
1859 *
Masanari Iida32197aa2014-10-20 23:53:13 +09001860 * Return: non-zero on error.
Oscar Mateo73e4d072014-07-24 17:04:48 +01001861 */
Oscar Mateoede7d422014-07-24 17:04:12 +01001862int intel_lr_context_deferred_create(struct intel_context *ctx,
1863 struct intel_engine_cs *ring)
1864{
Oscar Mateodcb4c122014-11-13 10:28:10 +00001865 const bool is_global_default_ctx = (ctx == ring->default_context);
Oscar Mateo8c8579172014-07-24 17:04:14 +01001866 struct drm_device *dev = ring->dev;
1867 struct drm_i915_gem_object *ctx_obj;
1868 uint32_t context_size;
Oscar Mateo84c23772014-07-24 17:04:15 +01001869 struct intel_ringbuffer *ringbuf;
Oscar Mateo8c8579172014-07-24 17:04:14 +01001870 int ret;
1871
Oscar Mateoede7d422014-07-24 17:04:12 +01001872 WARN_ON(ctx->legacy_hw_ctx.rcs_state != NULL);
Daniel Vetterbfc882b2014-11-20 00:33:08 +01001873 WARN_ON(ctx->engine[ring->id].state);
Oscar Mateoede7d422014-07-24 17:04:12 +01001874
Oscar Mateo8c8579172014-07-24 17:04:14 +01001875 context_size = round_up(get_lr_context_size(ring), 4096);
1876
1877 ctx_obj = i915_gem_alloc_context_obj(dev, context_size);
1878 if (IS_ERR(ctx_obj)) {
1879 ret = PTR_ERR(ctx_obj);
1880 DRM_DEBUG_DRIVER("Alloc LRC backing obj failed: %d\n", ret);
1881 return ret;
1882 }
1883
Oscar Mateodcb4c122014-11-13 10:28:10 +00001884 if (is_global_default_ctx) {
1885 ret = i915_gem_obj_ggtt_pin(ctx_obj, GEN8_LR_CONTEXT_ALIGN, 0);
1886 if (ret) {
1887 DRM_DEBUG_DRIVER("Pin LRC backing obj failed: %d\n",
1888 ret);
1889 drm_gem_object_unreference(&ctx_obj->base);
1890 return ret;
1891 }
Oscar Mateo8c8579172014-07-24 17:04:14 +01001892 }
1893
Oscar Mateo84c23772014-07-24 17:04:15 +01001894 ringbuf = kzalloc(sizeof(*ringbuf), GFP_KERNEL);
1895 if (!ringbuf) {
1896 DRM_DEBUG_DRIVER("Failed to allocate ringbuffer %s\n",
1897 ring->name);
Oscar Mateo84c23772014-07-24 17:04:15 +01001898 ret = -ENOMEM;
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001899 goto error_unpin_ctx;
Oscar Mateo84c23772014-07-24 17:04:15 +01001900 }
1901
Daniel Vetter0c7dd532014-08-11 16:17:44 +02001902 ringbuf->ring = ring;
Oscar Mateo582d67f2014-07-24 17:04:16 +01001903
Oscar Mateo84c23772014-07-24 17:04:15 +01001904 ringbuf->size = 32 * PAGE_SIZE;
1905 ringbuf->effective_size = ringbuf->size;
1906 ringbuf->head = 0;
1907 ringbuf->tail = 0;
Oscar Mateo84c23772014-07-24 17:04:15 +01001908 ringbuf->last_retired_head = -1;
Dave Gordonebd0fd42014-11-27 11:22:49 +00001909 intel_ring_update_space(ringbuf);
Oscar Mateo84c23772014-07-24 17:04:15 +01001910
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001911 if (ringbuf->obj == NULL) {
1912 ret = intel_alloc_ringbuffer_obj(dev, ringbuf);
1913 if (ret) {
1914 DRM_DEBUG_DRIVER(
1915 "Failed to allocate ringbuffer obj %s: %d\n",
Oscar Mateo84c23772014-07-24 17:04:15 +01001916 ring->name, ret);
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001917 goto error_free_rbuf;
1918 }
1919
1920 if (is_global_default_ctx) {
1921 ret = intel_pin_and_map_ringbuffer_obj(dev, ringbuf);
1922 if (ret) {
1923 DRM_ERROR(
1924 "Failed to pin and map ringbuffer %s: %d\n",
1925 ring->name, ret);
1926 goto error_destroy_rbuf;
1927 }
1928 }
1929
Oscar Mateo8670d6f2014-07-24 17:04:17 +01001930 }
1931
1932 ret = populate_lr_context(ctx, ctx_obj, ring, ringbuf);
1933 if (ret) {
1934 DRM_DEBUG_DRIVER("Failed to populate LRC: %d\n", ret);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01001935 goto error;
Oscar Mateo84c23772014-07-24 17:04:15 +01001936 }
1937
1938 ctx->engine[ring->id].ringbuf = ringbuf;
Oscar Mateo8c8579172014-07-24 17:04:14 +01001939 ctx->engine[ring->id].state = ctx_obj;
Oscar Mateoede7d422014-07-24 17:04:12 +01001940
Daniel Vetter70b0ea82014-11-18 09:09:32 +01001941 if (ctx == ring->default_context)
1942 lrc_setup_hardware_status_page(ring, ctx_obj);
Thomas Daniele7778be2014-12-02 12:50:48 +00001943 else if (ring->id == RCS && !ctx->rcs_initialized) {
Michel Thierry771b9a52014-11-11 16:47:33 +00001944 if (ring->init_context) {
1945 ret = ring->init_context(ring, ctx);
Thomas Daniele7778be2014-12-02 12:50:48 +00001946 if (ret) {
Michel Thierry771b9a52014-11-11 16:47:33 +00001947 DRM_ERROR("ring init context: %d\n", ret);
Thomas Daniele7778be2014-12-02 12:50:48 +00001948 ctx->engine[ring->id].ringbuf = NULL;
1949 ctx->engine[ring->id].state = NULL;
1950 goto error;
1951 }
Michel Thierry771b9a52014-11-11 16:47:33 +00001952 }
1953
Oscar Mateo564ddb22014-08-21 11:40:54 +01001954 ctx->rcs_initialized = true;
1955 }
1956
Oscar Mateoede7d422014-07-24 17:04:12 +01001957 return 0;
Oscar Mateo8670d6f2014-07-24 17:04:17 +01001958
1959error:
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001960 if (is_global_default_ctx)
1961 intel_unpin_ringbuffer_obj(ringbuf);
1962error_destroy_rbuf:
1963 intel_destroy_ringbuffer_obj(ringbuf);
1964error_free_rbuf:
Oscar Mateo8670d6f2014-07-24 17:04:17 +01001965 kfree(ringbuf);
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001966error_unpin_ctx:
Oscar Mateodcb4c122014-11-13 10:28:10 +00001967 if (is_global_default_ctx)
1968 i915_gem_object_ggtt_unpin(ctx_obj);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01001969 drm_gem_object_unreference(&ctx_obj->base);
1970 return ret;
Oscar Mateoede7d422014-07-24 17:04:12 +01001971}