Loading...
Note: File does not exist in v3.1.
1/*
2 * Copyright © 2016 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 */
23
24#ifndef __I915_SELFTEST_H__
25#define __I915_SELFTEST_H__
26
27#include <linux/types.h>
28
29struct pci_dev;
30struct drm_i915_private;
31
32struct i915_selftest {
33 unsigned long timeout_jiffies;
34 unsigned int timeout_ms;
35 unsigned int random_seed;
36 char *filter;
37 int mock;
38 int live;
39};
40
41#if IS_ENABLED(CONFIG_DRM_I915_SELFTEST)
42#include <linux/fault-inject.h>
43
44extern struct i915_selftest i915_selftest;
45
46int i915_mock_selftests(void);
47int i915_live_selftests(struct pci_dev *pdev);
48
49/* We extract the function declarations from i915_mock_selftests.h and
50 * i915_live_selftests.h Add your unit test declarations there!
51 *
52 * Mock unit tests are run very early upon module load, before the driver
53 * is probed. All hardware interactions, as well as other subsystems, must
54 * be "mocked".
55 *
56 * Live unit tests are run after the driver is loaded - all hardware
57 * interactions are real.
58 */
59#define selftest(name, func) int func(void);
60#include "selftests/i915_mock_selftests.h"
61#undef selftest
62#define selftest(name, func) int func(struct drm_i915_private *i915);
63#include "selftests/i915_live_selftests.h"
64#undef selftest
65
66struct i915_subtest {
67 int (*func)(void *data);
68 const char *name;
69};
70
71int __i915_nop_setup(void *data);
72int __i915_nop_teardown(int err, void *data);
73
74int __i915_live_setup(void *data);
75int __i915_live_teardown(int err, void *data);
76
77int __intel_gt_live_setup(void *data);
78int __intel_gt_live_teardown(int err, void *data);
79
80int __i915_subtests(const char *caller,
81 int (*setup)(void *data),
82 int (*teardown)(int err, void *data),
83 const struct i915_subtest *st,
84 unsigned int count,
85 void *data);
86#define i915_subtests(T, data) \
87 __i915_subtests(__func__, \
88 __i915_nop_setup, __i915_nop_teardown, \
89 T, ARRAY_SIZE(T), data)
90#define i915_live_subtests(T, data) ({ \
91 typecheck(struct drm_i915_private *, data); \
92 __i915_subtests(__func__, \
93 __i915_live_setup, __i915_live_teardown, \
94 T, ARRAY_SIZE(T), data); \
95})
96#define intel_gt_live_subtests(T, data) ({ \
97 typecheck(struct intel_gt *, data); \
98 __i915_subtests(__func__, \
99 __intel_gt_live_setup, __intel_gt_live_teardown, \
100 T, ARRAY_SIZE(T), data); \
101})
102
103#define SUBTEST(x) { x, #x }
104
105#define I915_SELFTEST_DECLARE(x) x
106#define I915_SELFTEST_ONLY(x) unlikely(x)
107
108#else /* !IS_ENABLED(CONFIG_DRM_I915_SELFTEST) */
109
110static inline int i915_mock_selftests(void) { return 0; }
111static inline int i915_live_selftests(struct pci_dev *pdev) { return 0; }
112
113#define I915_SELFTEST_DECLARE(x)
114#define I915_SELFTEST_ONLY(x) 0
115
116#endif
117
118/* Using the i915_selftest_ prefix becomes a little unwieldy with the helpers.
119 * Instead we use the igt_ shorthand, in reference to the intel-gpu-tools
120 * suite of uabi test cases (which includes a test runner for our selftests).
121 */
122
123#define IGT_TIMEOUT(name__) \
124 unsigned long name__ = jiffies + i915_selftest.timeout_jiffies
125
126__printf(2, 3)
127bool __igt_timeout(unsigned long timeout, const char *fmt, ...);
128
129#define igt_timeout(t, fmt, ...) \
130 __igt_timeout((t), KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
131
132#endif /* !__I915_SELFTEST_H__ */