scheduler.c 47.8 KB
Newer Older
Z
Zhi Wang 已提交
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 37
/*
 * Copyright(c) 2011-2016 Intel Corporation. All rights reserved.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice (including the next
 * paragraph) shall be included in all copies or substantial portions of the
 * Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 *
 * Authors:
 *    Zhi Wang <zhi.a.wang@intel.com>
 *
 * Contributors:
 *    Ping Gao <ping.a.gao@intel.com>
 *    Tina Zhang <tina.zhang@intel.com>
 *    Chanbin Du <changbin.du@intel.com>
 *    Min He <min.he@intel.com>
 *    Bing Niu <bing.niu@intel.com>
 *    Zhenyu Wang <zhenyuw@linux.intel.com>
 *
 */

#include <linux/kthread.h>

38 39
#include "gem/i915_gem_pm.h"
#include "gt/intel_context.h"
40
#include "gt/intel_execlists_submission.h"
41
#include "gt/intel_lrc.h"
42
#include "gt/intel_ring.h"
43

44
#include "i915_drv.h"
45
#include "i915_gem_gtt.h"
46 47
#include "gvt.h"

Z
Zhi Wang 已提交
48 49 50
#define RING_CTX_OFF(x) \
	offsetof(struct execlist_ring_context, x)

51 52
static void set_context_pdp_root_pointer(
		struct execlist_ring_context *ring_context,
Z
Zhi Wang 已提交
53 54 55 56 57
		u32 pdp[8])
{
	int i;

	for (i = 0; i < 8; i++)
58
		ring_context->pdps[i].val = pdp[7 - i];
Z
Zhi Wang 已提交
59 60
}

61 62 63
static void update_shadow_pdps(struct intel_vgpu_workload *workload)
{
	struct execlist_ring_context *shadow_ring_context;
64
	struct intel_context *ctx = workload->req->context;
65 66 67 68 69 70 71

	if (WARN_ON(!workload->shadow_mm))
		return;

	if (WARN_ON(!atomic_read(&workload->shadow_mm->pincount)))
		return;

72
	shadow_ring_context = (struct execlist_ring_context *)ctx->lrc_reg_state;
73 74 75 76
	set_context_pdp_root_pointer(shadow_ring_context,
			(void *)workload->shadow_mm->ppgtt_mm.shadow_pdps);
}

77 78 79 80 81 82 83 84
/*
 * when populating shadow ctx from guest, we should not overrride oa related
 * registers, so that they will not be overlapped by guest oa configs. Thus
 * made it possible to capture oa data from host for both host and guests.
 */
static void sr_oa_regs(struct intel_vgpu_workload *workload,
		u32 *reg_state, bool save)
{
85
	struct drm_i915_private *dev_priv = workload->vgpu->gvt->gt->i915;
86 87
	u32 ctx_oactxctrl = dev_priv->perf.ctx_oactxctrl_offset;
	u32 ctx_flexeu0 = dev_priv->perf.ctx_flexeu0_offset;
88 89 90 91 92 93 94 95 96 97 98
	int i = 0;
	u32 flex_mmio[] = {
		i915_mmio_reg_offset(EU_PERF_CNTL0),
		i915_mmio_reg_offset(EU_PERF_CNTL1),
		i915_mmio_reg_offset(EU_PERF_CNTL2),
		i915_mmio_reg_offset(EU_PERF_CNTL3),
		i915_mmio_reg_offset(EU_PERF_CNTL4),
		i915_mmio_reg_offset(EU_PERF_CNTL5),
		i915_mmio_reg_offset(EU_PERF_CNTL6),
	};

99
	if (workload->engine->id != RCS0)
100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
		return;

	if (save) {
		workload->oactxctrl = reg_state[ctx_oactxctrl + 1];

		for (i = 0; i < ARRAY_SIZE(workload->flex_mmio); i++) {
			u32 state_offset = ctx_flexeu0 + i * 2;

			workload->flex_mmio[i] = reg_state[state_offset + 1];
		}
	} else {
		reg_state[ctx_oactxctrl] =
			i915_mmio_reg_offset(GEN8_OACTXCONTROL);
		reg_state[ctx_oactxctrl + 1] = workload->oactxctrl;

		for (i = 0; i < ARRAY_SIZE(workload->flex_mmio); i++) {
			u32 state_offset = ctx_flexeu0 + i * 2;
			u32 mmio = flex_mmio[i];

			reg_state[state_offset] = mmio;
			reg_state[state_offset + 1] = workload->flex_mmio[i];
		}
	}
}

Z
Zhi Wang 已提交
125 126 127 128
static int populate_shadow_context(struct intel_vgpu_workload *workload)
{
	struct intel_vgpu *vgpu = workload->vgpu;
	struct intel_gvt *gvt = vgpu->gvt;
129
	struct intel_context *ctx = workload->req->context;
Z
Zhi Wang 已提交
130 131
	struct execlist_ring_context *shadow_ring_context;
	void *dst;
132
	void *context_base;
Z
Zhi Wang 已提交
133
	unsigned long context_gpa, context_page_num;
134 135
	unsigned long gpa_base; /* first gpa of consecutive GPAs */
	unsigned long gpa_size; /* size of consecutive GPAs */
136
	struct intel_vgpu_submission *s = &vgpu->submission;
Z
Zhi Wang 已提交
137
	int i;
138 139
	bool skip = false;
	int ring_id = workload->engine->id;
Y
Yan Zhao 已提交
140
	int ret;
Z
Zhi Wang 已提交
141

142 143 144 145 146 147
	GEM_BUG_ON(!intel_context_is_pinned(ctx));

	context_base = (void *) ctx->lrc_reg_state -
				(LRC_STATE_PN << I915_GTT_PAGE_SHIFT);

	shadow_ring_context = (void *) ctx->lrc_reg_state;
Z
Zhi Wang 已提交
148

149
	sr_oa_regs(workload, (u32 *)shadow_ring_context, true);
Z
Zhi Wang 已提交
150 151 152
#define COPY_REG(name) \
	intel_gvt_hypervisor_read_gpa(vgpu, workload->ring_context_gpa \
		+ RING_CTX_OFF(name.val), &shadow_ring_context->name.val, 4)
153 154 155 156 157 158
#define COPY_REG_MASKED(name) {\
		intel_gvt_hypervisor_read_gpa(vgpu, workload->ring_context_gpa \
					      + RING_CTX_OFF(name.val),\
					      &shadow_ring_context->name.val, 4);\
		shadow_ring_context->name.val |= 0xffff << 16;\
	}
Z
Zhi Wang 已提交
159

160
	COPY_REG_MASKED(ctx_ctrl);
Z
Zhi Wang 已提交
161 162
	COPY_REG(ctx_timestamp);

163
	if (workload->engine->id == RCS0) {
Z
Zhi Wang 已提交
164 165 166
		COPY_REG(bb_per_ctx_ptr);
		COPY_REG(rcs_indirect_ctx);
		COPY_REG(rcs_indirect_ctx_offset);
Y
Yan Zhao 已提交
167 168 169 170 171 172
	} else if (workload->engine->id == BCS0)
		intel_gvt_hypervisor_read_gpa(vgpu,
				workload->ring_context_gpa +
				BCS_TILE_REGISTER_VAL_OFFSET,
				(void *)shadow_ring_context +
				BCS_TILE_REGISTER_VAL_OFFSET, 4);
Z
Zhi Wang 已提交
173
#undef COPY_REG
174
#undef COPY_REG_MASKED
Z
Zhi Wang 已提交
175

Y
Yan Zhao 已提交
176 177 178
	/* don't copy Ring Context (the first 0x50 dwords),
	 * only copy the Engine Context part from guest
	 */
Z
Zhi Wang 已提交
179 180
	intel_gvt_hypervisor_read_gpa(vgpu,
			workload->ring_context_gpa +
Y
Yan Zhao 已提交
181
			RING_CTX_SIZE,
Z
Zhi Wang 已提交
182
			(void *)shadow_ring_context +
Y
Yan Zhao 已提交
183 184
			RING_CTX_SIZE,
			I915_GTT_PAGE_SIZE - RING_CTX_SIZE);
Z
Zhi Wang 已提交
185

186
	sr_oa_regs(workload, (u32 *)shadow_ring_context, false);
187

188 189 190 191
	gvt_dbg_sched("ring %s workload lrca %x, ctx_id %x, ctx gpa %llx",
			workload->engine->name, workload->ctx_desc.lrca,
			workload->ctx_desc.context_id,
			workload->ring_context_gpa);
192

193 194 195 196 197 198 199 200 201 202 203 204
	/* only need to ensure this context is not pinned/unpinned during the
	 * period from last submission to this this submission.
	 * Upon reaching this function, the currently submitted context is not
	 * supposed to get unpinned. If a misbehaving guest driver ever does
	 * this, it would corrupt itself.
	 */
	if (s->last_ctx[ring_id].valid &&
			(s->last_ctx[ring_id].lrca ==
				workload->ctx_desc.lrca) &&
			(s->last_ctx[ring_id].ring_context_gpa ==
				workload->ring_context_gpa))
		skip = true;
205

206 207 208 209 210 211 212
	s->last_ctx[ring_id].lrca = workload->ctx_desc.lrca;
	s->last_ctx[ring_id].ring_context_gpa = workload->ring_context_gpa;

	if (IS_RESTORE_INHIBIT(shadow_ring_context->ctx_ctrl.val) || skip)
		return 0;

	s->last_ctx[ring_id].valid = false;
213
	context_page_num = workload->engine->context_size;
214 215
	context_page_num = context_page_num >> PAGE_SHIFT;

216
	if (IS_BROADWELL(gvt->gt->i915) && workload->engine->id == RCS0)
217 218
		context_page_num = 19;

219 220 221 222 223
	/* find consecutive GPAs from gma until the first inconsecutive GPA.
	 * read from the continuous GPAs into dst virtual address
	 */
	gpa_size = 0;
	for (i = 2; i < context_page_num; i++) {
224 225 226 227 228 229 230 231
		context_gpa = intel_vgpu_gma_to_gpa(vgpu->gtt.ggtt_mm,
				(u32)((workload->ctx_desc.lrca + i) <<
				I915_GTT_PAGE_SHIFT));
		if (context_gpa == INTEL_GVT_INVALID_ADDR) {
			gvt_vgpu_err("Invalid guest context descriptor\n");
			return -EFAULT;
		}

232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248
		if (gpa_size == 0) {
			gpa_base = context_gpa;
			dst = context_base + (i << I915_GTT_PAGE_SHIFT);
		} else if (context_gpa != gpa_base + gpa_size)
			goto read;

		gpa_size += I915_GTT_PAGE_SIZE;

		if (i == context_page_num - 1)
			goto read;

		continue;

read:
		intel_gvt_hypervisor_read_gpa(vgpu, gpa_base, dst, gpa_size);
		gpa_base = context_gpa;
		gpa_size = I915_GTT_PAGE_SIZE;
249
		dst = context_base + (i << I915_GTT_PAGE_SHIFT);
250
	}
Y
Yan Zhao 已提交
251 252 253 254 255
	ret = intel_gvt_scan_engine_context(workload);
	if (ret) {
		gvt_vgpu_err("invalid cmd found in guest context pages\n");
		return ret;
	}
256
	s->last_ctx[ring_id].valid = true;
Z
Zhi Wang 已提交
257 258 259
	return 0;
}

260
static inline bool is_gvt_request(struct i915_request *rq)
261
{
262
	return intel_context_force_single_submission(rq->context);
263 264
}

265 266
static void save_ring_hw_state(struct intel_vgpu *vgpu,
			       const struct intel_engine_cs *engine)
267
{
268
	struct intel_uncore *uncore = engine->uncore;
269 270
	i915_reg_t reg;

271 272 273 274 275 276 277 278 279 280 281
	reg = RING_INSTDONE(engine->mmio_base);
	vgpu_vreg(vgpu, i915_mmio_reg_offset(reg)) =
		intel_uncore_read(uncore, reg);

	reg = RING_ACTHD(engine->mmio_base);
	vgpu_vreg(vgpu, i915_mmio_reg_offset(reg)) =
		intel_uncore_read(uncore, reg);

	reg = RING_ACTHD_UDW(engine->mmio_base);
	vgpu_vreg(vgpu, i915_mmio_reg_offset(reg)) =
		intel_uncore_read(uncore, reg);
282 283
}

Z
Zhi Wang 已提交
284 285 286
static int shadow_context_status_change(struct notifier_block *nb,
		unsigned long action, void *data)
{
287
	struct i915_request *rq = data;
288
	struct intel_gvt *gvt = container_of(nb, struct intel_gvt,
289
				shadow_ctx_notifier_block[rq->engine->id]);
290
	struct intel_gvt_workload_scheduler *scheduler = &gvt->scheduler;
291
	enum intel_engine_id ring_id = rq->engine->id;
292
	struct intel_vgpu_workload *workload;
293
	unsigned long flags;
294

295
	if (!is_gvt_request(rq)) {
296
		spin_lock_irqsave(&scheduler->mmio_context_lock, flags);
297 298 299 300
		if (action == INTEL_CONTEXT_SCHEDULE_IN &&
		    scheduler->engine_owner[ring_id]) {
			/* Switch ring from vGPU to host. */
			intel_gvt_switch_mmio(scheduler->engine_owner[ring_id],
301
					      NULL, rq->engine);
302 303
			scheduler->engine_owner[ring_id] = NULL;
		}
304
		spin_unlock_irqrestore(&scheduler->mmio_context_lock, flags);
305 306 307

		return NOTIFY_OK;
	}
Z
Zhi Wang 已提交
308

309 310
	workload = scheduler->current_workload[ring_id];
	if (unlikely(!workload))
311 312
		return NOTIFY_OK;

Z
Zhi Wang 已提交
313 314
	switch (action) {
	case INTEL_CONTEXT_SCHEDULE_IN:
315
		spin_lock_irqsave(&scheduler->mmio_context_lock, flags);
316 317 318
		if (workload->vgpu != scheduler->engine_owner[ring_id]) {
			/* Switch ring from host to vGPU or vGPU to vGPU. */
			intel_gvt_switch_mmio(scheduler->engine_owner[ring_id],
319
					      workload->vgpu, rq->engine);
320 321 322 323
			scheduler->engine_owner[ring_id] = workload->vgpu;
		} else
			gvt_dbg_sched("skip ring %d mmio switch for vgpu%d\n",
				      ring_id, workload->vgpu->id);
324
		spin_unlock_irqrestore(&scheduler->mmio_context_lock, flags);
Z
Zhi Wang 已提交
325 326 327
		atomic_set(&workload->shadow_ctx_active, 1);
		break;
	case INTEL_CONTEXT_SCHEDULE_OUT:
328
		save_ring_hw_state(workload->vgpu, rq->engine);
Z
Zhi Wang 已提交
329 330
		atomic_set(&workload->shadow_ctx_active, 0);
		break;
331
	case INTEL_CONTEXT_SCHEDULE_PREEMPTED:
332
		save_ring_hw_state(workload->vgpu, rq->engine);
333
		break;
Z
Zhi Wang 已提交
334 335 336 337 338 339 340 341
	default:
		WARN_ON(1);
		return NOTIFY_OK;
	}
	wake_up(&workload->shadow_ctx_status_wq);
	return NOTIFY_OK;
}

342 343 344
static void
shadow_context_descriptor_update(struct intel_context *ce,
				 struct intel_vgpu_workload *workload)
345
{
346
	u64 desc = ce->lrc.desc;
347

348 349
	/*
	 * Update bits 0-11 of the context descriptor which includes flags
350 351
	 * like GEN8_CTX_* cached in desc_template
	 */
352 353
	desc &= ~(0x3ull << GEN8_CTX_ADDRESSING_MODE_SHIFT);
	desc |= (u64)workload->ctx_desc.addressing_mode <<
354 355
		GEN8_CTX_ADDRESSING_MODE_SHIFT;

356
	ce->lrc.desc = desc;
357 358
}

359 360 361
static int copy_workload_to_ring_buffer(struct intel_vgpu_workload *workload)
{
	struct intel_vgpu *vgpu = workload->vgpu;
362
	struct i915_request *req = workload->req;
363 364
	void *shadow_ring_buffer_va;
	u32 *cs;
365
	int err;
366

367
	if (IS_GEN(req->engine->i915, 9) && is_inhibit_context(req->context))
368
		intel_vgpu_restore_inhibit_context(vgpu, req);
369

370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387
	/*
	 * To track whether a request has started on HW, we can emit a
	 * breadcrumb at the beginning of the request and check its
	 * timeline's HWSP to see if the breadcrumb has advanced past the
	 * start of this request. Actually, the request must have the
	 * init_breadcrumb if its timeline set has_init_bread_crumb, or the
	 * scheduler might get a wrong state of it during reset. Since the
	 * requests from gvt always set the has_init_breadcrumb flag, here
	 * need to do the emit_init_breadcrumb for all the requests.
	 */
	if (req->engine->emit_init_breadcrumb) {
		err = req->engine->emit_init_breadcrumb(req);
		if (err) {
			gvt_vgpu_err("fail to emit init breadcrumb\n");
			return err;
		}
	}

388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409
	/* allocate shadow ring buffer */
	cs = intel_ring_begin(workload->req, workload->rb_len / sizeof(u32));
	if (IS_ERR(cs)) {
		gvt_vgpu_err("fail to alloc size =%ld shadow  ring buffer\n",
			workload->rb_len);
		return PTR_ERR(cs);
	}

	shadow_ring_buffer_va = workload->shadow_ring_buffer_va;

	/* get shadow ring buffer va */
	workload->shadow_ring_buffer_va = cs;

	memcpy(cs, shadow_ring_buffer_va,
			workload->rb_len);

	cs += workload->rb_len / sizeof(u32);
	intel_ring_advance(workload->req, cs);

	return 0;
}

410
static void release_shadow_wa_ctx(struct intel_shadow_wa_ctx *wa_ctx)
411 412 413 414 415 416
{
	if (!wa_ctx->indirect_ctx.obj)
		return;

	i915_gem_object_unpin_map(wa_ctx->indirect_ctx.obj);
	i915_gem_object_put(wa_ctx->indirect_ctx.obj);
417 418 419

	wa_ctx->indirect_ctx.obj = NULL;
	wa_ctx->indirect_ctx.shadow_va = NULL;
420 421
}

422 423 424 425 426 427 428 429
static void set_dma_address(struct i915_page_directory *pd, dma_addr_t addr)
{
	struct scatterlist *sg = pd->pt.base->mm.pages->sgl;

	/* This is not a good idea */
	sg->dma_address = addr;
}

430
static void set_context_ppgtt_from_shadow(struct intel_vgpu_workload *workload,
431
					  struct intel_context *ce)
432 433
{
	struct intel_vgpu_mm *mm = workload->shadow_mm;
434
	struct i915_ppgtt *ppgtt = i915_vm_to_ppgtt(ce->vm);
435 436 437
	int i = 0;

	if (mm->ppgtt_mm.root_entry_type == GTT_TYPE_PPGTT_ROOT_L4_ENTRY) {
438
		set_dma_address(ppgtt->pd, mm->ppgtt_mm.shadow_pdps[0]);
439 440
	} else {
		for (i = 0; i < GVT_RING_CTX_NR_PDPS; i++) {
441 442
			struct i915_page_directory * const pd =
				i915_pd_entry(ppgtt->pd, i);
443 444 445 446 447
			/* skip now as current i915 ppgtt alloc won't allocate
			   top level pdp for non 4-level table, won't impact
			   shadow ppgtt. */
			if (!pd)
				break;
448 449

			set_dma_address(pd, mm->ppgtt_mm.shadow_pdps[i]);
450 451 452 453
		}
	}
}

454 455 456 457 458 459 460 461
static int
intel_gvt_workload_req_alloc(struct intel_vgpu_workload *workload)
{
	struct intel_vgpu *vgpu = workload->vgpu;
	struct intel_vgpu_submission *s = &vgpu->submission;
	struct i915_request *rq;

	if (workload->req)
462
		return 0;
463

464
	rq = i915_request_create(s->shadow[workload->engine->id]);
465 466
	if (IS_ERR(rq)) {
		gvt_vgpu_err("fail to allocate gem request\n");
467
		return PTR_ERR(rq);
468
	}
469

470
	workload->req = i915_request_get(rq);
471
	return 0;
472 473
}

474 475 476 477 478 479 480 481 482
/**
 * intel_gvt_scan_and_shadow_workload - audit the workload by scanning and
 * shadow it as well, include ringbuffer,wa_ctx and ctx.
 * @workload: an abstract entity for each execlist submission.
 *
 * This function is called before the workload submitting to i915, to make
 * sure the content of the workload is valid.
 */
int intel_gvt_scan_and_shadow_workload(struct intel_vgpu_workload *workload)
Z
Zhi Wang 已提交
483
{
484 485
	struct intel_vgpu *vgpu = workload->vgpu;
	struct intel_vgpu_submission *s = &vgpu->submission;
Z
Zhi Wang 已提交
486 487
	int ret;

C
Chris Wilson 已提交
488
	lockdep_assert_held(&vgpu->vgpu_lock);
489

490
	if (workload->shadow)
491
		return 0;
Z
Zhi Wang 已提交
492

493 494
	if (!test_and_set_bit(workload->engine->id, s->shadow_ctx_desc_updated))
		shadow_context_descriptor_update(s->shadow[workload->engine->id],
495
						 workload);
496

497
	ret = intel_gvt_scan_and_shadow_ringbuffer(workload);
Z
Zhi Wang 已提交
498
	if (ret)
499
		return ret;
Z
Zhi Wang 已提交
500

501 502
	if (workload->engine->id == RCS0 &&
	    workload->wa_ctx.indirect_ctx.size) {
503 504
		ret = intel_gvt_scan_and_shadow_wa_ctx(&workload->wa_ctx);
		if (ret)
505
			goto err_shadow;
506
	}
Z
Zhi Wang 已提交
507

508
	workload->shadow = true;
509
	return 0;
510

511 512
err_shadow:
	release_shadow_wa_ctx(&workload->wa_ctx);
513 514 515
	return ret;
}

516 517
static void release_shadow_batch_buffer(struct intel_vgpu_workload *workload);

518 519 520 521
static int prepare_shadow_batch_buffer(struct intel_vgpu_workload *workload)
{
	struct intel_gvt *gvt = workload->vgpu->gvt;
	const int gmadr_bytes = gvt->device_info.gmadr_bytes_in_cmd;
522 523 524 525
	struct intel_vgpu_shadow_bb *bb;
	int ret;

	list_for_each_entry(bb, &workload->shadow_bb, list) {
526 527 528 529 530 531 532 533 534 535 536
		/* For privilge batch buffer and not wa_ctx, the bb_start_cmd_va
		 * is only updated into ring_scan_buffer, not real ring address
		 * allocated in later copy_workload_to_ring_buffer. pls be noted
		 * shadow_ring_buffer_va is now pointed to real ring buffer va
		 * in copy_workload_to_ring_buffer.
		 */

		if (bb->bb_offset)
			bb->bb_start_cmd_va = workload->shadow_ring_buffer_va
				+ bb->bb_offset;

537 538 539 540 541 542 543 544 545 546
		/*
		 * For non-priv bb, scan&shadow is only for
		 * debugging purpose, so the content of shadow bb
		 * is the same as original bb. Therefore,
		 * here, rather than switch to shadow bb's gma
		 * address, we directly use original batch buffer's
		 * gma address, and send original bb to hardware
		 * directly
		 */
		if (!bb->ppgtt) {
547
			bb->vma = i915_gem_object_ggtt_pin(bb->obj,
548
							   NULL, 0, 0, 0);
549 550 551 552 553 554 555 556 557 558
			if (IS_ERR(bb->vma)) {
				ret = PTR_ERR(bb->vma);
				goto err;
			}

			/* relocate shadow batch buffer */
			bb->bb_start_cmd_va[1] = i915_ggtt_offset(bb->vma);
			if (gmadr_bytes == 8)
				bb->bb_start_cmd_va[2] = 0;

559 560 561 562 563
			ret = i915_vma_move_to_active(bb->vma,
						      workload->req,
						      0);
			if (ret)
				goto err;
564
		}
565 566 567

		/* No one is going to touch shadow bb from now on. */
		i915_gem_object_flush_map(bb->obj);
568 569
	}
	return 0;
570 571 572
err:
	release_shadow_batch_buffer(workload);
	return ret;
573 574
}

575
static void update_wa_ctx_2_shadow_ctx(struct intel_shadow_wa_ctx *wa_ctx)
576
{
577 578 579 580
	struct intel_vgpu_workload *workload =
		container_of(wa_ctx, struct intel_vgpu_workload, wa_ctx);
	struct i915_request *rq = workload->req;
	struct execlist_ring_context *shadow_ring_context =
581
		(struct execlist_ring_context *)rq->context->lrc_reg_state;
582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619

	shadow_ring_context->bb_per_ctx_ptr.val =
		(shadow_ring_context->bb_per_ctx_ptr.val &
		(~PER_CTX_ADDR_MASK)) | wa_ctx->per_ctx.shadow_gma;
	shadow_ring_context->rcs_indirect_ctx.val =
		(shadow_ring_context->rcs_indirect_ctx.val &
		(~INDIRECT_CTX_ADDR_MASK)) | wa_ctx->indirect_ctx.shadow_gma;
}

static int prepare_shadow_wa_ctx(struct intel_shadow_wa_ctx *wa_ctx)
{
	struct i915_vma *vma;
	unsigned char *per_ctx_va =
		(unsigned char *)wa_ctx->indirect_ctx.shadow_va +
		wa_ctx->indirect_ctx.size;

	if (wa_ctx->indirect_ctx.size == 0)
		return 0;

	vma = i915_gem_object_ggtt_pin(wa_ctx->indirect_ctx.obj, NULL,
				       0, CACHELINE_BYTES, 0);
	if (IS_ERR(vma))
		return PTR_ERR(vma);

	/* FIXME: we are not tracking our pinned VMA leaving it
	 * up to the core to fix up the stray pin_count upon
	 * free.
	 */

	wa_ctx->indirect_ctx.shadow_gma = i915_ggtt_offset(vma);

	wa_ctx->per_ctx.shadow_gma = *((unsigned int *)per_ctx_va + 1);
	memset(per_ctx_va, 0, CACHELINE_BYTES);

	update_wa_ctx_2_shadow_ctx(wa_ctx);
	return 0;
}

620 621
static void update_vreg_in_ctx(struct intel_vgpu_workload *workload)
{
622 623
	vgpu_vreg_t(workload->vgpu, RING_START(workload->engine->mmio_base)) =
		workload->rb_start;
624 625
}

626 627
static void release_shadow_batch_buffer(struct intel_vgpu_workload *workload)
{
628 629 630 631 632 633 634 635 636 637 638 639 640
	struct intel_vgpu_shadow_bb *bb, *pos;

	if (list_empty(&workload->shadow_bb))
		return;

	bb = list_first_entry(&workload->shadow_bb,
			struct intel_vgpu_shadow_bb, list);

	list_for_each_entry_safe(bb, pos, &workload->shadow_bb, list) {
		if (bb->obj) {
			if (bb->va && !IS_ERR(bb->va))
				i915_gem_object_unpin_map(bb->obj);

C
Chris Wilson 已提交
641
			if (bb->vma && !IS_ERR(bb->vma))
642
				i915_vma_unpin(bb->vma);
C
Chris Wilson 已提交
643

644
			i915_gem_object_put(bb->obj);
645
		}
646 647
		list_del(&bb->list);
		kfree(bb);
648 649 650
	}
}

651 652
static int
intel_vgpu_shadow_mm_pin(struct intel_vgpu_workload *workload)
653
{
654
	struct intel_vgpu *vgpu = workload->vgpu;
655
	struct intel_vgpu_mm *m;
656 657
	int ret = 0;

658 659 660 661 662 663
	ret = intel_vgpu_pin_mm(workload->shadow_mm);
	if (ret) {
		gvt_vgpu_err("fail to vgpu pin mm\n");
		return ret;
	}

664 665 666 667 668 669
	if (workload->shadow_mm->type != INTEL_GVT_MM_PPGTT ||
	    !workload->shadow_mm->ppgtt_mm.shadowed) {
		gvt_vgpu_err("workload shadow ppgtt isn't ready\n");
		return -EINVAL;
	}

670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715
	if (!list_empty(&workload->lri_shadow_mm)) {
		list_for_each_entry(m, &workload->lri_shadow_mm,
				    ppgtt_mm.link) {
			ret = intel_vgpu_pin_mm(m);
			if (ret) {
				list_for_each_entry_from_reverse(m,
								 &workload->lri_shadow_mm,
								 ppgtt_mm.link)
					intel_vgpu_unpin_mm(m);
				gvt_vgpu_err("LRI shadow ppgtt fail to pin\n");
				break;
			}
		}
	}

	if (ret)
		intel_vgpu_unpin_mm(workload->shadow_mm);

	return ret;
}

static void
intel_vgpu_shadow_mm_unpin(struct intel_vgpu_workload *workload)
{
	struct intel_vgpu_mm *m;

	if (!list_empty(&workload->lri_shadow_mm)) {
		list_for_each_entry(m, &workload->lri_shadow_mm,
				    ppgtt_mm.link)
			intel_vgpu_unpin_mm(m);
	}
	intel_vgpu_unpin_mm(workload->shadow_mm);
}

static int prepare_workload(struct intel_vgpu_workload *workload)
{
	struct intel_vgpu *vgpu = workload->vgpu;
	struct intel_vgpu_submission *s = &vgpu->submission;
	int ret = 0;

	ret = intel_vgpu_shadow_mm_pin(workload);
	if (ret) {
		gvt_vgpu_err("fail to pin shadow mm\n");
		return ret;
	}

716 717
	update_shadow_pdps(workload);

718
	set_context_ppgtt_from_shadow(workload, s->shadow[workload->engine->id]);
719

720 721 722 723 724 725 726 727 728 729 730 731
	ret = intel_vgpu_sync_oos_pages(workload->vgpu);
	if (ret) {
		gvt_vgpu_err("fail to vgpu sync oos pages\n");
		goto err_unpin_mm;
	}

	ret = intel_vgpu_flush_post_shadow(workload->vgpu);
	if (ret) {
		gvt_vgpu_err("fail to flush post shadow\n");
		goto err_unpin_mm;
	}

732
	ret = copy_workload_to_ring_buffer(workload);
733 734 735 736 737
	if (ret) {
		gvt_vgpu_err("fail to generate request\n");
		goto err_unpin_mm;
	}

738 739 740 741 742 743 744 745 746 747 748 749 750
	ret = prepare_shadow_batch_buffer(workload);
	if (ret) {
		gvt_vgpu_err("fail to prepare_shadow_batch_buffer\n");
		goto err_unpin_mm;
	}

	ret = prepare_shadow_wa_ctx(&workload->wa_ctx);
	if (ret) {
		gvt_vgpu_err("fail to prepare_shadow_wa_ctx\n");
		goto err_shadow_batch;
	}

	if (workload->prepare) {
751
		ret = workload->prepare(workload);
752 753 754
		if (ret)
			goto err_shadow_wa_ctx;
	}
755

756 757 758 759 760 761
	return 0;
err_shadow_wa_ctx:
	release_shadow_wa_ctx(&workload->wa_ctx);
err_shadow_batch:
	release_shadow_batch_buffer(workload);
err_unpin_mm:
762
	intel_vgpu_shadow_mm_unpin(workload);
763 764 765
	return ret;
}

766 767
static int dispatch_workload(struct intel_vgpu_workload *workload)
{
768
	struct intel_vgpu *vgpu = workload->vgpu;
769
	struct i915_request *rq;
770
	int ret;
771

772 773
	gvt_dbg_sched("ring id %s prepare to dispatch workload %p\n",
		      workload->engine->name, workload);
774

775
	mutex_lock(&vgpu->vgpu_lock);
776

777 778 779 780
	ret = intel_gvt_workload_req_alloc(workload);
	if (ret)
		goto err_req;

781
	ret = intel_gvt_scan_and_shadow_workload(workload);
Z
Zhi Wang 已提交
782
	if (ret)
783
		goto out;
Z
Zhi Wang 已提交
784

785 786 787 788 789
	ret = populate_shadow_context(workload);
	if (ret) {
		release_shadow_wa_ctx(&workload->wa_ctx);
		goto out;
	}
Z
Zhi Wang 已提交
790

791
	ret = prepare_workload(workload);
792
out:
793 794 795 796 797 798 799 800
	if (ret) {
		/* We might still need to add request with
		 * clean ctx to retire it properly..
		 */
		rq = fetch_and_zero(&workload->req);
		i915_request_put(rq);
	}

801
	if (!IS_ERR_OR_NULL(workload->req)) {
802 803
		gvt_dbg_sched("ring id %s submit workload to i915 %p\n",
			      workload->engine->name, workload->req);
804
		i915_request_add(workload->req);
805 806
		workload->dispatched = true;
	}
807 808 809
err_req:
	if (ret)
		workload->status = ret;
810
	mutex_unlock(&vgpu->vgpu_lock);
Z
Zhi Wang 已提交
811 812 813
	return ret;
}

814 815
static struct intel_vgpu_workload *
pick_next_workload(struct intel_gvt *gvt, struct intel_engine_cs *engine)
Z
Zhi Wang 已提交
816 817 818 819
{
	struct intel_gvt_workload_scheduler *scheduler = &gvt->scheduler;
	struct intel_vgpu_workload *workload = NULL;

820
	mutex_lock(&gvt->sched_lock);
Z
Zhi Wang 已提交
821 822 823 824 825 826

	/*
	 * no current vgpu / will be scheduled out / no workload
	 * bail out
	 */
	if (!scheduler->current_vgpu) {
827
		gvt_dbg_sched("ring %s stop - no current vgpu\n", engine->name);
Z
Zhi Wang 已提交
828 829 830 831
		goto out;
	}

	if (scheduler->need_reschedule) {
832
		gvt_dbg_sched("ring %s stop - will reschedule\n", engine->name);
Z
Zhi Wang 已提交
833 834 835
		goto out;
	}

836
	if (!scheduler->current_vgpu->active ||
837
	    list_empty(workload_q_head(scheduler->current_vgpu, engine)))
Z
Zhi Wang 已提交
838 839 840 841 842 843
		goto out;

	/*
	 * still have current workload, maybe the workload disptacher
	 * fail to submit it for some reason, resubmit it.
	 */
844 845 846 847
	if (scheduler->current_workload[engine->id]) {
		workload = scheduler->current_workload[engine->id];
		gvt_dbg_sched("ring %s still have current workload %p\n",
			      engine->name, workload);
Z
Zhi Wang 已提交
848 849 850 851 852 853 854 855 856
		goto out;
	}

	/*
	 * pick a workload as current workload
	 * once current workload is set, schedule policy routines
	 * will wait the current workload is finished when trying to
	 * schedule out a vgpu.
	 */
857 858 859 860
	scheduler->current_workload[engine->id] =
		list_first_entry(workload_q_head(scheduler->current_vgpu,
						 engine),
				 struct intel_vgpu_workload, list);
Z
Zhi Wang 已提交
861

862
	workload = scheduler->current_workload[engine->id];
Z
Zhi Wang 已提交
863

864
	gvt_dbg_sched("ring %s pick new workload %p\n", engine->name, workload);
Z
Zhi Wang 已提交
865

866
	atomic_inc(&workload->vgpu->submission.running_workload_num);
Z
Zhi Wang 已提交
867
out:
868
	mutex_unlock(&gvt->sched_lock);
Z
Zhi Wang 已提交
869 870 871
	return workload;
}

872 873 874 875 876 877 878 879 880 881 882 883 884
static void update_guest_pdps(struct intel_vgpu *vgpu,
			      u64 ring_context_gpa, u32 pdp[8])
{
	u64 gpa;
	int i;

	gpa = ring_context_gpa + RING_CTX_OFF(pdps[0].val);

	for (i = 0; i < 8; i++)
		intel_gvt_hypervisor_write_gpa(vgpu,
				gpa + i * 8, &pdp[7 - i], 4);
}

885
static __maybe_unused bool
886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902
check_shadow_context_ppgtt(struct execlist_ring_context *c, struct intel_vgpu_mm *m)
{
	if (m->ppgtt_mm.root_entry_type == GTT_TYPE_PPGTT_ROOT_L4_ENTRY) {
		u64 shadow_pdp = c->pdps[7].val | (u64) c->pdps[6].val << 32;

		if (shadow_pdp != m->ppgtt_mm.shadow_pdps[0]) {
			gvt_dbg_mm("4-level context ppgtt not match LRI command\n");
			return false;
		}
		return true;
	} else {
		/* see comment in LRI handler in cmd_parser.c */
		gvt_dbg_mm("invalid shadow mm type\n");
		return false;
	}
}

Z
Zhi Wang 已提交
903 904
static void update_guest_context(struct intel_vgpu_workload *workload)
{
905
	struct i915_request *rq = workload->req;
Z
Zhi Wang 已提交
906 907
	struct intel_vgpu *vgpu = workload->vgpu;
	struct execlist_ring_context *shadow_ring_context;
908 909
	struct intel_context *ctx = workload->req->context;
	void *context_base;
Z
Zhi Wang 已提交
910 911
	void *src;
	unsigned long context_gpa, context_page_num;
912 913
	unsigned long gpa_base; /* first gpa of consecutive GPAs */
	unsigned long gpa_size; /* size of consecutive GPAs*/
Z
Zhi Wang 已提交
914
	int i;
915 916 917
	u32 ring_base;
	u32 head, tail;
	u16 wrap_count;
Z
Zhi Wang 已提交
918

919 920
	gvt_dbg_sched("ring id %d workload lrca %x\n", rq->engine->id,
		      workload->ctx_desc.lrca);
Z
Zhi Wang 已提交
921

922 923
	GEM_BUG_ON(!intel_context_is_pinned(ctx));

924 925 926 927 928 929 930 931 932 933 934 935 936
	head = workload->rb_head;
	tail = workload->rb_tail;
	wrap_count = workload->guest_rb_head >> RB_HEAD_WRAP_CNT_OFF;

	if (tail < head) {
		if (wrap_count == RB_HEAD_WRAP_CNT_MAX)
			wrap_count = 0;
		else
			wrap_count += 1;
	}

	head = (wrap_count << RB_HEAD_WRAP_CNT_OFF) | tail;

937
	ring_base = rq->engine->mmio_base;
938 939 940
	vgpu_vreg_t(vgpu, RING_TAIL(ring_base)) = tail;
	vgpu_vreg_t(vgpu, RING_HEAD(ring_base)) = head;

941
	context_page_num = rq->engine->context_size;
Z
Zhi Wang 已提交
942 943
	context_page_num = context_page_num >> PAGE_SHIFT;

944
	if (IS_BROADWELL(rq->engine->i915) && rq->engine->id == RCS0)
Z
Zhi Wang 已提交
945 946
		context_page_num = 19;

947 948
	context_base = (void *) ctx->lrc_reg_state -
			(LRC_STATE_PN << I915_GTT_PAGE_SHIFT);
Z
Zhi Wang 已提交
949

950 951 952 953 954
	/* find consecutive GPAs from gma until the first inconsecutive GPA.
	 * write to the consecutive GPAs from src virtual address
	 */
	gpa_size = 0;
	for (i = 2; i < context_page_num; i++) {
Z
Zhi Wang 已提交
955 956
		context_gpa = intel_vgpu_gma_to_gpa(vgpu->gtt.ggtt_mm,
				(u32)((workload->ctx_desc.lrca + i) <<
Z
Zhi Wang 已提交
957
					I915_GTT_PAGE_SHIFT));
Z
Zhi Wang 已提交
958
		if (context_gpa == INTEL_GVT_INVALID_ADDR) {
959
			gvt_vgpu_err("invalid guest context descriptor\n");
Z
Zhi Wang 已提交
960 961 962
			return;
		}

963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979
		if (gpa_size == 0) {
			gpa_base = context_gpa;
			src = context_base + (i << I915_GTT_PAGE_SHIFT);
		} else if (context_gpa != gpa_base + gpa_size)
			goto write;

		gpa_size += I915_GTT_PAGE_SIZE;

		if (i == context_page_num - 1)
			goto write;

		continue;

write:
		intel_gvt_hypervisor_write_gpa(vgpu, gpa_base, src, gpa_size);
		gpa_base = context_gpa;
		gpa_size = I915_GTT_PAGE_SIZE;
980
		src = context_base + (i << I915_GTT_PAGE_SHIFT);
Z
Zhi Wang 已提交
981 982 983 984 985
	}

	intel_gvt_hypervisor_write_gpa(vgpu, workload->ring_context_gpa +
		RING_CTX_OFF(ring_header.val), &workload->rb_tail, 4);

986
	shadow_ring_context = (void *) ctx->lrc_reg_state;
Z
Zhi Wang 已提交
987

988 989 990 991 992 993 994 995 996
	if (!list_empty(&workload->lri_shadow_mm)) {
		struct intel_vgpu_mm *m = list_last_entry(&workload->lri_shadow_mm,
							  struct intel_vgpu_mm,
							  ppgtt_mm.link);
		GEM_BUG_ON(!check_shadow_context_ppgtt(shadow_ring_context, m));
		update_guest_pdps(vgpu, workload->ring_context_gpa,
				  (void *)m->ppgtt_mm.guest_pdps);
	}

Z
Zhi Wang 已提交
997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010
#define COPY_REG(name) \
	intel_gvt_hypervisor_write_gpa(vgpu, workload->ring_context_gpa + \
		RING_CTX_OFF(name.val), &shadow_ring_context->name.val, 4)

	COPY_REG(ctx_ctrl);
	COPY_REG(ctx_timestamp);

#undef COPY_REG

	intel_gvt_hypervisor_write_gpa(vgpu,
			workload->ring_context_gpa +
			sizeof(*shadow_ring_context),
			(void *)shadow_ring_context +
			sizeof(*shadow_ring_context),
Z
Zhi Wang 已提交
1011
			I915_GTT_PAGE_SIZE - sizeof(*shadow_ring_context));
Z
Zhi Wang 已提交
1012 1013
}

1014
void intel_vgpu_clean_workloads(struct intel_vgpu *vgpu,
1015
				intel_engine_mask_t engine_mask)
1016 1017
{
	struct intel_vgpu_submission *s = &vgpu->submission;
1018
	struct drm_i915_private *dev_priv = vgpu->gvt->gt->i915;
1019 1020
	struct intel_engine_cs *engine;
	struct intel_vgpu_workload *pos, *n;
1021
	intel_engine_mask_t tmp;
1022 1023

	/* free the unsubmited workloads in the queues. */
1024
	for_each_engine_masked(engine, &dev_priv->gt, engine_mask, tmp) {
1025 1026 1027 1028 1029 1030 1031 1032 1033
		list_for_each_entry_safe(pos, n,
			&s->workload_q_head[engine->id], list) {
			list_del_init(&pos->list);
			intel_vgpu_destroy_workload(pos);
		}
		clear_bit(engine->id, s->shadow_ctx_desc_updated);
	}
}

Z
Zhi Wang 已提交
1034 1035 1036
static void complete_current_workload(struct intel_gvt *gvt, int ring_id)
{
	struct intel_gvt_workload_scheduler *scheduler = &gvt->scheduler;
1037 1038 1039 1040
	struct intel_vgpu_workload *workload =
		scheduler->current_workload[ring_id];
	struct intel_vgpu *vgpu = workload->vgpu;
	struct intel_vgpu_submission *s = &vgpu->submission;
1041
	struct i915_request *rq = workload->req;
Z
Zhi Wang 已提交
1042
	int event;
Z
Zhi Wang 已提交
1043

1044
	mutex_lock(&vgpu->vgpu_lock);
1045
	mutex_lock(&gvt->sched_lock);
Z
Zhi Wang 已提交
1046

1047 1048 1049 1050
	/* For the workload w/ request, needs to wait for the context
	 * switch to make sure request is completed.
	 * For the workload w/o request, directly complete the workload.
	 */
1051
	if (rq) {
Z
Zhi Wang 已提交
1052 1053 1054
		wait_event(workload->shadow_ctx_status_wq,
			   !atomic_read(&workload->shadow_ctx_active));

1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066
		/* If this request caused GPU hang, req->fence.error will
		 * be set to -EIO. Use -EIO to set workload status so
		 * that when this request caused GPU hang, didn't trigger
		 * context switch interrupt to guest.
		 */
		if (likely(workload->status == -EINPROGRESS)) {
			if (workload->req->fence.error == -EIO)
				workload->status = -EIO;
			else
				workload->status = 0;
		}

1067 1068
		if (!workload->status &&
		    !(vgpu->resetting_eng & BIT(ring_id))) {
1069
			update_guest_context(workload);
Z
Zhi Wang 已提交
1070

1071 1072 1073 1074
			for_each_set_bit(event, workload->pending_events,
					 INTEL_GVT_EVENT_MAX)
				intel_vgpu_trigger_virtual_event(vgpu, event);
		}
1075

1076
		i915_request_put(fetch_and_zero(&workload->req));
Z
Zhi Wang 已提交
1077 1078 1079 1080 1081 1082 1083 1084
	}

	gvt_dbg_sched("ring id %d complete workload %p status %d\n",
			ring_id, workload, workload->status);

	scheduler->current_workload[ring_id] = NULL;

	list_del_init(&workload->list);
1085

1086
	if (workload->status || vgpu->resetting_eng & BIT(ring_id)) {
1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099
		/* if workload->status is not successful means HW GPU
		 * has occurred GPU hang or something wrong with i915/GVT,
		 * and GVT won't inject context switch interrupt to guest.
		 * So this error is a vGPU hang actually to the guest.
		 * According to this we should emunlate a vGPU hang. If
		 * there are pending workloads which are already submitted
		 * from guest, we should clean them up like HW GPU does.
		 *
		 * if it is in middle of engine resetting, the pending
		 * workloads won't be submitted to HW GPU and will be
		 * cleaned up during the resetting process later, so doing
		 * the workload clean up here doesn't have any impact.
		 **/
1100
		intel_vgpu_clean_workloads(vgpu, BIT(ring_id));
1101 1102
	}

Z
Zhi Wang 已提交
1103 1104
	workload->complete(workload);

1105
	intel_vgpu_shadow_mm_unpin(workload);
1106 1107
	intel_vgpu_destroy_workload(workload);

1108
	atomic_dec(&s->running_workload_num);
Z
Zhi Wang 已提交
1109
	wake_up(&scheduler->workload_complete_wq);
1110 1111 1112 1113

	if (gvt->scheduler.need_reschedule)
		intel_gvt_request_service(gvt, INTEL_GVT_REQUEST_EVENT_SCHED);

1114
	mutex_unlock(&gvt->sched_lock);
1115
	mutex_unlock(&vgpu->vgpu_lock);
Z
Zhi Wang 已提交
1116 1117
}

1118
static int workload_thread(void *arg)
Z
Zhi Wang 已提交
1119
{
1120 1121 1122
	struct intel_engine_cs *engine = arg;
	const bool need_force_wake = INTEL_GEN(engine->i915) >= 9;
	struct intel_gvt *gvt = engine->i915->gvt;
Z
Zhi Wang 已提交
1123 1124
	struct intel_gvt_workload_scheduler *scheduler = &gvt->scheduler;
	struct intel_vgpu_workload *workload = NULL;
1125
	struct intel_vgpu *vgpu = NULL;
Z
Zhi Wang 已提交
1126
	int ret;
1127
	DEFINE_WAIT_FUNC(wait, woken_wake_function);
Z
Zhi Wang 已提交
1128

1129
	gvt_dbg_core("workload thread for ring %s started\n", engine->name);
Z
Zhi Wang 已提交
1130 1131

	while (!kthread_should_stop()) {
1132 1133 1134
		intel_wakeref_t wakeref;

		add_wait_queue(&scheduler->waitq[engine->id], &wait);
1135
		do {
1136
			workload = pick_next_workload(gvt, engine);
1137 1138 1139 1140 1141
			if (workload)
				break;
			wait_woken(&wait, TASK_INTERRUPTIBLE,
				   MAX_SCHEDULE_TIMEOUT);
		} while (!kthread_should_stop());
1142
		remove_wait_queue(&scheduler->waitq[engine->id], &wait);
1143 1144

		if (!workload)
Z
Zhi Wang 已提交
1145 1146
			break;

1147 1148 1149
		gvt_dbg_sched("ring %s next workload %p vgpu %d\n",
			      engine->name, workload,
			      workload->vgpu->id);
Z
Zhi Wang 已提交
1150

1151
		wakeref = intel_runtime_pm_get(engine->uncore->rpm);
1152

1153 1154
		gvt_dbg_sched("ring %s will dispatch workload %p\n",
			      engine->name, workload);
Z
Zhi Wang 已提交
1155 1156

		if (need_force_wake)
1157 1158
			intel_uncore_forcewake_get(engine->uncore,
						   FORCEWAKE_ALL);
1159 1160 1161 1162 1163 1164 1165
		/*
		 * Update the vReg of the vGPU which submitted this
		 * workload. The vGPU may use these registers for checking
		 * the context state. The value comes from GPU commands
		 * in this workload.
		 */
		update_vreg_in_ctx(workload);
Z
Zhi Wang 已提交
1166 1167

		ret = dispatch_workload(workload);
1168

Z
Zhi Wang 已提交
1169
		if (ret) {
1170 1171
			vgpu = workload->vgpu;
			gvt_vgpu_err("fail to dispatch workload, skip\n");
Z
Zhi Wang 已提交
1172 1173 1174
			goto complete;
		}

1175 1176
		gvt_dbg_sched("ring %s wait workload %p\n",
			      engine->name, workload);
1177
		i915_request_wait(workload->req, 0, MAX_SCHEDULE_TIMEOUT);
Z
Zhi Wang 已提交
1178 1179

complete:
1180
		gvt_dbg_sched("will complete workload %p, status: %d\n",
1181
			      workload, workload->status);
Z
Zhi Wang 已提交
1182

1183
		complete_current_workload(gvt, engine->id);
1184

Z
Zhi Wang 已提交
1185
		if (need_force_wake)
1186 1187
			intel_uncore_forcewake_put(engine->uncore,
						   FORCEWAKE_ALL);
Z
Zhi Wang 已提交
1188

1189
		intel_runtime_pm_put(engine->uncore->rpm, wakeref);
1190
		if (ret && (vgpu_is_vm_unhealthy(ret)))
1191
			enter_failsafe_mode(vgpu, GVT_FAILSAFE_GUEST_ERR);
Z
Zhi Wang 已提交
1192 1193 1194 1195 1196 1197
	}
	return 0;
}

void intel_gvt_wait_vgpu_idle(struct intel_vgpu *vgpu)
{
1198
	struct intel_vgpu_submission *s = &vgpu->submission;
Z
Zhi Wang 已提交
1199 1200 1201
	struct intel_gvt *gvt = vgpu->gvt;
	struct intel_gvt_workload_scheduler *scheduler = &gvt->scheduler;

1202
	if (atomic_read(&s->running_workload_num)) {
Z
Zhi Wang 已提交
1203 1204 1205
		gvt_dbg_sched("wait vgpu idle\n");

		wait_event(scheduler->workload_complete_wq,
1206
				!atomic_read(&s->running_workload_num));
Z
Zhi Wang 已提交
1207 1208 1209 1210 1211 1212
	}
}

void intel_gvt_clean_workload_scheduler(struct intel_gvt *gvt)
{
	struct intel_gvt_workload_scheduler *scheduler = &gvt->scheduler;
1213 1214
	struct intel_engine_cs *engine;
	enum intel_engine_id i;
Z
Zhi Wang 已提交
1215 1216 1217

	gvt_dbg_core("clean workload scheduler\n");

1218
	for_each_engine(engine, gvt->gt, i) {
1219 1220 1221 1222
		atomic_notifier_chain_unregister(
					&engine->context_status_notifier,
					&gvt->shadow_ctx_notifier_block[i]);
		kthread_stop(scheduler->thread[i]);
Z
Zhi Wang 已提交
1223 1224 1225 1226 1227 1228
	}
}

int intel_gvt_init_workload_scheduler(struct intel_gvt *gvt)
{
	struct intel_gvt_workload_scheduler *scheduler = &gvt->scheduler;
1229 1230
	struct intel_engine_cs *engine;
	enum intel_engine_id i;
Z
Zhi Wang 已提交
1231 1232 1233 1234 1235 1236
	int ret;

	gvt_dbg_core("init workload scheduler\n");

	init_waitqueue_head(&scheduler->workload_complete_wq);

1237
	for_each_engine(engine, gvt->gt, i) {
Z
Zhi Wang 已提交
1238 1239
		init_waitqueue_head(&scheduler->waitq[i]);

1240 1241
		scheduler->thread[i] = kthread_run(workload_thread, engine,
						   "gvt:%s", engine->name);
Z
Zhi Wang 已提交
1242 1243 1244 1245 1246
		if (IS_ERR(scheduler->thread[i])) {
			gvt_err("fail to create workload thread\n");
			ret = PTR_ERR(scheduler->thread[i]);
			goto err;
		}
1247 1248 1249 1250 1251

		gvt->shadow_ctx_notifier_block[i].notifier_call =
					shadow_context_status_change;
		atomic_notifier_chain_register(&engine->context_status_notifier,
					&gvt->shadow_ctx_notifier_block[i]);
Z
Zhi Wang 已提交
1252
	}
1253

Z
Zhi Wang 已提交
1254
	return 0;
1255

Z
Zhi Wang 已提交
1256 1257 1258 1259 1260
err:
	intel_gvt_clean_workload_scheduler(gvt);
	return ret;
}

1261
static void
1262
i915_context_ppgtt_root_restore(struct intel_vgpu_submission *s,
1263
				struct i915_ppgtt *ppgtt)
1264 1265 1266
{
	int i;

1267
	if (i915_vm_is_4lvl(&ppgtt->vm)) {
1268
		set_dma_address(ppgtt->pd, s->i915_context_pml4);
1269
	} else {
1270 1271 1272 1273
		for (i = 0; i < GEN8_3LVL_PDPES; i++) {
			struct i915_page_directory * const pd =
				i915_pd_entry(ppgtt->pd, i);

1274
			set_dma_address(pd, s->i915_context_pdps[i]);
1275
		}
1276 1277 1278
	}
}

1279 1280 1281 1282 1283 1284 1285 1286
/**
 * intel_vgpu_clean_submission - free submission-related resource for vGPU
 * @vgpu: a vGPU
 *
 * This function is called when a vGPU is being destroyed.
 *
 */
void intel_vgpu_clean_submission(struct intel_vgpu *vgpu)
Z
Zhi Wang 已提交
1287
{
1288
	struct intel_vgpu_submission *s = &vgpu->submission;
1289 1290
	struct intel_engine_cs *engine;
	enum intel_engine_id id;
1291

1292
	intel_vgpu_select_submission_ops(vgpu, ALL_ENGINES, 0);
1293

1294
	i915_context_ppgtt_root_restore(s, i915_vm_to_ppgtt(s->shadow[0]->vm));
1295
	for_each_engine(engine, vgpu->gvt->gt, id)
1296
		intel_context_put(s->shadow[id]);
1297

1298
	kmem_cache_destroy(s->workloads);
Z
Zhi Wang 已提交
1299 1300
}

1301 1302 1303 1304 1305 1306 1307 1308 1309 1310

/**
 * intel_vgpu_reset_submission - reset submission-related resource for vGPU
 * @vgpu: a vGPU
 * @engine_mask: engines expected to be reset
 *
 * This function is called when a vGPU is being destroyed.
 *
 */
void intel_vgpu_reset_submission(struct intel_vgpu *vgpu,
1311
				 intel_engine_mask_t engine_mask)
1312 1313 1314 1315 1316 1317
{
	struct intel_vgpu_submission *s = &vgpu->submission;

	if (!s->active)
		return;

1318
	intel_vgpu_clean_workloads(vgpu, engine_mask);
1319 1320 1321
	s->ops->reset(vgpu, engine_mask);
}

1322
static void
1323
i915_context_ppgtt_root_save(struct intel_vgpu_submission *s,
1324
			     struct i915_ppgtt *ppgtt)
1325 1326 1327
{
	int i;

1328
	if (i915_vm_is_4lvl(&ppgtt->vm)) {
1329
		s->i915_context_pml4 = px_dma(ppgtt->pd);
1330
	} else {
1331 1332 1333 1334 1335 1336
		for (i = 0; i < GEN8_3LVL_PDPES; i++) {
			struct i915_page_directory * const pd =
				i915_pd_entry(ppgtt->pd, i);

			s->i915_context_pdps[i] = px_dma(pd);
		}
1337 1338 1339
	}
}

1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350
/**
 * intel_vgpu_setup_submission - setup submission-related resource for vGPU
 * @vgpu: a vGPU
 *
 * This function is called when a vGPU is being created.
 *
 * Returns:
 * Zero on success, negative error code if failed.
 *
 */
int intel_vgpu_setup_submission(struct intel_vgpu *vgpu)
Z
Zhi Wang 已提交
1351
{
1352
	struct drm_i915_private *i915 = vgpu->gvt->gt->i915;
1353
	struct intel_vgpu_submission *s = &vgpu->submission;
1354
	struct intel_engine_cs *engine;
1355
	struct i915_ppgtt *ppgtt;
1356
	enum intel_engine_id i;
1357
	int ret;
Z
Zhi Wang 已提交
1358

1359
	ppgtt = i915_ppgtt_create(&i915->gt);
1360 1361
	if (IS_ERR(ppgtt))
		return PTR_ERR(ppgtt);
1362

1363
	i915_context_ppgtt_root_save(s, ppgtt);
Z
Zhi Wang 已提交
1364

1365
	for_each_engine(engine, vgpu->gvt->gt, i) {
1366 1367 1368 1369 1370
		struct intel_context *ce;

		INIT_LIST_HEAD(&s->workload_q_head[i]);
		s->shadow[i] = ERR_PTR(-EINVAL);

1371
		ce = intel_context_create(engine);
1372 1373 1374 1375
		if (IS_ERR(ce)) {
			ret = PTR_ERR(ce);
			goto out_shadow_ctx;
		}
Z
Zhi Wang 已提交
1376

1377 1378
		i915_vm_put(ce->vm);
		ce->vm = i915_vm_get(&ppgtt->vm);
1379 1380
		intel_context_set_single_submission(ce);

1381
		/* Max ring buffer size */
1382
		if (!intel_uc_wants_guc_submission(&engine->gt->uc)) {
1383 1384 1385 1386 1387
			const unsigned int ring_size = 512 * SZ_4K;

			ce->ring = __intel_context_ring_size(ring_size);
		}

1388 1389
		s->shadow[i] = ce;
	}
1390

1391
	bitmap_zero(s->shadow_ctx_desc_updated, I915_NUM_ENGINES);
1392

1393 1394 1395 1396 1397 1398
	s->workloads = kmem_cache_create_usercopy("gvt-g_vgpu_workload",
						  sizeof(struct intel_vgpu_workload), 0,
						  SLAB_HWCACHE_ALIGN,
						  offsetof(struct intel_vgpu_workload, rb_tail),
						  sizeof_field(struct intel_vgpu_workload, rb_tail),
						  NULL);
1399

1400
	if (!s->workloads) {
1401 1402 1403 1404
		ret = -ENOMEM;
		goto out_shadow_ctx;
	}

1405
	atomic_set(&s->running_workload_num, 0);
1406
	bitmap_zero(s->tlb_handle_pending, I915_NUM_ENGINES);
1407

1408 1409
	memset(s->last_ctx, 0, sizeof(s->last_ctx));

1410
	i915_vm_put(&ppgtt->vm);
Z
Zhi Wang 已提交
1411
	return 0;
1412 1413

out_shadow_ctx:
1414
	i915_context_ppgtt_root_restore(s, ppgtt);
1415
	for_each_engine(engine, vgpu->gvt->gt, i) {
1416 1417 1418
		if (IS_ERR(s->shadow[i]))
			break;

1419
		intel_context_put(s->shadow[i]);
1420
	}
1421
	i915_vm_put(&ppgtt->vm);
1422
	return ret;
Z
Zhi Wang 已提交
1423
}
1424

1425 1426 1427
/**
 * intel_vgpu_select_submission_ops - select virtual submission interface
 * @vgpu: a vGPU
1428
 * @engine_mask: either ALL_ENGINES or target engine mask
1429 1430 1431 1432 1433 1434 1435 1436 1437
 * @interface: expected vGPU virtual submission interface
 *
 * This function is called when guest configures submission interface.
 *
 * Returns:
 * Zero on success, negative error code if failed.
 *
 */
int intel_vgpu_select_submission_ops(struct intel_vgpu *vgpu,
1438
				     intel_engine_mask_t engine_mask,
1439 1440
				     unsigned int interface)
{
1441
	struct drm_i915_private *i915 = vgpu->gvt->gt->i915;
1442 1443 1444 1445 1446 1447 1448
	struct intel_vgpu_submission *s = &vgpu->submission;
	const struct intel_vgpu_submission_ops *ops[] = {
		[INTEL_VGPU_EXECLIST_SUBMISSION] =
			&intel_vgpu_execlist_submission_ops,
	};
	int ret;

1449
	if (drm_WARN_ON(&i915->drm, interface >= ARRAY_SIZE(ops)))
1450 1451
		return -EINVAL;

1452 1453
	if (drm_WARN_ON(&i915->drm,
			interface == 0 && engine_mask != ALL_ENGINES))
1454 1455 1456
		return -EINVAL;

	if (s->active)
1457
		s->ops->clean(vgpu, engine_mask);
1458 1459 1460 1461

	if (interface == 0) {
		s->ops = NULL;
		s->virtual_submission_interface = 0;
1462 1463
		s->active = false;
		gvt_dbg_core("vgpu%d: remove submission ops\n", vgpu->id);
1464 1465 1466
		return 0;
	}

1467
	ret = ops[interface]->init(vgpu, engine_mask);
1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480
	if (ret)
		return ret;

	s->ops = ops[interface];
	s->virtual_submission_interface = interface;
	s->active = true;

	gvt_dbg_core("vgpu%d: activate ops [ %s ]\n",
			vgpu->id, s->ops->name);

	return 0;
}

1481 1482
/**
 * intel_vgpu_destroy_workload - destroy a vGPU workload
1483
 * @workload: workload to destroy
1484 1485 1486 1487 1488 1489 1490 1491
 *
 * This function is called when destroy a vGPU workload.
 *
 */
void intel_vgpu_destroy_workload(struct intel_vgpu_workload *workload)
{
	struct intel_vgpu_submission *s = &workload->vgpu->submission;

1492
	intel_context_unpin(s->shadow[workload->engine->id]);
1493 1494 1495
	release_shadow_batch_buffer(workload);
	release_shadow_wa_ctx(&workload->wa_ctx);

1496 1497 1498 1499 1500 1501 1502 1503 1504 1505
	if (!list_empty(&workload->lri_shadow_mm)) {
		struct intel_vgpu_mm *m, *mm;
		list_for_each_entry_safe(m, mm, &workload->lri_shadow_mm,
					 ppgtt_mm.link) {
			list_del(&m->ppgtt_mm.link);
			intel_vgpu_mm_put(m);
		}
	}

	GEM_BUG_ON(!list_empty(&workload->lri_shadow_mm));
1506
	if (workload->shadow_mm)
1507
		intel_vgpu_mm_put(workload->shadow_mm);
1508 1509 1510 1511

	kmem_cache_free(s->workloads, workload);
}

1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523
static struct intel_vgpu_workload *
alloc_workload(struct intel_vgpu *vgpu)
{
	struct intel_vgpu_submission *s = &vgpu->submission;
	struct intel_vgpu_workload *workload;

	workload = kmem_cache_zalloc(s->workloads, GFP_KERNEL);
	if (!workload)
		return ERR_PTR(-ENOMEM);

	INIT_LIST_HEAD(&workload->list);
	INIT_LIST_HEAD(&workload->shadow_bb);
1524
	INIT_LIST_HEAD(&workload->lri_shadow_mm);
1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543

	init_waitqueue_head(&workload->shadow_ctx_status_wq);
	atomic_set(&workload->shadow_ctx_active, 0);

	workload->status = -EINPROGRESS;
	workload->vgpu = vgpu;

	return workload;
}

#define RING_CTX_OFF(x) \
	offsetof(struct execlist_ring_context, x)

static void read_guest_pdps(struct intel_vgpu *vgpu,
		u64 ring_context_gpa, u32 pdp[8])
{
	u64 gpa;
	int i;

1544
	gpa = ring_context_gpa + RING_CTX_OFF(pdps[0].val);
1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555

	for (i = 0; i < 8; i++)
		intel_gvt_hypervisor_read_gpa(vgpu,
				gpa + i * 8, &pdp[7 - i], 4);
}

static int prepare_mm(struct intel_vgpu_workload *workload)
{
	struct execlist_ctx_descriptor_format *desc = &workload->ctx_desc;
	struct intel_vgpu_mm *mm;
	struct intel_vgpu *vgpu = workload->vgpu;
1556
	enum intel_gvt_gtt_type root_entry_type;
1557
	u64 pdps[GVT_RING_CTX_NR_PDPS];
1558

1559 1560 1561 1562 1563 1564 1565 1566
	switch (desc->addressing_mode) {
	case 1: /* legacy 32-bit */
		root_entry_type = GTT_TYPE_PPGTT_ROOT_L3_ENTRY;
		break;
	case 3: /* legacy 64-bit */
		root_entry_type = GTT_TYPE_PPGTT_ROOT_L4_ENTRY;
		break;
	default:
1567 1568 1569 1570
		gvt_vgpu_err("Advanced Context mode(SVM) is not supported!\n");
		return -EINVAL;
	}

1571
	read_guest_pdps(workload->vgpu, workload->ring_context_gpa, (void *)pdps);
1572

1573 1574 1575 1576
	mm = intel_vgpu_get_ppgtt_mm(workload->vgpu, root_entry_type, pdps);
	if (IS_ERR(mm))
		return PTR_ERR(mm);

1577 1578 1579 1580 1581 1582 1583
	workload->shadow_mm = mm;
	return 0;
}

#define same_context(a, b) (((a)->context_id == (b)->context_id) && \
		((a)->lrca == (b)->lrca))

1584 1585 1586
/**
 * intel_vgpu_create_workload - create a vGPU workload
 * @vgpu: a vGPU
1587
 * @engine: the engine
1588
 * @desc: a guest context descriptor
1589 1590 1591 1592 1593 1594 1595 1596 1597
 *
 * This function is called when creating a vGPU workload.
 *
 * Returns:
 * struct intel_vgpu_workload * on success, negative error code in
 * pointer if failed.
 *
 */
struct intel_vgpu_workload *
1598 1599
intel_vgpu_create_workload(struct intel_vgpu *vgpu,
			   const struct intel_engine_cs *engine,
1600
			   struct execlist_ctx_descriptor_format *desc)
1601 1602
{
	struct intel_vgpu_submission *s = &vgpu->submission;
1603
	struct list_head *q = workload_q_head(vgpu, engine);
1604
	struct intel_vgpu_workload *last_workload = NULL;
1605 1606 1607
	struct intel_vgpu_workload *workload = NULL;
	u64 ring_context_gpa;
	u32 head, tail, start, ctl, ctx_ctl, per_ctx, indirect_ctx;
1608
	u32 guest_head;
1609
	int ret;
1610

1611
	ring_context_gpa = intel_vgpu_gma_to_gpa(vgpu->gtt.ggtt_mm,
Z
Zhi Wang 已提交
1612
			(u32)((desc->lrca + 1) << I915_GTT_PAGE_SHIFT));
1613 1614 1615 1616
	if (ring_context_gpa == INTEL_GVT_INVALID_ADDR) {
		gvt_vgpu_err("invalid guest context LRCA: %x\n", desc->lrca);
		return ERR_PTR(-EINVAL);
	}
1617

1618 1619
	intel_gvt_hypervisor_read_gpa(vgpu, ring_context_gpa +
			RING_CTX_OFF(ring_header.val), &head, 4);
1620

1621 1622
	intel_gvt_hypervisor_read_gpa(vgpu, ring_context_gpa +
			RING_CTX_OFF(ring_tail.val), &tail, 4);
1623

1624 1625
	guest_head = head;

1626 1627 1628
	head &= RB_HEAD_OFF_MASK;
	tail &= RB_TAIL_OFF_MASK;

1629 1630 1631
	list_for_each_entry_reverse(last_workload, q, list) {

		if (same_context(&last_workload->ctx_desc, desc)) {
1632 1633
			gvt_dbg_el("ring %s cur workload == last\n",
				   engine->name);
1634
			gvt_dbg_el("ctx head %x real head %lx\n", head,
1635
				   last_workload->rb_tail);
1636 1637 1638 1639 1640 1641 1642
			/*
			 * cannot use guest context head pointer here,
			 * as it might not be updated at this time
			 */
			head = last_workload->rb_tail;
			break;
		}
1643 1644
	}

1645
	gvt_dbg_el("ring %s begin a new workload\n", engine->name);
1646 1647 1648 1649 1650 1651 1652 1653 1654

	/* record some ring buffer register values for scan and shadow */
	intel_gvt_hypervisor_read_gpa(vgpu, ring_context_gpa +
			RING_CTX_OFF(rb_start.val), &start, 4);
	intel_gvt_hypervisor_read_gpa(vgpu, ring_context_gpa +
			RING_CTX_OFF(rb_ctrl.val), &ctl, 4);
	intel_gvt_hypervisor_read_gpa(vgpu, ring_context_gpa +
			RING_CTX_OFF(ctx_ctrl.val), &ctx_ctl, 4);

1655 1656 1657 1658 1659 1660
	if (!intel_gvt_ggtt_validate_range(vgpu, start,
				_RING_CTL_BUF_SIZE(ctl))) {
		gvt_vgpu_err("context contain invalid rb at: 0x%x\n", start);
		return ERR_PTR(-EINVAL);
	}

1661 1662 1663 1664
	workload = alloc_workload(vgpu);
	if (IS_ERR(workload))
		return workload;

1665
	workload->engine = engine;
1666 1667 1668
	workload->ctx_desc = *desc;
	workload->ring_context_gpa = ring_context_gpa;
	workload->rb_head = head;
1669
	workload->guest_rb_head = guest_head;
1670 1671 1672 1673
	workload->rb_tail = tail;
	workload->rb_start = start;
	workload->rb_ctl = ctl;

1674
	if (engine->id == RCS0) {
1675 1676 1677 1678 1679 1680 1681 1682 1683 1684
		intel_gvt_hypervisor_read_gpa(vgpu, ring_context_gpa +
			RING_CTX_OFF(bb_per_ctx_ptr.val), &per_ctx, 4);
		intel_gvt_hypervisor_read_gpa(vgpu, ring_context_gpa +
			RING_CTX_OFF(rcs_indirect_ctx.val), &indirect_ctx, 4);

		workload->wa_ctx.indirect_ctx.guest_gma =
			indirect_ctx & INDIRECT_CTX_ADDR_MASK;
		workload->wa_ctx.indirect_ctx.size =
			(indirect_ctx & INDIRECT_CTX_SIZE_MASK) *
			CACHELINE_BYTES;
1685 1686 1687 1688 1689 1690 1691

		if (workload->wa_ctx.indirect_ctx.size != 0) {
			if (!intel_gvt_ggtt_validate_range(vgpu,
				workload->wa_ctx.indirect_ctx.guest_gma,
				workload->wa_ctx.indirect_ctx.size)) {
				gvt_vgpu_err("invalid wa_ctx at: 0x%lx\n",
				    workload->wa_ctx.indirect_ctx.guest_gma);
1692
				kmem_cache_free(s->workloads, workload);
1693 1694 1695 1696
				return ERR_PTR(-EINVAL);
			}
		}

1697 1698 1699
		workload->wa_ctx.per_ctx.guest_gma =
			per_ctx & PER_CTX_ADDR_MASK;
		workload->wa_ctx.per_ctx.valid = per_ctx & 1;
1700 1701 1702 1703 1704 1705
		if (workload->wa_ctx.per_ctx.valid) {
			if (!intel_gvt_ggtt_validate_range(vgpu,
				workload->wa_ctx.per_ctx.guest_gma,
				CACHELINE_BYTES)) {
				gvt_vgpu_err("invalid per_ctx at: 0x%lx\n",
					workload->wa_ctx.per_ctx.guest_gma);
1706
				kmem_cache_free(s->workloads, workload);
1707 1708 1709
				return ERR_PTR(-EINVAL);
			}
		}
1710 1711
	}

1712 1713
	gvt_dbg_el("workload %p ring %s head %x tail %x start %x ctl %x\n",
		   workload, engine->name, head, tail, start, ctl);
1714 1715 1716 1717 1718 1719 1720 1721 1722 1723

	ret = prepare_mm(workload);
	if (ret) {
		kmem_cache_free(s->workloads, workload);
		return ERR_PTR(ret);
	}

	/* Only scan and shadow the first workload in the queue
	 * as there is only one pre-allocated buf-obj for shadow.
	 */
1724 1725 1726 1727 1728
	if (list_empty(q)) {
		intel_wakeref_t wakeref;

		with_intel_runtime_pm(engine->gt->uncore->rpm, wakeref)
			ret = intel_gvt_scan_and_shadow_workload(workload);
1729 1730
	}

1731 1732 1733
	if (ret) {
		if (vgpu_is_vm_unhealthy(ret))
			enter_failsafe_mode(vgpu, GVT_FAILSAFE_GUEST_ERR);
1734 1735 1736
		intel_vgpu_destroy_workload(workload);
		return ERR_PTR(ret);
	}
1737

1738 1739 1740 1741 1742 1743
	ret = intel_context_pin(s->shadow[engine->id]);
	if (ret) {
		intel_vgpu_destroy_workload(workload);
		return ERR_PTR(ret);
	}

1744 1745
	return workload;
}
1746 1747 1748 1749 1750 1751 1752 1753

/**
 * intel_vgpu_queue_workload - Qeue a vGPU workload
 * @workload: the workload to queue in
 */
void intel_vgpu_queue_workload(struct intel_vgpu_workload *workload)
{
	list_add_tail(&workload->list,
1754
		      workload_q_head(workload->vgpu, workload->engine));
1755
	intel_gvt_kick_schedule(workload->vgpu->gvt);
1756
	wake_up(&workload->vgpu->gvt->scheduler.waitq[workload->engine->id]);
1757
}