1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36#include "i915_drv.h"
37#include "gt/intel_context.h"
38#include "gvt.h"
39#include "trace.h"
40
41#define GEN9_MOCS_SIZE 64
42
43
44static struct engine_mmio gen8_engine_mmio_list[] __cacheline_aligned = {
45 {RCS0, GFX_MODE_GEN7, 0xffff, false},
46 {RCS0, GEN9_CTX_PREEMPT_REG, 0x0, false},
47 {RCS0, HWSTAM, 0x0, false},
48 {RCS0, INSTPM, 0xffff, true},
49 {RCS0, RING_FORCE_TO_NONPRIV(RENDER_RING_BASE, 0), 0, false},
50 {RCS0, RING_FORCE_TO_NONPRIV(RENDER_RING_BASE, 1), 0, false},
51 {RCS0, RING_FORCE_TO_NONPRIV(RENDER_RING_BASE, 2), 0, false},
52 {RCS0, RING_FORCE_TO_NONPRIV(RENDER_RING_BASE, 3), 0, false},
53 {RCS0, RING_FORCE_TO_NONPRIV(RENDER_RING_BASE, 4), 0, false},
54 {RCS0, RING_FORCE_TO_NONPRIV(RENDER_RING_BASE, 5), 0, false},
55 {RCS0, RING_FORCE_TO_NONPRIV(RENDER_RING_BASE, 6), 0, false},
56 {RCS0, RING_FORCE_TO_NONPRIV(RENDER_RING_BASE, 7), 0, false},
57 {RCS0, RING_FORCE_TO_NONPRIV(RENDER_RING_BASE, 8), 0, false},
58 {RCS0, RING_FORCE_TO_NONPRIV(RENDER_RING_BASE, 9), 0, false},
59 {RCS0, RING_FORCE_TO_NONPRIV(RENDER_RING_BASE, 10), 0, false},
60 {RCS0, RING_FORCE_TO_NONPRIV(RENDER_RING_BASE, 11), 0, false},
61 {RCS0, CACHE_MODE_1, 0xffff, true},
62 {RCS0, GEN7_GT_MODE, 0xffff, true},
63 {RCS0, CACHE_MODE_0_GEN7, 0xffff, true},
64 {RCS0, GEN7_COMMON_SLICE_CHICKEN1, 0xffff, true},
65 {RCS0, HDC_CHICKEN0, 0xffff, true},
66 {RCS0, VF_GUARDBAND, 0xffff, true},
67
68 {BCS0, RING_GFX_MODE(BLT_RING_BASE), 0xffff, false},
69 {BCS0, RING_MI_MODE(BLT_RING_BASE), 0xffff, false},
70 {BCS0, RING_INSTPM(BLT_RING_BASE), 0xffff, false},
71 {BCS0, RING_HWSTAM(BLT_RING_BASE), 0x0, false},
72 {BCS0, RING_EXCC(BLT_RING_BASE), 0xffff, false},
73 {RCS0, INVALID_MMIO_REG, 0, false }
74};
75
76static struct engine_mmio gen9_engine_mmio_list[] __cacheline_aligned = {
77 {RCS0, GFX_MODE_GEN7, 0xffff, false},
78 {RCS0, GEN9_CTX_PREEMPT_REG, 0x0, false},
79 {RCS0, HWSTAM, 0x0, false},
80 {RCS0, INSTPM, 0xffff, true},
81 {RCS0, RING_FORCE_TO_NONPRIV(RENDER_RING_BASE, 0), 0, false},
82 {RCS0, RING_FORCE_TO_NONPRIV(RENDER_RING_BASE, 1), 0, false},
83 {RCS0, RING_FORCE_TO_NONPRIV(RENDER_RING_BASE, 2), 0, false},
84 {RCS0, RING_FORCE_TO_NONPRIV(RENDER_RING_BASE, 3), 0, false},
85 {RCS0, RING_FORCE_TO_NONPRIV(RENDER_RING_BASE, 4), 0, false},
86 {RCS0, RING_FORCE_TO_NONPRIV(RENDER_RING_BASE, 5), 0, false},
87 {RCS0, RING_FORCE_TO_NONPRIV(RENDER_RING_BASE, 6), 0, false},
88 {RCS0, RING_FORCE_TO_NONPRIV(RENDER_RING_BASE, 7), 0, false},
89 {RCS0, RING_FORCE_TO_NONPRIV(RENDER_RING_BASE, 8), 0, false},
90 {RCS0, RING_FORCE_TO_NONPRIV(RENDER_RING_BASE, 9), 0, false},
91 {RCS0, RING_FORCE_TO_NONPRIV(RENDER_RING_BASE, 10), 0, false},
92 {RCS0, RING_FORCE_TO_NONPRIV(RENDER_RING_BASE, 11), 0, false},
93 {RCS0, CACHE_MODE_1, 0xffff, true},
94 {RCS0, GEN7_GT_MODE, 0xffff, true},
95 {RCS0, CACHE_MODE_0_GEN7, 0xffff, true},
96 {RCS0, GEN7_COMMON_SLICE_CHICKEN1, 0xffff, true},
97 {RCS0, HDC_CHICKEN0, 0xffff, true},
98 {RCS0, VF_GUARDBAND, 0xffff, true},
99
100 {RCS0, GEN8_PRIVATE_PAT_LO, 0, false},
101 {RCS0, GEN8_PRIVATE_PAT_HI, 0, false},
102 {RCS0, GEN8_CS_CHICKEN1, 0xffff, true},
103 {RCS0, COMMON_SLICE_CHICKEN2, 0xffff, true},
104 {RCS0, GEN9_CS_DEBUG_MODE1, 0xffff, false},
105 {RCS0, GEN8_L3SQCREG4, 0, false},
106 {RCS0, GEN7_HALF_SLICE_CHICKEN1, 0xffff, true},
107 {RCS0, HALF_SLICE_CHICKEN2, 0xffff, true},
108 {RCS0, HALF_SLICE_CHICKEN3, 0xffff, true},
109 {RCS0, GEN9_HALF_SLICE_CHICKEN5, 0xffff, true},
110 {RCS0, GEN9_HALF_SLICE_CHICKEN7, 0xffff, true},
111 {RCS0, GEN8_ROW_CHICKEN, 0xffff, true},
112 {RCS0, TRVATTL3PTRDW(0), 0, true},
113 {RCS0, TRVATTL3PTRDW(1), 0, true},
114 {RCS0, TRNULLDETCT, 0, true},
115 {RCS0, TRINVTILEDETCT, 0, true},
116 {RCS0, TRVADR, 0, true},
117 {RCS0, TRTTE, 0, true},
118 {RCS0, _MMIO(0x4dfc), 0, true},
119
120 {BCS0, RING_GFX_MODE(BLT_RING_BASE), 0xffff, false},
121 {BCS0, RING_MI_MODE(BLT_RING_BASE), 0xffff, false},
122 {BCS0, RING_INSTPM(BLT_RING_BASE), 0xffff, false},
123 {BCS0, RING_HWSTAM(BLT_RING_BASE), 0x0, false},
124 {BCS0, RING_EXCC(BLT_RING_BASE), 0xffff, false},
125
126 {VCS1, RING_EXCC(GEN8_BSD2_RING_BASE), 0xffff, false},
127
128 {VECS0, RING_EXCC(VEBOX_RING_BASE), 0xffff, false},
129
130 {RCS0, GEN8_HDC_CHICKEN1, 0xffff, true},
131 {RCS0, GEN9_CTX_PREEMPT_REG, 0x0, false},
132 {RCS0, GEN7_UCGCTL4, 0x0, false},
133 {RCS0, GAMT_CHKN_BIT_REG, 0x0, false},
134
135 {RCS0, GEN9_GAMT_ECO_REG_RW_IA, 0x0, false},
136 {RCS0, GEN9_CSFE_CHICKEN1_RCS, 0xffff, false},
137 {RCS0, _MMIO(0x20D8), 0xffff, true},
138
139 {RCS0, GEN8_GARBCNTL, 0x0, false},
140 {RCS0, GEN7_FF_THREAD_MODE, 0x0, false},
141 {RCS0, FF_SLICE_CS_CHICKEN2, 0xffff, false},
142 {RCS0, INVALID_MMIO_REG, 0, false }
143};
144
145static struct {
146 bool initialized;
147 u32 control_table[I915_NUM_ENGINES][GEN9_MOCS_SIZE];
148 u32 l3cc_table[GEN9_MOCS_SIZE / 2];
149} gen9_render_mocs;
150
151static u32 gen9_mocs_mmio_offset_list[] = {
152 [RCS0] = 0xc800,
153 [VCS0] = 0xc900,
154 [VCS1] = 0xca00,
155 [BCS0] = 0xcc00,
156 [VECS0] = 0xcb00,
157};
158
159static void load_render_mocs(struct drm_i915_private *dev_priv)
160{
161 struct intel_gvt *gvt = dev_priv->gvt;
162 i915_reg_t offset;
163 u32 cnt = gvt->engine_mmio_list.mocs_mmio_offset_list_cnt;
164 u32 *regs = gvt->engine_mmio_list.mocs_mmio_offset_list;
165 int ring_id, i;
166
167
168 if (!regs)
169 return;
170
171 for (ring_id = 0; ring_id < cnt; ring_id++) {
172 if (!HAS_ENGINE(dev_priv, ring_id))
173 continue;
174 offset.reg = regs[ring_id];
175 for (i = 0; i < GEN9_MOCS_SIZE; i++) {
176 gen9_render_mocs.control_table[ring_id][i] =
177 I915_READ_FW(offset);
178 offset.reg += 4;
179 }
180 }
181
182 offset.reg = 0xb020;
183 for (i = 0; i < GEN9_MOCS_SIZE / 2; i++) {
184 gen9_render_mocs.l3cc_table[i] =
185 I915_READ_FW(offset);
186 offset.reg += 4;
187 }
188 gen9_render_mocs.initialized = true;
189}
190
191static int
192restore_context_mmio_for_inhibit(struct intel_vgpu *vgpu,
193 struct i915_request *req)
194{
195 u32 *cs;
196 int ret;
197 struct engine_mmio *mmio;
198 struct intel_gvt *gvt = vgpu->gvt;
199 int ring_id = req->engine->id;
200 int count = gvt->engine_mmio_list.ctx_mmio_count[ring_id];
201
202 if (count == 0)
203 return 0;
204
205 ret = req->engine->emit_flush(req, EMIT_BARRIER);
206 if (ret)
207 return ret;
208
209 cs = intel_ring_begin(req, count * 2 + 2);
210 if (IS_ERR(cs))
211 return PTR_ERR(cs);
212
213 *cs++ = MI_LOAD_REGISTER_IMM(count);
214 for (mmio = gvt->engine_mmio_list.mmio;
215 i915_mmio_reg_valid(mmio->reg); mmio++) {
216 if (mmio->ring_id != ring_id ||
217 !mmio->in_context)
218 continue;
219
220 *cs++ = i915_mmio_reg_offset(mmio->reg);
221 *cs++ = vgpu_vreg_t(vgpu, mmio->reg) |
222 (mmio->mask << 16);
223 gvt_dbg_core("add lri reg pair 0x%x:0x%x in inhibit ctx, vgpu:%d, rind_id:%d\n",
224 *(cs-2), *(cs-1), vgpu->id, ring_id);
225 }
226
227 *cs++ = MI_NOOP;
228 intel_ring_advance(req, cs);
229
230 ret = req->engine->emit_flush(req, EMIT_BARRIER);
231 if (ret)
232 return ret;
233
234 return 0;
235}
236
237static int
238restore_render_mocs_control_for_inhibit(struct intel_vgpu *vgpu,
239 struct i915_request *req)
240{
241 unsigned int index;
242 u32 *cs;
243
244 cs = intel_ring_begin(req, 2 * GEN9_MOCS_SIZE + 2);
245 if (IS_ERR(cs))
246 return PTR_ERR(cs);
247
248 *cs++ = MI_LOAD_REGISTER_IMM(GEN9_MOCS_SIZE);
249
250 for (index = 0; index < GEN9_MOCS_SIZE; index++) {
251 *cs++ = i915_mmio_reg_offset(GEN9_GFX_MOCS(index));
252 *cs++ = vgpu_vreg_t(vgpu, GEN9_GFX_MOCS(index));
253 gvt_dbg_core("add lri reg pair 0x%x:0x%x in inhibit ctx, vgpu:%d, rind_id:%d\n",
254 *(cs-2), *(cs-1), vgpu->id, req->engine->id);
255
256 }
257
258 *cs++ = MI_NOOP;
259 intel_ring_advance(req, cs);
260
261 return 0;
262}
263
264static int
265restore_render_mocs_l3cc_for_inhibit(struct intel_vgpu *vgpu,
266 struct i915_request *req)
267{
268 unsigned int index;
269 u32 *cs;
270
271 cs = intel_ring_begin(req, 2 * GEN9_MOCS_SIZE / 2 + 2);
272 if (IS_ERR(cs))
273 return PTR_ERR(cs);
274
275 *cs++ = MI_LOAD_REGISTER_IMM(GEN9_MOCS_SIZE / 2);
276
277 for (index = 0; index < GEN9_MOCS_SIZE / 2; index++) {
278 *cs++ = i915_mmio_reg_offset(GEN9_LNCFCMOCS(index));
279 *cs++ = vgpu_vreg_t(vgpu, GEN9_LNCFCMOCS(index));
280 gvt_dbg_core("add lri reg pair 0x%x:0x%x in inhibit ctx, vgpu:%d, rind_id:%d\n",
281 *(cs-2), *(cs-1), vgpu->id, req->engine->id);
282
283 }
284
285 *cs++ = MI_NOOP;
286 intel_ring_advance(req, cs);
287
288 return 0;
289}
290
291
292
293
294
295
296int intel_vgpu_restore_inhibit_context(struct intel_vgpu *vgpu,
297 struct i915_request *req)
298{
299 int ret;
300 u32 *cs;
301
302 cs = intel_ring_begin(req, 2);
303 if (IS_ERR(cs))
304 return PTR_ERR(cs);
305
306 *cs++ = MI_ARB_ON_OFF | MI_ARB_DISABLE;
307 *cs++ = MI_NOOP;
308 intel_ring_advance(req, cs);
309
310 ret = restore_context_mmio_for_inhibit(vgpu, req);
311 if (ret)
312 goto out;
313
314
315 if (req->engine->id != RCS0)
316 goto out;
317
318 ret = restore_render_mocs_control_for_inhibit(vgpu, req);
319 if (ret)
320 goto out;
321
322 ret = restore_render_mocs_l3cc_for_inhibit(vgpu, req);
323 if (ret)
324 goto out;
325
326out:
327 cs = intel_ring_begin(req, 2);
328 if (IS_ERR(cs))
329 return PTR_ERR(cs);
330
331 *cs++ = MI_ARB_ON_OFF | MI_ARB_ENABLE;
332 *cs++ = MI_NOOP;
333 intel_ring_advance(req, cs);
334
335 return ret;
336}
337
338static u32 gen8_tlb_mmio_offset_list[] = {
339 [RCS0] = 0x4260,
340 [VCS0] = 0x4264,
341 [VCS1] = 0x4268,
342 [BCS0] = 0x426c,
343 [VECS0] = 0x4270,
344};
345
346static void handle_tlb_pending_event(struct intel_vgpu *vgpu, int ring_id)
347{
348 struct drm_i915_private *dev_priv = vgpu->gvt->dev_priv;
349 struct intel_uncore *uncore = &dev_priv->uncore;
350 struct intel_vgpu_submission *s = &vgpu->submission;
351 u32 *regs = vgpu->gvt->engine_mmio_list.tlb_mmio_offset_list;
352 u32 cnt = vgpu->gvt->engine_mmio_list.tlb_mmio_offset_list_cnt;
353 enum forcewake_domains fw;
354 i915_reg_t reg;
355
356 if (!regs)
357 return;
358
359 if (WARN_ON(ring_id >= cnt))
360 return;
361
362 if (!test_and_clear_bit(ring_id, (void *)s->tlb_handle_pending))
363 return;
364
365 reg = _MMIO(regs[ring_id]);
366
367
368
369
370
371
372 fw = intel_uncore_forcewake_for_reg(uncore, reg,
373 FW_REG_READ | FW_REG_WRITE);
374 if (ring_id == RCS0 && INTEL_GEN(dev_priv) >= 9)
375 fw |= FORCEWAKE_RENDER;
376
377 intel_uncore_forcewake_get(uncore, fw);
378
379 intel_uncore_write_fw(uncore, reg, 0x1);
380
381 if (wait_for_atomic((intel_uncore_read_fw(uncore, reg) == 0), 50))
382 gvt_vgpu_err("timeout in invalidate ring (%d) tlb\n", ring_id);
383 else
384 vgpu_vreg_t(vgpu, reg) = 0;
385
386 intel_uncore_forcewake_put(uncore, fw);
387
388 gvt_dbg_core("invalidate TLB for ring %d\n", ring_id);
389}
390
391static void switch_mocs(struct intel_vgpu *pre, struct intel_vgpu *next,
392 int ring_id)
393{
394 struct drm_i915_private *dev_priv;
395 i915_reg_t offset, l3_offset;
396 u32 old_v, new_v;
397
398 u32 regs[] = {
399 [RCS0] = 0xc800,
400 [VCS0] = 0xc900,
401 [VCS1] = 0xca00,
402 [BCS0] = 0xcc00,
403 [VECS0] = 0xcb00,
404 };
405 int i;
406
407 dev_priv = pre ? pre->gvt->dev_priv : next->gvt->dev_priv;
408 if (WARN_ON(ring_id >= ARRAY_SIZE(regs)))
409 return;
410
411 if (ring_id == RCS0 && IS_GEN(dev_priv, 9))
412 return;
413
414 if (!pre && !gen9_render_mocs.initialized)
415 load_render_mocs(dev_priv);
416
417 offset.reg = regs[ring_id];
418 for (i = 0; i < GEN9_MOCS_SIZE; i++) {
419 if (pre)
420 old_v = vgpu_vreg_t(pre, offset);
421 else
422 old_v = gen9_render_mocs.control_table[ring_id][i];
423 if (next)
424 new_v = vgpu_vreg_t(next, offset);
425 else
426 new_v = gen9_render_mocs.control_table[ring_id][i];
427
428 if (old_v != new_v)
429 I915_WRITE_FW(offset, new_v);
430
431 offset.reg += 4;
432 }
433
434 if (ring_id == RCS0) {
435 l3_offset.reg = 0xb020;
436 for (i = 0; i < GEN9_MOCS_SIZE / 2; i++) {
437 if (pre)
438 old_v = vgpu_vreg_t(pre, l3_offset);
439 else
440 old_v = gen9_render_mocs.l3cc_table[i];
441 if (next)
442 new_v = vgpu_vreg_t(next, l3_offset);
443 else
444 new_v = gen9_render_mocs.l3cc_table[i];
445
446 if (old_v != new_v)
447 I915_WRITE_FW(l3_offset, new_v);
448
449 l3_offset.reg += 4;
450 }
451 }
452}
453
454#define CTX_CONTEXT_CONTROL_VAL 0x03
455
456bool is_inhibit_context(struct intel_context *ce)
457{
458 const u32 *reg_state = ce->lrc_reg_state;
459 u32 inhibit_mask =
460 _MASKED_BIT_ENABLE(CTX_CTRL_ENGINE_CTX_RESTORE_INHIBIT);
461
462 return inhibit_mask ==
463 (reg_state[CTX_CONTEXT_CONTROL_VAL] & inhibit_mask);
464}
465
466
467static void switch_mmio(struct intel_vgpu *pre,
468 struct intel_vgpu *next,
469 int ring_id)
470{
471 struct drm_i915_private *dev_priv;
472 struct intel_vgpu_submission *s;
473 struct engine_mmio *mmio;
474 u32 old_v, new_v;
475
476 dev_priv = pre ? pre->gvt->dev_priv : next->gvt->dev_priv;
477 if (INTEL_GEN(dev_priv) >= 9)
478 switch_mocs(pre, next, ring_id);
479
480 for (mmio = dev_priv->gvt->engine_mmio_list.mmio;
481 i915_mmio_reg_valid(mmio->reg); mmio++) {
482 if (mmio->ring_id != ring_id)
483 continue;
484
485
486
487
488
489 if (IS_GEN(dev_priv, 9) && mmio->in_context)
490 continue;
491
492
493 if (pre) {
494 vgpu_vreg_t(pre, mmio->reg) = I915_READ_FW(mmio->reg);
495 if (mmio->mask)
496 vgpu_vreg_t(pre, mmio->reg) &=
497 ~(mmio->mask << 16);
498 old_v = vgpu_vreg_t(pre, mmio->reg);
499 } else
500 old_v = mmio->value = I915_READ_FW(mmio->reg);
501
502
503 if (next) {
504 s = &next->submission;
505
506
507
508
509
510 if (mmio->in_context &&
511 !is_inhibit_context(s->shadow[ring_id]))
512 continue;
513
514 if (mmio->mask)
515 new_v = vgpu_vreg_t(next, mmio->reg) |
516 (mmio->mask << 16);
517 else
518 new_v = vgpu_vreg_t(next, mmio->reg);
519 } else {
520 if (mmio->in_context)
521 continue;
522 if (mmio->mask)
523 new_v = mmio->value | (mmio->mask << 16);
524 else
525 new_v = mmio->value;
526 }
527
528 I915_WRITE_FW(mmio->reg, new_v);
529
530 trace_render_mmio(pre ? pre->id : 0,
531 next ? next->id : 0,
532 "switch",
533 i915_mmio_reg_offset(mmio->reg),
534 old_v, new_v);
535 }
536
537 if (next)
538 handle_tlb_pending_event(next, ring_id);
539}
540
541
542
543
544
545
546
547
548
549
550void intel_gvt_switch_mmio(struct intel_vgpu *pre,
551 struct intel_vgpu *next, int ring_id)
552{
553 struct drm_i915_private *dev_priv;
554
555 if (WARN_ON(!pre && !next))
556 return;
557
558 gvt_dbg_render("switch ring %d from %s to %s\n", ring_id,
559 pre ? "vGPU" : "host", next ? "vGPU" : "HOST");
560
561 dev_priv = pre ? pre->gvt->dev_priv : next->gvt->dev_priv;
562
563
564
565
566
567
568 intel_uncore_forcewake_get(&dev_priv->uncore, FORCEWAKE_ALL);
569 switch_mmio(pre, next, ring_id);
570 intel_uncore_forcewake_put(&dev_priv->uncore, FORCEWAKE_ALL);
571}
572
573
574
575
576
577
578void intel_gvt_init_engine_mmio_context(struct intel_gvt *gvt)
579{
580 struct engine_mmio *mmio;
581
582 if (INTEL_GEN(gvt->dev_priv) >= 9) {
583 gvt->engine_mmio_list.mmio = gen9_engine_mmio_list;
584 gvt->engine_mmio_list.tlb_mmio_offset_list = gen8_tlb_mmio_offset_list;
585 gvt->engine_mmio_list.tlb_mmio_offset_list_cnt = ARRAY_SIZE(gen8_tlb_mmio_offset_list);
586 gvt->engine_mmio_list.mocs_mmio_offset_list = gen9_mocs_mmio_offset_list;
587 gvt->engine_mmio_list.mocs_mmio_offset_list_cnt = ARRAY_SIZE(gen9_mocs_mmio_offset_list);
588 } else {
589 gvt->engine_mmio_list.mmio = gen8_engine_mmio_list;
590 gvt->engine_mmio_list.tlb_mmio_offset_list = gen8_tlb_mmio_offset_list;
591 gvt->engine_mmio_list.tlb_mmio_offset_list_cnt = ARRAY_SIZE(gen8_tlb_mmio_offset_list);
592 }
593
594 for (mmio = gvt->engine_mmio_list.mmio;
595 i915_mmio_reg_valid(mmio->reg); mmio++) {
596 if (mmio->in_context) {
597 gvt->engine_mmio_list.ctx_mmio_count[mmio->ring_id]++;
598 intel_gvt_mmio_set_in_ctx(gvt, mmio->reg.reg);
599 }
600 }
601}
602