blob: c8edccb0d7825f884e1432448319e4aacf9a7d48 [file] [log] [blame]
Oscar Mateob20385f2014-07-24 17:04:10 +01001/*
2 * Copyright © 2014 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 *
23 * Authors:
24 * Ben Widawsky <ben@bwidawsk.net>
25 * Michel Thierry <michel.thierry@intel.com>
26 * Thomas Daniel <thomas.daniel@intel.com>
27 * Oscar Mateo <oscar.mateo@intel.com>
28 *
29 */
30
Oscar Mateo73e4d072014-07-24 17:04:48 +010031/**
32 * DOC: Logical Rings, Logical Ring Contexts and Execlists
33 *
34 * Motivation:
Oscar Mateob20385f2014-07-24 17:04:10 +010035 * GEN8 brings an expansion of the HW contexts: "Logical Ring Contexts".
36 * These expanded contexts enable a number of new abilities, especially
37 * "Execlists" (also implemented in this file).
38 *
Oscar Mateo73e4d072014-07-24 17:04:48 +010039 * One of the main differences with the legacy HW contexts is that logical
40 * ring contexts incorporate many more things to the context's state, like
41 * PDPs or ringbuffer control registers:
42 *
43 * The reason why PDPs are included in the context is straightforward: as
44 * PPGTTs (per-process GTTs) are actually per-context, having the PDPs
45 * contained there mean you don't need to do a ppgtt->switch_mm yourself,
46 * instead, the GPU will do it for you on the context switch.
47 *
48 * But, what about the ringbuffer control registers (head, tail, etc..)?
49 * shouldn't we just need a set of those per engine command streamer? This is
50 * where the name "Logical Rings" starts to make sense: by virtualizing the
51 * rings, the engine cs shifts to a new "ring buffer" with every context
52 * switch. When you want to submit a workload to the GPU you: A) choose your
53 * context, B) find its appropriate virtualized ring, C) write commands to it
54 * and then, finally, D) tell the GPU to switch to that context.
55 *
56 * Instead of the legacy MI_SET_CONTEXT, the way you tell the GPU to switch
57 * to a contexts is via a context execution list, ergo "Execlists".
58 *
59 * LRC implementation:
60 * Regarding the creation of contexts, we have:
61 *
62 * - One global default context.
63 * - One local default context for each opened fd.
64 * - One local extra context for each context create ioctl call.
65 *
66 * Now that ringbuffers belong per-context (and not per-engine, like before)
67 * and that contexts are uniquely tied to a given engine (and not reusable,
68 * like before) we need:
69 *
70 * - One ringbuffer per-engine inside each context.
71 * - One backing object per-engine inside each context.
72 *
73 * The global default context starts its life with these new objects fully
74 * allocated and populated. The local default context for each opened fd is
75 * more complex, because we don't know at creation time which engine is going
76 * to use them. To handle this, we have implemented a deferred creation of LR
77 * contexts:
78 *
79 * The local context starts its life as a hollow or blank holder, that only
80 * gets populated for a given engine once we receive an execbuffer. If later
81 * on we receive another execbuffer ioctl for the same context but a different
82 * engine, we allocate/populate a new ringbuffer and context backing object and
83 * so on.
84 *
85 * Finally, regarding local contexts created using the ioctl call: as they are
86 * only allowed with the render ring, we can allocate & populate them right
87 * away (no need to defer anything, at least for now).
88 *
89 * Execlists implementation:
Oscar Mateob20385f2014-07-24 17:04:10 +010090 * Execlists are the new method by which, on gen8+ hardware, workloads are
91 * submitted for execution (as opposed to the legacy, ringbuffer-based, method).
Oscar Mateo73e4d072014-07-24 17:04:48 +010092 * This method works as follows:
93 *
94 * When a request is committed, its commands (the BB start and any leading or
95 * trailing commands, like the seqno breadcrumbs) are placed in the ringbuffer
96 * for the appropriate context. The tail pointer in the hardware context is not
97 * updated at this time, but instead, kept by the driver in the ringbuffer
98 * structure. A structure representing this request is added to a request queue
99 * for the appropriate engine: this structure contains a copy of the context's
100 * tail after the request was written to the ring buffer and a pointer to the
101 * context itself.
102 *
103 * If the engine's request queue was empty before the request was added, the
104 * queue is processed immediately. Otherwise the queue will be processed during
105 * a context switch interrupt. In any case, elements on the queue will get sent
106 * (in pairs) to the GPU's ExecLists Submit Port (ELSP, for short) with a
107 * globally unique 20-bits submission ID.
108 *
109 * When execution of a request completes, the GPU updates the context status
110 * buffer with a context complete event and generates a context switch interrupt.
111 * During the interrupt handling, the driver examines the events in the buffer:
112 * for each context complete event, if the announced ID matches that on the head
113 * of the request queue, then that request is retired and removed from the queue.
114 *
115 * After processing, if any requests were retired and the queue is not empty
116 * then a new execution list can be submitted. The two requests at the front of
117 * the queue are next to be submitted but since a context may not occur twice in
118 * an execution list, if subsequent requests have the same ID as the first then
119 * the two requests must be combined. This is done simply by discarding requests
120 * at the head of the queue until either only one requests is left (in which case
121 * we use a NULL second context) or the first two requests have unique IDs.
122 *
123 * By always executing the first two requests in the queue the driver ensures
124 * that the GPU is kept as busy as possible. In the case where a single context
125 * completes but a second context is still executing, the request for this second
126 * context will be at the head of the queue when we remove the first one. This
127 * request will then be resubmitted along with a new request for a different context,
128 * which will cause the hardware to continue executing the second request and queue
129 * the new request (the GPU detects the condition of a context getting preempted
130 * with the same context and optimizes the context switch flow by not doing
131 * preemption, but just sampling the new tail pointer).
132 *
Oscar Mateob20385f2014-07-24 17:04:10 +0100133 */
134
135#include <drm/drmP.h>
136#include <drm/i915_drm.h>
137#include "i915_drv.h"
Oscar Mateo127f1002014-07-24 17:04:11 +0100138
Michael H. Nguyen468c6812014-11-13 17:51:49 +0000139#define GEN9_LR_CONTEXT_RENDER_SIZE (22 * PAGE_SIZE)
Oscar Mateo8c8579172014-07-24 17:04:14 +0100140#define GEN8_LR_CONTEXT_RENDER_SIZE (20 * PAGE_SIZE)
141#define GEN8_LR_CONTEXT_OTHER_SIZE (2 * PAGE_SIZE)
142
Thomas Daniele981e7b2014-07-24 17:04:39 +0100143#define RING_EXECLIST_QFULL (1 << 0x2)
144#define RING_EXECLIST1_VALID (1 << 0x3)
145#define RING_EXECLIST0_VALID (1 << 0x4)
146#define RING_EXECLIST_ACTIVE_STATUS (3 << 0xE)
147#define RING_EXECLIST1_ACTIVE (1 << 0x11)
148#define RING_EXECLIST0_ACTIVE (1 << 0x12)
149
150#define GEN8_CTX_STATUS_IDLE_ACTIVE (1 << 0)
151#define GEN8_CTX_STATUS_PREEMPTED (1 << 1)
152#define GEN8_CTX_STATUS_ELEMENT_SWITCH (1 << 2)
153#define GEN8_CTX_STATUS_ACTIVE_IDLE (1 << 3)
154#define GEN8_CTX_STATUS_COMPLETE (1 << 4)
155#define GEN8_CTX_STATUS_LITE_RESTORE (1 << 15)
Oscar Mateo8670d6f2014-07-24 17:04:17 +0100156
157#define CTX_LRI_HEADER_0 0x01
158#define CTX_CONTEXT_CONTROL 0x02
159#define CTX_RING_HEAD 0x04
160#define CTX_RING_TAIL 0x06
161#define CTX_RING_BUFFER_START 0x08
162#define CTX_RING_BUFFER_CONTROL 0x0a
163#define CTX_BB_HEAD_U 0x0c
164#define CTX_BB_HEAD_L 0x0e
165#define CTX_BB_STATE 0x10
166#define CTX_SECOND_BB_HEAD_U 0x12
167#define CTX_SECOND_BB_HEAD_L 0x14
168#define CTX_SECOND_BB_STATE 0x16
169#define CTX_BB_PER_CTX_PTR 0x18
170#define CTX_RCS_INDIRECT_CTX 0x1a
171#define CTX_RCS_INDIRECT_CTX_OFFSET 0x1c
172#define CTX_LRI_HEADER_1 0x21
173#define CTX_CTX_TIMESTAMP 0x22
174#define CTX_PDP3_UDW 0x24
175#define CTX_PDP3_LDW 0x26
176#define CTX_PDP2_UDW 0x28
177#define CTX_PDP2_LDW 0x2a
178#define CTX_PDP1_UDW 0x2c
179#define CTX_PDP1_LDW 0x2e
180#define CTX_PDP0_UDW 0x30
181#define CTX_PDP0_LDW 0x32
182#define CTX_LRI_HEADER_2 0x41
183#define CTX_R_PWR_CLK_STATE 0x42
184#define CTX_GPGPU_CSR_BASE_ADDRESS 0x44
185
Ben Widawsky84b790f2014-07-24 17:04:36 +0100186#define GEN8_CTX_VALID (1<<0)
187#define GEN8_CTX_FORCE_PD_RESTORE (1<<1)
188#define GEN8_CTX_FORCE_RESTORE (1<<2)
189#define GEN8_CTX_L3LLC_COHERENT (1<<5)
190#define GEN8_CTX_PRIVILEGE (1<<8)
Michel Thierrye5815a22015-04-08 12:13:32 +0100191
192#define ASSIGN_CTX_PDP(ppgtt, reg_state, n) { \
193 const u64 _addr = ppgtt->pdp.page_directory[n] ? \
194 ppgtt->pdp.page_directory[n]->daddr : \
195 ppgtt->scratch_pd->daddr; \
196 reg_state[CTX_PDP ## n ## _UDW+1] = upper_32_bits(_addr); \
197 reg_state[CTX_PDP ## n ## _LDW+1] = lower_32_bits(_addr); \
198}
199
Ben Widawsky84b790f2014-07-24 17:04:36 +0100200enum {
201 ADVANCED_CONTEXT = 0,
202 LEGACY_CONTEXT,
203 ADVANCED_AD_CONTEXT,
204 LEGACY_64B_CONTEXT
205};
206#define GEN8_CTX_MODE_SHIFT 3
207enum {
208 FAULT_AND_HANG = 0,
209 FAULT_AND_HALT, /* Debug only */
210 FAULT_AND_STREAM,
211 FAULT_AND_CONTINUE /* Unsupported */
212};
213#define GEN8_CTX_ID_SHIFT 32
214
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000215static int intel_lr_context_pin(struct intel_engine_cs *ring,
216 struct intel_context *ctx);
217
Oscar Mateo73e4d072014-07-24 17:04:48 +0100218/**
219 * intel_sanitize_enable_execlists() - sanitize i915.enable_execlists
220 * @dev: DRM device.
221 * @enable_execlists: value of i915.enable_execlists module parameter.
222 *
223 * Only certain platforms support Execlists (the prerequisites being
Thomas Daniel27401d12014-12-11 12:48:35 +0000224 * support for Logical Ring Contexts and Aliasing PPGTT or better).
Oscar Mateo73e4d072014-07-24 17:04:48 +0100225 *
226 * Return: 1 if Execlists is supported and has to be enabled.
227 */
Oscar Mateo127f1002014-07-24 17:04:11 +0100228int intel_sanitize_enable_execlists(struct drm_device *dev, int enable_execlists)
229{
Daniel Vetterbd84b1e2014-08-11 15:57:57 +0200230 WARN_ON(i915.enable_ppgtt == -1);
231
Damien Lespiau70ee45e2014-11-14 15:05:59 +0000232 if (INTEL_INFO(dev)->gen >= 9)
233 return 1;
234
Oscar Mateo127f1002014-07-24 17:04:11 +0100235 if (enable_execlists == 0)
236 return 0;
237
Oscar Mateo14bf9932014-07-24 17:04:34 +0100238 if (HAS_LOGICAL_RING_CONTEXTS(dev) && USES_PPGTT(dev) &&
239 i915.use_mmio_flip >= 0)
Oscar Mateo127f1002014-07-24 17:04:11 +0100240 return 1;
241
242 return 0;
243}
Oscar Mateoede7d422014-07-24 17:04:12 +0100244
Oscar Mateo73e4d072014-07-24 17:04:48 +0100245/**
246 * intel_execlists_ctx_id() - get the Execlists Context ID
247 * @ctx_obj: Logical Ring Context backing object.
248 *
249 * Do not confuse with ctx->id! Unfortunately we have a name overload
250 * here: the old context ID we pass to userspace as a handler so that
251 * they can refer to a context, and the new context ID we pass to the
252 * ELSP so that the GPU can inform us of the context status via
253 * interrupts.
254 *
255 * Return: 20-bits globally unique context ID.
256 */
Ben Widawsky84b790f2014-07-24 17:04:36 +0100257u32 intel_execlists_ctx_id(struct drm_i915_gem_object *ctx_obj)
258{
259 u32 lrca = i915_gem_obj_ggtt_offset(ctx_obj);
260
261 /* LRCA is required to be 4K aligned so the more significant 20 bits
262 * are globally unique */
263 return lrca >> 12;
264}
265
Nick Hoath203a5712015-02-06 11:30:04 +0000266static uint64_t execlists_ctx_descriptor(struct intel_engine_cs *ring,
267 struct drm_i915_gem_object *ctx_obj)
Ben Widawsky84b790f2014-07-24 17:04:36 +0100268{
Nick Hoath203a5712015-02-06 11:30:04 +0000269 struct drm_device *dev = ring->dev;
Ben Widawsky84b790f2014-07-24 17:04:36 +0100270 uint64_t desc;
271 uint64_t lrca = i915_gem_obj_ggtt_offset(ctx_obj);
Michel Thierryacdd8842014-07-24 17:04:38 +0100272
273 WARN_ON(lrca & 0xFFFFFFFF00000FFFULL);
Ben Widawsky84b790f2014-07-24 17:04:36 +0100274
275 desc = GEN8_CTX_VALID;
276 desc |= LEGACY_CONTEXT << GEN8_CTX_MODE_SHIFT;
Arun Siluvery51847fb2015-04-07 14:01:33 +0100277 if (IS_GEN8(ctx_obj->base.dev))
278 desc |= GEN8_CTX_L3LLC_COHERENT;
Ben Widawsky84b790f2014-07-24 17:04:36 +0100279 desc |= GEN8_CTX_PRIVILEGE;
280 desc |= lrca;
281 desc |= (u64)intel_execlists_ctx_id(ctx_obj) << GEN8_CTX_ID_SHIFT;
282
283 /* TODO: WaDisableLiteRestore when we start using semaphore
284 * signalling between Command Streamers */
285 /* desc |= GEN8_CTX_FORCE_RESTORE; */
286
Nick Hoath203a5712015-02-06 11:30:04 +0000287 /* WaEnableForceRestoreInCtxtDescForVCS:skl */
288 if (IS_GEN9(dev) &&
289 INTEL_REVID(dev) <= SKL_REVID_B0 &&
290 (ring->id == BCS || ring->id == VCS ||
291 ring->id == VECS || ring->id == VCS2))
292 desc |= GEN8_CTX_FORCE_RESTORE;
293
Ben Widawsky84b790f2014-07-24 17:04:36 +0100294 return desc;
295}
296
297static void execlists_elsp_write(struct intel_engine_cs *ring,
298 struct drm_i915_gem_object *ctx_obj0,
299 struct drm_i915_gem_object *ctx_obj1)
300{
Tvrtko Ursulin6e7cc472014-11-13 17:51:51 +0000301 struct drm_device *dev = ring->dev;
302 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky84b790f2014-07-24 17:04:36 +0100303 uint64_t temp = 0;
304 uint32_t desc[4];
305
306 /* XXX: You must always write both descriptors in the order below. */
307 if (ctx_obj1)
Nick Hoath203a5712015-02-06 11:30:04 +0000308 temp = execlists_ctx_descriptor(ring, ctx_obj1);
Ben Widawsky84b790f2014-07-24 17:04:36 +0100309 else
310 temp = 0;
311 desc[1] = (u32)(temp >> 32);
312 desc[0] = (u32)temp;
313
Nick Hoath203a5712015-02-06 11:30:04 +0000314 temp = execlists_ctx_descriptor(ring, ctx_obj0);
Ben Widawsky84b790f2014-07-24 17:04:36 +0100315 desc[3] = (u32)(temp >> 32);
316 desc[2] = (u32)temp;
317
Mika Kuoppala59bad942015-01-16 11:34:40 +0200318 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Ben Widawsky84b790f2014-07-24 17:04:36 +0100319 I915_WRITE(RING_ELSP(ring), desc[1]);
320 I915_WRITE(RING_ELSP(ring), desc[0]);
321 I915_WRITE(RING_ELSP(ring), desc[3]);
Chris Wilson6daccb02015-01-16 11:34:35 +0200322
Ben Widawsky84b790f2014-07-24 17:04:36 +0100323 /* The context is automatically loaded after the following */
324 I915_WRITE(RING_ELSP(ring), desc[2]);
325
326 /* ELSP is a wo register, so use another nearby reg for posting instead */
327 POSTING_READ(RING_EXECLIST_STATUS(ring));
Mika Kuoppala59bad942015-01-16 11:34:40 +0200328 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Ben Widawsky84b790f2014-07-24 17:04:36 +0100329}
330
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000331static int execlists_update_context(struct drm_i915_gem_object *ctx_obj,
332 struct drm_i915_gem_object *ring_obj,
333 u32 tail)
Oscar Mateoae1250b2014-07-24 17:04:37 +0100334{
335 struct page *page;
336 uint32_t *reg_state;
337
338 page = i915_gem_object_get_page(ctx_obj, 1);
339 reg_state = kmap_atomic(page);
340
341 reg_state[CTX_RING_TAIL+1] = tail;
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000342 reg_state[CTX_RING_BUFFER_START+1] = i915_gem_obj_ggtt_offset(ring_obj);
Oscar Mateoae1250b2014-07-24 17:04:37 +0100343
344 kunmap_atomic(reg_state);
345
346 return 0;
347}
348
Dave Gordoncd0707c2014-10-30 15:41:56 +0000349static void execlists_submit_contexts(struct intel_engine_cs *ring,
350 struct intel_context *to0, u32 tail0,
351 struct intel_context *to1, u32 tail1)
Ben Widawsky84b790f2014-07-24 17:04:36 +0100352{
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000353 struct drm_i915_gem_object *ctx_obj0 = to0->engine[ring->id].state;
354 struct intel_ringbuffer *ringbuf0 = to0->engine[ring->id].ringbuf;
Ben Widawsky84b790f2014-07-24 17:04:36 +0100355 struct drm_i915_gem_object *ctx_obj1 = NULL;
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000356 struct intel_ringbuffer *ringbuf1 = NULL;
Ben Widawsky84b790f2014-07-24 17:04:36 +0100357
Ben Widawsky84b790f2014-07-24 17:04:36 +0100358 BUG_ON(!ctx_obj0);
Michel Thierryacdd8842014-07-24 17:04:38 +0100359 WARN_ON(!i915_gem_obj_is_pinned(ctx_obj0));
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000360 WARN_ON(!i915_gem_obj_is_pinned(ringbuf0->obj));
Ben Widawsky84b790f2014-07-24 17:04:36 +0100361
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000362 execlists_update_context(ctx_obj0, ringbuf0->obj, tail0);
Oscar Mateoae1250b2014-07-24 17:04:37 +0100363
Ben Widawsky84b790f2014-07-24 17:04:36 +0100364 if (to1) {
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000365 ringbuf1 = to1->engine[ring->id].ringbuf;
Ben Widawsky84b790f2014-07-24 17:04:36 +0100366 ctx_obj1 = to1->engine[ring->id].state;
367 BUG_ON(!ctx_obj1);
Michel Thierryacdd8842014-07-24 17:04:38 +0100368 WARN_ON(!i915_gem_obj_is_pinned(ctx_obj1));
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000369 WARN_ON(!i915_gem_obj_is_pinned(ringbuf1->obj));
Oscar Mateoae1250b2014-07-24 17:04:37 +0100370
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000371 execlists_update_context(ctx_obj1, ringbuf1->obj, tail1);
Ben Widawsky84b790f2014-07-24 17:04:36 +0100372 }
373
374 execlists_elsp_write(ring, ctx_obj0, ctx_obj1);
Ben Widawsky84b790f2014-07-24 17:04:36 +0100375}
376
Michel Thierryacdd8842014-07-24 17:04:38 +0100377static void execlists_context_unqueue(struct intel_engine_cs *ring)
378{
Nick Hoath6d3d8272015-01-15 13:10:39 +0000379 struct drm_i915_gem_request *req0 = NULL, *req1 = NULL;
380 struct drm_i915_gem_request *cursor = NULL, *tmp = NULL;
Thomas Daniele981e7b2014-07-24 17:04:39 +0100381
382 assert_spin_locked(&ring->execlist_lock);
Michel Thierryacdd8842014-07-24 17:04:38 +0100383
384 if (list_empty(&ring->execlist_queue))
385 return;
386
387 /* Try to read in pairs */
388 list_for_each_entry_safe(cursor, tmp, &ring->execlist_queue,
389 execlist_link) {
390 if (!req0) {
391 req0 = cursor;
Nick Hoath6d3d8272015-01-15 13:10:39 +0000392 } else if (req0->ctx == cursor->ctx) {
Michel Thierryacdd8842014-07-24 17:04:38 +0100393 /* Same ctx: ignore first request, as second request
394 * will update tail past first request's workload */
Oscar Mateoe1fee722014-07-24 17:04:40 +0100395 cursor->elsp_submitted = req0->elsp_submitted;
Michel Thierryacdd8842014-07-24 17:04:38 +0100396 list_del(&req0->execlist_link);
Thomas Danielc86ee3a92014-11-13 10:27:05 +0000397 list_add_tail(&req0->execlist_link,
398 &ring->execlist_retired_req_list);
Michel Thierryacdd8842014-07-24 17:04:38 +0100399 req0 = cursor;
400 } else {
401 req1 = cursor;
402 break;
403 }
404 }
405
Oscar Mateoe1fee722014-07-24 17:04:40 +0100406 WARN_ON(req1 && req1->elsp_submitted);
407
Nick Hoath6d3d8272015-01-15 13:10:39 +0000408 execlists_submit_contexts(ring, req0->ctx, req0->tail,
409 req1 ? req1->ctx : NULL,
410 req1 ? req1->tail : 0);
Oscar Mateoe1fee722014-07-24 17:04:40 +0100411
412 req0->elsp_submitted++;
413 if (req1)
414 req1->elsp_submitted++;
Michel Thierryacdd8842014-07-24 17:04:38 +0100415}
416
Thomas Daniele981e7b2014-07-24 17:04:39 +0100417static bool execlists_check_remove_request(struct intel_engine_cs *ring,
418 u32 request_id)
419{
Nick Hoath6d3d8272015-01-15 13:10:39 +0000420 struct drm_i915_gem_request *head_req;
Thomas Daniele981e7b2014-07-24 17:04:39 +0100421
422 assert_spin_locked(&ring->execlist_lock);
423
424 head_req = list_first_entry_or_null(&ring->execlist_queue,
Nick Hoath6d3d8272015-01-15 13:10:39 +0000425 struct drm_i915_gem_request,
Thomas Daniele981e7b2014-07-24 17:04:39 +0100426 execlist_link);
427
428 if (head_req != NULL) {
429 struct drm_i915_gem_object *ctx_obj =
Nick Hoath6d3d8272015-01-15 13:10:39 +0000430 head_req->ctx->engine[ring->id].state;
Thomas Daniele981e7b2014-07-24 17:04:39 +0100431 if (intel_execlists_ctx_id(ctx_obj) == request_id) {
Oscar Mateoe1fee722014-07-24 17:04:40 +0100432 WARN(head_req->elsp_submitted == 0,
433 "Never submitted head request\n");
434
435 if (--head_req->elsp_submitted <= 0) {
436 list_del(&head_req->execlist_link);
Thomas Danielc86ee3a92014-11-13 10:27:05 +0000437 list_add_tail(&head_req->execlist_link,
438 &ring->execlist_retired_req_list);
Oscar Mateoe1fee722014-07-24 17:04:40 +0100439 return true;
440 }
Thomas Daniele981e7b2014-07-24 17:04:39 +0100441 }
442 }
443
444 return false;
445}
446
Oscar Mateo73e4d072014-07-24 17:04:48 +0100447/**
Daniel Vetter3f7531c2014-12-10 17:41:43 +0100448 * intel_lrc_irq_handler() - handle Context Switch interrupts
Oscar Mateo73e4d072014-07-24 17:04:48 +0100449 * @ring: Engine Command Streamer to handle.
450 *
451 * Check the unread Context Status Buffers and manage the submission of new
452 * contexts to the ELSP accordingly.
453 */
Daniel Vetter3f7531c2014-12-10 17:41:43 +0100454void intel_lrc_irq_handler(struct intel_engine_cs *ring)
Thomas Daniele981e7b2014-07-24 17:04:39 +0100455{
456 struct drm_i915_private *dev_priv = ring->dev->dev_private;
457 u32 status_pointer;
458 u8 read_pointer;
459 u8 write_pointer;
460 u32 status;
461 u32 status_id;
462 u32 submit_contexts = 0;
463
464 status_pointer = I915_READ(RING_CONTEXT_STATUS_PTR(ring));
465
466 read_pointer = ring->next_context_status_buffer;
467 write_pointer = status_pointer & 0x07;
468 if (read_pointer > write_pointer)
469 write_pointer += 6;
470
471 spin_lock(&ring->execlist_lock);
472
473 while (read_pointer < write_pointer) {
474 read_pointer++;
475 status = I915_READ(RING_CONTEXT_STATUS_BUF(ring) +
476 (read_pointer % 6) * 8);
477 status_id = I915_READ(RING_CONTEXT_STATUS_BUF(ring) +
478 (read_pointer % 6) * 8 + 4);
479
Oscar Mateoe1fee722014-07-24 17:04:40 +0100480 if (status & GEN8_CTX_STATUS_PREEMPTED) {
481 if (status & GEN8_CTX_STATUS_LITE_RESTORE) {
482 if (execlists_check_remove_request(ring, status_id))
483 WARN(1, "Lite Restored request removed from queue\n");
484 } else
485 WARN(1, "Preemption without Lite Restore\n");
486 }
487
488 if ((status & GEN8_CTX_STATUS_ACTIVE_IDLE) ||
489 (status & GEN8_CTX_STATUS_ELEMENT_SWITCH)) {
Thomas Daniele981e7b2014-07-24 17:04:39 +0100490 if (execlists_check_remove_request(ring, status_id))
491 submit_contexts++;
492 }
493 }
494
495 if (submit_contexts != 0)
496 execlists_context_unqueue(ring);
497
498 spin_unlock(&ring->execlist_lock);
499
500 WARN(submit_contexts > 2, "More than two context complete events?\n");
501 ring->next_context_status_buffer = write_pointer % 6;
502
503 I915_WRITE(RING_CONTEXT_STATUS_PTR(ring),
504 ((u32)ring->next_context_status_buffer & 0x07) << 8);
505}
506
Michel Thierryacdd8842014-07-24 17:04:38 +0100507static int execlists_context_queue(struct intel_engine_cs *ring,
508 struct intel_context *to,
Nick Hoath2d129552015-01-15 13:10:36 +0000509 u32 tail,
510 struct drm_i915_gem_request *request)
Michel Thierryacdd8842014-07-24 17:04:38 +0100511{
Nick Hoath6d3d8272015-01-15 13:10:39 +0000512 struct drm_i915_gem_request *cursor;
Thomas Daniele981e7b2014-07-24 17:04:39 +0100513 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Michel Thierryacdd8842014-07-24 17:04:38 +0100514 unsigned long flags;
Oscar Mateof1ad5a12014-07-24 17:04:41 +0100515 int num_elements = 0;
Michel Thierryacdd8842014-07-24 17:04:38 +0100516
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000517 if (to != ring->default_context)
518 intel_lr_context_pin(ring, to);
519
Nick Hoath2d129552015-01-15 13:10:36 +0000520 if (!request) {
521 /*
522 * If there isn't a request associated with this submission,
523 * create one as a temporary holder.
524 */
Nick Hoath2d129552015-01-15 13:10:36 +0000525 request = kzalloc(sizeof(*request), GFP_KERNEL);
526 if (request == NULL)
527 return -ENOMEM;
Nick Hoath2d129552015-01-15 13:10:36 +0000528 request->ring = ring;
Nick Hoath6d3d8272015-01-15 13:10:39 +0000529 request->ctx = to;
Nick Hoathb3a38992015-02-19 16:30:47 +0000530 kref_init(&request->ref);
531 request->uniq = dev_priv->request_uniq++;
532 i915_gem_context_reference(request->ctx);
Nick Hoath21076372015-01-15 13:10:38 +0000533 } else {
Nick Hoathb3a38992015-02-19 16:30:47 +0000534 i915_gem_request_reference(request);
Nick Hoath21076372015-01-15 13:10:38 +0000535 WARN_ON(to != request->ctx);
Nick Hoath2d129552015-01-15 13:10:36 +0000536 }
Nick Hoath72f95af2015-01-15 13:10:37 +0000537 request->tail = tail;
Nick Hoath2d129552015-01-15 13:10:36 +0000538
Thomas Daniele981e7b2014-07-24 17:04:39 +0100539 intel_runtime_pm_get(dev_priv);
Michel Thierryacdd8842014-07-24 17:04:38 +0100540
541 spin_lock_irqsave(&ring->execlist_lock, flags);
542
Oscar Mateof1ad5a12014-07-24 17:04:41 +0100543 list_for_each_entry(cursor, &ring->execlist_queue, execlist_link)
544 if (++num_elements > 2)
545 break;
546
547 if (num_elements > 2) {
Nick Hoath6d3d8272015-01-15 13:10:39 +0000548 struct drm_i915_gem_request *tail_req;
Oscar Mateof1ad5a12014-07-24 17:04:41 +0100549
550 tail_req = list_last_entry(&ring->execlist_queue,
Nick Hoath6d3d8272015-01-15 13:10:39 +0000551 struct drm_i915_gem_request,
Oscar Mateof1ad5a12014-07-24 17:04:41 +0100552 execlist_link);
553
Nick Hoath6d3d8272015-01-15 13:10:39 +0000554 if (to == tail_req->ctx) {
Oscar Mateof1ad5a12014-07-24 17:04:41 +0100555 WARN(tail_req->elsp_submitted != 0,
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000556 "More than 2 already-submitted reqs queued\n");
Oscar Mateof1ad5a12014-07-24 17:04:41 +0100557 list_del(&tail_req->execlist_link);
Thomas Danielc86ee3a92014-11-13 10:27:05 +0000558 list_add_tail(&tail_req->execlist_link,
559 &ring->execlist_retired_req_list);
Oscar Mateof1ad5a12014-07-24 17:04:41 +0100560 }
561 }
562
Nick Hoath6d3d8272015-01-15 13:10:39 +0000563 list_add_tail(&request->execlist_link, &ring->execlist_queue);
Oscar Mateof1ad5a12014-07-24 17:04:41 +0100564 if (num_elements == 0)
Michel Thierryacdd8842014-07-24 17:04:38 +0100565 execlists_context_unqueue(ring);
566
567 spin_unlock_irqrestore(&ring->execlist_lock, flags);
568
569 return 0;
570}
571
Nick Hoath21076372015-01-15 13:10:38 +0000572static int logical_ring_invalidate_all_caches(struct intel_ringbuffer *ringbuf,
573 struct intel_context *ctx)
Oscar Mateoba8b7cc2014-07-24 17:04:33 +0100574{
575 struct intel_engine_cs *ring = ringbuf->ring;
576 uint32_t flush_domains;
577 int ret;
578
579 flush_domains = 0;
580 if (ring->gpu_caches_dirty)
581 flush_domains = I915_GEM_GPU_DOMAINS;
582
Nick Hoath21076372015-01-15 13:10:38 +0000583 ret = ring->emit_flush(ringbuf, ctx,
584 I915_GEM_GPU_DOMAINS, flush_domains);
Oscar Mateoba8b7cc2014-07-24 17:04:33 +0100585 if (ret)
586 return ret;
587
588 ring->gpu_caches_dirty = false;
589 return 0;
590}
591
592static int execlists_move_to_gpu(struct intel_ringbuffer *ringbuf,
Nick Hoath21076372015-01-15 13:10:38 +0000593 struct intel_context *ctx,
Oscar Mateoba8b7cc2014-07-24 17:04:33 +0100594 struct list_head *vmas)
595{
596 struct intel_engine_cs *ring = ringbuf->ring;
597 struct i915_vma *vma;
598 uint32_t flush_domains = 0;
599 bool flush_chipset = false;
600 int ret;
601
602 list_for_each_entry(vma, vmas, exec_list) {
603 struct drm_i915_gem_object *obj = vma->obj;
604
605 ret = i915_gem_object_sync(obj, ring);
606 if (ret)
607 return ret;
608
609 if (obj->base.write_domain & I915_GEM_DOMAIN_CPU)
610 flush_chipset |= i915_gem_clflush_object(obj, false);
611
612 flush_domains |= obj->base.write_domain;
613 }
614
615 if (flush_domains & I915_GEM_DOMAIN_GTT)
616 wmb();
617
618 /* Unconditionally invalidate gpu caches and ensure that we do flush
619 * any residual writes from the previous batch.
620 */
Nick Hoath21076372015-01-15 13:10:38 +0000621 return logical_ring_invalidate_all_caches(ringbuf, ctx);
Oscar Mateoba8b7cc2014-07-24 17:04:33 +0100622}
623
John Harrison6689cb22015-03-19 12:30:08 +0000624int intel_logical_ring_alloc_request_extras(struct drm_i915_gem_request *request,
625 struct intel_context *ctx)
John Harrisonbc0dce32015-03-19 12:30:07 +0000626{
John Harrisonbc0dce32015-03-19 12:30:07 +0000627 int ret;
628
John Harrison6689cb22015-03-19 12:30:08 +0000629 if (ctx != request->ring->default_context) {
630 ret = intel_lr_context_pin(request->ring, ctx);
631 if (ret)
John Harrisonbc0dce32015-03-19 12:30:07 +0000632 return ret;
John Harrisonbc0dce32015-03-19 12:30:07 +0000633 }
634
John Harrison6689cb22015-03-19 12:30:08 +0000635 request->ringbuf = ctx->engine[request->ring->id].ringbuf;
636 request->ctx = ctx;
John Harrisonbc0dce32015-03-19 12:30:07 +0000637 i915_gem_context_reference(request->ctx);
John Harrisonbc0dce32015-03-19 12:30:07 +0000638
John Harrisonbc0dce32015-03-19 12:30:07 +0000639 return 0;
640}
641
642static int logical_ring_wait_request(struct intel_ringbuffer *ringbuf,
643 int bytes)
644{
645 struct intel_engine_cs *ring = ringbuf->ring;
646 struct drm_i915_gem_request *request;
John Harrisondbe46462015-03-19 12:30:09 +0000647 int ret, new_space;
John Harrisonbc0dce32015-03-19 12:30:07 +0000648
649 if (intel_ring_space(ringbuf) >= bytes)
650 return 0;
651
652 list_for_each_entry(request, &ring->request_list, list) {
653 /*
654 * The request queue is per-engine, so can contain requests
655 * from multiple ringbuffers. Here, we must ignore any that
656 * aren't from the ringbuffer we're considering.
657 */
658 struct intel_context *ctx = request->ctx;
659 if (ctx->engine[ring->id].ringbuf != ringbuf)
660 continue;
661
662 /* Would completion of this request free enough space? */
John Harrisondbe46462015-03-19 12:30:09 +0000663 new_space = __intel_ring_space(request->postfix, ringbuf->tail,
664 ringbuf->size);
665 if (new_space >= bytes)
John Harrisonbc0dce32015-03-19 12:30:07 +0000666 break;
John Harrisonbc0dce32015-03-19 12:30:07 +0000667 }
668
669 if (&request->list == &ring->request_list)
670 return -ENOSPC;
671
672 ret = i915_wait_request(request);
673 if (ret)
674 return ret;
675
676 i915_gem_retire_requests_ring(ring);
677
John Harrisondbe46462015-03-19 12:30:09 +0000678 WARN_ON(intel_ring_space(ringbuf) < new_space);
679
John Harrisonbc0dce32015-03-19 12:30:07 +0000680 return intel_ring_space(ringbuf) >= bytes ? 0 : -ENOSPC;
681}
682
683/*
684 * intel_logical_ring_advance_and_submit() - advance the tail and submit the workload
685 * @ringbuf: Logical Ringbuffer to advance.
686 *
687 * The tail is updated in our logical ringbuffer struct, not in the actual context. What
688 * really happens during submission is that the context and current tail will be placed
689 * on a queue waiting for the ELSP to be ready to accept a new context submission. At that
690 * point, the tail *inside* the context is updated and the ELSP written to.
691 */
692static void
693intel_logical_ring_advance_and_submit(struct intel_ringbuffer *ringbuf,
694 struct intel_context *ctx,
695 struct drm_i915_gem_request *request)
696{
697 struct intel_engine_cs *ring = ringbuf->ring;
698
699 intel_logical_ring_advance(ringbuf);
700
701 if (intel_ring_stopped(ring))
702 return;
703
704 execlists_context_queue(ring, ctx, ringbuf->tail, request);
705}
706
707static int logical_ring_wait_for_space(struct intel_ringbuffer *ringbuf,
708 struct intel_context *ctx,
709 int bytes)
710{
711 struct intel_engine_cs *ring = ringbuf->ring;
712 struct drm_device *dev = ring->dev;
713 struct drm_i915_private *dev_priv = dev->dev_private;
714 unsigned long end;
715 int ret;
716
717 ret = logical_ring_wait_request(ringbuf, bytes);
718 if (ret != -ENOSPC)
719 return ret;
720
721 /* Force the context submission in case we have been skipping it */
722 intel_logical_ring_advance_and_submit(ringbuf, ctx, NULL);
723
724 /* With GEM the hangcheck timer should kick us out of the loop,
725 * leaving it early runs the risk of corrupting GEM state (due
726 * to running on almost untested codepaths). But on resume
727 * timers don't work yet, so prevent a complete hang in that
728 * case by choosing an insanely large timeout. */
729 end = jiffies + 60 * HZ;
730
731 ret = 0;
732 do {
733 if (intel_ring_space(ringbuf) >= bytes)
734 break;
735
736 msleep(1);
737
738 if (dev_priv->mm.interruptible && signal_pending(current)) {
739 ret = -ERESTARTSYS;
740 break;
741 }
742
743 ret = i915_gem_check_wedge(&dev_priv->gpu_error,
744 dev_priv->mm.interruptible);
745 if (ret)
746 break;
747
748 if (time_after(jiffies, end)) {
749 ret = -EBUSY;
750 break;
751 }
752 } while (1);
753
754 return ret;
755}
756
757static int logical_ring_wrap_buffer(struct intel_ringbuffer *ringbuf,
758 struct intel_context *ctx)
759{
760 uint32_t __iomem *virt;
761 int rem = ringbuf->size - ringbuf->tail;
762
763 if (ringbuf->space < rem) {
764 int ret = logical_ring_wait_for_space(ringbuf, ctx, rem);
765
766 if (ret)
767 return ret;
768 }
769
770 virt = ringbuf->virtual_start + ringbuf->tail;
771 rem /= 4;
772 while (rem--)
773 iowrite32(MI_NOOP, virt++);
774
775 ringbuf->tail = 0;
776 intel_ring_update_space(ringbuf);
777
778 return 0;
779}
780
781static int logical_ring_prepare(struct intel_ringbuffer *ringbuf,
782 struct intel_context *ctx, int bytes)
783{
784 int ret;
785
786 if (unlikely(ringbuf->tail + bytes > ringbuf->effective_size)) {
787 ret = logical_ring_wrap_buffer(ringbuf, ctx);
788 if (unlikely(ret))
789 return ret;
790 }
791
792 if (unlikely(ringbuf->space < bytes)) {
793 ret = logical_ring_wait_for_space(ringbuf, ctx, bytes);
794 if (unlikely(ret))
795 return ret;
796 }
797
798 return 0;
799}
800
801/**
802 * intel_logical_ring_begin() - prepare the logical ringbuffer to accept some commands
803 *
804 * @ringbuf: Logical ringbuffer.
805 * @num_dwords: number of DWORDs that we plan to write to the ringbuffer.
806 *
807 * The ringbuffer might not be ready to accept the commands right away (maybe it needs to
808 * be wrapped, or wait a bit for the tail to be updated). This function takes care of that
809 * and also preallocates a request (every workload submission is still mediated through
810 * requests, same as it did with legacy ringbuffer submission).
811 *
812 * Return: non-zero if the ringbuffer is not ready to be written to.
813 */
814static int intel_logical_ring_begin(struct intel_ringbuffer *ringbuf,
815 struct intel_context *ctx, int num_dwords)
816{
817 struct intel_engine_cs *ring = ringbuf->ring;
818 struct drm_device *dev = ring->dev;
819 struct drm_i915_private *dev_priv = dev->dev_private;
820 int ret;
821
822 ret = i915_gem_check_wedge(&dev_priv->gpu_error,
823 dev_priv->mm.interruptible);
824 if (ret)
825 return ret;
826
827 ret = logical_ring_prepare(ringbuf, ctx, num_dwords * sizeof(uint32_t));
828 if (ret)
829 return ret;
830
831 /* Preallocate the olr before touching the ring */
John Harrison6689cb22015-03-19 12:30:08 +0000832 ret = i915_gem_request_alloc(ring, ctx);
John Harrisonbc0dce32015-03-19 12:30:07 +0000833 if (ret)
834 return ret;
835
836 ringbuf->space -= num_dwords * sizeof(uint32_t);
837 return 0;
838}
839
Oscar Mateo73e4d072014-07-24 17:04:48 +0100840/**
841 * execlists_submission() - submit a batchbuffer for execution, Execlists style
842 * @dev: DRM device.
843 * @file: DRM file.
844 * @ring: Engine Command Streamer to submit to.
845 * @ctx: Context to employ for this submission.
846 * @args: execbuffer call arguments.
847 * @vmas: list of vmas.
848 * @batch_obj: the batchbuffer to submit.
849 * @exec_start: batchbuffer start virtual address pointer.
John Harrison8e004ef2015-02-13 11:48:10 +0000850 * @dispatch_flags: translated execbuffer call flags.
Oscar Mateo73e4d072014-07-24 17:04:48 +0100851 *
852 * This is the evil twin version of i915_gem_ringbuffer_submission. It abstracts
853 * away the submission details of the execbuffer ioctl call.
854 *
855 * Return: non-zero if the submission fails.
856 */
Oscar Mateo454afeb2014-07-24 17:04:22 +0100857int intel_execlists_submission(struct drm_device *dev, struct drm_file *file,
858 struct intel_engine_cs *ring,
859 struct intel_context *ctx,
860 struct drm_i915_gem_execbuffer2 *args,
861 struct list_head *vmas,
862 struct drm_i915_gem_object *batch_obj,
John Harrison8e004ef2015-02-13 11:48:10 +0000863 u64 exec_start, u32 dispatch_flags)
Oscar Mateo454afeb2014-07-24 17:04:22 +0100864{
Oscar Mateoba8b7cc2014-07-24 17:04:33 +0100865 struct drm_i915_private *dev_priv = dev->dev_private;
866 struct intel_ringbuffer *ringbuf = ctx->engine[ring->id].ringbuf;
867 int instp_mode;
868 u32 instp_mask;
869 int ret;
870
871 instp_mode = args->flags & I915_EXEC_CONSTANTS_MASK;
872 instp_mask = I915_EXEC_CONSTANTS_MASK;
873 switch (instp_mode) {
874 case I915_EXEC_CONSTANTS_REL_GENERAL:
875 case I915_EXEC_CONSTANTS_ABSOLUTE:
876 case I915_EXEC_CONSTANTS_REL_SURFACE:
877 if (instp_mode != 0 && ring != &dev_priv->ring[RCS]) {
878 DRM_DEBUG("non-0 rel constants mode on non-RCS\n");
879 return -EINVAL;
880 }
881
882 if (instp_mode != dev_priv->relative_constants_mode) {
883 if (instp_mode == I915_EXEC_CONSTANTS_REL_SURFACE) {
884 DRM_DEBUG("rel surface constants mode invalid on gen5+\n");
885 return -EINVAL;
886 }
887
888 /* The HW changed the meaning on this bit on gen6 */
889 instp_mask &= ~I915_EXEC_CONSTANTS_REL_SURFACE;
890 }
891 break;
892 default:
893 DRM_DEBUG("execbuf with unknown constants: %d\n", instp_mode);
894 return -EINVAL;
895 }
896
897 if (args->num_cliprects != 0) {
898 DRM_DEBUG("clip rectangles are only valid on pre-gen5\n");
899 return -EINVAL;
900 } else {
901 if (args->DR4 == 0xffffffff) {
902 DRM_DEBUG("UXA submitting garbage DR4, fixing up\n");
903 args->DR4 = 0;
904 }
905
906 if (args->DR1 || args->DR4 || args->cliprects_ptr) {
907 DRM_DEBUG("0 cliprects but dirt in cliprects fields\n");
908 return -EINVAL;
909 }
910 }
911
912 if (args->flags & I915_EXEC_GEN7_SOL_RESET) {
913 DRM_DEBUG("sol reset is gen7 only\n");
914 return -EINVAL;
915 }
916
Nick Hoath21076372015-01-15 13:10:38 +0000917 ret = execlists_move_to_gpu(ringbuf, ctx, vmas);
Oscar Mateoba8b7cc2014-07-24 17:04:33 +0100918 if (ret)
919 return ret;
920
921 if (ring == &dev_priv->ring[RCS] &&
922 instp_mode != dev_priv->relative_constants_mode) {
Nick Hoath21076372015-01-15 13:10:38 +0000923 ret = intel_logical_ring_begin(ringbuf, ctx, 4);
Oscar Mateoba8b7cc2014-07-24 17:04:33 +0100924 if (ret)
925 return ret;
926
927 intel_logical_ring_emit(ringbuf, MI_NOOP);
928 intel_logical_ring_emit(ringbuf, MI_LOAD_REGISTER_IMM(1));
929 intel_logical_ring_emit(ringbuf, INSTPM);
930 intel_logical_ring_emit(ringbuf, instp_mask << 16 | instp_mode);
931 intel_logical_ring_advance(ringbuf);
932
933 dev_priv->relative_constants_mode = instp_mode;
934 }
935
John Harrison8e004ef2015-02-13 11:48:10 +0000936 ret = ring->emit_bb_start(ringbuf, ctx, exec_start, dispatch_flags);
Oscar Mateoba8b7cc2014-07-24 17:04:33 +0100937 if (ret)
938 return ret;
939
John Harrison5e4be7b2015-02-13 11:48:11 +0000940 trace_i915_gem_ring_dispatch(intel_ring_get_request(ring), dispatch_flags);
941
Oscar Mateoba8b7cc2014-07-24 17:04:33 +0100942 i915_gem_execbuffer_move_to_active(vmas, ring);
943 i915_gem_execbuffer_retire_commands(dev, file, ring, batch_obj);
944
Oscar Mateo454afeb2014-07-24 17:04:22 +0100945 return 0;
946}
947
Thomas Danielc86ee3a92014-11-13 10:27:05 +0000948void intel_execlists_retire_requests(struct intel_engine_cs *ring)
949{
Nick Hoath6d3d8272015-01-15 13:10:39 +0000950 struct drm_i915_gem_request *req, *tmp;
Thomas Danielc86ee3a92014-11-13 10:27:05 +0000951 struct drm_i915_private *dev_priv = ring->dev->dev_private;
952 unsigned long flags;
953 struct list_head retired_list;
954
955 WARN_ON(!mutex_is_locked(&ring->dev->struct_mutex));
956 if (list_empty(&ring->execlist_retired_req_list))
957 return;
958
959 INIT_LIST_HEAD(&retired_list);
960 spin_lock_irqsave(&ring->execlist_lock, flags);
961 list_replace_init(&ring->execlist_retired_req_list, &retired_list);
962 spin_unlock_irqrestore(&ring->execlist_lock, flags);
963
964 list_for_each_entry_safe(req, tmp, &retired_list, execlist_link) {
Nick Hoath6d3d8272015-01-15 13:10:39 +0000965 struct intel_context *ctx = req->ctx;
Thomas Daniel7ba717c2014-11-13 10:28:56 +0000966 struct drm_i915_gem_object *ctx_obj =
967 ctx->engine[ring->id].state;
968
969 if (ctx_obj && (ctx != ring->default_context))
970 intel_lr_context_unpin(ring, ctx);
Thomas Danielc86ee3a92014-11-13 10:27:05 +0000971 intel_runtime_pm_put(dev_priv);
Thomas Danielc86ee3a92014-11-13 10:27:05 +0000972 list_del(&req->execlist_link);
Nick Hoathf8210792015-01-29 16:55:07 +0000973 i915_gem_request_unreference(req);
Thomas Danielc86ee3a92014-11-13 10:27:05 +0000974 }
975}
976
Oscar Mateo454afeb2014-07-24 17:04:22 +0100977void intel_logical_ring_stop(struct intel_engine_cs *ring)
978{
Oscar Mateo9832b9d2014-07-24 17:04:30 +0100979 struct drm_i915_private *dev_priv = ring->dev->dev_private;
980 int ret;
981
982 if (!intel_ring_initialized(ring))
983 return;
984
985 ret = intel_ring_idle(ring);
986 if (ret && !i915_reset_in_progress(&to_i915(ring->dev)->gpu_error))
987 DRM_ERROR("failed to quiesce %s whilst cleaning up: %d\n",
988 ring->name, ret);
989
990 /* TODO: Is this correct with Execlists enabled? */
991 I915_WRITE_MODE(ring, _MASKED_BIT_ENABLE(STOP_RING));
992 if (wait_for_atomic((I915_READ_MODE(ring) & MODE_IDLE) != 0, 1000)) {
993 DRM_ERROR("%s :timed out trying to stop ring\n", ring->name);
994 return;
995 }
996 I915_WRITE_MODE(ring, _MASKED_BIT_DISABLE(STOP_RING));
Oscar Mateo454afeb2014-07-24 17:04:22 +0100997}
998
Nick Hoath21076372015-01-15 13:10:38 +0000999int logical_ring_flush_all_caches(struct intel_ringbuffer *ringbuf,
1000 struct intel_context *ctx)
Oscar Mateo48e29f52014-07-24 17:04:29 +01001001{
1002 struct intel_engine_cs *ring = ringbuf->ring;
1003 int ret;
1004
1005 if (!ring->gpu_caches_dirty)
1006 return 0;
1007
Nick Hoath21076372015-01-15 13:10:38 +00001008 ret = ring->emit_flush(ringbuf, ctx, 0, I915_GEM_GPU_DOMAINS);
Oscar Mateo48e29f52014-07-24 17:04:29 +01001009 if (ret)
1010 return ret;
1011
1012 ring->gpu_caches_dirty = false;
1013 return 0;
1014}
1015
Oscar Mateodcb4c122014-11-13 10:28:10 +00001016static int intel_lr_context_pin(struct intel_engine_cs *ring,
1017 struct intel_context *ctx)
1018{
1019 struct drm_i915_gem_object *ctx_obj = ctx->engine[ring->id].state;
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001020 struct intel_ringbuffer *ringbuf = ctx->engine[ring->id].ringbuf;
Oscar Mateodcb4c122014-11-13 10:28:10 +00001021 int ret = 0;
1022
1023 WARN_ON(!mutex_is_locked(&ring->dev->struct_mutex));
Mika Kuoppalaa7cbede2015-01-13 11:32:25 +02001024 if (ctx->engine[ring->id].pin_count++ == 0) {
Oscar Mateodcb4c122014-11-13 10:28:10 +00001025 ret = i915_gem_obj_ggtt_pin(ctx_obj,
1026 GEN8_LR_CONTEXT_ALIGN, 0);
1027 if (ret)
Mika Kuoppalaa7cbede2015-01-13 11:32:25 +02001028 goto reset_pin_count;
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001029
1030 ret = intel_pin_and_map_ringbuffer_obj(ring->dev, ringbuf);
1031 if (ret)
1032 goto unpin_ctx_obj;
Oscar Mateodcb4c122014-11-13 10:28:10 +00001033 }
1034
1035 return ret;
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001036
1037unpin_ctx_obj:
1038 i915_gem_object_ggtt_unpin(ctx_obj);
Mika Kuoppalaa7cbede2015-01-13 11:32:25 +02001039reset_pin_count:
1040 ctx->engine[ring->id].pin_count = 0;
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001041
1042 return ret;
Oscar Mateodcb4c122014-11-13 10:28:10 +00001043}
1044
1045void intel_lr_context_unpin(struct intel_engine_cs *ring,
1046 struct intel_context *ctx)
1047{
1048 struct drm_i915_gem_object *ctx_obj = ctx->engine[ring->id].state;
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001049 struct intel_ringbuffer *ringbuf = ctx->engine[ring->id].ringbuf;
Oscar Mateodcb4c122014-11-13 10:28:10 +00001050
1051 if (ctx_obj) {
1052 WARN_ON(!mutex_is_locked(&ring->dev->struct_mutex));
Mika Kuoppalaa7cbede2015-01-13 11:32:25 +02001053 if (--ctx->engine[ring->id].pin_count == 0) {
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001054 intel_unpin_ringbuffer_obj(ringbuf);
Oscar Mateodcb4c122014-11-13 10:28:10 +00001055 i915_gem_object_ggtt_unpin(ctx_obj);
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001056 }
Oscar Mateodcb4c122014-11-13 10:28:10 +00001057 }
1058}
1059
Michel Thierry771b9a52014-11-11 16:47:33 +00001060static int intel_logical_ring_workarounds_emit(struct intel_engine_cs *ring,
1061 struct intel_context *ctx)
1062{
1063 int ret, i;
1064 struct intel_ringbuffer *ringbuf = ctx->engine[ring->id].ringbuf;
1065 struct drm_device *dev = ring->dev;
1066 struct drm_i915_private *dev_priv = dev->dev_private;
1067 struct i915_workarounds *w = &dev_priv->workarounds;
1068
Michel Thierrye6c1abb2014-11-26 14:21:02 +00001069 if (WARN_ON_ONCE(w->count == 0))
Michel Thierry771b9a52014-11-11 16:47:33 +00001070 return 0;
1071
1072 ring->gpu_caches_dirty = true;
Nick Hoath21076372015-01-15 13:10:38 +00001073 ret = logical_ring_flush_all_caches(ringbuf, ctx);
Michel Thierry771b9a52014-11-11 16:47:33 +00001074 if (ret)
1075 return ret;
1076
Nick Hoath21076372015-01-15 13:10:38 +00001077 ret = intel_logical_ring_begin(ringbuf, ctx, w->count * 2 + 2);
Michel Thierry771b9a52014-11-11 16:47:33 +00001078 if (ret)
1079 return ret;
1080
1081 intel_logical_ring_emit(ringbuf, MI_LOAD_REGISTER_IMM(w->count));
1082 for (i = 0; i < w->count; i++) {
1083 intel_logical_ring_emit(ringbuf, w->reg[i].addr);
1084 intel_logical_ring_emit(ringbuf, w->reg[i].value);
1085 }
1086 intel_logical_ring_emit(ringbuf, MI_NOOP);
1087
1088 intel_logical_ring_advance(ringbuf);
1089
1090 ring->gpu_caches_dirty = true;
Nick Hoath21076372015-01-15 13:10:38 +00001091 ret = logical_ring_flush_all_caches(ringbuf, ctx);
Michel Thierry771b9a52014-11-11 16:47:33 +00001092 if (ret)
1093 return ret;
1094
1095 return 0;
1096}
1097
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001098static int gen8_init_common_ring(struct intel_engine_cs *ring)
1099{
1100 struct drm_device *dev = ring->dev;
1101 struct drm_i915_private *dev_priv = dev->dev_private;
1102
Oscar Mateo73d477f2014-07-24 17:04:31 +01001103 I915_WRITE_IMR(ring, ~(ring->irq_enable_mask | ring->irq_keep_mask));
1104 I915_WRITE(RING_HWSTAM(ring->mmio_base), 0xffffffff);
1105
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001106 I915_WRITE(RING_MODE_GEN7(ring),
1107 _MASKED_BIT_DISABLE(GFX_REPLAY_MODE) |
1108 _MASKED_BIT_ENABLE(GFX_RUN_LIST_ENABLE));
1109 POSTING_READ(RING_MODE_GEN7(ring));
Thomas Danielc0a03a22015-01-09 11:09:37 +00001110 ring->next_context_status_buffer = 0;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001111 DRM_DEBUG_DRIVER("Execlists enabled for %s\n", ring->name);
1112
1113 memset(&ring->hangcheck, 0, sizeof(ring->hangcheck));
1114
1115 return 0;
1116}
1117
1118static int gen8_init_render_ring(struct intel_engine_cs *ring)
1119{
1120 struct drm_device *dev = ring->dev;
1121 struct drm_i915_private *dev_priv = dev->dev_private;
1122 int ret;
1123
1124 ret = gen8_init_common_ring(ring);
1125 if (ret)
1126 return ret;
1127
1128 /* We need to disable the AsyncFlip performance optimisations in order
1129 * to use MI_WAIT_FOR_EVENT within the CS. It should already be
1130 * programmed to '1' on all products.
1131 *
1132 * WaDisableAsyncFlipPerfMode:snb,ivb,hsw,vlv,bdw,chv
1133 */
1134 I915_WRITE(MI_MODE, _MASKED_BIT_ENABLE(ASYNC_FLIP_PERF_DISABLE));
1135
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001136 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_FORCE_ORDERING));
1137
Michel Thierry771b9a52014-11-11 16:47:33 +00001138 return init_workarounds_ring(ring);
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001139}
1140
Damien Lespiau82ef8222015-02-09 19:33:08 +00001141static int gen9_init_render_ring(struct intel_engine_cs *ring)
1142{
1143 int ret;
1144
1145 ret = gen8_init_common_ring(ring);
1146 if (ret)
1147 return ret;
1148
1149 return init_workarounds_ring(ring);
1150}
1151
Oscar Mateo15648582014-07-24 17:04:32 +01001152static int gen8_emit_bb_start(struct intel_ringbuffer *ringbuf,
Nick Hoath21076372015-01-15 13:10:38 +00001153 struct intel_context *ctx,
John Harrison8e004ef2015-02-13 11:48:10 +00001154 u64 offset, unsigned dispatch_flags)
Oscar Mateo15648582014-07-24 17:04:32 +01001155{
John Harrison8e004ef2015-02-13 11:48:10 +00001156 bool ppgtt = !(dispatch_flags & I915_DISPATCH_SECURE);
Oscar Mateo15648582014-07-24 17:04:32 +01001157 int ret;
1158
Nick Hoath21076372015-01-15 13:10:38 +00001159 ret = intel_logical_ring_begin(ringbuf, ctx, 4);
Oscar Mateo15648582014-07-24 17:04:32 +01001160 if (ret)
1161 return ret;
1162
1163 /* FIXME(BDW): Address space and security selectors. */
1164 intel_logical_ring_emit(ringbuf, MI_BATCH_BUFFER_START_GEN8 | (ppgtt<<8));
1165 intel_logical_ring_emit(ringbuf, lower_32_bits(offset));
1166 intel_logical_ring_emit(ringbuf, upper_32_bits(offset));
1167 intel_logical_ring_emit(ringbuf, MI_NOOP);
1168 intel_logical_ring_advance(ringbuf);
1169
1170 return 0;
1171}
1172
Oscar Mateo73d477f2014-07-24 17:04:31 +01001173static bool gen8_logical_ring_get_irq(struct intel_engine_cs *ring)
1174{
1175 struct drm_device *dev = ring->dev;
1176 struct drm_i915_private *dev_priv = dev->dev_private;
1177 unsigned long flags;
1178
Daniel Vetter7cd512f2014-09-15 11:38:57 +02001179 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
Oscar Mateo73d477f2014-07-24 17:04:31 +01001180 return false;
1181
1182 spin_lock_irqsave(&dev_priv->irq_lock, flags);
1183 if (ring->irq_refcount++ == 0) {
1184 I915_WRITE_IMR(ring, ~(ring->irq_enable_mask | ring->irq_keep_mask));
1185 POSTING_READ(RING_IMR(ring->mmio_base));
1186 }
1187 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
1188
1189 return true;
1190}
1191
1192static void gen8_logical_ring_put_irq(struct intel_engine_cs *ring)
1193{
1194 struct drm_device *dev = ring->dev;
1195 struct drm_i915_private *dev_priv = dev->dev_private;
1196 unsigned long flags;
1197
1198 spin_lock_irqsave(&dev_priv->irq_lock, flags);
1199 if (--ring->irq_refcount == 0) {
1200 I915_WRITE_IMR(ring, ~ring->irq_keep_mask);
1201 POSTING_READ(RING_IMR(ring->mmio_base));
1202 }
1203 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
1204}
1205
Oscar Mateo47122742014-07-24 17:04:28 +01001206static int gen8_emit_flush(struct intel_ringbuffer *ringbuf,
Nick Hoath21076372015-01-15 13:10:38 +00001207 struct intel_context *ctx,
Oscar Mateo47122742014-07-24 17:04:28 +01001208 u32 invalidate_domains,
1209 u32 unused)
1210{
1211 struct intel_engine_cs *ring = ringbuf->ring;
1212 struct drm_device *dev = ring->dev;
1213 struct drm_i915_private *dev_priv = dev->dev_private;
1214 uint32_t cmd;
1215 int ret;
1216
Nick Hoath21076372015-01-15 13:10:38 +00001217 ret = intel_logical_ring_begin(ringbuf, ctx, 4);
Oscar Mateo47122742014-07-24 17:04:28 +01001218 if (ret)
1219 return ret;
1220
1221 cmd = MI_FLUSH_DW + 1;
1222
Chris Wilsonf0a1fb12015-01-22 13:42:00 +00001223 /* We always require a command barrier so that subsequent
1224 * commands, such as breadcrumb interrupts, are strictly ordered
1225 * wrt the contents of the write cache being flushed to memory
1226 * (and thus being coherent from the CPU).
1227 */
1228 cmd |= MI_FLUSH_DW_STORE_INDEX | MI_FLUSH_DW_OP_STOREDW;
1229
1230 if (invalidate_domains & I915_GEM_GPU_DOMAINS) {
1231 cmd |= MI_INVALIDATE_TLB;
1232 if (ring == &dev_priv->ring[VCS])
1233 cmd |= MI_INVALIDATE_BSD;
Oscar Mateo47122742014-07-24 17:04:28 +01001234 }
1235
1236 intel_logical_ring_emit(ringbuf, cmd);
1237 intel_logical_ring_emit(ringbuf,
1238 I915_GEM_HWS_SCRATCH_ADDR |
1239 MI_FLUSH_DW_USE_GTT);
1240 intel_logical_ring_emit(ringbuf, 0); /* upper addr */
1241 intel_logical_ring_emit(ringbuf, 0); /* value */
1242 intel_logical_ring_advance(ringbuf);
1243
1244 return 0;
1245}
1246
1247static int gen8_emit_flush_render(struct intel_ringbuffer *ringbuf,
Nick Hoath21076372015-01-15 13:10:38 +00001248 struct intel_context *ctx,
Oscar Mateo47122742014-07-24 17:04:28 +01001249 u32 invalidate_domains,
1250 u32 flush_domains)
1251{
1252 struct intel_engine_cs *ring = ringbuf->ring;
1253 u32 scratch_addr = ring->scratch.gtt_offset + 2 * CACHELINE_BYTES;
1254 u32 flags = 0;
1255 int ret;
1256
1257 flags |= PIPE_CONTROL_CS_STALL;
1258
1259 if (flush_domains) {
1260 flags |= PIPE_CONTROL_RENDER_TARGET_CACHE_FLUSH;
1261 flags |= PIPE_CONTROL_DEPTH_CACHE_FLUSH;
1262 }
1263
1264 if (invalidate_domains) {
1265 flags |= PIPE_CONTROL_TLB_INVALIDATE;
1266 flags |= PIPE_CONTROL_INSTRUCTION_CACHE_INVALIDATE;
1267 flags |= PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE;
1268 flags |= PIPE_CONTROL_VF_CACHE_INVALIDATE;
1269 flags |= PIPE_CONTROL_CONST_CACHE_INVALIDATE;
1270 flags |= PIPE_CONTROL_STATE_CACHE_INVALIDATE;
1271 flags |= PIPE_CONTROL_QW_WRITE;
1272 flags |= PIPE_CONTROL_GLOBAL_GTT_IVB;
1273 }
1274
Nick Hoath21076372015-01-15 13:10:38 +00001275 ret = intel_logical_ring_begin(ringbuf, ctx, 6);
Oscar Mateo47122742014-07-24 17:04:28 +01001276 if (ret)
1277 return ret;
1278
1279 intel_logical_ring_emit(ringbuf, GFX_OP_PIPE_CONTROL(6));
1280 intel_logical_ring_emit(ringbuf, flags);
1281 intel_logical_ring_emit(ringbuf, scratch_addr);
1282 intel_logical_ring_emit(ringbuf, 0);
1283 intel_logical_ring_emit(ringbuf, 0);
1284 intel_logical_ring_emit(ringbuf, 0);
1285 intel_logical_ring_advance(ringbuf);
1286
1287 return 0;
1288}
1289
Oscar Mateoe94e37a2014-07-24 17:04:25 +01001290static u32 gen8_get_seqno(struct intel_engine_cs *ring, bool lazy_coherency)
1291{
1292 return intel_read_status_page(ring, I915_GEM_HWS_INDEX);
1293}
1294
1295static void gen8_set_seqno(struct intel_engine_cs *ring, u32 seqno)
1296{
1297 intel_write_status_page(ring, I915_GEM_HWS_INDEX, seqno);
1298}
1299
Nick Hoath2d129552015-01-15 13:10:36 +00001300static int gen8_emit_request(struct intel_ringbuffer *ringbuf,
1301 struct drm_i915_gem_request *request)
Oscar Mateo4da46e12014-07-24 17:04:27 +01001302{
1303 struct intel_engine_cs *ring = ringbuf->ring;
1304 u32 cmd;
1305 int ret;
1306
Nick Hoath21076372015-01-15 13:10:38 +00001307 ret = intel_logical_ring_begin(ringbuf, request->ctx, 6);
Oscar Mateo4da46e12014-07-24 17:04:27 +01001308 if (ret)
1309 return ret;
1310
Ville Syrjälä8edfbb82014-11-14 18:16:56 +02001311 cmd = MI_STORE_DWORD_IMM_GEN4;
Oscar Mateo4da46e12014-07-24 17:04:27 +01001312 cmd |= MI_GLOBAL_GTT;
1313
1314 intel_logical_ring_emit(ringbuf, cmd);
1315 intel_logical_ring_emit(ringbuf,
1316 (ring->status_page.gfx_addr +
1317 (I915_GEM_HWS_INDEX << MI_STORE_DWORD_INDEX_SHIFT)));
1318 intel_logical_ring_emit(ringbuf, 0);
John Harrison6259cea2014-11-24 18:49:29 +00001319 intel_logical_ring_emit(ringbuf,
1320 i915_gem_request_get_seqno(ring->outstanding_lazy_request));
Oscar Mateo4da46e12014-07-24 17:04:27 +01001321 intel_logical_ring_emit(ringbuf, MI_USER_INTERRUPT);
1322 intel_logical_ring_emit(ringbuf, MI_NOOP);
Nick Hoath21076372015-01-15 13:10:38 +00001323 intel_logical_ring_advance_and_submit(ringbuf, request->ctx, request);
Oscar Mateo4da46e12014-07-24 17:04:27 +01001324
1325 return 0;
1326}
1327
Damien Lespiaucef437a2015-02-10 19:32:19 +00001328static int intel_lr_context_render_state_init(struct intel_engine_cs *ring,
1329 struct intel_context *ctx)
1330{
1331 struct intel_ringbuffer *ringbuf = ctx->engine[ring->id].ringbuf;
1332 struct render_state so;
1333 struct drm_i915_file_private *file_priv = ctx->file_priv;
1334 struct drm_file *file = file_priv ? file_priv->file : NULL;
1335 int ret;
1336
1337 ret = i915_gem_render_state_prepare(ring, &so);
1338 if (ret)
1339 return ret;
1340
1341 if (so.rodata == NULL)
1342 return 0;
1343
1344 ret = ring->emit_bb_start(ringbuf,
1345 ctx,
1346 so.ggtt_offset,
1347 I915_DISPATCH_SECURE);
1348 if (ret)
1349 goto out;
1350
1351 i915_vma_move_to_active(i915_gem_obj_to_ggtt(so.obj), ring);
1352
1353 ret = __i915_add_request(ring, file, so.obj);
1354 /* intel_logical_ring_add_request moves object to inactive if it
1355 * fails */
1356out:
1357 i915_gem_render_state_fini(&so);
1358 return ret;
1359}
1360
Thomas Daniele7778be2014-12-02 12:50:48 +00001361static int gen8_init_rcs_context(struct intel_engine_cs *ring,
1362 struct intel_context *ctx)
1363{
1364 int ret;
1365
1366 ret = intel_logical_ring_workarounds_emit(ring, ctx);
1367 if (ret)
1368 return ret;
1369
1370 return intel_lr_context_render_state_init(ring, ctx);
1371}
1372
Oscar Mateo73e4d072014-07-24 17:04:48 +01001373/**
1374 * intel_logical_ring_cleanup() - deallocate the Engine Command Streamer
1375 *
1376 * @ring: Engine Command Streamer.
1377 *
1378 */
Oscar Mateo454afeb2014-07-24 17:04:22 +01001379void intel_logical_ring_cleanup(struct intel_engine_cs *ring)
1380{
John Harrison6402c332014-10-31 12:00:26 +00001381 struct drm_i915_private *dev_priv;
Oscar Mateo9832b9d2014-07-24 17:04:30 +01001382
Oscar Mateo48d82382014-07-24 17:04:23 +01001383 if (!intel_ring_initialized(ring))
1384 return;
1385
John Harrison6402c332014-10-31 12:00:26 +00001386 dev_priv = ring->dev->dev_private;
1387
Oscar Mateo9832b9d2014-07-24 17:04:30 +01001388 intel_logical_ring_stop(ring);
1389 WARN_ON((I915_READ_MODE(ring) & MODE_IDLE) == 0);
John Harrison6259cea2014-11-24 18:49:29 +00001390 i915_gem_request_assign(&ring->outstanding_lazy_request, NULL);
Oscar Mateo48d82382014-07-24 17:04:23 +01001391
1392 if (ring->cleanup)
1393 ring->cleanup(ring);
1394
1395 i915_cmd_parser_fini_ring(ring);
Chris Wilson06fbca72015-04-07 16:20:36 +01001396 i915_gem_batch_pool_fini(&ring->batch_pool);
Oscar Mateo48d82382014-07-24 17:04:23 +01001397
1398 if (ring->status_page.obj) {
1399 kunmap(sg_page(ring->status_page.obj->pages->sgl));
1400 ring->status_page.obj = NULL;
1401 }
Oscar Mateo454afeb2014-07-24 17:04:22 +01001402}
1403
1404static int logical_ring_init(struct drm_device *dev, struct intel_engine_cs *ring)
1405{
Oscar Mateo48d82382014-07-24 17:04:23 +01001406 int ret;
Oscar Mateo48d82382014-07-24 17:04:23 +01001407
1408 /* Intentionally left blank. */
1409 ring->buffer = NULL;
1410
1411 ring->dev = dev;
1412 INIT_LIST_HEAD(&ring->active_list);
1413 INIT_LIST_HEAD(&ring->request_list);
Chris Wilson06fbca72015-04-07 16:20:36 +01001414 i915_gem_batch_pool_init(dev, &ring->batch_pool);
Oscar Mateo48d82382014-07-24 17:04:23 +01001415 init_waitqueue_head(&ring->irq_queue);
1416
Michel Thierryacdd8842014-07-24 17:04:38 +01001417 INIT_LIST_HEAD(&ring->execlist_queue);
Thomas Danielc86ee3a92014-11-13 10:27:05 +00001418 INIT_LIST_HEAD(&ring->execlist_retired_req_list);
Michel Thierryacdd8842014-07-24 17:04:38 +01001419 spin_lock_init(&ring->execlist_lock);
1420
Oscar Mateo48d82382014-07-24 17:04:23 +01001421 ret = i915_cmd_parser_init_ring(ring);
1422 if (ret)
1423 return ret;
1424
Oscar Mateo564ddb22014-08-21 11:40:54 +01001425 ret = intel_lr_context_deferred_create(ring->default_context, ring);
1426
1427 return ret;
Oscar Mateo454afeb2014-07-24 17:04:22 +01001428}
1429
1430static int logical_render_ring_init(struct drm_device *dev)
1431{
1432 struct drm_i915_private *dev_priv = dev->dev_private;
1433 struct intel_engine_cs *ring = &dev_priv->ring[RCS];
Daniel Vetter99be1df2014-11-20 00:33:06 +01001434 int ret;
Oscar Mateo454afeb2014-07-24 17:04:22 +01001435
1436 ring->name = "render ring";
1437 ring->id = RCS;
1438 ring->mmio_base = RENDER_RING_BASE;
1439 ring->irq_enable_mask =
1440 GT_RENDER_USER_INTERRUPT << GEN8_RCS_IRQ_SHIFT;
Oscar Mateo73d477f2014-07-24 17:04:31 +01001441 ring->irq_keep_mask =
1442 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_RCS_IRQ_SHIFT;
1443 if (HAS_L3_DPF(dev))
1444 ring->irq_keep_mask |= GT_RENDER_L3_PARITY_ERROR_INTERRUPT;
Oscar Mateo454afeb2014-07-24 17:04:22 +01001445
Damien Lespiau82ef8222015-02-09 19:33:08 +00001446 if (INTEL_INFO(dev)->gen >= 9)
1447 ring->init_hw = gen9_init_render_ring;
1448 else
1449 ring->init_hw = gen8_init_render_ring;
Thomas Daniele7778be2014-12-02 12:50:48 +00001450 ring->init_context = gen8_init_rcs_context;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001451 ring->cleanup = intel_fini_pipe_control;
Oscar Mateoe94e37a2014-07-24 17:04:25 +01001452 ring->get_seqno = gen8_get_seqno;
1453 ring->set_seqno = gen8_set_seqno;
Oscar Mateo4da46e12014-07-24 17:04:27 +01001454 ring->emit_request = gen8_emit_request;
Oscar Mateo47122742014-07-24 17:04:28 +01001455 ring->emit_flush = gen8_emit_flush_render;
Oscar Mateo73d477f2014-07-24 17:04:31 +01001456 ring->irq_get = gen8_logical_ring_get_irq;
1457 ring->irq_put = gen8_logical_ring_put_irq;
Oscar Mateo15648582014-07-24 17:04:32 +01001458 ring->emit_bb_start = gen8_emit_bb_start;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001459
Daniel Vetter99be1df2014-11-20 00:33:06 +01001460 ring->dev = dev;
1461 ret = logical_ring_init(dev, ring);
1462 if (ret)
1463 return ret;
1464
1465 return intel_init_pipe_control(ring);
Oscar Mateo454afeb2014-07-24 17:04:22 +01001466}
1467
1468static int logical_bsd_ring_init(struct drm_device *dev)
1469{
1470 struct drm_i915_private *dev_priv = dev->dev_private;
1471 struct intel_engine_cs *ring = &dev_priv->ring[VCS];
1472
1473 ring->name = "bsd ring";
1474 ring->id = VCS;
1475 ring->mmio_base = GEN6_BSD_RING_BASE;
1476 ring->irq_enable_mask =
1477 GT_RENDER_USER_INTERRUPT << GEN8_VCS1_IRQ_SHIFT;
Oscar Mateo73d477f2014-07-24 17:04:31 +01001478 ring->irq_keep_mask =
1479 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VCS1_IRQ_SHIFT;
Oscar Mateo454afeb2014-07-24 17:04:22 +01001480
Daniel Vetterecfe00d2014-11-20 00:33:04 +01001481 ring->init_hw = gen8_init_common_ring;
Oscar Mateoe94e37a2014-07-24 17:04:25 +01001482 ring->get_seqno = gen8_get_seqno;
1483 ring->set_seqno = gen8_set_seqno;
Oscar Mateo4da46e12014-07-24 17:04:27 +01001484 ring->emit_request = gen8_emit_request;
Oscar Mateo47122742014-07-24 17:04:28 +01001485 ring->emit_flush = gen8_emit_flush;
Oscar Mateo73d477f2014-07-24 17:04:31 +01001486 ring->irq_get = gen8_logical_ring_get_irq;
1487 ring->irq_put = gen8_logical_ring_put_irq;
Oscar Mateo15648582014-07-24 17:04:32 +01001488 ring->emit_bb_start = gen8_emit_bb_start;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001489
Oscar Mateo454afeb2014-07-24 17:04:22 +01001490 return logical_ring_init(dev, ring);
1491}
1492
1493static int logical_bsd2_ring_init(struct drm_device *dev)
1494{
1495 struct drm_i915_private *dev_priv = dev->dev_private;
1496 struct intel_engine_cs *ring = &dev_priv->ring[VCS2];
1497
1498 ring->name = "bds2 ring";
1499 ring->id = VCS2;
1500 ring->mmio_base = GEN8_BSD2_RING_BASE;
1501 ring->irq_enable_mask =
1502 GT_RENDER_USER_INTERRUPT << GEN8_VCS2_IRQ_SHIFT;
Oscar Mateo73d477f2014-07-24 17:04:31 +01001503 ring->irq_keep_mask =
1504 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VCS2_IRQ_SHIFT;
Oscar Mateo454afeb2014-07-24 17:04:22 +01001505
Daniel Vetterecfe00d2014-11-20 00:33:04 +01001506 ring->init_hw = gen8_init_common_ring;
Oscar Mateoe94e37a2014-07-24 17:04:25 +01001507 ring->get_seqno = gen8_get_seqno;
1508 ring->set_seqno = gen8_set_seqno;
Oscar Mateo4da46e12014-07-24 17:04:27 +01001509 ring->emit_request = gen8_emit_request;
Oscar Mateo47122742014-07-24 17:04:28 +01001510 ring->emit_flush = gen8_emit_flush;
Oscar Mateo73d477f2014-07-24 17:04:31 +01001511 ring->irq_get = gen8_logical_ring_get_irq;
1512 ring->irq_put = gen8_logical_ring_put_irq;
Oscar Mateo15648582014-07-24 17:04:32 +01001513 ring->emit_bb_start = gen8_emit_bb_start;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001514
Oscar Mateo454afeb2014-07-24 17:04:22 +01001515 return logical_ring_init(dev, ring);
1516}
1517
1518static int logical_blt_ring_init(struct drm_device *dev)
1519{
1520 struct drm_i915_private *dev_priv = dev->dev_private;
1521 struct intel_engine_cs *ring = &dev_priv->ring[BCS];
1522
1523 ring->name = "blitter ring";
1524 ring->id = BCS;
1525 ring->mmio_base = BLT_RING_BASE;
1526 ring->irq_enable_mask =
1527 GT_RENDER_USER_INTERRUPT << GEN8_BCS_IRQ_SHIFT;
Oscar Mateo73d477f2014-07-24 17:04:31 +01001528 ring->irq_keep_mask =
1529 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_BCS_IRQ_SHIFT;
Oscar Mateo454afeb2014-07-24 17:04:22 +01001530
Daniel Vetterecfe00d2014-11-20 00:33:04 +01001531 ring->init_hw = gen8_init_common_ring;
Oscar Mateoe94e37a2014-07-24 17:04:25 +01001532 ring->get_seqno = gen8_get_seqno;
1533 ring->set_seqno = gen8_set_seqno;
Oscar Mateo4da46e12014-07-24 17:04:27 +01001534 ring->emit_request = gen8_emit_request;
Oscar Mateo47122742014-07-24 17:04:28 +01001535 ring->emit_flush = gen8_emit_flush;
Oscar Mateo73d477f2014-07-24 17:04:31 +01001536 ring->irq_get = gen8_logical_ring_get_irq;
1537 ring->irq_put = gen8_logical_ring_put_irq;
Oscar Mateo15648582014-07-24 17:04:32 +01001538 ring->emit_bb_start = gen8_emit_bb_start;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001539
Oscar Mateo454afeb2014-07-24 17:04:22 +01001540 return logical_ring_init(dev, ring);
1541}
1542
1543static int logical_vebox_ring_init(struct drm_device *dev)
1544{
1545 struct drm_i915_private *dev_priv = dev->dev_private;
1546 struct intel_engine_cs *ring = &dev_priv->ring[VECS];
1547
1548 ring->name = "video enhancement ring";
1549 ring->id = VECS;
1550 ring->mmio_base = VEBOX_RING_BASE;
1551 ring->irq_enable_mask =
1552 GT_RENDER_USER_INTERRUPT << GEN8_VECS_IRQ_SHIFT;
Oscar Mateo73d477f2014-07-24 17:04:31 +01001553 ring->irq_keep_mask =
1554 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VECS_IRQ_SHIFT;
Oscar Mateo454afeb2014-07-24 17:04:22 +01001555
Daniel Vetterecfe00d2014-11-20 00:33:04 +01001556 ring->init_hw = gen8_init_common_ring;
Oscar Mateoe94e37a2014-07-24 17:04:25 +01001557 ring->get_seqno = gen8_get_seqno;
1558 ring->set_seqno = gen8_set_seqno;
Oscar Mateo4da46e12014-07-24 17:04:27 +01001559 ring->emit_request = gen8_emit_request;
Oscar Mateo47122742014-07-24 17:04:28 +01001560 ring->emit_flush = gen8_emit_flush;
Oscar Mateo73d477f2014-07-24 17:04:31 +01001561 ring->irq_get = gen8_logical_ring_get_irq;
1562 ring->irq_put = gen8_logical_ring_put_irq;
Oscar Mateo15648582014-07-24 17:04:32 +01001563 ring->emit_bb_start = gen8_emit_bb_start;
Oscar Mateo9b1136d2014-07-24 17:04:24 +01001564
Oscar Mateo454afeb2014-07-24 17:04:22 +01001565 return logical_ring_init(dev, ring);
1566}
1567
Oscar Mateo73e4d072014-07-24 17:04:48 +01001568/**
1569 * intel_logical_rings_init() - allocate, populate and init the Engine Command Streamers
1570 * @dev: DRM device.
1571 *
1572 * This function inits the engines for an Execlists submission style (the equivalent in the
1573 * legacy ringbuffer submission world would be i915_gem_init_rings). It does it only for
1574 * those engines that are present in the hardware.
1575 *
1576 * Return: non-zero if the initialization failed.
1577 */
Oscar Mateo454afeb2014-07-24 17:04:22 +01001578int intel_logical_rings_init(struct drm_device *dev)
1579{
1580 struct drm_i915_private *dev_priv = dev->dev_private;
1581 int ret;
1582
1583 ret = logical_render_ring_init(dev);
1584 if (ret)
1585 return ret;
1586
1587 if (HAS_BSD(dev)) {
1588 ret = logical_bsd_ring_init(dev);
1589 if (ret)
1590 goto cleanup_render_ring;
1591 }
1592
1593 if (HAS_BLT(dev)) {
1594 ret = logical_blt_ring_init(dev);
1595 if (ret)
1596 goto cleanup_bsd_ring;
1597 }
1598
1599 if (HAS_VEBOX(dev)) {
1600 ret = logical_vebox_ring_init(dev);
1601 if (ret)
1602 goto cleanup_blt_ring;
1603 }
1604
1605 if (HAS_BSD2(dev)) {
1606 ret = logical_bsd2_ring_init(dev);
1607 if (ret)
1608 goto cleanup_vebox_ring;
1609 }
1610
1611 ret = i915_gem_set_seqno(dev, ((u32)~0 - 0x1000));
1612 if (ret)
1613 goto cleanup_bsd2_ring;
1614
1615 return 0;
1616
1617cleanup_bsd2_ring:
1618 intel_logical_ring_cleanup(&dev_priv->ring[VCS2]);
1619cleanup_vebox_ring:
1620 intel_logical_ring_cleanup(&dev_priv->ring[VECS]);
1621cleanup_blt_ring:
1622 intel_logical_ring_cleanup(&dev_priv->ring[BCS]);
1623cleanup_bsd_ring:
1624 intel_logical_ring_cleanup(&dev_priv->ring[VCS]);
1625cleanup_render_ring:
1626 intel_logical_ring_cleanup(&dev_priv->ring[RCS]);
1627
1628 return ret;
1629}
1630
Jeff McGee0cea6502015-02-13 10:27:56 -06001631static u32
1632make_rpcs(struct drm_device *dev)
1633{
1634 u32 rpcs = 0;
1635
1636 /*
1637 * No explicit RPCS request is needed to ensure full
1638 * slice/subslice/EU enablement prior to Gen9.
1639 */
1640 if (INTEL_INFO(dev)->gen < 9)
1641 return 0;
1642
1643 /*
1644 * Starting in Gen9, render power gating can leave
1645 * slice/subslice/EU in a partially enabled state. We
1646 * must make an explicit request through RPCS for full
1647 * enablement.
1648 */
1649 if (INTEL_INFO(dev)->has_slice_pg) {
1650 rpcs |= GEN8_RPCS_S_CNT_ENABLE;
1651 rpcs |= INTEL_INFO(dev)->slice_total <<
1652 GEN8_RPCS_S_CNT_SHIFT;
1653 rpcs |= GEN8_RPCS_ENABLE;
1654 }
1655
1656 if (INTEL_INFO(dev)->has_subslice_pg) {
1657 rpcs |= GEN8_RPCS_SS_CNT_ENABLE;
1658 rpcs |= INTEL_INFO(dev)->subslice_per_slice <<
1659 GEN8_RPCS_SS_CNT_SHIFT;
1660 rpcs |= GEN8_RPCS_ENABLE;
1661 }
1662
1663 if (INTEL_INFO(dev)->has_eu_pg) {
1664 rpcs |= INTEL_INFO(dev)->eu_per_subslice <<
1665 GEN8_RPCS_EU_MIN_SHIFT;
1666 rpcs |= INTEL_INFO(dev)->eu_per_subslice <<
1667 GEN8_RPCS_EU_MAX_SHIFT;
1668 rpcs |= GEN8_RPCS_ENABLE;
1669 }
1670
1671 return rpcs;
1672}
1673
Oscar Mateo8670d6f2014-07-24 17:04:17 +01001674static int
1675populate_lr_context(struct intel_context *ctx, struct drm_i915_gem_object *ctx_obj,
1676 struct intel_engine_cs *ring, struct intel_ringbuffer *ringbuf)
1677{
Thomas Daniel2d965532014-08-19 10:13:36 +01001678 struct drm_device *dev = ring->dev;
1679 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterae6c4802014-08-06 15:04:53 +02001680 struct i915_hw_ppgtt *ppgtt = ctx->ppgtt;
Oscar Mateo8670d6f2014-07-24 17:04:17 +01001681 struct page *page;
1682 uint32_t *reg_state;
1683 int ret;
1684
Thomas Daniel2d965532014-08-19 10:13:36 +01001685 if (!ppgtt)
1686 ppgtt = dev_priv->mm.aliasing_ppgtt;
1687
Oscar Mateo8670d6f2014-07-24 17:04:17 +01001688 ret = i915_gem_object_set_to_cpu_domain(ctx_obj, true);
1689 if (ret) {
1690 DRM_DEBUG_DRIVER("Could not set to CPU domain\n");
1691 return ret;
1692 }
1693
1694 ret = i915_gem_object_get_pages(ctx_obj);
1695 if (ret) {
1696 DRM_DEBUG_DRIVER("Could not get object pages\n");
1697 return ret;
1698 }
1699
1700 i915_gem_object_pin_pages(ctx_obj);
1701
1702 /* The second page of the context object contains some fields which must
1703 * be set up prior to the first execution. */
1704 page = i915_gem_object_get_page(ctx_obj, 1);
1705 reg_state = kmap_atomic(page);
1706
1707 /* A context is actually a big batch buffer with several MI_LOAD_REGISTER_IMM
1708 * commands followed by (reg, value) pairs. The values we are setting here are
1709 * only for the first context restore: on a subsequent save, the GPU will
1710 * recreate this batchbuffer with new values (including all the missing
1711 * MI_LOAD_REGISTER_IMM commands that we are not initializing here). */
1712 if (ring->id == RCS)
1713 reg_state[CTX_LRI_HEADER_0] = MI_LOAD_REGISTER_IMM(14);
1714 else
1715 reg_state[CTX_LRI_HEADER_0] = MI_LOAD_REGISTER_IMM(11);
1716 reg_state[CTX_LRI_HEADER_0] |= MI_LRI_FORCE_POSTED;
1717 reg_state[CTX_CONTEXT_CONTROL] = RING_CONTEXT_CONTROL(ring);
1718 reg_state[CTX_CONTEXT_CONTROL+1] =
Zhi Wang5baa22c52015-02-10 17:11:36 +08001719 _MASKED_BIT_ENABLE(CTX_CTRL_INHIBIT_SYN_CTX_SWITCH |
1720 CTX_CTRL_ENGINE_CTX_RESTORE_INHIBIT);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01001721 reg_state[CTX_RING_HEAD] = RING_HEAD(ring->mmio_base);
1722 reg_state[CTX_RING_HEAD+1] = 0;
1723 reg_state[CTX_RING_TAIL] = RING_TAIL(ring->mmio_base);
1724 reg_state[CTX_RING_TAIL+1] = 0;
1725 reg_state[CTX_RING_BUFFER_START] = RING_START(ring->mmio_base);
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001726 /* Ring buffer start address is not known until the buffer is pinned.
1727 * It is written to the context image in execlists_update_context()
1728 */
Oscar Mateo8670d6f2014-07-24 17:04:17 +01001729 reg_state[CTX_RING_BUFFER_CONTROL] = RING_CTL(ring->mmio_base);
1730 reg_state[CTX_RING_BUFFER_CONTROL+1] =
1731 ((ringbuf->size - PAGE_SIZE) & RING_NR_PAGES) | RING_VALID;
1732 reg_state[CTX_BB_HEAD_U] = ring->mmio_base + 0x168;
1733 reg_state[CTX_BB_HEAD_U+1] = 0;
1734 reg_state[CTX_BB_HEAD_L] = ring->mmio_base + 0x140;
1735 reg_state[CTX_BB_HEAD_L+1] = 0;
1736 reg_state[CTX_BB_STATE] = ring->mmio_base + 0x110;
1737 reg_state[CTX_BB_STATE+1] = (1<<5);
1738 reg_state[CTX_SECOND_BB_HEAD_U] = ring->mmio_base + 0x11c;
1739 reg_state[CTX_SECOND_BB_HEAD_U+1] = 0;
1740 reg_state[CTX_SECOND_BB_HEAD_L] = ring->mmio_base + 0x114;
1741 reg_state[CTX_SECOND_BB_HEAD_L+1] = 0;
1742 reg_state[CTX_SECOND_BB_STATE] = ring->mmio_base + 0x118;
1743 reg_state[CTX_SECOND_BB_STATE+1] = 0;
1744 if (ring->id == RCS) {
1745 /* TODO: according to BSpec, the register state context
1746 * for CHV does not have these. OTOH, these registers do
1747 * exist in CHV. I'm waiting for a clarification */
1748 reg_state[CTX_BB_PER_CTX_PTR] = ring->mmio_base + 0x1c0;
1749 reg_state[CTX_BB_PER_CTX_PTR+1] = 0;
1750 reg_state[CTX_RCS_INDIRECT_CTX] = ring->mmio_base + 0x1c4;
1751 reg_state[CTX_RCS_INDIRECT_CTX+1] = 0;
1752 reg_state[CTX_RCS_INDIRECT_CTX_OFFSET] = ring->mmio_base + 0x1c8;
1753 reg_state[CTX_RCS_INDIRECT_CTX_OFFSET+1] = 0;
1754 }
1755 reg_state[CTX_LRI_HEADER_1] = MI_LOAD_REGISTER_IMM(9);
1756 reg_state[CTX_LRI_HEADER_1] |= MI_LRI_FORCE_POSTED;
1757 reg_state[CTX_CTX_TIMESTAMP] = ring->mmio_base + 0x3a8;
1758 reg_state[CTX_CTX_TIMESTAMP+1] = 0;
1759 reg_state[CTX_PDP3_UDW] = GEN8_RING_PDP_UDW(ring, 3);
1760 reg_state[CTX_PDP3_LDW] = GEN8_RING_PDP_LDW(ring, 3);
1761 reg_state[CTX_PDP2_UDW] = GEN8_RING_PDP_UDW(ring, 2);
1762 reg_state[CTX_PDP2_LDW] = GEN8_RING_PDP_LDW(ring, 2);
1763 reg_state[CTX_PDP1_UDW] = GEN8_RING_PDP_UDW(ring, 1);
1764 reg_state[CTX_PDP1_LDW] = GEN8_RING_PDP_LDW(ring, 1);
1765 reg_state[CTX_PDP0_UDW] = GEN8_RING_PDP_UDW(ring, 0);
1766 reg_state[CTX_PDP0_LDW] = GEN8_RING_PDP_LDW(ring, 0);
Michel Thierrye5815a22015-04-08 12:13:32 +01001767 /* XXX: Systems with less than 4GB of memory do not have
1768 * all PDPs. Proper PDP tracking will be added in a
1769 * subsequent patch.
1770 */
1771 ASSIGN_CTX_PDP(ppgtt, reg_state, 3);
1772 ASSIGN_CTX_PDP(ppgtt, reg_state, 2);
1773 ASSIGN_CTX_PDP(ppgtt, reg_state, 1);
1774 ASSIGN_CTX_PDP(ppgtt, reg_state, 0);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01001775 if (ring->id == RCS) {
1776 reg_state[CTX_LRI_HEADER_2] = MI_LOAD_REGISTER_IMM(1);
Jeff McGee0cea6502015-02-13 10:27:56 -06001777 reg_state[CTX_R_PWR_CLK_STATE] = GEN8_R_PWR_CLK_STATE;
1778 reg_state[CTX_R_PWR_CLK_STATE+1] = make_rpcs(dev);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01001779 }
1780
1781 kunmap_atomic(reg_state);
1782
1783 ctx_obj->dirty = 1;
1784 set_page_dirty(page);
1785 i915_gem_object_unpin_pages(ctx_obj);
1786
1787 return 0;
1788}
1789
Oscar Mateo73e4d072014-07-24 17:04:48 +01001790/**
1791 * intel_lr_context_free() - free the LRC specific bits of a context
1792 * @ctx: the LR context to free.
1793 *
1794 * The real context freeing is done in i915_gem_context_free: this only
1795 * takes care of the bits that are LRC related: the per-engine backing
1796 * objects and the logical ringbuffer.
1797 */
Oscar Mateoede7d422014-07-24 17:04:12 +01001798void intel_lr_context_free(struct intel_context *ctx)
1799{
Oscar Mateo8c8579172014-07-24 17:04:14 +01001800 int i;
1801
1802 for (i = 0; i < I915_NUM_RINGS; i++) {
1803 struct drm_i915_gem_object *ctx_obj = ctx->engine[i].state;
Oscar Mateo84c23772014-07-24 17:04:15 +01001804
Oscar Mateo8c8579172014-07-24 17:04:14 +01001805 if (ctx_obj) {
Oscar Mateodcb4c122014-11-13 10:28:10 +00001806 struct intel_ringbuffer *ringbuf =
1807 ctx->engine[i].ringbuf;
1808 struct intel_engine_cs *ring = ringbuf->ring;
1809
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001810 if (ctx == ring->default_context) {
1811 intel_unpin_ringbuffer_obj(ringbuf);
1812 i915_gem_object_ggtt_unpin(ctx_obj);
1813 }
Mika Kuoppalaa7cbede2015-01-13 11:32:25 +02001814 WARN_ON(ctx->engine[ring->id].pin_count);
Oscar Mateo84c23772014-07-24 17:04:15 +01001815 intel_destroy_ringbuffer_obj(ringbuf);
1816 kfree(ringbuf);
Oscar Mateo8c8579172014-07-24 17:04:14 +01001817 drm_gem_object_unreference(&ctx_obj->base);
1818 }
1819 }
1820}
1821
1822static uint32_t get_lr_context_size(struct intel_engine_cs *ring)
1823{
1824 int ret = 0;
1825
Michael H. Nguyen468c6812014-11-13 17:51:49 +00001826 WARN_ON(INTEL_INFO(ring->dev)->gen < 8);
Oscar Mateo8c8579172014-07-24 17:04:14 +01001827
1828 switch (ring->id) {
1829 case RCS:
Michael H. Nguyen468c6812014-11-13 17:51:49 +00001830 if (INTEL_INFO(ring->dev)->gen >= 9)
1831 ret = GEN9_LR_CONTEXT_RENDER_SIZE;
1832 else
1833 ret = GEN8_LR_CONTEXT_RENDER_SIZE;
Oscar Mateo8c8579172014-07-24 17:04:14 +01001834 break;
1835 case VCS:
1836 case BCS:
1837 case VECS:
1838 case VCS2:
1839 ret = GEN8_LR_CONTEXT_OTHER_SIZE;
1840 break;
1841 }
1842
1843 return ret;
Oscar Mateoede7d422014-07-24 17:04:12 +01001844}
1845
Daniel Vetter70b0ea82014-11-18 09:09:32 +01001846static void lrc_setup_hardware_status_page(struct intel_engine_cs *ring,
Thomas Daniel1df06b72014-10-29 09:52:51 +00001847 struct drm_i915_gem_object *default_ctx_obj)
1848{
1849 struct drm_i915_private *dev_priv = ring->dev->dev_private;
1850
1851 /* The status page is offset 0 from the default context object
1852 * in LRC mode. */
1853 ring->status_page.gfx_addr = i915_gem_obj_ggtt_offset(default_ctx_obj);
1854 ring->status_page.page_addr =
1855 kmap(sg_page(default_ctx_obj->pages->sgl));
Thomas Daniel1df06b72014-10-29 09:52:51 +00001856 ring->status_page.obj = default_ctx_obj;
1857
1858 I915_WRITE(RING_HWS_PGA(ring->mmio_base),
1859 (u32)ring->status_page.gfx_addr);
1860 POSTING_READ(RING_HWS_PGA(ring->mmio_base));
Thomas Daniel1df06b72014-10-29 09:52:51 +00001861}
1862
Oscar Mateo73e4d072014-07-24 17:04:48 +01001863/**
1864 * intel_lr_context_deferred_create() - create the LRC specific bits of a context
1865 * @ctx: LR context to create.
1866 * @ring: engine to be used with the context.
1867 *
1868 * This function can be called more than once, with different engines, if we plan
1869 * to use the context with them. The context backing objects and the ringbuffers
1870 * (specially the ringbuffer backing objects) suck a lot of memory up, and that's why
1871 * the creation is a deferred call: it's better to make sure first that we need to use
1872 * a given ring with the context.
1873 *
Masanari Iida32197aa2014-10-20 23:53:13 +09001874 * Return: non-zero on error.
Oscar Mateo73e4d072014-07-24 17:04:48 +01001875 */
Oscar Mateoede7d422014-07-24 17:04:12 +01001876int intel_lr_context_deferred_create(struct intel_context *ctx,
1877 struct intel_engine_cs *ring)
1878{
Oscar Mateodcb4c122014-11-13 10:28:10 +00001879 const bool is_global_default_ctx = (ctx == ring->default_context);
Oscar Mateo8c8579172014-07-24 17:04:14 +01001880 struct drm_device *dev = ring->dev;
1881 struct drm_i915_gem_object *ctx_obj;
1882 uint32_t context_size;
Oscar Mateo84c23772014-07-24 17:04:15 +01001883 struct intel_ringbuffer *ringbuf;
Oscar Mateo8c8579172014-07-24 17:04:14 +01001884 int ret;
1885
Oscar Mateoede7d422014-07-24 17:04:12 +01001886 WARN_ON(ctx->legacy_hw_ctx.rcs_state != NULL);
Daniel Vetterbfc882b2014-11-20 00:33:08 +01001887 WARN_ON(ctx->engine[ring->id].state);
Oscar Mateoede7d422014-07-24 17:04:12 +01001888
Oscar Mateo8c8579172014-07-24 17:04:14 +01001889 context_size = round_up(get_lr_context_size(ring), 4096);
1890
1891 ctx_obj = i915_gem_alloc_context_obj(dev, context_size);
1892 if (IS_ERR(ctx_obj)) {
1893 ret = PTR_ERR(ctx_obj);
1894 DRM_DEBUG_DRIVER("Alloc LRC backing obj failed: %d\n", ret);
1895 return ret;
1896 }
1897
Oscar Mateodcb4c122014-11-13 10:28:10 +00001898 if (is_global_default_ctx) {
1899 ret = i915_gem_obj_ggtt_pin(ctx_obj, GEN8_LR_CONTEXT_ALIGN, 0);
1900 if (ret) {
1901 DRM_DEBUG_DRIVER("Pin LRC backing obj failed: %d\n",
1902 ret);
1903 drm_gem_object_unreference(&ctx_obj->base);
1904 return ret;
1905 }
Oscar Mateo8c8579172014-07-24 17:04:14 +01001906 }
1907
Oscar Mateo84c23772014-07-24 17:04:15 +01001908 ringbuf = kzalloc(sizeof(*ringbuf), GFP_KERNEL);
1909 if (!ringbuf) {
1910 DRM_DEBUG_DRIVER("Failed to allocate ringbuffer %s\n",
1911 ring->name);
Oscar Mateo84c23772014-07-24 17:04:15 +01001912 ret = -ENOMEM;
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001913 goto error_unpin_ctx;
Oscar Mateo84c23772014-07-24 17:04:15 +01001914 }
1915
Daniel Vetter0c7dd532014-08-11 16:17:44 +02001916 ringbuf->ring = ring;
Oscar Mateo582d67f2014-07-24 17:04:16 +01001917
Oscar Mateo84c23772014-07-24 17:04:15 +01001918 ringbuf->size = 32 * PAGE_SIZE;
1919 ringbuf->effective_size = ringbuf->size;
1920 ringbuf->head = 0;
1921 ringbuf->tail = 0;
Oscar Mateo84c23772014-07-24 17:04:15 +01001922 ringbuf->last_retired_head = -1;
Dave Gordonebd0fd42014-11-27 11:22:49 +00001923 intel_ring_update_space(ringbuf);
Oscar Mateo84c23772014-07-24 17:04:15 +01001924
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001925 if (ringbuf->obj == NULL) {
1926 ret = intel_alloc_ringbuffer_obj(dev, ringbuf);
1927 if (ret) {
1928 DRM_DEBUG_DRIVER(
1929 "Failed to allocate ringbuffer obj %s: %d\n",
Oscar Mateo84c23772014-07-24 17:04:15 +01001930 ring->name, ret);
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001931 goto error_free_rbuf;
1932 }
1933
1934 if (is_global_default_ctx) {
1935 ret = intel_pin_and_map_ringbuffer_obj(dev, ringbuf);
1936 if (ret) {
1937 DRM_ERROR(
1938 "Failed to pin and map ringbuffer %s: %d\n",
1939 ring->name, ret);
1940 goto error_destroy_rbuf;
1941 }
1942 }
1943
Oscar Mateo8670d6f2014-07-24 17:04:17 +01001944 }
1945
1946 ret = populate_lr_context(ctx, ctx_obj, ring, ringbuf);
1947 if (ret) {
1948 DRM_DEBUG_DRIVER("Failed to populate LRC: %d\n", ret);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01001949 goto error;
Oscar Mateo84c23772014-07-24 17:04:15 +01001950 }
1951
1952 ctx->engine[ring->id].ringbuf = ringbuf;
Oscar Mateo8c8579172014-07-24 17:04:14 +01001953 ctx->engine[ring->id].state = ctx_obj;
Oscar Mateoede7d422014-07-24 17:04:12 +01001954
Daniel Vetter70b0ea82014-11-18 09:09:32 +01001955 if (ctx == ring->default_context)
1956 lrc_setup_hardware_status_page(ring, ctx_obj);
Thomas Daniele7778be2014-12-02 12:50:48 +00001957 else if (ring->id == RCS && !ctx->rcs_initialized) {
Michel Thierry771b9a52014-11-11 16:47:33 +00001958 if (ring->init_context) {
1959 ret = ring->init_context(ring, ctx);
Thomas Daniele7778be2014-12-02 12:50:48 +00001960 if (ret) {
Michel Thierry771b9a52014-11-11 16:47:33 +00001961 DRM_ERROR("ring init context: %d\n", ret);
Thomas Daniele7778be2014-12-02 12:50:48 +00001962 ctx->engine[ring->id].ringbuf = NULL;
1963 ctx->engine[ring->id].state = NULL;
1964 goto error;
1965 }
Michel Thierry771b9a52014-11-11 16:47:33 +00001966 }
1967
Oscar Mateo564ddb22014-08-21 11:40:54 +01001968 ctx->rcs_initialized = true;
1969 }
1970
Oscar Mateoede7d422014-07-24 17:04:12 +01001971 return 0;
Oscar Mateo8670d6f2014-07-24 17:04:17 +01001972
1973error:
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001974 if (is_global_default_ctx)
1975 intel_unpin_ringbuffer_obj(ringbuf);
1976error_destroy_rbuf:
1977 intel_destroy_ringbuffer_obj(ringbuf);
1978error_free_rbuf:
Oscar Mateo8670d6f2014-07-24 17:04:17 +01001979 kfree(ringbuf);
Thomas Daniel7ba717c2014-11-13 10:28:56 +00001980error_unpin_ctx:
Oscar Mateodcb4c122014-11-13 10:28:10 +00001981 if (is_global_default_ctx)
1982 i915_gem_object_ggtt_unpin(ctx_obj);
Oscar Mateo8670d6f2014-07-24 17:04:17 +01001983 drm_gem_object_unreference(&ctx_obj->base);
1984 return ret;
Oscar Mateoede7d422014-07-24 17:04:12 +01001985}
Thomas Daniel3e5b6f02015-02-16 16:12:53 +00001986
1987void intel_lr_context_reset(struct drm_device *dev,
1988 struct intel_context *ctx)
1989{
1990 struct drm_i915_private *dev_priv = dev->dev_private;
1991 struct intel_engine_cs *ring;
1992 int i;
1993
1994 for_each_ring(ring, dev_priv, i) {
1995 struct drm_i915_gem_object *ctx_obj =
1996 ctx->engine[ring->id].state;
1997 struct intel_ringbuffer *ringbuf =
1998 ctx->engine[ring->id].ringbuf;
1999 uint32_t *reg_state;
2000 struct page *page;
2001
2002 if (!ctx_obj)
2003 continue;
2004
2005 if (i915_gem_object_get_pages(ctx_obj)) {
2006 WARN(1, "Failed get_pages for context obj\n");
2007 continue;
2008 }
2009 page = i915_gem_object_get_page(ctx_obj, 1);
2010 reg_state = kmap_atomic(page);
2011
2012 reg_state[CTX_RING_HEAD+1] = 0;
2013 reg_state[CTX_RING_TAIL+1] = 0;
2014
2015 kunmap_atomic(reg_state);
2016
2017 ringbuf->head = 0;
2018 ringbuf->tail = 0;
2019 }
2020}