i915_gem_context.c 36.4 KB
Newer Older
1
/*
2
 * SPDX-License-Identifier: MIT
3
 *
4
 * Copyright © 2017 Intel Corporation
5 6
 */

7 8
#include <linux/prime_numbers.h>

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

13 14 15 16 17 18 19 20
#include "gem/selftests/igt_gem_utils.h"
#include "selftests/i915_random.h"
#include "selftests/igt_flush_test.h"
#include "selftests/igt_live_test.h"
#include "selftests/igt_reset.h"
#include "selftests/igt_spinner.h"
#include "selftests/mock_drm.h"
#include "selftests/mock_gem_device.h"
21 22

#include "huge_gem_object.h"
23
#include "igt_gem_utils.h"
24 25 26

#define DW_PER_PAGE (PAGE_SIZE / sizeof(u32))

27 28 29 30 31 32 33
static int live_nop_switch(void *arg)
{
	const unsigned int nctx = 1024;
	struct drm_i915_private *i915 = arg;
	struct intel_engine_cs *engine;
	struct i915_gem_context **ctx;
	enum intel_engine_id id;
34
	struct igt_live_test t;
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
	struct drm_file *file;
	unsigned long n;
	int err = -ENODEV;

	/*
	 * Create as many contexts as we can feasibly get away with
	 * and check we can switch between them rapidly.
	 *
	 * Serves as very simple stress test for submission and HW switching
	 * between contexts.
	 */

	if (!DRIVER_CAPS(i915)->has_logical_contexts)
		return 0;

	file = mock_file(i915);
	if (IS_ERR(file))
		return PTR_ERR(file);

	mutex_lock(&i915->drm.struct_mutex);

	ctx = kcalloc(nctx, sizeof(*ctx), GFP_KERNEL);
	if (!ctx) {
		err = -ENOMEM;
		goto out_unlock;
	}

	for (n = 0; n < nctx; n++) {
63
		ctx[n] = live_context(i915, file);
64 65 66 67 68 69 70 71 72 73 74 75 76
		if (IS_ERR(ctx[n])) {
			err = PTR_ERR(ctx[n]);
			goto out_unlock;
		}
	}

	for_each_engine(engine, i915, id) {
		struct i915_request *rq;
		unsigned long end_time, prime;
		ktime_t times[2] = {};

		times[0] = ktime_get_raw();
		for (n = 0; n < nctx; n++) {
77
			rq = igt_request_alloc(ctx[n], engine);
78 79 80 81 82 83
			if (IS_ERR(rq)) {
				err = PTR_ERR(rq);
				goto out_unlock;
			}
			i915_request_add(rq);
		}
84
		if (i915_request_wait(rq, 0, HZ / 5) < 0) {
85 86 87 88 89 90 91 92 93 94 95
			pr_err("Failed to populated %d contexts\n", nctx);
			i915_gem_set_wedged(i915);
			err = -EIO;
			goto out_unlock;
		}

		times[1] = ktime_get_raw();

		pr_info("Populated %d contexts on %s in %lluns\n",
			nctx, engine->name, ktime_to_ns(times[1] - times[0]));

96
		err = igt_live_test_begin(&t, i915, __func__, engine->name);
97 98 99 100 101 102 103 104
		if (err)
			goto out_unlock;

		end_time = jiffies + i915_selftest.timeout_jiffies;
		for_each_prime_number_from(prime, 2, 8192) {
			times[1] = ktime_get_raw();

			for (n = 0; n < prime; n++) {
105
				rq = igt_request_alloc(ctx[n % nctx], engine);
106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
				if (IS_ERR(rq)) {
					err = PTR_ERR(rq);
					goto out_unlock;
				}

				/*
				 * This space is left intentionally blank.
				 *
				 * We do not actually want to perform any
				 * action with this request, we just want
				 * to measure the latency in allocation
				 * and submission of our breadcrumbs -
				 * ensuring that the bare request is sufficient
				 * for the system to work (i.e. proper HEAD
				 * tracking of the rings, interrupt handling,
				 * etc). It also gives us the lowest bounds
				 * for latency.
				 */

				i915_request_add(rq);
			}
127
			if (i915_request_wait(rq, 0, HZ / 5) < 0) {
128 129 130 131 132 133 134 135 136 137 138 139 140 141
				pr_err("Switching between %ld contexts timed out\n",
				       prime);
				i915_gem_set_wedged(i915);
				break;
			}

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

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

142
		err = igt_live_test_end(&t);
143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
		if (err)
			goto out_unlock;

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

out_unlock:
	mutex_unlock(&i915->drm.struct_mutex);
	mock_file_free(i915, file);
	return err;
}

158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189
static struct i915_vma *
gpu_fill_dw(struct i915_vma *vma, u64 offset, unsigned long count, u32 value)
{
	struct drm_i915_gem_object *obj;
	const int gen = INTEL_GEN(vma->vm->i915);
	unsigned long n, size;
	u32 *cmd;
	int err;

	size = (4 * count + 1) * sizeof(u32);
	size = round_up(size, PAGE_SIZE);
	obj = i915_gem_object_create_internal(vma->vm->i915, size);
	if (IS_ERR(obj))
		return ERR_CAST(obj);

	cmd = i915_gem_object_pin_map(obj, I915_MAP_WB);
	if (IS_ERR(cmd)) {
		err = PTR_ERR(cmd);
		goto err;
	}

	GEM_BUG_ON(offset + (count - 1) * PAGE_SIZE > vma->node.size);
	offset += vma->node.start;

	for (n = 0; n < count; n++) {
		if (gen >= 8) {
			*cmd++ = MI_STORE_DWORD_IMM_GEN4;
			*cmd++ = lower_32_bits(offset);
			*cmd++ = upper_32_bits(offset);
			*cmd++ = value;
		} else if (gen >= 4) {
			*cmd++ = MI_STORE_DWORD_IMM_GEN4 |
190
				(gen < 6 ? MI_USE_GGTT : 0);
191 192 193 194
			*cmd++ = 0;
			*cmd++ = offset;
			*cmd++ = value;
		} else {
195
			*cmd++ = MI_STORE_DWORD_IMM | MI_MEM_VIRTUAL;
196 197 198 199 200 201
			*cmd++ = offset;
			*cmd++ = value;
		}
		offset += PAGE_SIZE;
	}
	*cmd = MI_BATCH_BUFFER_END;
202
	i915_gem_object_flush_map(obj);
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
	i915_gem_object_unpin_map(obj);

	vma = i915_vma_instance(obj, vma->vm, NULL);
	if (IS_ERR(vma)) {
		err = PTR_ERR(vma);
		goto err;
	}

	err = i915_vma_pin(vma, 0, 0, PIN_USER);
	if (err)
		goto err;

	return vma;

err:
	i915_gem_object_put(obj);
	return ERR_PTR(err);
}

static unsigned long real_page_count(struct drm_i915_gem_object *obj)
{
	return huge_gem_object_phys_size(obj) >> PAGE_SHIFT;
}

static unsigned long fake_page_count(struct drm_i915_gem_object *obj)
{
	return huge_gem_object_dma_size(obj) >> PAGE_SHIFT;
}

static int gpu_fill(struct drm_i915_gem_object *obj,
		    struct i915_gem_context *ctx,
		    struct intel_engine_cs *engine,
		    unsigned int dw)
{
237
	struct i915_address_space *vm = ctx->vm ?: &engine->gt->ggtt->vm;
238
	struct i915_request *rq;
239 240 241 242 243 244
	struct i915_vma *vma;
	struct i915_vma *batch;
	unsigned int flags;
	int err;

	GEM_BUG_ON(obj->base.size > vm->total);
245
	GEM_BUG_ON(!intel_engine_can_store_dword(engine));
246 247 248 249 250

	vma = i915_vma_instance(obj, vm, NULL);
	if (IS_ERR(vma))
		return PTR_ERR(vma);

251
	i915_gem_object_lock(obj);
252
	err = i915_gem_object_set_to_gtt_domain(obj, false);
253
	i915_gem_object_unlock(obj);
254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277
	if (err)
		return err;

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

	/* Within the GTT the huge objects maps every page onto
	 * its 1024 real pages (using phys_pfn = dma_pfn % 1024).
	 * We set the nth dword within the page using the nth
	 * mapping via the GTT - this should exercise the GTT mapping
	 * whilst checking that each context provides a unique view
	 * into the object.
	 */
	batch = gpu_fill_dw(vma,
			    (dw * real_page_count(obj)) << PAGE_SHIFT |
			    (dw * sizeof(u32)),
			    real_page_count(obj),
			    dw);
	if (IS_ERR(batch)) {
		err = PTR_ERR(batch);
		goto err_vma;
	}

278
	rq = igt_request_alloc(ctx, engine);
279 280 281 282 283 284 285 286 287 288 289 290 291 292 293
	if (IS_ERR(rq)) {
		err = PTR_ERR(rq);
		goto err_batch;
	}

	flags = 0;
	if (INTEL_GEN(vm->i915) <= 5)
		flags |= I915_DISPATCH_SECURE;

	err = engine->emit_bb_start(rq,
				    batch->node.start, batch->node.size,
				    flags);
	if (err)
		goto err_request;

294
	i915_vma_lock(batch);
295
	err = i915_vma_move_to_active(batch, rq, 0);
296
	i915_vma_unlock(batch);
297 298 299
	if (err)
		goto skip_request;

300
	i915_vma_lock(vma);
301
	err = i915_vma_move_to_active(vma, rq, EXEC_OBJECT_WRITE);
302
	i915_vma_unlock(vma);
303 304 305
	if (err)
		goto skip_request;

306 307
	i915_request_add(rq);

308 309
	i915_vma_unpin(batch);
	i915_vma_close(batch);
310
	i915_vma_put(batch);
311 312 313 314 315

	i915_vma_unpin(vma);

	return 0;

316 317
skip_request:
	i915_request_skip(rq, err);
318
err_request:
319
	i915_request_add(rq);
320 321
err_batch:
	i915_vma_unpin(batch);
322
	i915_vma_put(batch);
323 324 325 326 327 328 329 330 331 332 333
err_vma:
	i915_vma_unpin(vma);
	return err;
}

static int cpu_fill(struct drm_i915_gem_object *obj, u32 value)
{
	const bool has_llc = HAS_LLC(to_i915(obj->base.dev));
	unsigned int n, m, need_flush;
	int err;

334
	err = i915_gem_object_prepare_write(obj, &need_flush);
335 336 337 338 339 340 341 342 343 344 345 346 347 348
	if (err)
		return err;

	for (n = 0; n < real_page_count(obj); n++) {
		u32 *map;

		map = kmap_atomic(i915_gem_object_get_page(obj, n));
		for (m = 0; m < DW_PER_PAGE; m++)
			map[m] = value;
		if (!has_llc)
			drm_clflush_virt_range(map, PAGE_SIZE);
		kunmap_atomic(map);
	}

349
	i915_gem_object_finish_access(obj);
350 351
	obj->read_domains = I915_GEM_DOMAIN_GTT | I915_GEM_DOMAIN_CPU;
	obj->write_domain = 0;
352 353 354
	return 0;
}

355 356
static noinline int cpu_check(struct drm_i915_gem_object *obj,
			      unsigned int idx, unsigned int max)
357 358 359 360
{
	unsigned int n, m, needs_flush;
	int err;

361
	err = i915_gem_object_prepare_read(obj, &needs_flush);
362 363 364 365 366 367 368 369 370 371 372 373
	if (err)
		return err;

	for (n = 0; n < real_page_count(obj); n++) {
		u32 *map;

		map = kmap_atomic(i915_gem_object_get_page(obj, n));
		if (needs_flush & CLFLUSH_BEFORE)
			drm_clflush_virt_range(map, PAGE_SIZE);

		for (m = 0; m < max; m++) {
			if (map[m] != m) {
374 375 376 377
				pr_err("%pS: Invalid value at object %d page %d/%ld, offset %d/%d: found %x expected %x\n",
				       __builtin_return_address(0), idx,
				       n, real_page_count(obj), m, max,
				       map[m], m);
378 379 380 381 382 383
				err = -EINVAL;
				goto out_unmap;
			}
		}

		for (; m < DW_PER_PAGE; m++) {
384
			if (map[m] != STACK_MAGIC) {
385 386 387
				pr_err("%pS: Invalid value at object %d page %d, offset %d: found %x expected %x (uninitialised)\n",
				       __builtin_return_address(0), idx, n, m,
				       map[m], STACK_MAGIC);
388 389 390 391 392 393 394 395 396 397 398
				err = -EINVAL;
				goto out_unmap;
			}
		}

out_unmap:
		kunmap_atomic(map);
		if (err)
			break;
	}

399
	i915_gem_object_finish_access(obj);
400 401 402
	return err;
}

403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419
static int file_add_object(struct drm_file *file,
			    struct drm_i915_gem_object *obj)
{
	int err;

	GEM_BUG_ON(obj->base.handle_count);

	/* tie the object to the drm_file for easy reaping */
	err = idr_alloc(&file->object_idr, &obj->base, 1, 0, GFP_KERNEL);
	if (err < 0)
		return  err;

	i915_gem_object_get(obj);
	obj->base.handle_count++;
	return 0;
}

420 421 422 423 424 425
static struct drm_i915_gem_object *
create_test_object(struct i915_gem_context *ctx,
		   struct drm_file *file,
		   struct list_head *objects)
{
	struct drm_i915_gem_object *obj;
426
	struct i915_address_space *vm = ctx->vm ?: &ctx->i915->ggtt.vm;
427 428 429 430 431 432 433 434 435 436
	u64 size;
	int err;

	size = min(vm->total / 2, 1024ull * DW_PER_PAGE * PAGE_SIZE);
	size = round_down(size, DW_PER_PAGE * PAGE_SIZE);

	obj = huge_gem_object(ctx->i915, DW_PER_PAGE * PAGE_SIZE, size);
	if (IS_ERR(obj))
		return obj;

437
	err = file_add_object(file, obj);
438 439 440 441
	i915_gem_object_put(obj);
	if (err)
		return ERR_PTR(err);

442
	err = cpu_fill(obj, STACK_MAGIC);
443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463
	if (err) {
		pr_err("Failed to fill object with cpu, err=%d\n",
		       err);
		return ERR_PTR(err);
	}

	list_add_tail(&obj->st_link, objects);
	return obj;
}

static unsigned long max_dwords(struct drm_i915_gem_object *obj)
{
	unsigned long npages = fake_page_count(obj);

	GEM_BUG_ON(!IS_ALIGNED(npages, DW_PER_PAGE));
	return npages / DW_PER_PAGE;
}

static int igt_ctx_exec(void *arg)
{
	struct drm_i915_private *i915 = arg;
464 465
	struct intel_engine_cs *engine;
	enum intel_engine_id id;
466
	int err = -ENODEV;
467

468 469
	/*
	 * Create a few different contexts (with different mm) and write
470 471 472 473
	 * through each ctx/mm using the GPU making sure those writes end
	 * up in the expected pages of our obj.
	 */

474 475 476
	if (!DRIVER_CAPS(i915)->has_logical_contexts)
		return 0;

477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520
	for_each_engine(engine, i915, id) {
		struct drm_i915_gem_object *obj = NULL;
		unsigned long ncontexts, ndwords, dw;
		struct igt_live_test t;
		struct drm_file *file;
		IGT_TIMEOUT(end_time);
		LIST_HEAD(objects);

		if (!intel_engine_can_store_dword(engine))
			continue;

		if (!engine->context_size)
			continue; /* No logical context support in HW */

		file = mock_file(i915);
		if (IS_ERR(file))
			return PTR_ERR(file);

		mutex_lock(&i915->drm.struct_mutex);

		err = igt_live_test_begin(&t, i915, __func__, engine->name);
		if (err)
			goto out_unlock;

		ncontexts = 0;
		ndwords = 0;
		dw = 0;
		while (!time_after(jiffies, end_time)) {
			struct i915_gem_context *ctx;

			ctx = live_context(i915, file);
			if (IS_ERR(ctx)) {
				err = PTR_ERR(ctx);
				goto out_unlock;
			}

			if (!obj) {
				obj = create_test_object(ctx, file, &objects);
				if (IS_ERR(obj)) {
					err = PTR_ERR(obj);
					goto out_unlock;
				}
			}

521
			err = gpu_fill(obj, ctx, engine, dw);
522 523 524 525
			if (err) {
				pr_err("Failed to fill dword %lu [%lu/%lu] with gpu (%s) in ctx %u [full-ppgtt? %s], err=%d\n",
				       ndwords, dw, max_dwords(obj),
				       engine->name, ctx->hw_id,
526
				       yesno(!!ctx->vm), err);
527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584
				goto out_unlock;
			}

			if (++dw == max_dwords(obj)) {
				obj = NULL;
				dw = 0;
			}

			ndwords++;
			ncontexts++;
		}

		pr_info("Submitted %lu contexts to %s, filling %lu dwords\n",
			ncontexts, engine->name, ndwords);

		ncontexts = dw = 0;
		list_for_each_entry(obj, &objects, st_link) {
			unsigned int rem =
				min_t(unsigned int, ndwords - dw, max_dwords(obj));

			err = cpu_check(obj, ncontexts++, rem);
			if (err)
				break;

			dw += rem;
		}

out_unlock:
		if (igt_live_test_end(&t))
			err = -EIO;
		mutex_unlock(&i915->drm.struct_mutex);

		mock_file_free(i915, file);
		if (err)
			return err;
	}

	return 0;
}

static int igt_shared_ctx_exec(void *arg)
{
	struct drm_i915_private *i915 = arg;
	struct i915_gem_context *parent;
	struct intel_engine_cs *engine;
	enum intel_engine_id id;
	struct igt_live_test t;
	struct drm_file *file;
	int err = 0;

	/*
	 * Create a few different contexts with the same mm and write
	 * through each ctx using the GPU making sure those writes end
	 * up in the expected pages of our obj.
	 */
	if (!DRIVER_CAPS(i915)->has_logical_contexts)
		return 0;

585 586 587 588
	file = mock_file(i915);
	if (IS_ERR(file))
		return PTR_ERR(file);

589 590
	mutex_lock(&i915->drm.struct_mutex);

591 592 593 594 595 596
	parent = live_context(i915, file);
	if (IS_ERR(parent)) {
		err = PTR_ERR(parent);
		goto out_unlock;
	}

597
	if (!parent->vm) { /* not full-ppgtt; nothing to share */
598 599 600 601
		err = 0;
		goto out_unlock;
	}

602
	err = igt_live_test_begin(&t, i915, __func__, "");
603 604 605
	if (err)
		goto out_unlock;

606 607 608 609 610
	for_each_engine(engine, i915, id) {
		unsigned long ncontexts, ndwords, dw;
		struct drm_i915_gem_object *obj = NULL;
		IGT_TIMEOUT(end_time);
		LIST_HEAD(objects);
611

612 613
		if (!intel_engine_can_store_dword(engine))
			continue;
614

615 616 617 618 619
		dw = 0;
		ndwords = 0;
		ncontexts = 0;
		while (!time_after(jiffies, end_time)) {
			struct i915_gem_context *ctx;
620

621 622 623 624 625
			ctx = kernel_context(i915);
			if (IS_ERR(ctx)) {
				err = PTR_ERR(ctx);
				goto out_test;
			}
626

627
			__assign_ppgtt(ctx, parent->vm);
628

629
			if (!obj) {
630
				obj = create_test_object(parent, file, &objects);
631 632
				if (IS_ERR(obj)) {
					err = PTR_ERR(obj);
633 634
					kernel_context_close(ctx);
					goto out_test;
635 636 637
				}
			}

638
			err = gpu_fill(obj, ctx, engine, dw);
639 640 641 642
			if (err) {
				pr_err("Failed to fill dword %lu [%lu/%lu] with gpu (%s) in ctx %u [full-ppgtt? %s], err=%d\n",
				       ndwords, dw, max_dwords(obj),
				       engine->name, ctx->hw_id,
643
				       yesno(!!ctx->vm), err);
644 645
				kernel_context_close(ctx);
				goto out_test;
646 647
			}

648 649
			if (++dw == max_dwords(obj)) {
				obj = NULL;
650
				dw = 0;
651
			}
652

653
			ndwords++;
654 655 656
			ncontexts++;

			kernel_context_close(ctx);
657
		}
658 659
		pr_info("Submitted %lu contexts to %s, filling %lu dwords\n",
			ncontexts, engine->name, ndwords);
660

661 662 663 664
		ncontexts = dw = 0;
		list_for_each_entry(obj, &objects, st_link) {
			unsigned int rem =
				min_t(unsigned int, ndwords - dw, max_dwords(obj));
665

666 667 668
			err = cpu_check(obj, ncontexts++, rem);
			if (err)
				goto out_test;
669

670 671
			dw += rem;
		}
672
	}
673
out_test:
674
	if (igt_live_test_end(&t))
675
		err = -EIO;
676
out_unlock:
677 678 679 680 681 682
	mutex_unlock(&i915->drm.struct_mutex);

	mock_file_free(i915, file);
	return err;
}

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
static struct i915_vma *rpcs_query_batch(struct i915_vma *vma)
{
	struct drm_i915_gem_object *obj;
	u32 *cmd;
	int err;

	if (INTEL_GEN(vma->vm->i915) < 8)
		return ERR_PTR(-EINVAL);

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

	cmd = i915_gem_object_pin_map(obj, I915_MAP_WB);
	if (IS_ERR(cmd)) {
		err = PTR_ERR(cmd);
		goto err;
	}

	*cmd++ = MI_STORE_REGISTER_MEM_GEN8;
	*cmd++ = i915_mmio_reg_offset(GEN8_R_PWR_CLK_STATE);
	*cmd++ = lower_32_bits(vma->node.start);
	*cmd++ = upper_32_bits(vma->node.start);
	*cmd = MI_BATCH_BUFFER_END;

708
	__i915_gem_object_flush_map(obj, 0, 64);
709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729
	i915_gem_object_unpin_map(obj);

	vma = i915_vma_instance(obj, vma->vm, NULL);
	if (IS_ERR(vma)) {
		err = PTR_ERR(vma);
		goto err;
	}

	err = i915_vma_pin(vma, 0, 0, PIN_USER);
	if (err)
		goto err;

	return vma;

err:
	i915_gem_object_put(obj);
	return ERR_PTR(err);
}

static int
emit_rpcs_query(struct drm_i915_gem_object *obj,
730
		struct intel_context *ce,
731 732 733 734 735 736 737
		struct i915_request **rq_out)
{
	struct i915_request *rq;
	struct i915_vma *batch;
	struct i915_vma *vma;
	int err;

738
	GEM_BUG_ON(!intel_engine_can_store_dword(ce->engine));
739

740
	vma = i915_vma_instance(obj, ce->gem_context->vm, NULL);
741 742 743
	if (IS_ERR(vma))
		return PTR_ERR(vma);

744
	i915_gem_object_lock(obj);
745
	err = i915_gem_object_set_to_gtt_domain(obj, false);
746
	i915_gem_object_unlock(obj);
747 748 749 750 751 752 753 754 755 756 757 758 759
	if (err)
		return err;

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

	batch = rpcs_query_batch(vma);
	if (IS_ERR(batch)) {
		err = PTR_ERR(batch);
		goto err_vma;
	}

760
	rq = i915_request_create(ce);
761 762 763 764 765
	if (IS_ERR(rq)) {
		err = PTR_ERR(rq);
		goto err_batch;
	}

766 767 768
	err = rq->engine->emit_bb_start(rq,
					batch->node.start, batch->node.size,
					0);
769 770 771
	if (err)
		goto err_request;

772
	i915_vma_lock(batch);
773
	err = i915_vma_move_to_active(batch, rq, 0);
774
	i915_vma_unlock(batch);
775 776 777
	if (err)
		goto skip_request;

778
	i915_vma_lock(vma);
779
	err = i915_vma_move_to_active(vma, rq, EXEC_OBJECT_WRITE);
780
	i915_vma_unlock(vma);
781 782 783 784 785
	if (err)
		goto skip_request;

	i915_vma_unpin(batch);
	i915_vma_close(batch);
786
	i915_vma_put(batch);
787 788 789 790 791 792 793 794 795 796 797 798 799 800 801

	i915_vma_unpin(vma);

	*rq_out = i915_request_get(rq);

	i915_request_add(rq);

	return 0;

skip_request:
	i915_request_skip(rq, err);
err_request:
	i915_request_add(rq);
err_batch:
	i915_vma_unpin(batch);
802
	i915_vma_put(batch);
803 804 805 806 807 808 809 810 811 812 813 814 815 816
err_vma:
	i915_vma_unpin(vma);

	return err;
}

#define TEST_IDLE	BIT(0)
#define TEST_BUSY	BIT(1)
#define TEST_RESET	BIT(2)

static int
__sseu_prepare(struct drm_i915_private *i915,
	       const char *name,
	       unsigned int flags,
817
	       struct intel_context *ce,
818
	       struct igt_spinner **spin)
819
{
820 821
	struct i915_request *rq;
	int ret;
822

823 824 825
	*spin = NULL;
	if (!(flags & (TEST_BUSY | TEST_RESET)))
		return 0;
826

827 828 829
	*spin = kzalloc(sizeof(**spin), GFP_KERNEL);
	if (!*spin)
		return -ENOMEM;
830

831 832 833
	ret = igt_spinner_init(*spin, i915);
	if (ret)
		goto err_free;
834

835 836 837 838
	rq = igt_spinner_create_request(*spin,
					ce->gem_context,
					ce->engine,
					MI_NOOP);
839 840 841 842
	if (IS_ERR(rq)) {
		ret = PTR_ERR(rq);
		goto err_fini;
	}
843

844
	i915_request_add(rq);
845

846 847 848 849
	if (!igt_wait_for_spinner(*spin, rq)) {
		pr_err("%s: Spinner failed to start!\n", name);
		ret = -ETIMEDOUT;
		goto err_end;
850 851
	}

852 853 854 855 856 857 858 859
	return 0;

err_end:
	igt_spinner_end(*spin);
err_fini:
	igt_spinner_fini(*spin);
err_free:
	kfree(fetch_and_zero(spin));
860 861 862 863 864
	return ret;
}

static int
__read_slice_count(struct drm_i915_private *i915,
865
		   struct intel_context *ce,
866 867 868 869 870 871 872 873 874 875
		   struct drm_i915_gem_object *obj,
		   struct igt_spinner *spin,
		   u32 *rpcs)
{
	struct i915_request *rq = NULL;
	u32 s_mask, s_shift;
	unsigned int cnt;
	u32 *buf, val;
	long ret;

876
	ret = emit_rpcs_query(obj, ce, &rq);
877 878 879 880 881 882
	if (ret)
		return ret;

	if (spin)
		igt_spinner_end(spin);

883
	ret = i915_request_wait(rq, 0, MAX_SCHEDULE_TIMEOUT);
884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939
	i915_request_put(rq);
	if (ret < 0)
		return ret;

	buf = i915_gem_object_pin_map(obj, I915_MAP_WB);
	if (IS_ERR(buf)) {
		ret = PTR_ERR(buf);
		return ret;
	}

	if (INTEL_GEN(i915) >= 11) {
		s_mask = GEN11_RPCS_S_CNT_MASK;
		s_shift = GEN11_RPCS_S_CNT_SHIFT;
	} else {
		s_mask = GEN8_RPCS_S_CNT_MASK;
		s_shift = GEN8_RPCS_S_CNT_SHIFT;
	}

	val = *buf;
	cnt = (val & s_mask) >> s_shift;
	*rpcs = val;

	i915_gem_object_unpin_map(obj);

	return cnt;
}

static int
__check_rpcs(const char *name, u32 rpcs, int slices, unsigned int expected,
	     const char *prefix, const char *suffix)
{
	if (slices == expected)
		return 0;

	if (slices < 0) {
		pr_err("%s: %s read slice count failed with %d%s\n",
		       name, prefix, slices, suffix);
		return slices;
	}

	pr_err("%s: %s slice count %d is not %u%s\n",
	       name, prefix, slices, expected, suffix);

	pr_info("RPCS=0x%x; %u%sx%u%s\n",
		rpcs, slices,
		(rpcs & GEN8_RPCS_S_CNT_ENABLE) ? "*" : "",
		(rpcs & GEN8_RPCS_SS_CNT_MASK) >> GEN8_RPCS_SS_CNT_SHIFT,
		(rpcs & GEN8_RPCS_SS_CNT_ENABLE) ? "*" : "");

	return -EINVAL;
}

static int
__sseu_finish(struct drm_i915_private *i915,
	      const char *name,
	      unsigned int flags,
940
	      struct intel_context *ce,
941 942 943 944
	      struct drm_i915_gem_object *obj,
	      unsigned int expected,
	      struct igt_spinner *spin)
{
945
	unsigned int slices = hweight32(ce->engine->sseu.slice_mask);
946 947 948 949
	u32 rpcs = 0;
	int ret = 0;

	if (flags & TEST_RESET) {
950
		ret = i915_reset_engine(ce->engine, "sseu");
951 952 953 954
		if (ret)
			goto out;
	}

955
	ret = __read_slice_count(i915, ce, obj,
956 957 958 959 960
				 flags & TEST_RESET ? NULL : spin, &rpcs);
	ret = __check_rpcs(name, rpcs, ret, expected, "Context", "!");
	if (ret)
		goto out;

961
	ret = __read_slice_count(i915, ce->engine->kernel_context, obj,
962
				 NULL, &rpcs);
963 964 965 966 967 968 969
	ret = __check_rpcs(name, rpcs, ret, slices, "Kernel context", "!");

out:
	if (spin)
		igt_spinner_end(spin);

	if ((flags & TEST_IDLE) && ret == 0) {
970
		ret = i915_gem_wait_for_idle(i915, 0, MAX_SCHEDULE_TIMEOUT);
971 972 973
		if (ret)
			return ret;

974
		ret = __read_slice_count(i915, ce, obj, NULL, &rpcs);
975 976 977 978 979 980 981 982 983 984 985
		ret = __check_rpcs(name, rpcs, ret, expected,
				   "Context", " after idle!");
	}

	return ret;
}

static int
__sseu_test(struct drm_i915_private *i915,
	    const char *name,
	    unsigned int flags,
986
	    struct intel_context *ce,
987 988 989 990 991 992
	    struct drm_i915_gem_object *obj,
	    struct intel_sseu sseu)
{
	struct igt_spinner *spin = NULL;
	int ret;

993
	ret = __sseu_prepare(i915, name, flags, ce, &spin);
994
	if (ret)
995
		return ret;
996

997
	ret = __intel_context_reconfigure_sseu(ce, sseu);
998
	if (ret)
999
		goto out_spin;
1000

1001
	ret = __sseu_finish(i915, name, flags, ce, obj,
1002 1003
			    hweight32(sseu.slice_mask), spin);

1004
out_spin:
1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017
	if (spin) {
		igt_spinner_end(spin);
		igt_spinner_fini(spin);
		kfree(spin);
	}
	return ret;
}

static int
__igt_ctx_sseu(struct drm_i915_private *i915,
	       const char *name,
	       unsigned int flags)
{
1018
	struct intel_engine_cs *engine = i915->engine[RCS0];
1019
	struct intel_sseu default_sseu = engine->sseu;
1020 1021
	struct drm_i915_gem_object *obj;
	struct i915_gem_context *ctx;
1022
	struct intel_context *ce;
1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057
	struct intel_sseu pg_sseu;
	struct drm_file *file;
	int ret;

	if (INTEL_GEN(i915) < 9)
		return 0;

	if (!RUNTIME_INFO(i915)->sseu.has_slice_pg)
		return 0;

	if (hweight32(default_sseu.slice_mask) < 2)
		return 0;

	/*
	 * Gen11 VME friendly power-gated configuration with half enabled
	 * sub-slices.
	 */
	pg_sseu = default_sseu;
	pg_sseu.slice_mask = 1;
	pg_sseu.subslice_mask =
		~(~0 << (hweight32(default_sseu.subslice_mask) / 2));

	pr_info("SSEU subtest '%s', flags=%x, def_slices=%u, pg_slices=%u\n",
		name, flags, hweight32(default_sseu.slice_mask),
		hweight32(pg_sseu.slice_mask));

	file = mock_file(i915);
	if (IS_ERR(file))
		return PTR_ERR(file);

	if (flags & TEST_RESET)
		igt_global_reset_lock(i915);

	mutex_lock(&i915->drm.struct_mutex);

1058
	ctx = live_context(i915, file);
1059 1060 1061 1062
	if (IS_ERR(ctx)) {
		ret = PTR_ERR(ctx);
		goto out_unlock;
	}
1063
	i915_gem_context_clear_bannable(ctx); /* to reset and beyond! */
1064 1065 1066 1067 1068 1069 1070

	obj = i915_gem_object_create_internal(i915, PAGE_SIZE);
	if (IS_ERR(obj)) {
		ret = PTR_ERR(obj);
		goto out_unlock;
	}

1071
	ce = i915_gem_context_get_engine(ctx, RCS0);
1072 1073
	if (IS_ERR(ce)) {
		ret = PTR_ERR(ce);
1074
		goto out_put;
1075 1076 1077 1078 1079 1080
	}

	ret = intel_context_pin(ce);
	if (ret)
		goto out_context;

1081
	/* First set the default mask. */
1082
	ret = __sseu_test(i915, name, flags, ce, obj, default_sseu);
1083 1084 1085 1086
	if (ret)
		goto out_fail;

	/* Then set a power-gated configuration. */
1087
	ret = __sseu_test(i915, name, flags, ce, obj, pg_sseu);
1088 1089 1090 1091
	if (ret)
		goto out_fail;

	/* Back to defaults. */
1092
	ret = __sseu_test(i915, name, flags, ce, obj, default_sseu);
1093 1094 1095 1096
	if (ret)
		goto out_fail;

	/* One last power-gated configuration for the road. */
1097
	ret = __sseu_test(i915, name, flags, ce, obj, pg_sseu);
1098 1099 1100 1101 1102 1103 1104
	if (ret)
		goto out_fail;

out_fail:
	if (igt_flush_test(i915, I915_WAIT_LOCKED))
		ret = -EIO;

1105 1106 1107
	intel_context_unpin(ce);
out_context:
	intel_context_put(ce);
1108
out_put:
1109
	i915_gem_object_put(obj);
1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147

out_unlock:
	mutex_unlock(&i915->drm.struct_mutex);

	if (flags & TEST_RESET)
		igt_global_reset_unlock(i915);

	mock_file_free(i915, file);

	if (ret)
		pr_err("%s: Failed with %d!\n", name, ret);

	return ret;
}

static int igt_ctx_sseu(void *arg)
{
	struct {
		const char *name;
		unsigned int flags;
	} *phase, phases[] = {
		{ .name = "basic", .flags = 0 },
		{ .name = "idle", .flags = TEST_IDLE },
		{ .name = "busy", .flags = TEST_BUSY },
		{ .name = "busy-reset", .flags = TEST_BUSY | TEST_RESET },
		{ .name = "busy-idle", .flags = TEST_BUSY | TEST_IDLE },
		{ .name = "reset-idle", .flags = TEST_RESET | TEST_IDLE },
	};
	unsigned int i;
	int ret = 0;

	for (i = 0, phase = phases; ret == 0 && i < ARRAY_SIZE(phases);
	     i++, phase++)
		ret = __igt_ctx_sseu(arg, phase->name, phase->flags);

	return ret;
}

1148 1149 1150 1151
static int igt_ctx_readonly(void *arg)
{
	struct drm_i915_private *i915 = arg;
	struct drm_i915_gem_object *obj = NULL;
1152
	struct i915_address_space *vm;
1153
	struct i915_gem_context *ctx;
1154
	unsigned long idx, ndwords, dw;
1155
	struct igt_live_test t;
1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173
	struct drm_file *file;
	I915_RND_STATE(prng);
	IGT_TIMEOUT(end_time);
	LIST_HEAD(objects);
	int err = -ENODEV;

	/*
	 * Create a few read-only objects (with the occasional writable object)
	 * and try to write into these object checking that the GPU discards
	 * any write to a read-only object.
	 */

	file = mock_file(i915);
	if (IS_ERR(file))
		return PTR_ERR(file);

	mutex_lock(&i915->drm.struct_mutex);

1174
	err = igt_live_test_begin(&t, i915, __func__, "");
1175 1176 1177
	if (err)
		goto out_unlock;

1178
	ctx = live_context(i915, file);
1179 1180 1181 1182 1183
	if (IS_ERR(ctx)) {
		err = PTR_ERR(ctx);
		goto out_unlock;
	}

1184 1185
	vm = ctx->vm ?: &i915->mm.aliasing_ppgtt->vm;
	if (!vm || !vm->has_read_only) {
1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206
		err = 0;
		goto out_unlock;
	}

	ndwords = 0;
	dw = 0;
	while (!time_after(jiffies, end_time)) {
		struct intel_engine_cs *engine;
		unsigned int id;

		for_each_engine(engine, i915, id) {
			if (!intel_engine_can_store_dword(engine))
				continue;

			if (!obj) {
				obj = create_test_object(ctx, file, &objects);
				if (IS_ERR(obj)) {
					err = PTR_ERR(obj);
					goto out_unlock;
				}

1207 1208
				if (prandom_u32_state(&prng) & 1)
					i915_gem_object_set_readonly(obj);
1209 1210
			}

1211
			err = gpu_fill(obj, ctx, engine, dw);
1212 1213 1214 1215
			if (err) {
				pr_err("Failed to fill dword %lu [%lu/%lu] with gpu (%s) in ctx %u [full-ppgtt? %s], err=%d\n",
				       ndwords, dw, max_dwords(obj),
				       engine->name, ctx->hw_id,
1216
				       yesno(!!ctx->vm), err);
1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227
				goto out_unlock;
			}

			if (++dw == max_dwords(obj)) {
				obj = NULL;
				dw = 0;
			}
			ndwords++;
		}
	}
	pr_info("Submitted %lu dwords (across %u engines)\n",
1228
		ndwords, RUNTIME_INFO(i915)->num_engines);
1229 1230

	dw = 0;
1231
	idx = 0;
1232 1233 1234 1235 1236 1237
	list_for_each_entry(obj, &objects, st_link) {
		unsigned int rem =
			min_t(unsigned int, ndwords - dw, max_dwords(obj));
		unsigned int num_writes;

		num_writes = rem;
1238
		if (i915_gem_object_is_readonly(obj))
1239 1240
			num_writes = 0;

1241
		err = cpu_check(obj, idx++, num_writes);
1242 1243 1244 1245 1246 1247 1248
		if (err)
			break;

		dw += rem;
	}

out_unlock:
1249
	if (igt_live_test_end(&t))
1250 1251 1252 1253 1254 1255 1256
		err = -EIO;
	mutex_unlock(&i915->drm.struct_mutex);

	mock_file_free(i915, file);
	return err;
}

1257 1258 1259
static int check_scratch(struct i915_gem_context *ctx, u64 offset)
{
	struct drm_mm_node *node =
1260
		__drm_mm_interval_first(&ctx->vm->mm,
1261 1262 1263 1264 1265 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 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304
					offset, offset + sizeof(u32) - 1);
	if (!node || node->start > offset)
		return 0;

	GEM_BUG_ON(offset >= node->start + node->size);

	pr_err("Target offset 0x%08x_%08x overlaps with a node in the mm!\n",
	       upper_32_bits(offset), lower_32_bits(offset));
	return -EINVAL;
}

static int write_to_scratch(struct i915_gem_context *ctx,
			    struct intel_engine_cs *engine,
			    u64 offset, u32 value)
{
	struct drm_i915_private *i915 = ctx->i915;
	struct drm_i915_gem_object *obj;
	struct i915_request *rq;
	struct i915_vma *vma;
	u32 *cmd;
	int err;

	GEM_BUG_ON(offset < I915_GTT_PAGE_SIZE);

	obj = i915_gem_object_create_internal(i915, PAGE_SIZE);
	if (IS_ERR(obj))
		return PTR_ERR(obj);

	cmd = i915_gem_object_pin_map(obj, I915_MAP_WB);
	if (IS_ERR(cmd)) {
		err = PTR_ERR(cmd);
		goto err;
	}

	*cmd++ = MI_STORE_DWORD_IMM_GEN4;
	if (INTEL_GEN(i915) >= 8) {
		*cmd++ = lower_32_bits(offset);
		*cmd++ = upper_32_bits(offset);
	} else {
		*cmd++ = 0;
		*cmd++ = offset;
	}
	*cmd++ = value;
	*cmd = MI_BATCH_BUFFER_END;
1305
	__i915_gem_object_flush_map(obj, 0, 64);
1306 1307
	i915_gem_object_unpin_map(obj);

1308
	vma = i915_vma_instance(obj, ctx->vm, NULL);
1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321
	if (IS_ERR(vma)) {
		err = PTR_ERR(vma);
		goto err;
	}

	err = i915_vma_pin(vma, 0, 0, PIN_USER | PIN_OFFSET_FIXED);
	if (err)
		goto err;

	err = check_scratch(ctx, offset);
	if (err)
		goto err_unpin;

1322
	rq = igt_request_alloc(ctx, engine);
1323 1324 1325 1326 1327 1328 1329 1330 1331
	if (IS_ERR(rq)) {
		err = PTR_ERR(rq);
		goto err_unpin;
	}

	err = engine->emit_bb_start(rq, vma->node.start, vma->node.size, 0);
	if (err)
		goto err_request;

1332
	i915_vma_lock(vma);
1333
	err = i915_vma_move_to_active(vma, rq, 0);
1334
	i915_vma_unlock(vma);
1335 1336 1337 1338 1339
	if (err)
		goto skip_request;

	i915_vma_unpin(vma);
	i915_vma_close(vma);
1340
	i915_vma_put(vma);
1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401

	i915_request_add(rq);

	return 0;

skip_request:
	i915_request_skip(rq, err);
err_request:
	i915_request_add(rq);
err_unpin:
	i915_vma_unpin(vma);
err:
	i915_gem_object_put(obj);
	return err;
}

static int read_from_scratch(struct i915_gem_context *ctx,
			     struct intel_engine_cs *engine,
			     u64 offset, u32 *value)
{
	struct drm_i915_private *i915 = ctx->i915;
	struct drm_i915_gem_object *obj;
	const u32 RCS_GPR0 = 0x2600; /* not all engines have their own GPR! */
	const u32 result = 0x100;
	struct i915_request *rq;
	struct i915_vma *vma;
	u32 *cmd;
	int err;

	GEM_BUG_ON(offset < I915_GTT_PAGE_SIZE);

	obj = i915_gem_object_create_internal(i915, PAGE_SIZE);
	if (IS_ERR(obj))
		return PTR_ERR(obj);

	cmd = i915_gem_object_pin_map(obj, I915_MAP_WB);
	if (IS_ERR(cmd)) {
		err = PTR_ERR(cmd);
		goto err;
	}

	memset(cmd, POISON_INUSE, PAGE_SIZE);
	if (INTEL_GEN(i915) >= 8) {
		*cmd++ = MI_LOAD_REGISTER_MEM_GEN8;
		*cmd++ = RCS_GPR0;
		*cmd++ = lower_32_bits(offset);
		*cmd++ = upper_32_bits(offset);
		*cmd++ = MI_STORE_REGISTER_MEM_GEN8;
		*cmd++ = RCS_GPR0;
		*cmd++ = result;
		*cmd++ = 0;
	} else {
		*cmd++ = MI_LOAD_REGISTER_MEM;
		*cmd++ = RCS_GPR0;
		*cmd++ = offset;
		*cmd++ = MI_STORE_REGISTER_MEM;
		*cmd++ = RCS_GPR0;
		*cmd++ = result;
	}
	*cmd = MI_BATCH_BUFFER_END;

1402 1403
	i915_gem_object_flush_map(obj);
	i915_gem_object_unpin_map(obj);
1404

1405
	vma = i915_vma_instance(obj, ctx->vm, NULL);
1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418
	if (IS_ERR(vma)) {
		err = PTR_ERR(vma);
		goto err;
	}

	err = i915_vma_pin(vma, 0, 0, PIN_USER | PIN_OFFSET_FIXED);
	if (err)
		goto err;

	err = check_scratch(ctx, offset);
	if (err)
		goto err_unpin;

1419
	rq = igt_request_alloc(ctx, engine);
1420 1421 1422 1423 1424 1425 1426 1427 1428
	if (IS_ERR(rq)) {
		err = PTR_ERR(rq);
		goto err_unpin;
	}

	err = engine->emit_bb_start(rq, vma->node.start, vma->node.size, 0);
	if (err)
		goto err_request;

1429
	i915_vma_lock(vma);
1430
	err = i915_vma_move_to_active(vma, rq, EXEC_OBJECT_WRITE);
1431
	i915_vma_unlock(vma);
1432 1433 1434 1435 1436 1437 1438 1439
	if (err)
		goto skip_request;

	i915_vma_unpin(vma);
	i915_vma_close(vma);

	i915_request_add(rq);

1440
	i915_gem_object_lock(obj);
1441
	err = i915_gem_object_set_to_cpu_domain(obj, false);
1442
	i915_gem_object_unlock(obj);
1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473
	if (err)
		goto err;

	cmd = i915_gem_object_pin_map(obj, I915_MAP_WB);
	if (IS_ERR(cmd)) {
		err = PTR_ERR(cmd);
		goto err;
	}

	*value = cmd[result / sizeof(*cmd)];
	i915_gem_object_unpin_map(obj);
	i915_gem_object_put(obj);

	return 0;

skip_request:
	i915_request_skip(rq, err);
err_request:
	i915_request_add(rq);
err_unpin:
	i915_vma_unpin(vma);
err:
	i915_gem_object_put(obj);
	return err;
}

static int igt_vm_isolation(void *arg)
{
	struct drm_i915_private *i915 = arg;
	struct i915_gem_context *ctx_a, *ctx_b;
	struct intel_engine_cs *engine;
1474
	struct igt_live_test t;
1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495
	struct drm_file *file;
	I915_RND_STATE(prng);
	unsigned long count;
	unsigned int id;
	u64 vm_total;
	int err;

	if (INTEL_GEN(i915) < 7)
		return 0;

	/*
	 * The simple goal here is that a write into one context is not
	 * observed in a second (separate page tables and scratch).
	 */

	file = mock_file(i915);
	if (IS_ERR(file))
		return PTR_ERR(file);

	mutex_lock(&i915->drm.struct_mutex);

1496
	err = igt_live_test_begin(&t, i915, __func__, "");
1497 1498 1499
	if (err)
		goto out_unlock;

1500
	ctx_a = live_context(i915, file);
1501 1502 1503 1504 1505
	if (IS_ERR(ctx_a)) {
		err = PTR_ERR(ctx_a);
		goto out_unlock;
	}

1506
	ctx_b = live_context(i915, file);
1507 1508 1509 1510 1511 1512
	if (IS_ERR(ctx_b)) {
		err = PTR_ERR(ctx_b);
		goto out_unlock;
	}

	/* We can only test vm isolation, if the vm are distinct */
1513
	if (ctx_a->vm == ctx_b->vm)
1514 1515
		goto out_unlock;

1516 1517
	vm_total = ctx_a->vm->total;
	GEM_BUG_ON(ctx_b->vm->total != vm_total);
1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533
	vm_total -= I915_GTT_PAGE_SIZE;

	count = 0;
	for_each_engine(engine, i915, id) {
		IGT_TIMEOUT(end_time);
		unsigned long this = 0;

		if (!intel_engine_can_store_dword(engine))
			continue;

		while (!__igt_timeout(end_time, NULL)) {
			u32 value = 0xc5c5c5c5;
			u64 offset;

			div64_u64_rem(i915_prandom_u64_state(&prng),
				      vm_total, &offset);
1534
			offset &= -sizeof(u32);
1535 1536 1537 1538 1539 1540 1541 1542
			offset += I915_GTT_PAGE_SIZE;

			err = write_to_scratch(ctx_a, engine,
					       offset, 0xdeadbeef);
			if (err == 0)
				err = read_from_scratch(ctx_b, engine,
							offset, &value);
			if (err)
1543
				goto out_unlock;
1544 1545 1546 1547 1548 1549 1550 1551

			if (value) {
				pr_err("%s: Read %08x from scratch (offset 0x%08x_%08x), after %lu reads!\n",
				       engine->name, value,
				       upper_32_bits(offset),
				       lower_32_bits(offset),
				       this);
				err = -EINVAL;
1552
				goto out_unlock;
1553 1554 1555 1556 1557 1558 1559
			}

			this++;
		}
		count += this;
	}
	pr_info("Checked %lu scratch offsets across %d engines\n",
1560
		count, RUNTIME_INFO(i915)->num_engines);
1561 1562

out_unlock:
1563
	if (igt_live_test_end(&t))
1564 1565 1566 1567 1568 1569 1570
		err = -EIO;
	mutex_unlock(&i915->drm.struct_mutex);

	mock_file_free(i915, file);
	return err;
}

1571
static __maybe_unused const char *
1572
__engine_name(struct drm_i915_private *i915, intel_engine_mask_t engines)
1573 1574
{
	struct intel_engine_cs *engine;
1575
	intel_engine_mask_t tmp;
1576 1577 1578 1579 1580 1581 1582 1583 1584 1585

	if (engines == ALL_ENGINES)
		return "all";

	for_each_engine_masked(engine, i915, engines, tmp)
		return engine->name;

	return "none";
}

1586 1587 1588 1589 1590
static bool skip_unused_engines(struct intel_context *ce, void *data)
{
	return !ce->state;
}

1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615
static void mock_barrier_task(void *data)
{
	unsigned int *counter = data;

	++*counter;
}

static int mock_context_barrier(void *arg)
{
#undef pr_fmt
#define pr_fmt(x) "context_barrier_task():" # x
	struct drm_i915_private *i915 = arg;
	struct i915_gem_context *ctx;
	struct i915_request *rq;
	unsigned int counter;
	int err;

	/*
	 * The context barrier provides us with a callback after it emits
	 * a request; useful for retiring old state after loading new.
	 */

	mutex_lock(&i915->drm.struct_mutex);

	ctx = mock_context(i915, "mock");
1616 1617
	if (!ctx) {
		err = -ENOMEM;
1618 1619 1620 1621
		goto unlock;
	}

	counter = 0;
1622
	err = context_barrier_task(ctx, 0,
1623
				   NULL, NULL, mock_barrier_task, &counter);
1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634
	if (err) {
		pr_err("Failed at line %d, err=%d\n", __LINE__, err);
		goto out;
	}
	if (counter == 0) {
		pr_err("Did not retire immediately with 0 engines\n");
		err = -EINVAL;
		goto out;
	}

	counter = 0;
1635
	err = context_barrier_task(ctx, ALL_ENGINES,
1636 1637 1638 1639
				   skip_unused_engines,
				   NULL,
				   mock_barrier_task,
				   &counter);
1640 1641 1642 1643 1644
	if (err) {
		pr_err("Failed at line %d, err=%d\n", __LINE__, err);
		goto out;
	}
	if (counter == 0) {
1645
		pr_err("Did not retire immediately for all unused engines\n");
1646 1647 1648 1649
		err = -EINVAL;
		goto out;
	}

1650
	rq = igt_request_alloc(ctx, i915->engine[RCS0]);
1651 1652 1653 1654 1655 1656 1657 1658
	if (IS_ERR(rq)) {
		pr_err("Request allocation failed!\n");
		goto out;
	}
	i915_request_add(rq);

	counter = 0;
	context_barrier_inject_fault = BIT(RCS0);
1659
	err = context_barrier_task(ctx, ALL_ENGINES,
1660
				   NULL, NULL, mock_barrier_task, &counter);
1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673
	context_barrier_inject_fault = 0;
	if (err == -ENXIO)
		err = 0;
	else
		pr_err("Did not hit fault injection!\n");
	if (counter != 0) {
		pr_err("Invoked callback on error!\n");
		err = -EIO;
	}
	if (err)
		goto out;

	counter = 0;
1674
	err = context_barrier_task(ctx, ALL_ENGINES,
1675 1676 1677 1678
				   skip_unused_engines,
				   NULL,
				   mock_barrier_task,
				   &counter);
1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698
	if (err) {
		pr_err("Failed at line %d, err=%d\n", __LINE__, err);
		goto out;
	}
	mock_device_flush(i915);
	if (counter == 0) {
		pr_err("Did not retire on each active engines\n");
		err = -EINVAL;
		goto out;
	}

out:
	mock_context_close(ctx);
unlock:
	mutex_unlock(&i915->drm.struct_mutex);
	return err;
#undef pr_fmt
#define pr_fmt(x) x
}

1699 1700 1701
int i915_gem_context_mock_selftests(void)
{
	static const struct i915_subtest tests[] = {
1702
		SUBTEST(mock_context_barrier),
1703 1704 1705 1706 1707 1708 1709 1710 1711 1712
	};
	struct drm_i915_private *i915;
	int err;

	i915 = mock_gem_device();
	if (!i915)
		return -ENOMEM;

	err = i915_subtests(tests, i915);

1713
	drm_dev_put(&i915->drm);
1714 1715 1716
	return err;
}

1717
int i915_gem_context_live_selftests(struct drm_i915_private *dev_priv)
1718 1719
{
	static const struct i915_subtest tests[] = {
1720
		SUBTEST(live_nop_switch),
1721
		SUBTEST(igt_ctx_exec),
1722
		SUBTEST(igt_ctx_readonly),
1723
		SUBTEST(igt_ctx_sseu),
1724
		SUBTEST(igt_shared_ctx_exec),
1725
		SUBTEST(igt_vm_isolation),
1726
	};
1727

1728
	if (i915_terminally_wedged(dev_priv))
1729 1730
		return 0;

1731
	return i915_subtests(tests, dev_priv);
1732
}