blob: a5a494210b9ef0bbac3f61bea889a1ad08b4345b [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
Chris Wilsonf636edb2017-10-09 12:02:57 +010025#include <drm/drm_print.h>
26
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +010027#include "i915_drv.h"
Weinan Li1fd51d92017-10-15 11:55:25 +080028#include "i915_vgpu.h"
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +010029#include "intel_ringbuffer.h"
30#include "intel_lrc.h"
31
Joonas Lahtinen63ffbcd2017-04-28 10:53:36 +030032/* Haswell does have the CXT_SIZE register however it does not appear to be
33 * valid. Now, docs explain in dwords what is in the context object. The full
34 * size is 70720 bytes, however, the power context and execlist context will
35 * never be saved (power context is stored elsewhere, and execlists don't work
36 * on HSW) - so the final size, including the extra state required for the
37 * Resource Streamer, is 66944 bytes, which rounds to 17 pages.
38 */
39#define HSW_CXT_TOTAL_SIZE (17 * PAGE_SIZE)
Joonas Lahtinen63ffbcd2017-04-28 10:53:36 +030040
41#define GEN8_LR_CONTEXT_RENDER_SIZE (20 * PAGE_SIZE)
42#define GEN9_LR_CONTEXT_RENDER_SIZE (22 * PAGE_SIZE)
Oscar Mateo3cf19342017-10-04 08:39:52 -070043#define GEN10_LR_CONTEXT_RENDER_SIZE (18 * PAGE_SIZE)
Joonas Lahtinen63ffbcd2017-04-28 10:53:36 +030044
45#define GEN8_LR_CONTEXT_OTHER_SIZE ( 2 * PAGE_SIZE)
46
Oscar Mateob8400f02017-04-10 07:34:32 -070047struct engine_class_info {
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +010048 const char *name;
Oscar Mateob8400f02017-04-10 07:34:32 -070049 int (*init_legacy)(struct intel_engine_cs *engine);
50 int (*init_execlists)(struct intel_engine_cs *engine);
Tvrtko Ursulin1803fcbc2017-11-10 14:26:27 +000051
52 u8 uabi_class;
Oscar Mateob8400f02017-04-10 07:34:32 -070053};
54
55static const struct engine_class_info intel_engine_classes[] = {
56 [RENDER_CLASS] = {
57 .name = "rcs",
58 .init_execlists = logical_render_ring_init,
59 .init_legacy = intel_init_render_ring_buffer,
Tvrtko Ursulin1803fcbc2017-11-10 14:26:27 +000060 .uabi_class = I915_ENGINE_CLASS_RENDER,
Oscar Mateob8400f02017-04-10 07:34:32 -070061 },
62 [COPY_ENGINE_CLASS] = {
63 .name = "bcs",
64 .init_execlists = logical_xcs_ring_init,
65 .init_legacy = intel_init_blt_ring_buffer,
Tvrtko Ursulin1803fcbc2017-11-10 14:26:27 +000066 .uabi_class = I915_ENGINE_CLASS_COPY,
Oscar Mateob8400f02017-04-10 07:34:32 -070067 },
68 [VIDEO_DECODE_CLASS] = {
69 .name = "vcs",
70 .init_execlists = logical_xcs_ring_init,
71 .init_legacy = intel_init_bsd_ring_buffer,
Tvrtko Ursulin1803fcbc2017-11-10 14:26:27 +000072 .uabi_class = I915_ENGINE_CLASS_VIDEO,
Oscar Mateob8400f02017-04-10 07:34:32 -070073 },
74 [VIDEO_ENHANCEMENT_CLASS] = {
75 .name = "vecs",
76 .init_execlists = logical_xcs_ring_init,
77 .init_legacy = intel_init_vebox_ring_buffer,
Tvrtko Ursulin1803fcbc2017-11-10 14:26:27 +000078 .uabi_class = I915_ENGINE_CLASS_VIDEO_ENHANCE,
Oscar Mateob8400f02017-04-10 07:34:32 -070079 },
80};
81
82struct engine_info {
Michal Wajdeczko237ae7c2017-03-01 20:26:15 +000083 unsigned int hw_id;
Chris Wilson1d39f282017-04-11 13:43:06 +010084 unsigned int uabi_id;
Daniele Ceraolo Spurio09081802017-04-10 07:34:29 -070085 u8 class;
86 u8 instance;
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +010087 u32 mmio_base;
88 unsigned irq_shift;
Oscar Mateob8400f02017-04-10 07:34:32 -070089};
90
91static const struct engine_info intel_engines[] = {
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +010092 [RCS] = {
Tvrtko Ursulin5ec2cf72016-08-16 17:04:20 +010093 .hw_id = RCS_HW,
Chris Wilson1d39f282017-04-11 13:43:06 +010094 .uabi_id = I915_EXEC_RENDER,
Daniele Ceraolo Spurio09081802017-04-10 07:34:29 -070095 .class = RENDER_CLASS,
96 .instance = 0,
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +010097 .mmio_base = RENDER_RING_BASE,
98 .irq_shift = GEN8_RCS_IRQ_SHIFT,
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +010099 },
100 [BCS] = {
Tvrtko Ursulin5ec2cf72016-08-16 17:04:20 +0100101 .hw_id = BCS_HW,
Chris Wilson1d39f282017-04-11 13:43:06 +0100102 .uabi_id = I915_EXEC_BLT,
Daniele Ceraolo Spurio09081802017-04-10 07:34:29 -0700103 .class = COPY_ENGINE_CLASS,
104 .instance = 0,
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +0100105 .mmio_base = BLT_RING_BASE,
106 .irq_shift = GEN8_BCS_IRQ_SHIFT,
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +0100107 },
108 [VCS] = {
Tvrtko Ursulin5ec2cf72016-08-16 17:04:20 +0100109 .hw_id = VCS_HW,
Chris Wilson1d39f282017-04-11 13:43:06 +0100110 .uabi_id = I915_EXEC_BSD,
Daniele Ceraolo Spurio09081802017-04-10 07:34:29 -0700111 .class = VIDEO_DECODE_CLASS,
112 .instance = 0,
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +0100113 .mmio_base = GEN6_BSD_RING_BASE,
114 .irq_shift = GEN8_VCS1_IRQ_SHIFT,
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +0100115 },
116 [VCS2] = {
Tvrtko Ursulin5ec2cf72016-08-16 17:04:20 +0100117 .hw_id = VCS2_HW,
Chris Wilson1d39f282017-04-11 13:43:06 +0100118 .uabi_id = I915_EXEC_BSD,
Daniele Ceraolo Spurio09081802017-04-10 07:34:29 -0700119 .class = VIDEO_DECODE_CLASS,
120 .instance = 1,
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +0100121 .mmio_base = GEN8_BSD2_RING_BASE,
122 .irq_shift = GEN8_VCS2_IRQ_SHIFT,
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +0100123 },
124 [VECS] = {
Tvrtko Ursulin5ec2cf72016-08-16 17:04:20 +0100125 .hw_id = VECS_HW,
Chris Wilson1d39f282017-04-11 13:43:06 +0100126 .uabi_id = I915_EXEC_VEBOX,
Daniele Ceraolo Spurio09081802017-04-10 07:34:29 -0700127 .class = VIDEO_ENHANCEMENT_CLASS,
128 .instance = 0,
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +0100129 .mmio_base = VEBOX_RING_BASE,
130 .irq_shift = GEN8_VECS_IRQ_SHIFT,
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +0100131 },
132};
133
Joonas Lahtinen63ffbcd2017-04-28 10:53:36 +0300134/**
135 * ___intel_engine_context_size() - return the size of the context for an engine
136 * @dev_priv: i915 device private
137 * @class: engine class
138 *
139 * Each engine class may require a different amount of space for a context
140 * image.
141 *
142 * Return: size (in bytes) of an engine class specific context image
143 *
144 * Note: this size includes the HWSP, which is part of the context image
145 * in LRC mode, but does not include the "shared data page" used with
146 * GuC submission. The caller should account for this if using the GuC.
147 */
148static u32
149__intel_engine_context_size(struct drm_i915_private *dev_priv, u8 class)
150{
151 u32 cxt_size;
152
153 BUILD_BUG_ON(I915_GTT_PAGE_SIZE != PAGE_SIZE);
154
155 switch (class) {
156 case RENDER_CLASS:
157 switch (INTEL_GEN(dev_priv)) {
158 default:
159 MISSING_CASE(INTEL_GEN(dev_priv));
Rodrigo Vivif65f8412017-07-06 14:06:24 -0700160 case 10:
Oscar Mateo7fd0b1a2017-09-21 16:19:49 -0700161 return GEN10_LR_CONTEXT_RENDER_SIZE;
Joonas Lahtinen63ffbcd2017-04-28 10:53:36 +0300162 case 9:
163 return GEN9_LR_CONTEXT_RENDER_SIZE;
164 case 8:
Chris Wilsonfb5c5512017-11-20 20:55:00 +0000165 return GEN8_LR_CONTEXT_RENDER_SIZE;
Joonas Lahtinen63ffbcd2017-04-28 10:53:36 +0300166 case 7:
167 if (IS_HASWELL(dev_priv))
168 return HSW_CXT_TOTAL_SIZE;
169
170 cxt_size = I915_READ(GEN7_CXT_SIZE);
171 return round_up(GEN7_CXT_TOTAL_SIZE(cxt_size) * 64,
172 PAGE_SIZE);
173 case 6:
174 cxt_size = I915_READ(CXT_SIZE);
175 return round_up(GEN6_CXT_TOTAL_SIZE(cxt_size) * 64,
176 PAGE_SIZE);
177 case 5:
178 case 4:
179 case 3:
180 case 2:
181 /* For the special day when i810 gets merged. */
182 case 1:
183 return 0;
184 }
185 break;
186 default:
187 MISSING_CASE(class);
188 case VIDEO_DECODE_CLASS:
189 case VIDEO_ENHANCEMENT_CLASS:
190 case COPY_ENGINE_CLASS:
191 if (INTEL_GEN(dev_priv) < 8)
192 return 0;
193 return GEN8_LR_CONTEXT_OTHER_SIZE;
194 }
195}
196
Akash Goel3b3f1652016-10-13 22:44:48 +0530197static int
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +0100198intel_engine_setup(struct drm_i915_private *dev_priv,
199 enum intel_engine_id id)
200{
201 const struct engine_info *info = &intel_engines[id];
Oscar Mateob8400f02017-04-10 07:34:32 -0700202 const struct engine_class_info *class_info;
Akash Goel3b3f1652016-10-13 22:44:48 +0530203 struct intel_engine_cs *engine;
204
Oscar Mateob8400f02017-04-10 07:34:32 -0700205 GEM_BUG_ON(info->class >= ARRAY_SIZE(intel_engine_classes));
206 class_info = &intel_engine_classes[info->class];
207
Tvrtko Ursulinb46a33e2017-11-21 18:18:45 +0000208 if (GEM_WARN_ON(info->class > MAX_ENGINE_CLASS))
209 return -EINVAL;
210
211 if (GEM_WARN_ON(info->instance > MAX_ENGINE_INSTANCE))
212 return -EINVAL;
213
214 if (GEM_WARN_ON(dev_priv->engine_class[info->class][info->instance]))
215 return -EINVAL;
216
Akash Goel3b3f1652016-10-13 22:44:48 +0530217 GEM_BUG_ON(dev_priv->engine[id]);
218 engine = kzalloc(sizeof(*engine), GFP_KERNEL);
219 if (!engine)
220 return -ENOMEM;
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +0100221
222 engine->id = id;
223 engine->i915 = dev_priv;
Oscar Mateo6e516142017-04-10 07:34:31 -0700224 WARN_ON(snprintf(engine->name, sizeof(engine->name), "%s%u",
Oscar Mateob8400f02017-04-10 07:34:32 -0700225 class_info->name, info->instance) >=
226 sizeof(engine->name));
Tvrtko Ursulin5ec2cf72016-08-16 17:04:20 +0100227 engine->hw_id = engine->guc_id = info->hw_id;
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +0100228 engine->mmio_base = info->mmio_base;
229 engine->irq_shift = info->irq_shift;
Daniele Ceraolo Spurio09081802017-04-10 07:34:29 -0700230 engine->class = info->class;
231 engine->instance = info->instance;
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +0100232
Tvrtko Ursulin1803fcbc2017-11-10 14:26:27 +0000233 engine->uabi_id = info->uabi_id;
234 engine->uabi_class = class_info->uabi_class;
235
Joonas Lahtinen63ffbcd2017-04-28 10:53:36 +0300236 engine->context_size = __intel_engine_context_size(dev_priv,
237 engine->class);
238 if (WARN_ON(engine->context_size > BIT(20)))
239 engine->context_size = 0;
240
Chris Wilson0de91362016-11-14 20:41:01 +0000241 /* Nothing to do here, execute in order of dependencies */
242 engine->schedule = NULL;
243
Changbin Du3fc03062017-03-13 10:47:11 +0800244 ATOMIC_INIT_NOTIFIER_HEAD(&engine->context_status_notifier);
245
Tvrtko Ursulinb46a33e2017-11-21 18:18:45 +0000246 dev_priv->engine_class[info->class][info->instance] = engine;
Akash Goel3b3f1652016-10-13 22:44:48 +0530247 dev_priv->engine[id] = engine;
248 return 0;
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +0100249}
250
251/**
Joonas Lahtinen63ffbcd2017-04-28 10:53:36 +0300252 * intel_engines_init_mmio() - allocate and prepare the Engine Command Streamers
Tvrtko Ursulinbf9e8422016-12-01 14:16:38 +0000253 * @dev_priv: i915 device private
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +0100254 *
255 * Return: non-zero if the initialization failed.
256 */
Joonas Lahtinen63ffbcd2017-04-28 10:53:36 +0300257int intel_engines_init_mmio(struct drm_i915_private *dev_priv)
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +0100258{
Tvrtko Ursulinc1bb1142016-08-10 16:22:10 +0100259 struct intel_device_info *device_info = mkwrite_device_info(dev_priv);
Chris Wilson5f9be052017-04-11 17:56:58 +0100260 const unsigned int ring_mask = INTEL_INFO(dev_priv)->ring_mask;
Akash Goel3b3f1652016-10-13 22:44:48 +0530261 struct intel_engine_cs *engine;
262 enum intel_engine_id id;
Chris Wilson5f9be052017-04-11 17:56:58 +0100263 unsigned int mask = 0;
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +0100264 unsigned int i;
Chris Wilsonbb8f0f52017-01-24 11:01:34 +0000265 int err;
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +0100266
Tvrtko Ursulin70006ad2016-10-13 11:02:56 +0100267 WARN_ON(ring_mask == 0);
268 WARN_ON(ring_mask &
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +0100269 GENMASK(sizeof(mask) * BITS_PER_BYTE - 1, I915_NUM_ENGINES));
270
271 for (i = 0; i < ARRAY_SIZE(intel_engines); i++) {
272 if (!HAS_ENGINE(dev_priv, i))
273 continue;
274
Chris Wilsonbb8f0f52017-01-24 11:01:34 +0000275 err = intel_engine_setup(dev_priv, i);
276 if (err)
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +0100277 goto cleanup;
278
279 mask |= ENGINE_MASK(i);
280 }
281
282 /*
283 * Catch failures to update intel_engines table when the new engines
284 * are added to the driver by a warning and disabling the forgotten
285 * engines.
286 */
Tvrtko Ursulin70006ad2016-10-13 11:02:56 +0100287 if (WARN_ON(mask != ring_mask))
Tvrtko Ursulinc1bb1142016-08-10 16:22:10 +0100288 device_info->ring_mask = mask;
289
Chris Wilson5f9be052017-04-11 17:56:58 +0100290 /* We always presume we have at least RCS available for later probing */
291 if (WARN_ON(!HAS_ENGINE(dev_priv, RCS))) {
292 err = -ENODEV;
293 goto cleanup;
294 }
295
Tvrtko Ursulinc1bb1142016-08-10 16:22:10 +0100296 device_info->num_rings = hweight32(mask);
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +0100297
Michel Thierryce453b32017-11-10 16:44:47 -0800298 i915_check_and_clear_faults(dev_priv);
299
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +0100300 return 0;
301
302cleanup:
Chris Wilsonbb8f0f52017-01-24 11:01:34 +0000303 for_each_engine(engine, dev_priv, id)
304 kfree(engine);
305 return err;
306}
307
308/**
Joonas Lahtinen63ffbcd2017-04-28 10:53:36 +0300309 * intel_engines_init() - init the Engine Command Streamers
Chris Wilsonbb8f0f52017-01-24 11:01:34 +0000310 * @dev_priv: i915 device private
311 *
312 * Return: non-zero if the initialization failed.
313 */
314int intel_engines_init(struct drm_i915_private *dev_priv)
315{
Chris Wilsonbb8f0f52017-01-24 11:01:34 +0000316 struct intel_engine_cs *engine;
317 enum intel_engine_id id, err_id;
Tvrtko Ursulin33def1f2017-06-16 14:03:38 +0100318 int err;
Chris Wilsonbb8f0f52017-01-24 11:01:34 +0000319
Akash Goel3b3f1652016-10-13 22:44:48 +0530320 for_each_engine(engine, dev_priv, id) {
Oscar Mateob8400f02017-04-10 07:34:32 -0700321 const struct engine_class_info *class_info =
322 &intel_engine_classes[engine->class];
Chris Wilsonbb8f0f52017-01-24 11:01:34 +0000323 int (*init)(struct intel_engine_cs *engine);
324
Chris Wilsonfb5c5512017-11-20 20:55:00 +0000325 if (HAS_EXECLISTS(dev_priv))
Oscar Mateob8400f02017-04-10 07:34:32 -0700326 init = class_info->init_execlists;
Chris Wilsonbb8f0f52017-01-24 11:01:34 +0000327 else
Oscar Mateob8400f02017-04-10 07:34:32 -0700328 init = class_info->init_legacy;
Tvrtko Ursulin33def1f2017-06-16 14:03:38 +0100329
330 err = -EINVAL;
331 err_id = id;
332
333 if (GEM_WARN_ON(!init))
334 goto cleanup;
Chris Wilsonbb8f0f52017-01-24 11:01:34 +0000335
336 err = init(engine);
Tvrtko Ursulin33def1f2017-06-16 14:03:38 +0100337 if (err)
Chris Wilsonbb8f0f52017-01-24 11:01:34 +0000338 goto cleanup;
Chris Wilsonbb8f0f52017-01-24 11:01:34 +0000339
Chris Wilsonff44ad52017-03-16 17:13:03 +0000340 GEM_BUG_ON(!engine->submit_request);
Chris Wilsonbb8f0f52017-01-24 11:01:34 +0000341 }
342
Chris Wilsonbb8f0f52017-01-24 11:01:34 +0000343 return 0;
344
345cleanup:
346 for_each_engine(engine, dev_priv, id) {
Tvrtko Ursulin33def1f2017-06-16 14:03:38 +0100347 if (id >= err_id) {
Chris Wilsonbb8f0f52017-01-24 11:01:34 +0000348 kfree(engine);
Tvrtko Ursulin33def1f2017-06-16 14:03:38 +0100349 dev_priv->engine[id] = NULL;
350 } else {
Tvrtko Ursulin8ee7c6e2017-02-16 12:23:22 +0000351 dev_priv->gt.cleanup_engine(engine);
Tvrtko Ursulin33def1f2017-06-16 14:03:38 +0100352 }
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +0100353 }
Chris Wilsonbb8f0f52017-01-24 11:01:34 +0000354 return err;
Tvrtko Ursulin88d2ba22016-07-13 16:03:40 +0100355}
356
Chris Wilson73cb9702016-10-28 13:58:46 +0100357void intel_engine_init_global_seqno(struct intel_engine_cs *engine, u32 seqno)
Chris Wilson57f275a2016-08-15 10:49:00 +0100358{
359 struct drm_i915_private *dev_priv = engine->i915;
360
361 /* Our semaphore implementation is strictly monotonic (i.e. we proceed
362 * so long as the semaphore value in the register/page is greater
363 * than the sync value), so whenever we reset the seqno,
364 * so long as we reset the tracking semaphore value to 0, it will
365 * always be before the next request's seqno. If we don't reset
366 * the semaphore value, then when the seqno moves backwards all
367 * future waits will complete instantly (causing rendering corruption).
368 */
369 if (IS_GEN6(dev_priv) || IS_GEN7(dev_priv)) {
370 I915_WRITE(RING_SYNC_0(engine->mmio_base), 0);
371 I915_WRITE(RING_SYNC_1(engine->mmio_base), 0);
372 if (HAS_VEBOX(dev_priv))
373 I915_WRITE(RING_SYNC_2(engine->mmio_base), 0);
374 }
Chris Wilson57f275a2016-08-15 10:49:00 +0100375
376 intel_write_status_page(engine, I915_GEM_HWS_INDEX, seqno);
Chris Wilson14a6bbf2017-03-14 11:14:52 +0000377 clear_bit(ENGINE_IRQ_BREADCRUMB, &engine->irq_posted);
Chris Wilson73cb9702016-10-28 13:58:46 +0100378
Chris Wilson57f275a2016-08-15 10:49:00 +0100379 /* After manually advancing the seqno, fake the interrupt in case
380 * there are any waiters for that seqno.
381 */
382 intel_engine_wakeup(engine);
Chris Wilson2ca9faa2017-04-05 16:30:54 +0100383
384 GEM_BUG_ON(intel_engine_get_seqno(engine) != seqno);
Chris Wilson57f275a2016-08-15 10:49:00 +0100385}
386
Chris Wilson73cb9702016-10-28 13:58:46 +0100387static void intel_engine_init_timeline(struct intel_engine_cs *engine)
Chris Wilsondcff85c2016-08-05 10:14:11 +0100388{
Chris Wilson73cb9702016-10-28 13:58:46 +0100389 engine->timeline = &engine->i915->gt.global_timeline.engine[engine->id];
Chris Wilsondcff85c2016-08-05 10:14:11 +0100390}
391
Mika Kuoppala19df9a52017-09-22 15:43:04 +0300392static bool csb_force_mmio(struct drm_i915_private *i915)
393{
Mika Kuoppala19df9a52017-09-22 15:43:04 +0300394 /*
395 * IOMMU adds unpredictable latency causing the CSB write (from the
396 * GPU into the HWSP) to only be visible some time after the interrupt
397 * (missed breadcrumb syndrome).
398 */
399 if (intel_vtd_active())
400 return true;
401
Weinan Li1fd51d92017-10-15 11:55:25 +0800402 /* Older GVT emulation depends upon intercepting CSB mmio */
403 if (intel_vgpu_active(i915) && !intel_vgpu_has_hwsp_emulation(i915))
404 return true;
405
Mika Kuoppala19df9a52017-09-22 15:43:04 +0300406 return false;
407}
408
409static void intel_engine_init_execlist(struct intel_engine_cs *engine)
410{
411 struct intel_engine_execlists * const execlists = &engine->execlists;
412
413 execlists->csb_use_mmio = csb_force_mmio(engine->i915);
414
Mika Kuoppala76e70082017-09-22 15:43:07 +0300415 execlists->port_mask = 1;
416 BUILD_BUG_ON_NOT_POWER_OF_2(execlists_num_ports(execlists));
417 GEM_BUG_ON(execlists_num_ports(execlists) > EXECLIST_MAX_PORTS);
418
Mika Kuoppala19df9a52017-09-22 15:43:04 +0300419 execlists->queue = RB_ROOT;
420 execlists->first = NULL;
421}
422
Tvrtko Ursulin019bf272016-07-13 16:03:41 +0100423/**
424 * intel_engines_setup_common - setup engine state not requiring hw access
425 * @engine: Engine to setup.
426 *
427 * Initializes @engine@ structure members shared between legacy and execlists
428 * submission modes which do not require hardware access.
429 *
430 * Typically done early in the submission mode specific engine setup stage.
431 */
432void intel_engine_setup_common(struct intel_engine_cs *engine)
433{
Mika Kuoppala19df9a52017-09-22 15:43:04 +0300434 intel_engine_init_execlist(engine);
Tvrtko Ursulin019bf272016-07-13 16:03:41 +0100435
Chris Wilson73cb9702016-10-28 13:58:46 +0100436 intel_engine_init_timeline(engine);
Tvrtko Ursulin019bf272016-07-13 16:03:41 +0100437 intel_engine_init_hangcheck(engine);
Chris Wilson115003e92016-08-04 16:32:19 +0100438 i915_gem_batch_pool_init(engine, &engine->batch_pool);
Chris Wilson7756e452016-08-18 17:17:10 +0100439
440 intel_engine_init_cmd_parser(engine);
Tvrtko Ursulin019bf272016-07-13 16:03:41 +0100441}
442
Chris Wilsonadc320c2016-08-15 10:48:59 +0100443int intel_engine_create_scratch(struct intel_engine_cs *engine, int size)
444{
445 struct drm_i915_gem_object *obj;
446 struct i915_vma *vma;
447 int ret;
448
449 WARN_ON(engine->scratch);
450
Tvrtko Ursulin187685c2016-12-01 14:16:36 +0000451 obj = i915_gem_object_create_stolen(engine->i915, size);
Chris Wilsonadc320c2016-08-15 10:48:59 +0100452 if (!obj)
Chris Wilson920cf412016-10-28 13:58:30 +0100453 obj = i915_gem_object_create_internal(engine->i915, size);
Chris Wilsonadc320c2016-08-15 10:48:59 +0100454 if (IS_ERR(obj)) {
455 DRM_ERROR("Failed to allocate scratch page\n");
456 return PTR_ERR(obj);
457 }
458
Chris Wilsona01cb372017-01-16 15:21:30 +0000459 vma = i915_vma_instance(obj, &engine->i915->ggtt.base, NULL);
Chris Wilsonadc320c2016-08-15 10:48:59 +0100460 if (IS_ERR(vma)) {
461 ret = PTR_ERR(vma);
462 goto err_unref;
463 }
464
465 ret = i915_vma_pin(vma, 0, 4096, PIN_GLOBAL | PIN_HIGH);
466 if (ret)
467 goto err_unref;
468
469 engine->scratch = vma;
Chris Wilsonbde13eb2016-08-15 10:49:07 +0100470 DRM_DEBUG_DRIVER("%s pipe control offset: 0x%08x\n",
471 engine->name, i915_ggtt_offset(vma));
Chris Wilsonadc320c2016-08-15 10:48:59 +0100472 return 0;
473
474err_unref:
475 i915_gem_object_put(obj);
476 return ret;
477}
478
479static void intel_engine_cleanup_scratch(struct intel_engine_cs *engine)
480{
Chris Wilson19880c42016-08-15 10:49:05 +0100481 i915_vma_unpin_and_release(&engine->scratch);
Chris Wilsonadc320c2016-08-15 10:48:59 +0100482}
483
Daniele Ceraolo Spurio486e93f2017-09-13 09:56:02 +0100484static void cleanup_phys_status_page(struct intel_engine_cs *engine)
485{
486 struct drm_i915_private *dev_priv = engine->i915;
487
488 if (!dev_priv->status_page_dmah)
489 return;
490
491 drm_pci_free(&dev_priv->drm, dev_priv->status_page_dmah);
492 engine->status_page.page_addr = NULL;
493}
494
495static void cleanup_status_page(struct intel_engine_cs *engine)
496{
497 struct i915_vma *vma;
498 struct drm_i915_gem_object *obj;
499
500 vma = fetch_and_zero(&engine->status_page.vma);
501 if (!vma)
502 return;
503
504 obj = vma->obj;
505
506 i915_vma_unpin(vma);
507 i915_vma_close(vma);
508
509 i915_gem_object_unpin_map(obj);
510 __i915_gem_object_release_unless_active(obj);
511}
512
513static int init_status_page(struct intel_engine_cs *engine)
514{
515 struct drm_i915_gem_object *obj;
516 struct i915_vma *vma;
517 unsigned int flags;
518 void *vaddr;
519 int ret;
520
521 obj = i915_gem_object_create_internal(engine->i915, PAGE_SIZE);
522 if (IS_ERR(obj)) {
523 DRM_ERROR("Failed to allocate status page\n");
524 return PTR_ERR(obj);
525 }
526
527 ret = i915_gem_object_set_cache_level(obj, I915_CACHE_LLC);
528 if (ret)
529 goto err;
530
531 vma = i915_vma_instance(obj, &engine->i915->ggtt.base, NULL);
532 if (IS_ERR(vma)) {
533 ret = PTR_ERR(vma);
534 goto err;
535 }
536
537 flags = PIN_GLOBAL;
538 if (!HAS_LLC(engine->i915))
539 /* On g33, we cannot place HWS above 256MiB, so
540 * restrict its pinning to the low mappable arena.
541 * Though this restriction is not documented for
542 * gen4, gen5, or byt, they also behave similarly
543 * and hang if the HWS is placed at the top of the
544 * GTT. To generalise, it appears that all !llc
545 * platforms have issues with us placing the HWS
546 * above the mappable region (even though we never
547 * actually map it).
548 */
549 flags |= PIN_MAPPABLE;
Chris Wilson34a04e52017-09-13 09:56:03 +0100550 else
551 flags |= PIN_HIGH;
Daniele Ceraolo Spurio486e93f2017-09-13 09:56:02 +0100552 ret = i915_vma_pin(vma, 0, 4096, flags);
553 if (ret)
554 goto err;
555
556 vaddr = i915_gem_object_pin_map(obj, I915_MAP_WB);
557 if (IS_ERR(vaddr)) {
558 ret = PTR_ERR(vaddr);
559 goto err_unpin;
560 }
561
562 engine->status_page.vma = vma;
563 engine->status_page.ggtt_offset = i915_ggtt_offset(vma);
564 engine->status_page.page_addr = memset(vaddr, 0, PAGE_SIZE);
565
566 DRM_DEBUG_DRIVER("%s hws offset: 0x%08x\n",
567 engine->name, i915_ggtt_offset(vma));
568 return 0;
569
570err_unpin:
571 i915_vma_unpin(vma);
572err:
573 i915_gem_object_put(obj);
574 return ret;
575}
576
577static int init_phys_status_page(struct intel_engine_cs *engine)
578{
579 struct drm_i915_private *dev_priv = engine->i915;
580
581 GEM_BUG_ON(engine->id != RCS);
582
583 dev_priv->status_page_dmah =
584 drm_pci_alloc(&dev_priv->drm, PAGE_SIZE, PAGE_SIZE);
585 if (!dev_priv->status_page_dmah)
586 return -ENOMEM;
587
588 engine->status_page.page_addr = dev_priv->status_page_dmah->vaddr;
589 memset(engine->status_page.page_addr, 0, PAGE_SIZE);
590
591 return 0;
592}
593
Tvrtko Ursulin019bf272016-07-13 16:03:41 +0100594/**
595 * intel_engines_init_common - initialize cengine state which might require hw access
596 * @engine: Engine to initialize.
597 *
598 * Initializes @engine@ structure members shared between legacy and execlists
599 * submission modes which do require hardware access.
600 *
601 * Typcally done at later stages of submission mode specific engine setup.
602 *
603 * Returns zero on success or an error code on failure.
604 */
605int intel_engine_init_common(struct intel_engine_cs *engine)
606{
Chris Wilson266a2402017-05-04 10:33:08 +0100607 struct intel_ring *ring;
Tvrtko Ursulin019bf272016-07-13 16:03:41 +0100608 int ret;
609
Chris Wilsonff44ad52017-03-16 17:13:03 +0000610 engine->set_default_submission(engine);
611
Chris Wilsone8a9c582016-12-18 15:37:20 +0000612 /* We may need to do things with the shrinker which
613 * require us to immediately switch back to the default
614 * context. This can cause a problem as pinning the
615 * default context also requires GTT space which may not
616 * be available. To avoid this we always pin the default
617 * context.
618 */
Chris Wilson266a2402017-05-04 10:33:08 +0100619 ring = engine->context_pin(engine, engine->i915->kernel_context);
620 if (IS_ERR(ring))
621 return PTR_ERR(ring);
Tvrtko Ursulin019bf272016-07-13 16:03:41 +0100622
Chris Wilsone7af3112017-10-03 21:34:48 +0100623 /*
624 * Similarly the preempt context must always be available so that
625 * we can interrupt the engine at any time.
626 */
Michał Winiarskia4598d12017-10-25 22:00:18 +0200627 if (HAS_LOGICAL_RING_PREEMPTION(engine->i915)) {
Chris Wilsone7af3112017-10-03 21:34:48 +0100628 ring = engine->context_pin(engine,
629 engine->i915->preempt_context);
630 if (IS_ERR(ring)) {
631 ret = PTR_ERR(ring);
632 goto err_unpin_kernel;
633 }
634 }
635
Chris Wilsone8a9c582016-12-18 15:37:20 +0000636 ret = intel_engine_init_breadcrumbs(engine);
637 if (ret)
Chris Wilsone7af3112017-10-03 21:34:48 +0100638 goto err_unpin_preempt;
Chris Wilsone8a9c582016-12-18 15:37:20 +0000639
Daniele Ceraolo Spurio486e93f2017-09-13 09:56:02 +0100640 if (HWS_NEEDS_PHYSICAL(engine->i915))
641 ret = init_phys_status_page(engine);
642 else
643 ret = init_status_page(engine);
644 if (ret)
Chris Wilson7c2fa7f2017-11-10 14:26:34 +0000645 goto err_breadcrumbs;
Chris Wilson4e50f082016-10-28 13:58:31 +0100646
Chris Wilson7756e452016-08-18 17:17:10 +0100647 return 0;
Chris Wilsone8a9c582016-12-18 15:37:20 +0000648
Daniele Ceraolo Spurio486e93f2017-09-13 09:56:02 +0100649err_breadcrumbs:
650 intel_engine_fini_breadcrumbs(engine);
Chris Wilsone7af3112017-10-03 21:34:48 +0100651err_unpin_preempt:
Michał Winiarskia4598d12017-10-25 22:00:18 +0200652 if (HAS_LOGICAL_RING_PREEMPTION(engine->i915))
Chris Wilsone7af3112017-10-03 21:34:48 +0100653 engine->context_unpin(engine, engine->i915->preempt_context);
654err_unpin_kernel:
Chris Wilsone8a9c582016-12-18 15:37:20 +0000655 engine->context_unpin(engine, engine->i915->kernel_context);
656 return ret;
Tvrtko Ursulin019bf272016-07-13 16:03:41 +0100657}
Chris Wilson96a945a2016-08-03 13:19:16 +0100658
659/**
660 * intel_engines_cleanup_common - cleans up the engine state created by
661 * the common initiailizers.
662 * @engine: Engine to cleanup.
663 *
664 * This cleans up everything created by the common helpers.
665 */
666void intel_engine_cleanup_common(struct intel_engine_cs *engine)
667{
Chris Wilsonadc320c2016-08-15 10:48:59 +0100668 intel_engine_cleanup_scratch(engine);
669
Daniele Ceraolo Spurio486e93f2017-09-13 09:56:02 +0100670 if (HWS_NEEDS_PHYSICAL(engine->i915))
671 cleanup_phys_status_page(engine);
672 else
673 cleanup_status_page(engine);
674
Chris Wilson96a945a2016-08-03 13:19:16 +0100675 intel_engine_fini_breadcrumbs(engine);
Chris Wilson7756e452016-08-18 17:17:10 +0100676 intel_engine_cleanup_cmd_parser(engine);
Chris Wilson96a945a2016-08-03 13:19:16 +0100677 i915_gem_batch_pool_fini(&engine->batch_pool);
Chris Wilsone8a9c582016-12-18 15:37:20 +0000678
Chris Wilsond2b4b972017-11-10 14:26:33 +0000679 if (engine->default_state)
680 i915_gem_object_put(engine->default_state);
681
Michał Winiarskia4598d12017-10-25 22:00:18 +0200682 if (HAS_LOGICAL_RING_PREEMPTION(engine->i915))
Chris Wilsone7af3112017-10-03 21:34:48 +0100683 engine->context_unpin(engine, engine->i915->preempt_context);
Chris Wilsone8a9c582016-12-18 15:37:20 +0000684 engine->context_unpin(engine, engine->i915->kernel_context);
Chris Wilson96a945a2016-08-03 13:19:16 +0100685}
Chris Wilson1b365952016-10-04 21:11:31 +0100686
687u64 intel_engine_get_active_head(struct intel_engine_cs *engine)
688{
689 struct drm_i915_private *dev_priv = engine->i915;
690 u64 acthd;
691
692 if (INTEL_GEN(dev_priv) >= 8)
693 acthd = I915_READ64_2x32(RING_ACTHD(engine->mmio_base),
694 RING_ACTHD_UDW(engine->mmio_base));
695 else if (INTEL_GEN(dev_priv) >= 4)
696 acthd = I915_READ(RING_ACTHD(engine->mmio_base));
697 else
698 acthd = I915_READ(ACTHD);
699
700 return acthd;
701}
702
703u64 intel_engine_get_last_batch_head(struct intel_engine_cs *engine)
704{
705 struct drm_i915_private *dev_priv = engine->i915;
706 u64 bbaddr;
707
708 if (INTEL_GEN(dev_priv) >= 8)
709 bbaddr = I915_READ64_2x32(RING_BBADDR(engine->mmio_base),
710 RING_BBADDR_UDW(engine->mmio_base));
711 else
712 bbaddr = I915_READ(RING_BBADDR(engine->mmio_base));
713
714 return bbaddr;
715}
Chris Wilson0e704472016-10-12 10:05:17 +0100716
717const char *i915_cache_level_str(struct drm_i915_private *i915, int type)
718{
719 switch (type) {
720 case I915_CACHE_NONE: return " uncached";
721 case I915_CACHE_LLC: return HAS_LLC(i915) ? " LLC" : " snooped";
722 case I915_CACHE_L3_LLC: return " L3+LLC";
723 case I915_CACHE_WT: return " WT";
724 default: return "";
725 }
726}
727
728static inline uint32_t
729read_subslice_reg(struct drm_i915_private *dev_priv, int slice,
730 int subslice, i915_reg_t reg)
731{
732 uint32_t mcr;
733 uint32_t ret;
734 enum forcewake_domains fw_domains;
735
736 fw_domains = intel_uncore_forcewake_for_reg(dev_priv, reg,
737 FW_REG_READ);
738 fw_domains |= intel_uncore_forcewake_for_reg(dev_priv,
739 GEN8_MCR_SELECTOR,
740 FW_REG_READ | FW_REG_WRITE);
741
742 spin_lock_irq(&dev_priv->uncore.lock);
743 intel_uncore_forcewake_get__locked(dev_priv, fw_domains);
744
745 mcr = I915_READ_FW(GEN8_MCR_SELECTOR);
746 /*
747 * The HW expects the slice and sublice selectors to be reset to 0
748 * after reading out the registers.
749 */
750 WARN_ON_ONCE(mcr & (GEN8_MCR_SLICE_MASK | GEN8_MCR_SUBSLICE_MASK));
751 mcr &= ~(GEN8_MCR_SLICE_MASK | GEN8_MCR_SUBSLICE_MASK);
752 mcr |= GEN8_MCR_SLICE(slice) | GEN8_MCR_SUBSLICE(subslice);
753 I915_WRITE_FW(GEN8_MCR_SELECTOR, mcr);
754
755 ret = I915_READ_FW(reg);
756
757 mcr &= ~(GEN8_MCR_SLICE_MASK | GEN8_MCR_SUBSLICE_MASK);
758 I915_WRITE_FW(GEN8_MCR_SELECTOR, mcr);
759
760 intel_uncore_forcewake_put__locked(dev_priv, fw_domains);
761 spin_unlock_irq(&dev_priv->uncore.lock);
762
763 return ret;
764}
765
766/* NB: please notice the memset */
767void intel_engine_get_instdone(struct intel_engine_cs *engine,
768 struct intel_instdone *instdone)
769{
770 struct drm_i915_private *dev_priv = engine->i915;
771 u32 mmio_base = engine->mmio_base;
772 int slice;
773 int subslice;
774
775 memset(instdone, 0, sizeof(*instdone));
776
777 switch (INTEL_GEN(dev_priv)) {
778 default:
779 instdone->instdone = I915_READ(RING_INSTDONE(mmio_base));
780
781 if (engine->id != RCS)
782 break;
783
784 instdone->slice_common = I915_READ(GEN7_SC_INSTDONE);
785 for_each_instdone_slice_subslice(dev_priv, slice, subslice) {
786 instdone->sampler[slice][subslice] =
787 read_subslice_reg(dev_priv, slice, subslice,
788 GEN7_SAMPLER_INSTDONE);
789 instdone->row[slice][subslice] =
790 read_subslice_reg(dev_priv, slice, subslice,
791 GEN7_ROW_INSTDONE);
792 }
793 break;
794 case 7:
795 instdone->instdone = I915_READ(RING_INSTDONE(mmio_base));
796
797 if (engine->id != RCS)
798 break;
799
800 instdone->slice_common = I915_READ(GEN7_SC_INSTDONE);
801 instdone->sampler[0][0] = I915_READ(GEN7_SAMPLER_INSTDONE);
802 instdone->row[0][0] = I915_READ(GEN7_ROW_INSTDONE);
803
804 break;
805 case 6:
806 case 5:
807 case 4:
808 instdone->instdone = I915_READ(RING_INSTDONE(mmio_base));
809
810 if (engine->id == RCS)
811 /* HACK: Using the wrong struct member */
812 instdone->slice_common = I915_READ(GEN4_INSTDONE1);
813 break;
814 case 3:
815 case 2:
816 instdone->instdone = I915_READ(GEN2_INSTDONE);
817 break;
818 }
819}
Chris Wilsonf97fbf92017-02-13 17:15:14 +0000820
Tvrtko Ursulin133b4bd2017-02-16 12:23:23 +0000821static int wa_add(struct drm_i915_private *dev_priv,
822 i915_reg_t addr,
823 const u32 mask, const u32 val)
824{
825 const u32 idx = dev_priv->workarounds.count;
826
827 if (WARN_ON(idx >= I915_MAX_WA_REGS))
828 return -ENOSPC;
829
830 dev_priv->workarounds.reg[idx].addr = addr;
831 dev_priv->workarounds.reg[idx].value = val;
832 dev_priv->workarounds.reg[idx].mask = mask;
833
834 dev_priv->workarounds.count++;
835
836 return 0;
837}
838
839#define WA_REG(addr, mask, val) do { \
840 const int r = wa_add(dev_priv, (addr), (mask), (val)); \
841 if (r) \
842 return r; \
843 } while (0)
844
845#define WA_SET_BIT_MASKED(addr, mask) \
846 WA_REG(addr, (mask), _MASKED_BIT_ENABLE(mask))
847
848#define WA_CLR_BIT_MASKED(addr, mask) \
849 WA_REG(addr, (mask), _MASKED_BIT_DISABLE(mask))
850
851#define WA_SET_FIELD_MASKED(addr, mask, value) \
852 WA_REG(addr, mask, _MASKED_FIELD(mask, value))
853
Tvrtko Ursulin133b4bd2017-02-16 12:23:23 +0000854static int wa_ring_whitelist_reg(struct intel_engine_cs *engine,
855 i915_reg_t reg)
856{
857 struct drm_i915_private *dev_priv = engine->i915;
858 struct i915_workarounds *wa = &dev_priv->workarounds;
859 const uint32_t index = wa->hw_whitelist_count[engine->id];
860
861 if (WARN_ON(index >= RING_MAX_NONPRIV_SLOTS))
862 return -EINVAL;
863
Oscar Mateo32ced392017-09-28 15:40:39 -0700864 I915_WRITE(RING_FORCE_TO_NONPRIV(engine->mmio_base, index),
865 i915_mmio_reg_offset(reg));
Tvrtko Ursulin133b4bd2017-02-16 12:23:23 +0000866 wa->hw_whitelist_count[engine->id]++;
867
868 return 0;
869}
870
871static int gen8_init_workarounds(struct intel_engine_cs *engine)
872{
873 struct drm_i915_private *dev_priv = engine->i915;
874
875 WA_SET_BIT_MASKED(INSTPM, INSTPM_FORCE_ORDERING);
876
877 /* WaDisableAsyncFlipPerfMode:bdw,chv */
878 WA_SET_BIT_MASKED(MI_MODE, ASYNC_FLIP_PERF_DISABLE);
879
880 /* WaDisablePartialInstShootdown:bdw,chv */
881 WA_SET_BIT_MASKED(GEN8_ROW_CHICKEN,
882 PARTIAL_INSTRUCTION_SHOOTDOWN_DISABLE);
883
884 /* Use Force Non-Coherent whenever executing a 3D context. This is a
885 * workaround for for a possible hang in the unlikely event a TLB
886 * invalidation occurs during a PSD flush.
887 */
888 /* WaForceEnableNonCoherent:bdw,chv */
889 /* WaHdcDisableFetchWhenMasked:bdw,chv */
890 WA_SET_BIT_MASKED(HDC_CHICKEN0,
891 HDC_DONOT_FETCH_MEM_WHEN_MASKED |
892 HDC_FORCE_NON_COHERENT);
893
894 /* From the Haswell PRM, Command Reference: Registers, CACHE_MODE_0:
895 * "The Hierarchical Z RAW Stall Optimization allows non-overlapping
896 * polygons in the same 8x4 pixel/sample area to be processed without
897 * stalling waiting for the earlier ones to write to Hierarchical Z
898 * buffer."
899 *
900 * This optimization is off by default for BDW and CHV; turn it on.
901 */
902 WA_CLR_BIT_MASKED(CACHE_MODE_0_GEN7, HIZ_RAW_STALL_OPT_DISABLE);
903
904 /* Wa4x4STCOptimizationDisable:bdw,chv */
905 WA_SET_BIT_MASKED(CACHE_MODE_1, GEN8_4x4_STC_OPTIMIZATION_DISABLE);
906
907 /*
908 * BSpec recommends 8x4 when MSAA is used,
909 * however in practice 16x4 seems fastest.
910 *
911 * Note that PS/WM thread counts depend on the WIZ hashing
912 * disable bit, which we don't touch here, but it's good
913 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
914 */
915 WA_SET_FIELD_MASKED(GEN7_GT_MODE,
916 GEN6_WIZ_HASHING_MASK,
917 GEN6_WIZ_HASHING_16x4);
918
919 return 0;
920}
921
922static int bdw_init_workarounds(struct intel_engine_cs *engine)
923{
924 struct drm_i915_private *dev_priv = engine->i915;
925 int ret;
926
927 ret = gen8_init_workarounds(engine);
928 if (ret)
929 return ret;
930
931 /* WaDisableThreadStallDopClockGating:bdw (pre-production) */
932 WA_SET_BIT_MASKED(GEN8_ROW_CHICKEN, STALL_DOP_GATING_DISABLE);
933
934 /* WaDisableDopClockGating:bdw
935 *
936 * Also see the related UCGTCL1 write in broadwell_init_clock_gating()
937 * to disable EUTC clock gating.
938 */
939 WA_SET_BIT_MASKED(GEN7_ROW_CHICKEN2,
940 DOP_CLOCK_GATING_DISABLE);
941
942 WA_SET_BIT_MASKED(HALF_SLICE_CHICKEN3,
943 GEN8_SAMPLER_POWER_BYPASS_DIS);
944
945 WA_SET_BIT_MASKED(HDC_CHICKEN0,
946 /* WaForceContextSaveRestoreNonCoherent:bdw */
947 HDC_FORCE_CONTEXT_SAVE_RESTORE_NON_COHERENT |
948 /* WaDisableFenceDestinationToSLM:bdw (pre-prod) */
949 (IS_BDW_GT3(dev_priv) ? HDC_FENCE_DEST_SLM_DISABLE : 0));
950
951 return 0;
952}
953
954static int chv_init_workarounds(struct intel_engine_cs *engine)
955{
956 struct drm_i915_private *dev_priv = engine->i915;
957 int ret;
958
959 ret = gen8_init_workarounds(engine);
960 if (ret)
961 return ret;
962
963 /* WaDisableThreadStallDopClockGating:chv */
964 WA_SET_BIT_MASKED(GEN8_ROW_CHICKEN, STALL_DOP_GATING_DISABLE);
965
966 /* Improve HiZ throughput on CHV. */
967 WA_SET_BIT_MASKED(HIZ_CHICKEN, CHV_HZ_8X8_MODE_IN_1X);
968
969 return 0;
970}
971
972static int gen9_init_workarounds(struct intel_engine_cs *engine)
973{
974 struct drm_i915_private *dev_priv = engine->i915;
975 int ret;
976
Rodrigo Vivi46c26662017-06-16 15:49:58 -0700977 /* WaConextSwitchWithConcurrentTLBInvalidate:skl,bxt,kbl,glk,cfl */
Tvrtko Ursulin133b4bd2017-02-16 12:23:23 +0000978 I915_WRITE(GEN9_CSFE_CHICKEN1_RCS, _MASKED_BIT_ENABLE(GEN9_PREEMPT_GPGPU_SYNC_SWITCH_DISABLE));
979
Rodrigo Vivi46c26662017-06-16 15:49:58 -0700980 /* WaEnableLbsSlaRetryTimerDecrement:skl,bxt,kbl,glk,cfl */
Tvrtko Ursulin133b4bd2017-02-16 12:23:23 +0000981 I915_WRITE(BDW_SCRATCH1, I915_READ(BDW_SCRATCH1) |
982 GEN9_LBS_SLA_RETRY_TIMER_DECREMENT_ENABLE);
983
Rodrigo Vivi98eed3d2017-06-19 14:21:47 -0700984 /* WaDisableKillLogic:bxt,skl,kbl */
985 if (!IS_COFFEELAKE(dev_priv))
986 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) |
987 ECOCHK_DIS_TLB);
Tvrtko Ursulin133b4bd2017-02-16 12:23:23 +0000988
Ville Syrjälä93564042017-08-24 22:10:51 +0300989 if (HAS_LLC(dev_priv)) {
990 /* WaCompressedResourceSamplerPbeMediaNewHashMode:skl,kbl
991 *
992 * Must match Display Engine. See
993 * WaCompressedResourceDisplayNewHashMode.
994 */
995 WA_SET_BIT_MASKED(COMMON_SLICE_CHICKEN2,
996 GEN9_PBE_COMPRESSED_HASH_SELECTION);
997 WA_SET_BIT_MASKED(GEN9_HALF_SLICE_CHICKEN7,
998 GEN9_SAMPLER_HASH_COMPRESSED_READ_ADDR);
Chris Wilson53221e12017-10-04 13:41:52 +0100999
1000 I915_WRITE(MMCD_MISC_CTRL,
1001 I915_READ(MMCD_MISC_CTRL) |
1002 MMCD_PCLA |
1003 MMCD_HOTSPOT_EN);
Ville Syrjälä93564042017-08-24 22:10:51 +03001004 }
1005
Rodrigo Vivi46c26662017-06-16 15:49:58 -07001006 /* WaClearFlowControlGpgpuContextSave:skl,bxt,kbl,glk,cfl */
1007 /* WaDisablePartialInstShootdown:skl,bxt,kbl,glk,cfl */
Tvrtko Ursulin133b4bd2017-02-16 12:23:23 +00001008 WA_SET_BIT_MASKED(GEN8_ROW_CHICKEN,
1009 FLOW_CONTROL_ENABLE |
1010 PARTIAL_INSTRUCTION_SHOOTDOWN_DISABLE);
1011
1012 /* Syncing dependencies between camera and graphics:skl,bxt,kbl */
Rodrigo Vivi46c26662017-06-16 15:49:58 -07001013 if (!IS_COFFEELAKE(dev_priv))
1014 WA_SET_BIT_MASKED(HALF_SLICE_CHICKEN3,
1015 GEN9_DISABLE_OCL_OOB_SUPPRESS_LOGIC);
Tvrtko Ursulin133b4bd2017-02-16 12:23:23 +00001016
Rodrigo Vivi46c26662017-06-16 15:49:58 -07001017 /* WaEnableYV12BugFixInHalfSliceChicken7:skl,bxt,kbl,glk,cfl */
1018 /* WaEnableSamplerGPGPUPreemptionSupport:skl,bxt,kbl,cfl */
Tvrtko Ursulin133b4bd2017-02-16 12:23:23 +00001019 WA_SET_BIT_MASKED(GEN9_HALF_SLICE_CHICKEN7,
Arkadiusz Hiler0b71cea2017-05-12 13:20:15 +02001020 GEN9_ENABLE_YV12_BUGFIX |
Tvrtko Ursulin133b4bd2017-02-16 12:23:23 +00001021 GEN9_ENABLE_GPGPU_PREEMPTION);
1022
Rodrigo Vivi46c26662017-06-16 15:49:58 -07001023 /* Wa4x4STCOptimizationDisable:skl,bxt,kbl,glk,cfl */
1024 /* WaDisablePartialResolveInVc:skl,bxt,kbl,cfl */
Tvrtko Ursulin133b4bd2017-02-16 12:23:23 +00001025 WA_SET_BIT_MASKED(CACHE_MODE_1, (GEN8_4x4_STC_OPTIMIZATION_DISABLE |
1026 GEN9_PARTIAL_RESOLVE_IN_VC_DISABLE));
1027
Rodrigo Vivi46c26662017-06-16 15:49:58 -07001028 /* WaCcsTlbPrefetchDisable:skl,bxt,kbl,glk,cfl */
Tvrtko Ursulin133b4bd2017-02-16 12:23:23 +00001029 WA_CLR_BIT_MASKED(GEN9_HALF_SLICE_CHICKEN5,
1030 GEN9_CCS_TLB_PREFETCH_ENABLE);
1031
Rodrigo Vivi46c26662017-06-16 15:49:58 -07001032 /* WaForceContextSaveRestoreNonCoherent:skl,bxt,kbl,cfl */
Tvrtko Ursulin133b4bd2017-02-16 12:23:23 +00001033 WA_SET_BIT_MASKED(HDC_CHICKEN0,
1034 HDC_FORCE_CONTEXT_SAVE_RESTORE_NON_COHERENT |
1035 HDC_FORCE_CSR_NON_COHERENT_OVR_DISABLE);
1036
1037 /* WaForceEnableNonCoherent and WaDisableHDCInvalidation are
1038 * both tied to WaForceContextSaveRestoreNonCoherent
1039 * in some hsds for skl. We keep the tie for all gen9. The
1040 * documentation is a bit hazy and so we want to get common behaviour,
1041 * even though there is no clear evidence we would need both on kbl/bxt.
1042 * This area has been source of system hangs so we play it safe
1043 * and mimic the skl regardless of what bspec says.
1044 *
1045 * Use Force Non-Coherent whenever executing a 3D context. This
1046 * is a workaround for a possible hang in the unlikely event
1047 * a TLB invalidation occurs during a PSD flush.
1048 */
1049
Rodrigo Vivi46c26662017-06-16 15:49:58 -07001050 /* WaForceEnableNonCoherent:skl,bxt,kbl,cfl */
Tvrtko Ursulin133b4bd2017-02-16 12:23:23 +00001051 WA_SET_BIT_MASKED(HDC_CHICKEN0,
1052 HDC_FORCE_NON_COHERENT);
1053
Rodrigo Vivi98eed3d2017-06-19 14:21:47 -07001054 /* WaDisableHDCInvalidation:skl,bxt,kbl,cfl */
1055 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) |
1056 BDW_DISABLE_HDC_INVALIDATION);
Tvrtko Ursulin133b4bd2017-02-16 12:23:23 +00001057
Rodrigo Vivi46c26662017-06-16 15:49:58 -07001058 /* WaDisableSamplerPowerBypassForSOPingPong:skl,bxt,kbl,cfl */
Tvrtko Ursulin133b4bd2017-02-16 12:23:23 +00001059 if (IS_SKYLAKE(dev_priv) ||
1060 IS_KABYLAKE(dev_priv) ||
Chris Wilsonf3e2b2c2017-11-14 13:43:39 +00001061 IS_COFFEELAKE(dev_priv))
Tvrtko Ursulin133b4bd2017-02-16 12:23:23 +00001062 WA_SET_BIT_MASKED(HALF_SLICE_CHICKEN3,
1063 GEN8_SAMPLER_POWER_BYPASS_DIS);
1064
Rodrigo Vivi46c26662017-06-16 15:49:58 -07001065 /* WaDisableSTUnitPowerOptimization:skl,bxt,kbl,glk,cfl */
Tvrtko Ursulin133b4bd2017-02-16 12:23:23 +00001066 WA_SET_BIT_MASKED(HALF_SLICE_CHICKEN2, GEN8_ST_PO_DISABLE);
1067
Rodrigo Vivi46c26662017-06-16 15:49:58 -07001068 /* WaOCLCoherentLineFlush:skl,bxt,kbl,cfl */
Tvrtko Ursulin133b4bd2017-02-16 12:23:23 +00001069 I915_WRITE(GEN8_L3SQCREG4, (I915_READ(GEN8_L3SQCREG4) |
1070 GEN8_LQSC_FLUSH_COHERENT_LINES));
1071
Michał Winiarski5152def2017-10-03 21:34:46 +01001072 /*
1073 * Supporting preemption with fine-granularity requires changes in the
1074 * batch buffer programming. Since we can't break old userspace, we
1075 * need to set our default preemption level to safe value. Userspace is
1076 * still able to use more fine-grained preemption levels, since in
1077 * WaEnablePreemptionGranularityControlByUMD we're whitelisting the
1078 * per-ctx register. As such, WaDisable{3D,GPGPU}MidCmdPreemption are
1079 * not real HW workarounds, but merely a way to start using preemption
1080 * while maintaining old contract with userspace.
1081 */
1082
1083 /* WaDisable3DMidCmdPreemption:skl,bxt,glk,cfl,[cnl] */
1084 WA_CLR_BIT_MASKED(GEN8_CS_CHICKEN1, GEN9_PREEMPT_3D_OBJECT_LEVEL);
1085
1086 /* WaDisableGPGPUMidCmdPreemption:skl,bxt,blk,cfl,[cnl] */
1087 WA_SET_FIELD_MASKED(GEN8_CS_CHICKEN1, GEN9_PREEMPT_GPGPU_LEVEL_MASK,
1088 GEN9_PREEMPT_GPGPU_COMMAND_LEVEL);
1089
Rodrigo Vivi46c26662017-06-16 15:49:58 -07001090 /* WaVFEStateAfterPipeControlwithMediaStateClear:skl,bxt,glk,cfl */
Tvrtko Ursulin133b4bd2017-02-16 12:23:23 +00001091 ret = wa_ring_whitelist_reg(engine, GEN9_CTX_PREEMPT_REG);
1092 if (ret)
1093 return ret;
1094
Jeff McGee1e998342017-10-03 21:34:45 +01001095 /* WaEnablePreemptionGranularityControlByUMD:skl,bxt,kbl,cfl,[cnl] */
1096 I915_WRITE(GEN7_FF_SLICE_CS_CHICKEN1,
1097 _MASKED_BIT_ENABLE(GEN9_FFSC_PERCTX_PREEMPT_CTRL));
1098 ret = wa_ring_whitelist_reg(engine, GEN8_CS_CHICKEN1);
Tvrtko Ursulin133b4bd2017-02-16 12:23:23 +00001099 if (ret)
1100 return ret;
1101
Rodrigo Vivi46c26662017-06-16 15:49:58 -07001102 /* WaAllowUMDToModifyHDCChicken1:skl,bxt,kbl,glk,cfl */
Tvrtko Ursulin133b4bd2017-02-16 12:23:23 +00001103 ret = wa_ring_whitelist_reg(engine, GEN8_HDC_CHICKEN1);
1104 if (ret)
1105 return ret;
1106
1107 return 0;
1108}
1109
1110static int skl_tune_iz_hashing(struct intel_engine_cs *engine)
1111{
1112 struct drm_i915_private *dev_priv = engine->i915;
1113 u8 vals[3] = { 0, 0, 0 };
1114 unsigned int i;
1115
1116 for (i = 0; i < 3; i++) {
1117 u8 ss;
1118
1119 /*
1120 * Only consider slices where one, and only one, subslice has 7
1121 * EUs
1122 */
1123 if (!is_power_of_2(INTEL_INFO(dev_priv)->sseu.subslice_7eu[i]))
1124 continue;
1125
1126 /*
1127 * subslice_7eu[i] != 0 (because of the check above) and
1128 * ss_max == 4 (maximum number of subslices possible per slice)
1129 *
1130 * -> 0 <= ss <= 3;
1131 */
1132 ss = ffs(INTEL_INFO(dev_priv)->sseu.subslice_7eu[i]) - 1;
1133 vals[i] = 3 - ss;
1134 }
1135
1136 if (vals[0] == 0 && vals[1] == 0 && vals[2] == 0)
1137 return 0;
1138
1139 /* Tune IZ hashing. See intel_device_info_runtime_init() */
1140 WA_SET_FIELD_MASKED(GEN7_GT_MODE,
1141 GEN9_IZ_HASHING_MASK(2) |
1142 GEN9_IZ_HASHING_MASK(1) |
1143 GEN9_IZ_HASHING_MASK(0),
1144 GEN9_IZ_HASHING(2, vals[2]) |
1145 GEN9_IZ_HASHING(1, vals[1]) |
1146 GEN9_IZ_HASHING(0, vals[0]));
1147
1148 return 0;
1149}
1150
1151static int skl_init_workarounds(struct intel_engine_cs *engine)
1152{
1153 struct drm_i915_private *dev_priv = engine->i915;
1154 int ret;
1155
1156 ret = gen9_init_workarounds(engine);
1157 if (ret)
1158 return ret;
1159
Tvrtko Ursulin133b4bd2017-02-16 12:23:23 +00001160 /* WaEnableGapsTsvCreditFix:skl */
1161 I915_WRITE(GEN8_GARBCNTL, (I915_READ(GEN8_GARBCNTL) |
1162 GEN9_GAPS_TSV_CREDIT_DISABLE));
1163
1164 /* WaDisableGafsUnitClkGating:skl */
Oscar Mateo4827c542017-09-07 08:40:07 -07001165 I915_WRITE(GEN7_UCGCTL4, (I915_READ(GEN7_UCGCTL4) |
1166 GEN8_EU_GAUNIT_CLOCK_GATE_DISABLE));
Tvrtko Ursulin133b4bd2017-02-16 12:23:23 +00001167
1168 /* WaInPlaceDecompressionHang:skl */
1169 if (IS_SKL_REVID(dev_priv, SKL_REVID_H0, REVID_FOREVER))
Oscar Mateoefc886c2017-09-07 08:40:04 -07001170 I915_WRITE(GEN9_GAMT_ECO_REG_RW_IA,
1171 (I915_READ(GEN9_GAMT_ECO_REG_RW_IA) |
1172 GAMT_ECO_ENABLE_IN_PLACE_DECOMPRESS));
Tvrtko Ursulin133b4bd2017-02-16 12:23:23 +00001173
1174 /* WaDisableLSQCROPERFforOCL:skl */
1175 ret = wa_ring_whitelist_reg(engine, GEN8_L3SQCREG4);
1176 if (ret)
1177 return ret;
1178
1179 return skl_tune_iz_hashing(engine);
1180}
1181
1182static int bxt_init_workarounds(struct intel_engine_cs *engine)
1183{
1184 struct drm_i915_private *dev_priv = engine->i915;
Chris Wilson70a84f32017-11-14 13:43:40 +00001185 u32 val;
Tvrtko Ursulin133b4bd2017-02-16 12:23:23 +00001186 int ret;
1187
1188 ret = gen9_init_workarounds(engine);
1189 if (ret)
1190 return ret;
1191
Tvrtko Ursulin133b4bd2017-02-16 12:23:23 +00001192 /* WaDisableThreadStallDopClockGating:bxt */
1193 WA_SET_BIT_MASKED(GEN8_ROW_CHICKEN,
1194 STALL_DOP_GATING_DISABLE);
1195
1196 /* WaDisablePooledEuLoadBalancingFix:bxt */
Chris Wilson70a84f32017-11-14 13:43:40 +00001197 I915_WRITE(FF_SLICE_CS_CHICKEN2,
1198 _MASKED_BIT_ENABLE(GEN9_POOLED_EU_LOAD_BALANCING_FIX_DISABLE));
Tvrtko Ursulin133b4bd2017-02-16 12:23:23 +00001199
Tvrtko Ursulin133b4bd2017-02-16 12:23:23 +00001200 /* WaProgramL3SqcReg1DefaultForPerf:bxt */
Chris Wilson70a84f32017-11-14 13:43:40 +00001201 val = I915_READ(GEN8_L3SQCREG1);
1202 val &= ~L3_PRIO_CREDITS_MASK;
1203 val |= L3_GENERAL_PRIO_CREDITS(62) | L3_HIGH_PRIO_CREDITS(2);
1204 I915_WRITE(GEN8_L3SQCREG1, val);
Tvrtko Ursulin133b4bd2017-02-16 12:23:23 +00001205
1206 /* WaToEnableHwFixForPushConstHWBug:bxt */
Chris Wilson70a84f32017-11-14 13:43:40 +00001207 WA_SET_BIT_MASKED(COMMON_SLICE_CHICKEN2,
1208 GEN8_SBE_DISABLE_REPLAY_BUF_OPTIMIZATION);
Tvrtko Ursulin133b4bd2017-02-16 12:23:23 +00001209
1210 /* WaInPlaceDecompressionHang:bxt */
Chris Wilson70a84f32017-11-14 13:43:40 +00001211 I915_WRITE(GEN9_GAMT_ECO_REG_RW_IA,
1212 (I915_READ(GEN9_GAMT_ECO_REG_RW_IA) |
1213 GAMT_ECO_ENABLE_IN_PLACE_DECOMPRESS));
Tvrtko Ursulin133b4bd2017-02-16 12:23:23 +00001214
1215 return 0;
1216}
1217
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07001218static int cnl_init_workarounds(struct intel_engine_cs *engine)
1219{
1220 struct drm_i915_private *dev_priv = engine->i915;
1221 int ret;
1222
Oscar Mateo6cf20a02017-09-07 08:40:05 -07001223 /* WaDisableI2mCycleOnWRPort:cnl (pre-prod) */
Rodrigo Vivi86ebb012017-08-29 16:07:51 -07001224 if (IS_CNL_REVID(dev_priv, CNL_REVID_B0, CNL_REVID_B0))
Oscar Mateo6cf20a02017-09-07 08:40:05 -07001225 I915_WRITE(GAMT_CHKN_BIT_REG,
1226 (I915_READ(GAMT_CHKN_BIT_REG) |
1227 GAMT_CHKN_DISABLE_I2M_CYCLE_ON_WR_PORT));
Rodrigo Vivi86ebb012017-08-29 16:07:51 -07001228
Rodrigo Viviacfb5552017-08-23 13:35:04 -07001229 /* WaForceContextSaveRestoreNonCoherent:cnl */
1230 WA_SET_BIT_MASKED(CNL_HDC_CHICKEN0,
1231 HDC_FORCE_CONTEXT_SAVE_RESTORE_NON_COHERENT);
1232
Rodrigo Viviaa9f4c42017-09-06 15:03:25 -07001233 /* WaThrottleEUPerfToAvoidTDBackPressure:cnl(pre-prod) */
1234 if (IS_CNL_REVID(dev_priv, CNL_REVID_B0, CNL_REVID_B0))
1235 WA_SET_BIT_MASKED(GEN8_ROW_CHICKEN, THROTTLE_12_5);
1236
Rodrigo Vivie6d1a4f2017-08-15 16:16:49 -07001237 /* WaDisableReplayBufferBankArbitrationOptimization:cnl */
1238 WA_SET_BIT_MASKED(COMMON_SLICE_CHICKEN2,
1239 GEN8_SBE_DISABLE_REPLAY_BUF_OPTIMIZATION);
1240
Rodrigo Vivid1d24752017-08-15 16:16:50 -07001241 /* WaDisableEnhancedSBEVertexCaching:cnl (pre-prod) */
1242 if (IS_CNL_REVID(dev_priv, 0, CNL_REVID_B0))
1243 WA_SET_BIT_MASKED(COMMON_SLICE_CHICKEN2,
1244 GEN8_CSC2_SBE_VUE_CACHE_CONSERVATIVE);
1245
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07001246 /* WaInPlaceDecompressionHang:cnl */
Oscar Mateoefc886c2017-09-07 08:40:04 -07001247 I915_WRITE(GEN9_GAMT_ECO_REG_RW_IA,
1248 (I915_READ(GEN9_GAMT_ECO_REG_RW_IA) |
1249 GAMT_ECO_ENABLE_IN_PLACE_DECOMPRESS));
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07001250
Oscar Mateo2cbecff2017-08-23 12:56:31 -07001251 /* WaPushConstantDereferenceHoldDisable:cnl */
Oscar Mateob27f5902017-09-07 08:40:06 -07001252 WA_SET_BIT_MASKED(GEN7_ROW_CHICKEN2, PUSH_CONSTANT_DEREF_DISABLE);
Oscar Mateo2cbecff2017-08-23 12:56:31 -07001253
Rodrigo Vivi392572f2017-08-29 16:07:23 -07001254 /* FtrEnableFastAnisoL1BankingFix: cnl */
1255 WA_SET_BIT_MASKED(HALF_SLICE_CHICKEN3, CNL_FAST_ANISO_L1_BANKING_FIX);
1256
Michał Winiarski5152def2017-10-03 21:34:46 +01001257 /* WaDisable3DMidCmdPreemption:cnl */
1258 WA_CLR_BIT_MASKED(GEN8_CS_CHICKEN1, GEN9_PREEMPT_3D_OBJECT_LEVEL);
1259
1260 /* WaDisableGPGPUMidCmdPreemption:cnl */
1261 WA_SET_FIELD_MASKED(GEN8_CS_CHICKEN1, GEN9_PREEMPT_GPGPU_LEVEL_MASK,
1262 GEN9_PREEMPT_GPGPU_COMMAND_LEVEL);
1263
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07001264 /* WaEnablePreemptionGranularityControlByUMD:cnl */
Jeff McGee1e998342017-10-03 21:34:45 +01001265 I915_WRITE(GEN7_FF_SLICE_CS_CHICKEN1,
1266 _MASKED_BIT_ENABLE(GEN9_FFSC_PERCTX_PREEMPT_CTRL));
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07001267 ret= wa_ring_whitelist_reg(engine, GEN8_CS_CHICKEN1);
1268 if (ret)
1269 return ret;
1270
1271 return 0;
1272}
1273
Tvrtko Ursulin133b4bd2017-02-16 12:23:23 +00001274static int kbl_init_workarounds(struct intel_engine_cs *engine)
1275{
1276 struct drm_i915_private *dev_priv = engine->i915;
1277 int ret;
1278
1279 ret = gen9_init_workarounds(engine);
1280 if (ret)
1281 return ret;
1282
1283 /* WaEnableGapsTsvCreditFix:kbl */
1284 I915_WRITE(GEN8_GARBCNTL, (I915_READ(GEN8_GARBCNTL) |
1285 GEN9_GAPS_TSV_CREDIT_DISABLE));
1286
1287 /* WaDisableDynamicCreditSharing:kbl */
1288 if (IS_KBL_REVID(dev_priv, 0, KBL_REVID_B0))
Oscar Mateoc6ea497c2017-09-07 08:40:08 -07001289 I915_WRITE(GAMT_CHKN_BIT_REG,
1290 (I915_READ(GAMT_CHKN_BIT_REG) |
1291 GAMT_CHKN_DISABLE_DYNAMIC_CREDIT_SHARING));
Tvrtko Ursulin133b4bd2017-02-16 12:23:23 +00001292
1293 /* WaDisableFenceDestinationToSLM:kbl (pre-prod) */
1294 if (IS_KBL_REVID(dev_priv, KBL_REVID_A0, KBL_REVID_A0))
1295 WA_SET_BIT_MASKED(HDC_CHICKEN0,
1296 HDC_FENCE_DEST_SLM_DISABLE);
1297
1298 /* WaToEnableHwFixForPushConstHWBug:kbl */
1299 if (IS_KBL_REVID(dev_priv, KBL_REVID_C0, REVID_FOREVER))
1300 WA_SET_BIT_MASKED(COMMON_SLICE_CHICKEN2,
1301 GEN8_SBE_DISABLE_REPLAY_BUF_OPTIMIZATION);
1302
1303 /* WaDisableGafsUnitClkGating:kbl */
Oscar Mateo4827c542017-09-07 08:40:07 -07001304 I915_WRITE(GEN7_UCGCTL4, (I915_READ(GEN7_UCGCTL4) |
1305 GEN8_EU_GAUNIT_CLOCK_GATE_DISABLE));
Tvrtko Ursulin133b4bd2017-02-16 12:23:23 +00001306
1307 /* WaDisableSbeCacheDispatchPortSharing:kbl */
1308 WA_SET_BIT_MASKED(
1309 GEN7_HALF_SLICE_CHICKEN1,
1310 GEN7_SBE_SS_CACHE_DISPATCH_PORT_SHARING_DISABLE);
1311
1312 /* WaInPlaceDecompressionHang:kbl */
Oscar Mateoefc886c2017-09-07 08:40:04 -07001313 I915_WRITE(GEN9_GAMT_ECO_REG_RW_IA,
1314 (I915_READ(GEN9_GAMT_ECO_REG_RW_IA) |
1315 GAMT_ECO_ENABLE_IN_PLACE_DECOMPRESS));
Tvrtko Ursulin133b4bd2017-02-16 12:23:23 +00001316
1317 /* WaDisableLSQCROPERFforOCL:kbl */
1318 ret = wa_ring_whitelist_reg(engine, GEN8_L3SQCREG4);
1319 if (ret)
1320 return ret;
1321
1322 return 0;
1323}
1324
1325static int glk_init_workarounds(struct intel_engine_cs *engine)
1326{
1327 struct drm_i915_private *dev_priv = engine->i915;
1328 int ret;
1329
1330 ret = gen9_init_workarounds(engine);
1331 if (ret)
1332 return ret;
1333
1334 /* WaToEnableHwFixForPushConstHWBug:glk */
1335 WA_SET_BIT_MASKED(COMMON_SLICE_CHICKEN2,
1336 GEN8_SBE_DISABLE_REPLAY_BUF_OPTIMIZATION);
1337
1338 return 0;
1339}
1340
Rodrigo Vivi46c26662017-06-16 15:49:58 -07001341static int cfl_init_workarounds(struct intel_engine_cs *engine)
1342{
1343 struct drm_i915_private *dev_priv = engine->i915;
1344 int ret;
1345
1346 ret = gen9_init_workarounds(engine);
1347 if (ret)
1348 return ret;
1349
1350 /* WaEnableGapsTsvCreditFix:cfl */
1351 I915_WRITE(GEN8_GARBCNTL, (I915_READ(GEN8_GARBCNTL) |
1352 GEN9_GAPS_TSV_CREDIT_DISABLE));
1353
1354 /* WaToEnableHwFixForPushConstHWBug:cfl */
1355 WA_SET_BIT_MASKED(COMMON_SLICE_CHICKEN2,
1356 GEN8_SBE_DISABLE_REPLAY_BUF_OPTIMIZATION);
1357
1358 /* WaDisableGafsUnitClkGating:cfl */
Oscar Mateo4827c542017-09-07 08:40:07 -07001359 I915_WRITE(GEN7_UCGCTL4, (I915_READ(GEN7_UCGCTL4) |
1360 GEN8_EU_GAUNIT_CLOCK_GATE_DISABLE));
Rodrigo Vivi46c26662017-06-16 15:49:58 -07001361
1362 /* WaDisableSbeCacheDispatchPortSharing:cfl */
1363 WA_SET_BIT_MASKED(
1364 GEN7_HALF_SLICE_CHICKEN1,
1365 GEN7_SBE_SS_CACHE_DISPATCH_PORT_SHARING_DISABLE);
1366
1367 /* WaInPlaceDecompressionHang:cfl */
Oscar Mateoefc886c2017-09-07 08:40:04 -07001368 I915_WRITE(GEN9_GAMT_ECO_REG_RW_IA,
1369 (I915_READ(GEN9_GAMT_ECO_REG_RW_IA) |
1370 GAMT_ECO_ENABLE_IN_PLACE_DECOMPRESS));
Rodrigo Vivi46c26662017-06-16 15:49:58 -07001371
1372 return 0;
1373}
1374
Tvrtko Ursulin133b4bd2017-02-16 12:23:23 +00001375int init_workarounds_ring(struct intel_engine_cs *engine)
1376{
1377 struct drm_i915_private *dev_priv = engine->i915;
Chris Wilson02e012f2017-03-01 12:11:31 +00001378 int err;
Tvrtko Ursulin133b4bd2017-02-16 12:23:23 +00001379
1380 WARN_ON(engine->id != RCS);
1381
1382 dev_priv->workarounds.count = 0;
Chris Wilson02e012f2017-03-01 12:11:31 +00001383 dev_priv->workarounds.hw_whitelist_count[engine->id] = 0;
Tvrtko Ursulin133b4bd2017-02-16 12:23:23 +00001384
1385 if (IS_BROADWELL(dev_priv))
Chris Wilson02e012f2017-03-01 12:11:31 +00001386 err = bdw_init_workarounds(engine);
1387 else if (IS_CHERRYVIEW(dev_priv))
1388 err = chv_init_workarounds(engine);
1389 else if (IS_SKYLAKE(dev_priv))
1390 err = skl_init_workarounds(engine);
1391 else if (IS_BROXTON(dev_priv))
1392 err = bxt_init_workarounds(engine);
1393 else if (IS_KABYLAKE(dev_priv))
1394 err = kbl_init_workarounds(engine);
1395 else if (IS_GEMINILAKE(dev_priv))
1396 err = glk_init_workarounds(engine);
Rodrigo Vivi46c26662017-06-16 15:49:58 -07001397 else if (IS_COFFEELAKE(dev_priv))
1398 err = cfl_init_workarounds(engine);
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07001399 else if (IS_CANNONLAKE(dev_priv))
1400 err = cnl_init_workarounds(engine);
Chris Wilson02e012f2017-03-01 12:11:31 +00001401 else
1402 err = 0;
1403 if (err)
1404 return err;
Tvrtko Ursulin133b4bd2017-02-16 12:23:23 +00001405
Chris Wilson02e012f2017-03-01 12:11:31 +00001406 DRM_DEBUG_DRIVER("%s: Number of context specific w/a: %d\n",
1407 engine->name, dev_priv->workarounds.count);
Tvrtko Ursulin133b4bd2017-02-16 12:23:23 +00001408 return 0;
1409}
1410
1411int intel_ring_workarounds_emit(struct drm_i915_gem_request *req)
1412{
1413 struct i915_workarounds *w = &req->i915->workarounds;
1414 u32 *cs;
1415 int ret, i;
1416
1417 if (w->count == 0)
1418 return 0;
1419
1420 ret = req->engine->emit_flush(req, EMIT_BARRIER);
1421 if (ret)
1422 return ret;
1423
1424 cs = intel_ring_begin(req, (w->count * 2 + 2));
1425 if (IS_ERR(cs))
1426 return PTR_ERR(cs);
1427
1428 *cs++ = MI_LOAD_REGISTER_IMM(w->count);
1429 for (i = 0; i < w->count; i++) {
1430 *cs++ = i915_mmio_reg_offset(w->reg[i].addr);
1431 *cs++ = w->reg[i].value;
1432 }
1433 *cs++ = MI_NOOP;
1434
1435 intel_ring_advance(req, cs);
1436
1437 ret = req->engine->emit_flush(req, EMIT_BARRIER);
1438 if (ret)
1439 return ret;
1440
Tvrtko Ursulin133b4bd2017-02-16 12:23:23 +00001441 return 0;
1442}
1443
Chris Wilsona091d4e2017-05-30 13:13:33 +01001444static bool ring_is_idle(struct intel_engine_cs *engine)
1445{
1446 struct drm_i915_private *dev_priv = engine->i915;
1447 bool idle = true;
1448
1449 intel_runtime_pm_get(dev_priv);
1450
Chris Wilsonaed2fc12017-05-30 13:13:34 +01001451 /* First check that no commands are left in the ring */
1452 if ((I915_READ_HEAD(engine) & HEAD_ADDR) !=
1453 (I915_READ_TAIL(engine) & TAIL_ADDR))
1454 idle = false;
1455
Chris Wilsona091d4e2017-05-30 13:13:33 +01001456 /* No bit for gen2, so assume the CS parser is idle */
1457 if (INTEL_GEN(dev_priv) > 2 && !(I915_READ_MODE(engine) & MODE_IDLE))
1458 idle = false;
1459
1460 intel_runtime_pm_put(dev_priv);
1461
1462 return idle;
1463}
1464
Chris Wilson54003672017-03-03 12:19:46 +00001465/**
1466 * intel_engine_is_idle() - Report if the engine has finished process all work
1467 * @engine: the intel_engine_cs
1468 *
1469 * Return true if there are no requests pending, nothing left to be submitted
1470 * to hardware, and that the engine is idle.
1471 */
1472bool intel_engine_is_idle(struct intel_engine_cs *engine)
1473{
1474 struct drm_i915_private *dev_priv = engine->i915;
1475
Chris Wilsona8e9a412017-04-11 20:00:42 +01001476 /* More white lies, if wedged, hw state is inconsistent */
1477 if (i915_terminally_wedged(&dev_priv->gpu_error))
1478 return true;
1479
Chris Wilson54003672017-03-03 12:19:46 +00001480 /* Any inflight/incomplete requests? */
1481 if (!i915_seqno_passed(intel_engine_get_seqno(engine),
1482 intel_engine_last_submit(engine)))
1483 return false;
1484
Chris Wilson8968a362017-04-12 00:44:26 +01001485 if (I915_SELFTEST_ONLY(engine->breadcrumbs.mock))
1486 return true;
1487
Chris Wilson54003672017-03-03 12:19:46 +00001488 /* Interrupt/tasklet pending? */
1489 if (test_bit(ENGINE_IRQ_EXECLIST, &engine->irq_posted))
1490 return false;
1491
Chris Wilson4a118ec2017-10-23 22:32:36 +01001492 /* Waiting to drain ELSP? */
1493 if (READ_ONCE(engine->execlists.active))
Chris Wilson54003672017-03-03 12:19:46 +00001494 return false;
1495
Chris Wilsond6edb6e2017-07-21 13:32:24 +01001496 /* ELSP is empty, but there are ready requests? */
Mika Kuoppalab620e872017-09-22 15:43:03 +03001497 if (READ_ONCE(engine->execlists.first))
Chris Wilsond6edb6e2017-07-21 13:32:24 +01001498 return false;
1499
Chris Wilson54003672017-03-03 12:19:46 +00001500 /* Ring stopped? */
Chris Wilsona091d4e2017-05-30 13:13:33 +01001501 if (!ring_is_idle(engine))
Chris Wilson54003672017-03-03 12:19:46 +00001502 return false;
1503
1504 return true;
1505}
1506
Chris Wilson05425242017-03-03 12:19:47 +00001507bool intel_engines_are_idle(struct drm_i915_private *dev_priv)
1508{
1509 struct intel_engine_cs *engine;
1510 enum intel_engine_id id;
1511
Chris Wilson8490ae202017-03-30 15:50:37 +01001512 if (READ_ONCE(dev_priv->gt.active_requests))
1513 return false;
1514
1515 /* If the driver is wedged, HW state may be very inconsistent and
1516 * report that it is still busy, even though we have stopped using it.
1517 */
1518 if (i915_terminally_wedged(&dev_priv->gpu_error))
1519 return true;
1520
Chris Wilson05425242017-03-03 12:19:47 +00001521 for_each_engine(engine, dev_priv, id) {
1522 if (!intel_engine_is_idle(engine))
1523 return false;
1524 }
1525
1526 return true;
1527}
1528
Chris Wilsonae6c4572017-11-10 14:26:28 +00001529/**
1530 * intel_engine_has_kernel_context:
1531 * @engine: the engine
1532 *
1533 * Returns true if the last context to be executed on this engine, or has been
1534 * executed if the engine is already idle, is the kernel context
1535 * (#i915.kernel_context).
1536 */
Chris Wilson20ccd4d2017-10-24 23:08:55 +01001537bool intel_engine_has_kernel_context(const struct intel_engine_cs *engine)
1538{
Chris Wilsonae6c4572017-11-10 14:26:28 +00001539 const struct i915_gem_context * const kernel_context =
1540 engine->i915->kernel_context;
1541 struct drm_i915_gem_request *rq;
1542
1543 lockdep_assert_held(&engine->i915->drm.struct_mutex);
1544
1545 /*
1546 * Check the last context seen by the engine. If active, it will be
1547 * the last request that remains in the timeline. When idle, it is
1548 * the last executed context as tracked by retirement.
1549 */
1550 rq = __i915_gem_active_peek(&engine->timeline->last_request);
1551 if (rq)
1552 return rq->ctx == kernel_context;
1553 else
1554 return engine->last_retired_context == kernel_context;
Chris Wilson20ccd4d2017-10-24 23:08:55 +01001555}
1556
Chris Wilsonff44ad52017-03-16 17:13:03 +00001557void intel_engines_reset_default_submission(struct drm_i915_private *i915)
1558{
1559 struct intel_engine_cs *engine;
1560 enum intel_engine_id id;
1561
1562 for_each_engine(engine, i915, id)
1563 engine->set_default_submission(engine);
1564}
1565
Chris Wilsonaba5e272017-10-25 15:39:41 +01001566/**
1567 * intel_engines_park: called when the GT is transitioning from busy->idle
1568 * @i915: the i915 device
1569 *
1570 * The GT is now idle and about to go to sleep (maybe never to wake again?).
1571 * Time for us to tidy and put away our toys (release resources back to the
1572 * system).
1573 */
1574void intel_engines_park(struct drm_i915_private *i915)
Chris Wilson6c067572017-05-17 13:10:03 +01001575{
1576 struct intel_engine_cs *engine;
1577 enum intel_engine_id id;
1578
1579 for_each_engine(engine, i915, id) {
Chris Wilson820c5bb2017-11-01 20:21:49 +00001580 /* Flush the residual irq tasklets first. */
1581 intel_engine_disarm_breadcrumbs(engine);
Sagar Arun Kamblec6dce8f2017-11-16 19:02:37 +05301582 tasklet_kill(&engine->execlists.tasklet);
Chris Wilson820c5bb2017-11-01 20:21:49 +00001583
Chris Wilson32651242017-10-27 12:06:17 +01001584 /*
1585 * We are committed now to parking the engines, make sure there
1586 * will be no more interrupts arriving later and the engines
1587 * are truly idle.
1588 */
Chris Wilson30b29402017-11-10 11:25:50 +00001589 if (wait_for(intel_engine_is_idle(engine), 10)) {
Chris Wilson32651242017-10-27 12:06:17 +01001590 struct drm_printer p = drm_debug_printer(__func__);
1591
Chris Wilson30b29402017-11-10 11:25:50 +00001592 dev_err(i915->drm.dev,
1593 "%s is not idle before parking\n",
1594 engine->name);
Chris Wilson32651242017-10-27 12:06:17 +01001595 intel_engine_dump(engine, &p);
1596 }
1597
Chris Wilsonaba5e272017-10-25 15:39:41 +01001598 if (engine->park)
1599 engine->park(engine);
1600
Chris Wilsonaba5e272017-10-25 15:39:41 +01001601 i915_gem_batch_pool_fini(&engine->batch_pool);
Mika Kuoppalab620e872017-09-22 15:43:03 +03001602 engine->execlists.no_priolist = false;
Chris Wilson6c067572017-05-17 13:10:03 +01001603 }
1604}
1605
Chris Wilsonaba5e272017-10-25 15:39:41 +01001606/**
1607 * intel_engines_unpark: called when the GT is transitioning from idle->busy
1608 * @i915: the i915 device
1609 *
1610 * The GT was idle and now about to fire up with some new user requests.
1611 */
1612void intel_engines_unpark(struct drm_i915_private *i915)
1613{
1614 struct intel_engine_cs *engine;
1615 enum intel_engine_id id;
1616
1617 for_each_engine(engine, i915, id) {
1618 if (engine->unpark)
1619 engine->unpark(engine);
1620 }
1621}
1622
Chris Wilson90cad092017-09-06 16:28:59 +01001623bool intel_engine_can_store_dword(struct intel_engine_cs *engine)
1624{
1625 switch (INTEL_GEN(engine->i915)) {
1626 case 2:
1627 return false; /* uses physical not virtual addresses */
1628 case 3:
1629 /* maybe only uses physical not virtual addresses */
1630 return !(IS_I915G(engine->i915) || IS_I915GM(engine->i915));
1631 case 6:
1632 return engine->class != VIDEO_DECODE_CLASS; /* b0rked */
1633 default:
1634 return true;
1635 }
1636}
1637
Chris Wilsond2b4b972017-11-10 14:26:33 +00001638unsigned int intel_engines_has_context_isolation(struct drm_i915_private *i915)
1639{
1640 struct intel_engine_cs *engine;
1641 enum intel_engine_id id;
1642 unsigned int which;
1643
1644 which = 0;
1645 for_each_engine(engine, i915, id)
1646 if (engine->default_state)
1647 which |= BIT(engine->uabi_class);
1648
1649 return which;
1650}
1651
Chris Wilsonf636edb2017-10-09 12:02:57 +01001652static void print_request(struct drm_printer *m,
1653 struct drm_i915_gem_request *rq,
1654 const char *prefix)
1655{
Chris Wilsona27d5a42017-10-15 21:43:10 +01001656 drm_printf(m, "%s%x%s [%x:%x] prio=%d @ %dms: %s\n", prefix,
1657 rq->global_seqno,
1658 i915_gem_request_completed(rq) ? "!" : "",
1659 rq->ctx->hw_id, rq->fence.seqno,
Chris Wilsonf636edb2017-10-09 12:02:57 +01001660 rq->priotree.priority,
1661 jiffies_to_msecs(jiffies - rq->emitted_jiffies),
1662 rq->timeline->common->name);
1663}
1664
1665void intel_engine_dump(struct intel_engine_cs *engine, struct drm_printer *m)
1666{
Chris Wilsona27d5a42017-10-15 21:43:10 +01001667 struct intel_breadcrumbs * const b = &engine->breadcrumbs;
1668 const struct intel_engine_execlists * const execlists = &engine->execlists;
1669 struct i915_gpu_error * const error = &engine->i915->gpu_error;
Chris Wilsonf636edb2017-10-09 12:02:57 +01001670 struct drm_i915_private *dev_priv = engine->i915;
1671 struct drm_i915_gem_request *rq;
1672 struct rb_node *rb;
1673 u64 addr;
1674
1675 drm_printf(m, "%s\n", engine->name);
1676 drm_printf(m, "\tcurrent seqno %x, last %x, hangcheck %x [%d ms], inflight %d\n",
1677 intel_engine_get_seqno(engine),
1678 intel_engine_last_submit(engine),
1679 engine->hangcheck.seqno,
1680 jiffies_to_msecs(jiffies - engine->hangcheck.action_timestamp),
1681 engine->timeline->inflight_seqnos);
1682 drm_printf(m, "\tReset count: %d\n",
1683 i915_reset_engine_count(error, engine));
1684
1685 rcu_read_lock();
1686
1687 drm_printf(m, "\tRequests:\n");
1688
1689 rq = list_first_entry(&engine->timeline->requests,
1690 struct drm_i915_gem_request, link);
1691 if (&rq->link != &engine->timeline->requests)
1692 print_request(m, rq, "\t\tfirst ");
1693
1694 rq = list_last_entry(&engine->timeline->requests,
1695 struct drm_i915_gem_request, link);
1696 if (&rq->link != &engine->timeline->requests)
1697 print_request(m, rq, "\t\tlast ");
1698
1699 rq = i915_gem_find_active_request(engine);
1700 if (rq) {
1701 print_request(m, rq, "\t\tactive ");
1702 drm_printf(m,
1703 "\t\t[head %04x, postfix %04x, tail %04x, batch 0x%08x_%08x]\n",
1704 rq->head, rq->postfix, rq->tail,
1705 rq->batch ? upper_32_bits(rq->batch->node.start) : ~0u,
1706 rq->batch ? lower_32_bits(rq->batch->node.start) : ~0u);
1707 }
1708
1709 drm_printf(m, "\tRING_START: 0x%08x [0x%08x]\n",
1710 I915_READ(RING_START(engine->mmio_base)),
1711 rq ? i915_ggtt_offset(rq->ring->vma) : 0);
1712 drm_printf(m, "\tRING_HEAD: 0x%08x [0x%08x]\n",
1713 I915_READ(RING_HEAD(engine->mmio_base)) & HEAD_ADDR,
1714 rq ? rq->ring->head : 0);
1715 drm_printf(m, "\tRING_TAIL: 0x%08x [0x%08x]\n",
1716 I915_READ(RING_TAIL(engine->mmio_base)) & TAIL_ADDR,
1717 rq ? rq->ring->tail : 0);
Chris Wilson3c75de52017-10-26 12:50:48 +01001718 drm_printf(m, "\tRING_CTL: 0x%08x%s\n",
Chris Wilsonf636edb2017-10-09 12:02:57 +01001719 I915_READ(RING_CTL(engine->mmio_base)),
Chris Wilson3c75de52017-10-26 12:50:48 +01001720 I915_READ(RING_CTL(engine->mmio_base)) & (RING_WAIT | RING_WAIT_SEMAPHORE) ? " [waiting]" : "");
1721 if (INTEL_GEN(engine->i915) > 2) {
1722 drm_printf(m, "\tRING_MODE: 0x%08x%s\n",
1723 I915_READ(RING_MI_MODE(engine->mmio_base)),
1724 I915_READ(RING_MI_MODE(engine->mmio_base)) & (MODE_IDLE) ? " [idle]" : "");
1725 }
Chris Wilson93c6e962017-11-20 20:55:04 +00001726 if (HAS_LEGACY_SEMAPHORES(dev_priv)) {
Chris Wilsonaf9ff6c2017-11-20 20:55:03 +00001727 drm_printf(m, "\tSYNC_0: 0x%08x\n",
1728 I915_READ(RING_SYNC_0(engine->mmio_base)));
1729 drm_printf(m, "\tSYNC_1: 0x%08x\n",
1730 I915_READ(RING_SYNC_1(engine->mmio_base)));
1731 if (HAS_VEBOX(dev_priv))
1732 drm_printf(m, "\tSYNC_2: 0x%08x\n",
1733 I915_READ(RING_SYNC_2(engine->mmio_base)));
1734 }
Chris Wilsonf636edb2017-10-09 12:02:57 +01001735
1736 rcu_read_unlock();
1737
1738 addr = intel_engine_get_active_head(engine);
1739 drm_printf(m, "\tACTHD: 0x%08x_%08x\n",
1740 upper_32_bits(addr), lower_32_bits(addr));
1741 addr = intel_engine_get_last_batch_head(engine);
1742 drm_printf(m, "\tBBADDR: 0x%08x_%08x\n",
1743 upper_32_bits(addr), lower_32_bits(addr));
1744
Chris Wilsonfb5c5512017-11-20 20:55:00 +00001745 if (HAS_EXECLISTS(dev_priv)) {
Chris Wilsonf636edb2017-10-09 12:02:57 +01001746 const u32 *hws = &engine->status_page.page_addr[I915_HWS_CSB_BUF0_INDEX];
Chris Wilsonf636edb2017-10-09 12:02:57 +01001747 u32 ptr, read, write;
1748 unsigned int idx;
1749
1750 drm_printf(m, "\tExeclist status: 0x%08x %08x\n",
1751 I915_READ(RING_EXECLIST_STATUS_LO(engine)),
1752 I915_READ(RING_EXECLIST_STATUS_HI(engine)));
1753
1754 ptr = I915_READ(RING_CONTEXT_STATUS_PTR(engine));
1755 read = GEN8_CSB_READ_PTR(ptr);
1756 write = GEN8_CSB_WRITE_PTR(ptr);
1757 drm_printf(m, "\tExeclist CSB read %d [%d cached], write %d [%d from hws], interrupt posted? %s\n",
1758 read, execlists->csb_head,
1759 write,
1760 intel_read_status_page(engine, intel_hws_csb_write_index(engine->i915)),
1761 yesno(test_bit(ENGINE_IRQ_EXECLIST,
1762 &engine->irq_posted)));
1763 if (read >= GEN8_CSB_ENTRIES)
1764 read = 0;
1765 if (write >= GEN8_CSB_ENTRIES)
1766 write = 0;
1767 if (read > write)
1768 write += GEN8_CSB_ENTRIES;
1769 while (read < write) {
1770 idx = ++read % GEN8_CSB_ENTRIES;
1771 drm_printf(m, "\tExeclist CSB[%d]: 0x%08x [0x%08x in hwsp], context: %d [%d in hwsp]\n",
1772 idx,
1773 I915_READ(RING_CONTEXT_STATUS_BUF_LO(engine, idx)),
1774 hws[idx * 2],
1775 I915_READ(RING_CONTEXT_STATUS_BUF_HI(engine, idx)),
1776 hws[idx * 2 + 1]);
1777 }
1778
1779 rcu_read_lock();
1780 for (idx = 0; idx < execlists_num_ports(execlists); idx++) {
1781 unsigned int count;
1782
1783 rq = port_unpack(&execlists->port[idx], &count);
1784 if (rq) {
1785 drm_printf(m, "\t\tELSP[%d] count=%d, ",
1786 idx, count);
1787 print_request(m, rq, "rq: ");
1788 } else {
1789 drm_printf(m, "\t\tELSP[%d] idle\n",
1790 idx);
1791 }
1792 }
Chris Wilson4a118ec2017-10-23 22:32:36 +01001793 drm_printf(m, "\t\tHW active? 0x%x\n", execlists->active);
Chris Wilsonf636edb2017-10-09 12:02:57 +01001794 rcu_read_unlock();
Chris Wilsonf636edb2017-10-09 12:02:57 +01001795 } else if (INTEL_GEN(dev_priv) > 6) {
1796 drm_printf(m, "\tPP_DIR_BASE: 0x%08x\n",
1797 I915_READ(RING_PP_DIR_BASE(engine)));
1798 drm_printf(m, "\tPP_DIR_BASE_READ: 0x%08x\n",
1799 I915_READ(RING_PP_DIR_BASE_READ(engine)));
1800 drm_printf(m, "\tPP_DIR_DCLV: 0x%08x\n",
1801 I915_READ(RING_PP_DIR_DCLV(engine)));
1802 }
1803
Chris Wilsona27d5a42017-10-15 21:43:10 +01001804 spin_lock_irq(&engine->timeline->lock);
1805 list_for_each_entry(rq, &engine->timeline->requests, link)
1806 print_request(m, rq, "\t\tE ");
1807 for (rb = execlists->first; rb; rb = rb_next(rb)) {
1808 struct i915_priolist *p =
1809 rb_entry(rb, typeof(*p), node);
1810
1811 list_for_each_entry(rq, &p->requests, priotree.link)
1812 print_request(m, rq, "\t\tQ ");
1813 }
1814 spin_unlock_irq(&engine->timeline->lock);
1815
Chris Wilsonf636edb2017-10-09 12:02:57 +01001816 spin_lock_irq(&b->rb_lock);
1817 for (rb = rb_first(&b->waiters); rb; rb = rb_next(rb)) {
1818 struct intel_wait *w = rb_entry(rb, typeof(*w), node);
1819
1820 drm_printf(m, "\t%s [%d] waiting for %x\n",
1821 w->tsk->comm, w->tsk->pid, w->seqno);
1822 }
1823 spin_unlock_irq(&b->rb_lock);
1824
Chris Wilsonc400cc22017-11-07 15:22:11 +00001825 drm_printf(m, "Idle? %s\n", yesno(intel_engine_is_idle(engine)));
Chris Wilsonf636edb2017-10-09 12:02:57 +01001826 drm_printf(m, "\n");
1827}
1828
Tvrtko Ursulinb46a33e2017-11-21 18:18:45 +00001829static u8 user_class_map[] = {
1830 [I915_ENGINE_CLASS_RENDER] = RENDER_CLASS,
1831 [I915_ENGINE_CLASS_COPY] = COPY_ENGINE_CLASS,
1832 [I915_ENGINE_CLASS_VIDEO] = VIDEO_DECODE_CLASS,
1833 [I915_ENGINE_CLASS_VIDEO_ENHANCE] = VIDEO_ENHANCEMENT_CLASS,
1834};
1835
1836struct intel_engine_cs *
1837intel_engine_lookup_user(struct drm_i915_private *i915, u8 class, u8 instance)
1838{
1839 if (class >= ARRAY_SIZE(user_class_map))
1840 return NULL;
1841
1842 class = user_class_map[class];
1843
1844 GEM_BUG_ON(class > MAX_ENGINE_CLASS);
1845
1846 if (instance > MAX_ENGINE_INSTANCE)
1847 return NULL;
1848
1849 return i915->engine_class[class][instance];
1850}
1851
Chris Wilsonf97fbf92017-02-13 17:15:14 +00001852#if IS_ENABLED(CONFIG_DRM_I915_SELFTEST)
1853#include "selftests/mock_engine.c"
1854#endif