drm/i915: Add WaInsertDummyPushConstP for bxt and kbl
[deliverable/linux.git] / drivers / gpu / drm / i915 / intel_ringbuffer.c
CommitLineData
62fdfeaf
EA
1/*
2 * Copyright © 2008-2010 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 *
23 * Authors:
24 * Eric Anholt <eric@anholt.net>
25 * Zou Nan hai <nanhai.zou@intel.com>
26 * Xiang Hai hao<haihao.xiang@intel.com>
27 *
28 */
29
a4d8a0fe 30#include <linux/log2.h>
760285e7 31#include <drm/drmP.h>
62fdfeaf 32#include "i915_drv.h"
760285e7 33#include <drm/i915_drm.h>
62fdfeaf 34#include "i915_trace.h"
881f47b6 35#include "intel_drv.h"
62fdfeaf 36
82e104cc 37int __intel_ring_space(int head, int tail, int size)
c7dca47b 38{
4f54741e
DG
39 int space = head - tail;
40 if (space <= 0)
1cf0ba14 41 space += size;
4f54741e 42 return space - I915_RING_FREE_SPACE;
c7dca47b
CW
43}
44
ebd0fd4b
DG
45void intel_ring_update_space(struct intel_ringbuffer *ringbuf)
46{
47 if (ringbuf->last_retired_head != -1) {
48 ringbuf->head = ringbuf->last_retired_head;
49 ringbuf->last_retired_head = -1;
50 }
51
52 ringbuf->space = __intel_ring_space(ringbuf->head & HEAD_ADDR,
53 ringbuf->tail, ringbuf->size);
54}
55
117897f4 56bool intel_engine_stopped(struct intel_engine_cs *engine)
09246732 57{
0bc40be8 58 struct drm_i915_private *dev_priv = engine->dev->dev_private;
666796da 59 return dev_priv->gpu_error.stop_rings & intel_engine_flag(engine);
88b4aa87 60}
09246732 61
0bc40be8 62static void __intel_ring_advance(struct intel_engine_cs *engine)
88b4aa87 63{
0bc40be8 64 struct intel_ringbuffer *ringbuf = engine->buffer;
93b0a4e0 65 ringbuf->tail &= ringbuf->size - 1;
117897f4 66 if (intel_engine_stopped(engine))
09246732 67 return;
0bc40be8 68 engine->write_tail(engine, ringbuf->tail);
09246732
CW
69}
70
b72f3acb 71static int
a84c3ae1 72gen2_render_ring_flush(struct drm_i915_gem_request *req,
46f0f8d1
CW
73 u32 invalidate_domains,
74 u32 flush_domains)
75{
4a570db5 76 struct intel_engine_cs *engine = req->engine;
46f0f8d1
CW
77 u32 cmd;
78 int ret;
79
80 cmd = MI_FLUSH;
31b14c9f 81 if (((invalidate_domains|flush_domains) & I915_GEM_DOMAIN_RENDER) == 0)
46f0f8d1
CW
82 cmd |= MI_NO_WRITE_FLUSH;
83
84 if (invalidate_domains & I915_GEM_DOMAIN_SAMPLER)
85 cmd |= MI_READ_FLUSH;
86
5fb9de1a 87 ret = intel_ring_begin(req, 2);
46f0f8d1
CW
88 if (ret)
89 return ret;
90
e2f80391
TU
91 intel_ring_emit(engine, cmd);
92 intel_ring_emit(engine, MI_NOOP);
93 intel_ring_advance(engine);
46f0f8d1
CW
94
95 return 0;
96}
97
98static int
a84c3ae1 99gen4_render_ring_flush(struct drm_i915_gem_request *req,
46f0f8d1
CW
100 u32 invalidate_domains,
101 u32 flush_domains)
62fdfeaf 102{
4a570db5 103 struct intel_engine_cs *engine = req->engine;
e2f80391 104 struct drm_device *dev = engine->dev;
6f392d54 105 u32 cmd;
b72f3acb 106 int ret;
6f392d54 107
36d527de
CW
108 /*
109 * read/write caches:
110 *
111 * I915_GEM_DOMAIN_RENDER is always invalidated, but is
112 * only flushed if MI_NO_WRITE_FLUSH is unset. On 965, it is
113 * also flushed at 2d versus 3d pipeline switches.
114 *
115 * read-only caches:
116 *
117 * I915_GEM_DOMAIN_SAMPLER is flushed on pre-965 if
118 * MI_READ_FLUSH is set, and is always flushed on 965.
119 *
120 * I915_GEM_DOMAIN_COMMAND may not exist?
121 *
122 * I915_GEM_DOMAIN_INSTRUCTION, which exists on 965, is
123 * invalidated when MI_EXE_FLUSH is set.
124 *
125 * I915_GEM_DOMAIN_VERTEX, which exists on 965, is
126 * invalidated with every MI_FLUSH.
127 *
128 * TLBs:
129 *
130 * On 965, TLBs associated with I915_GEM_DOMAIN_COMMAND
131 * and I915_GEM_DOMAIN_CPU in are invalidated at PTE write and
132 * I915_GEM_DOMAIN_RENDER and I915_GEM_DOMAIN_SAMPLER
133 * are flushed at any MI_FLUSH.
134 */
135
136 cmd = MI_FLUSH | MI_NO_WRITE_FLUSH;
46f0f8d1 137 if ((invalidate_domains|flush_domains) & I915_GEM_DOMAIN_RENDER)
36d527de 138 cmd &= ~MI_NO_WRITE_FLUSH;
36d527de
CW
139 if (invalidate_domains & I915_GEM_DOMAIN_INSTRUCTION)
140 cmd |= MI_EXE_FLUSH;
62fdfeaf 141
36d527de
CW
142 if (invalidate_domains & I915_GEM_DOMAIN_COMMAND &&
143 (IS_G4X(dev) || IS_GEN5(dev)))
144 cmd |= MI_INVALIDATE_ISP;
70eac33e 145
5fb9de1a 146 ret = intel_ring_begin(req, 2);
36d527de
CW
147 if (ret)
148 return ret;
b72f3acb 149
e2f80391
TU
150 intel_ring_emit(engine, cmd);
151 intel_ring_emit(engine, MI_NOOP);
152 intel_ring_advance(engine);
b72f3acb
CW
153
154 return 0;
8187a2b7
ZN
155}
156
8d315287
JB
157/**
158 * Emits a PIPE_CONTROL with a non-zero post-sync operation, for
159 * implementing two workarounds on gen6. From section 1.4.7.1
160 * "PIPE_CONTROL" of the Sandy Bridge PRM volume 2 part 1:
161 *
162 * [DevSNB-C+{W/A}] Before any depth stall flush (including those
163 * produced by non-pipelined state commands), software needs to first
164 * send a PIPE_CONTROL with no bits set except Post-Sync Operation !=
165 * 0.
166 *
167 * [Dev-SNB{W/A}]: Before a PIPE_CONTROL with Write Cache Flush Enable
168 * =1, a PIPE_CONTROL with any non-zero post-sync-op is required.
169 *
170 * And the workaround for these two requires this workaround first:
171 *
172 * [Dev-SNB{W/A}]: Pipe-control with CS-stall bit set must be sent
173 * BEFORE the pipe-control with a post-sync op and no write-cache
174 * flushes.
175 *
176 * And this last workaround is tricky because of the requirements on
177 * that bit. From section 1.4.7.2.3 "Stall" of the Sandy Bridge PRM
178 * volume 2 part 1:
179 *
180 * "1 of the following must also be set:
181 * - Render Target Cache Flush Enable ([12] of DW1)
182 * - Depth Cache Flush Enable ([0] of DW1)
183 * - Stall at Pixel Scoreboard ([1] of DW1)
184 * - Depth Stall ([13] of DW1)
185 * - Post-Sync Operation ([13] of DW1)
186 * - Notify Enable ([8] of DW1)"
187 *
188 * The cache flushes require the workaround flush that triggered this
189 * one, so we can't use it. Depth stall would trigger the same.
190 * Post-sync nonzero is what triggered this second workaround, so we
191 * can't use that one either. Notify enable is IRQs, which aren't
192 * really our business. That leaves only stall at scoreboard.
193 */
194static int
f2cf1fcc 195intel_emit_post_sync_nonzero_flush(struct drm_i915_gem_request *req)
8d315287 196{
4a570db5 197 struct intel_engine_cs *engine = req->engine;
e2f80391 198 u32 scratch_addr = engine->scratch.gtt_offset + 2 * CACHELINE_BYTES;
8d315287
JB
199 int ret;
200
5fb9de1a 201 ret = intel_ring_begin(req, 6);
8d315287
JB
202 if (ret)
203 return ret;
204
e2f80391
TU
205 intel_ring_emit(engine, GFX_OP_PIPE_CONTROL(5));
206 intel_ring_emit(engine, PIPE_CONTROL_CS_STALL |
8d315287 207 PIPE_CONTROL_STALL_AT_SCOREBOARD);
e2f80391
TU
208 intel_ring_emit(engine, scratch_addr | PIPE_CONTROL_GLOBAL_GTT); /* address */
209 intel_ring_emit(engine, 0); /* low dword */
210 intel_ring_emit(engine, 0); /* high dword */
211 intel_ring_emit(engine, MI_NOOP);
212 intel_ring_advance(engine);
8d315287 213
5fb9de1a 214 ret = intel_ring_begin(req, 6);
8d315287
JB
215 if (ret)
216 return ret;
217
e2f80391
TU
218 intel_ring_emit(engine, GFX_OP_PIPE_CONTROL(5));
219 intel_ring_emit(engine, PIPE_CONTROL_QW_WRITE);
220 intel_ring_emit(engine, scratch_addr | PIPE_CONTROL_GLOBAL_GTT); /* address */
221 intel_ring_emit(engine, 0);
222 intel_ring_emit(engine, 0);
223 intel_ring_emit(engine, MI_NOOP);
224 intel_ring_advance(engine);
8d315287
JB
225
226 return 0;
227}
228
229static int
a84c3ae1
JH
230gen6_render_ring_flush(struct drm_i915_gem_request *req,
231 u32 invalidate_domains, u32 flush_domains)
8d315287 232{
4a570db5 233 struct intel_engine_cs *engine = req->engine;
8d315287 234 u32 flags = 0;
e2f80391 235 u32 scratch_addr = engine->scratch.gtt_offset + 2 * CACHELINE_BYTES;
8d315287
JB
236 int ret;
237
b3111509 238 /* Force SNB workarounds for PIPE_CONTROL flushes */
f2cf1fcc 239 ret = intel_emit_post_sync_nonzero_flush(req);
b3111509
PZ
240 if (ret)
241 return ret;
242
8d315287
JB
243 /* Just flush everything. Experiments have shown that reducing the
244 * number of bits based on the write domains has little performance
245 * impact.
246 */
7d54a904
CW
247 if (flush_domains) {
248 flags |= PIPE_CONTROL_RENDER_TARGET_CACHE_FLUSH;
249 flags |= PIPE_CONTROL_DEPTH_CACHE_FLUSH;
250 /*
251 * Ensure that any following seqno writes only happen
252 * when the render cache is indeed flushed.
253 */
97f209bc 254 flags |= PIPE_CONTROL_CS_STALL;
7d54a904
CW
255 }
256 if (invalidate_domains) {
257 flags |= PIPE_CONTROL_TLB_INVALIDATE;
258 flags |= PIPE_CONTROL_INSTRUCTION_CACHE_INVALIDATE;
259 flags |= PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE;
260 flags |= PIPE_CONTROL_VF_CACHE_INVALIDATE;
261 flags |= PIPE_CONTROL_CONST_CACHE_INVALIDATE;
262 flags |= PIPE_CONTROL_STATE_CACHE_INVALIDATE;
263 /*
264 * TLB invalidate requires a post-sync write.
265 */
3ac78313 266 flags |= PIPE_CONTROL_QW_WRITE | PIPE_CONTROL_CS_STALL;
7d54a904 267 }
8d315287 268
5fb9de1a 269 ret = intel_ring_begin(req, 4);
8d315287
JB
270 if (ret)
271 return ret;
272
e2f80391
TU
273 intel_ring_emit(engine, GFX_OP_PIPE_CONTROL(4));
274 intel_ring_emit(engine, flags);
275 intel_ring_emit(engine, scratch_addr | PIPE_CONTROL_GLOBAL_GTT);
276 intel_ring_emit(engine, 0);
277 intel_ring_advance(engine);
8d315287
JB
278
279 return 0;
280}
281
f3987631 282static int
f2cf1fcc 283gen7_render_ring_cs_stall_wa(struct drm_i915_gem_request *req)
f3987631 284{
4a570db5 285 struct intel_engine_cs *engine = req->engine;
f3987631
PZ
286 int ret;
287
5fb9de1a 288 ret = intel_ring_begin(req, 4);
f3987631
PZ
289 if (ret)
290 return ret;
291
e2f80391
TU
292 intel_ring_emit(engine, GFX_OP_PIPE_CONTROL(4));
293 intel_ring_emit(engine, PIPE_CONTROL_CS_STALL |
f3987631 294 PIPE_CONTROL_STALL_AT_SCOREBOARD);
e2f80391
TU
295 intel_ring_emit(engine, 0);
296 intel_ring_emit(engine, 0);
297 intel_ring_advance(engine);
f3987631
PZ
298
299 return 0;
300}
301
4772eaeb 302static int
a84c3ae1 303gen7_render_ring_flush(struct drm_i915_gem_request *req,
4772eaeb
PZ
304 u32 invalidate_domains, u32 flush_domains)
305{
4a570db5 306 struct intel_engine_cs *engine = req->engine;
4772eaeb 307 u32 flags = 0;
e2f80391 308 u32 scratch_addr = engine->scratch.gtt_offset + 2 * CACHELINE_BYTES;
4772eaeb
PZ
309 int ret;
310
f3987631
PZ
311 /*
312 * Ensure that any following seqno writes only happen when the render
313 * cache is indeed flushed.
314 *
315 * Workaround: 4th PIPE_CONTROL command (except the ones with only
316 * read-cache invalidate bits set) must have the CS_STALL bit set. We
317 * don't try to be clever and just set it unconditionally.
318 */
319 flags |= PIPE_CONTROL_CS_STALL;
320
4772eaeb
PZ
321 /* Just flush everything. Experiments have shown that reducing the
322 * number of bits based on the write domains has little performance
323 * impact.
324 */
325 if (flush_domains) {
326 flags |= PIPE_CONTROL_RENDER_TARGET_CACHE_FLUSH;
327 flags |= PIPE_CONTROL_DEPTH_CACHE_FLUSH;
965fd602 328 flags |= PIPE_CONTROL_DC_FLUSH_ENABLE;
40a24488 329 flags |= PIPE_CONTROL_FLUSH_ENABLE;
4772eaeb
PZ
330 }
331 if (invalidate_domains) {
332 flags |= PIPE_CONTROL_TLB_INVALIDATE;
333 flags |= PIPE_CONTROL_INSTRUCTION_CACHE_INVALIDATE;
334 flags |= PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE;
335 flags |= PIPE_CONTROL_VF_CACHE_INVALIDATE;
336 flags |= PIPE_CONTROL_CONST_CACHE_INVALIDATE;
337 flags |= PIPE_CONTROL_STATE_CACHE_INVALIDATE;
148b83d0 338 flags |= PIPE_CONTROL_MEDIA_STATE_CLEAR;
4772eaeb
PZ
339 /*
340 * TLB invalidate requires a post-sync write.
341 */
342 flags |= PIPE_CONTROL_QW_WRITE;
b9e1faa7 343 flags |= PIPE_CONTROL_GLOBAL_GTT_IVB;
f3987631 344
add284a3
CW
345 flags |= PIPE_CONTROL_STALL_AT_SCOREBOARD;
346
f3987631
PZ
347 /* Workaround: we must issue a pipe_control with CS-stall bit
348 * set before a pipe_control command that has the state cache
349 * invalidate bit set. */
f2cf1fcc 350 gen7_render_ring_cs_stall_wa(req);
4772eaeb
PZ
351 }
352
5fb9de1a 353 ret = intel_ring_begin(req, 4);
4772eaeb
PZ
354 if (ret)
355 return ret;
356
e2f80391
TU
357 intel_ring_emit(engine, GFX_OP_PIPE_CONTROL(4));
358 intel_ring_emit(engine, flags);
359 intel_ring_emit(engine, scratch_addr);
360 intel_ring_emit(engine, 0);
361 intel_ring_advance(engine);
4772eaeb
PZ
362
363 return 0;
364}
365
884ceace 366static int
f2cf1fcc 367gen8_emit_pipe_control(struct drm_i915_gem_request *req,
884ceace
KG
368 u32 flags, u32 scratch_addr)
369{
4a570db5 370 struct intel_engine_cs *engine = req->engine;
884ceace
KG
371 int ret;
372
5fb9de1a 373 ret = intel_ring_begin(req, 6);
884ceace
KG
374 if (ret)
375 return ret;
376
e2f80391
TU
377 intel_ring_emit(engine, GFX_OP_PIPE_CONTROL(6));
378 intel_ring_emit(engine, flags);
379 intel_ring_emit(engine, scratch_addr);
380 intel_ring_emit(engine, 0);
381 intel_ring_emit(engine, 0);
382 intel_ring_emit(engine, 0);
383 intel_ring_advance(engine);
884ceace
KG
384
385 return 0;
386}
387
a5f3d68e 388static int
a84c3ae1 389gen8_render_ring_flush(struct drm_i915_gem_request *req,
a5f3d68e
BW
390 u32 invalidate_domains, u32 flush_domains)
391{
392 u32 flags = 0;
4a570db5 393 u32 scratch_addr = req->engine->scratch.gtt_offset + 2 * CACHELINE_BYTES;
02c9f7e3 394 int ret;
a5f3d68e
BW
395
396 flags |= PIPE_CONTROL_CS_STALL;
397
398 if (flush_domains) {
399 flags |= PIPE_CONTROL_RENDER_TARGET_CACHE_FLUSH;
400 flags |= PIPE_CONTROL_DEPTH_CACHE_FLUSH;
965fd602 401 flags |= PIPE_CONTROL_DC_FLUSH_ENABLE;
40a24488 402 flags |= PIPE_CONTROL_FLUSH_ENABLE;
a5f3d68e
BW
403 }
404 if (invalidate_domains) {
405 flags |= PIPE_CONTROL_TLB_INVALIDATE;
406 flags |= PIPE_CONTROL_INSTRUCTION_CACHE_INVALIDATE;
407 flags |= PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE;
408 flags |= PIPE_CONTROL_VF_CACHE_INVALIDATE;
409 flags |= PIPE_CONTROL_CONST_CACHE_INVALIDATE;
410 flags |= PIPE_CONTROL_STATE_CACHE_INVALIDATE;
411 flags |= PIPE_CONTROL_QW_WRITE;
412 flags |= PIPE_CONTROL_GLOBAL_GTT_IVB;
02c9f7e3
KG
413
414 /* WaCsStallBeforeStateCacheInvalidate:bdw,chv */
f2cf1fcc 415 ret = gen8_emit_pipe_control(req,
02c9f7e3
KG
416 PIPE_CONTROL_CS_STALL |
417 PIPE_CONTROL_STALL_AT_SCOREBOARD,
418 0);
419 if (ret)
420 return ret;
a5f3d68e
BW
421 }
422
f2cf1fcc 423 return gen8_emit_pipe_control(req, flags, scratch_addr);
a5f3d68e
BW
424}
425
0bc40be8 426static void ring_write_tail(struct intel_engine_cs *engine,
297b0c5b 427 u32 value)
d46eefa2 428{
0bc40be8
TU
429 struct drm_i915_private *dev_priv = engine->dev->dev_private;
430 I915_WRITE_TAIL(engine, value);
d46eefa2
XH
431}
432
0bc40be8 433u64 intel_ring_get_active_head(struct intel_engine_cs *engine)
8187a2b7 434{
0bc40be8 435 struct drm_i915_private *dev_priv = engine->dev->dev_private;
50877445 436 u64 acthd;
8187a2b7 437
0bc40be8
TU
438 if (INTEL_INFO(engine->dev)->gen >= 8)
439 acthd = I915_READ64_2x32(RING_ACTHD(engine->mmio_base),
440 RING_ACTHD_UDW(engine->mmio_base));
441 else if (INTEL_INFO(engine->dev)->gen >= 4)
442 acthd = I915_READ(RING_ACTHD(engine->mmio_base));
50877445
CW
443 else
444 acthd = I915_READ(ACTHD);
445
446 return acthd;
8187a2b7
ZN
447}
448
0bc40be8 449static void ring_setup_phys_status_page(struct intel_engine_cs *engine)
035dc1e0 450{
0bc40be8 451 struct drm_i915_private *dev_priv = engine->dev->dev_private;
035dc1e0
DV
452 u32 addr;
453
454 addr = dev_priv->status_page_dmah->busaddr;
0bc40be8 455 if (INTEL_INFO(engine->dev)->gen >= 4)
035dc1e0
DV
456 addr |= (dev_priv->status_page_dmah->busaddr >> 28) & 0xf0;
457 I915_WRITE(HWS_PGA, addr);
458}
459
0bc40be8 460static void intel_ring_setup_status_page(struct intel_engine_cs *engine)
af75f269 461{
0bc40be8
TU
462 struct drm_device *dev = engine->dev;
463 struct drm_i915_private *dev_priv = engine->dev->dev_private;
f0f59a00 464 i915_reg_t mmio;
af75f269
DL
465
466 /* The ring status page addresses are no longer next to the rest of
467 * the ring registers as of gen7.
468 */
469 if (IS_GEN7(dev)) {
0bc40be8 470 switch (engine->id) {
af75f269
DL
471 case RCS:
472 mmio = RENDER_HWS_PGA_GEN7;
473 break;
474 case BCS:
475 mmio = BLT_HWS_PGA_GEN7;
476 break;
477 /*
478 * VCS2 actually doesn't exist on Gen7. Only shut up
479 * gcc switch check warning
480 */
481 case VCS2:
482 case VCS:
483 mmio = BSD_HWS_PGA_GEN7;
484 break;
485 case VECS:
486 mmio = VEBOX_HWS_PGA_GEN7;
487 break;
488 }
0bc40be8
TU
489 } else if (IS_GEN6(engine->dev)) {
490 mmio = RING_HWS_PGA_GEN6(engine->mmio_base);
af75f269
DL
491 } else {
492 /* XXX: gen8 returns to sanity */
0bc40be8 493 mmio = RING_HWS_PGA(engine->mmio_base);
af75f269
DL
494 }
495
0bc40be8 496 I915_WRITE(mmio, (u32)engine->status_page.gfx_addr);
af75f269
DL
497 POSTING_READ(mmio);
498
499 /*
500 * Flush the TLB for this page
501 *
502 * FIXME: These two bits have disappeared on gen8, so a question
503 * arises: do we still need this and if so how should we go about
504 * invalidating the TLB?
505 */
506 if (INTEL_INFO(dev)->gen >= 6 && INTEL_INFO(dev)->gen < 8) {
0bc40be8 507 i915_reg_t reg = RING_INSTPM(engine->mmio_base);
af75f269
DL
508
509 /* ring should be idle before issuing a sync flush*/
0bc40be8 510 WARN_ON((I915_READ_MODE(engine) & MODE_IDLE) == 0);
af75f269
DL
511
512 I915_WRITE(reg,
513 _MASKED_BIT_ENABLE(INSTPM_TLB_INVALIDATE |
514 INSTPM_SYNC_FLUSH));
515 if (wait_for((I915_READ(reg) & INSTPM_SYNC_FLUSH) == 0,
516 1000))
517 DRM_ERROR("%s: wait for SyncFlush to complete for TLB invalidation timed out\n",
0bc40be8 518 engine->name);
af75f269
DL
519 }
520}
521
0bc40be8 522static bool stop_ring(struct intel_engine_cs *engine)
8187a2b7 523{
0bc40be8 524 struct drm_i915_private *dev_priv = to_i915(engine->dev);
8187a2b7 525
0bc40be8
TU
526 if (!IS_GEN2(engine->dev)) {
527 I915_WRITE_MODE(engine, _MASKED_BIT_ENABLE(STOP_RING));
528 if (wait_for((I915_READ_MODE(engine) & MODE_IDLE) != 0, 1000)) {
529 DRM_ERROR("%s : timed out trying to stop ring\n",
530 engine->name);
9bec9b13
CW
531 /* Sometimes we observe that the idle flag is not
532 * set even though the ring is empty. So double
533 * check before giving up.
534 */
0bc40be8 535 if (I915_READ_HEAD(engine) != I915_READ_TAIL(engine))
9bec9b13 536 return false;
9991ae78
CW
537 }
538 }
b7884eb4 539
0bc40be8
TU
540 I915_WRITE_CTL(engine, 0);
541 I915_WRITE_HEAD(engine, 0);
542 engine->write_tail(engine, 0);
8187a2b7 543
0bc40be8
TU
544 if (!IS_GEN2(engine->dev)) {
545 (void)I915_READ_CTL(engine);
546 I915_WRITE_MODE(engine, _MASKED_BIT_DISABLE(STOP_RING));
9991ae78 547 }
a51435a3 548
0bc40be8 549 return (I915_READ_HEAD(engine) & HEAD_ADDR) == 0;
9991ae78 550}
8187a2b7 551
fc0768ce
TE
552void intel_engine_init_hangcheck(struct intel_engine_cs *engine)
553{
554 memset(&engine->hangcheck, 0, sizeof(engine->hangcheck));
555}
556
0bc40be8 557static int init_ring_common(struct intel_engine_cs *engine)
9991ae78 558{
0bc40be8 559 struct drm_device *dev = engine->dev;
9991ae78 560 struct drm_i915_private *dev_priv = dev->dev_private;
0bc40be8 561 struct intel_ringbuffer *ringbuf = engine->buffer;
93b0a4e0 562 struct drm_i915_gem_object *obj = ringbuf->obj;
9991ae78
CW
563 int ret = 0;
564
59bad947 565 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
9991ae78 566
0bc40be8 567 if (!stop_ring(engine)) {
9991ae78 568 /* G45 ring initialization often fails to reset head to zero */
6fd0d56e
CW
569 DRM_DEBUG_KMS("%s head not reset to zero "
570 "ctl %08x head %08x tail %08x start %08x\n",
0bc40be8
TU
571 engine->name,
572 I915_READ_CTL(engine),
573 I915_READ_HEAD(engine),
574 I915_READ_TAIL(engine),
575 I915_READ_START(engine));
8187a2b7 576
0bc40be8 577 if (!stop_ring(engine)) {
6fd0d56e
CW
578 DRM_ERROR("failed to set %s head to zero "
579 "ctl %08x head %08x tail %08x start %08x\n",
0bc40be8
TU
580 engine->name,
581 I915_READ_CTL(engine),
582 I915_READ_HEAD(engine),
583 I915_READ_TAIL(engine),
584 I915_READ_START(engine));
9991ae78
CW
585 ret = -EIO;
586 goto out;
6fd0d56e 587 }
8187a2b7
ZN
588 }
589
9991ae78 590 if (I915_NEED_GFX_HWS(dev))
0bc40be8 591 intel_ring_setup_status_page(engine);
9991ae78 592 else
0bc40be8 593 ring_setup_phys_status_page(engine);
9991ae78 594
ece4a17d 595 /* Enforce ordering by reading HEAD register back */
0bc40be8 596 I915_READ_HEAD(engine);
ece4a17d 597
0d8957c8
DV
598 /* Initialize the ring. This must happen _after_ we've cleared the ring
599 * registers with the above sequence (the readback of the HEAD registers
600 * also enforces ordering), otherwise the hw might lose the new ring
601 * register values. */
0bc40be8 602 I915_WRITE_START(engine, i915_gem_obj_ggtt_offset(obj));
95468892
CW
603
604 /* WaClearRingBufHeadRegAtInit:ctg,elk */
0bc40be8 605 if (I915_READ_HEAD(engine))
95468892 606 DRM_DEBUG("%s initialization failed [head=%08x], fudging\n",
0bc40be8
TU
607 engine->name, I915_READ_HEAD(engine));
608 I915_WRITE_HEAD(engine, 0);
609 (void)I915_READ_HEAD(engine);
95468892 610
0bc40be8 611 I915_WRITE_CTL(engine,
93b0a4e0 612 ((ringbuf->size - PAGE_SIZE) & RING_NR_PAGES)
5d031e5b 613 | RING_VALID);
8187a2b7 614
8187a2b7 615 /* If the head is still not zero, the ring is dead */
0bc40be8
TU
616 if (wait_for((I915_READ_CTL(engine) & RING_VALID) != 0 &&
617 I915_READ_START(engine) == i915_gem_obj_ggtt_offset(obj) &&
618 (I915_READ_HEAD(engine) & HEAD_ADDR) == 0, 50)) {
e74cfed5 619 DRM_ERROR("%s initialization failed "
48e48a0b 620 "ctl %08x (valid? %d) head %08x tail %08x start %08x [expected %08lx]\n",
0bc40be8
TU
621 engine->name,
622 I915_READ_CTL(engine),
623 I915_READ_CTL(engine) & RING_VALID,
624 I915_READ_HEAD(engine), I915_READ_TAIL(engine),
625 I915_READ_START(engine),
626 (unsigned long)i915_gem_obj_ggtt_offset(obj));
b7884eb4
DV
627 ret = -EIO;
628 goto out;
8187a2b7
ZN
629 }
630
ebd0fd4b 631 ringbuf->last_retired_head = -1;
0bc40be8
TU
632 ringbuf->head = I915_READ_HEAD(engine);
633 ringbuf->tail = I915_READ_TAIL(engine) & TAIL_ADDR;
ebd0fd4b 634 intel_ring_update_space(ringbuf);
1ec14ad3 635
fc0768ce 636 intel_engine_init_hangcheck(engine);
50f018df 637
b7884eb4 638out:
59bad947 639 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
b7884eb4
DV
640
641 return ret;
8187a2b7
ZN
642}
643
9b1136d5 644void
0bc40be8 645intel_fini_pipe_control(struct intel_engine_cs *engine)
9b1136d5 646{
0bc40be8 647 struct drm_device *dev = engine->dev;
9b1136d5 648
0bc40be8 649 if (engine->scratch.obj == NULL)
9b1136d5
OM
650 return;
651
652 if (INTEL_INFO(dev)->gen >= 5) {
0bc40be8
TU
653 kunmap(sg_page(engine->scratch.obj->pages->sgl));
654 i915_gem_object_ggtt_unpin(engine->scratch.obj);
9b1136d5
OM
655 }
656
0bc40be8
TU
657 drm_gem_object_unreference(&engine->scratch.obj->base);
658 engine->scratch.obj = NULL;
9b1136d5
OM
659}
660
661int
0bc40be8 662intel_init_pipe_control(struct intel_engine_cs *engine)
c6df541c 663{
c6df541c
CW
664 int ret;
665
0bc40be8 666 WARN_ON(engine->scratch.obj);
c6df541c 667
0bc40be8
TU
668 engine->scratch.obj = i915_gem_alloc_object(engine->dev, 4096);
669 if (engine->scratch.obj == NULL) {
c6df541c
CW
670 DRM_ERROR("Failed to allocate seqno page\n");
671 ret = -ENOMEM;
672 goto err;
673 }
e4ffd173 674
0bc40be8
TU
675 ret = i915_gem_object_set_cache_level(engine->scratch.obj,
676 I915_CACHE_LLC);
a9cc726c
DV
677 if (ret)
678 goto err_unref;
c6df541c 679
0bc40be8 680 ret = i915_gem_obj_ggtt_pin(engine->scratch.obj, 4096, 0);
c6df541c
CW
681 if (ret)
682 goto err_unref;
683
0bc40be8
TU
684 engine->scratch.gtt_offset = i915_gem_obj_ggtt_offset(engine->scratch.obj);
685 engine->scratch.cpu_page = kmap(sg_page(engine->scratch.obj->pages->sgl));
686 if (engine->scratch.cpu_page == NULL) {
56b085a0 687 ret = -ENOMEM;
c6df541c 688 goto err_unpin;
56b085a0 689 }
c6df541c 690
2b1086cc 691 DRM_DEBUG_DRIVER("%s pipe control offset: 0x%08x\n",
0bc40be8 692 engine->name, engine->scratch.gtt_offset);
c6df541c
CW
693 return 0;
694
695err_unpin:
0bc40be8 696 i915_gem_object_ggtt_unpin(engine->scratch.obj);
c6df541c 697err_unref:
0bc40be8 698 drm_gem_object_unreference(&engine->scratch.obj->base);
c6df541c 699err:
c6df541c
CW
700 return ret;
701}
702
e2be4faf 703static int intel_ring_workarounds_emit(struct drm_i915_gem_request *req)
86d7f238 704{
7225342a 705 int ret, i;
4a570db5 706 struct intel_engine_cs *engine = req->engine;
e2f80391 707 struct drm_device *dev = engine->dev;
888b5995 708 struct drm_i915_private *dev_priv = dev->dev_private;
7225342a 709 struct i915_workarounds *w = &dev_priv->workarounds;
888b5995 710
02235808 711 if (w->count == 0)
7225342a 712 return 0;
888b5995 713
e2f80391 714 engine->gpu_caches_dirty = true;
4866d729 715 ret = intel_ring_flush_all_caches(req);
7225342a
MK
716 if (ret)
717 return ret;
888b5995 718
5fb9de1a 719 ret = intel_ring_begin(req, (w->count * 2 + 2));
7225342a
MK
720 if (ret)
721 return ret;
722
e2f80391 723 intel_ring_emit(engine, MI_LOAD_REGISTER_IMM(w->count));
7225342a 724 for (i = 0; i < w->count; i++) {
e2f80391
TU
725 intel_ring_emit_reg(engine, w->reg[i].addr);
726 intel_ring_emit(engine, w->reg[i].value);
7225342a 727 }
e2f80391 728 intel_ring_emit(engine, MI_NOOP);
7225342a 729
e2f80391 730 intel_ring_advance(engine);
7225342a 731
e2f80391 732 engine->gpu_caches_dirty = true;
4866d729 733 ret = intel_ring_flush_all_caches(req);
7225342a
MK
734 if (ret)
735 return ret;
888b5995 736
7225342a 737 DRM_DEBUG_DRIVER("Number of Workarounds emitted: %d\n", w->count);
888b5995 738
7225342a 739 return 0;
86d7f238
AS
740}
741
8753181e 742static int intel_rcs_ctx_init(struct drm_i915_gem_request *req)
8f0e2b9d
DV
743{
744 int ret;
745
e2be4faf 746 ret = intel_ring_workarounds_emit(req);
8f0e2b9d
DV
747 if (ret != 0)
748 return ret;
749
be01363f 750 ret = i915_gem_render_state_init(req);
8f0e2b9d 751 if (ret)
e26e1b97 752 return ret;
8f0e2b9d 753
e26e1b97 754 return 0;
8f0e2b9d
DV
755}
756
7225342a 757static int wa_add(struct drm_i915_private *dev_priv,
f0f59a00
VS
758 i915_reg_t addr,
759 const u32 mask, const u32 val)
7225342a
MK
760{
761 const u32 idx = dev_priv->workarounds.count;
762
763 if (WARN_ON(idx >= I915_MAX_WA_REGS))
764 return -ENOSPC;
765
766 dev_priv->workarounds.reg[idx].addr = addr;
767 dev_priv->workarounds.reg[idx].value = val;
768 dev_priv->workarounds.reg[idx].mask = mask;
769
770 dev_priv->workarounds.count++;
771
772 return 0;
86d7f238
AS
773}
774
ca5a0fbd 775#define WA_REG(addr, mask, val) do { \
cf4b0de6 776 const int r = wa_add(dev_priv, (addr), (mask), (val)); \
7225342a
MK
777 if (r) \
778 return r; \
ca5a0fbd 779 } while (0)
7225342a
MK
780
781#define WA_SET_BIT_MASKED(addr, mask) \
26459343 782 WA_REG(addr, (mask), _MASKED_BIT_ENABLE(mask))
7225342a
MK
783
784#define WA_CLR_BIT_MASKED(addr, mask) \
26459343 785 WA_REG(addr, (mask), _MASKED_BIT_DISABLE(mask))
7225342a 786
98533251 787#define WA_SET_FIELD_MASKED(addr, mask, value) \
cf4b0de6 788 WA_REG(addr, mask, _MASKED_FIELD(mask, value))
7225342a 789
cf4b0de6
DL
790#define WA_SET_BIT(addr, mask) WA_REG(addr, mask, I915_READ(addr) | (mask))
791#define WA_CLR_BIT(addr, mask) WA_REG(addr, mask, I915_READ(addr) & ~(mask))
7225342a 792
cf4b0de6 793#define WA_WRITE(addr, val) WA_REG(addr, 0xffffffff, val)
7225342a 794
0bc40be8
TU
795static int wa_ring_whitelist_reg(struct intel_engine_cs *engine,
796 i915_reg_t reg)
33136b06 797{
0bc40be8 798 struct drm_i915_private *dev_priv = engine->dev->dev_private;
33136b06 799 struct i915_workarounds *wa = &dev_priv->workarounds;
0bc40be8 800 const uint32_t index = wa->hw_whitelist_count[engine->id];
33136b06
AS
801
802 if (WARN_ON(index >= RING_MAX_NONPRIV_SLOTS))
803 return -EINVAL;
804
0bc40be8 805 WA_WRITE(RING_FORCE_TO_NONPRIV(engine->mmio_base, index),
33136b06 806 i915_mmio_reg_offset(reg));
0bc40be8 807 wa->hw_whitelist_count[engine->id]++;
33136b06
AS
808
809 return 0;
810}
811
0bc40be8 812static int gen8_init_workarounds(struct intel_engine_cs *engine)
e9a64ada 813{
0bc40be8 814 struct drm_device *dev = engine->dev;
68c6198b
AS
815 struct drm_i915_private *dev_priv = dev->dev_private;
816
817 WA_SET_BIT_MASKED(INSTPM, INSTPM_FORCE_ORDERING);
e9a64ada 818
717d84d6
AS
819 /* WaDisableAsyncFlipPerfMode:bdw,chv */
820 WA_SET_BIT_MASKED(MI_MODE, ASYNC_FLIP_PERF_DISABLE);
821
d0581194
AS
822 /* WaDisablePartialInstShootdown:bdw,chv */
823 WA_SET_BIT_MASKED(GEN8_ROW_CHICKEN,
824 PARTIAL_INSTRUCTION_SHOOTDOWN_DISABLE);
825
a340af58
AS
826 /* Use Force Non-Coherent whenever executing a 3D context. This is a
827 * workaround for for a possible hang in the unlikely event a TLB
828 * invalidation occurs during a PSD flush.
829 */
830 /* WaForceEnableNonCoherent:bdw,chv */
120f5d28 831 /* WaHdcDisableFetchWhenMasked:bdw,chv */
a340af58 832 WA_SET_BIT_MASKED(HDC_CHICKEN0,
120f5d28 833 HDC_DONOT_FETCH_MEM_WHEN_MASKED |
a340af58
AS
834 HDC_FORCE_NON_COHERENT);
835
6def8fdd
AS
836 /* From the Haswell PRM, Command Reference: Registers, CACHE_MODE_0:
837 * "The Hierarchical Z RAW Stall Optimization allows non-overlapping
838 * polygons in the same 8x4 pixel/sample area to be processed without
839 * stalling waiting for the earlier ones to write to Hierarchical Z
840 * buffer."
841 *
842 * This optimization is off by default for BDW and CHV; turn it on.
843 */
844 WA_CLR_BIT_MASKED(CACHE_MODE_0_GEN7, HIZ_RAW_STALL_OPT_DISABLE);
845
48404636
AS
846 /* Wa4x4STCOptimizationDisable:bdw,chv */
847 WA_SET_BIT_MASKED(CACHE_MODE_1, GEN8_4x4_STC_OPTIMIZATION_DISABLE);
848
7eebcde6
AS
849 /*
850 * BSpec recommends 8x4 when MSAA is used,
851 * however in practice 16x4 seems fastest.
852 *
853 * Note that PS/WM thread counts depend on the WIZ hashing
854 * disable bit, which we don't touch here, but it's good
855 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
856 */
857 WA_SET_FIELD_MASKED(GEN7_GT_MODE,
858 GEN6_WIZ_HASHING_MASK,
859 GEN6_WIZ_HASHING_16x4);
860
e9a64ada
AS
861 return 0;
862}
863
0bc40be8 864static int bdw_init_workarounds(struct intel_engine_cs *engine)
86d7f238 865{
e9a64ada 866 int ret;
0bc40be8 867 struct drm_device *dev = engine->dev;
888b5995 868 struct drm_i915_private *dev_priv = dev->dev_private;
86d7f238 869
0bc40be8 870 ret = gen8_init_workarounds(engine);
e9a64ada
AS
871 if (ret)
872 return ret;
873
101b376d 874 /* WaDisableThreadStallDopClockGating:bdw (pre-production) */
d0581194 875 WA_SET_BIT_MASKED(GEN8_ROW_CHICKEN, STALL_DOP_GATING_DISABLE);
86d7f238 876
101b376d 877 /* WaDisableDopClockGating:bdw */
7225342a
MK
878 WA_SET_BIT_MASKED(GEN7_ROW_CHICKEN2,
879 DOP_CLOCK_GATING_DISABLE);
86d7f238 880
7225342a
MK
881 WA_SET_BIT_MASKED(HALF_SLICE_CHICKEN3,
882 GEN8_SAMPLER_POWER_BYPASS_DIS);
86d7f238 883
7225342a 884 WA_SET_BIT_MASKED(HDC_CHICKEN0,
35cb6f3b
DL
885 /* WaForceContextSaveRestoreNonCoherent:bdw */
886 HDC_FORCE_CONTEXT_SAVE_RESTORE_NON_COHERENT |
35cb6f3b 887 /* WaDisableFenceDestinationToSLM:bdw (pre-prod) */
7225342a 888 (IS_BDW_GT3(dev) ? HDC_FENCE_DEST_SLM_DISABLE : 0));
86d7f238 889
86d7f238
AS
890 return 0;
891}
892
0bc40be8 893static int chv_init_workarounds(struct intel_engine_cs *engine)
00e1e623 894{
e9a64ada 895 int ret;
0bc40be8 896 struct drm_device *dev = engine->dev;
00e1e623
VS
897 struct drm_i915_private *dev_priv = dev->dev_private;
898
0bc40be8 899 ret = gen8_init_workarounds(engine);
e9a64ada
AS
900 if (ret)
901 return ret;
902
00e1e623 903 /* WaDisableThreadStallDopClockGating:chv */
d0581194 904 WA_SET_BIT_MASKED(GEN8_ROW_CHICKEN, STALL_DOP_GATING_DISABLE);
00e1e623 905
d60de81d
KG
906 /* Improve HiZ throughput on CHV. */
907 WA_SET_BIT_MASKED(HIZ_CHICKEN, CHV_HZ_8X8_MODE_IN_1X);
908
7225342a
MK
909 return 0;
910}
911
0bc40be8 912static int gen9_init_workarounds(struct intel_engine_cs *engine)
3b106531 913{
0bc40be8 914 struct drm_device *dev = engine->dev;
ab0dfafe 915 struct drm_i915_private *dev_priv = dev->dev_private;
e0f3fa09 916 int ret;
ab0dfafe 917
68370e0a 918 /* WaEnableLbsSlaRetryTimerDecrement:skl,bxt,kbl */
9c4cbf82
MK
919 I915_WRITE(BDW_SCRATCH1, I915_READ(BDW_SCRATCH1) |
920 GEN9_LBS_SLA_RETRY_TIMER_DECREMENT_ENABLE);
921
68370e0a 922 /* WaDisableKillLogic:bxt,skl,kbl */
9c4cbf82
MK
923 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) |
924 ECOCHK_DIS_TLB);
925
68370e0a
MK
926 /* WaClearFlowControlGpgpuContextSave:skl,bxt,kbl */
927 /* WaDisablePartialInstShootdown:skl,bxt,kbl */
ab0dfafe 928 WA_SET_BIT_MASKED(GEN8_ROW_CHICKEN,
950b2aae 929 FLOW_CONTROL_ENABLE |
ab0dfafe
HN
930 PARTIAL_INSTRUCTION_SHOOTDOWN_DISABLE);
931
68370e0a 932 /* Syncing dependencies between camera and graphics:skl,bxt,kbl */
8424171e
NH
933 WA_SET_BIT_MASKED(HALF_SLICE_CHICKEN3,
934 GEN9_DISABLE_OCL_OOB_SUPPRESS_LOGIC);
935
e87a005d
JN
936 /* WaDisableDgMirrorFixInHalfSliceChicken5:skl,bxt */
937 if (IS_SKL_REVID(dev, 0, SKL_REVID_B0) ||
938 IS_BXT_REVID(dev, 0, BXT_REVID_A1))
a86eb582
DL
939 WA_CLR_BIT_MASKED(GEN9_HALF_SLICE_CHICKEN5,
940 GEN9_DG_MIRROR_FIX_ENABLE);
1de4582f 941
e87a005d
JN
942 /* WaSetDisablePixMaskCammingAndRhwoInCommonSliceChicken:skl,bxt */
943 if (IS_SKL_REVID(dev, 0, SKL_REVID_B0) ||
944 IS_BXT_REVID(dev, 0, BXT_REVID_A1)) {
183c6dac
DL
945 WA_SET_BIT_MASKED(GEN7_COMMON_SLICE_CHICKEN1,
946 GEN9_RHWO_OPTIMIZATION_DISABLE);
9b01435d
AS
947 /*
948 * WA also requires GEN9_SLICE_COMMON_ECO_CHICKEN0[14:14] to be set
949 * but we do that in per ctx batchbuffer as there is an issue
950 * with this register not getting restored on ctx restore
951 */
183c6dac
DL
952 }
953
68370e0a
MK
954 /* WaEnableYV12BugFixInHalfSliceChicken7:skl,bxt,kbl */
955 /* WaEnableSamplerGPGPUPreemptionSupport:skl,bxt,kbl */
bfd8ad4e
TG
956 WA_SET_BIT_MASKED(GEN9_HALF_SLICE_CHICKEN7,
957 GEN9_ENABLE_YV12_BUGFIX |
958 GEN9_ENABLE_GPGPU_PREEMPTION);
cac23df4 959
68370e0a
MK
960 /* Wa4x4STCOptimizationDisable:skl,bxt,kbl */
961 /* WaDisablePartialResolveInVc:skl,bxt,kbl */
60294683
AS
962 WA_SET_BIT_MASKED(CACHE_MODE_1, (GEN8_4x4_STC_OPTIMIZATION_DISABLE |
963 GEN9_PARTIAL_RESOLVE_IN_VC_DISABLE));
9370cd98 964
68370e0a 965 /* WaCcsTlbPrefetchDisable:skl,bxt,kbl */
e2db7071
DL
966 WA_CLR_BIT_MASKED(GEN9_HALF_SLICE_CHICKEN5,
967 GEN9_CCS_TLB_PREFETCH_ENABLE);
968
5a2ae95e 969 /* WaDisableMaskBasedCammingInRCC:skl,bxt */
e87a005d
JN
970 if (IS_SKL_REVID(dev, SKL_REVID_C0, SKL_REVID_C0) ||
971 IS_BXT_REVID(dev, 0, BXT_REVID_A1))
38a39a7b
BW
972 WA_SET_BIT_MASKED(SLICE_ECO_CHICKEN0,
973 PIXEL_MASK_CAMMING_DISABLE);
974
6fd72492
MK
975 /* WaForceContextSaveRestoreNonCoherent:skl,bxt,kbl */
976 WA_SET_BIT_MASKED(HDC_CHICKEN0,
977 HDC_FORCE_CONTEXT_SAVE_RESTORE_NON_COHERENT |
978 HDC_FORCE_CSR_NON_COHERENT_OVR_DISABLE);
8ea6f892 979
60f452e6
MK
980 /* WaForceEnableNonCoherent and WaDisableHDCInvalidation are
981 * both tied to WaForceContextSaveRestoreNonCoherent
982 * in some hsds for skl. We keep the tie for all gen9. The
983 * documentation is a bit hazy and so we want to get common behaviour,
984 * even though there is no clear evidence we would need both on kbl/bxt.
985 * This area has been source of system hangs so we play it safe
986 * and mimic the skl regardless of what bspec says.
987 *
988 * Use Force Non-Coherent whenever executing a 3D context. This
989 * is a workaround for a possible hang in the unlikely event
990 * a TLB invalidation occurs during a PSD flush.
991 */
992
993 /* WaForceEnableNonCoherent:skl,bxt,kbl */
994 WA_SET_BIT_MASKED(HDC_CHICKEN0,
995 HDC_FORCE_NON_COHERENT);
996
997 /* WaDisableHDCInvalidation:skl,bxt,kbl */
998 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) |
999 BDW_DISABLE_HDC_INVALIDATION);
1000
68370e0a
MK
1001 /* WaDisableSamplerPowerBypassForSOPingPong:skl,bxt,kbl */
1002 if (IS_SKYLAKE(dev_priv) ||
1003 IS_KABYLAKE(dev_priv) ||
1004 IS_BXT_REVID(dev_priv, 0, BXT_REVID_B0))
8c761609
AS
1005 WA_SET_BIT_MASKED(HALF_SLICE_CHICKEN3,
1006 GEN8_SAMPLER_POWER_BYPASS_DIS);
8c761609 1007
68370e0a 1008 /* WaDisableSTUnitPowerOptimization:skl,bxt,kbl */
6b6d5626
RB
1009 WA_SET_BIT_MASKED(HALF_SLICE_CHICKEN2, GEN8_ST_PO_DISABLE);
1010
68370e0a 1011 /* WaOCLCoherentLineFlush:skl,bxt,kbl */
6ecf56ae
AS
1012 I915_WRITE(GEN8_L3SQCREG4, (I915_READ(GEN8_L3SQCREG4) |
1013 GEN8_LQSC_FLUSH_COHERENT_LINES));
1014
f98edb2b 1015 /* WaVFEStateAfterPipeControlwithMediaStateClear:skl,bxt */
1016 ret = wa_ring_whitelist_reg(engine, GEN9_CTX_PREEMPT_REG);
1017 if (ret)
1018 return ret;
1019
68370e0a 1020 /* WaEnablePreemptionGranularityControlByUMD:skl,bxt,kbl */
0bc40be8 1021 ret= wa_ring_whitelist_reg(engine, GEN8_CS_CHICKEN1);
e0f3fa09
AS
1022 if (ret)
1023 return ret;
1024
68370e0a 1025 /* WaAllowUMDToModifyHDCChicken1:skl,bxt,kbl */
0bc40be8 1026 ret = wa_ring_whitelist_reg(engine, GEN8_HDC_CHICKEN1);
3669ab61
AS
1027 if (ret)
1028 return ret;
1029
3b106531
HN
1030 return 0;
1031}
1032
0bc40be8 1033static int skl_tune_iz_hashing(struct intel_engine_cs *engine)
b7668791 1034{
0bc40be8 1035 struct drm_device *dev = engine->dev;
b7668791
DL
1036 struct drm_i915_private *dev_priv = dev->dev_private;
1037 u8 vals[3] = { 0, 0, 0 };
1038 unsigned int i;
1039
1040 for (i = 0; i < 3; i++) {
1041 u8 ss;
1042
1043 /*
1044 * Only consider slices where one, and only one, subslice has 7
1045 * EUs
1046 */
a4d8a0fe 1047 if (!is_power_of_2(dev_priv->info.subslice_7eu[i]))
b7668791
DL
1048 continue;
1049
1050 /*
1051 * subslice_7eu[i] != 0 (because of the check above) and
1052 * ss_max == 4 (maximum number of subslices possible per slice)
1053 *
1054 * -> 0 <= ss <= 3;
1055 */
1056 ss = ffs(dev_priv->info.subslice_7eu[i]) - 1;
1057 vals[i] = 3 - ss;
1058 }
1059
1060 if (vals[0] == 0 && vals[1] == 0 && vals[2] == 0)
1061 return 0;
1062
1063 /* Tune IZ hashing. See intel_device_info_runtime_init() */
1064 WA_SET_FIELD_MASKED(GEN7_GT_MODE,
1065 GEN9_IZ_HASHING_MASK(2) |
1066 GEN9_IZ_HASHING_MASK(1) |
1067 GEN9_IZ_HASHING_MASK(0),
1068 GEN9_IZ_HASHING(2, vals[2]) |
1069 GEN9_IZ_HASHING(1, vals[1]) |
1070 GEN9_IZ_HASHING(0, vals[0]));
1071
1072 return 0;
1073}
1074
0bc40be8 1075static int skl_init_workarounds(struct intel_engine_cs *engine)
8d205494 1076{
aa0011a8 1077 int ret;
0bc40be8 1078 struct drm_device *dev = engine->dev;
d0bbbc4f
DL
1079 struct drm_i915_private *dev_priv = dev->dev_private;
1080
0bc40be8 1081 ret = gen9_init_workarounds(engine);
aa0011a8
AS
1082 if (ret)
1083 return ret;
8d205494 1084
a78536e7
AS
1085 /*
1086 * Actual WA is to disable percontext preemption granularity control
1087 * until D0 which is the default case so this is equivalent to
1088 * !WaDisablePerCtxtPreemptionGranularityControl:skl
1089 */
1090 if (IS_SKL_REVID(dev, SKL_REVID_E0, REVID_FOREVER)) {
1091 I915_WRITE(GEN7_FF_SLICE_CS_CHICKEN1,
1092 _MASKED_BIT_ENABLE(GEN9_FFSC_PERCTX_PREEMPT_CTRL));
1093 }
1094
e87a005d 1095 if (IS_SKL_REVID(dev, 0, SKL_REVID_D0)) {
9c4cbf82
MK
1096 /* WaDisableChickenBitTSGBarrierAckForFFSliceCS:skl */
1097 I915_WRITE(FF_SLICE_CS_CHICKEN2,
1098 _MASKED_BIT_ENABLE(GEN9_TSG_BARRIER_ACK_DISABLE));
1099 }
1100
1101 /* GEN8_L3SQCREG4 has a dependency with WA batch so any new changes
1102 * involving this register should also be added to WA batch as required.
1103 */
e87a005d 1104 if (IS_SKL_REVID(dev, 0, SKL_REVID_E0))
9c4cbf82
MK
1105 /* WaDisableLSQCROPERFforOCL:skl */
1106 I915_WRITE(GEN8_L3SQCREG4, I915_READ(GEN8_L3SQCREG4) |
1107 GEN8_LQSC_RO_PERF_DIS);
1108
1109 /* WaEnableGapsTsvCreditFix:skl */
e87a005d 1110 if (IS_SKL_REVID(dev, SKL_REVID_C0, REVID_FOREVER)) {
9c4cbf82
MK
1111 I915_WRITE(GEN8_GARBCNTL, (I915_READ(GEN8_GARBCNTL) |
1112 GEN9_GAPS_TSV_CREDIT_DISABLE));
1113 }
1114
d0bbbc4f 1115 /* WaDisablePowerCompilerClockGating:skl */
e87a005d 1116 if (IS_SKL_REVID(dev, SKL_REVID_B0, SKL_REVID_B0))
d0bbbc4f
DL
1117 WA_SET_BIT_MASKED(HIZ_CHICKEN,
1118 BDW_HIZ_POWER_COMPILER_CLOCK_GATING_DISABLE);
1119
e87a005d
JN
1120 /* WaBarrierPerformanceFixDisable:skl */
1121 if (IS_SKL_REVID(dev, SKL_REVID_C0, SKL_REVID_D0))
5b6fd12a
VS
1122 WA_SET_BIT_MASKED(HDC_CHICKEN0,
1123 HDC_FENCE_DEST_SLM_DISABLE |
1124 HDC_BARRIER_PERFORMANCE_DISABLE);
1125
9bd9dfb4 1126 /* WaDisableSbeCacheDispatchPortSharing:skl */
e87a005d 1127 if (IS_SKL_REVID(dev, 0, SKL_REVID_F0))
9bd9dfb4
MK
1128 WA_SET_BIT_MASKED(
1129 GEN7_HALF_SLICE_CHICKEN1,
1130 GEN7_SBE_SS_CACHE_DISPATCH_PORT_SHARING_DISABLE);
9bd9dfb4 1131
c000456c
MK
1132 /* WaDisableGafsUnitClkGating:skl */
1133 WA_SET_BIT(GEN7_UCGCTL4, GEN8_EU_GAUNIT_CLOCK_GATE_DISABLE);
1134
6107497e 1135 /* WaDisableLSQCROPERFforOCL:skl */
0bc40be8 1136 ret = wa_ring_whitelist_reg(engine, GEN8_L3SQCREG4);
6107497e
AS
1137 if (ret)
1138 return ret;
1139
0bc40be8 1140 return skl_tune_iz_hashing(engine);
7225342a
MK
1141}
1142
0bc40be8 1143static int bxt_init_workarounds(struct intel_engine_cs *engine)
cae0437f 1144{
aa0011a8 1145 int ret;
0bc40be8 1146 struct drm_device *dev = engine->dev;
dfb601e6
NH
1147 struct drm_i915_private *dev_priv = dev->dev_private;
1148
0bc40be8 1149 ret = gen9_init_workarounds(engine);
aa0011a8
AS
1150 if (ret)
1151 return ret;
cae0437f 1152
9c4cbf82
MK
1153 /* WaStoreMultiplePTEenable:bxt */
1154 /* This is a requirement according to Hardware specification */
cbdc12a9 1155 if (IS_BXT_REVID(dev, 0, BXT_REVID_A1))
9c4cbf82
MK
1156 I915_WRITE(TILECTL, I915_READ(TILECTL) | TILECTL_TLBPF);
1157
1158 /* WaSetClckGatingDisableMedia:bxt */
cbdc12a9 1159 if (IS_BXT_REVID(dev, 0, BXT_REVID_A1)) {
9c4cbf82
MK
1160 I915_WRITE(GEN7_MISCCPCTL, (I915_READ(GEN7_MISCCPCTL) &
1161 ~GEN8_DOP_CLOCK_GATE_MEDIA_ENABLE));
1162 }
1163
dfb601e6
NH
1164 /* WaDisableThreadStallDopClockGating:bxt */
1165 WA_SET_BIT_MASKED(GEN8_ROW_CHICKEN,
1166 STALL_DOP_GATING_DISABLE);
1167
983b4b9d 1168 /* WaDisableSbeCacheDispatchPortSharing:bxt */
e87a005d 1169 if (IS_BXT_REVID(dev, 0, BXT_REVID_B0)) {
983b4b9d
NH
1170 WA_SET_BIT_MASKED(
1171 GEN7_HALF_SLICE_CHICKEN1,
1172 GEN7_SBE_SS_CACHE_DISPATCH_PORT_SHARING_DISABLE);
1173 }
1174
2c8580e4
AS
1175 /* WaDisableObjectLevelPreemptionForTrifanOrPolygon:bxt */
1176 /* WaDisableObjectLevelPreemptionForInstancedDraw:bxt */
1177 /* WaDisableObjectLevelPreemtionForInstanceId:bxt */
a786d53a 1178 /* WaDisableLSQCROPERFforOCL:bxt */
2c8580e4 1179 if (IS_BXT_REVID(dev, 0, BXT_REVID_A1)) {
0bc40be8 1180 ret = wa_ring_whitelist_reg(engine, GEN9_CS_DEBUG_MODE1);
2c8580e4
AS
1181 if (ret)
1182 return ret;
a786d53a 1183
0bc40be8 1184 ret = wa_ring_whitelist_reg(engine, GEN8_L3SQCREG4);
a786d53a
AS
1185 if (ret)
1186 return ret;
2c8580e4
AS
1187 }
1188
7b9005cd
MK
1189 /* WaInsertDummyPushConstPs:bxt */
1190 if (IS_BXT_REVID(dev_priv, 0, BXT_REVID_B0))
1191 WA_SET_BIT_MASKED(COMMON_SLICE_CHICKEN2,
1192 GEN8_SBE_DISABLE_REPLAY_BUF_OPTIMIZATION);
1193
cae0437f
NH
1194 return 0;
1195}
1196
68370e0a
MK
1197static int kbl_init_workarounds(struct intel_engine_cs *engine)
1198{
79164509 1199 struct drm_i915_private *dev_priv = engine->dev->dev_private;
68370e0a
MK
1200 int ret;
1201
1202 ret = gen9_init_workarounds(engine);
1203 if (ret)
1204 return ret;
1205
79164509
MK
1206 /* WaEnableGapsTsvCreditFix:kbl */
1207 I915_WRITE(GEN8_GARBCNTL, (I915_READ(GEN8_GARBCNTL) |
1208 GEN9_GAPS_TSV_CREDIT_DISABLE));
1209
b9042046
MK
1210 /* WaDisableDynamicCreditSharing:kbl */
1211 if (IS_KBL_REVID(dev_priv, 0, KBL_REVID_B0))
1212 WA_SET_BIT(GAMT_CHKN_BIT_REG,
1213 GAMT_CHKN_DISABLE_DYNAMIC_CREDIT_SHARING);
1214
3d042d46
MK
1215 /* WaDisableFenceDestinationToSLM:kbl (pre-prod) */
1216 if (IS_KBL_REVID(dev_priv, KBL_REVID_A0, KBL_REVID_A0))
1217 WA_SET_BIT_MASKED(HDC_CHICKEN0,
1218 HDC_FENCE_DEST_SLM_DISABLE);
1219
738fa1b3
MK
1220 /* GEN8_L3SQCREG4 has a dependency with WA batch so any new changes
1221 * involving this register should also be added to WA batch as required.
1222 */
1223 if (IS_KBL_REVID(dev_priv, 0, KBL_REVID_E0))
1224 /* WaDisableLSQCROPERFforOCL:kbl */
1225 I915_WRITE(GEN8_L3SQCREG4, I915_READ(GEN8_L3SQCREG4) |
1226 GEN8_LQSC_RO_PERF_DIS);
1227
7b9005cd
MK
1228 /* WaInsertDummyPushConstPs:kbl */
1229 if (IS_KBL_REVID(dev_priv, 0, KBL_REVID_B0))
1230 WA_SET_BIT_MASKED(COMMON_SLICE_CHICKEN2,
1231 GEN8_SBE_DISABLE_REPLAY_BUF_OPTIMIZATION);
1232
738fa1b3
MK
1233 /* WaDisableLSQCROPERFforOCL:kbl */
1234 ret = wa_ring_whitelist_reg(engine, GEN8_L3SQCREG4);
1235 if (ret)
1236 return ret;
1237
68370e0a
MK
1238 return 0;
1239}
1240
0bc40be8 1241int init_workarounds_ring(struct intel_engine_cs *engine)
7225342a 1242{
0bc40be8 1243 struct drm_device *dev = engine->dev;
7225342a
MK
1244 struct drm_i915_private *dev_priv = dev->dev_private;
1245
0bc40be8 1246 WARN_ON(engine->id != RCS);
7225342a
MK
1247
1248 dev_priv->workarounds.count = 0;
33136b06 1249 dev_priv->workarounds.hw_whitelist_count[RCS] = 0;
7225342a
MK
1250
1251 if (IS_BROADWELL(dev))
0bc40be8 1252 return bdw_init_workarounds(engine);
7225342a
MK
1253
1254 if (IS_CHERRYVIEW(dev))
0bc40be8 1255 return chv_init_workarounds(engine);
00e1e623 1256
8d205494 1257 if (IS_SKYLAKE(dev))
0bc40be8 1258 return skl_init_workarounds(engine);
cae0437f
NH
1259
1260 if (IS_BROXTON(dev))
0bc40be8 1261 return bxt_init_workarounds(engine);
3b106531 1262
68370e0a
MK
1263 if (IS_KABYLAKE(dev_priv))
1264 return kbl_init_workarounds(engine);
1265
00e1e623
VS
1266 return 0;
1267}
1268
0bc40be8 1269static int init_render_ring(struct intel_engine_cs *engine)
8187a2b7 1270{
0bc40be8 1271 struct drm_device *dev = engine->dev;
1ec14ad3 1272 struct drm_i915_private *dev_priv = dev->dev_private;
0bc40be8 1273 int ret = init_ring_common(engine);
9c33baa6
KZ
1274 if (ret)
1275 return ret;
a69ffdbf 1276
61a563a2
AG
1277 /* WaTimedSingleVertexDispatch:cl,bw,ctg,elk,ilk,snb */
1278 if (INTEL_INFO(dev)->gen >= 4 && INTEL_INFO(dev)->gen < 7)
6b26c86d 1279 I915_WRITE(MI_MODE, _MASKED_BIT_ENABLE(VS_TIMER_DISPATCH));
1c8c38c5
CW
1280
1281 /* We need to disable the AsyncFlip performance optimisations in order
1282 * to use MI_WAIT_FOR_EVENT within the CS. It should already be
1283 * programmed to '1' on all products.
8693a824 1284 *
2441f877 1285 * WaDisableAsyncFlipPerfMode:snb,ivb,hsw,vlv
1c8c38c5 1286 */
2441f877 1287 if (INTEL_INFO(dev)->gen >= 6 && INTEL_INFO(dev)->gen < 8)
1c8c38c5
CW
1288 I915_WRITE(MI_MODE, _MASKED_BIT_ENABLE(ASYNC_FLIP_PERF_DISABLE));
1289
f05bb0c7 1290 /* Required for the hardware to program scanline values for waiting */
01fa0302 1291 /* WaEnableFlushTlbInvalidationMode:snb */
f05bb0c7
CW
1292 if (INTEL_INFO(dev)->gen == 6)
1293 I915_WRITE(GFX_MODE,
aa83e30d 1294 _MASKED_BIT_ENABLE(GFX_TLB_INVALIDATE_EXPLICIT));
f05bb0c7 1295
01fa0302 1296 /* WaBCSVCSTlbInvalidationMode:ivb,vlv,hsw */
1c8c38c5
CW
1297 if (IS_GEN7(dev))
1298 I915_WRITE(GFX_MODE_GEN7,
01fa0302 1299 _MASKED_BIT_ENABLE(GFX_TLB_INVALIDATE_EXPLICIT) |
1c8c38c5 1300 _MASKED_BIT_ENABLE(GFX_REPLAY_MODE));
78501eac 1301
5e13a0c5 1302 if (IS_GEN6(dev)) {
3a69ddd6
KG
1303 /* From the Sandybridge PRM, volume 1 part 3, page 24:
1304 * "If this bit is set, STCunit will have LRA as replacement
1305 * policy. [...] This bit must be reset. LRA replacement
1306 * policy is not supported."
1307 */
1308 I915_WRITE(CACHE_MODE_0,
5e13a0c5 1309 _MASKED_BIT_DISABLE(CM0_STC_EVICT_DISABLE_LRA_SNB));
84f9f938
BW
1310 }
1311
9cc83020 1312 if (INTEL_INFO(dev)->gen >= 6 && INTEL_INFO(dev)->gen < 8)
6b26c86d 1313 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_FORCE_ORDERING));
84f9f938 1314
040d2baa 1315 if (HAS_L3_DPF(dev))
0bc40be8 1316 I915_WRITE_IMR(engine, ~GT_PARITY_ERROR(dev));
15b9f80e 1317
0bc40be8 1318 return init_workarounds_ring(engine);
8187a2b7
ZN
1319}
1320
0bc40be8 1321static void render_ring_cleanup(struct intel_engine_cs *engine)
c6df541c 1322{
0bc40be8 1323 struct drm_device *dev = engine->dev;
3e78998a
BW
1324 struct drm_i915_private *dev_priv = dev->dev_private;
1325
1326 if (dev_priv->semaphore_obj) {
1327 i915_gem_object_ggtt_unpin(dev_priv->semaphore_obj);
1328 drm_gem_object_unreference(&dev_priv->semaphore_obj->base);
1329 dev_priv->semaphore_obj = NULL;
1330 }
b45305fc 1331
0bc40be8 1332 intel_fini_pipe_control(engine);
c6df541c
CW
1333}
1334
f7169687 1335static int gen8_rcs_signal(struct drm_i915_gem_request *signaller_req,
3e78998a
BW
1336 unsigned int num_dwords)
1337{
1338#define MBOX_UPDATE_DWORDS 8
4a570db5 1339 struct intel_engine_cs *signaller = signaller_req->engine;
3e78998a
BW
1340 struct drm_device *dev = signaller->dev;
1341 struct drm_i915_private *dev_priv = dev->dev_private;
1342 struct intel_engine_cs *waiter;
c3232b18
DG
1343 enum intel_engine_id id;
1344 int ret, num_rings;
3e78998a
BW
1345
1346 num_rings = hweight32(INTEL_INFO(dev)->ring_mask);
1347 num_dwords += (num_rings-1) * MBOX_UPDATE_DWORDS;
1348#undef MBOX_UPDATE_DWORDS
1349
5fb9de1a 1350 ret = intel_ring_begin(signaller_req, num_dwords);
3e78998a
BW
1351 if (ret)
1352 return ret;
1353
c3232b18 1354 for_each_engine_id(waiter, dev_priv, id) {
6259cead 1355 u32 seqno;
c3232b18 1356 u64 gtt_offset = signaller->semaphore.signal_ggtt[id];
3e78998a
BW
1357 if (gtt_offset == MI_SEMAPHORE_SYNC_INVALID)
1358 continue;
1359
f7169687 1360 seqno = i915_gem_request_get_seqno(signaller_req);
3e78998a
BW
1361 intel_ring_emit(signaller, GFX_OP_PIPE_CONTROL(6));
1362 intel_ring_emit(signaller, PIPE_CONTROL_GLOBAL_GTT_IVB |
1363 PIPE_CONTROL_QW_WRITE |
1364 PIPE_CONTROL_FLUSH_ENABLE);
1365 intel_ring_emit(signaller, lower_32_bits(gtt_offset));
1366 intel_ring_emit(signaller, upper_32_bits(gtt_offset));
6259cead 1367 intel_ring_emit(signaller, seqno);
3e78998a
BW
1368 intel_ring_emit(signaller, 0);
1369 intel_ring_emit(signaller, MI_SEMAPHORE_SIGNAL |
83e53802 1370 MI_SEMAPHORE_TARGET(waiter->hw_id));
3e78998a
BW
1371 intel_ring_emit(signaller, 0);
1372 }
1373
1374 return 0;
1375}
1376
f7169687 1377static int gen8_xcs_signal(struct drm_i915_gem_request *signaller_req,
3e78998a
BW
1378 unsigned int num_dwords)
1379{
1380#define MBOX_UPDATE_DWORDS 6
4a570db5 1381 struct intel_engine_cs *signaller = signaller_req->engine;
3e78998a
BW
1382 struct drm_device *dev = signaller->dev;
1383 struct drm_i915_private *dev_priv = dev->dev_private;
1384 struct intel_engine_cs *waiter;
c3232b18
DG
1385 enum intel_engine_id id;
1386 int ret, num_rings;
3e78998a
BW
1387
1388 num_rings = hweight32(INTEL_INFO(dev)->ring_mask);
1389 num_dwords += (num_rings-1) * MBOX_UPDATE_DWORDS;
1390#undef MBOX_UPDATE_DWORDS
1391
5fb9de1a 1392 ret = intel_ring_begin(signaller_req, num_dwords);
3e78998a
BW
1393 if (ret)
1394 return ret;
1395
c3232b18 1396 for_each_engine_id(waiter, dev_priv, id) {
6259cead 1397 u32 seqno;
c3232b18 1398 u64 gtt_offset = signaller->semaphore.signal_ggtt[id];
3e78998a
BW
1399 if (gtt_offset == MI_SEMAPHORE_SYNC_INVALID)
1400 continue;
1401
f7169687 1402 seqno = i915_gem_request_get_seqno(signaller_req);
3e78998a
BW
1403 intel_ring_emit(signaller, (MI_FLUSH_DW + 1) |
1404 MI_FLUSH_DW_OP_STOREDW);
1405 intel_ring_emit(signaller, lower_32_bits(gtt_offset) |
1406 MI_FLUSH_DW_USE_GTT);
1407 intel_ring_emit(signaller, upper_32_bits(gtt_offset));
6259cead 1408 intel_ring_emit(signaller, seqno);
3e78998a 1409 intel_ring_emit(signaller, MI_SEMAPHORE_SIGNAL |
83e53802 1410 MI_SEMAPHORE_TARGET(waiter->hw_id));
3e78998a
BW
1411 intel_ring_emit(signaller, 0);
1412 }
1413
1414 return 0;
1415}
1416
f7169687 1417static int gen6_signal(struct drm_i915_gem_request *signaller_req,
024a43e1 1418 unsigned int num_dwords)
1ec14ad3 1419{
4a570db5 1420 struct intel_engine_cs *signaller = signaller_req->engine;
024a43e1
BW
1421 struct drm_device *dev = signaller->dev;
1422 struct drm_i915_private *dev_priv = dev->dev_private;
a4872ba6 1423 struct intel_engine_cs *useless;
c3232b18
DG
1424 enum intel_engine_id id;
1425 int ret, num_rings;
78325f2d 1426
a1444b79
BW
1427#define MBOX_UPDATE_DWORDS 3
1428 num_rings = hweight32(INTEL_INFO(dev)->ring_mask);
1429 num_dwords += round_up((num_rings-1) * MBOX_UPDATE_DWORDS, 2);
1430#undef MBOX_UPDATE_DWORDS
024a43e1 1431
5fb9de1a 1432 ret = intel_ring_begin(signaller_req, num_dwords);
024a43e1
BW
1433 if (ret)
1434 return ret;
024a43e1 1435
c3232b18
DG
1436 for_each_engine_id(useless, dev_priv, id) {
1437 i915_reg_t mbox_reg = signaller->semaphore.mbox.signal[id];
f0f59a00
VS
1438
1439 if (i915_mmio_reg_valid(mbox_reg)) {
f7169687 1440 u32 seqno = i915_gem_request_get_seqno(signaller_req);
f0f59a00 1441
78325f2d 1442 intel_ring_emit(signaller, MI_LOAD_REGISTER_IMM(1));
f92a9162 1443 intel_ring_emit_reg(signaller, mbox_reg);
6259cead 1444 intel_ring_emit(signaller, seqno);
78325f2d
BW
1445 }
1446 }
024a43e1 1447
a1444b79
BW
1448 /* If num_dwords was rounded, make sure the tail pointer is correct */
1449 if (num_rings % 2 == 0)
1450 intel_ring_emit(signaller, MI_NOOP);
1451
024a43e1 1452 return 0;
1ec14ad3
CW
1453}
1454
c8c99b0f
BW
1455/**
1456 * gen6_add_request - Update the semaphore mailbox registers
ee044a88
JH
1457 *
1458 * @request - request to write to the ring
c8c99b0f
BW
1459 *
1460 * Update the mailbox registers in the *other* rings with the current seqno.
1461 * This acts like a signal in the canonical semaphore.
1462 */
1ec14ad3 1463static int
ee044a88 1464gen6_add_request(struct drm_i915_gem_request *req)
1ec14ad3 1465{
4a570db5 1466 struct intel_engine_cs *engine = req->engine;
024a43e1 1467 int ret;
52ed2325 1468
e2f80391
TU
1469 if (engine->semaphore.signal)
1470 ret = engine->semaphore.signal(req, 4);
707d9cf9 1471 else
5fb9de1a 1472 ret = intel_ring_begin(req, 4);
707d9cf9 1473
1ec14ad3
CW
1474 if (ret)
1475 return ret;
1476
e2f80391
TU
1477 intel_ring_emit(engine, MI_STORE_DWORD_INDEX);
1478 intel_ring_emit(engine,
1479 I915_GEM_HWS_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
1480 intel_ring_emit(engine, i915_gem_request_get_seqno(req));
1481 intel_ring_emit(engine, MI_USER_INTERRUPT);
1482 __intel_ring_advance(engine);
1ec14ad3 1483
1ec14ad3
CW
1484 return 0;
1485}
1486
f72b3435
MK
1487static inline bool i915_gem_has_seqno_wrapped(struct drm_device *dev,
1488 u32 seqno)
1489{
1490 struct drm_i915_private *dev_priv = dev->dev_private;
1491 return dev_priv->last_seqno < seqno;
1492}
1493
c8c99b0f
BW
1494/**
1495 * intel_ring_sync - sync the waiter to the signaller on seqno
1496 *
1497 * @waiter - ring that is waiting
1498 * @signaller - ring which has, or will signal
1499 * @seqno - seqno which the waiter will block on
1500 */
5ee426ca
BW
1501
1502static int
599d924c 1503gen8_ring_sync(struct drm_i915_gem_request *waiter_req,
5ee426ca
BW
1504 struct intel_engine_cs *signaller,
1505 u32 seqno)
1506{
4a570db5 1507 struct intel_engine_cs *waiter = waiter_req->engine;
5ee426ca
BW
1508 struct drm_i915_private *dev_priv = waiter->dev->dev_private;
1509 int ret;
1510
5fb9de1a 1511 ret = intel_ring_begin(waiter_req, 4);
5ee426ca
BW
1512 if (ret)
1513 return ret;
1514
1515 intel_ring_emit(waiter, MI_SEMAPHORE_WAIT |
1516 MI_SEMAPHORE_GLOBAL_GTT |
bae4fcd2 1517 MI_SEMAPHORE_POLL |
5ee426ca
BW
1518 MI_SEMAPHORE_SAD_GTE_SDD);
1519 intel_ring_emit(waiter, seqno);
1520 intel_ring_emit(waiter,
1521 lower_32_bits(GEN8_WAIT_OFFSET(waiter, signaller->id)));
1522 intel_ring_emit(waiter,
1523 upper_32_bits(GEN8_WAIT_OFFSET(waiter, signaller->id)));
1524 intel_ring_advance(waiter);
1525 return 0;
1526}
1527
c8c99b0f 1528static int
599d924c 1529gen6_ring_sync(struct drm_i915_gem_request *waiter_req,
a4872ba6 1530 struct intel_engine_cs *signaller,
686cb5f9 1531 u32 seqno)
1ec14ad3 1532{
4a570db5 1533 struct intel_engine_cs *waiter = waiter_req->engine;
c8c99b0f
BW
1534 u32 dw1 = MI_SEMAPHORE_MBOX |
1535 MI_SEMAPHORE_COMPARE |
1536 MI_SEMAPHORE_REGISTER;
ebc348b2
BW
1537 u32 wait_mbox = signaller->semaphore.mbox.wait[waiter->id];
1538 int ret;
1ec14ad3 1539
1500f7ea
BW
1540 /* Throughout all of the GEM code, seqno passed implies our current
1541 * seqno is >= the last seqno executed. However for hardware the
1542 * comparison is strictly greater than.
1543 */
1544 seqno -= 1;
1545
ebc348b2 1546 WARN_ON(wait_mbox == MI_SEMAPHORE_SYNC_INVALID);
686cb5f9 1547
5fb9de1a 1548 ret = intel_ring_begin(waiter_req, 4);
1ec14ad3
CW
1549 if (ret)
1550 return ret;
1551
f72b3435
MK
1552 /* If seqno wrap happened, omit the wait with no-ops */
1553 if (likely(!i915_gem_has_seqno_wrapped(waiter->dev, seqno))) {
ebc348b2 1554 intel_ring_emit(waiter, dw1 | wait_mbox);
f72b3435
MK
1555 intel_ring_emit(waiter, seqno);
1556 intel_ring_emit(waiter, 0);
1557 intel_ring_emit(waiter, MI_NOOP);
1558 } else {
1559 intel_ring_emit(waiter, MI_NOOP);
1560 intel_ring_emit(waiter, MI_NOOP);
1561 intel_ring_emit(waiter, MI_NOOP);
1562 intel_ring_emit(waiter, MI_NOOP);
1563 }
c8c99b0f 1564 intel_ring_advance(waiter);
1ec14ad3
CW
1565
1566 return 0;
1567}
1568
c6df541c
CW
1569#define PIPE_CONTROL_FLUSH(ring__, addr__) \
1570do { \
fcbc34e4
KG
1571 intel_ring_emit(ring__, GFX_OP_PIPE_CONTROL(4) | PIPE_CONTROL_QW_WRITE | \
1572 PIPE_CONTROL_DEPTH_STALL); \
c6df541c
CW
1573 intel_ring_emit(ring__, (addr__) | PIPE_CONTROL_GLOBAL_GTT); \
1574 intel_ring_emit(ring__, 0); \
1575 intel_ring_emit(ring__, 0); \
1576} while (0)
1577
1578static int
ee044a88 1579pc_render_add_request(struct drm_i915_gem_request *req)
c6df541c 1580{
4a570db5 1581 struct intel_engine_cs *engine = req->engine;
e2f80391 1582 u32 scratch_addr = engine->scratch.gtt_offset + 2 * CACHELINE_BYTES;
c6df541c
CW
1583 int ret;
1584
1585 /* For Ironlake, MI_USER_INTERRUPT was deprecated and apparently
1586 * incoherent with writes to memory, i.e. completely fubar,
1587 * so we need to use PIPE_NOTIFY instead.
1588 *
1589 * However, we also need to workaround the qword write
1590 * incoherence by flushing the 6 PIPE_NOTIFY buffers out to
1591 * memory before requesting an interrupt.
1592 */
5fb9de1a 1593 ret = intel_ring_begin(req, 32);
c6df541c
CW
1594 if (ret)
1595 return ret;
1596
e2f80391
TU
1597 intel_ring_emit(engine,
1598 GFX_OP_PIPE_CONTROL(4) | PIPE_CONTROL_QW_WRITE |
9d971b37
KG
1599 PIPE_CONTROL_WRITE_FLUSH |
1600 PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE);
e2f80391
TU
1601 intel_ring_emit(engine,
1602 engine->scratch.gtt_offset | PIPE_CONTROL_GLOBAL_GTT);
1603 intel_ring_emit(engine, i915_gem_request_get_seqno(req));
1604 intel_ring_emit(engine, 0);
1605 PIPE_CONTROL_FLUSH(engine, scratch_addr);
18393f63 1606 scratch_addr += 2 * CACHELINE_BYTES; /* write to separate cachelines */
e2f80391 1607 PIPE_CONTROL_FLUSH(engine, scratch_addr);
18393f63 1608 scratch_addr += 2 * CACHELINE_BYTES;
e2f80391 1609 PIPE_CONTROL_FLUSH(engine, scratch_addr);
18393f63 1610 scratch_addr += 2 * CACHELINE_BYTES;
e2f80391 1611 PIPE_CONTROL_FLUSH(engine, scratch_addr);
18393f63 1612 scratch_addr += 2 * CACHELINE_BYTES;
e2f80391 1613 PIPE_CONTROL_FLUSH(engine, scratch_addr);
18393f63 1614 scratch_addr += 2 * CACHELINE_BYTES;
e2f80391 1615 PIPE_CONTROL_FLUSH(engine, scratch_addr);
a71d8d94 1616
e2f80391
TU
1617 intel_ring_emit(engine,
1618 GFX_OP_PIPE_CONTROL(4) | PIPE_CONTROL_QW_WRITE |
9d971b37
KG
1619 PIPE_CONTROL_WRITE_FLUSH |
1620 PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE |
c6df541c 1621 PIPE_CONTROL_NOTIFY);
e2f80391
TU
1622 intel_ring_emit(engine,
1623 engine->scratch.gtt_offset | PIPE_CONTROL_GLOBAL_GTT);
1624 intel_ring_emit(engine, i915_gem_request_get_seqno(req));
1625 intel_ring_emit(engine, 0);
1626 __intel_ring_advance(engine);
c6df541c 1627
c6df541c
CW
1628 return 0;
1629}
1630
c04e0f3b
CW
1631static void
1632gen6_seqno_barrier(struct intel_engine_cs *engine)
4cd53c0c 1633{
e32da7ad
CW
1634 struct drm_i915_private *dev_priv = engine->dev->dev_private;
1635
4cd53c0c
DV
1636 /* Workaround to force correct ordering between irq and seqno writes on
1637 * ivb (and maybe also on snb) by reading from a CS register (like
9b9ed309
CW
1638 * ACTHD) before reading the status page.
1639 *
1640 * Note that this effectively stalls the read by the time it takes to
1641 * do a memory transaction, which more or less ensures that the write
1642 * from the GPU has sufficient time to invalidate the CPU cacheline.
1643 * Alternatively we could delay the interrupt from the CS ring to give
1644 * the write time to land, but that would incur a delay after every
1645 * batch i.e. much more frequent than a delay when waiting for the
1646 * interrupt (with the same net latency).
e32da7ad
CW
1647 *
1648 * Also note that to prevent whole machine hangs on gen7, we have to
1649 * take the spinlock to guard against concurrent cacheline access.
9b9ed309 1650 */
e32da7ad 1651 spin_lock_irq(&dev_priv->uncore.lock);
c04e0f3b 1652 POSTING_READ_FW(RING_ACTHD(engine->mmio_base));
e32da7ad 1653 spin_unlock_irq(&dev_priv->uncore.lock);
4cd53c0c
DV
1654}
1655
8187a2b7 1656static u32
c04e0f3b 1657ring_get_seqno(struct intel_engine_cs *engine)
8187a2b7 1658{
0bc40be8 1659 return intel_read_status_page(engine, I915_GEM_HWS_INDEX);
1ec14ad3
CW
1660}
1661
b70ec5bf 1662static void
0bc40be8 1663ring_set_seqno(struct intel_engine_cs *engine, u32 seqno)
b70ec5bf 1664{
0bc40be8 1665 intel_write_status_page(engine, I915_GEM_HWS_INDEX, seqno);
b70ec5bf
MK
1666}
1667
c6df541c 1668static u32
c04e0f3b 1669pc_render_get_seqno(struct intel_engine_cs *engine)
c6df541c 1670{
0bc40be8 1671 return engine->scratch.cpu_page[0];
c6df541c
CW
1672}
1673
b70ec5bf 1674static void
0bc40be8 1675pc_render_set_seqno(struct intel_engine_cs *engine, u32 seqno)
b70ec5bf 1676{
0bc40be8 1677 engine->scratch.cpu_page[0] = seqno;
b70ec5bf
MK
1678}
1679
e48d8634 1680static bool
0bc40be8 1681gen5_ring_get_irq(struct intel_engine_cs *engine)
e48d8634 1682{
0bc40be8 1683 struct drm_device *dev = engine->dev;
4640c4ff 1684 struct drm_i915_private *dev_priv = dev->dev_private;
7338aefa 1685 unsigned long flags;
e48d8634 1686
7cd512f1 1687 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
e48d8634
DV
1688 return false;
1689
7338aefa 1690 spin_lock_irqsave(&dev_priv->irq_lock, flags);
0bc40be8
TU
1691 if (engine->irq_refcount++ == 0)
1692 gen5_enable_gt_irq(dev_priv, engine->irq_enable_mask);
7338aefa 1693 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
e48d8634
DV
1694
1695 return true;
1696}
1697
1698static void
0bc40be8 1699gen5_ring_put_irq(struct intel_engine_cs *engine)
e48d8634 1700{
0bc40be8 1701 struct drm_device *dev = engine->dev;
4640c4ff 1702 struct drm_i915_private *dev_priv = dev->dev_private;
7338aefa 1703 unsigned long flags;
e48d8634 1704
7338aefa 1705 spin_lock_irqsave(&dev_priv->irq_lock, flags);
0bc40be8
TU
1706 if (--engine->irq_refcount == 0)
1707 gen5_disable_gt_irq(dev_priv, engine->irq_enable_mask);
7338aefa 1708 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
e48d8634
DV
1709}
1710
b13c2b96 1711static bool
0bc40be8 1712i9xx_ring_get_irq(struct intel_engine_cs *engine)
62fdfeaf 1713{
0bc40be8 1714 struct drm_device *dev = engine->dev;
4640c4ff 1715 struct drm_i915_private *dev_priv = dev->dev_private;
7338aefa 1716 unsigned long flags;
62fdfeaf 1717
7cd512f1 1718 if (!intel_irqs_enabled(dev_priv))
b13c2b96
CW
1719 return false;
1720
7338aefa 1721 spin_lock_irqsave(&dev_priv->irq_lock, flags);
0bc40be8
TU
1722 if (engine->irq_refcount++ == 0) {
1723 dev_priv->irq_mask &= ~engine->irq_enable_mask;
f637fde4
DV
1724 I915_WRITE(IMR, dev_priv->irq_mask);
1725 POSTING_READ(IMR);
1726 }
7338aefa 1727 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
b13c2b96
CW
1728
1729 return true;
62fdfeaf
EA
1730}
1731
8187a2b7 1732static void
0bc40be8 1733i9xx_ring_put_irq(struct intel_engine_cs *engine)
62fdfeaf 1734{
0bc40be8 1735 struct drm_device *dev = engine->dev;
4640c4ff 1736 struct drm_i915_private *dev_priv = dev->dev_private;
7338aefa 1737 unsigned long flags;
62fdfeaf 1738
7338aefa 1739 spin_lock_irqsave(&dev_priv->irq_lock, flags);
0bc40be8
TU
1740 if (--engine->irq_refcount == 0) {
1741 dev_priv->irq_mask |= engine->irq_enable_mask;
f637fde4
DV
1742 I915_WRITE(IMR, dev_priv->irq_mask);
1743 POSTING_READ(IMR);
1744 }
7338aefa 1745 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
62fdfeaf
EA
1746}
1747
c2798b19 1748static bool
0bc40be8 1749i8xx_ring_get_irq(struct intel_engine_cs *engine)
c2798b19 1750{
0bc40be8 1751 struct drm_device *dev = engine->dev;
4640c4ff 1752 struct drm_i915_private *dev_priv = dev->dev_private;
7338aefa 1753 unsigned long flags;
c2798b19 1754
7cd512f1 1755 if (!intel_irqs_enabled(dev_priv))
c2798b19
CW
1756 return false;
1757
7338aefa 1758 spin_lock_irqsave(&dev_priv->irq_lock, flags);
0bc40be8
TU
1759 if (engine->irq_refcount++ == 0) {
1760 dev_priv->irq_mask &= ~engine->irq_enable_mask;
c2798b19
CW
1761 I915_WRITE16(IMR, dev_priv->irq_mask);
1762 POSTING_READ16(IMR);
1763 }
7338aefa 1764 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
c2798b19
CW
1765
1766 return true;
1767}
1768
1769static void
0bc40be8 1770i8xx_ring_put_irq(struct intel_engine_cs *engine)
c2798b19 1771{
0bc40be8 1772 struct drm_device *dev = engine->dev;
4640c4ff 1773 struct drm_i915_private *dev_priv = dev->dev_private;
7338aefa 1774 unsigned long flags;
c2798b19 1775
7338aefa 1776 spin_lock_irqsave(&dev_priv->irq_lock, flags);
0bc40be8
TU
1777 if (--engine->irq_refcount == 0) {
1778 dev_priv->irq_mask |= engine->irq_enable_mask;
c2798b19
CW
1779 I915_WRITE16(IMR, dev_priv->irq_mask);
1780 POSTING_READ16(IMR);
1781 }
7338aefa 1782 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
c2798b19
CW
1783}
1784
b72f3acb 1785static int
a84c3ae1 1786bsd_ring_flush(struct drm_i915_gem_request *req,
78501eac
CW
1787 u32 invalidate_domains,
1788 u32 flush_domains)
d1b851fc 1789{
4a570db5 1790 struct intel_engine_cs *engine = req->engine;
b72f3acb
CW
1791 int ret;
1792
5fb9de1a 1793 ret = intel_ring_begin(req, 2);
b72f3acb
CW
1794 if (ret)
1795 return ret;
1796
e2f80391
TU
1797 intel_ring_emit(engine, MI_FLUSH);
1798 intel_ring_emit(engine, MI_NOOP);
1799 intel_ring_advance(engine);
b72f3acb 1800 return 0;
d1b851fc
ZN
1801}
1802
3cce469c 1803static int
ee044a88 1804i9xx_add_request(struct drm_i915_gem_request *req)
d1b851fc 1805{
4a570db5 1806 struct intel_engine_cs *engine = req->engine;
3cce469c
CW
1807 int ret;
1808
5fb9de1a 1809 ret = intel_ring_begin(req, 4);
3cce469c
CW
1810 if (ret)
1811 return ret;
6f392d54 1812
e2f80391
TU
1813 intel_ring_emit(engine, MI_STORE_DWORD_INDEX);
1814 intel_ring_emit(engine,
1815 I915_GEM_HWS_INDEX << MI_STORE_DWORD_INDEX_SHIFT);
1816 intel_ring_emit(engine, i915_gem_request_get_seqno(req));
1817 intel_ring_emit(engine, MI_USER_INTERRUPT);
1818 __intel_ring_advance(engine);
d1b851fc 1819
3cce469c 1820 return 0;
d1b851fc
ZN
1821}
1822
0f46832f 1823static bool
0bc40be8 1824gen6_ring_get_irq(struct intel_engine_cs *engine)
0f46832f 1825{
0bc40be8 1826 struct drm_device *dev = engine->dev;
4640c4ff 1827 struct drm_i915_private *dev_priv = dev->dev_private;
7338aefa 1828 unsigned long flags;
0f46832f 1829
7cd512f1
DV
1830 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
1831 return false;
0f46832f 1832
7338aefa 1833 spin_lock_irqsave(&dev_priv->irq_lock, flags);
0bc40be8
TU
1834 if (engine->irq_refcount++ == 0) {
1835 if (HAS_L3_DPF(dev) && engine->id == RCS)
1836 I915_WRITE_IMR(engine,
1837 ~(engine->irq_enable_mask |
35a85ac6 1838 GT_PARITY_ERROR(dev)));
15b9f80e 1839 else
0bc40be8
TU
1840 I915_WRITE_IMR(engine, ~engine->irq_enable_mask);
1841 gen5_enable_gt_irq(dev_priv, engine->irq_enable_mask);
0f46832f 1842 }
7338aefa 1843 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
0f46832f
CW
1844
1845 return true;
1846}
1847
1848static void
0bc40be8 1849gen6_ring_put_irq(struct intel_engine_cs *engine)
0f46832f 1850{
0bc40be8 1851 struct drm_device *dev = engine->dev;
4640c4ff 1852 struct drm_i915_private *dev_priv = dev->dev_private;
7338aefa 1853 unsigned long flags;
0f46832f 1854
7338aefa 1855 spin_lock_irqsave(&dev_priv->irq_lock, flags);
0bc40be8
TU
1856 if (--engine->irq_refcount == 0) {
1857 if (HAS_L3_DPF(dev) && engine->id == RCS)
1858 I915_WRITE_IMR(engine, ~GT_PARITY_ERROR(dev));
15b9f80e 1859 else
0bc40be8
TU
1860 I915_WRITE_IMR(engine, ~0);
1861 gen5_disable_gt_irq(dev_priv, engine->irq_enable_mask);
1ec14ad3 1862 }
7338aefa 1863 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
d1b851fc
ZN
1864}
1865
a19d2933 1866static bool
0bc40be8 1867hsw_vebox_get_irq(struct intel_engine_cs *engine)
a19d2933 1868{
0bc40be8 1869 struct drm_device *dev = engine->dev;
a19d2933
BW
1870 struct drm_i915_private *dev_priv = dev->dev_private;
1871 unsigned long flags;
1872
7cd512f1 1873 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
a19d2933
BW
1874 return false;
1875
59cdb63d 1876 spin_lock_irqsave(&dev_priv->irq_lock, flags);
0bc40be8
TU
1877 if (engine->irq_refcount++ == 0) {
1878 I915_WRITE_IMR(engine, ~engine->irq_enable_mask);
1879 gen6_enable_pm_irq(dev_priv, engine->irq_enable_mask);
a19d2933 1880 }
59cdb63d 1881 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
a19d2933
BW
1882
1883 return true;
1884}
1885
1886static void
0bc40be8 1887hsw_vebox_put_irq(struct intel_engine_cs *engine)
a19d2933 1888{
0bc40be8 1889 struct drm_device *dev = engine->dev;
a19d2933
BW
1890 struct drm_i915_private *dev_priv = dev->dev_private;
1891 unsigned long flags;
1892
59cdb63d 1893 spin_lock_irqsave(&dev_priv->irq_lock, flags);
0bc40be8
TU
1894 if (--engine->irq_refcount == 0) {
1895 I915_WRITE_IMR(engine, ~0);
1896 gen6_disable_pm_irq(dev_priv, engine->irq_enable_mask);
a19d2933 1897 }
59cdb63d 1898 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
a19d2933
BW
1899}
1900
abd58f01 1901static bool
0bc40be8 1902gen8_ring_get_irq(struct intel_engine_cs *engine)
abd58f01 1903{
0bc40be8 1904 struct drm_device *dev = engine->dev;
abd58f01
BW
1905 struct drm_i915_private *dev_priv = dev->dev_private;
1906 unsigned long flags;
1907
7cd512f1 1908 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
abd58f01
BW
1909 return false;
1910
1911 spin_lock_irqsave(&dev_priv->irq_lock, flags);
0bc40be8
TU
1912 if (engine->irq_refcount++ == 0) {
1913 if (HAS_L3_DPF(dev) && engine->id == RCS) {
1914 I915_WRITE_IMR(engine,
1915 ~(engine->irq_enable_mask |
abd58f01
BW
1916 GT_RENDER_L3_PARITY_ERROR_INTERRUPT));
1917 } else {
0bc40be8 1918 I915_WRITE_IMR(engine, ~engine->irq_enable_mask);
abd58f01 1919 }
0bc40be8 1920 POSTING_READ(RING_IMR(engine->mmio_base));
abd58f01
BW
1921 }
1922 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
1923
1924 return true;
1925}
1926
1927static void
0bc40be8 1928gen8_ring_put_irq(struct intel_engine_cs *engine)
abd58f01 1929{
0bc40be8 1930 struct drm_device *dev = engine->dev;
abd58f01
BW
1931 struct drm_i915_private *dev_priv = dev->dev_private;
1932 unsigned long flags;
1933
1934 spin_lock_irqsave(&dev_priv->irq_lock, flags);
0bc40be8
TU
1935 if (--engine->irq_refcount == 0) {
1936 if (HAS_L3_DPF(dev) && engine->id == RCS) {
1937 I915_WRITE_IMR(engine,
abd58f01
BW
1938 ~GT_RENDER_L3_PARITY_ERROR_INTERRUPT);
1939 } else {
0bc40be8 1940 I915_WRITE_IMR(engine, ~0);
abd58f01 1941 }
0bc40be8 1942 POSTING_READ(RING_IMR(engine->mmio_base));
abd58f01
BW
1943 }
1944 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
1945}
1946
d1b851fc 1947static int
53fddaf7 1948i965_dispatch_execbuffer(struct drm_i915_gem_request *req,
9bcb144c 1949 u64 offset, u32 length,
8e004efc 1950 unsigned dispatch_flags)
d1b851fc 1951{
4a570db5 1952 struct intel_engine_cs *engine = req->engine;
e1f99ce6 1953 int ret;
78501eac 1954
5fb9de1a 1955 ret = intel_ring_begin(req, 2);
e1f99ce6
CW
1956 if (ret)
1957 return ret;
1958
e2f80391 1959 intel_ring_emit(engine,
65f56876
CW
1960 MI_BATCH_BUFFER_START |
1961 MI_BATCH_GTT |
8e004efc
JH
1962 (dispatch_flags & I915_DISPATCH_SECURE ?
1963 0 : MI_BATCH_NON_SECURE_I965));
e2f80391
TU
1964 intel_ring_emit(engine, offset);
1965 intel_ring_advance(engine);
78501eac 1966
d1b851fc
ZN
1967 return 0;
1968}
1969
b45305fc
DV
1970/* Just userspace ABI convention to limit the wa batch bo to a resonable size */
1971#define I830_BATCH_LIMIT (256*1024)
c4d69da1
CW
1972#define I830_TLB_ENTRIES (2)
1973#define I830_WA_SIZE max(I830_TLB_ENTRIES*4096, I830_BATCH_LIMIT)
8187a2b7 1974static int
53fddaf7 1975i830_dispatch_execbuffer(struct drm_i915_gem_request *req,
8e004efc
JH
1976 u64 offset, u32 len,
1977 unsigned dispatch_flags)
62fdfeaf 1978{
4a570db5 1979 struct intel_engine_cs *engine = req->engine;
e2f80391 1980 u32 cs_offset = engine->scratch.gtt_offset;
c4e7a414 1981 int ret;
62fdfeaf 1982
5fb9de1a 1983 ret = intel_ring_begin(req, 6);
c4d69da1
CW
1984 if (ret)
1985 return ret;
62fdfeaf 1986
c4d69da1 1987 /* Evict the invalid PTE TLBs */
e2f80391
TU
1988 intel_ring_emit(engine, COLOR_BLT_CMD | BLT_WRITE_RGBA);
1989 intel_ring_emit(engine, BLT_DEPTH_32 | BLT_ROP_COLOR_COPY | 4096);
1990 intel_ring_emit(engine, I830_TLB_ENTRIES << 16 | 4); /* load each page */
1991 intel_ring_emit(engine, cs_offset);
1992 intel_ring_emit(engine, 0xdeadbeef);
1993 intel_ring_emit(engine, MI_NOOP);
1994 intel_ring_advance(engine);
b45305fc 1995
8e004efc 1996 if ((dispatch_flags & I915_DISPATCH_PINNED) == 0) {
b45305fc
DV
1997 if (len > I830_BATCH_LIMIT)
1998 return -ENOSPC;
1999
5fb9de1a 2000 ret = intel_ring_begin(req, 6 + 2);
b45305fc
DV
2001 if (ret)
2002 return ret;
c4d69da1
CW
2003
2004 /* Blit the batch (which has now all relocs applied) to the
2005 * stable batch scratch bo area (so that the CS never
2006 * stumbles over its tlb invalidation bug) ...
2007 */
e2f80391
TU
2008 intel_ring_emit(engine, SRC_COPY_BLT_CMD | BLT_WRITE_RGBA);
2009 intel_ring_emit(engine,
2010 BLT_DEPTH_32 | BLT_ROP_SRC_COPY | 4096);
2011 intel_ring_emit(engine, DIV_ROUND_UP(len, 4096) << 16 | 4096);
2012 intel_ring_emit(engine, cs_offset);
2013 intel_ring_emit(engine, 4096);
2014 intel_ring_emit(engine, offset);
2015
2016 intel_ring_emit(engine, MI_FLUSH);
2017 intel_ring_emit(engine, MI_NOOP);
2018 intel_ring_advance(engine);
b45305fc
DV
2019
2020 /* ... and execute it. */
c4d69da1 2021 offset = cs_offset;
b45305fc 2022 }
e1f99ce6 2023
9d611c03 2024 ret = intel_ring_begin(req, 2);
c4d69da1
CW
2025 if (ret)
2026 return ret;
2027
e2f80391
TU
2028 intel_ring_emit(engine, MI_BATCH_BUFFER_START | MI_BATCH_GTT);
2029 intel_ring_emit(engine, offset | (dispatch_flags & I915_DISPATCH_SECURE ?
2030 0 : MI_BATCH_NON_SECURE));
2031 intel_ring_advance(engine);
c4d69da1 2032
fb3256da
DV
2033 return 0;
2034}
2035
2036static int
53fddaf7 2037i915_dispatch_execbuffer(struct drm_i915_gem_request *req,
9bcb144c 2038 u64 offset, u32 len,
8e004efc 2039 unsigned dispatch_flags)
fb3256da 2040{
4a570db5 2041 struct intel_engine_cs *engine = req->engine;
fb3256da
DV
2042 int ret;
2043
5fb9de1a 2044 ret = intel_ring_begin(req, 2);
fb3256da
DV
2045 if (ret)
2046 return ret;
2047
e2f80391
TU
2048 intel_ring_emit(engine, MI_BATCH_BUFFER_START | MI_BATCH_GTT);
2049 intel_ring_emit(engine, offset | (dispatch_flags & I915_DISPATCH_SECURE ?
2050 0 : MI_BATCH_NON_SECURE));
2051 intel_ring_advance(engine);
62fdfeaf 2052
62fdfeaf
EA
2053 return 0;
2054}
2055
0bc40be8 2056static void cleanup_phys_status_page(struct intel_engine_cs *engine)
7d3fdfff 2057{
0bc40be8 2058 struct drm_i915_private *dev_priv = to_i915(engine->dev);
7d3fdfff
VS
2059
2060 if (!dev_priv->status_page_dmah)
2061 return;
2062
0bc40be8
TU
2063 drm_pci_free(engine->dev, dev_priv->status_page_dmah);
2064 engine->status_page.page_addr = NULL;
7d3fdfff
VS
2065}
2066
0bc40be8 2067static void cleanup_status_page(struct intel_engine_cs *engine)
62fdfeaf 2068{
05394f39 2069 struct drm_i915_gem_object *obj;
62fdfeaf 2070
0bc40be8 2071 obj = engine->status_page.obj;
8187a2b7 2072 if (obj == NULL)
62fdfeaf 2073 return;
62fdfeaf 2074
9da3da66 2075 kunmap(sg_page(obj->pages->sgl));
d7f46fc4 2076 i915_gem_object_ggtt_unpin(obj);
05394f39 2077 drm_gem_object_unreference(&obj->base);
0bc40be8 2078 engine->status_page.obj = NULL;
62fdfeaf
EA
2079}
2080
0bc40be8 2081static int init_status_page(struct intel_engine_cs *engine)
62fdfeaf 2082{
0bc40be8 2083 struct drm_i915_gem_object *obj = engine->status_page.obj;
62fdfeaf 2084
7d3fdfff 2085 if (obj == NULL) {
1f767e02 2086 unsigned flags;
e3efda49 2087 int ret;
e4ffd173 2088
0bc40be8 2089 obj = i915_gem_alloc_object(engine->dev, 4096);
e3efda49
CW
2090 if (obj == NULL) {
2091 DRM_ERROR("Failed to allocate status page\n");
2092 return -ENOMEM;
2093 }
62fdfeaf 2094
e3efda49
CW
2095 ret = i915_gem_object_set_cache_level(obj, I915_CACHE_LLC);
2096 if (ret)
2097 goto err_unref;
2098
1f767e02 2099 flags = 0;
0bc40be8 2100 if (!HAS_LLC(engine->dev))
1f767e02
CW
2101 /* On g33, we cannot place HWS above 256MiB, so
2102 * restrict its pinning to the low mappable arena.
2103 * Though this restriction is not documented for
2104 * gen4, gen5, or byt, they also behave similarly
2105 * and hang if the HWS is placed at the top of the
2106 * GTT. To generalise, it appears that all !llc
2107 * platforms have issues with us placing the HWS
2108 * above the mappable region (even though we never
2109 * actualy map it).
2110 */
2111 flags |= PIN_MAPPABLE;
2112 ret = i915_gem_obj_ggtt_pin(obj, 4096, flags);
e3efda49
CW
2113 if (ret) {
2114err_unref:
2115 drm_gem_object_unreference(&obj->base);
2116 return ret;
2117 }
2118
0bc40be8 2119 engine->status_page.obj = obj;
e3efda49 2120 }
62fdfeaf 2121
0bc40be8
TU
2122 engine->status_page.gfx_addr = i915_gem_obj_ggtt_offset(obj);
2123 engine->status_page.page_addr = kmap(sg_page(obj->pages->sgl));
2124 memset(engine->status_page.page_addr, 0, PAGE_SIZE);
62fdfeaf 2125
8187a2b7 2126 DRM_DEBUG_DRIVER("%s hws offset: 0x%08x\n",
0bc40be8 2127 engine->name, engine->status_page.gfx_addr);
62fdfeaf
EA
2128
2129 return 0;
62fdfeaf
EA
2130}
2131
0bc40be8 2132static int init_phys_status_page(struct intel_engine_cs *engine)
6b8294a4 2133{
0bc40be8 2134 struct drm_i915_private *dev_priv = engine->dev->dev_private;
6b8294a4
CW
2135
2136 if (!dev_priv->status_page_dmah) {
2137 dev_priv->status_page_dmah =
0bc40be8 2138 drm_pci_alloc(engine->dev, PAGE_SIZE, PAGE_SIZE);
6b8294a4
CW
2139 if (!dev_priv->status_page_dmah)
2140 return -ENOMEM;
2141 }
2142
0bc40be8
TU
2143 engine->status_page.page_addr = dev_priv->status_page_dmah->vaddr;
2144 memset(engine->status_page.page_addr, 0, PAGE_SIZE);
6b8294a4
CW
2145
2146 return 0;
2147}
2148
7ba717cf 2149void intel_unpin_ringbuffer_obj(struct intel_ringbuffer *ringbuf)
2919d291 2150{
def0c5f6 2151 if (HAS_LLC(ringbuf->obj->base.dev) && !ringbuf->obj->stolen)
0a798eb9 2152 i915_gem_object_unpin_map(ringbuf->obj);
def0c5f6
CW
2153 else
2154 iounmap(ringbuf->virtual_start);
8305216f 2155 ringbuf->virtual_start = NULL;
0eb973d3 2156 ringbuf->vma = NULL;
2919d291 2157 i915_gem_object_ggtt_unpin(ringbuf->obj);
7ba717cf
TD
2158}
2159
2160int intel_pin_and_map_ringbuffer_obj(struct drm_device *dev,
2161 struct intel_ringbuffer *ringbuf)
2162{
2163 struct drm_i915_private *dev_priv = to_i915(dev);
72e96d64 2164 struct i915_ggtt *ggtt = &dev_priv->ggtt;
7ba717cf 2165 struct drm_i915_gem_object *obj = ringbuf->obj;
a687a43a
CW
2166 /* Ring wraparound at offset 0 sometimes hangs. No idea why. */
2167 unsigned flags = PIN_OFFSET_BIAS | 4096;
8305216f 2168 void *addr;
7ba717cf
TD
2169 int ret;
2170
def0c5f6 2171 if (HAS_LLC(dev_priv) && !obj->stolen) {
a687a43a 2172 ret = i915_gem_obj_ggtt_pin(obj, PAGE_SIZE, flags);
def0c5f6
CW
2173 if (ret)
2174 return ret;
7ba717cf 2175
def0c5f6 2176 ret = i915_gem_object_set_to_cpu_domain(obj, true);
d2cad535
CW
2177 if (ret)
2178 goto err_unpin;
def0c5f6 2179
8305216f
DG
2180 addr = i915_gem_object_pin_map(obj);
2181 if (IS_ERR(addr)) {
2182 ret = PTR_ERR(addr);
d2cad535 2183 goto err_unpin;
def0c5f6
CW
2184 }
2185 } else {
a687a43a
CW
2186 ret = i915_gem_obj_ggtt_pin(obj, PAGE_SIZE,
2187 flags | PIN_MAPPABLE);
def0c5f6
CW
2188 if (ret)
2189 return ret;
7ba717cf 2190
def0c5f6 2191 ret = i915_gem_object_set_to_gtt_domain(obj, true);
d2cad535
CW
2192 if (ret)
2193 goto err_unpin;
def0c5f6 2194
ff3dc087
DCS
2195 /* Access through the GTT requires the device to be awake. */
2196 assert_rpm_wakelock_held(dev_priv);
2197
8305216f
DG
2198 addr = ioremap_wc(ggtt->mappable_base +
2199 i915_gem_obj_ggtt_offset(obj), ringbuf->size);
2200 if (addr == NULL) {
d2cad535
CW
2201 ret = -ENOMEM;
2202 goto err_unpin;
def0c5f6 2203 }
7ba717cf
TD
2204 }
2205
8305216f 2206 ringbuf->virtual_start = addr;
0eb973d3 2207 ringbuf->vma = i915_gem_obj_to_ggtt(obj);
7ba717cf 2208 return 0;
d2cad535
CW
2209
2210err_unpin:
2211 i915_gem_object_ggtt_unpin(obj);
2212 return ret;
7ba717cf
TD
2213}
2214
01101fa7 2215static void intel_destroy_ringbuffer_obj(struct intel_ringbuffer *ringbuf)
7ba717cf 2216{
2919d291
OM
2217 drm_gem_object_unreference(&ringbuf->obj->base);
2218 ringbuf->obj = NULL;
2219}
2220
01101fa7
CW
2221static int intel_alloc_ringbuffer_obj(struct drm_device *dev,
2222 struct intel_ringbuffer *ringbuf)
62fdfeaf 2223{
05394f39 2224 struct drm_i915_gem_object *obj;
62fdfeaf 2225
ebc052e0
CW
2226 obj = NULL;
2227 if (!HAS_LLC(dev))
93b0a4e0 2228 obj = i915_gem_object_create_stolen(dev, ringbuf->size);
ebc052e0 2229 if (obj == NULL)
93b0a4e0 2230 obj = i915_gem_alloc_object(dev, ringbuf->size);
e3efda49
CW
2231 if (obj == NULL)
2232 return -ENOMEM;
8187a2b7 2233
24f3a8cf
AG
2234 /* mark ring buffers as read-only from GPU side by default */
2235 obj->gt_ro = 1;
2236
93b0a4e0 2237 ringbuf->obj = obj;
e3efda49 2238
7ba717cf 2239 return 0;
e3efda49
CW
2240}
2241
01101fa7
CW
2242struct intel_ringbuffer *
2243intel_engine_create_ringbuffer(struct intel_engine_cs *engine, int size)
2244{
2245 struct intel_ringbuffer *ring;
2246 int ret;
2247
2248 ring = kzalloc(sizeof(*ring), GFP_KERNEL);
608c1a52
CW
2249 if (ring == NULL) {
2250 DRM_DEBUG_DRIVER("Failed to allocate ringbuffer %s\n",
2251 engine->name);
01101fa7 2252 return ERR_PTR(-ENOMEM);
608c1a52 2253 }
01101fa7 2254
4a570db5 2255 ring->engine = engine;
608c1a52 2256 list_add(&ring->link, &engine->buffers);
01101fa7
CW
2257
2258 ring->size = size;
2259 /* Workaround an erratum on the i830 which causes a hang if
2260 * the TAIL pointer points to within the last 2 cachelines
2261 * of the buffer.
2262 */
2263 ring->effective_size = size;
2264 if (IS_I830(engine->dev) || IS_845G(engine->dev))
2265 ring->effective_size -= 2 * CACHELINE_BYTES;
2266
2267 ring->last_retired_head = -1;
2268 intel_ring_update_space(ring);
2269
2270 ret = intel_alloc_ringbuffer_obj(engine->dev, ring);
2271 if (ret) {
608c1a52
CW
2272 DRM_DEBUG_DRIVER("Failed to allocate ringbuffer %s: %d\n",
2273 engine->name, ret);
2274 list_del(&ring->link);
01101fa7
CW
2275 kfree(ring);
2276 return ERR_PTR(ret);
2277 }
2278
2279 return ring;
2280}
2281
2282void
2283intel_ringbuffer_free(struct intel_ringbuffer *ring)
2284{
2285 intel_destroy_ringbuffer_obj(ring);
608c1a52 2286 list_del(&ring->link);
01101fa7
CW
2287 kfree(ring);
2288}
2289
e3efda49 2290static int intel_init_ring_buffer(struct drm_device *dev,
0bc40be8 2291 struct intel_engine_cs *engine)
e3efda49 2292{
bfc882b4 2293 struct intel_ringbuffer *ringbuf;
e3efda49
CW
2294 int ret;
2295
0bc40be8 2296 WARN_ON(engine->buffer);
bfc882b4 2297
0bc40be8
TU
2298 engine->dev = dev;
2299 INIT_LIST_HEAD(&engine->active_list);
2300 INIT_LIST_HEAD(&engine->request_list);
2301 INIT_LIST_HEAD(&engine->execlist_queue);
2302 INIT_LIST_HEAD(&engine->buffers);
2303 i915_gem_batch_pool_init(dev, &engine->batch_pool);
2304 memset(engine->semaphore.sync_seqno, 0,
2305 sizeof(engine->semaphore.sync_seqno));
e3efda49 2306
0bc40be8 2307 init_waitqueue_head(&engine->irq_queue);
e3efda49 2308
0bc40be8 2309 ringbuf = intel_engine_create_ringbuffer(engine, 32 * PAGE_SIZE);
b0366a54
DG
2310 if (IS_ERR(ringbuf)) {
2311 ret = PTR_ERR(ringbuf);
2312 goto error;
2313 }
0bc40be8 2314 engine->buffer = ringbuf;
01101fa7 2315
e3efda49 2316 if (I915_NEED_GFX_HWS(dev)) {
0bc40be8 2317 ret = init_status_page(engine);
e3efda49 2318 if (ret)
8ee14975 2319 goto error;
e3efda49 2320 } else {
0bc40be8
TU
2321 WARN_ON(engine->id != RCS);
2322 ret = init_phys_status_page(engine);
e3efda49 2323 if (ret)
8ee14975 2324 goto error;
e3efda49
CW
2325 }
2326
bfc882b4
DV
2327 ret = intel_pin_and_map_ringbuffer_obj(dev, ringbuf);
2328 if (ret) {
2329 DRM_ERROR("Failed to pin and map ringbuffer %s: %d\n",
0bc40be8 2330 engine->name, ret);
bfc882b4
DV
2331 intel_destroy_ringbuffer_obj(ringbuf);
2332 goto error;
e3efda49 2333 }
62fdfeaf 2334
0bc40be8 2335 ret = i915_cmd_parser_init_ring(engine);
44e895a8 2336 if (ret)
8ee14975
OM
2337 goto error;
2338
8ee14975 2339 return 0;
351e3db2 2340
8ee14975 2341error:
117897f4 2342 intel_cleanup_engine(engine);
8ee14975 2343 return ret;
62fdfeaf
EA
2344}
2345
117897f4 2346void intel_cleanup_engine(struct intel_engine_cs *engine)
62fdfeaf 2347{
6402c330 2348 struct drm_i915_private *dev_priv;
33626e6a 2349
117897f4 2350 if (!intel_engine_initialized(engine))
62fdfeaf
EA
2351 return;
2352
0bc40be8 2353 dev_priv = to_i915(engine->dev);
6402c330 2354
0bc40be8 2355 if (engine->buffer) {
117897f4 2356 intel_stop_engine(engine);
0bc40be8 2357 WARN_ON(!IS_GEN2(engine->dev) && (I915_READ_MODE(engine) & MODE_IDLE) == 0);
33626e6a 2358
0bc40be8
TU
2359 intel_unpin_ringbuffer_obj(engine->buffer);
2360 intel_ringbuffer_free(engine->buffer);
2361 engine->buffer = NULL;
b0366a54 2362 }
78501eac 2363
0bc40be8
TU
2364 if (engine->cleanup)
2365 engine->cleanup(engine);
8d19215b 2366
0bc40be8
TU
2367 if (I915_NEED_GFX_HWS(engine->dev)) {
2368 cleanup_status_page(engine);
7d3fdfff 2369 } else {
0bc40be8
TU
2370 WARN_ON(engine->id != RCS);
2371 cleanup_phys_status_page(engine);
7d3fdfff 2372 }
44e895a8 2373
0bc40be8
TU
2374 i915_cmd_parser_fini_ring(engine);
2375 i915_gem_batch_pool_fini(&engine->batch_pool);
2376 engine->dev = NULL;
62fdfeaf
EA
2377}
2378
666796da 2379int intel_engine_idle(struct intel_engine_cs *engine)
3e960501 2380{
a4b3a571 2381 struct drm_i915_gem_request *req;
3e960501 2382
3e960501 2383 /* Wait upon the last request to be completed */
0bc40be8 2384 if (list_empty(&engine->request_list))
3e960501
CW
2385 return 0;
2386
0bc40be8
TU
2387 req = list_entry(engine->request_list.prev,
2388 struct drm_i915_gem_request,
2389 list);
b4716185
CW
2390
2391 /* Make sure we do not trigger any retires */
2392 return __i915_wait_request(req,
c19ae989 2393 req->i915->mm.interruptible,
b4716185 2394 NULL, NULL);
3e960501
CW
2395}
2396
6689cb2b 2397int intel_ring_alloc_request_extras(struct drm_i915_gem_request *request)
9d773091 2398{
4a570db5 2399 request->ringbuf = request->engine->buffer;
9eba5d4a 2400 return 0;
9d773091
CW
2401}
2402
ccd98fe4
JH
2403int intel_ring_reserve_space(struct drm_i915_gem_request *request)
2404{
2405 /*
2406 * The first call merely notes the reserve request and is common for
2407 * all back ends. The subsequent localised _begin() call actually
2408 * ensures that the reservation is available. Without the begin, if
2409 * the request creator immediately submitted the request without
2410 * adding any commands to it then there might not actually be
2411 * sufficient room for the submission commands.
2412 */
2413 intel_ring_reserved_space_reserve(request->ringbuf, MIN_SPACE_FOR_ADD_REQUEST);
2414
2415 return intel_ring_begin(request, 0);
2416}
2417
29b1b415
JH
2418void intel_ring_reserved_space_reserve(struct intel_ringbuffer *ringbuf, int size)
2419{
92dcc67c 2420 GEM_BUG_ON(ringbuf->reserved_size);
29b1b415 2421 ringbuf->reserved_size = size;
29b1b415
JH
2422}
2423
2424void intel_ring_reserved_space_cancel(struct intel_ringbuffer *ringbuf)
2425{
92dcc67c 2426 GEM_BUG_ON(!ringbuf->reserved_size);
29b1b415 2427 ringbuf->reserved_size = 0;
29b1b415
JH
2428}
2429
2430void intel_ring_reserved_space_use(struct intel_ringbuffer *ringbuf)
2431{
92dcc67c
CW
2432 GEM_BUG_ON(!ringbuf->reserved_size);
2433 ringbuf->reserved_size = 0;
29b1b415
JH
2434}
2435
2436void intel_ring_reserved_space_end(struct intel_ringbuffer *ringbuf)
2437{
92dcc67c
CW
2438 GEM_BUG_ON(ringbuf->reserved_size);
2439}
2440
2441static int wait_for_space(struct drm_i915_gem_request *req, int bytes)
2442{
2443 struct intel_ringbuffer *ringbuf = req->ringbuf;
2444 struct intel_engine_cs *engine = req->engine;
2445 struct drm_i915_gem_request *target;
2446
2447 intel_ring_update_space(ringbuf);
2448 if (ringbuf->space >= bytes)
2449 return 0;
2450
2451 /*
2452 * Space is reserved in the ringbuffer for finalising the request,
2453 * as that cannot be allowed to fail. During request finalisation,
2454 * reserved_space is set to 0 to stop the overallocation and the
2455 * assumption is that then we never need to wait (which has the
2456 * risk of failing with EINTR).
2457 *
2458 * See also i915_gem_request_alloc() and i915_add_request().
2459 */
2460 GEM_BUG_ON(!ringbuf->reserved_size);
2461
2462 list_for_each_entry(target, &engine->request_list, list) {
2463 unsigned space;
2464
79bbcc29 2465 /*
92dcc67c
CW
2466 * The request queue is per-engine, so can contain requests
2467 * from multiple ringbuffers. Here, we must ignore any that
2468 * aren't from the ringbuffer we're considering.
79bbcc29 2469 */
92dcc67c
CW
2470 if (target->ringbuf != ringbuf)
2471 continue;
2472
2473 /* Would completion of this request free enough space? */
2474 space = __intel_ring_space(target->postfix, ringbuf->tail,
2475 ringbuf->size);
2476 if (space >= bytes)
2477 break;
79bbcc29 2478 }
29b1b415 2479
92dcc67c
CW
2480 if (WARN_ON(&target->list == &engine->request_list))
2481 return -ENOSPC;
2482
2483 return i915_wait_request(target);
29b1b415
JH
2484}
2485
92dcc67c 2486int intel_ring_begin(struct drm_i915_gem_request *req, int num_dwords)
cbcc80df 2487{
92dcc67c 2488 struct intel_ringbuffer *ringbuf = req->ringbuf;
79bbcc29 2489 int remain_actual = ringbuf->size - ringbuf->tail;
92dcc67c
CW
2490 int remain_usable = ringbuf->effective_size - ringbuf->tail;
2491 int bytes = num_dwords * sizeof(u32);
2492 int total_bytes, wait_bytes;
79bbcc29 2493 bool need_wrap = false;
29b1b415 2494
92dcc67c 2495 total_bytes = bytes + ringbuf->reserved_size;
29b1b415 2496
79bbcc29
JH
2497 if (unlikely(bytes > remain_usable)) {
2498 /*
2499 * Not enough space for the basic request. So need to flush
2500 * out the remainder and then wait for base + reserved.
2501 */
2502 wait_bytes = remain_actual + total_bytes;
2503 need_wrap = true;
92dcc67c
CW
2504 } else if (unlikely(total_bytes > remain_usable)) {
2505 /*
2506 * The base request will fit but the reserved space
2507 * falls off the end. So we don't need an immediate wrap
2508 * and only need to effectively wait for the reserved
2509 * size space from the start of ringbuffer.
2510 */
2511 wait_bytes = remain_actual + ringbuf->reserved_size;
79bbcc29 2512 } else {
92dcc67c
CW
2513 /* No wrapping required, just waiting. */
2514 wait_bytes = total_bytes;
cbcc80df
MK
2515 }
2516
92dcc67c
CW
2517 if (wait_bytes > ringbuf->space) {
2518 int ret = wait_for_space(req, wait_bytes);
cbcc80df
MK
2519 if (unlikely(ret))
2520 return ret;
79bbcc29 2521
92dcc67c 2522 intel_ring_update_space(ringbuf);
157d2c7f
CW
2523 if (unlikely(ringbuf->space < wait_bytes))
2524 return -EAGAIN;
cbcc80df
MK
2525 }
2526
92dcc67c
CW
2527 if (unlikely(need_wrap)) {
2528 GEM_BUG_ON(remain_actual > ringbuf->space);
2529 GEM_BUG_ON(ringbuf->tail + remain_actual > ringbuf->size);
78501eac 2530
92dcc67c
CW
2531 /* Fill the tail with MI_NOOP */
2532 memset(ringbuf->virtual_start + ringbuf->tail,
2533 0, remain_actual);
2534 ringbuf->tail = 0;
2535 ringbuf->space -= remain_actual;
2536 }
304d695c 2537
92dcc67c
CW
2538 ringbuf->space -= bytes;
2539 GEM_BUG_ON(ringbuf->space < 0);
304d695c 2540 return 0;
8187a2b7 2541}
78501eac 2542
753b1ad4 2543/* Align the ring tail to a cacheline boundary */
bba09b12 2544int intel_ring_cacheline_align(struct drm_i915_gem_request *req)
753b1ad4 2545{
4a570db5 2546 struct intel_engine_cs *engine = req->engine;
e2f80391 2547 int num_dwords = (engine->buffer->tail & (CACHELINE_BYTES - 1)) / sizeof(uint32_t);
753b1ad4
VS
2548 int ret;
2549
2550 if (num_dwords == 0)
2551 return 0;
2552
18393f63 2553 num_dwords = CACHELINE_BYTES / sizeof(uint32_t) - num_dwords;
5fb9de1a 2554 ret = intel_ring_begin(req, num_dwords);
753b1ad4
VS
2555 if (ret)
2556 return ret;
2557
2558 while (num_dwords--)
e2f80391 2559 intel_ring_emit(engine, MI_NOOP);
753b1ad4 2560
e2f80391 2561 intel_ring_advance(engine);
753b1ad4
VS
2562
2563 return 0;
2564}
2565
0bc40be8 2566void intel_ring_init_seqno(struct intel_engine_cs *engine, u32 seqno)
498d2ac1 2567{
d04bce48 2568 struct drm_i915_private *dev_priv = to_i915(engine->dev);
498d2ac1 2569
29dcb570
CW
2570 /* Our semaphore implementation is strictly monotonic (i.e. we proceed
2571 * so long as the semaphore value in the register/page is greater
2572 * than the sync value), so whenever we reset the seqno,
2573 * so long as we reset the tracking semaphore value to 0, it will
2574 * always be before the next request's seqno. If we don't reset
2575 * the semaphore value, then when the seqno moves backwards all
2576 * future waits will complete instantly (causing rendering corruption).
2577 */
d04bce48 2578 if (INTEL_INFO(dev_priv)->gen == 6 || INTEL_INFO(dev_priv)->gen == 7) {
0bc40be8
TU
2579 I915_WRITE(RING_SYNC_0(engine->mmio_base), 0);
2580 I915_WRITE(RING_SYNC_1(engine->mmio_base), 0);
d04bce48 2581 if (HAS_VEBOX(dev_priv))
0bc40be8 2582 I915_WRITE(RING_SYNC_2(engine->mmio_base), 0);
e1f99ce6 2583 }
a058d934
CW
2584 if (dev_priv->semaphore_obj) {
2585 struct drm_i915_gem_object *obj = dev_priv->semaphore_obj;
2586 struct page *page = i915_gem_object_get_dirty_page(obj, 0);
2587 void *semaphores = kmap(page);
2588 memset(semaphores + GEN8_SEMAPHORE_OFFSET(engine->id, 0),
2589 0, I915_NUM_ENGINES * gen8_semaphore_seqno_size);
2590 kunmap(page);
2591 }
29dcb570
CW
2592 memset(engine->semaphore.sync_seqno, 0,
2593 sizeof(engine->semaphore.sync_seqno));
d97ed339 2594
0bc40be8 2595 engine->set_seqno(engine, seqno);
01347126 2596 engine->last_submitted_seqno = seqno;
29dcb570 2597
0bc40be8 2598 engine->hangcheck.seqno = seqno;
8187a2b7 2599}
62fdfeaf 2600
0bc40be8 2601static void gen6_bsd_ring_write_tail(struct intel_engine_cs *engine,
297b0c5b 2602 u32 value)
881f47b6 2603{
0bc40be8 2604 struct drm_i915_private *dev_priv = engine->dev->dev_private;
881f47b6
XH
2605
2606 /* Every tail move must follow the sequence below */
12f55818
CW
2607
2608 /* Disable notification that the ring is IDLE. The GT
2609 * will then assume that it is busy and bring it out of rc6.
2610 */
0206e353 2611 I915_WRITE(GEN6_BSD_SLEEP_PSMI_CONTROL,
12f55818
CW
2612 _MASKED_BIT_ENABLE(GEN6_BSD_SLEEP_MSG_DISABLE));
2613
2614 /* Clear the context id. Here be magic! */
2615 I915_WRITE64(GEN6_BSD_RNCID, 0x0);
0206e353 2616
12f55818 2617 /* Wait for the ring not to be idle, i.e. for it to wake up. */
0206e353 2618 if (wait_for((I915_READ(GEN6_BSD_SLEEP_PSMI_CONTROL) &
12f55818
CW
2619 GEN6_BSD_SLEEP_INDICATOR) == 0,
2620 50))
2621 DRM_ERROR("timed out waiting for the BSD ring to wake up\n");
0206e353 2622
12f55818 2623 /* Now that the ring is fully powered up, update the tail */
0bc40be8
TU
2624 I915_WRITE_TAIL(engine, value);
2625 POSTING_READ(RING_TAIL(engine->mmio_base));
12f55818
CW
2626
2627 /* Let the ring send IDLE messages to the GT again,
2628 * and so let it sleep to conserve power when idle.
2629 */
0206e353 2630 I915_WRITE(GEN6_BSD_SLEEP_PSMI_CONTROL,
12f55818 2631 _MASKED_BIT_DISABLE(GEN6_BSD_SLEEP_MSG_DISABLE));
881f47b6
XH
2632}
2633
a84c3ae1 2634static int gen6_bsd_ring_flush(struct drm_i915_gem_request *req,
ea251324 2635 u32 invalidate, u32 flush)
881f47b6 2636{
4a570db5 2637 struct intel_engine_cs *engine = req->engine;
71a77e07 2638 uint32_t cmd;
b72f3acb
CW
2639 int ret;
2640
5fb9de1a 2641 ret = intel_ring_begin(req, 4);
b72f3acb
CW
2642 if (ret)
2643 return ret;
2644
71a77e07 2645 cmd = MI_FLUSH_DW;
e2f80391 2646 if (INTEL_INFO(engine->dev)->gen >= 8)
075b3bba 2647 cmd += 1;
f0a1fb10
CW
2648
2649 /* We always require a command barrier so that subsequent
2650 * commands, such as breadcrumb interrupts, are strictly ordered
2651 * wrt the contents of the write cache being flushed to memory
2652 * (and thus being coherent from the CPU).
2653 */
2654 cmd |= MI_FLUSH_DW_STORE_INDEX | MI_FLUSH_DW_OP_STOREDW;
2655
9a289771
JB
2656 /*
2657 * Bspec vol 1c.5 - video engine command streamer:
2658 * "If ENABLED, all TLBs will be invalidated once the flush
2659 * operation is complete. This bit is only valid when the
2660 * Post-Sync Operation field is a value of 1h or 3h."
2661 */
71a77e07 2662 if (invalidate & I915_GEM_GPU_DOMAINS)
f0a1fb10
CW
2663 cmd |= MI_INVALIDATE_TLB | MI_INVALIDATE_BSD;
2664
e2f80391
TU
2665 intel_ring_emit(engine, cmd);
2666 intel_ring_emit(engine,
2667 I915_GEM_HWS_SCRATCH_ADDR | MI_FLUSH_DW_USE_GTT);
2668 if (INTEL_INFO(engine->dev)->gen >= 8) {
2669 intel_ring_emit(engine, 0); /* upper addr */
2670 intel_ring_emit(engine, 0); /* value */
075b3bba 2671 } else {
e2f80391
TU
2672 intel_ring_emit(engine, 0);
2673 intel_ring_emit(engine, MI_NOOP);
075b3bba 2674 }
e2f80391 2675 intel_ring_advance(engine);
b72f3acb 2676 return 0;
881f47b6
XH
2677}
2678
1c7a0623 2679static int
53fddaf7 2680gen8_ring_dispatch_execbuffer(struct drm_i915_gem_request *req,
9bcb144c 2681 u64 offset, u32 len,
8e004efc 2682 unsigned dispatch_flags)
1c7a0623 2683{
4a570db5 2684 struct intel_engine_cs *engine = req->engine;
e2f80391 2685 bool ppgtt = USES_PPGTT(engine->dev) &&
8e004efc 2686 !(dispatch_flags & I915_DISPATCH_SECURE);
1c7a0623
BW
2687 int ret;
2688
5fb9de1a 2689 ret = intel_ring_begin(req, 4);
1c7a0623
BW
2690 if (ret)
2691 return ret;
2692
2693 /* FIXME(BDW): Address space and security selectors. */
e2f80391 2694 intel_ring_emit(engine, MI_BATCH_BUFFER_START_GEN8 | (ppgtt<<8) |
919032ec
AJ
2695 (dispatch_flags & I915_DISPATCH_RS ?
2696 MI_BATCH_RESOURCE_STREAMER : 0));
e2f80391
TU
2697 intel_ring_emit(engine, lower_32_bits(offset));
2698 intel_ring_emit(engine, upper_32_bits(offset));
2699 intel_ring_emit(engine, MI_NOOP);
2700 intel_ring_advance(engine);
1c7a0623
BW
2701
2702 return 0;
2703}
2704
d7d4eedd 2705static int
53fddaf7 2706hsw_ring_dispatch_execbuffer(struct drm_i915_gem_request *req,
8e004efc
JH
2707 u64 offset, u32 len,
2708 unsigned dispatch_flags)
d7d4eedd 2709{
4a570db5 2710 struct intel_engine_cs *engine = req->engine;
d7d4eedd
CW
2711 int ret;
2712
5fb9de1a 2713 ret = intel_ring_begin(req, 2);
d7d4eedd
CW
2714 if (ret)
2715 return ret;
2716
e2f80391 2717 intel_ring_emit(engine,
77072258 2718 MI_BATCH_BUFFER_START |
8e004efc 2719 (dispatch_flags & I915_DISPATCH_SECURE ?
919032ec
AJ
2720 0 : MI_BATCH_PPGTT_HSW | MI_BATCH_NON_SECURE_HSW) |
2721 (dispatch_flags & I915_DISPATCH_RS ?
2722 MI_BATCH_RESOURCE_STREAMER : 0));
d7d4eedd 2723 /* bit0-7 is the length on GEN6+ */
e2f80391
TU
2724 intel_ring_emit(engine, offset);
2725 intel_ring_advance(engine);
d7d4eedd
CW
2726
2727 return 0;
2728}
2729
881f47b6 2730static int
53fddaf7 2731gen6_ring_dispatch_execbuffer(struct drm_i915_gem_request *req,
9bcb144c 2732 u64 offset, u32 len,
8e004efc 2733 unsigned dispatch_flags)
881f47b6 2734{
4a570db5 2735 struct intel_engine_cs *engine = req->engine;
0206e353 2736 int ret;
ab6f8e32 2737
5fb9de1a 2738 ret = intel_ring_begin(req, 2);
0206e353
AJ
2739 if (ret)
2740 return ret;
e1f99ce6 2741
e2f80391 2742 intel_ring_emit(engine,
d7d4eedd 2743 MI_BATCH_BUFFER_START |
8e004efc
JH
2744 (dispatch_flags & I915_DISPATCH_SECURE ?
2745 0 : MI_BATCH_NON_SECURE_I965));
0206e353 2746 /* bit0-7 is the length on GEN6+ */
e2f80391
TU
2747 intel_ring_emit(engine, offset);
2748 intel_ring_advance(engine);
ab6f8e32 2749
0206e353 2750 return 0;
881f47b6
XH
2751}
2752
549f7365
CW
2753/* Blitter support (SandyBridge+) */
2754
a84c3ae1 2755static int gen6_ring_flush(struct drm_i915_gem_request *req,
ea251324 2756 u32 invalidate, u32 flush)
8d19215b 2757{
4a570db5 2758 struct intel_engine_cs *engine = req->engine;
e2f80391 2759 struct drm_device *dev = engine->dev;
71a77e07 2760 uint32_t cmd;
b72f3acb
CW
2761 int ret;
2762
5fb9de1a 2763 ret = intel_ring_begin(req, 4);
b72f3acb
CW
2764 if (ret)
2765 return ret;
2766
71a77e07 2767 cmd = MI_FLUSH_DW;
dbef0f15 2768 if (INTEL_INFO(dev)->gen >= 8)
075b3bba 2769 cmd += 1;
f0a1fb10
CW
2770
2771 /* We always require a command barrier so that subsequent
2772 * commands, such as breadcrumb interrupts, are strictly ordered
2773 * wrt the contents of the write cache being flushed to memory
2774 * (and thus being coherent from the CPU).
2775 */
2776 cmd |= MI_FLUSH_DW_STORE_INDEX | MI_FLUSH_DW_OP_STOREDW;
2777
9a289771
JB
2778 /*
2779 * Bspec vol 1c.3 - blitter engine command streamer:
2780 * "If ENABLED, all TLBs will be invalidated once the flush
2781 * operation is complete. This bit is only valid when the
2782 * Post-Sync Operation field is a value of 1h or 3h."
2783 */
71a77e07 2784 if (invalidate & I915_GEM_DOMAIN_RENDER)
f0a1fb10 2785 cmd |= MI_INVALIDATE_TLB;
e2f80391
TU
2786 intel_ring_emit(engine, cmd);
2787 intel_ring_emit(engine,
2788 I915_GEM_HWS_SCRATCH_ADDR | MI_FLUSH_DW_USE_GTT);
dbef0f15 2789 if (INTEL_INFO(dev)->gen >= 8) {
e2f80391
TU
2790 intel_ring_emit(engine, 0); /* upper addr */
2791 intel_ring_emit(engine, 0); /* value */
075b3bba 2792 } else {
e2f80391
TU
2793 intel_ring_emit(engine, 0);
2794 intel_ring_emit(engine, MI_NOOP);
075b3bba 2795 }
e2f80391 2796 intel_ring_advance(engine);
fd3da6c9 2797
b72f3acb 2798 return 0;
8d19215b
ZN
2799}
2800
5c1143bb
XH
2801int intel_init_render_ring_buffer(struct drm_device *dev)
2802{
4640c4ff 2803 struct drm_i915_private *dev_priv = dev->dev_private;
4a570db5 2804 struct intel_engine_cs *engine = &dev_priv->engine[RCS];
3e78998a
BW
2805 struct drm_i915_gem_object *obj;
2806 int ret;
5c1143bb 2807
e2f80391
TU
2808 engine->name = "render ring";
2809 engine->id = RCS;
2810 engine->exec_id = I915_EXEC_RENDER;
83e53802 2811 engine->hw_id = 0;
e2f80391 2812 engine->mmio_base = RENDER_RING_BASE;
59465b5f 2813
707d9cf9 2814 if (INTEL_INFO(dev)->gen >= 8) {
3e78998a
BW
2815 if (i915_semaphore_is_enabled(dev)) {
2816 obj = i915_gem_alloc_object(dev, 4096);
2817 if (obj == NULL) {
2818 DRM_ERROR("Failed to allocate semaphore bo. Disabling semaphores\n");
2819 i915.semaphores = 0;
2820 } else {
2821 i915_gem_object_set_cache_level(obj, I915_CACHE_LLC);
2822 ret = i915_gem_obj_ggtt_pin(obj, 0, PIN_NONBLOCK);
2823 if (ret != 0) {
2824 drm_gem_object_unreference(&obj->base);
2825 DRM_ERROR("Failed to pin semaphore bo. Disabling semaphores\n");
2826 i915.semaphores = 0;
2827 } else
2828 dev_priv->semaphore_obj = obj;
2829 }
2830 }
7225342a 2831
e2f80391
TU
2832 engine->init_context = intel_rcs_ctx_init;
2833 engine->add_request = gen6_add_request;
2834 engine->flush = gen8_render_ring_flush;
2835 engine->irq_get = gen8_ring_get_irq;
2836 engine->irq_put = gen8_ring_put_irq;
2837 engine->irq_enable_mask = GT_RENDER_USER_INTERRUPT;
c04e0f3b
CW
2838 engine->irq_seqno_barrier = gen6_seqno_barrier;
2839 engine->get_seqno = ring_get_seqno;
e2f80391 2840 engine->set_seqno = ring_set_seqno;
707d9cf9 2841 if (i915_semaphore_is_enabled(dev)) {
3e78998a 2842 WARN_ON(!dev_priv->semaphore_obj);
e2f80391
TU
2843 engine->semaphore.sync_to = gen8_ring_sync;
2844 engine->semaphore.signal = gen8_rcs_signal;
2845 GEN8_RING_SEMAPHORE_INIT(engine);
707d9cf9
BW
2846 }
2847 } else if (INTEL_INFO(dev)->gen >= 6) {
e2f80391
TU
2848 engine->init_context = intel_rcs_ctx_init;
2849 engine->add_request = gen6_add_request;
2850 engine->flush = gen7_render_ring_flush;
6c6cf5aa 2851 if (INTEL_INFO(dev)->gen == 6)
e2f80391
TU
2852 engine->flush = gen6_render_ring_flush;
2853 engine->irq_get = gen6_ring_get_irq;
2854 engine->irq_put = gen6_ring_put_irq;
2855 engine->irq_enable_mask = GT_RENDER_USER_INTERRUPT;
c04e0f3b
CW
2856 engine->irq_seqno_barrier = gen6_seqno_barrier;
2857 engine->get_seqno = ring_get_seqno;
e2f80391 2858 engine->set_seqno = ring_set_seqno;
707d9cf9 2859 if (i915_semaphore_is_enabled(dev)) {
e2f80391
TU
2860 engine->semaphore.sync_to = gen6_ring_sync;
2861 engine->semaphore.signal = gen6_signal;
707d9cf9
BW
2862 /*
2863 * The current semaphore is only applied on pre-gen8
2864 * platform. And there is no VCS2 ring on the pre-gen8
2865 * platform. So the semaphore between RCS and VCS2 is
2866 * initialized as INVALID. Gen8 will initialize the
2867 * sema between VCS2 and RCS later.
2868 */
e2f80391
TU
2869 engine->semaphore.mbox.wait[RCS] = MI_SEMAPHORE_SYNC_INVALID;
2870 engine->semaphore.mbox.wait[VCS] = MI_SEMAPHORE_SYNC_RV;
2871 engine->semaphore.mbox.wait[BCS] = MI_SEMAPHORE_SYNC_RB;
2872 engine->semaphore.mbox.wait[VECS] = MI_SEMAPHORE_SYNC_RVE;
2873 engine->semaphore.mbox.wait[VCS2] = MI_SEMAPHORE_SYNC_INVALID;
2874 engine->semaphore.mbox.signal[RCS] = GEN6_NOSYNC;
2875 engine->semaphore.mbox.signal[VCS] = GEN6_VRSYNC;
2876 engine->semaphore.mbox.signal[BCS] = GEN6_BRSYNC;
2877 engine->semaphore.mbox.signal[VECS] = GEN6_VERSYNC;
2878 engine->semaphore.mbox.signal[VCS2] = GEN6_NOSYNC;
707d9cf9 2879 }
c6df541c 2880 } else if (IS_GEN5(dev)) {
e2f80391
TU
2881 engine->add_request = pc_render_add_request;
2882 engine->flush = gen4_render_ring_flush;
2883 engine->get_seqno = pc_render_get_seqno;
2884 engine->set_seqno = pc_render_set_seqno;
2885 engine->irq_get = gen5_ring_get_irq;
2886 engine->irq_put = gen5_ring_put_irq;
2887 engine->irq_enable_mask = GT_RENDER_USER_INTERRUPT |
cc609d5d 2888 GT_RENDER_PIPECTL_NOTIFY_INTERRUPT;
59465b5f 2889 } else {
e2f80391 2890 engine->add_request = i9xx_add_request;
46f0f8d1 2891 if (INTEL_INFO(dev)->gen < 4)
e2f80391 2892 engine->flush = gen2_render_ring_flush;
46f0f8d1 2893 else
e2f80391
TU
2894 engine->flush = gen4_render_ring_flush;
2895 engine->get_seqno = ring_get_seqno;
2896 engine->set_seqno = ring_set_seqno;
c2798b19 2897 if (IS_GEN2(dev)) {
e2f80391
TU
2898 engine->irq_get = i8xx_ring_get_irq;
2899 engine->irq_put = i8xx_ring_put_irq;
c2798b19 2900 } else {
e2f80391
TU
2901 engine->irq_get = i9xx_ring_get_irq;
2902 engine->irq_put = i9xx_ring_put_irq;
c2798b19 2903 }
e2f80391 2904 engine->irq_enable_mask = I915_USER_INTERRUPT;
1ec14ad3 2905 }
e2f80391 2906 engine->write_tail = ring_write_tail;
707d9cf9 2907
d7d4eedd 2908 if (IS_HASWELL(dev))
e2f80391 2909 engine->dispatch_execbuffer = hsw_ring_dispatch_execbuffer;
1c7a0623 2910 else if (IS_GEN8(dev))
e2f80391 2911 engine->dispatch_execbuffer = gen8_ring_dispatch_execbuffer;
d7d4eedd 2912 else if (INTEL_INFO(dev)->gen >= 6)
e2f80391 2913 engine->dispatch_execbuffer = gen6_ring_dispatch_execbuffer;
fb3256da 2914 else if (INTEL_INFO(dev)->gen >= 4)
e2f80391 2915 engine->dispatch_execbuffer = i965_dispatch_execbuffer;
fb3256da 2916 else if (IS_I830(dev) || IS_845G(dev))
e2f80391 2917 engine->dispatch_execbuffer = i830_dispatch_execbuffer;
fb3256da 2918 else
e2f80391
TU
2919 engine->dispatch_execbuffer = i915_dispatch_execbuffer;
2920 engine->init_hw = init_render_ring;
2921 engine->cleanup = render_ring_cleanup;
59465b5f 2922
b45305fc
DV
2923 /* Workaround batchbuffer to combat CS tlb bug. */
2924 if (HAS_BROKEN_CS_TLB(dev)) {
c4d69da1 2925 obj = i915_gem_alloc_object(dev, I830_WA_SIZE);
b45305fc
DV
2926 if (obj == NULL) {
2927 DRM_ERROR("Failed to allocate batch bo\n");
2928 return -ENOMEM;
2929 }
2930
be1fa129 2931 ret = i915_gem_obj_ggtt_pin(obj, 0, 0);
b45305fc
DV
2932 if (ret != 0) {
2933 drm_gem_object_unreference(&obj->base);
2934 DRM_ERROR("Failed to ping batch bo\n");
2935 return ret;
2936 }
2937
e2f80391
TU
2938 engine->scratch.obj = obj;
2939 engine->scratch.gtt_offset = i915_gem_obj_ggtt_offset(obj);
b45305fc
DV
2940 }
2941
e2f80391 2942 ret = intel_init_ring_buffer(dev, engine);
99be1dfe
DV
2943 if (ret)
2944 return ret;
2945
2946 if (INTEL_INFO(dev)->gen >= 5) {
e2f80391 2947 ret = intel_init_pipe_control(engine);
99be1dfe
DV
2948 if (ret)
2949 return ret;
2950 }
2951
2952 return 0;
5c1143bb
XH
2953}
2954
2955int intel_init_bsd_ring_buffer(struct drm_device *dev)
2956{
4640c4ff 2957 struct drm_i915_private *dev_priv = dev->dev_private;
4a570db5 2958 struct intel_engine_cs *engine = &dev_priv->engine[VCS];
5c1143bb 2959
e2f80391
TU
2960 engine->name = "bsd ring";
2961 engine->id = VCS;
2962 engine->exec_id = I915_EXEC_BSD;
83e53802 2963 engine->hw_id = 1;
58fa3835 2964
e2f80391 2965 engine->write_tail = ring_write_tail;
780f18c8 2966 if (INTEL_INFO(dev)->gen >= 6) {
e2f80391 2967 engine->mmio_base = GEN6_BSD_RING_BASE;
0fd2c201
DV
2968 /* gen6 bsd needs a special wa for tail updates */
2969 if (IS_GEN6(dev))
e2f80391
TU
2970 engine->write_tail = gen6_bsd_ring_write_tail;
2971 engine->flush = gen6_bsd_ring_flush;
2972 engine->add_request = gen6_add_request;
c04e0f3b
CW
2973 engine->irq_seqno_barrier = gen6_seqno_barrier;
2974 engine->get_seqno = ring_get_seqno;
e2f80391 2975 engine->set_seqno = ring_set_seqno;
abd58f01 2976 if (INTEL_INFO(dev)->gen >= 8) {
e2f80391 2977 engine->irq_enable_mask =
abd58f01 2978 GT_RENDER_USER_INTERRUPT << GEN8_VCS1_IRQ_SHIFT;
e2f80391
TU
2979 engine->irq_get = gen8_ring_get_irq;
2980 engine->irq_put = gen8_ring_put_irq;
2981 engine->dispatch_execbuffer =
1c7a0623 2982 gen8_ring_dispatch_execbuffer;
707d9cf9 2983 if (i915_semaphore_is_enabled(dev)) {
e2f80391
TU
2984 engine->semaphore.sync_to = gen8_ring_sync;
2985 engine->semaphore.signal = gen8_xcs_signal;
2986 GEN8_RING_SEMAPHORE_INIT(engine);
707d9cf9 2987 }
abd58f01 2988 } else {
e2f80391
TU
2989 engine->irq_enable_mask = GT_BSD_USER_INTERRUPT;
2990 engine->irq_get = gen6_ring_get_irq;
2991 engine->irq_put = gen6_ring_put_irq;
2992 engine->dispatch_execbuffer =
1c7a0623 2993 gen6_ring_dispatch_execbuffer;
707d9cf9 2994 if (i915_semaphore_is_enabled(dev)) {
e2f80391
TU
2995 engine->semaphore.sync_to = gen6_ring_sync;
2996 engine->semaphore.signal = gen6_signal;
2997 engine->semaphore.mbox.wait[RCS] = MI_SEMAPHORE_SYNC_VR;
2998 engine->semaphore.mbox.wait[VCS] = MI_SEMAPHORE_SYNC_INVALID;
2999 engine->semaphore.mbox.wait[BCS] = MI_SEMAPHORE_SYNC_VB;
3000 engine->semaphore.mbox.wait[VECS] = MI_SEMAPHORE_SYNC_VVE;
3001 engine->semaphore.mbox.wait[VCS2] = MI_SEMAPHORE_SYNC_INVALID;
3002 engine->semaphore.mbox.signal[RCS] = GEN6_RVSYNC;
3003 engine->semaphore.mbox.signal[VCS] = GEN6_NOSYNC;
3004 engine->semaphore.mbox.signal[BCS] = GEN6_BVSYNC;
3005 engine->semaphore.mbox.signal[VECS] = GEN6_VEVSYNC;
3006 engine->semaphore.mbox.signal[VCS2] = GEN6_NOSYNC;
707d9cf9 3007 }
abd58f01 3008 }
58fa3835 3009 } else {
e2f80391
TU
3010 engine->mmio_base = BSD_RING_BASE;
3011 engine->flush = bsd_ring_flush;
3012 engine->add_request = i9xx_add_request;
3013 engine->get_seqno = ring_get_seqno;
3014 engine->set_seqno = ring_set_seqno;
e48d8634 3015 if (IS_GEN5(dev)) {
e2f80391
TU
3016 engine->irq_enable_mask = ILK_BSD_USER_INTERRUPT;
3017 engine->irq_get = gen5_ring_get_irq;
3018 engine->irq_put = gen5_ring_put_irq;
e48d8634 3019 } else {
e2f80391
TU
3020 engine->irq_enable_mask = I915_BSD_USER_INTERRUPT;
3021 engine->irq_get = i9xx_ring_get_irq;
3022 engine->irq_put = i9xx_ring_put_irq;
e48d8634 3023 }
e2f80391 3024 engine->dispatch_execbuffer = i965_dispatch_execbuffer;
58fa3835 3025 }
e2f80391 3026 engine->init_hw = init_ring_common;
58fa3835 3027
e2f80391 3028 return intel_init_ring_buffer(dev, engine);
5c1143bb 3029}
549f7365 3030
845f74a7 3031/**
62659920 3032 * Initialize the second BSD ring (eg. Broadwell GT3, Skylake GT3)
845f74a7
ZY
3033 */
3034int intel_init_bsd2_ring_buffer(struct drm_device *dev)
3035{
3036 struct drm_i915_private *dev_priv = dev->dev_private;
4a570db5 3037 struct intel_engine_cs *engine = &dev_priv->engine[VCS2];
e2f80391
TU
3038
3039 engine->name = "bsd2 ring";
3040 engine->id = VCS2;
3041 engine->exec_id = I915_EXEC_BSD;
83e53802 3042 engine->hw_id = 4;
e2f80391
TU
3043
3044 engine->write_tail = ring_write_tail;
3045 engine->mmio_base = GEN8_BSD2_RING_BASE;
3046 engine->flush = gen6_bsd_ring_flush;
3047 engine->add_request = gen6_add_request;
c04e0f3b
CW
3048 engine->irq_seqno_barrier = gen6_seqno_barrier;
3049 engine->get_seqno = ring_get_seqno;
e2f80391
TU
3050 engine->set_seqno = ring_set_seqno;
3051 engine->irq_enable_mask =
845f74a7 3052 GT_RENDER_USER_INTERRUPT << GEN8_VCS2_IRQ_SHIFT;
e2f80391
TU
3053 engine->irq_get = gen8_ring_get_irq;
3054 engine->irq_put = gen8_ring_put_irq;
3055 engine->dispatch_execbuffer =
845f74a7 3056 gen8_ring_dispatch_execbuffer;
3e78998a 3057 if (i915_semaphore_is_enabled(dev)) {
e2f80391
TU
3058 engine->semaphore.sync_to = gen8_ring_sync;
3059 engine->semaphore.signal = gen8_xcs_signal;
3060 GEN8_RING_SEMAPHORE_INIT(engine);
3e78998a 3061 }
e2f80391 3062 engine->init_hw = init_ring_common;
845f74a7 3063
e2f80391 3064 return intel_init_ring_buffer(dev, engine);
845f74a7
ZY
3065}
3066
549f7365
CW
3067int intel_init_blt_ring_buffer(struct drm_device *dev)
3068{
4640c4ff 3069 struct drm_i915_private *dev_priv = dev->dev_private;
4a570db5 3070 struct intel_engine_cs *engine = &dev_priv->engine[BCS];
e2f80391
TU
3071
3072 engine->name = "blitter ring";
3073 engine->id = BCS;
3074 engine->exec_id = I915_EXEC_BLT;
83e53802 3075 engine->hw_id = 2;
e2f80391
TU
3076
3077 engine->mmio_base = BLT_RING_BASE;
3078 engine->write_tail = ring_write_tail;
3079 engine->flush = gen6_ring_flush;
3080 engine->add_request = gen6_add_request;
c04e0f3b
CW
3081 engine->irq_seqno_barrier = gen6_seqno_barrier;
3082 engine->get_seqno = ring_get_seqno;
e2f80391 3083 engine->set_seqno = ring_set_seqno;
abd58f01 3084 if (INTEL_INFO(dev)->gen >= 8) {
e2f80391 3085 engine->irq_enable_mask =
abd58f01 3086 GT_RENDER_USER_INTERRUPT << GEN8_BCS_IRQ_SHIFT;
e2f80391
TU
3087 engine->irq_get = gen8_ring_get_irq;
3088 engine->irq_put = gen8_ring_put_irq;
3089 engine->dispatch_execbuffer = gen8_ring_dispatch_execbuffer;
707d9cf9 3090 if (i915_semaphore_is_enabled(dev)) {
e2f80391
TU
3091 engine->semaphore.sync_to = gen8_ring_sync;
3092 engine->semaphore.signal = gen8_xcs_signal;
3093 GEN8_RING_SEMAPHORE_INIT(engine);
707d9cf9 3094 }
abd58f01 3095 } else {
e2f80391
TU
3096 engine->irq_enable_mask = GT_BLT_USER_INTERRUPT;
3097 engine->irq_get = gen6_ring_get_irq;
3098 engine->irq_put = gen6_ring_put_irq;
3099 engine->dispatch_execbuffer = gen6_ring_dispatch_execbuffer;
707d9cf9 3100 if (i915_semaphore_is_enabled(dev)) {
e2f80391
TU
3101 engine->semaphore.signal = gen6_signal;
3102 engine->semaphore.sync_to = gen6_ring_sync;
707d9cf9
BW
3103 /*
3104 * The current semaphore is only applied on pre-gen8
3105 * platform. And there is no VCS2 ring on the pre-gen8
3106 * platform. So the semaphore between BCS and VCS2 is
3107 * initialized as INVALID. Gen8 will initialize the
3108 * sema between BCS and VCS2 later.
3109 */
e2f80391
TU
3110 engine->semaphore.mbox.wait[RCS] = MI_SEMAPHORE_SYNC_BR;
3111 engine->semaphore.mbox.wait[VCS] = MI_SEMAPHORE_SYNC_BV;
3112 engine->semaphore.mbox.wait[BCS] = MI_SEMAPHORE_SYNC_INVALID;
3113 engine->semaphore.mbox.wait[VECS] = MI_SEMAPHORE_SYNC_BVE;
3114 engine->semaphore.mbox.wait[VCS2] = MI_SEMAPHORE_SYNC_INVALID;
3115 engine->semaphore.mbox.signal[RCS] = GEN6_RBSYNC;
3116 engine->semaphore.mbox.signal[VCS] = GEN6_VBSYNC;
3117 engine->semaphore.mbox.signal[BCS] = GEN6_NOSYNC;
3118 engine->semaphore.mbox.signal[VECS] = GEN6_VEBSYNC;
3119 engine->semaphore.mbox.signal[VCS2] = GEN6_NOSYNC;
707d9cf9 3120 }
abd58f01 3121 }
e2f80391 3122 engine->init_hw = init_ring_common;
549f7365 3123
e2f80391 3124 return intel_init_ring_buffer(dev, engine);
549f7365 3125}
a7b9761d 3126
9a8a2213
BW
3127int intel_init_vebox_ring_buffer(struct drm_device *dev)
3128{
4640c4ff 3129 struct drm_i915_private *dev_priv = dev->dev_private;
4a570db5 3130 struct intel_engine_cs *engine = &dev_priv->engine[VECS];
9a8a2213 3131
e2f80391
TU
3132 engine->name = "video enhancement ring";
3133 engine->id = VECS;
3134 engine->exec_id = I915_EXEC_VEBOX;
83e53802 3135 engine->hw_id = 3;
9a8a2213 3136
e2f80391
TU
3137 engine->mmio_base = VEBOX_RING_BASE;
3138 engine->write_tail = ring_write_tail;
3139 engine->flush = gen6_ring_flush;
3140 engine->add_request = gen6_add_request;
c04e0f3b
CW
3141 engine->irq_seqno_barrier = gen6_seqno_barrier;
3142 engine->get_seqno = ring_get_seqno;
e2f80391 3143 engine->set_seqno = ring_set_seqno;
abd58f01
BW
3144
3145 if (INTEL_INFO(dev)->gen >= 8) {
e2f80391 3146 engine->irq_enable_mask =
40c499f9 3147 GT_RENDER_USER_INTERRUPT << GEN8_VECS_IRQ_SHIFT;
e2f80391
TU
3148 engine->irq_get = gen8_ring_get_irq;
3149 engine->irq_put = gen8_ring_put_irq;
3150 engine->dispatch_execbuffer = gen8_ring_dispatch_execbuffer;
707d9cf9 3151 if (i915_semaphore_is_enabled(dev)) {
e2f80391
TU
3152 engine->semaphore.sync_to = gen8_ring_sync;
3153 engine->semaphore.signal = gen8_xcs_signal;
3154 GEN8_RING_SEMAPHORE_INIT(engine);
707d9cf9 3155 }
abd58f01 3156 } else {
e2f80391
TU
3157 engine->irq_enable_mask = PM_VEBOX_USER_INTERRUPT;
3158 engine->irq_get = hsw_vebox_get_irq;
3159 engine->irq_put = hsw_vebox_put_irq;
3160 engine->dispatch_execbuffer = gen6_ring_dispatch_execbuffer;
707d9cf9 3161 if (i915_semaphore_is_enabled(dev)) {
e2f80391
TU
3162 engine->semaphore.sync_to = gen6_ring_sync;
3163 engine->semaphore.signal = gen6_signal;
3164 engine->semaphore.mbox.wait[RCS] = MI_SEMAPHORE_SYNC_VER;
3165 engine->semaphore.mbox.wait[VCS] = MI_SEMAPHORE_SYNC_VEV;
3166 engine->semaphore.mbox.wait[BCS] = MI_SEMAPHORE_SYNC_VEB;
3167 engine->semaphore.mbox.wait[VECS] = MI_SEMAPHORE_SYNC_INVALID;
3168 engine->semaphore.mbox.wait[VCS2] = MI_SEMAPHORE_SYNC_INVALID;
3169 engine->semaphore.mbox.signal[RCS] = GEN6_RVESYNC;
3170 engine->semaphore.mbox.signal[VCS] = GEN6_VVESYNC;
3171 engine->semaphore.mbox.signal[BCS] = GEN6_BVESYNC;
3172 engine->semaphore.mbox.signal[VECS] = GEN6_NOSYNC;
3173 engine->semaphore.mbox.signal[VCS2] = GEN6_NOSYNC;
707d9cf9 3174 }
abd58f01 3175 }
e2f80391 3176 engine->init_hw = init_ring_common;
9a8a2213 3177
e2f80391 3178 return intel_init_ring_buffer(dev, engine);
9a8a2213
BW
3179}
3180
a7b9761d 3181int
4866d729 3182intel_ring_flush_all_caches(struct drm_i915_gem_request *req)
a7b9761d 3183{
4a570db5 3184 struct intel_engine_cs *engine = req->engine;
a7b9761d
CW
3185 int ret;
3186
e2f80391 3187 if (!engine->gpu_caches_dirty)
a7b9761d
CW
3188 return 0;
3189
e2f80391 3190 ret = engine->flush(req, 0, I915_GEM_GPU_DOMAINS);
a7b9761d
CW
3191 if (ret)
3192 return ret;
3193
a84c3ae1 3194 trace_i915_gem_ring_flush(req, 0, I915_GEM_GPU_DOMAINS);
a7b9761d 3195
e2f80391 3196 engine->gpu_caches_dirty = false;
a7b9761d
CW
3197 return 0;
3198}
3199
3200int
2f20055d 3201intel_ring_invalidate_all_caches(struct drm_i915_gem_request *req)
a7b9761d 3202{
4a570db5 3203 struct intel_engine_cs *engine = req->engine;
a7b9761d
CW
3204 uint32_t flush_domains;
3205 int ret;
3206
3207 flush_domains = 0;
e2f80391 3208 if (engine->gpu_caches_dirty)
a7b9761d
CW
3209 flush_domains = I915_GEM_GPU_DOMAINS;
3210
e2f80391 3211 ret = engine->flush(req, I915_GEM_GPU_DOMAINS, flush_domains);
a7b9761d
CW
3212 if (ret)
3213 return ret;
3214
a84c3ae1 3215 trace_i915_gem_ring_flush(req, I915_GEM_GPU_DOMAINS, flush_domains);
a7b9761d 3216
e2f80391 3217 engine->gpu_caches_dirty = false;
a7b9761d
CW
3218 return 0;
3219}
e3efda49
CW
3220
3221void
117897f4 3222intel_stop_engine(struct intel_engine_cs *engine)
e3efda49
CW
3223{
3224 int ret;
3225
117897f4 3226 if (!intel_engine_initialized(engine))
e3efda49
CW
3227 return;
3228
666796da 3229 ret = intel_engine_idle(engine);
f4457ae7 3230 if (ret)
e3efda49 3231 DRM_ERROR("failed to quiesce %s whilst cleaning up: %d\n",
0bc40be8 3232 engine->name, ret);
e3efda49 3233
0bc40be8 3234 stop_ring(engine);
e3efda49 3235}
This page took 0.697075 seconds and 5 git commands to generate.