blob: 6a3105512d1880a857e7da95f6c1a8daa42bb8fe [file] [log] [blame]
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +01001/*
2 * Copyright © 2016 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 */
24
25#include "i915_drv.h"
26#include "intel_ringbuffer.h"
27#include "intel_lrc.h"
28
29static const struct engine_info {
30 const char *name;
31 unsigned exec_id;
Tvrtko Ursulin5ec2cf72016-08-16 17:04:20 +010032 enum intel_engine_hw_id hw_id;
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +010033 u32 mmio_base;
34 unsigned irq_shift;
35 int (*init_legacy)(struct intel_engine_cs *engine);
36 int (*init_execlists)(struct intel_engine_cs *engine);
37} intel_engines[] = {
38 [RCS] = {
39 .name = "render ring",
40 .exec_id = I915_EXEC_RENDER,
Tvrtko Ursulin5ec2cf72016-08-16 17:04:20 +010041 .hw_id = RCS_HW,
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +010042 .mmio_base = RENDER_RING_BASE,
43 .irq_shift = GEN8_RCS_IRQ_SHIFT,
44 .init_execlists = logical_render_ring_init,
45 .init_legacy = intel_init_render_ring_buffer,
46 },
47 [BCS] = {
48 .name = "blitter ring",
49 .exec_id = I915_EXEC_BLT,
Tvrtko Ursulin5ec2cf72016-08-16 17:04:20 +010050 .hw_id = BCS_HW,
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +010051 .mmio_base = BLT_RING_BASE,
52 .irq_shift = GEN8_BCS_IRQ_SHIFT,
53 .init_execlists = logical_xcs_ring_init,
54 .init_legacy = intel_init_blt_ring_buffer,
55 },
56 [VCS] = {
57 .name = "bsd ring",
58 .exec_id = I915_EXEC_BSD,
Tvrtko Ursulin5ec2cf72016-08-16 17:04:20 +010059 .hw_id = VCS_HW,
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +010060 .mmio_base = GEN6_BSD_RING_BASE,
61 .irq_shift = GEN8_VCS1_IRQ_SHIFT,
62 .init_execlists = logical_xcs_ring_init,
63 .init_legacy = intel_init_bsd_ring_buffer,
64 },
65 [VCS2] = {
66 .name = "bsd2 ring",
67 .exec_id = I915_EXEC_BSD,
Tvrtko Ursulin5ec2cf72016-08-16 17:04:20 +010068 .hw_id = VCS2_HW,
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +010069 .mmio_base = GEN8_BSD2_RING_BASE,
70 .irq_shift = GEN8_VCS2_IRQ_SHIFT,
71 .init_execlists = logical_xcs_ring_init,
72 .init_legacy = intel_init_bsd2_ring_buffer,
73 },
74 [VECS] = {
75 .name = "video enhancement ring",
76 .exec_id = I915_EXEC_VEBOX,
Tvrtko Ursulin5ec2cf72016-08-16 17:04:20 +010077 .hw_id = VECS_HW,
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +010078 .mmio_base = VEBOX_RING_BASE,
79 .irq_shift = GEN8_VECS_IRQ_SHIFT,
80 .init_execlists = logical_xcs_ring_init,
81 .init_legacy = intel_init_vebox_ring_buffer,
82 },
83};
84
Akash Goel3b3f1652016-10-13 22:44:48 +053085static int
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +010086intel_engine_setup(struct drm_i915_private *dev_priv,
87 enum intel_engine_id id)
88{
89 const struct engine_info *info = &intel_engines[id];
Akash Goel3b3f1652016-10-13 22:44:48 +053090 struct intel_engine_cs *engine;
91
92 GEM_BUG_ON(dev_priv->engine[id]);
93 engine = kzalloc(sizeof(*engine), GFP_KERNEL);
94 if (!engine)
95 return -ENOMEM;
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +010096
97 engine->id = id;
98 engine->i915 = dev_priv;
99 engine->name = info->name;
100 engine->exec_id = info->exec_id;
Tvrtko Ursulin5ec2cf72016-08-16 17:04:20 +0100101 engine->hw_id = engine->guc_id = info->hw_id;
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +0100102 engine->mmio_base = info->mmio_base;
103 engine->irq_shift = info->irq_shift;
104
Akash Goel3b3f1652016-10-13 22:44:48 +0530105 dev_priv->engine[id] = engine;
106 return 0;
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +0100107}
108
109/**
110 * intel_engines_init() - allocate, populate and init the Engine Command Streamers
111 * @dev: DRM device.
112 *
113 * Return: non-zero if the initialization failed.
114 */
115int intel_engines_init(struct drm_device *dev)
116{
117 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursulinc1bb1142016-08-10 16:22:10 +0100118 struct intel_device_info *device_info = mkwrite_device_info(dev_priv);
Tvrtko Ursulin70006ad2016-10-13 11:02:56 +0100119 unsigned int ring_mask = INTEL_INFO(dev_priv)->ring_mask;
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +0100120 unsigned int mask = 0;
121 int (*init)(struct intel_engine_cs *engine);
Akash Goel3b3f1652016-10-13 22:44:48 +0530122 struct intel_engine_cs *engine;
123 enum intel_engine_id id;
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +0100124 unsigned int i;
125 int ret;
126
Tvrtko Ursulin70006ad2016-10-13 11:02:56 +0100127 WARN_ON(ring_mask == 0);
128 WARN_ON(ring_mask &
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +0100129 GENMASK(sizeof(mask) * BITS_PER_BYTE - 1, I915_NUM_ENGINES));
130
131 for (i = 0; i < ARRAY_SIZE(intel_engines); i++) {
132 if (!HAS_ENGINE(dev_priv, i))
133 continue;
134
135 if (i915.enable_execlists)
136 init = intel_engines[i].init_execlists;
137 else
138 init = intel_engines[i].init_legacy;
139
140 if (!init)
141 continue;
142
Akash Goel3b3f1652016-10-13 22:44:48 +0530143 ret = intel_engine_setup(dev_priv, i);
144 if (ret)
145 goto cleanup;
146
147 ret = init(dev_priv->engine[i]);
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +0100148 if (ret)
149 goto cleanup;
150
151 mask |= ENGINE_MASK(i);
152 }
153
154 /*
155 * Catch failures to update intel_engines table when the new engines
156 * are added to the driver by a warning and disabling the forgotten
157 * engines.
158 */
Tvrtko Ursulin70006ad2016-10-13 11:02:56 +0100159 if (WARN_ON(mask != ring_mask))
Tvrtko Ursulinc1bb1142016-08-10 16:22:10 +0100160 device_info->ring_mask = mask;
161
162 device_info->num_rings = hweight32(mask);
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +0100163
164 return 0;
165
166cleanup:
Akash Goel3b3f1652016-10-13 22:44:48 +0530167 for_each_engine(engine, dev_priv, id) {
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +0100168 if (i915.enable_execlists)
Akash Goel3b3f1652016-10-13 22:44:48 +0530169 intel_logical_ring_cleanup(engine);
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +0100170 else
Akash Goel3b3f1652016-10-13 22:44:48 +0530171 intel_engine_cleanup(engine);
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +0100172 }
173
174 return ret;
175}
176
Chris Wilson73cb9702016-10-28 13:58:46 +0100177void intel_engine_init_global_seqno(struct intel_engine_cs *engine, u32 seqno)
Chris Wilson57f275a2016-08-15 10:49:00 +0100178{
179 struct drm_i915_private *dev_priv = engine->i915;
180
181 /* Our semaphore implementation is strictly monotonic (i.e. we proceed
182 * so long as the semaphore value in the register/page is greater
183 * than the sync value), so whenever we reset the seqno,
184 * so long as we reset the tracking semaphore value to 0, it will
185 * always be before the next request's seqno. If we don't reset
186 * the semaphore value, then when the seqno moves backwards all
187 * future waits will complete instantly (causing rendering corruption).
188 */
189 if (IS_GEN6(dev_priv) || IS_GEN7(dev_priv)) {
190 I915_WRITE(RING_SYNC_0(engine->mmio_base), 0);
191 I915_WRITE(RING_SYNC_1(engine->mmio_base), 0);
192 if (HAS_VEBOX(dev_priv))
193 I915_WRITE(RING_SYNC_2(engine->mmio_base), 0);
194 }
Chris Wilson51d545d2016-08-15 10:49:02 +0100195 if (dev_priv->semaphore) {
196 struct page *page = i915_vma_first_page(dev_priv->semaphore);
197 void *semaphores;
198
199 /* Semaphores are in noncoherent memory, flush to be safe */
200 semaphores = kmap(page);
Chris Wilson57f275a2016-08-15 10:49:00 +0100201 memset(semaphores + GEN8_SEMAPHORE_OFFSET(engine->id, 0),
202 0, I915_NUM_ENGINES * gen8_semaphore_seqno_size);
Chris Wilson51d545d2016-08-15 10:49:02 +0100203 drm_clflush_virt_range(semaphores + GEN8_SEMAPHORE_OFFSET(engine->id, 0),
204 I915_NUM_ENGINES * gen8_semaphore_seqno_size);
Chris Wilson57f275a2016-08-15 10:49:00 +0100205 kunmap(page);
206 }
207 memset(engine->semaphore.sync_seqno, 0,
208 sizeof(engine->semaphore.sync_seqno));
209
210 intel_write_status_page(engine, I915_GEM_HWS_INDEX, seqno);
211 if (engine->irq_seqno_barrier)
212 engine->irq_seqno_barrier(engine);
Chris Wilson73cb9702016-10-28 13:58:46 +0100213
214 GEM_BUG_ON(i915_gem_active_isset(&engine->timeline->last_request));
215 engine->timeline->last_submitted_seqno = seqno;
Chris Wilson57f275a2016-08-15 10:49:00 +0100216
217 engine->hangcheck.seqno = seqno;
218
219 /* After manually advancing the seqno, fake the interrupt in case
220 * there are any waiters for that seqno.
221 */
222 intel_engine_wakeup(engine);
223}
224
Tvrtko Ursulin019bf272016-07-13 16:03:41 +0100225void intel_engine_init_hangcheck(struct intel_engine_cs *engine)
226{
227 memset(&engine->hangcheck, 0, sizeof(engine->hangcheck));
228}
229
Chris Wilson73cb9702016-10-28 13:58:46 +0100230static void intel_engine_init_timeline(struct intel_engine_cs *engine)
Chris Wilsondcff85c2016-08-05 10:14:11 +0100231{
Chris Wilson73cb9702016-10-28 13:58:46 +0100232 engine->timeline = &engine->i915->gt.global_timeline.engine[engine->id];
Chris Wilsondcff85c2016-08-05 10:14:11 +0100233}
234
Tvrtko Ursulin019bf272016-07-13 16:03:41 +0100235/**
236 * intel_engines_setup_common - setup engine state not requiring hw access
237 * @engine: Engine to setup.
238 *
239 * Initializes @engine@ structure members shared between legacy and execlists
240 * submission modes which do not require hardware access.
241 *
242 * Typically done early in the submission mode specific engine setup stage.
243 */
244void intel_engine_setup_common(struct intel_engine_cs *engine)
245{
Tvrtko Ursulin019bf272016-07-13 16:03:41 +0100246 INIT_LIST_HEAD(&engine->execlist_queue);
247 spin_lock_init(&engine->execlist_lock);
248
Chris Wilson73cb9702016-10-28 13:58:46 +0100249 intel_engine_init_timeline(engine);
Tvrtko Ursulin019bf272016-07-13 16:03:41 +0100250 intel_engine_init_hangcheck(engine);
Chris Wilson115003e92016-08-04 16:32:19 +0100251 i915_gem_batch_pool_init(engine, &engine->batch_pool);
Chris Wilson7756e452016-08-18 17:17:10 +0100252
253 intel_engine_init_cmd_parser(engine);
Tvrtko Ursulin019bf272016-07-13 16:03:41 +0100254}
255
Chris Wilsonadc320c2016-08-15 10:48:59 +0100256int intel_engine_create_scratch(struct intel_engine_cs *engine, int size)
257{
258 struct drm_i915_gem_object *obj;
259 struct i915_vma *vma;
260 int ret;
261
262 WARN_ON(engine->scratch);
263
264 obj = i915_gem_object_create_stolen(&engine->i915->drm, size);
265 if (!obj)
Chris Wilson920cf412016-10-28 13:58:30 +0100266 obj = i915_gem_object_create_internal(engine->i915, size);
Chris Wilsonadc320c2016-08-15 10:48:59 +0100267 if (IS_ERR(obj)) {
268 DRM_ERROR("Failed to allocate scratch page\n");
269 return PTR_ERR(obj);
270 }
271
272 vma = i915_vma_create(obj, &engine->i915->ggtt.base, NULL);
273 if (IS_ERR(vma)) {
274 ret = PTR_ERR(vma);
275 goto err_unref;
276 }
277
278 ret = i915_vma_pin(vma, 0, 4096, PIN_GLOBAL | PIN_HIGH);
279 if (ret)
280 goto err_unref;
281
282 engine->scratch = vma;
Chris Wilsonbde13eb2016-08-15 10:49:07 +0100283 DRM_DEBUG_DRIVER("%s pipe control offset: 0x%08x\n",
284 engine->name, i915_ggtt_offset(vma));
Chris Wilsonadc320c2016-08-15 10:48:59 +0100285 return 0;
286
287err_unref:
288 i915_gem_object_put(obj);
289 return ret;
290}
291
292static void intel_engine_cleanup_scratch(struct intel_engine_cs *engine)
293{
Chris Wilson19880c42016-08-15 10:49:05 +0100294 i915_vma_unpin_and_release(&engine->scratch);
Chris Wilsonadc320c2016-08-15 10:48:59 +0100295}
296
Tvrtko Ursulin019bf272016-07-13 16:03:41 +0100297/**
298 * intel_engines_init_common - initialize cengine state which might require hw access
299 * @engine: Engine to initialize.
300 *
301 * Initializes @engine@ structure members shared between legacy and execlists
302 * submission modes which do require hardware access.
303 *
304 * Typcally done at later stages of submission mode specific engine setup.
305 *
306 * Returns zero on success or an error code on failure.
307 */
308int intel_engine_init_common(struct intel_engine_cs *engine)
309{
310 int ret;
311
312 ret = intel_engine_init_breadcrumbs(engine);
313 if (ret)
314 return ret;
315
Chris Wilson4e50f082016-10-28 13:58:31 +0100316 ret = i915_gem_render_state_init(engine);
317 if (ret)
318 return ret;
319
Chris Wilson7756e452016-08-18 17:17:10 +0100320 return 0;
Tvrtko Ursulin019bf272016-07-13 16:03:41 +0100321}
Chris Wilson96a945a2016-08-03 13:19:16 +0100322
323/**
324 * intel_engines_cleanup_common - cleans up the engine state created by
325 * the common initiailizers.
326 * @engine: Engine to cleanup.
327 *
328 * This cleans up everything created by the common helpers.
329 */
330void intel_engine_cleanup_common(struct intel_engine_cs *engine)
331{
Chris Wilsonadc320c2016-08-15 10:48:59 +0100332 intel_engine_cleanup_scratch(engine);
333
Chris Wilson4e50f082016-10-28 13:58:31 +0100334 i915_gem_render_state_fini(engine);
Chris Wilson96a945a2016-08-03 13:19:16 +0100335 intel_engine_fini_breadcrumbs(engine);
Chris Wilson7756e452016-08-18 17:17:10 +0100336 intel_engine_cleanup_cmd_parser(engine);
Chris Wilson96a945a2016-08-03 13:19:16 +0100337 i915_gem_batch_pool_fini(&engine->batch_pool);
338}
Chris Wilson1b365952016-10-04 21:11:31 +0100339
340u64 intel_engine_get_active_head(struct intel_engine_cs *engine)
341{
342 struct drm_i915_private *dev_priv = engine->i915;
343 u64 acthd;
344
345 if (INTEL_GEN(dev_priv) >= 8)
346 acthd = I915_READ64_2x32(RING_ACTHD(engine->mmio_base),
347 RING_ACTHD_UDW(engine->mmio_base));
348 else if (INTEL_GEN(dev_priv) >= 4)
349 acthd = I915_READ(RING_ACTHD(engine->mmio_base));
350 else
351 acthd = I915_READ(ACTHD);
352
353 return acthd;
354}
355
356u64 intel_engine_get_last_batch_head(struct intel_engine_cs *engine)
357{
358 struct drm_i915_private *dev_priv = engine->i915;
359 u64 bbaddr;
360
361 if (INTEL_GEN(dev_priv) >= 8)
362 bbaddr = I915_READ64_2x32(RING_BBADDR(engine->mmio_base),
363 RING_BBADDR_UDW(engine->mmio_base));
364 else
365 bbaddr = I915_READ(RING_BBADDR(engine->mmio_base));
366
367 return bbaddr;
368}
Chris Wilson0e704472016-10-12 10:05:17 +0100369
370const char *i915_cache_level_str(struct drm_i915_private *i915, int type)
371{
372 switch (type) {
373 case I915_CACHE_NONE: return " uncached";
374 case I915_CACHE_LLC: return HAS_LLC(i915) ? " LLC" : " snooped";
375 case I915_CACHE_L3_LLC: return " L3+LLC";
376 case I915_CACHE_WT: return " WT";
377 default: return "";
378 }
379}
380
381static inline uint32_t
382read_subslice_reg(struct drm_i915_private *dev_priv, int slice,
383 int subslice, i915_reg_t reg)
384{
385 uint32_t mcr;
386 uint32_t ret;
387 enum forcewake_domains fw_domains;
388
389 fw_domains = intel_uncore_forcewake_for_reg(dev_priv, reg,
390 FW_REG_READ);
391 fw_domains |= intel_uncore_forcewake_for_reg(dev_priv,
392 GEN8_MCR_SELECTOR,
393 FW_REG_READ | FW_REG_WRITE);
394
395 spin_lock_irq(&dev_priv->uncore.lock);
396 intel_uncore_forcewake_get__locked(dev_priv, fw_domains);
397
398 mcr = I915_READ_FW(GEN8_MCR_SELECTOR);
399 /*
400 * The HW expects the slice and sublice selectors to be reset to 0
401 * after reading out the registers.
402 */
403 WARN_ON_ONCE(mcr & (GEN8_MCR_SLICE_MASK | GEN8_MCR_SUBSLICE_MASK));
404 mcr &= ~(GEN8_MCR_SLICE_MASK | GEN8_MCR_SUBSLICE_MASK);
405 mcr |= GEN8_MCR_SLICE(slice) | GEN8_MCR_SUBSLICE(subslice);
406 I915_WRITE_FW(GEN8_MCR_SELECTOR, mcr);
407
408 ret = I915_READ_FW(reg);
409
410 mcr &= ~(GEN8_MCR_SLICE_MASK | GEN8_MCR_SUBSLICE_MASK);
411 I915_WRITE_FW(GEN8_MCR_SELECTOR, mcr);
412
413 intel_uncore_forcewake_put__locked(dev_priv, fw_domains);
414 spin_unlock_irq(&dev_priv->uncore.lock);
415
416 return ret;
417}
418
419/* NB: please notice the memset */
420void intel_engine_get_instdone(struct intel_engine_cs *engine,
421 struct intel_instdone *instdone)
422{
423 struct drm_i915_private *dev_priv = engine->i915;
424 u32 mmio_base = engine->mmio_base;
425 int slice;
426 int subslice;
427
428 memset(instdone, 0, sizeof(*instdone));
429
430 switch (INTEL_GEN(dev_priv)) {
431 default:
432 instdone->instdone = I915_READ(RING_INSTDONE(mmio_base));
433
434 if (engine->id != RCS)
435 break;
436
437 instdone->slice_common = I915_READ(GEN7_SC_INSTDONE);
438 for_each_instdone_slice_subslice(dev_priv, slice, subslice) {
439 instdone->sampler[slice][subslice] =
440 read_subslice_reg(dev_priv, slice, subslice,
441 GEN7_SAMPLER_INSTDONE);
442 instdone->row[slice][subslice] =
443 read_subslice_reg(dev_priv, slice, subslice,
444 GEN7_ROW_INSTDONE);
445 }
446 break;
447 case 7:
448 instdone->instdone = I915_READ(RING_INSTDONE(mmio_base));
449
450 if (engine->id != RCS)
451 break;
452
453 instdone->slice_common = I915_READ(GEN7_SC_INSTDONE);
454 instdone->sampler[0][0] = I915_READ(GEN7_SAMPLER_INSTDONE);
455 instdone->row[0][0] = I915_READ(GEN7_ROW_INSTDONE);
456
457 break;
458 case 6:
459 case 5:
460 case 4:
461 instdone->instdone = I915_READ(RING_INSTDONE(mmio_base));
462
463 if (engine->id == RCS)
464 /* HACK: Using the wrong struct member */
465 instdone->slice_common = I915_READ(GEN4_INSTDONE1);
466 break;
467 case 3:
468 case 2:
469 instdone->instdone = I915_READ(GEN2_INSTDONE);
470 break;
471 }
472}