1 // SPDX-License-Identifier: MIT
2 /*
3 * Copyright © 2014 Intel Corporation
4 */
5
6 #include "gen8_engine_cs.h"
7 #include "i915_drv.h"
8 #include "intel_engine_regs.h"
9 #include "intel_gpu_commands.h"
10 #include "intel_lrc.h"
11 #include "intel_ring.h"
12
gen8_emit_flush_rcs(struct i915_request * rq,u32 mode)13 int gen8_emit_flush_rcs(struct i915_request *rq, u32 mode)
14 {
15 bool vf_flush_wa = false, dc_flush_wa = false;
16 u32 *cs, flags = 0;
17 int len;
18
19 flags |= PIPE_CONTROL_CS_STALL;
20
21 if (mode & EMIT_FLUSH) {
22 flags |= PIPE_CONTROL_RENDER_TARGET_CACHE_FLUSH;
23 flags |= PIPE_CONTROL_DEPTH_CACHE_FLUSH;
24 flags |= PIPE_CONTROL_DC_FLUSH_ENABLE;
25 flags |= PIPE_CONTROL_FLUSH_ENABLE;
26 }
27
28 if (mode & EMIT_INVALIDATE) {
29 flags |= PIPE_CONTROL_TLB_INVALIDATE;
30 flags |= PIPE_CONTROL_INSTRUCTION_CACHE_INVALIDATE;
31 flags |= PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE;
32 flags |= PIPE_CONTROL_VF_CACHE_INVALIDATE;
33 flags |= PIPE_CONTROL_CONST_CACHE_INVALIDATE;
34 flags |= PIPE_CONTROL_STATE_CACHE_INVALIDATE;
35 flags |= PIPE_CONTROL_QW_WRITE;
36 flags |= PIPE_CONTROL_STORE_DATA_INDEX;
37
38 /*
39 * On GEN9: before VF_CACHE_INVALIDATE we need to emit a NULL
40 * pipe control.
41 */
42 if (GRAPHICS_VER(rq->engine->i915) == 9)
43 vf_flush_wa = true;
44
45 /* WaForGAMHang:kbl */
46 if (IS_KBL_GRAPHICS_STEP(rq->engine->i915, 0, STEP_C0))
47 dc_flush_wa = true;
48 }
49
50 len = 6;
51
52 if (vf_flush_wa)
53 len += 6;
54
55 if (dc_flush_wa)
56 len += 12;
57
58 cs = intel_ring_begin(rq, len);
59 if (IS_ERR(cs))
60 return PTR_ERR(cs);
61
62 if (vf_flush_wa)
63 cs = gen8_emit_pipe_control(cs, 0, 0);
64
65 if (dc_flush_wa)
66 cs = gen8_emit_pipe_control(cs, PIPE_CONTROL_DC_FLUSH_ENABLE,
67 0);
68
69 cs = gen8_emit_pipe_control(cs, flags, LRC_PPHWSP_SCRATCH_ADDR);
70
71 if (dc_flush_wa)
72 cs = gen8_emit_pipe_control(cs, PIPE_CONTROL_CS_STALL, 0);
73
74 intel_ring_advance(rq, cs);
75
76 return 0;
77 }
78
gen8_emit_flush_xcs(struct i915_request * rq,u32 mode)79 int gen8_emit_flush_xcs(struct i915_request *rq, u32 mode)
80 {
81 u32 cmd, *cs;
82
83 cs = intel_ring_begin(rq, 4);
84 if (IS_ERR(cs))
85 return PTR_ERR(cs);
86
87 cmd = MI_FLUSH_DW + 1;
88
89 /*
90 * We always require a command barrier so that subsequent
91 * commands, such as breadcrumb interrupts, are strictly ordered
92 * wrt the contents of the write cache being flushed to memory
93 * (and thus being coherent from the CPU).
94 */
95 cmd |= MI_FLUSH_DW_STORE_INDEX | MI_FLUSH_DW_OP_STOREDW;
96
97 if (mode & EMIT_INVALIDATE) {
98 cmd |= MI_INVALIDATE_TLB;
99 if (rq->engine->class == VIDEO_DECODE_CLASS)
100 cmd |= MI_INVALIDATE_BSD;
101 }
102
103 *cs++ = cmd;
104 *cs++ = LRC_PPHWSP_SCRATCH_ADDR;
105 *cs++ = 0; /* upper addr */
106 *cs++ = 0; /* value */
107 intel_ring_advance(rq, cs);
108
109 return 0;
110 }
111
gen11_emit_flush_rcs(struct i915_request * rq,u32 mode)112 int gen11_emit_flush_rcs(struct i915_request *rq, u32 mode)
113 {
114 if (mode & EMIT_FLUSH) {
115 u32 *cs;
116 u32 flags = 0;
117
118 flags |= PIPE_CONTROL_CS_STALL;
119
120 flags |= PIPE_CONTROL_TILE_CACHE_FLUSH;
121 flags |= PIPE_CONTROL_RENDER_TARGET_CACHE_FLUSH;
122 flags |= PIPE_CONTROL_DEPTH_CACHE_FLUSH;
123 flags |= PIPE_CONTROL_DC_FLUSH_ENABLE;
124 flags |= PIPE_CONTROL_FLUSH_ENABLE;
125 flags |= PIPE_CONTROL_QW_WRITE;
126 flags |= PIPE_CONTROL_STORE_DATA_INDEX;
127
128 cs = intel_ring_begin(rq, 6);
129 if (IS_ERR(cs))
130 return PTR_ERR(cs);
131
132 cs = gen8_emit_pipe_control(cs, flags, LRC_PPHWSP_SCRATCH_ADDR);
133 intel_ring_advance(rq, cs);
134 }
135
136 if (mode & EMIT_INVALIDATE) {
137 u32 *cs;
138 u32 flags = 0;
139
140 flags |= PIPE_CONTROL_CS_STALL;
141
142 flags |= PIPE_CONTROL_COMMAND_CACHE_INVALIDATE;
143 flags |= PIPE_CONTROL_TLB_INVALIDATE;
144 flags |= PIPE_CONTROL_INSTRUCTION_CACHE_INVALIDATE;
145 flags |= PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE;
146 flags |= PIPE_CONTROL_VF_CACHE_INVALIDATE;
147 flags |= PIPE_CONTROL_CONST_CACHE_INVALIDATE;
148 flags |= PIPE_CONTROL_STATE_CACHE_INVALIDATE;
149 flags |= PIPE_CONTROL_QW_WRITE;
150 flags |= PIPE_CONTROL_STORE_DATA_INDEX;
151
152 cs = intel_ring_begin(rq, 6);
153 if (IS_ERR(cs))
154 return PTR_ERR(cs);
155
156 cs = gen8_emit_pipe_control(cs, flags, LRC_PPHWSP_SCRATCH_ADDR);
157 intel_ring_advance(rq, cs);
158 }
159
160 return 0;
161 }
162
preparser_disable(bool state)163 static u32 preparser_disable(bool state)
164 {
165 return MI_ARB_CHECK | 1 << 8 | state;
166 }
167
gen12_emit_aux_table_inv(struct intel_gt * gt,u32 * cs,const i915_reg_t inv_reg)168 u32 *gen12_emit_aux_table_inv(struct intel_gt *gt, u32 *cs, const i915_reg_t inv_reg)
169 {
170 u32 gsi_offset = gt->uncore->gsi_offset;
171
172 *cs++ = MI_LOAD_REGISTER_IMM(1) | MI_LRI_MMIO_REMAP_EN;
173 *cs++ = i915_mmio_reg_offset(inv_reg) + gsi_offset;
174 *cs++ = AUX_INV;
175 *cs++ = MI_NOOP;
176
177 return cs;
178 }
179
gen12_emit_flush_rcs(struct i915_request * rq,u32 mode)180 int gen12_emit_flush_rcs(struct i915_request *rq, u32 mode)
181 {
182 struct intel_engine_cs *engine = rq->engine;
183
184 if (mode & EMIT_FLUSH) {
185 u32 flags = 0;
186 u32 *cs;
187
188 flags |= PIPE_CONTROL_TILE_CACHE_FLUSH;
189 flags |= PIPE_CONTROL_FLUSH_L3;
190 flags |= PIPE_CONTROL_RENDER_TARGET_CACHE_FLUSH;
191 flags |= PIPE_CONTROL_DEPTH_CACHE_FLUSH;
192 /* Wa_1409600907:tgl,adl-p */
193 flags |= PIPE_CONTROL_DEPTH_STALL;
194 flags |= PIPE_CONTROL_DC_FLUSH_ENABLE;
195 flags |= PIPE_CONTROL_FLUSH_ENABLE;
196
197 flags |= PIPE_CONTROL_STORE_DATA_INDEX;
198 flags |= PIPE_CONTROL_QW_WRITE;
199
200 flags |= PIPE_CONTROL_CS_STALL;
201
202 if (!HAS_3D_PIPELINE(engine->i915))
203 flags &= ~PIPE_CONTROL_3D_ARCH_FLAGS;
204 else if (engine->class == COMPUTE_CLASS)
205 flags &= ~PIPE_CONTROL_3D_ENGINE_FLAGS;
206
207 cs = intel_ring_begin(rq, 6);
208 if (IS_ERR(cs))
209 return PTR_ERR(cs);
210
211 cs = gen12_emit_pipe_control(cs,
212 PIPE_CONTROL0_HDC_PIPELINE_FLUSH,
213 flags, LRC_PPHWSP_SCRATCH_ADDR);
214 intel_ring_advance(rq, cs);
215 }
216
217 if (mode & EMIT_INVALIDATE) {
218 u32 flags = 0;
219 u32 *cs, count;
220
221 flags |= PIPE_CONTROL_COMMAND_CACHE_INVALIDATE;
222 flags |= PIPE_CONTROL_TLB_INVALIDATE;
223 flags |= PIPE_CONTROL_INSTRUCTION_CACHE_INVALIDATE;
224 flags |= PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE;
225 flags |= PIPE_CONTROL_VF_CACHE_INVALIDATE;
226 flags |= PIPE_CONTROL_CONST_CACHE_INVALIDATE;
227 flags |= PIPE_CONTROL_STATE_CACHE_INVALIDATE;
228
229 flags |= PIPE_CONTROL_STORE_DATA_INDEX;
230 flags |= PIPE_CONTROL_QW_WRITE;
231
232 flags |= PIPE_CONTROL_CS_STALL;
233
234 if (!HAS_3D_PIPELINE(engine->i915))
235 flags &= ~PIPE_CONTROL_3D_ARCH_FLAGS;
236 else if (engine->class == COMPUTE_CLASS)
237 flags &= ~PIPE_CONTROL_3D_ENGINE_FLAGS;
238
239 if (!HAS_FLAT_CCS(rq->engine->i915))
240 count = 8 + 4;
241 else
242 count = 8;
243
244 cs = intel_ring_begin(rq, count);
245 if (IS_ERR(cs))
246 return PTR_ERR(cs);
247
248 /*
249 * Prevent the pre-parser from skipping past the TLB
250 * invalidate and loading a stale page for the batch
251 * buffer / request payload.
252 */
253 *cs++ = preparser_disable(true);
254
255 cs = gen8_emit_pipe_control(cs, flags, LRC_PPHWSP_SCRATCH_ADDR);
256
257 if (!HAS_FLAT_CCS(rq->engine->i915)) {
258 /* hsdes: 1809175790 */
259 cs = gen12_emit_aux_table_inv(rq->engine->gt,
260 cs, GEN12_GFX_CCS_AUX_NV);
261 }
262
263 *cs++ = preparser_disable(false);
264 intel_ring_advance(rq, cs);
265 }
266
267 return 0;
268 }
269
gen12_emit_flush_xcs(struct i915_request * rq,u32 mode)270 int gen12_emit_flush_xcs(struct i915_request *rq, u32 mode)
271 {
272 intel_engine_mask_t aux_inv = 0;
273 u32 cmd, *cs;
274
275 cmd = 4;
276 if (mode & EMIT_INVALIDATE) {
277 cmd += 2;
278
279 if (!HAS_FLAT_CCS(rq->engine->i915) &&
280 (rq->engine->class == VIDEO_DECODE_CLASS ||
281 rq->engine->class == VIDEO_ENHANCEMENT_CLASS)) {
282 aux_inv = rq->engine->mask &
283 ~GENMASK(_BCS(I915_MAX_BCS - 1), BCS0);
284 if (aux_inv)
285 cmd += 4;
286 }
287 }
288
289 cs = intel_ring_begin(rq, cmd);
290 if (IS_ERR(cs))
291 return PTR_ERR(cs);
292
293 if (mode & EMIT_INVALIDATE)
294 *cs++ = preparser_disable(true);
295
296 cmd = MI_FLUSH_DW + 1;
297
298 /*
299 * We always require a command barrier so that subsequent
300 * commands, such as breadcrumb interrupts, are strictly ordered
301 * wrt the contents of the write cache being flushed to memory
302 * (and thus being coherent from the CPU).
303 */
304 cmd |= MI_FLUSH_DW_STORE_INDEX | MI_FLUSH_DW_OP_STOREDW;
305
306 if (mode & EMIT_INVALIDATE) {
307 cmd |= MI_INVALIDATE_TLB;
308 if (rq->engine->class == VIDEO_DECODE_CLASS)
309 cmd |= MI_INVALIDATE_BSD;
310 }
311
312 *cs++ = cmd;
313 *cs++ = LRC_PPHWSP_SCRATCH_ADDR;
314 *cs++ = 0; /* upper addr */
315 *cs++ = 0; /* value */
316
317 if (aux_inv) { /* hsdes: 1809175790 */
318 if (rq->engine->class == VIDEO_DECODE_CLASS)
319 cs = gen12_emit_aux_table_inv(rq->engine->gt,
320 cs, GEN12_VD0_AUX_NV);
321 else
322 cs = gen12_emit_aux_table_inv(rq->engine->gt,
323 cs, GEN12_VE0_AUX_NV);
324 }
325
326 if (mode & EMIT_INVALIDATE)
327 *cs++ = preparser_disable(false);
328
329 intel_ring_advance(rq, cs);
330
331 return 0;
332 }
333
preempt_address(struct intel_engine_cs * engine)334 static u32 preempt_address(struct intel_engine_cs *engine)
335 {
336 return (i915_ggtt_offset(engine->status_page.vma) +
337 I915_GEM_HWS_PREEMPT_ADDR);
338 }
339
hwsp_offset(const struct i915_request * rq)340 static u32 hwsp_offset(const struct i915_request *rq)
341 {
342 const struct intel_timeline *tl;
343
344 /* Before the request is executed, the timeline is fixed */
345 tl = rcu_dereference_protected(rq->timeline,
346 !i915_request_signaled(rq));
347
348 /* See the comment in i915_request_active_seqno(). */
349 return page_mask_bits(tl->hwsp_offset) + offset_in_page(rq->hwsp_seqno);
350 }
351
gen8_emit_init_breadcrumb(struct i915_request * rq)352 int gen8_emit_init_breadcrumb(struct i915_request *rq)
353 {
354 u32 *cs;
355
356 GEM_BUG_ON(i915_request_has_initial_breadcrumb(rq));
357 if (!i915_request_timeline(rq)->has_initial_breadcrumb)
358 return 0;
359
360 cs = intel_ring_begin(rq, 6);
361 if (IS_ERR(cs))
362 return PTR_ERR(cs);
363
364 *cs++ = MI_STORE_DWORD_IMM_GEN4 | MI_USE_GGTT;
365 *cs++ = hwsp_offset(rq);
366 *cs++ = 0;
367 *cs++ = rq->fence.seqno - 1;
368
369 /*
370 * Check if we have been preempted before we even get started.
371 *
372 * After this point i915_request_started() reports true, even if
373 * we get preempted and so are no longer running.
374 *
375 * i915_request_started() is used during preemption processing
376 * to decide if the request is currently inside the user payload
377 * or spinning on a kernel semaphore (or earlier). For no-preemption
378 * requests, we do allow preemption on the semaphore before the user
379 * payload, but do not allow preemption once the request is started.
380 *
381 * i915_request_started() is similarly used during GPU hangs to
382 * determine if the user's payload was guilty, and if so, the
383 * request is banned. Before the request is started, it is assumed
384 * to be unharmed and an innocent victim of another's hang.
385 */
386 *cs++ = MI_NOOP;
387 *cs++ = MI_ARB_CHECK;
388
389 intel_ring_advance(rq, cs);
390
391 /* Record the updated position of the request's payload */
392 rq->infix = intel_ring_offset(rq, cs);
393
394 __set_bit(I915_FENCE_FLAG_INITIAL_BREADCRUMB, &rq->fence.flags);
395
396 return 0;
397 }
398
__gen125_emit_bb_start(struct i915_request * rq,u64 offset,u32 len,const unsigned int flags,u32 arb)399 static int __gen125_emit_bb_start(struct i915_request *rq,
400 u64 offset, u32 len,
401 const unsigned int flags,
402 u32 arb)
403 {
404 struct intel_context *ce = rq->context;
405 u32 wa_offset = lrc_indirect_bb(ce);
406 u32 *cs;
407
408 cs = intel_ring_begin(rq, 12);
409 if (IS_ERR(cs))
410 return PTR_ERR(cs);
411
412 *cs++ = MI_ARB_ON_OFF | arb;
413
414 *cs++ = MI_LOAD_REGISTER_MEM_GEN8 |
415 MI_SRM_LRM_GLOBAL_GTT |
416 MI_LRI_LRM_CS_MMIO;
417 *cs++ = i915_mmio_reg_offset(RING_PREDICATE_RESULT(0));
418 *cs++ = wa_offset + DG2_PREDICATE_RESULT_WA;
419 *cs++ = 0;
420
421 *cs++ = MI_BATCH_BUFFER_START_GEN8 |
422 (flags & I915_DISPATCH_SECURE ? 0 : BIT(8));
423 *cs++ = lower_32_bits(offset);
424 *cs++ = upper_32_bits(offset);
425
426 /* Fixup stray MI_SET_PREDICATE as it prevents us executing the ring */
427 *cs++ = MI_BATCH_BUFFER_START_GEN8;
428 *cs++ = wa_offset + DG2_PREDICATE_RESULT_BB;
429 *cs++ = 0;
430
431 *cs++ = MI_ARB_ON_OFF | MI_ARB_DISABLE;
432
433 intel_ring_advance(rq, cs);
434
435 return 0;
436 }
437
gen125_emit_bb_start_noarb(struct i915_request * rq,u64 offset,u32 len,const unsigned int flags)438 int gen125_emit_bb_start_noarb(struct i915_request *rq,
439 u64 offset, u32 len,
440 const unsigned int flags)
441 {
442 return __gen125_emit_bb_start(rq, offset, len, flags, MI_ARB_DISABLE);
443 }
444
gen125_emit_bb_start(struct i915_request * rq,u64 offset,u32 len,const unsigned int flags)445 int gen125_emit_bb_start(struct i915_request *rq,
446 u64 offset, u32 len,
447 const unsigned int flags)
448 {
449 return __gen125_emit_bb_start(rq, offset, len, flags, MI_ARB_ENABLE);
450 }
451
gen8_emit_bb_start_noarb(struct i915_request * rq,u64 offset,u32 len,const unsigned int flags)452 int gen8_emit_bb_start_noarb(struct i915_request *rq,
453 u64 offset, u32 len,
454 const unsigned int flags)
455 {
456 u32 *cs;
457
458 cs = intel_ring_begin(rq, 4);
459 if (IS_ERR(cs))
460 return PTR_ERR(cs);
461
462 /*
463 * WaDisableCtxRestoreArbitration:bdw,chv
464 *
465 * We don't need to perform MI_ARB_ENABLE as often as we do (in
466 * particular all the gen that do not need the w/a at all!), if we
467 * took care to make sure that on every switch into this context
468 * (both ordinary and for preemption) that arbitrartion was enabled
469 * we would be fine. However, for gen8 there is another w/a that
470 * requires us to not preempt inside GPGPU execution, so we keep
471 * arbitration disabled for gen8 batches. Arbitration will be
472 * re-enabled before we close the request
473 * (engine->emit_fini_breadcrumb).
474 */
475 *cs++ = MI_ARB_ON_OFF | MI_ARB_DISABLE;
476
477 /* FIXME(BDW+): Address space and security selectors. */
478 *cs++ = MI_BATCH_BUFFER_START_GEN8 |
479 (flags & I915_DISPATCH_SECURE ? 0 : BIT(8));
480 *cs++ = lower_32_bits(offset);
481 *cs++ = upper_32_bits(offset);
482
483 intel_ring_advance(rq, cs);
484
485 return 0;
486 }
487
gen8_emit_bb_start(struct i915_request * rq,u64 offset,u32 len,const unsigned int flags)488 int gen8_emit_bb_start(struct i915_request *rq,
489 u64 offset, u32 len,
490 const unsigned int flags)
491 {
492 u32 *cs;
493
494 if (unlikely(i915_request_has_nopreempt(rq)))
495 return gen8_emit_bb_start_noarb(rq, offset, len, flags);
496
497 cs = intel_ring_begin(rq, 6);
498 if (IS_ERR(cs))
499 return PTR_ERR(cs);
500
501 *cs++ = MI_ARB_ON_OFF | MI_ARB_ENABLE;
502
503 *cs++ = MI_BATCH_BUFFER_START_GEN8 |
504 (flags & I915_DISPATCH_SECURE ? 0 : BIT(8));
505 *cs++ = lower_32_bits(offset);
506 *cs++ = upper_32_bits(offset);
507
508 *cs++ = MI_ARB_ON_OFF | MI_ARB_DISABLE;
509 *cs++ = MI_NOOP;
510
511 intel_ring_advance(rq, cs);
512
513 return 0;
514 }
515
assert_request_valid(struct i915_request * rq)516 static void assert_request_valid(struct i915_request *rq)
517 {
518 struct intel_ring *ring __maybe_unused = rq->ring;
519
520 /* Can we unwind this request without appearing to go forwards? */
521 GEM_BUG_ON(intel_ring_direction(ring, rq->wa_tail, rq->head) <= 0);
522 }
523
524 /*
525 * Reserve space for 2 NOOPs at the end of each request to be
526 * used as a workaround for not being allowed to do lite
527 * restore with HEAD==TAIL (WaIdleLiteRestore).
528 */
gen8_emit_wa_tail(struct i915_request * rq,u32 * cs)529 static u32 *gen8_emit_wa_tail(struct i915_request *rq, u32 *cs)
530 {
531 /* Ensure there's always at least one preemption point per-request. */
532 *cs++ = MI_ARB_CHECK;
533 *cs++ = MI_NOOP;
534 rq->wa_tail = intel_ring_offset(rq, cs);
535
536 /* Check that entire request is less than half the ring */
537 assert_request_valid(rq);
538
539 return cs;
540 }
541
emit_preempt_busywait(struct i915_request * rq,u32 * cs)542 static u32 *emit_preempt_busywait(struct i915_request *rq, u32 *cs)
543 {
544 *cs++ = MI_ARB_CHECK; /* trigger IDLE->ACTIVE first */
545 *cs++ = MI_SEMAPHORE_WAIT |
546 MI_SEMAPHORE_GLOBAL_GTT |
547 MI_SEMAPHORE_POLL |
548 MI_SEMAPHORE_SAD_EQ_SDD;
549 *cs++ = 0;
550 *cs++ = preempt_address(rq->engine);
551 *cs++ = 0;
552 *cs++ = MI_NOOP;
553
554 return cs;
555 }
556
557 static __always_inline u32*
gen8_emit_fini_breadcrumb_tail(struct i915_request * rq,u32 * cs)558 gen8_emit_fini_breadcrumb_tail(struct i915_request *rq, u32 *cs)
559 {
560 *cs++ = MI_USER_INTERRUPT;
561
562 *cs++ = MI_ARB_ON_OFF | MI_ARB_ENABLE;
563 if (intel_engine_has_semaphores(rq->engine) &&
564 !intel_uc_uses_guc_submission(&rq->engine->gt->uc))
565 cs = emit_preempt_busywait(rq, cs);
566
567 rq->tail = intel_ring_offset(rq, cs);
568 assert_ring_tail_valid(rq->ring, rq->tail);
569
570 return gen8_emit_wa_tail(rq, cs);
571 }
572
emit_xcs_breadcrumb(struct i915_request * rq,u32 * cs)573 static u32 *emit_xcs_breadcrumb(struct i915_request *rq, u32 *cs)
574 {
575 return gen8_emit_ggtt_write(cs, rq->fence.seqno, hwsp_offset(rq), 0);
576 }
577
gen8_emit_fini_breadcrumb_xcs(struct i915_request * rq,u32 * cs)578 u32 *gen8_emit_fini_breadcrumb_xcs(struct i915_request *rq, u32 *cs)
579 {
580 return gen8_emit_fini_breadcrumb_tail(rq, emit_xcs_breadcrumb(rq, cs));
581 }
582
gen8_emit_fini_breadcrumb_rcs(struct i915_request * rq,u32 * cs)583 u32 *gen8_emit_fini_breadcrumb_rcs(struct i915_request *rq, u32 *cs)
584 {
585 cs = gen8_emit_pipe_control(cs,
586 PIPE_CONTROL_RENDER_TARGET_CACHE_FLUSH |
587 PIPE_CONTROL_DEPTH_CACHE_FLUSH |
588 PIPE_CONTROL_DC_FLUSH_ENABLE,
589 0);
590
591 /* XXX flush+write+CS_STALL all in one upsets gem_concurrent_blt:kbl */
592 cs = gen8_emit_ggtt_write_rcs(cs,
593 rq->fence.seqno,
594 hwsp_offset(rq),
595 PIPE_CONTROL_FLUSH_ENABLE |
596 PIPE_CONTROL_CS_STALL);
597
598 return gen8_emit_fini_breadcrumb_tail(rq, cs);
599 }
600
gen11_emit_fini_breadcrumb_rcs(struct i915_request * rq,u32 * cs)601 u32 *gen11_emit_fini_breadcrumb_rcs(struct i915_request *rq, u32 *cs)
602 {
603 cs = gen8_emit_ggtt_write_rcs(cs,
604 rq->fence.seqno,
605 hwsp_offset(rq),
606 PIPE_CONTROL_CS_STALL |
607 PIPE_CONTROL_TILE_CACHE_FLUSH |
608 PIPE_CONTROL_RENDER_TARGET_CACHE_FLUSH |
609 PIPE_CONTROL_DEPTH_CACHE_FLUSH |
610 PIPE_CONTROL_DC_FLUSH_ENABLE |
611 PIPE_CONTROL_FLUSH_ENABLE);
612
613 return gen8_emit_fini_breadcrumb_tail(rq, cs);
614 }
615
616 /*
617 * Note that the CS instruction pre-parser will not stall on the breadcrumb
618 * flush and will continue pre-fetching the instructions after it before the
619 * memory sync is completed. On pre-gen12 HW, the pre-parser will stop at
620 * BB_START/END instructions, so, even though we might pre-fetch the pre-amble
621 * of the next request before the memory has been flushed, we're guaranteed that
622 * we won't access the batch itself too early.
623 * However, on gen12+ the parser can pre-fetch across the BB_START/END commands,
624 * so, if the current request is modifying an instruction in the next request on
625 * the same intel_context, we might pre-fetch and then execute the pre-update
626 * instruction. To avoid this, the users of self-modifying code should either
627 * disable the parser around the code emitting the memory writes, via a new flag
628 * added to MI_ARB_CHECK, or emit the writes from a different intel_context. For
629 * the in-kernel use-cases we've opted to use a separate context, see
630 * reloc_gpu() as an example.
631 * All the above applies only to the instructions themselves. Non-inline data
632 * used by the instructions is not pre-fetched.
633 */
634
gen12_emit_preempt_busywait(struct i915_request * rq,u32 * cs)635 static u32 *gen12_emit_preempt_busywait(struct i915_request *rq, u32 *cs)
636 {
637 *cs++ = MI_ARB_CHECK; /* trigger IDLE->ACTIVE first */
638 *cs++ = MI_SEMAPHORE_WAIT_TOKEN |
639 MI_SEMAPHORE_GLOBAL_GTT |
640 MI_SEMAPHORE_POLL |
641 MI_SEMAPHORE_SAD_EQ_SDD;
642 *cs++ = 0;
643 *cs++ = preempt_address(rq->engine);
644 *cs++ = 0;
645 *cs++ = 0;
646
647 return cs;
648 }
649
650 /* Wa_14014475959:dg2 */
651 #define CCS_SEMAPHORE_PPHWSP_OFFSET 0x540
ccs_semaphore_offset(struct i915_request * rq)652 static u32 ccs_semaphore_offset(struct i915_request *rq)
653 {
654 return i915_ggtt_offset(rq->context->state) +
655 (LRC_PPHWSP_PN * PAGE_SIZE) + CCS_SEMAPHORE_PPHWSP_OFFSET;
656 }
657
658 /* Wa_14014475959:dg2 */
ccs_emit_wa_busywait(struct i915_request * rq,u32 * cs)659 static u32 *ccs_emit_wa_busywait(struct i915_request *rq, u32 *cs)
660 {
661 int i;
662
663 *cs++ = MI_ATOMIC_INLINE | MI_ATOMIC_GLOBAL_GTT | MI_ATOMIC_CS_STALL |
664 MI_ATOMIC_MOVE;
665 *cs++ = ccs_semaphore_offset(rq);
666 *cs++ = 0;
667 *cs++ = 1;
668
669 /*
670 * When MI_ATOMIC_INLINE_DATA set this command must be 11 DW + (1 NOP)
671 * to align. 4 DWs above + 8 filler DWs here.
672 */
673 for (i = 0; i < 8; ++i)
674 *cs++ = 0;
675
676 *cs++ = MI_SEMAPHORE_WAIT |
677 MI_SEMAPHORE_GLOBAL_GTT |
678 MI_SEMAPHORE_POLL |
679 MI_SEMAPHORE_SAD_EQ_SDD;
680 *cs++ = 0;
681 *cs++ = ccs_semaphore_offset(rq);
682 *cs++ = 0;
683
684 return cs;
685 }
686
687 static __always_inline u32*
gen12_emit_fini_breadcrumb_tail(struct i915_request * rq,u32 * cs)688 gen12_emit_fini_breadcrumb_tail(struct i915_request *rq, u32 *cs)
689 {
690 *cs++ = MI_USER_INTERRUPT;
691
692 *cs++ = MI_ARB_ON_OFF | MI_ARB_ENABLE;
693 if (intel_engine_has_semaphores(rq->engine) &&
694 !intel_uc_uses_guc_submission(&rq->engine->gt->uc))
695 cs = gen12_emit_preempt_busywait(rq, cs);
696
697 /* Wa_14014475959:dg2 */
698 if (intel_engine_uses_wa_hold_ccs_switchout(rq->engine))
699 cs = ccs_emit_wa_busywait(rq, cs);
700
701 rq->tail = intel_ring_offset(rq, cs);
702 assert_ring_tail_valid(rq->ring, rq->tail);
703
704 return gen8_emit_wa_tail(rq, cs);
705 }
706
gen12_emit_fini_breadcrumb_xcs(struct i915_request * rq,u32 * cs)707 u32 *gen12_emit_fini_breadcrumb_xcs(struct i915_request *rq, u32 *cs)
708 {
709 /* XXX Stalling flush before seqno write; post-sync not */
710 cs = emit_xcs_breadcrumb(rq, __gen8_emit_flush_dw(cs, 0, 0, 0));
711 return gen12_emit_fini_breadcrumb_tail(rq, cs);
712 }
713
gen12_emit_fini_breadcrumb_rcs(struct i915_request * rq,u32 * cs)714 u32 *gen12_emit_fini_breadcrumb_rcs(struct i915_request *rq, u32 *cs)
715 {
716 struct drm_i915_private *i915 = rq->engine->i915;
717 u32 flags = (PIPE_CONTROL_CS_STALL |
718 PIPE_CONTROL_TILE_CACHE_FLUSH |
719 PIPE_CONTROL_FLUSH_L3 |
720 PIPE_CONTROL_RENDER_TARGET_CACHE_FLUSH |
721 PIPE_CONTROL_DEPTH_CACHE_FLUSH |
722 PIPE_CONTROL_DC_FLUSH_ENABLE |
723 PIPE_CONTROL_FLUSH_ENABLE);
724
725 if (GRAPHICS_VER(i915) == 12 && GRAPHICS_VER_FULL(i915) < IP_VER(12, 50))
726 /* Wa_1409600907 */
727 flags |= PIPE_CONTROL_DEPTH_STALL;
728
729 if (!HAS_3D_PIPELINE(rq->engine->i915))
730 flags &= ~PIPE_CONTROL_3D_ARCH_FLAGS;
731 else if (rq->engine->class == COMPUTE_CLASS)
732 flags &= ~PIPE_CONTROL_3D_ENGINE_FLAGS;
733
734 cs = gen12_emit_ggtt_write_rcs(cs,
735 rq->fence.seqno,
736 hwsp_offset(rq),
737 PIPE_CONTROL0_HDC_PIPELINE_FLUSH,
738 flags);
739
740 return gen12_emit_fini_breadcrumb_tail(rq, cs);
741 }
742