selftest_lrc.c 60.9 KB
Newer Older
1 2 3 4 5 6
/*
 * SPDX-License-Identifier: MIT
 *
 * Copyright © 2018 Intel Corporation
 */

7 8
#include <linux/prime_numbers.h>

9
#include "gem/i915_gem_pm.h"
10
#include "gt/intel_reset.h"
11

12 13 14 15 16
#include "i915_selftest.h"
#include "selftests/i915_random.h"
#include "selftests/igt_flush_test.h"
#include "selftests/igt_live_test.h"
#include "selftests/igt_spinner.h"
17
#include "selftests/lib_sw_fence.h"
18 19 20

#include "gem/selftests/igt_gem_utils.h"
#include "gem/selftests/mock_context.h"
21

22 23 24
#define CS_GPR(engine, n) ((engine)->mmio_base + 0x600 + (n) * 4)
#define NUM_GPR_DW (16 * 2) /* each GPR is 2 dwords */

25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
static struct i915_vma *create_scratch(struct intel_gt *gt)
{
	struct drm_i915_gem_object *obj;
	struct i915_vma *vma;
	int err;

	obj = i915_gem_object_create_internal(gt->i915, PAGE_SIZE);
	if (IS_ERR(obj))
		return ERR_CAST(obj);

	i915_gem_object_set_cache_coherency(obj, I915_CACHING_CACHED);

	vma = i915_vma_instance(obj, &gt->ggtt->vm, NULL);
	if (IS_ERR(vma)) {
		i915_gem_object_put(obj);
		return vma;
	}

	err = i915_vma_pin(vma, 0, 0, PIN_GLOBAL);
	if (err) {
		i915_gem_object_put(obj);
		return ERR_PTR(err);
	}

	return vma;
}

52 53
static int live_sanitycheck(void *arg)
{
54
	struct intel_gt *gt = arg;
55
	struct i915_gem_engines_iter it;
56
	struct i915_gem_context *ctx;
57
	struct intel_context *ce;
58
	struct igt_spinner spin;
59 60
	int err = -ENOMEM;

61
	if (!HAS_LOGICAL_RING_CONTEXTS(gt->i915))
62 63
		return 0;

64
	if (igt_spinner_init(&spin, gt))
65
		return -ENOMEM;
66

67
	ctx = kernel_context(gt->i915);
68 69 70
	if (!ctx)
		goto err_spin;

71
	for_each_gem_engine(ce, i915_gem_context_lock_engines(ctx), it) {
72 73
		struct i915_request *rq;

74
		rq = igt_spinner_create_request(&spin, ce, MI_NOOP);
75 76 77 78 79 80
		if (IS_ERR(rq)) {
			err = PTR_ERR(rq);
			goto err_ctx;
		}

		i915_request_add(rq);
81
		if (!igt_wait_for_spinner(&spin, rq)) {
82 83
			GEM_TRACE("spinner failed to start\n");
			GEM_TRACE_DUMP();
84
			intel_gt_set_wedged(gt);
85 86 87 88
			err = -EIO;
			goto err_ctx;
		}

89
		igt_spinner_end(&spin);
90
		if (igt_flush_test(gt->i915)) {
91 92 93 94 95 96 97
			err = -EIO;
			goto err_ctx;
		}
	}

	err = 0;
err_ctx:
98
	i915_gem_context_unlock_engines(ctx);
99 100
	kernel_context_close(ctx);
err_spin:
101
	igt_spinner_fini(&spin);
102 103 104
	return err;
}

105
static int live_unlite_restore(struct intel_gt *gt, int prio)
106 107 108 109 110 111 112 113 114 115 116 117
{
	struct intel_engine_cs *engine;
	struct i915_gem_context *ctx;
	enum intel_engine_id id;
	struct igt_spinner spin;
	int err = -ENOMEM;

	/*
	 * Check that we can correctly context switch between 2 instances
	 * on the same engine from the same parent context.
	 */

118
	if (igt_spinner_init(&spin, gt))
119
		return err;
120

121
	ctx = kernel_context(gt->i915);
122 123 124 125
	if (!ctx)
		goto err_spin;

	err = 0;
126
	for_each_engine(engine, gt->i915, id) {
127 128 129 130 131 132 133 134 135 136 137
		struct intel_context *ce[2] = {};
		struct i915_request *rq[2];
		struct igt_live_test t;
		int n;

		if (prio && !intel_engine_has_preemption(engine))
			continue;

		if (!intel_engine_can_store_dword(engine))
			continue;

138
		if (igt_live_test_begin(&t, gt->i915, __func__, engine->name)) {
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
			err = -EIO;
			break;
		}

		for (n = 0; n < ARRAY_SIZE(ce); n++) {
			struct intel_context *tmp;

			tmp = intel_context_create(ctx, engine);
			if (IS_ERR(tmp)) {
				err = PTR_ERR(tmp);
				goto err_ce;
			}

			err = intel_context_pin(tmp);
			if (err) {
				intel_context_put(tmp);
				goto err_ce;
			}

			/*
			 * Setup the pair of contexts such that if we
			 * lite-restore using the RING_TAIL from ce[1] it
			 * will execute garbage from ce[0]->ring.
			 */
			memset(tmp->ring->vaddr,
			       POISON_INUSE, /* IPEHR: 0x5a5a5a5a [hung!] */
			       tmp->ring->vma->size);

			ce[n] = tmp;
		}
		GEM_BUG_ON(!ce[1]->ring->size);
		intel_ring_reset(ce[1]->ring, ce[1]->ring->size / 2);

C
Chris Wilson 已提交
172
		local_irq_disable(); /* appease lockdep */
173 174 175
		__context_pin_acquire(ce[1]);
		__execlists_update_reg_state(ce[1], engine);
		__context_pin_release(ce[1]);
C
Chris Wilson 已提交
176
		local_irq_enable();
177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275

		rq[0] = igt_spinner_create_request(&spin, ce[0], MI_ARB_CHECK);
		if (IS_ERR(rq[0])) {
			err = PTR_ERR(rq[0]);
			goto err_ce;
		}

		i915_request_get(rq[0]);
		i915_request_add(rq[0]);
		GEM_BUG_ON(rq[0]->postfix > ce[1]->ring->emit);

		if (!igt_wait_for_spinner(&spin, rq[0])) {
			i915_request_put(rq[0]);
			goto err_ce;
		}

		rq[1] = i915_request_create(ce[1]);
		if (IS_ERR(rq[1])) {
			err = PTR_ERR(rq[1]);
			i915_request_put(rq[0]);
			goto err_ce;
		}

		if (!prio) {
			/*
			 * Ensure we do the switch to ce[1] on completion.
			 *
			 * rq[0] is already submitted, so this should reduce
			 * to a no-op (a wait on a request on the same engine
			 * uses the submit fence, not the completion fence),
			 * but it will install a dependency on rq[1] for rq[0]
			 * that will prevent the pair being reordered by
			 * timeslicing.
			 */
			i915_request_await_dma_fence(rq[1], &rq[0]->fence);
		}

		i915_request_get(rq[1]);
		i915_request_add(rq[1]);
		GEM_BUG_ON(rq[1]->postfix <= rq[0]->postfix);
		i915_request_put(rq[0]);

		if (prio) {
			struct i915_sched_attr attr = {
				.priority = prio,
			};

			/* Alternatively preempt the spinner with ce[1] */
			engine->schedule(rq[1], &attr);
		}

		/* And switch back to ce[0] for good measure */
		rq[0] = i915_request_create(ce[0]);
		if (IS_ERR(rq[0])) {
			err = PTR_ERR(rq[0]);
			i915_request_put(rq[1]);
			goto err_ce;
		}

		i915_request_await_dma_fence(rq[0], &rq[1]->fence);
		i915_request_get(rq[0]);
		i915_request_add(rq[0]);
		GEM_BUG_ON(rq[0]->postfix > rq[1]->postfix);
		i915_request_put(rq[1]);
		i915_request_put(rq[0]);

err_ce:
		tasklet_kill(&engine->execlists.tasklet); /* flush submission */
		igt_spinner_end(&spin);
		for (n = 0; n < ARRAY_SIZE(ce); n++) {
			if (IS_ERR_OR_NULL(ce[n]))
				break;

			intel_context_unpin(ce[n]);
			intel_context_put(ce[n]);
		}

		if (igt_live_test_end(&t))
			err = -EIO;
		if (err)
			break;
	}

	kernel_context_close(ctx);
err_spin:
	igt_spinner_fini(&spin);
	return err;
}

static int live_unlite_switch(void *arg)
{
	return live_unlite_restore(arg, 0);
}

static int live_unlite_preempt(void *arg)
{
	return live_unlite_restore(arg, I915_USER_PRIORITY(I915_PRIORITY_MAX));
}

276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402
static int
emit_semaphore_chain(struct i915_request *rq, struct i915_vma *vma, int idx)
{
	u32 *cs;

	cs = intel_ring_begin(rq, 10);
	if (IS_ERR(cs))
		return PTR_ERR(cs);

	*cs++ = MI_ARB_ON_OFF | MI_ARB_ENABLE;

	*cs++ = MI_SEMAPHORE_WAIT |
		MI_SEMAPHORE_GLOBAL_GTT |
		MI_SEMAPHORE_POLL |
		MI_SEMAPHORE_SAD_NEQ_SDD;
	*cs++ = 0;
	*cs++ = i915_ggtt_offset(vma) + 4 * idx;
	*cs++ = 0;

	if (idx > 0) {
		*cs++ = MI_STORE_DWORD_IMM_GEN4 | MI_USE_GGTT;
		*cs++ = i915_ggtt_offset(vma) + 4 * (idx - 1);
		*cs++ = 0;
		*cs++ = 1;
	} else {
		*cs++ = MI_NOOP;
		*cs++ = MI_NOOP;
		*cs++ = MI_NOOP;
		*cs++ = MI_NOOP;
	}

	*cs++ = MI_ARB_ON_OFF | MI_ARB_DISABLE;

	intel_ring_advance(rq, cs);
	return 0;
}

static struct i915_request *
semaphore_queue(struct intel_engine_cs *engine, struct i915_vma *vma, int idx)
{
	struct i915_gem_context *ctx;
	struct i915_request *rq;
	int err;

	ctx = kernel_context(engine->i915);
	if (!ctx)
		return ERR_PTR(-ENOMEM);

	rq = igt_request_alloc(ctx, engine);
	if (IS_ERR(rq))
		goto out_ctx;

	err = emit_semaphore_chain(rq, vma, idx);
	i915_request_add(rq);
	if (err)
		rq = ERR_PTR(err);

out_ctx:
	kernel_context_close(ctx);
	return rq;
}

static int
release_queue(struct intel_engine_cs *engine,
	      struct i915_vma *vma,
	      int idx)
{
	struct i915_sched_attr attr = {
		.priority = I915_USER_PRIORITY(I915_PRIORITY_MAX),
	};
	struct i915_request *rq;
	u32 *cs;

	rq = i915_request_create(engine->kernel_context);
	if (IS_ERR(rq))
		return PTR_ERR(rq);

	cs = intel_ring_begin(rq, 4);
	if (IS_ERR(cs)) {
		i915_request_add(rq);
		return PTR_ERR(cs);
	}

	*cs++ = MI_STORE_DWORD_IMM_GEN4 | MI_USE_GGTT;
	*cs++ = i915_ggtt_offset(vma) + 4 * (idx - 1);
	*cs++ = 0;
	*cs++ = 1;

	intel_ring_advance(rq, cs);
	i915_request_add(rq);

	engine->schedule(rq, &attr);

	return 0;
}

static int
slice_semaphore_queue(struct intel_engine_cs *outer,
		      struct i915_vma *vma,
		      int count)
{
	struct intel_engine_cs *engine;
	struct i915_request *head;
	enum intel_engine_id id;
	int err, i, n = 0;

	head = semaphore_queue(outer, vma, n++);
	if (IS_ERR(head))
		return PTR_ERR(head);

	i915_request_get(head);
	for_each_engine(engine, outer->i915, id) {
		for (i = 0; i < count; i++) {
			struct i915_request *rq;

			rq = semaphore_queue(engine, vma, n++);
			if (IS_ERR(rq)) {
				err = PTR_ERR(rq);
				goto out;
			}
		}
	}

	err = release_queue(outer, vma, n);
	if (err)
		goto out;

403
	if (i915_request_wait(head, 0,
404 405 406 407
			      2 * RUNTIME_INFO(outer->i915)->num_engines * (count + 2) * (count + 3)) < 0) {
		pr_err("Failed to slice along semaphore chain of length (%d, %d)!\n",
		       count, n);
		GEM_TRACE_DUMP();
408
		intel_gt_set_wedged(outer->gt);
409 410 411 412 413 414 415 416 417 418
		err = -EIO;
	}

out:
	i915_request_put(head);
	return err;
}

static int live_timeslice_preempt(void *arg)
{
419
	struct intel_gt *gt = arg;
420 421 422 423 424 425 426 427 428 429 430 431 432 433 434
	struct drm_i915_gem_object *obj;
	struct i915_vma *vma;
	void *vaddr;
	int err = 0;
	int count;

	/*
	 * If a request takes too long, we would like to give other users
	 * a fair go on the GPU. In particular, users may create batches
	 * that wait upon external input, where that input may even be
	 * supplied by another GPU job. To avoid blocking forever, we
	 * need to preempt the current task and replace it with another
	 * ready task.
	 */

435
	obj = i915_gem_object_create_internal(gt->i915, PAGE_SIZE);
436 437
	if (IS_ERR(obj))
		return PTR_ERR(obj);
438

439
	vma = i915_vma_instance(obj, &gt->ggtt->vm, NULL);
440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458
	if (IS_ERR(vma)) {
		err = PTR_ERR(vma);
		goto err_obj;
	}

	vaddr = i915_gem_object_pin_map(obj, I915_MAP_WC);
	if (IS_ERR(vaddr)) {
		err = PTR_ERR(vaddr);
		goto err_obj;
	}

	err = i915_vma_pin(vma, 0, 0, PIN_GLOBAL);
	if (err)
		goto err_map;

	for_each_prime_number_from(count, 1, 16) {
		struct intel_engine_cs *engine;
		enum intel_engine_id id;

459
		for_each_engine(engine, gt->i915, id) {
460 461 462
			if (!intel_engine_has_preemption(engine))
				continue;

463 464 465 466 467 468
			memset(vaddr, 0, PAGE_SIZE);

			err = slice_semaphore_queue(engine, vma, count);
			if (err)
				goto err_pin;

469
			if (igt_flush_test(gt->i915)) {
470 471 472 473 474 475 476 477 478 479 480 481 482 483 484
				err = -EIO;
				goto err_pin;
			}
		}
	}

err_pin:
	i915_vma_unpin(vma);
err_map:
	i915_gem_object_unpin_map(obj);
err_obj:
	i915_gem_object_put(obj);
	return err;
}

485 486
static int live_busywait_preempt(void *arg)
{
487
	struct intel_gt *gt = arg;
488 489 490 491 492 493 494 495 496 497 498 499 500
	struct i915_gem_context *ctx_hi, *ctx_lo;
	struct intel_engine_cs *engine;
	struct drm_i915_gem_object *obj;
	struct i915_vma *vma;
	enum intel_engine_id id;
	int err = -ENOMEM;
	u32 *map;

	/*
	 * Verify that even without HAS_LOGICAL_RING_PREEMPTION, we can
	 * preempt the busywaits used to synchronise between rings.
	 */

501
	ctx_hi = kernel_context(gt->i915);
502
	if (!ctx_hi)
503
		return -ENOMEM;
504 505
	ctx_hi->sched.priority =
		I915_USER_PRIORITY(I915_CONTEXT_MAX_USER_PRIORITY);
506

507
	ctx_lo = kernel_context(gt->i915);
508 509
	if (!ctx_lo)
		goto err_ctx_hi;
510 511
	ctx_lo->sched.priority =
		I915_USER_PRIORITY(I915_CONTEXT_MIN_USER_PRIORITY);
512

513
	obj = i915_gem_object_create_internal(gt->i915, PAGE_SIZE);
514 515 516 517 518 519 520 521 522 523 524
	if (IS_ERR(obj)) {
		err = PTR_ERR(obj);
		goto err_ctx_lo;
	}

	map = i915_gem_object_pin_map(obj, I915_MAP_WC);
	if (IS_ERR(map)) {
		err = PTR_ERR(map);
		goto err_obj;
	}

525
	vma = i915_vma_instance(obj, &gt->ggtt->vm, NULL);
526 527 528 529 530 531 532 533 534
	if (IS_ERR(vma)) {
		err = PTR_ERR(vma);
		goto err_map;
	}

	err = i915_vma_pin(vma, 0, 0, PIN_GLOBAL);
	if (err)
		goto err_map;

535
	for_each_engine(engine, gt->i915, id) {
536 537 538 539
		struct i915_request *lo, *hi;
		struct igt_live_test t;
		u32 *cs;

540 541 542
		if (!intel_engine_has_preemption(engine))
			continue;

543 544 545
		if (!intel_engine_can_store_dword(engine))
			continue;

546
		if (igt_live_test_begin(&t, gt->i915, __func__, engine->name)) {
547 548 549 550 551 552 553 554 555 556 557 558 559
			err = -EIO;
			goto err_vma;
		}

		/*
		 * We create two requests. The low priority request
		 * busywaits on a semaphore (inside the ringbuffer where
		 * is should be preemptible) and the high priority requests
		 * uses a MI_STORE_DWORD_IMM to update the semaphore value
		 * allowing the first request to complete. If preemption
		 * fails, we hang instead.
		 */

560
		lo = igt_request_alloc(ctx_lo, engine);
561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596
		if (IS_ERR(lo)) {
			err = PTR_ERR(lo);
			goto err_vma;
		}

		cs = intel_ring_begin(lo, 8);
		if (IS_ERR(cs)) {
			err = PTR_ERR(cs);
			i915_request_add(lo);
			goto err_vma;
		}

		*cs++ = MI_STORE_DWORD_IMM_GEN4 | MI_USE_GGTT;
		*cs++ = i915_ggtt_offset(vma);
		*cs++ = 0;
		*cs++ = 1;

		/* XXX Do we need a flush + invalidate here? */

		*cs++ = MI_SEMAPHORE_WAIT |
			MI_SEMAPHORE_GLOBAL_GTT |
			MI_SEMAPHORE_POLL |
			MI_SEMAPHORE_SAD_EQ_SDD;
		*cs++ = 0;
		*cs++ = i915_ggtt_offset(vma);
		*cs++ = 0;

		intel_ring_advance(lo, cs);
		i915_request_add(lo);

		if (wait_for(READ_ONCE(*map), 10)) {
			err = -ETIMEDOUT;
			goto err_vma;
		}

		/* Low priority request should be busywaiting now */
597
		if (i915_request_wait(lo, 0, 1) != -ETIME) {
598 599 600 601 602 603
			pr_err("%s: Busywaiting request did not!\n",
			       engine->name);
			err = -EIO;
			goto err_vma;
		}

604
		hi = igt_request_alloc(ctx_hi, engine);
605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624
		if (IS_ERR(hi)) {
			err = PTR_ERR(hi);
			goto err_vma;
		}

		cs = intel_ring_begin(hi, 4);
		if (IS_ERR(cs)) {
			err = PTR_ERR(cs);
			i915_request_add(hi);
			goto err_vma;
		}

		*cs++ = MI_STORE_DWORD_IMM_GEN4 | MI_USE_GGTT;
		*cs++ = i915_ggtt_offset(vma);
		*cs++ = 0;
		*cs++ = 0;

		intel_ring_advance(hi, cs);
		i915_request_add(hi);

625
		if (i915_request_wait(lo, 0, HZ / 5) < 0) {
626
			struct drm_printer p = drm_info_printer(gt->i915->drm.dev);
627 628 629 630 631 632 633

			pr_err("%s: Failed to preempt semaphore busywait!\n",
			       engine->name);

			intel_engine_dump(engine, &p, "%s\n", engine->name);
			GEM_TRACE_DUMP();

634
			intel_gt_set_wedged(gt);
635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659
			err = -EIO;
			goto err_vma;
		}
		GEM_BUG_ON(READ_ONCE(*map));

		if (igt_live_test_end(&t)) {
			err = -EIO;
			goto err_vma;
		}
	}

	err = 0;
err_vma:
	i915_vma_unpin(vma);
err_map:
	i915_gem_object_unpin_map(obj);
err_obj:
	i915_gem_object_put(obj);
err_ctx_lo:
	kernel_context_close(ctx_lo);
err_ctx_hi:
	kernel_context_close(ctx_hi);
	return err;
}

660 661 662 663 664 665 666 667 668
static struct i915_request *
spinner_create_request(struct igt_spinner *spin,
		       struct i915_gem_context *ctx,
		       struct intel_engine_cs *engine,
		       u32 arb)
{
	struct intel_context *ce;
	struct i915_request *rq;

669
	ce = i915_gem_context_get_engine(ctx, engine->legacy_idx);
670 671 672 673 674 675 676 677
	if (IS_ERR(ce))
		return ERR_CAST(ce);

	rq = igt_spinner_create_request(spin, ce, arb);
	intel_context_put(ce);
	return rq;
}

678 679
static int live_preempt(void *arg)
{
680
	struct intel_gt *gt = arg;
681
	struct i915_gem_context *ctx_hi, *ctx_lo;
682
	struct igt_spinner spin_hi, spin_lo;
683 684 685 686
	struct intel_engine_cs *engine;
	enum intel_engine_id id;
	int err = -ENOMEM;

687
	if (!HAS_LOGICAL_RING_PREEMPTION(gt->i915))
688 689
		return 0;

690
	if (!(gt->i915->caps.scheduler & I915_SCHEDULER_CAP_PREEMPTION))
691 692
		pr_err("Logical preemption supported, but not exposed\n");

693
	if (igt_spinner_init(&spin_hi, gt))
694
		return -ENOMEM;
695

696
	if (igt_spinner_init(&spin_lo, gt))
697 698
		goto err_spin_hi;

699
	ctx_hi = kernel_context(gt->i915);
700 701
	if (!ctx_hi)
		goto err_spin_lo;
702 703
	ctx_hi->sched.priority =
		I915_USER_PRIORITY(I915_CONTEXT_MAX_USER_PRIORITY);
704

705
	ctx_lo = kernel_context(gt->i915);
706 707
	if (!ctx_lo)
		goto err_ctx_hi;
708 709
	ctx_lo->sched.priority =
		I915_USER_PRIORITY(I915_CONTEXT_MIN_USER_PRIORITY);
710

711
	for_each_engine(engine, gt->i915, id) {
712
		struct igt_live_test t;
713 714
		struct i915_request *rq;

715 716 717
		if (!intel_engine_has_preemption(engine))
			continue;

718
		if (igt_live_test_begin(&t, gt->i915, __func__, engine->name)) {
719 720 721 722
			err = -EIO;
			goto err_ctx_lo;
		}

723 724
		rq = spinner_create_request(&spin_lo, ctx_lo, engine,
					    MI_ARB_CHECK);
725 726 727 728 729 730
		if (IS_ERR(rq)) {
			err = PTR_ERR(rq);
			goto err_ctx_lo;
		}

		i915_request_add(rq);
731
		if (!igt_wait_for_spinner(&spin_lo, rq)) {
732 733
			GEM_TRACE("lo spinner failed to start\n");
			GEM_TRACE_DUMP();
734
			intel_gt_set_wedged(gt);
735 736 737 738
			err = -EIO;
			goto err_ctx_lo;
		}

739 740
		rq = spinner_create_request(&spin_hi, ctx_hi, engine,
					    MI_ARB_CHECK);
741
		if (IS_ERR(rq)) {
742
			igt_spinner_end(&spin_lo);
743 744 745 746 747
			err = PTR_ERR(rq);
			goto err_ctx_lo;
		}

		i915_request_add(rq);
748
		if (!igt_wait_for_spinner(&spin_hi, rq)) {
749 750
			GEM_TRACE("hi spinner failed to start\n");
			GEM_TRACE_DUMP();
751
			intel_gt_set_wedged(gt);
752 753 754 755
			err = -EIO;
			goto err_ctx_lo;
		}

756 757
		igt_spinner_end(&spin_hi);
		igt_spinner_end(&spin_lo);
758 759

		if (igt_live_test_end(&t)) {
760 761 762 763 764 765 766 767 768 769 770
			err = -EIO;
			goto err_ctx_lo;
		}
	}

	err = 0;
err_ctx_lo:
	kernel_context_close(ctx_lo);
err_ctx_hi:
	kernel_context_close(ctx_hi);
err_spin_lo:
771
	igt_spinner_fini(&spin_lo);
772
err_spin_hi:
773
	igt_spinner_fini(&spin_hi);
774 775 776 777 778
	return err;
}

static int live_late_preempt(void *arg)
{
779
	struct intel_gt *gt = arg;
780
	struct i915_gem_context *ctx_hi, *ctx_lo;
781
	struct igt_spinner spin_hi, spin_lo;
782
	struct intel_engine_cs *engine;
783
	struct i915_sched_attr attr = {};
784 785 786
	enum intel_engine_id id;
	int err = -ENOMEM;

787
	if (!HAS_LOGICAL_RING_PREEMPTION(gt->i915))
788 789
		return 0;

790
	if (igt_spinner_init(&spin_hi, gt))
791
		return -ENOMEM;
792

793
	if (igt_spinner_init(&spin_lo, gt))
794 795
		goto err_spin_hi;

796
	ctx_hi = kernel_context(gt->i915);
797 798 799
	if (!ctx_hi)
		goto err_spin_lo;

800
	ctx_lo = kernel_context(gt->i915);
801 802 803
	if (!ctx_lo)
		goto err_ctx_hi;

804 805 806
	/* Make sure ctx_lo stays before ctx_hi until we trigger preemption. */
	ctx_lo->sched.priority = I915_USER_PRIORITY(1);

807
	for_each_engine(engine, gt->i915, id) {
808
		struct igt_live_test t;
809 810
		struct i915_request *rq;

811 812 813
		if (!intel_engine_has_preemption(engine))
			continue;

814
		if (igt_live_test_begin(&t, gt->i915, __func__, engine->name)) {
815 816 817 818
			err = -EIO;
			goto err_ctx_lo;
		}

819 820
		rq = spinner_create_request(&spin_lo, ctx_lo, engine,
					    MI_ARB_CHECK);
821 822 823 824 825 826
		if (IS_ERR(rq)) {
			err = PTR_ERR(rq);
			goto err_ctx_lo;
		}

		i915_request_add(rq);
827
		if (!igt_wait_for_spinner(&spin_lo, rq)) {
828 829 830 831
			pr_err("First context failed to start\n");
			goto err_wedged;
		}

832 833
		rq = spinner_create_request(&spin_hi, ctx_hi, engine,
					    MI_NOOP);
834
		if (IS_ERR(rq)) {
835
			igt_spinner_end(&spin_lo);
836 837 838 839 840
			err = PTR_ERR(rq);
			goto err_ctx_lo;
		}

		i915_request_add(rq);
841
		if (igt_wait_for_spinner(&spin_hi, rq)) {
842 843 844 845
			pr_err("Second context overtook first?\n");
			goto err_wedged;
		}

846
		attr.priority = I915_USER_PRIORITY(I915_PRIORITY_MAX);
847
		engine->schedule(rq, &attr);
848

849
		if (!igt_wait_for_spinner(&spin_hi, rq)) {
850 851 852 853 854
			pr_err("High priority context failed to preempt the low priority context\n");
			GEM_TRACE_DUMP();
			goto err_wedged;
		}

855 856
		igt_spinner_end(&spin_hi);
		igt_spinner_end(&spin_lo);
857 858

		if (igt_live_test_end(&t)) {
859 860 861 862 863 864 865 866 867 868 869
			err = -EIO;
			goto err_ctx_lo;
		}
	}

	err = 0;
err_ctx_lo:
	kernel_context_close(ctx_lo);
err_ctx_hi:
	kernel_context_close(ctx_hi);
err_spin_lo:
870
	igt_spinner_fini(&spin_lo);
871
err_spin_hi:
872
	igt_spinner_fini(&spin_hi);
873 874 875
	return err;

err_wedged:
876 877
	igt_spinner_end(&spin_hi);
	igt_spinner_end(&spin_lo);
878
	intel_gt_set_wedged(gt);
879 880 881 882
	err = -EIO;
	goto err_ctx_lo;
}

883 884 885 886 887
struct preempt_client {
	struct igt_spinner spin;
	struct i915_gem_context *ctx;
};

888
static int preempt_client_init(struct intel_gt *gt, struct preempt_client *c)
889
{
890
	c->ctx = kernel_context(gt->i915);
891 892 893
	if (!c->ctx)
		return -ENOMEM;

894
	if (igt_spinner_init(&c->spin, gt))
895 896 897 898 899 900 901 902 903 904 905 906 907 908 909
		goto err_ctx;

	return 0;

err_ctx:
	kernel_context_close(c->ctx);
	return -ENOMEM;
}

static void preempt_client_fini(struct preempt_client *c)
{
	igt_spinner_fini(&c->spin);
	kernel_context_close(c->ctx);
}

910 911
static int live_nopreempt(void *arg)
{
912
	struct intel_gt *gt = arg;
913 914 915 916 917 918 919 920 921 922
	struct intel_engine_cs *engine;
	struct preempt_client a, b;
	enum intel_engine_id id;
	int err = -ENOMEM;

	/*
	 * Verify that we can disable preemption for an individual request
	 * that may be being observed and not want to be interrupted.
	 */

923
	if (!HAS_LOGICAL_RING_PREEMPTION(gt->i915))
924 925
		return 0;

926
	if (preempt_client_init(gt, &a))
927
		return -ENOMEM;
928
	if (preempt_client_init(gt, &b))
929 930 931
		goto err_client_a;
	b.ctx->sched.priority = I915_USER_PRIORITY(I915_PRIORITY_MAX);

932
	for_each_engine(engine, gt->i915, id) {
933 934 935 936 937 938 939
		struct i915_request *rq_a, *rq_b;

		if (!intel_engine_has_preemption(engine))
			continue;

		engine->execlists.preempt_hang.count = 0;

940 941 942
		rq_a = spinner_create_request(&a.spin,
					      a.ctx, engine,
					      MI_ARB_CHECK);
943 944 945 946 947 948 949 950 951 952 953 954 955 956
		if (IS_ERR(rq_a)) {
			err = PTR_ERR(rq_a);
			goto err_client_b;
		}

		/* Low priority client, but unpreemptable! */
		rq_a->flags |= I915_REQUEST_NOPREEMPT;

		i915_request_add(rq_a);
		if (!igt_wait_for_spinner(&a.spin, rq_a)) {
			pr_err("First client failed to start\n");
			goto err_wedged;
		}

957 958 959
		rq_b = spinner_create_request(&b.spin,
					      b.ctx, engine,
					      MI_ARB_CHECK);
960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991
		if (IS_ERR(rq_b)) {
			err = PTR_ERR(rq_b);
			goto err_client_b;
		}

		i915_request_add(rq_b);

		/* B is much more important than A! (But A is unpreemptable.) */
		GEM_BUG_ON(rq_prio(rq_b) <= rq_prio(rq_a));

		/* Wait long enough for preemption and timeslicing */
		if (igt_wait_for_spinner(&b.spin, rq_b)) {
			pr_err("Second client started too early!\n");
			goto err_wedged;
		}

		igt_spinner_end(&a.spin);

		if (!igt_wait_for_spinner(&b.spin, rq_b)) {
			pr_err("Second client failed to start\n");
			goto err_wedged;
		}

		igt_spinner_end(&b.spin);

		if (engine->execlists.preempt_hang.count) {
			pr_err("Preemption recorded x%d; should have been suppressed!\n",
			       engine->execlists.preempt_hang.count);
			err = -EINVAL;
			goto err_wedged;
		}

992
		if (igt_flush_test(gt->i915))
993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005
			goto err_wedged;
	}

	err = 0;
err_client_b:
	preempt_client_fini(&b);
err_client_a:
	preempt_client_fini(&a);
	return err;

err_wedged:
	igt_spinner_end(&b.spin);
	igt_spinner_end(&a.spin);
1006
	intel_gt_set_wedged(gt);
1007 1008 1009 1010
	err = -EIO;
	goto err_client_b;
}

1011 1012
static int live_suppress_self_preempt(void *arg)
{
1013
	struct intel_gt *gt = arg;
1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028
	struct intel_engine_cs *engine;
	struct i915_sched_attr attr = {
		.priority = I915_USER_PRIORITY(I915_PRIORITY_MAX)
	};
	struct preempt_client a, b;
	enum intel_engine_id id;
	int err = -ENOMEM;

	/*
	 * Verify that if a preemption request does not cause a change in
	 * the current execution order, the preempt-to-idle injection is
	 * skipped and that we do not accidentally apply it after the CS
	 * completion event.
	 */

1029
	if (!HAS_LOGICAL_RING_PREEMPTION(gt->i915))
1030 1031
		return 0;

1032
	if (USES_GUC_SUBMISSION(gt->i915))
1033 1034
		return 0; /* presume black blox */

1035
	if (intel_vgpu_active(gt->i915))
1036 1037
		return 0; /* GVT forces single port & request submission */

1038
	if (preempt_client_init(gt, &a))
1039
		return -ENOMEM;
1040
	if (preempt_client_init(gt, &b))
1041 1042
		goto err_client_a;

1043
	for_each_engine(engine, gt->i915, id) {
1044 1045 1046
		struct i915_request *rq_a, *rq_b;
		int depth;

1047 1048 1049
		if (!intel_engine_has_preemption(engine))
			continue;

1050
		if (igt_flush_test(gt->i915))
1051 1052 1053
			goto err_wedged;

		intel_engine_pm_get(engine);
1054 1055
		engine->execlists.preempt_hang.count = 0;

1056 1057 1058
		rq_a = spinner_create_request(&a.spin,
					      a.ctx, engine,
					      MI_NOOP);
1059 1060
		if (IS_ERR(rq_a)) {
			err = PTR_ERR(rq_a);
1061
			intel_engine_pm_put(engine);
1062 1063 1064 1065 1066 1067
			goto err_client_b;
		}

		i915_request_add(rq_a);
		if (!igt_wait_for_spinner(&a.spin, rq_a)) {
			pr_err("First client failed to start\n");
1068
			intel_engine_pm_put(engine);
1069 1070 1071
			goto err_wedged;
		}

1072 1073
		/* Keep postponing the timer to avoid premature slicing */
		mod_timer(&engine->execlists.timer, jiffies + HZ);
1074
		for (depth = 0; depth < 8; depth++) {
1075 1076 1077
			rq_b = spinner_create_request(&b.spin,
						      b.ctx, engine,
						      MI_NOOP);
1078 1079
			if (IS_ERR(rq_b)) {
				err = PTR_ERR(rq_b);
1080
				intel_engine_pm_put(engine);
1081 1082 1083 1084 1085 1086 1087 1088 1089 1090
				goto err_client_b;
			}
			i915_request_add(rq_b);

			GEM_BUG_ON(i915_request_completed(rq_a));
			engine->schedule(rq_a, &attr);
			igt_spinner_end(&a.spin);

			if (!igt_wait_for_spinner(&b.spin, rq_b)) {
				pr_err("Second client failed to start\n");
1091
				intel_engine_pm_put(engine);
1092 1093 1094 1095 1096 1097 1098 1099 1100
				goto err_wedged;
			}

			swap(a, b);
			rq_a = rq_b;
		}
		igt_spinner_end(&a.spin);

		if (engine->execlists.preempt_hang.count) {
1101 1102
			pr_err("Preemption on %s recorded x%d, depth %d; should have been suppressed!\n",
			       engine->name,
1103 1104
			       engine->execlists.preempt_hang.count,
			       depth);
1105
			intel_engine_pm_put(engine);
1106 1107 1108 1109
			err = -EINVAL;
			goto err_client_b;
		}

1110
		intel_engine_pm_put(engine);
1111
		if (igt_flush_test(gt->i915))
1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124
			goto err_wedged;
	}

	err = 0;
err_client_b:
	preempt_client_fini(&b);
err_client_a:
	preempt_client_fini(&a);
	return err;

err_wedged:
	igt_spinner_end(&b.spin);
	igt_spinner_end(&a.spin);
1125
	intel_gt_set_wedged(gt);
1126 1127 1128 1129
	err = -EIO;
	goto err_client_b;
}

1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145
static int __i915_sw_fence_call
dummy_notify(struct i915_sw_fence *fence, enum i915_sw_fence_notify state)
{
	return NOTIFY_DONE;
}

static struct i915_request *dummy_request(struct intel_engine_cs *engine)
{
	struct i915_request *rq;

	rq = kzalloc(sizeof(*rq), GFP_KERNEL);
	if (!rq)
		return NULL;

	rq->engine = engine;

1146 1147 1148 1149 1150
	spin_lock_init(&rq->lock);
	INIT_LIST_HEAD(&rq->fence.cb_list);
	rq->fence.lock = &rq->lock;
	rq->fence.ops = &i915_fence_ops;

1151 1152 1153 1154 1155 1156 1157 1158 1159
	i915_sched_node_init(&rq->sched);

	/* mark this request as permanently incomplete */
	rq->fence.seqno = 1;
	BUILD_BUG_ON(sizeof(rq->fence.seqno) != 8); /* upper 32b == 0 */
	rq->hwsp_seqno = (u32 *)&rq->fence.seqno + 1;
	GEM_BUG_ON(i915_request_completed(rq));

	i915_sw_fence_init(&rq->submit, dummy_notify);
1160
	set_bit(I915_FENCE_FLAG_ACTIVE, &rq->fence.flags);
1161

1162 1163 1164 1165
	spin_lock_init(&rq->lock);
	rq->fence.lock = &rq->lock;
	INIT_LIST_HEAD(&rq->fence.cb_list);

1166 1167 1168 1169 1170
	return rq;
}

static void dummy_request_free(struct i915_request *dummy)
{
1171 1172 1173
	/* We have to fake the CS interrupt to kick the next request */
	i915_sw_fence_commit(&dummy->submit);

1174
	i915_request_mark_complete(dummy);
1175 1176
	dma_fence_signal(&dummy->fence);

1177 1178 1179 1180 1181 1182 1183 1184
	i915_sched_node_fini(&dummy->sched);
	i915_sw_fence_fini(&dummy->submit);

	dma_fence_free(&dummy->fence);
}

static int live_suppress_wait_preempt(void *arg)
{
1185
	struct intel_gt *gt = arg;
1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197
	struct preempt_client client[4];
	struct intel_engine_cs *engine;
	enum intel_engine_id id;
	int err = -ENOMEM;
	int i;

	/*
	 * Waiters are given a little priority nudge, but not enough
	 * to actually cause any preemption. Double check that we do
	 * not needlessly generate preempt-to-idle cycles.
	 */

1198
	if (!HAS_LOGICAL_RING_PREEMPTION(gt->i915))
1199 1200
		return 0;

1201
	if (preempt_client_init(gt, &client[0])) /* ELSP[0] */
1202
		return -ENOMEM;
1203
	if (preempt_client_init(gt, &client[1])) /* ELSP[1] */
1204
		goto err_client_0;
1205
	if (preempt_client_init(gt, &client[2])) /* head of queue */
1206
		goto err_client_1;
1207
	if (preempt_client_init(gt, &client[3])) /* bystander */
1208 1209
		goto err_client_2;

1210
	for_each_engine(engine, gt->i915, id) {
1211 1212
		int depth;

1213 1214 1215
		if (!intel_engine_has_preemption(engine))
			continue;

1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229
		if (!engine->emit_init_breadcrumb)
			continue;

		for (depth = 0; depth < ARRAY_SIZE(client); depth++) {
			struct i915_request *rq[ARRAY_SIZE(client)];
			struct i915_request *dummy;

			engine->execlists.preempt_hang.count = 0;

			dummy = dummy_request(engine);
			if (!dummy)
				goto err_client_3;

			for (i = 0; i < ARRAY_SIZE(client); i++) {
1230 1231 1232
				rq[i] = spinner_create_request(&client[i].spin,
							       client[i].ctx, engine,
							       MI_NOOP);
1233 1234 1235 1236 1237 1238
				if (IS_ERR(rq[i])) {
					err = PTR_ERR(rq[i]);
					goto err_wedged;
				}

				/* Disable NEWCLIENT promotion */
1239 1240
				__i915_active_fence_set(&i915_request_timeline(rq[i])->last_request,
							&dummy->fence);
1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264
				i915_request_add(rq[i]);
			}

			dummy_request_free(dummy);

			GEM_BUG_ON(i915_request_completed(rq[0]));
			if (!igt_wait_for_spinner(&client[0].spin, rq[0])) {
				pr_err("%s: First client failed to start\n",
				       engine->name);
				goto err_wedged;
			}
			GEM_BUG_ON(!i915_request_started(rq[0]));

			if (i915_request_wait(rq[depth],
					      I915_WAIT_PRIORITY,
					      1) != -ETIME) {
				pr_err("%s: Waiter depth:%d completed!\n",
				       engine->name, depth);
				goto err_wedged;
			}

			for (i = 0; i < ARRAY_SIZE(client); i++)
				igt_spinner_end(&client[i].spin);

1265
			if (igt_flush_test(gt->i915))
1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292
				goto err_wedged;

			if (engine->execlists.preempt_hang.count) {
				pr_err("%s: Preemption recorded x%d, depth %d; should have been suppressed!\n",
				       engine->name,
				       engine->execlists.preempt_hang.count,
				       depth);
				err = -EINVAL;
				goto err_client_3;
			}
		}
	}

	err = 0;
err_client_3:
	preempt_client_fini(&client[3]);
err_client_2:
	preempt_client_fini(&client[2]);
err_client_1:
	preempt_client_fini(&client[1]);
err_client_0:
	preempt_client_fini(&client[0]);
	return err;

err_wedged:
	for (i = 0; i < ARRAY_SIZE(client); i++)
		igt_spinner_end(&client[i].spin);
1293
	intel_gt_set_wedged(gt);
1294 1295 1296 1297
	err = -EIO;
	goto err_client_3;
}

1298 1299
static int live_chain_preempt(void *arg)
{
1300
	struct intel_gt *gt = arg;
1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311
	struct intel_engine_cs *engine;
	struct preempt_client hi, lo;
	enum intel_engine_id id;
	int err = -ENOMEM;

	/*
	 * Build a chain AB...BA between two contexts (A, B) and request
	 * preemption of the last request. It should then complete before
	 * the previously submitted spinner in B.
	 */

1312
	if (!HAS_LOGICAL_RING_PREEMPTION(gt->i915))
1313 1314
		return 0;

1315
	if (preempt_client_init(gt, &hi))
1316
		return -ENOMEM;
1317

1318
	if (preempt_client_init(gt, &lo))
1319 1320
		goto err_client_hi;

1321
	for_each_engine(engine, gt->i915, id) {
1322 1323 1324
		struct i915_sched_attr attr = {
			.priority = I915_USER_PRIORITY(I915_PRIORITY_MAX),
		};
1325
		struct igt_live_test t;
1326 1327
		struct i915_request *rq;
		int ring_size, count, i;
1328

1329 1330 1331
		if (!intel_engine_has_preemption(engine))
			continue;

1332 1333 1334
		rq = spinner_create_request(&lo.spin,
					    lo.ctx, engine,
					    MI_ARB_CHECK);
1335 1336 1337 1338 1339 1340 1341 1342 1343 1344
		if (IS_ERR(rq))
			goto err_wedged;
		i915_request_add(rq);

		ring_size = rq->wa_tail - rq->head;
		if (ring_size < 0)
			ring_size += rq->ring->size;
		ring_size = rq->ring->size / ring_size;
		pr_debug("%s(%s): Using maximum of %d requests\n",
			 __func__, engine->name, ring_size);
1345

1346
		igt_spinner_end(&lo.spin);
1347
		if (i915_request_wait(rq, 0, HZ / 2) < 0) {
1348 1349 1350 1351
			pr_err("Timed out waiting to flush %s\n", engine->name);
			goto err_wedged;
		}

1352
		if (igt_live_test_begin(&t, gt->i915, __func__, engine->name)) {
1353 1354 1355 1356
			err = -EIO;
			goto err_wedged;
		}

1357
		for_each_prime_number_from(count, 1, ring_size) {
1358 1359 1360
			rq = spinner_create_request(&hi.spin,
						    hi.ctx, engine,
						    MI_ARB_CHECK);
1361 1362 1363 1364 1365 1366
			if (IS_ERR(rq))
				goto err_wedged;
			i915_request_add(rq);
			if (!igt_wait_for_spinner(&hi.spin, rq))
				goto err_wedged;

1367 1368 1369
			rq = spinner_create_request(&lo.spin,
						    lo.ctx, engine,
						    MI_ARB_CHECK);
1370 1371 1372 1373 1374
			if (IS_ERR(rq))
				goto err_wedged;
			i915_request_add(rq);

			for (i = 0; i < count; i++) {
1375
				rq = igt_request_alloc(lo.ctx, engine);
1376 1377 1378 1379 1380
				if (IS_ERR(rq))
					goto err_wedged;
				i915_request_add(rq);
			}

1381
			rq = igt_request_alloc(hi.ctx, engine);
1382 1383 1384 1385 1386 1387
			if (IS_ERR(rq))
				goto err_wedged;
			i915_request_add(rq);
			engine->schedule(rq, &attr);

			igt_spinner_end(&hi.spin);
1388
			if (i915_request_wait(rq, 0, HZ / 5) < 0) {
1389
				struct drm_printer p =
1390
					drm_info_printer(gt->i915->drm.dev);
1391 1392 1393 1394 1395 1396 1397 1398

				pr_err("Failed to preempt over chain of %d\n",
				       count);
				intel_engine_dump(engine, &p,
						  "%s\n", engine->name);
				goto err_wedged;
			}
			igt_spinner_end(&lo.spin);
1399

1400
			rq = igt_request_alloc(lo.ctx, engine);
1401 1402 1403
			if (IS_ERR(rq))
				goto err_wedged;
			i915_request_add(rq);
1404
			if (i915_request_wait(rq, 0, HZ / 5) < 0) {
1405
				struct drm_printer p =
1406
					drm_info_printer(gt->i915->drm.dev);
1407 1408 1409 1410 1411 1412 1413

				pr_err("Failed to flush low priority chain of %d requests\n",
				       count);
				intel_engine_dump(engine, &p,
						  "%s\n", engine->name);
				goto err_wedged;
			}
1414
		}
1415 1416 1417 1418 1419

		if (igt_live_test_end(&t)) {
			err = -EIO;
			goto err_wedged;
		}
1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431
	}

	err = 0;
err_client_lo:
	preempt_client_fini(&lo);
err_client_hi:
	preempt_client_fini(&hi);
	return err;

err_wedged:
	igt_spinner_end(&hi.spin);
	igt_spinner_end(&lo.spin);
1432
	intel_gt_set_wedged(gt);
1433 1434 1435 1436
	err = -EIO;
	goto err_client_lo;
}

1437 1438
static int live_preempt_hang(void *arg)
{
1439
	struct intel_gt *gt = arg;
1440
	struct i915_gem_context *ctx_hi, *ctx_lo;
1441
	struct igt_spinner spin_hi, spin_lo;
1442 1443 1444 1445
	struct intel_engine_cs *engine;
	enum intel_engine_id id;
	int err = -ENOMEM;

1446
	if (!HAS_LOGICAL_RING_PREEMPTION(gt->i915))
1447 1448
		return 0;

1449
	if (!intel_has_reset_engine(gt))
1450 1451
		return 0;

1452
	if (igt_spinner_init(&spin_hi, gt))
1453
		return -ENOMEM;
1454

1455
	if (igt_spinner_init(&spin_lo, gt))
1456 1457
		goto err_spin_hi;

1458
	ctx_hi = kernel_context(gt->i915);
1459 1460
	if (!ctx_hi)
		goto err_spin_lo;
1461 1462
	ctx_hi->sched.priority =
		I915_USER_PRIORITY(I915_CONTEXT_MAX_USER_PRIORITY);
1463

1464
	ctx_lo = kernel_context(gt->i915);
1465 1466
	if (!ctx_lo)
		goto err_ctx_hi;
1467 1468
	ctx_lo->sched.priority =
		I915_USER_PRIORITY(I915_CONTEXT_MIN_USER_PRIORITY);
1469

1470
	for_each_engine(engine, gt->i915, id) {
1471 1472 1473 1474 1475
		struct i915_request *rq;

		if (!intel_engine_has_preemption(engine))
			continue;

1476 1477
		rq = spinner_create_request(&spin_lo, ctx_lo, engine,
					    MI_ARB_CHECK);
1478 1479 1480 1481 1482 1483
		if (IS_ERR(rq)) {
			err = PTR_ERR(rq);
			goto err_ctx_lo;
		}

		i915_request_add(rq);
1484
		if (!igt_wait_for_spinner(&spin_lo, rq)) {
1485 1486
			GEM_TRACE("lo spinner failed to start\n");
			GEM_TRACE_DUMP();
1487
			intel_gt_set_wedged(gt);
1488 1489 1490 1491
			err = -EIO;
			goto err_ctx_lo;
		}

1492 1493
		rq = spinner_create_request(&spin_hi, ctx_hi, engine,
					    MI_ARB_CHECK);
1494
		if (IS_ERR(rq)) {
1495
			igt_spinner_end(&spin_lo);
1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508
			err = PTR_ERR(rq);
			goto err_ctx_lo;
		}

		init_completion(&engine->execlists.preempt_hang.completion);
		engine->execlists.preempt_hang.inject_hang = true;

		i915_request_add(rq);

		if (!wait_for_completion_timeout(&engine->execlists.preempt_hang.completion,
						 HZ / 10)) {
			pr_err("Preemption did not occur within timeout!");
			GEM_TRACE_DUMP();
1509
			intel_gt_set_wedged(gt);
1510 1511 1512 1513
			err = -EIO;
			goto err_ctx_lo;
		}

1514
		set_bit(I915_RESET_ENGINE + id, &gt->reset.flags);
1515
		intel_engine_reset(engine, NULL);
1516
		clear_bit(I915_RESET_ENGINE + id, &gt->reset.flags);
1517 1518 1519

		engine->execlists.preempt_hang.inject_hang = false;

1520
		if (!igt_wait_for_spinner(&spin_hi, rq)) {
1521 1522
			GEM_TRACE("hi spinner failed to start\n");
			GEM_TRACE_DUMP();
1523
			intel_gt_set_wedged(gt);
1524 1525 1526 1527
			err = -EIO;
			goto err_ctx_lo;
		}

1528 1529
		igt_spinner_end(&spin_hi);
		igt_spinner_end(&spin_lo);
1530
		if (igt_flush_test(gt->i915)) {
1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541
			err = -EIO;
			goto err_ctx_lo;
		}
	}

	err = 0;
err_ctx_lo:
	kernel_context_close(ctx_lo);
err_ctx_hi:
	kernel_context_close(ctx_hi);
err_spin_lo:
1542
	igt_spinner_fini(&spin_lo);
1543
err_spin_hi:
1544
	igt_spinner_fini(&spin_hi);
1545 1546 1547
	return err;
}

1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558
static int random_range(struct rnd_state *rnd, int min, int max)
{
	return i915_prandom_u32_max_state(max - min, rnd) + min;
}

static int random_priority(struct rnd_state *rnd)
{
	return random_range(rnd, I915_PRIORITY_MIN, I915_PRIORITY_MAX);
}

struct preempt_smoke {
1559
	struct intel_gt *gt;
1560
	struct i915_gem_context **contexts;
1561
	struct intel_engine_cs *engine;
1562
	struct drm_i915_gem_object *batch;
1563 1564
	unsigned int ncontext;
	struct rnd_state prng;
1565
	unsigned long count;
1566 1567 1568 1569 1570 1571 1572 1573
};

static struct i915_gem_context *smoke_context(struct preempt_smoke *smoke)
{
	return smoke->contexts[i915_prandom_u32_max_state(smoke->ncontext,
							  &smoke->prng)];
}

1574 1575 1576 1577 1578 1579 1580 1581 1582
static int smoke_submit(struct preempt_smoke *smoke,
			struct i915_gem_context *ctx, int prio,
			struct drm_i915_gem_object *batch)
{
	struct i915_request *rq;
	struct i915_vma *vma = NULL;
	int err = 0;

	if (batch) {
1583 1584 1585 1586 1587
		struct i915_address_space *vm;

		vm = i915_gem_context_get_vm_rcu(ctx);
		vma = i915_vma_instance(batch, vm, NULL);
		i915_vm_put(vm);
1588 1589 1590 1591 1592 1593 1594 1595 1596 1597
		if (IS_ERR(vma))
			return PTR_ERR(vma);

		err = i915_vma_pin(vma, 0, 0, PIN_USER);
		if (err)
			return err;
	}

	ctx->sched.priority = prio;

1598
	rq = igt_request_alloc(ctx, smoke->engine);
1599 1600 1601 1602 1603 1604
	if (IS_ERR(rq)) {
		err = PTR_ERR(rq);
		goto unpin;
	}

	if (vma) {
1605
		i915_vma_lock(vma);
1606
		err = i915_request_await_object(rq, vma->obj, false);
1607 1608
		if (!err)
			err = i915_vma_move_to_active(vma, rq, 0);
1609 1610 1611 1612
		if (!err)
			err = rq->engine->emit_bb_start(rq,
							vma->node.start,
							PAGE_SIZE, 0);
1613
		i915_vma_unlock(vma);
1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624
	}

	i915_request_add(rq);

unpin:
	if (vma)
		i915_vma_unpin(vma);

	return err;
}

1625 1626 1627 1628 1629 1630 1631 1632 1633
static int smoke_crescendo_thread(void *arg)
{
	struct preempt_smoke *smoke = arg;
	IGT_TIMEOUT(end_time);
	unsigned long count;

	count = 0;
	do {
		struct i915_gem_context *ctx = smoke_context(smoke);
1634
		int err;
1635

1636 1637 1638 1639 1640
		err = smoke_submit(smoke,
				   ctx, count % I915_PRIORITY_MAX,
				   smoke->batch);
		if (err)
			return err;
1641 1642 1643 1644 1645 1646 1647 1648

		count++;
	} while (!__igt_timeout(end_time, NULL));

	smoke->count = count;
	return 0;
}

1649 1650
static int smoke_crescendo(struct preempt_smoke *smoke, unsigned int flags)
#define BATCH BIT(0)
1651
{
1652 1653
	struct task_struct *tsk[I915_NUM_ENGINES] = {};
	struct preempt_smoke arg[I915_NUM_ENGINES];
1654 1655 1656
	struct intel_engine_cs *engine;
	enum intel_engine_id id;
	unsigned long count;
1657 1658
	int err = 0;

1659
	for_each_engine(engine, smoke->gt->i915, id) {
1660 1661
		arg[id] = *smoke;
		arg[id].engine = engine;
1662 1663
		if (!(flags & BATCH))
			arg[id].batch = NULL;
1664 1665 1666 1667 1668 1669 1670 1671
		arg[id].count = 0;

		tsk[id] = kthread_run(smoke_crescendo_thread, &arg,
				      "igt/smoke:%d", id);
		if (IS_ERR(tsk[id])) {
			err = PTR_ERR(tsk[id]);
			break;
		}
1672
		get_task_struct(tsk[id]);
1673
	}
1674

1675
	count = 0;
1676
	for_each_engine(engine, smoke->gt->i915, id) {
1677
		int status;
1678

1679 1680
		if (IS_ERR_OR_NULL(tsk[id]))
			continue;
1681

1682 1683 1684
		status = kthread_stop(tsk[id]);
		if (status && !err)
			err = status;
1685

1686
		count += arg[id].count;
1687 1688

		put_task_struct(tsk[id]);
1689 1690
	}

1691 1692
	pr_info("Submitted %lu crescendo:%x requests across %d engines and %d contexts\n",
		count, flags,
1693
		RUNTIME_INFO(smoke->gt->i915)->num_engines, smoke->ncontext);
1694 1695 1696
	return 0;
}

1697
static int smoke_random(struct preempt_smoke *smoke, unsigned int flags)
1698 1699 1700 1701 1702 1703 1704
{
	enum intel_engine_id id;
	IGT_TIMEOUT(end_time);
	unsigned long count;

	count = 0;
	do {
1705
		for_each_engine(smoke->engine, smoke->gt->i915, id) {
1706
			struct i915_gem_context *ctx = smoke_context(smoke);
1707
			int err;
1708

1709 1710 1711 1712 1713
			err = smoke_submit(smoke,
					   ctx, random_priority(&smoke->prng),
					   flags & BATCH ? smoke->batch : NULL);
			if (err)
				return err;
1714 1715 1716 1717 1718

			count++;
		}
	} while (!__igt_timeout(end_time, NULL));

1719 1720
	pr_info("Submitted %lu random:%x requests across %d engines and %d contexts\n",
		count, flags,
1721
		RUNTIME_INFO(smoke->gt->i915)->num_engines, smoke->ncontext);
1722 1723 1724 1725 1726 1727
	return 0;
}

static int live_preempt_smoke(void *arg)
{
	struct preempt_smoke smoke = {
1728
		.gt = arg,
1729 1730 1731
		.prng = I915_RND_STATE_INITIALIZER(i915_selftest.random_seed),
		.ncontext = 1024,
	};
1732
	const unsigned int phase[] = { 0, BATCH };
1733
	struct igt_live_test t;
1734
	int err = -ENOMEM;
1735
	u32 *cs;
1736 1737
	int n;

1738
	if (!HAS_LOGICAL_RING_PREEMPTION(smoke.gt->i915))
1739 1740 1741 1742 1743 1744 1745 1746
		return 0;

	smoke.contexts = kmalloc_array(smoke.ncontext,
				       sizeof(*smoke.contexts),
				       GFP_KERNEL);
	if (!smoke.contexts)
		return -ENOMEM;

1747 1748
	smoke.batch =
		i915_gem_object_create_internal(smoke.gt->i915, PAGE_SIZE);
1749 1750
	if (IS_ERR(smoke.batch)) {
		err = PTR_ERR(smoke.batch);
1751
		goto err_free;
1752 1753 1754 1755 1756 1757 1758 1759 1760 1761
	}

	cs = i915_gem_object_pin_map(smoke.batch, I915_MAP_WB);
	if (IS_ERR(cs)) {
		err = PTR_ERR(cs);
		goto err_batch;
	}
	for (n = 0; n < PAGE_SIZE / sizeof(*cs) - 1; n++)
		cs[n] = MI_ARB_CHECK;
	cs[n] = MI_BATCH_BUFFER_END;
1762
	i915_gem_object_flush_map(smoke.batch);
1763 1764
	i915_gem_object_unpin_map(smoke.batch);

1765
	if (igt_live_test_begin(&t, smoke.gt->i915, __func__, "all")) {
1766 1767 1768 1769
		err = -EIO;
		goto err_batch;
	}

1770
	for (n = 0; n < smoke.ncontext; n++) {
1771
		smoke.contexts[n] = kernel_context(smoke.gt->i915);
1772 1773 1774 1775
		if (!smoke.contexts[n])
			goto err_ctx;
	}

1776 1777 1778 1779
	for (n = 0; n < ARRAY_SIZE(phase); n++) {
		err = smoke_crescendo(&smoke, phase[n]);
		if (err)
			goto err_ctx;
1780

1781 1782 1783 1784
		err = smoke_random(&smoke, phase[n]);
		if (err)
			goto err_ctx;
	}
1785 1786

err_ctx:
1787
	if (igt_live_test_end(&t))
1788 1789 1790 1791 1792 1793 1794 1795
		err = -EIO;

	for (n = 0; n < smoke.ncontext; n++) {
		if (!smoke.contexts[n])
			break;
		kernel_context_close(smoke.contexts[n]);
	}

1796 1797
err_batch:
	i915_gem_object_put(smoke.batch);
1798
err_free:
1799 1800 1801 1802 1803
	kfree(smoke.contexts);

	return err;
}

1804
static int nop_virtual_engine(struct intel_gt *gt,
1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822
			      struct intel_engine_cs **siblings,
			      unsigned int nsibling,
			      unsigned int nctx,
			      unsigned int flags)
#define CHAIN BIT(0)
{
	IGT_TIMEOUT(end_time);
	struct i915_request *request[16];
	struct i915_gem_context *ctx[16];
	struct intel_context *ve[16];
	unsigned long n, prime, nc;
	struct igt_live_test t;
	ktime_t times[2] = {};
	int err;

	GEM_BUG_ON(!nctx || nctx > ARRAY_SIZE(ctx));

	for (n = 0; n < nctx; n++) {
1823
		ctx[n] = kernel_context(gt->i915);
1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847
		if (!ctx[n]) {
			err = -ENOMEM;
			nctx = n;
			goto out;
		}

		ve[n] = intel_execlists_create_virtual(ctx[n],
						       siblings, nsibling);
		if (IS_ERR(ve[n])) {
			kernel_context_close(ctx[n]);
			err = PTR_ERR(ve[n]);
			nctx = n;
			goto out;
		}

		err = intel_context_pin(ve[n]);
		if (err) {
			intel_context_put(ve[n]);
			kernel_context_close(ctx[n]);
			nctx = n;
			goto out;
		}
	}

1848
	err = igt_live_test_begin(&t, gt->i915, __func__, ve[0]->engine->name);
1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883
	if (err)
		goto out;

	for_each_prime_number_from(prime, 1, 8192) {
		times[1] = ktime_get_raw();

		if (flags & CHAIN) {
			for (nc = 0; nc < nctx; nc++) {
				for (n = 0; n < prime; n++) {
					request[nc] =
						i915_request_create(ve[nc]);
					if (IS_ERR(request[nc])) {
						err = PTR_ERR(request[nc]);
						goto out;
					}

					i915_request_add(request[nc]);
				}
			}
		} else {
			for (n = 0; n < prime; n++) {
				for (nc = 0; nc < nctx; nc++) {
					request[nc] =
						i915_request_create(ve[nc]);
					if (IS_ERR(request[nc])) {
						err = PTR_ERR(request[nc]);
						goto out;
					}

					i915_request_add(request[nc]);
				}
			}
		}

		for (nc = 0; nc < nctx; nc++) {
1884
			if (i915_request_wait(request[nc], 0, HZ / 10) < 0) {
1885 1886 1887 1888 1889 1890 1891 1892 1893 1894
				pr_err("%s(%s): wait for %llx:%lld timed out\n",
				       __func__, ve[0]->engine->name,
				       request[nc]->fence.context,
				       request[nc]->fence.seqno);

				GEM_TRACE("%s(%s) failed at request %llx:%lld\n",
					  __func__, ve[0]->engine->name,
					  request[nc]->fence.context,
					  request[nc]->fence.seqno);
				GEM_TRACE_DUMP();
1895
				intel_gt_set_wedged(gt);
1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916
				break;
			}
		}

		times[1] = ktime_sub(ktime_get_raw(), times[1]);
		if (prime == 1)
			times[0] = times[1];

		if (__igt_timeout(end_time, NULL))
			break;
	}

	err = igt_live_test_end(&t);
	if (err)
		goto out;

	pr_info("Requestx%d latencies on %s: 1 = %lluns, %lu = %lluns\n",
		nctx, ve[0]->engine->name, ktime_to_ns(times[0]),
		prime, div64_u64(ktime_to_ns(times[1]), prime));

out:
1917
	if (igt_flush_test(gt->i915))
1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929
		err = -EIO;

	for (nc = 0; nc < nctx; nc++) {
		intel_context_unpin(ve[nc]);
		intel_context_put(ve[nc]);
		kernel_context_close(ctx[nc]);
	}
	return err;
}

static int live_virtual_engine(void *arg)
{
1930
	struct intel_gt *gt = arg;
1931 1932 1933 1934
	struct intel_engine_cs *siblings[MAX_ENGINE_INSTANCE + 1];
	struct intel_engine_cs *engine;
	enum intel_engine_id id;
	unsigned int class, inst;
1935
	int err;
1936

1937
	if (USES_GUC_SUBMISSION(gt->i915))
1938 1939
		return 0;

1940 1941
	for_each_engine(engine, gt->i915, id) {
		err = nop_virtual_engine(gt, &engine, 1, 1, 0);
1942 1943 1944
		if (err) {
			pr_err("Failed to wrap engine %s: err=%d\n",
			       engine->name, err);
1945
			return err;
1946 1947 1948 1949 1950 1951 1952 1953
		}
	}

	for (class = 0; class <= MAX_ENGINE_CLASS; class++) {
		int nsibling, n;

		nsibling = 0;
		for (inst = 0; inst <= MAX_ENGINE_INSTANCE; inst++) {
1954
			if (!gt->engine_class[class][inst])
1955 1956
				continue;

1957
			siblings[nsibling++] = gt->engine_class[class][inst];
1958 1959 1960 1961 1962
		}
		if (nsibling < 2)
			continue;

		for (n = 1; n <= nsibling + 1; n++) {
1963
			err = nop_virtual_engine(gt, siblings, nsibling,
1964 1965
						 n, 0);
			if (err)
1966
				return err;
1967 1968
		}

1969
		err = nop_virtual_engine(gt, siblings, nsibling, n, CHAIN);
1970
		if (err)
1971
			return err;
1972 1973
	}

1974
	return 0;
1975 1976
}

1977
static int mask_virtual_engine(struct intel_gt *gt,
1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992
			       struct intel_engine_cs **siblings,
			       unsigned int nsibling)
{
	struct i915_request *request[MAX_ENGINE_INSTANCE + 1];
	struct i915_gem_context *ctx;
	struct intel_context *ve;
	struct igt_live_test t;
	unsigned int n;
	int err;

	/*
	 * Check that by setting the execution mask on a request, we can
	 * restrict it to our desired engine within the virtual engine.
	 */

1993
	ctx = kernel_context(gt->i915);
1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006
	if (!ctx)
		return -ENOMEM;

	ve = intel_execlists_create_virtual(ctx, siblings, nsibling);
	if (IS_ERR(ve)) {
		err = PTR_ERR(ve);
		goto out_close;
	}

	err = intel_context_pin(ve);
	if (err)
		goto out_put;

2007
	err = igt_live_test_begin(&t, gt->i915, __func__, ve->engine->name);
2008 2009 2010 2011 2012
	if (err)
		goto out_unpin;

	for (n = 0; n < nsibling; n++) {
		request[n] = i915_request_create(ve);
2013 2014
		if (IS_ERR(request[n])) {
			err = PTR_ERR(request[n]);
2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026
			nsibling = n;
			goto out;
		}

		/* Reverse order as it's more likely to be unnatural */
		request[n]->execution_mask = siblings[nsibling - n - 1]->mask;

		i915_request_get(request[n]);
		i915_request_add(request[n]);
	}

	for (n = 0; n < nsibling; n++) {
2027
		if (i915_request_wait(request[n], 0, HZ / 10) < 0) {
2028 2029 2030 2031 2032 2033 2034 2035 2036 2037
			pr_err("%s(%s): wait for %llx:%lld timed out\n",
			       __func__, ve->engine->name,
			       request[n]->fence.context,
			       request[n]->fence.seqno);

			GEM_TRACE("%s(%s) failed at request %llx:%lld\n",
				  __func__, ve->engine->name,
				  request[n]->fence.context,
				  request[n]->fence.seqno);
			GEM_TRACE_DUMP();
2038
			intel_gt_set_wedged(gt);
2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053
			err = -EIO;
			goto out;
		}

		if (request[n]->engine != siblings[nsibling - n - 1]) {
			pr_err("Executed on wrong sibling '%s', expected '%s'\n",
			       request[n]->engine->name,
			       siblings[nsibling - n - 1]->name);
			err = -EINVAL;
			goto out;
		}
	}

	err = igt_live_test_end(&t);
out:
2054
	if (igt_flush_test(gt->i915))
2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070
		err = -EIO;

	for (n = 0; n < nsibling; n++)
		i915_request_put(request[n]);

out_unpin:
	intel_context_unpin(ve);
out_put:
	intel_context_put(ve);
out_close:
	kernel_context_close(ctx);
	return err;
}

static int live_virtual_mask(void *arg)
{
2071
	struct intel_gt *gt = arg;
2072 2073
	struct intel_engine_cs *siblings[MAX_ENGINE_INSTANCE + 1];
	unsigned int class, inst;
2074
	int err;
2075

2076
	if (USES_GUC_SUBMISSION(gt->i915))
2077 2078 2079 2080 2081 2082 2083
		return 0;

	for (class = 0; class <= MAX_ENGINE_CLASS; class++) {
		unsigned int nsibling;

		nsibling = 0;
		for (inst = 0; inst <= MAX_ENGINE_INSTANCE; inst++) {
2084
			if (!gt->engine_class[class][inst])
2085 2086
				break;

2087
			siblings[nsibling++] = gt->engine_class[class][inst];
2088 2089 2090 2091
		}
		if (nsibling < 2)
			continue;

2092
		err = mask_virtual_engine(gt, siblings, nsibling);
2093
		if (err)
2094
			return err;
2095 2096
	}

2097
	return 0;
2098 2099
}

2100
static int preserved_virtual_engine(struct intel_gt *gt,
2101 2102 2103 2104 2105 2106 2107 2108 2109 2110
				    struct intel_engine_cs **siblings,
				    unsigned int nsibling)
{
	struct i915_request *last = NULL;
	struct i915_gem_context *ctx;
	struct intel_context *ve;
	struct i915_vma *scratch;
	struct igt_live_test t;
	unsigned int n;
	int err = 0;
2111
	u32 *cs;
2112

2113
	ctx = kernel_context(gt->i915);
2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132
	if (!ctx)
		return -ENOMEM;

	scratch = create_scratch(siblings[0]->gt);
	if (IS_ERR(scratch)) {
		err = PTR_ERR(scratch);
		goto out_close;
	}

	ve = intel_execlists_create_virtual(ctx, siblings, nsibling);
	if (IS_ERR(ve)) {
		err = PTR_ERR(ve);
		goto out_scratch;
	}

	err = intel_context_pin(ve);
	if (err)
		goto out_put;

2133
	err = igt_live_test_begin(&t, gt->i915, __func__, ve->engine->name);
2134 2135 2136
	if (err)
		goto out_unpin;

2137
	for (n = 0; n < NUM_GPR_DW; n++) {
2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162
		struct intel_engine_cs *engine = siblings[n % nsibling];
		struct i915_request *rq;

		rq = i915_request_create(ve);
		if (IS_ERR(rq)) {
			err = PTR_ERR(rq);
			goto out_end;
		}

		i915_request_put(last);
		last = i915_request_get(rq);

		cs = intel_ring_begin(rq, 8);
		if (IS_ERR(cs)) {
			i915_request_add(rq);
			err = PTR_ERR(cs);
			goto out_end;
		}

		*cs++ = MI_STORE_REGISTER_MEM_GEN8 | MI_USE_GGTT;
		*cs++ = CS_GPR(engine, n);
		*cs++ = i915_ggtt_offset(scratch) + n * sizeof(u32);
		*cs++ = 0;

		*cs++ = MI_LOAD_REGISTER_IMM(1);
2163
		*cs++ = CS_GPR(engine, (n + 1) % NUM_GPR_DW);
2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175
		*cs++ = n + 1;

		*cs++ = MI_NOOP;
		intel_ring_advance(rq, cs);

		/* Restrict this request to run on a particular engine */
		rq->execution_mask = engine->mask;
		i915_request_add(rq);
	}

	if (i915_request_wait(last, 0, HZ / 5) < 0) {
		err = -ETIME;
2176 2177
		goto out_end;
	}
2178

2179 2180 2181 2182 2183
	cs = i915_gem_object_pin_map(scratch->obj, I915_MAP_WB);
	if (IS_ERR(cs)) {
		err = PTR_ERR(cs);
		goto out_end;
	}
2184

2185 2186 2187 2188 2189 2190 2191
	for (n = 0; n < NUM_GPR_DW; n++) {
		if (cs[n] != n) {
			pr_err("Incorrect value[%d] found for GPR[%d]\n",
			       cs[n], n);
			err = -EINVAL;
			break;
		}
2192 2193
	}

2194 2195
	i915_gem_object_unpin_map(scratch->obj);

2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212
out_end:
	if (igt_live_test_end(&t))
		err = -EIO;
	i915_request_put(last);
out_unpin:
	intel_context_unpin(ve);
out_put:
	intel_context_put(ve);
out_scratch:
	i915_vma_unpin_and_release(&scratch, 0);
out_close:
	kernel_context_close(ctx);
	return err;
}

static int live_virtual_preserved(void *arg)
{
2213
	struct intel_gt *gt = arg;
2214 2215 2216 2217 2218 2219 2220 2221 2222
	struct intel_engine_cs *siblings[MAX_ENGINE_INSTANCE + 1];
	unsigned int class, inst;

	/*
	 * Check that the context image retains non-privileged (user) registers
	 * from one engine to the next. For this we check that the CS_GPR
	 * are preserved.
	 */

2223
	if (USES_GUC_SUBMISSION(gt->i915))
2224 2225 2226
		return 0;

	/* As we use CS_GPR we cannot run before they existed on all engines. */
2227
	if (INTEL_GEN(gt->i915) < 9)
2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242
		return 0;

	for (class = 0; class <= MAX_ENGINE_CLASS; class++) {
		int nsibling, err;

		nsibling = 0;
		for (inst = 0; inst <= MAX_ENGINE_INSTANCE; inst++) {
			if (!gt->engine_class[class][inst])
				continue;

			siblings[nsibling++] = gt->engine_class[class][inst];
		}
		if (nsibling < 2)
			continue;

2243
		err = preserved_virtual_engine(gt, siblings, nsibling);
2244 2245 2246 2247 2248 2249 2250
		if (err)
			return err;
	}

	return 0;
}

2251
static int bond_virtual_engine(struct intel_gt *gt,
2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266
			       unsigned int class,
			       struct intel_engine_cs **siblings,
			       unsigned int nsibling,
			       unsigned int flags)
#define BOND_SCHEDULE BIT(0)
{
	struct intel_engine_cs *master;
	struct i915_gem_context *ctx;
	struct i915_request *rq[16];
	enum intel_engine_id id;
	unsigned long n;
	int err;

	GEM_BUG_ON(nsibling >= ARRAY_SIZE(rq) - 1);

2267
	ctx = kernel_context(gt->i915);
2268 2269 2270 2271 2272
	if (!ctx)
		return -ENOMEM;

	err = 0;
	rq[0] = ERR_PTR(-ENOMEM);
2273
	for_each_engine(master, gt->i915, id) {
2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345
		struct i915_sw_fence fence = {};

		if (master->class == class)
			continue;

		memset_p((void *)rq, ERR_PTR(-EINVAL), ARRAY_SIZE(rq));

		rq[0] = igt_request_alloc(ctx, master);
		if (IS_ERR(rq[0])) {
			err = PTR_ERR(rq[0]);
			goto out;
		}
		i915_request_get(rq[0]);

		if (flags & BOND_SCHEDULE) {
			onstack_fence_init(&fence);
			err = i915_sw_fence_await_sw_fence_gfp(&rq[0]->submit,
							       &fence,
							       GFP_KERNEL);
		}
		i915_request_add(rq[0]);
		if (err < 0)
			goto out;

		for (n = 0; n < nsibling; n++) {
			struct intel_context *ve;

			ve = intel_execlists_create_virtual(ctx,
							    siblings,
							    nsibling);
			if (IS_ERR(ve)) {
				err = PTR_ERR(ve);
				onstack_fence_fini(&fence);
				goto out;
			}

			err = intel_virtual_engine_attach_bond(ve->engine,
							       master,
							       siblings[n]);
			if (err) {
				intel_context_put(ve);
				onstack_fence_fini(&fence);
				goto out;
			}

			err = intel_context_pin(ve);
			intel_context_put(ve);
			if (err) {
				onstack_fence_fini(&fence);
				goto out;
			}

			rq[n + 1] = i915_request_create(ve);
			intel_context_unpin(ve);
			if (IS_ERR(rq[n + 1])) {
				err = PTR_ERR(rq[n + 1]);
				onstack_fence_fini(&fence);
				goto out;
			}
			i915_request_get(rq[n + 1]);

			err = i915_request_await_execution(rq[n + 1],
							   &rq[0]->fence,
							   ve->engine->bond_execute);
			i915_request_add(rq[n + 1]);
			if (err < 0) {
				onstack_fence_fini(&fence);
				goto out;
			}
		}
		onstack_fence_fini(&fence);

2346
		if (i915_request_wait(rq[0], 0, HZ / 10) < 0) {
2347 2348 2349 2350 2351 2352 2353
			pr_err("Master request did not execute (on %s)!\n",
			       rq[0]->engine->name);
			err = -EIO;
			goto out;
		}

		for (n = 0; n < nsibling; n++) {
2354
			if (i915_request_wait(rq[n + 1], 0,
2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377
					      MAX_SCHEDULE_TIMEOUT) < 0) {
				err = -EIO;
				goto out;
			}

			if (rq[n + 1]->engine != siblings[n]) {
				pr_err("Bonded request did not execute on target engine: expected %s, used %s; master was %s\n",
				       siblings[n]->name,
				       rq[n + 1]->engine->name,
				       rq[0]->engine->name);
				err = -EINVAL;
				goto out;
			}
		}

		for (n = 0; !IS_ERR(rq[n]); n++)
			i915_request_put(rq[n]);
		rq[0] = ERR_PTR(-ENOMEM);
	}

out:
	for (n = 0; !IS_ERR(rq[n]); n++)
		i915_request_put(rq[n]);
2378
	if (igt_flush_test(gt->i915))
2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394
		err = -EIO;

	kernel_context_close(ctx);
	return err;
}

static int live_virtual_bond(void *arg)
{
	static const struct phase {
		const char *name;
		unsigned int flags;
	} phases[] = {
		{ "", 0 },
		{ "schedule", BOND_SCHEDULE },
		{ },
	};
2395
	struct intel_gt *gt = arg;
2396 2397
	struct intel_engine_cs *siblings[MAX_ENGINE_INSTANCE + 1];
	unsigned int class, inst;
2398
	int err;
2399

2400
	if (USES_GUC_SUBMISSION(gt->i915))
2401 2402 2403 2404 2405 2406 2407 2408
		return 0;

	for (class = 0; class <= MAX_ENGINE_CLASS; class++) {
		const struct phase *p;
		int nsibling;

		nsibling = 0;
		for (inst = 0; inst <= MAX_ENGINE_INSTANCE; inst++) {
2409
			if (!gt->engine_class[class][inst])
2410 2411 2412
				break;

			GEM_BUG_ON(nsibling == ARRAY_SIZE(siblings));
2413
			siblings[nsibling++] = gt->engine_class[class][inst];
2414 2415 2416 2417 2418
		}
		if (nsibling < 2)
			continue;

		for (p = phases; p->name; p++) {
2419
			err = bond_virtual_engine(gt,
2420 2421 2422 2423 2424
						  class, siblings, nsibling,
						  p->flags);
			if (err) {
				pr_err("%s(%s): failed class=%d, nsibling=%d, err=%d\n",
				       __func__, p->name, class, nsibling, err);
2425
				return err;
2426 2427 2428 2429
			}
		}
	}

2430
	return 0;
2431 2432
}

2433 2434 2435 2436
int intel_execlists_live_selftests(struct drm_i915_private *i915)
{
	static const struct i915_subtest tests[] = {
		SUBTEST(live_sanitycheck),
2437 2438
		SUBTEST(live_unlite_switch),
		SUBTEST(live_unlite_preempt),
2439
		SUBTEST(live_timeslice_preempt),
2440
		SUBTEST(live_busywait_preempt),
2441 2442
		SUBTEST(live_preempt),
		SUBTEST(live_late_preempt),
2443
		SUBTEST(live_nopreempt),
2444
		SUBTEST(live_suppress_self_preempt),
2445
		SUBTEST(live_suppress_wait_preempt),
2446
		SUBTEST(live_chain_preempt),
2447
		SUBTEST(live_preempt_hang),
2448
		SUBTEST(live_preempt_smoke),
2449
		SUBTEST(live_virtual_engine),
2450
		SUBTEST(live_virtual_mask),
2451
		SUBTEST(live_virtual_preserved),
2452
		SUBTEST(live_virtual_bond),
2453
	};
2454 2455 2456 2457

	if (!HAS_EXECLISTS(i915))
		return 0;

2458
	if (intel_gt_is_wedged(&i915->gt))
2459 2460
		return 0;

2461
	return intel_gt_live_subtests(tests, &i915->gt);
2462
}
2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593

static void hexdump(const void *buf, size_t len)
{
	const size_t rowsize = 8 * sizeof(u32);
	const void *prev = NULL;
	bool skip = false;
	size_t pos;

	for (pos = 0; pos < len; pos += rowsize) {
		char line[128];

		if (prev && !memcmp(prev, buf + pos, rowsize)) {
			if (!skip) {
				pr_info("*\n");
				skip = true;
			}
			continue;
		}

		WARN_ON_ONCE(hex_dump_to_buffer(buf + pos, len - pos,
						rowsize, sizeof(u32),
						line, sizeof(line),
						false) >= sizeof(line));
		pr_info("[%04zx] %s\n", pos, line);

		prev = buf + pos;
		skip = false;
	}
}

static int live_lrc_layout(void *arg)
{
	struct intel_gt *gt = arg;
	struct intel_engine_cs *engine;
	enum intel_engine_id id;
	u32 *mem;
	int err;

	/*
	 * Check the registers offsets we use to create the initial reg state
	 * match the layout saved by HW.
	 */

	mem = kmalloc(PAGE_SIZE, GFP_KERNEL);
	if (!mem)
		return -ENOMEM;

	err = 0;
	for_each_engine(engine, gt->i915, id) {
		u32 *hw, *lrc;
		int dw;

		if (!engine->default_state)
			continue;

		hw = i915_gem_object_pin_map(engine->default_state,
					     I915_MAP_WB);
		if (IS_ERR(hw)) {
			err = PTR_ERR(hw);
			break;
		}
		hw += LRC_STATE_PN * PAGE_SIZE / sizeof(*hw);

		lrc = memset(mem, 0, PAGE_SIZE);
		execlists_init_reg_state(lrc,
					 engine->kernel_context,
					 engine,
					 engine->kernel_context->ring,
					 true);

		dw = 0;
		do {
			u32 lri = hw[dw];

			if (lri == 0) {
				dw++;
				continue;
			}

			if ((lri & GENMASK(31, 23)) != MI_INSTR(0x22, 0)) {
				pr_err("%s: Expected LRI command at dword %d, found %08x\n",
				       engine->name, dw, lri);
				err = -EINVAL;
				break;
			}

			if (lrc[dw] != lri) {
				pr_err("%s: LRI command mismatch at dword %d, expected %08x found %08x\n",
				       engine->name, dw, lri, lrc[dw]);
				err = -EINVAL;
				break;
			}

			lri &= 0x7f;
			lri++;
			dw++;

			while (lri) {
				if (hw[dw] != lrc[dw]) {
					pr_err("%s: Different registers found at dword %d, expected %x, found %x\n",
					       engine->name, dw, hw[dw], lrc[dw]);
					err = -EINVAL;
					break;
				}

				/*
				 * Skip over the actual register value as we
				 * expect that to differ.
				 */
				dw += 2;
				lri -= 2;
			}
		} while ((lrc[dw] & ~BIT(0)) != MI_BATCH_BUFFER_END);

		if (err) {
			pr_info("%s: HW register image:\n", engine->name);
			hexdump(hw, PAGE_SIZE);

			pr_info("%s: SW register image:\n", engine->name);
			hexdump(lrc, PAGE_SIZE);
		}

		i915_gem_object_unpin_map(engine->default_state);
		if (err)
			break;
	}

	kfree(mem);
	return err;
}

2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718
static int __live_lrc_state(struct i915_gem_context *fixme,
			    struct intel_engine_cs *engine,
			    struct i915_vma *scratch)
{
	struct intel_context *ce;
	struct i915_request *rq;
	enum {
		RING_START_IDX = 0,
		RING_TAIL_IDX,
		MAX_IDX
	};
	u32 expected[MAX_IDX];
	u32 *cs;
	int err;
	int n;

	ce = intel_context_create(fixme, engine);
	if (IS_ERR(ce))
		return PTR_ERR(ce);

	err = intel_context_pin(ce);
	if (err)
		goto err_put;

	rq = i915_request_create(ce);
	if (IS_ERR(rq)) {
		err = PTR_ERR(rq);
		goto err_unpin;
	}

	cs = intel_ring_begin(rq, 4 * MAX_IDX);
	if (IS_ERR(cs)) {
		err = PTR_ERR(cs);
		i915_request_add(rq);
		goto err_unpin;
	}

	*cs++ = MI_STORE_REGISTER_MEM_GEN8 | MI_USE_GGTT;
	*cs++ = i915_mmio_reg_offset(RING_START(engine->mmio_base));
	*cs++ = i915_ggtt_offset(scratch) + RING_START_IDX * sizeof(u32);
	*cs++ = 0;

	expected[RING_START_IDX] = i915_ggtt_offset(ce->ring->vma);

	*cs++ = MI_STORE_REGISTER_MEM_GEN8 | MI_USE_GGTT;
	*cs++ = i915_mmio_reg_offset(RING_TAIL(engine->mmio_base));
	*cs++ = i915_ggtt_offset(scratch) + RING_TAIL_IDX * sizeof(u32);
	*cs++ = 0;

	i915_request_get(rq);
	i915_request_add(rq);

	intel_engine_flush_submission(engine);
	expected[RING_TAIL_IDX] = ce->ring->tail;

	if (i915_request_wait(rq, 0, HZ / 5) < 0) {
		err = -ETIME;
		goto err_rq;
	}

	cs = i915_gem_object_pin_map(scratch->obj, I915_MAP_WB);
	if (IS_ERR(cs)) {
		err = PTR_ERR(cs);
		goto err_rq;
	}

	for (n = 0; n < MAX_IDX; n++) {
		if (cs[n] != expected[n]) {
			pr_err("%s: Stored register[%d] value[0x%x] did not match expected[0x%x]\n",
			       engine->name, n, cs[n], expected[n]);
			err = -EINVAL;
			break;
		}
	}

	i915_gem_object_unpin_map(scratch->obj);

err_rq:
	i915_request_put(rq);
err_unpin:
	intel_context_unpin(ce);
err_put:
	intel_context_put(ce);
	return err;
}

static int live_lrc_state(void *arg)
{
	struct intel_gt *gt = arg;
	struct intel_engine_cs *engine;
	struct i915_gem_context *fixme;
	struct i915_vma *scratch;
	enum intel_engine_id id;
	int err = 0;

	/*
	 * Check the live register state matches what we expect for this
	 * intel_context.
	 */

	fixme = kernel_context(gt->i915);
	if (!fixme)
		return -ENOMEM;

	scratch = create_scratch(gt);
	if (IS_ERR(scratch)) {
		err = PTR_ERR(scratch);
		goto out_close;
	}

	for_each_engine(engine, gt->i915, id) {
		err = __live_lrc_state(fixme, engine, scratch);
		if (err)
			break;
	}

	if (igt_flush_test(gt->i915))
		err = -EIO;

	i915_vma_unpin_and_release(&scratch, 0);
out_close:
	kernel_context_close(fixme);
	return err;
}

2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861
static int gpr_make_dirty(struct intel_engine_cs *engine)
{
	struct i915_request *rq;
	u32 *cs;
	int n;

	rq = i915_request_create(engine->kernel_context);
	if (IS_ERR(rq))
		return PTR_ERR(rq);

	cs = intel_ring_begin(rq, 2 * NUM_GPR_DW + 2);
	if (IS_ERR(cs)) {
		i915_request_add(rq);
		return PTR_ERR(cs);
	}

	*cs++ = MI_LOAD_REGISTER_IMM(NUM_GPR_DW);
	for (n = 0; n < NUM_GPR_DW; n++) {
		*cs++ = CS_GPR(engine, n);
		*cs++ = STACK_MAGIC;
	}
	*cs++ = MI_NOOP;

	intel_ring_advance(rq, cs);
	i915_request_add(rq);

	return 0;
}

static int __live_gpr_clear(struct i915_gem_context *fixme,
			    struct intel_engine_cs *engine,
			    struct i915_vma *scratch)
{
	struct intel_context *ce;
	struct i915_request *rq;
	u32 *cs;
	int err;
	int n;

	if (INTEL_GEN(engine->i915) < 9 && engine->class != RENDER_CLASS)
		return 0; /* GPR only on rcs0 for gen8 */

	err = gpr_make_dirty(engine);
	if (err)
		return err;

	ce = intel_context_create(fixme, engine);
	if (IS_ERR(ce))
		return PTR_ERR(ce);

	rq = intel_context_create_request(ce);
	if (IS_ERR(rq)) {
		err = PTR_ERR(rq);
		goto err_put;
	}

	cs = intel_ring_begin(rq, 4 * NUM_GPR_DW);
	if (IS_ERR(cs)) {
		err = PTR_ERR(cs);
		i915_request_add(rq);
		goto err_put;
	}

	for (n = 0; n < NUM_GPR_DW; n++) {
		*cs++ = MI_STORE_REGISTER_MEM_GEN8 | MI_USE_GGTT;
		*cs++ = CS_GPR(engine, n);
		*cs++ = i915_ggtt_offset(scratch) + n * sizeof(u32);
		*cs++ = 0;
	}

	i915_request_get(rq);
	i915_request_add(rq);

	if (i915_request_wait(rq, 0, HZ / 5) < 0) {
		err = -ETIME;
		goto err_rq;
	}

	cs = i915_gem_object_pin_map(scratch->obj, I915_MAP_WB);
	if (IS_ERR(cs)) {
		err = PTR_ERR(cs);
		goto err_rq;
	}

	for (n = 0; n < NUM_GPR_DW; n++) {
		if (cs[n]) {
			pr_err("%s: GPR[%d].%s was not zero, found 0x%08x!\n",
			       engine->name,
			       n / 2, n & 1 ? "udw" : "ldw",
			       cs[n]);
			err = -EINVAL;
			break;
		}
	}

	i915_gem_object_unpin_map(scratch->obj);

err_rq:
	i915_request_put(rq);
err_put:
	intel_context_put(ce);
	return err;
}

static int live_gpr_clear(void *arg)
{
	struct intel_gt *gt = arg;
	struct intel_engine_cs *engine;
	struct i915_gem_context *fixme;
	struct i915_vma *scratch;
	enum intel_engine_id id;
	int err = 0;

	/*
	 * Check that GPR registers are cleared in new contexts as we need
	 * to avoid leaking any information from previous contexts.
	 */

	fixme = kernel_context(gt->i915);
	if (!fixme)
		return -ENOMEM;

	scratch = create_scratch(gt);
	if (IS_ERR(scratch)) {
		err = PTR_ERR(scratch);
		goto out_close;
	}

	for_each_engine(engine, gt->i915, id) {
		err = __live_gpr_clear(fixme, engine, scratch);
		if (err)
			break;
	}

	if (igt_flush_test(gt->i915))
		err = -EIO;

	i915_vma_unpin_and_release(&scratch, 0);
out_close:
	kernel_context_close(fixme);
	return err;
}

2862 2863 2864 2865
int intel_lrc_live_selftests(struct drm_i915_private *i915)
{
	static const struct i915_subtest tests[] = {
		SUBTEST(live_lrc_layout),
2866
		SUBTEST(live_lrc_state),
2867
		SUBTEST(live_gpr_clear),
2868 2869 2870 2871 2872 2873 2874
	};

	if (!HAS_LOGICAL_RING_CONTEXTS(i915))
		return 0;

	return intel_gt_live_subtests(tests, &i915->gt);
}