File: igt_live_test.c

package info (click to toggle)
linux 6.16.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,724,576 kB
  • sloc: ansic: 26,558,545; asm: 271,315; sh: 143,998; python: 72,469; makefile: 57,126; perl: 36,821; xml: 19,553; cpp: 5,820; yacc: 4,915; lex: 2,955; awk: 1,667; sed: 28; ruby: 25
file content (83 lines) | stat: -rw-r--r-- 1,801 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/*
 * SPDX-License-Identifier: MIT
 *
 * Copyright © 2018 Intel Corporation
 */

#include "i915_drv.h"
#include "gt/intel_gt.h"
#include "gt/intel_gt_print.h"

#include "../i915_selftest.h"
#include "igt_flush_test.h"
#include "igt_live_test.h"

int igt_live_test_begin(struct igt_live_test *t,
			struct drm_i915_private *i915,
			const char *func,
			const char *name)
{
	struct intel_engine_cs *engine;
	enum intel_engine_id id;
	struct intel_gt *gt;
	unsigned int i;
	int err;

	t->i915 = i915;
	t->func = func;
	t->name = name;

	for_each_gt(gt, i915, i) {

		err = intel_gt_wait_for_idle(gt, MAX_SCHEDULE_TIMEOUT);
		if (err) {
			gt_err(gt, "%s(%s): GT failed to idle before, with err=%d!",
			       func, name, err);
			return err;
		}

		for_each_engine(engine, gt, id)
			t->reset_engine[i][id] =
				i915_reset_engine_count(&i915->gpu_error,
							engine);
	}

	t->reset_global = i915_reset_count(&i915->gpu_error);

	return 0;
}

int igt_live_test_end(struct igt_live_test *t)
{
	struct drm_i915_private *i915 = t->i915;
	struct intel_engine_cs *engine;
	enum intel_engine_id id;
	struct intel_gt *gt;
	unsigned int i;

	if (igt_flush_test(i915))
		return -EIO;

	if (t->reset_global != i915_reset_count(&i915->gpu_error)) {
		pr_err("%s(%s): GPU was reset %d times!\n",
		       t->func, t->name,
		       i915_reset_count(&i915->gpu_error) - t->reset_global);
		return -EIO;
	}

	for_each_gt(gt, i915, i) {
		for_each_engine(engine, gt, id) {
			if (t->reset_engine[i][id] ==
			    i915_reset_engine_count(&i915->gpu_error, engine))
				continue;

			gt_err(gt, "%s(%s): engine '%s' was reset %d times!\n",
			       t->func, t->name, engine->name,
			       i915_reset_engine_count(&i915->gpu_error, engine) -
			       t->reset_engine[i][id]);
			return -EIO;
		}
	}

	return 0;
}