* [igt-dev] [PATCH i-g-t] tests/gem_watchdog: GPU engine reset
@ 2018-09-21 19:54 Carlos Santa
2018-09-21 19:54 ` [igt-dev] [PATCH i-g-t] tests/gem_watchdog: Initial set of tests for GPU watchdog Carlos Santa
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Carlos Santa @ 2018-09-21 19:54 UTC (permalink / raw)
To: igt-dev
This IGT test complements the Gen8+ engine-reset feature patch
series aka Timeout Detection and Recovery (TDR) that Michel Thierry
submitted here: https://patchwork.freedesktop.org/series/21868/, specifically
the Watchdog timer feature of the original that is still not in
upstream.
There are several pieces that are required in order to
get (TDR) Watchdog timer in upstream:
(1) having a proper IGT set of tests that can exercise the feature
(2) but more imporantly, having a qualified user space client such
as a media driver that can trigger the watchdog timer after submitting
GPU work that could reset the media engine after encountering a
hung engine for example.
This IGT test is to cover requirement (1) above.
Carlos Santa (1):
tests/gem_watchdog: Initial set of tests for GPU watchdog
tests/Makefile.sources | 1 +
tests/gem_watchdog.c | 252 +++++++++++++++++++++++++++++++++++++++++++++++++
tests/meson.build | 1 +
3 files changed, 254 insertions(+)
create mode 100644 tests/gem_watchdog.c
--
2.7.4
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] [PATCH i-g-t] tests/gem_watchdog: Initial set of tests for GPU watchdog
2018-09-21 19:54 [igt-dev] [PATCH i-g-t] tests/gem_watchdog: GPU engine reset Carlos Santa
@ 2018-09-21 19:54 ` Carlos Santa
2018-09-21 21:14 ` Chris Wilson
2018-09-24 12:13 ` Petri Latvala
2018-09-21 23:07 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2018-09-22 1:18 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2 siblings, 2 replies; 6+ messages in thread
From: Carlos Santa @ 2018-09-21 19:54 UTC (permalink / raw)
To: igt-dev; +Cc: Michel Thierry
This test adds basic set of tests to reset the different
GPU engines through the watchdog timer.
Credits to Antonio for the original codebase this is based on.
This was verified on SKL/ULT GT3:
$./gem_watchdog --run-subtest basic-vebox
IGT-Version: 1.23-gaaeb2007206d (x86_64) (Linux: 4.18.0-rc7+ x86_64)
Starting subtest: basic-vebox
Subtest basic-vebox: SUCCESS (2.402s)
$ sudo cat /sys/kernel/debug/dri/0/i915_reset_info
full gpu reset = 0
GuC watchdog/media reset = 0
rcs0 = 0
bcs0 = 0
vcs0 = 0
vcs1 = 0
vecs0 = 1
Cc: Antonio Argenziano <antonio.argenziano@intel.com>
Cc: Michel Thierry <michel.thierry@intel.com>
Signed-off-by: Carlos Santa <carlos.santa@intel.com>
---
tests/Makefile.sources | 1 +
tests/gem_watchdog.c | 252 +++++++++++++++++++++++++++++++++++++++++++++++++
tests/meson.build | 1 +
3 files changed, 254 insertions(+)
create mode 100644 tests/gem_watchdog.c
diff --git a/tests/Makefile.sources b/tests/Makefile.sources
index c84933f1d971..9b298886a2e1 100644
--- a/tests/Makefile.sources
+++ b/tests/Makefile.sources
@@ -155,6 +155,7 @@ TESTS_progs = \
gem_unref_active_buffers \
gem_userptr_blits \
gem_wait \
+ gem_watchdog \
gem_workarounds \
gem_write_read_ring_switch \
gen3_mixed_blits \
diff --git a/tests/gem_watchdog.c b/tests/gem_watchdog.c
new file mode 100644
index 000000000000..e9d8bbc9a2ec
--- /dev/null
+++ b/tests/gem_watchdog.c
@@ -0,0 +1,252 @@
+/*
+ * Copyright © 2016 Intel Corporation
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and associated documentation files (the "Software"),
+ * to deal in the Software without restriction, including without limitation
+ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ * and/or sell copies of the Software, and to permit persons to whom the
+ * Software is furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the next
+ * paragraph) shall be included in all copies or substantial portions of the
+ * Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+ * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
+ * IN THE SOFTWARE.
+ */
+#include "igt.h"
+#include "igt_sysfs.h"
+
+#include <fcntl.h>
+
+#define MI_STORE_DATA_IMM (0x20 << 23)
+
+#define WATCHDOG_THRESHOLD (100)
+
+#define MAX_ENGINES 5
+#define RENDER_CLASS 0
+#define VIDEO_DECODE_CLASS 1
+#define VIDEO_ENHANCEMENT_CLASS 2
+#define COPY_ENGINE_CLASS 3
+
+#define LOCAL_I915_CONTEXT_PARAM_WATCHDOG 0x7
+
+static void clear_error_state(int fd)
+{
+ int dir;
+
+ dir = igt_sysfs_open(fd, NULL);
+ if (dir < 0)
+ return;
+
+ /* Any write to the error state clears it */
+ igt_sysfs_set(dir, "error", "");
+ close(dir);
+}
+
+static bool check_error_state(int fd)
+{
+ char *error, *str;
+ bool found = false;
+ int dir;
+
+ dir = igt_sysfs_open(fd, NULL);
+
+ error = igt_sysfs_get(dir, "error");
+ igt_sysfs_set(dir, "error", "Begone!");
+
+ igt_assert(error);
+ igt_debug("Error: %s\n", error);
+
+ if ((str = strstr(error, "GPU HANG"))) {
+ igt_debug("Found error state! GPU hang triggered! %s\n", str);
+ found = true;
+ }
+
+ close(dir);
+
+ return found;
+}
+
+static void send_canary(uint32_t fd, unsigned exec_id, uint32_t target, uint32_t offset, uint32_t *handle)
+{
+ struct drm_i915_gem_exec_object2 obj[2];
+ struct drm_i915_gem_relocation_entry reloc;
+ struct drm_i915_gem_execbuffer2 execbuf;
+
+ uint32_t *bo;
+ uint32_t batch[16];
+ int i = 0;
+
+ memset(&execbuf, 0, sizeof(execbuf));
+ memset(&obj, 0, sizeof(obj));
+ memset(&reloc, 0, sizeof(reloc));
+
+ execbuf.buffers_ptr = to_user_pointer(obj);
+
+ execbuf.buffer_count = 2;
+ execbuf.flags = exec_id;
+
+ obj[0].handle = target;
+ obj[1].handle = gem_create(fd, 4096);
+
+ obj[1].relocation_count = 1;
+ obj[1].relocs_ptr = to_user_pointer(&reloc);
+
+ reloc.target_handle = obj[0].handle;
+ reloc.read_domains = I915_GEM_DOMAIN_COMMAND;
+ reloc.write_domain = I915_GEM_DOMAIN_COMMAND;
+ reloc.delta = offset * sizeof(uint32_t);
+
+ batch[i++] = MI_STORE_DATA_IMM | 2;
+
+ reloc.offset = i * sizeof(uint32_t);
+
+ batch[i++] = 0x0;
+ batch[i++] = 0x0;
+ batch[i++] = 0xdeadbeef;
+
+ batch[i++] = 0x0;
+ batch[i++] = MI_BATCH_BUFFER_END;
+
+ gem_write(fd, obj[1].handle, 0, batch, sizeof(batch));
+ gem_execbuf(fd, &execbuf);
+
+ if (handle) {
+ *handle = obj[1].handle;
+ return;
+ }
+
+ gem_sync(fd, obj[1].handle);
+
+ /* Read back value to make sure batch executed */
+ bo = gem_mmap__cpu(fd, obj[0].handle, 0, 4096, PROT_READ);
+ gem_set_domain(fd, obj[0].handle, I915_GEM_DOMAIN_CPU, 0);
+
+ igt_assert_eq(bo[offset], 0xdeadbeef);
+
+ gem_close(fd, obj[1].handle);
+}
+
+/* Make sure the engines are working */
+static void verify_engines(uint32_t fd)
+{
+ uint32_t scratch;
+ int i;
+ unsigned int engines[16];
+ unsigned int nengine = 0;
+ unsigned int engine;
+
+ for_each_physical_engine(fd, engine) {
+ engines[nengine++] = engine;
+ }
+
+ igt_require(nengine);
+
+ /* Send a batch that changes the value in BO */
+ for (i = 0; i < nengine; i++) {
+ scratch = gem_create(fd, 4096);
+ send_canary(fd, engines[i], scratch, 0, NULL);
+ gem_close(fd, scratch);
+ }
+}
+
+static void context_set_watchdog(int fd, int engine_id,
+ unsigned ctx, unsigned threshold)
+{
+ struct drm_i915_gem_context_param arg = {
+ .param = LOCAL_I915_CONTEXT_PARAM_WATCHDOG,
+ .ctx_id = ctx,
+ };
+ unsigned engines_threshold[MAX_ENGINES];
+
+ memset(&arg, 0, sizeof(arg));
+ memset(&engines_threshold, 0, sizeof(engines_threshold));
+ arg.ctx_id = ctx;
+ arg.value = (uint64_t)&engines_threshold;
+ arg.param = LOCAL_I915_CONTEXT_PARAM_WATCHDOG;
+
+ /* read existing values */
+ gem_context_get_param(fd, &arg);
+
+ switch (engine_id & I915_EXEC_RING_MASK) {
+ case I915_EXEC_RENDER:
+ engines_threshold[RENDER_CLASS] = threshold;
+ break;
+ case I915_EXEC_BSD:
+ engines_threshold[VIDEO_DECODE_CLASS] = threshold;
+ break;
+ case I915_EXEC_VEBOX:
+ engines_threshold[VIDEO_ENHANCEMENT_CLASS] = threshold;
+ break;
+ default:
+ break;
+ }
+
+ gem_context_set_param(fd, &arg);
+}
+
+static void inject_hang(uint32_t fd, uint32_t ctx, unsigned ring, unsigned flags)
+{
+ igt_hang_t hang;
+ hang = igt_hang_ctx(fd, ctx, ring, flags);
+ gem_sync(fd, hang.spin->handle);
+}
+
+static void media_hang_simple(int fd, unsigned ring)
+{
+ uint32_t ctx;
+ unsigned flags = HANG_ALLOW_CAPTURE;
+
+ verify_engines(fd);
+
+ /* Submit on default context */
+ ctx = 0;
+ context_set_watchdog(fd, ring, ctx, WATCHDOG_THRESHOLD);
+
+ clear_error_state(fd);
+ igt_assert(!check_error_state(fd));
+
+ inject_hang(fd, ctx, ring, flags);
+
+ /* Assert if error state is not clean */
+ igt_assert(!check_error_state(fd));
+
+ verify_engines(fd);
+}
+
+igt_main
+{
+ int fd;
+
+ igt_skip_on_simulation();
+
+ igt_fixture {
+ fd = drm_open_driver(DRIVER_INTEL);
+ igt_require_gem(fd);
+ }
+
+ igt_subtest_group {
+
+ for (const struct intel_execution_engine *e = intel_execution_engines; e->name; e++){
+ /* default exec-id is purely symbolic */
+ if (e->exec_id == 0 || e->exec_id == I915_EXEC_BLT)
+ continue;
+
+ igt_subtest_f("basic-%s", e->name) {
+ igt_require(gem_ring_has_physical_engine(fd, e->exec_id | e->flags));
+ media_hang_simple(fd, e->exec_id | e->flags);
+ }
+ }
+ }
+
+ igt_fixture {
+ close(fd);
+ }
+}
diff --git a/tests/meson.build b/tests/meson.build
index 17deb945ec95..3b864d891a08 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -130,6 +130,7 @@ test_progs = [
'gem_unref_active_buffers',
'gem_userptr_blits',
'gem_wait',
+ 'gem_watchdog',
'gem_workarounds',
'gem_write_read_ring_switch',
'gen3_mixed_blits',
--
2.7.4
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] tests/gem_watchdog: Initial set of tests for GPU watchdog
2018-09-21 19:54 ` [igt-dev] [PATCH i-g-t] tests/gem_watchdog: Initial set of tests for GPU watchdog Carlos Santa
@ 2018-09-21 21:14 ` Chris Wilson
2018-09-24 12:13 ` Petri Latvala
1 sibling, 0 replies; 6+ messages in thread
From: Chris Wilson @ 2018-09-21 21:14 UTC (permalink / raw)
To: Carlos Santa, igt-dev; +Cc: Michel Thierry
Quoting Carlos Santa (2018-09-21 20:54:13)
> This test adds basic set of tests to reset the different
> GPU engines through the watchdog timer.
>
> Credits to Antonio for the original codebase this is based on.
>
> This was verified on SKL/ULT GT3:
>
> $./gem_watchdog --run-subtest basic-vebox
> IGT-Version: 1.23-gaaeb2007206d (x86_64) (Linux: 4.18.0-rc7+ x86_64)
> Starting subtest: basic-vebox
> Subtest basic-vebox: SUCCESS (2.402s)
> $ sudo cat /sys/kernel/debug/dri/0/i915_reset_info
> full gpu reset = 0
> GuC watchdog/media reset = 0
> rcs0 = 0
> bcs0 = 0
> vcs0 = 0
> vcs1 = 0
> vecs0 = 1
>
> Cc: Antonio Argenziano <antonio.argenziano@intel.com>
> Cc: Michel Thierry <michel.thierry@intel.com>
> Signed-off-by: Carlos Santa <carlos.santa@intel.com>
> ---
> tests/Makefile.sources | 1 +
> tests/gem_watchdog.c | 252 +++++++++++++++++++++++++++++++++++++++++++++++++
> tests/meson.build | 1 +
> 3 files changed, 254 insertions(+)
> create mode 100644 tests/gem_watchdog.c
>
> diff --git a/tests/Makefile.sources b/tests/Makefile.sources
> index c84933f1d971..9b298886a2e1 100644
> --- a/tests/Makefile.sources
> +++ b/tests/Makefile.sources
> @@ -155,6 +155,7 @@ TESTS_progs = \
> gem_unref_active_buffers \
> gem_userptr_blits \
> gem_wait \
> + gem_watchdog \
> gem_workarounds \
> gem_write_read_ring_switch \
> gen3_mixed_blits \
> diff --git a/tests/gem_watchdog.c b/tests/gem_watchdog.c
> new file mode 100644
> index 000000000000..e9d8bbc9a2ec
> --- /dev/null
> +++ b/tests/gem_watchdog.c
> @@ -0,0 +1,252 @@
> +/*
> + * Copyright © 2016 Intel Corporation
> + *
> + * Permission is hereby granted, free of charge, to any person obtaining a
> + * copy of this software and associated documentation files (the "Software"),
> + * to deal in the Software without restriction, including without limitation
> + * the rights to use, copy, modify, merge, publish, distribute, sublicense,
> + * and/or sell copies of the Software, and to permit persons to whom the
> + * Software is furnished to do so, subject to the following conditions:
> + *
> + * The above copyright notice and this permission notice (including the next
> + * paragraph) shall be included in all copies or substantial portions of the
> + * Software.
> + *
> + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
> + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
> + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
> + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
> + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
> + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
> + * IN THE SOFTWARE.
> + */
> +#include "igt.h"
> +#include "igt_sysfs.h"
> +
> +#include <fcntl.h>
> +
> +#define MI_STORE_DATA_IMM (0x20 << 23)
We still use its older name of MI_STORE_DWORD_IMM
> +#define WATCHDOG_THRESHOLD (100)
> +
> +#define MAX_ENGINES 5
> +#define RENDER_CLASS 0
> +#define VIDEO_DECODE_CLASS 1
> +#define VIDEO_ENHANCEMENT_CLASS 2
> +#define COPY_ENGINE_CLASS 3
> +
> +#define LOCAL_I915_CONTEXT_PARAM_WATCHDOG 0x7
> +
> +static void clear_error_state(int fd)
> +{
> + int dir;
> +
> + dir = igt_sysfs_open(fd, NULL);
> + if (dir < 0)
> + return;
> +
> + /* Any write to the error state clears it */
> + igt_sysfs_set(dir, "error", "");
> + close(dir);
> +}
> +
> +static bool check_error_state(int fd)
> +{
> + char *error, *str;
> + bool found = false;
> + int dir;
> +
> + dir = igt_sysfs_open(fd, NULL);
> +
> + error = igt_sysfs_get(dir, "error");
> + igt_sysfs_set(dir, "error", "Begone!");
> +
> + igt_assert(error);
> + igt_debug("Error: %s\n", error);
> +
> + if ((str = strstr(error, "GPU HANG"))) {
> + igt_debug("Found error state! GPU hang triggered! %s\n", str);
> + found = true;
> + }
> +
> + close(dir);
> +
> + return found;
> +}
> +
> +static void send_canary(uint32_t fd, unsigned exec_id, uint32_t target, uint32_t offset, uint32_t *handle)
> +{
> + struct drm_i915_gem_exec_object2 obj[2];
> + struct drm_i915_gem_relocation_entry reloc;
> + struct drm_i915_gem_execbuffer2 execbuf;
> +
> + uint32_t *bo;
> + uint32_t batch[16];
> + int i = 0;
> +
> + memset(&execbuf, 0, sizeof(execbuf));
> + memset(&obj, 0, sizeof(obj));
> + memset(&reloc, 0, sizeof(reloc));
> +
> + execbuf.buffers_ptr = to_user_pointer(obj);
> +
> + execbuf.buffer_count = 2;
> + execbuf.flags = exec_id;
> +
> + obj[0].handle = target;
> + obj[1].handle = gem_create(fd, 4096);
> +
> + obj[1].relocation_count = 1;
> + obj[1].relocs_ptr = to_user_pointer(&reloc);
> +
> + reloc.target_handle = obj[0].handle;
> + reloc.read_domains = I915_GEM_DOMAIN_COMMAND;
> + reloc.write_domain = I915_GEM_DOMAIN_COMMAND;
> + reloc.delta = offset * sizeof(uint32_t);
> +
> + batch[i++] = MI_STORE_DATA_IMM | 2;
> +
> + reloc.offset = i * sizeof(uint32_t);
> +
> + batch[i++] = 0x0;
Incorrect for offset != 0.
> + batch[i++] = 0x0;
> + batch[i++] = 0xdeadbeef;
> +
> + batch[i++] = 0x0;
> + batch[i++] = MI_BATCH_BUFFER_END;
> +
> + gem_write(fd, obj[1].handle, 0, batch, sizeof(batch));
> + gem_execbuf(fd, &execbuf);
> +
> + if (handle) {
> + *handle = obj[1].handle;
> + return;
> + }
> +
> + gem_sync(fd, obj[1].handle);
sync because?
> +
> + /* Read back value to make sure batch executed */
> + bo = gem_mmap__cpu(fd, obj[0].handle, 0, 4096, PROT_READ);
> + gem_set_domain(fd, obj[0].handle, I915_GEM_DOMAIN_CPU, 0);
> +
> + igt_assert_eq(bo[offset], 0xdeadbeef);
> +
> + gem_close(fd, obj[1].handle);
> +}
> +
> +/* Make sure the engines are working */
> +static void verify_engines(uint32_t fd)
> +{
> + uint32_t scratch;
> + int i;
> + unsigned int engines[16];
> + unsigned int nengine = 0;
> + unsigned int engine;
> +
> + for_each_physical_engine(fd, engine) {
if (gem_can_store_dword(fd, engine))
> + engines[nengine++] = engine;
> + }
> +
> + igt_require(nengine);
> +
> + /* Send a batch that changes the value in BO */
> + for (i = 0; i < nengine; i++) {
> + scratch = gem_create(fd, 4096);
> + send_canary(fd, engines[i], scratch, 0, NULL);
> + gem_close(fd, scratch);
Instead of using a simple canary, try TIMESTAMP; hang; TIMESTAMP and
check the dt is less than say 2*threshold + small margin for reset +
submission. Even .5s would be enough to confirm that we used the
watchdog and not hangcheck.
> + }
> +}
> +
> +static void context_set_watchdog(int fd, int engine_id,
> + unsigned ctx, unsigned threshold)
> +{
> + struct drm_i915_gem_context_param arg = {
> + .param = LOCAL_I915_CONTEXT_PARAM_WATCHDOG,
> + .ctx_id = ctx,
> + };
> + unsigned engines_threshold[MAX_ENGINES];
> +
> + memset(&arg, 0, sizeof(arg));
But you've already set bits of arg.
> + memset(&engines_threshold, 0, sizeof(engines_threshold));
> + arg.ctx_id = ctx;
> + arg.value = (uint64_t)&engines_threshold;
> + arg.param = LOCAL_I915_CONTEXT_PARAM_WATCHDOG;
For setting:
arg.value = &{ class, instance, threshold }
arg.size = sizeof(*arg.value);
MAX_ENGINES is not going to be an implicit part of the ABI.
> +
> + /* read existing values */
> + gem_context_get_param(fd, &arg);
> +
> + switch (engine_id & I915_EXEC_RING_MASK) {
> + case I915_EXEC_RENDER:
> + engines_threshold[RENDER_CLASS] = threshold;
> + break;
> + case I915_EXEC_BSD:
> + engines_threshold[VIDEO_DECODE_CLASS] = threshold;
> + break;
> + case I915_EXEC_VEBOX:
> + engines_threshold[VIDEO_ENHANCEMENT_CLASS] = threshold;
> + break;
> + default:
> + break;
> + }
> +
> + gem_context_set_param(fd, &arg);
> +}
> +
> +static void inject_hang(uint32_t fd, uint32_t ctx, unsigned ring, unsigned flags)
> +{
> + igt_hang_t hang;
> + hang = igt_hang_ctx(fd, ctx, ring, flags);
> + gem_sync(fd, hang.spin->handle);
> +}
> +
> +static void media_hang_simple(int fd, unsigned ring)
> +{
> + uint32_t ctx;
> + unsigned flags = HANG_ALLOW_CAPTURE;
> +
> + verify_engines(fd);
> +
> + /* Submit on default context */
> + ctx = 0;
> + context_set_watchdog(fd, ring, ctx, WATCHDOG_THRESHOLD);
> +
> + clear_error_state(fd);
> + igt_assert(!check_error_state(fd));
I recall the argument was that we wouldn't capture the error for a
watchdog.
> +
> + inject_hang(fd, ctx, ring, flags);
> +
> + /* Assert if error state is not clean */
> + igt_assert(!check_error_state(fd));
> +
> + verify_engines(fd);
> +}
> +
> +igt_main
> +{
> + int fd;
> +
> + igt_skip_on_simulation();
> +
> + igt_fixture {
> + fd = drm_open_driver(DRIVER_INTEL);
> + igt_require_gem(fd);
> + }
> +
> + igt_subtest_group {
> +
> + for (const struct intel_execution_engine *e = intel_execution_engines; e->name; e++){
Looks like you want you use the class:instance interface to match up
with the context setparam.
> + /* default exec-id is purely symbolic */
> + if (e->exec_id == 0 || e->exec_id == I915_EXEC_BLT)
> + continue;
> +
> + igt_subtest_f("basic-%s", e->name) {
> + igt_require(gem_ring_has_physical_engine(fd, e->exec_id | e->flags));
> + media_hang_simple(fd, e->exec_id | e->flags);
> + }
> + }
> + }
> +
> + igt_fixture {
> + close(fd);
> + }
> +}
> diff --git a/tests/meson.build b/tests/meson.build
> index 17deb945ec95..3b864d891a08 100644
> --- a/tests/meson.build
> +++ b/tests/meson.build
> @@ -130,6 +130,7 @@ test_progs = [
> 'gem_unref_active_buffers',
> 'gem_userptr_blits',
> 'gem_wait',
> + 'gem_watchdog',
> 'gem_workarounds',
> 'gem_write_read_ring_switch',
> 'gen3_mixed_blits',
> --
> 2.7.4
>
> _______________________________________________
> igt-dev mailing list
> igt-dev@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/igt-dev
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/gem_watchdog: Initial set of tests for GPU watchdog
2018-09-21 19:54 [igt-dev] [PATCH i-g-t] tests/gem_watchdog: GPU engine reset Carlos Santa
2018-09-21 19:54 ` [igt-dev] [PATCH i-g-t] tests/gem_watchdog: Initial set of tests for GPU watchdog Carlos Santa
@ 2018-09-21 23:07 ` Patchwork
2018-09-22 1:18 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2018-09-21 23:07 UTC (permalink / raw)
To: Carlos Santa; +Cc: igt-dev
== Series Details ==
Series: tests/gem_watchdog: Initial set of tests for GPU watchdog
URL : https://patchwork.freedesktop.org/series/50041/
State : success
== Summary ==
= CI Bug Log - changes from CI_DRM_4859 -> IGTPW_1865 =
== Summary - SUCCESS ==
No regressions found.
External URL: https://patchwork.freedesktop.org/api/1.0/series/50041/revisions/1/mbox/
== Known issues ==
Here are the changes found in IGTPW_1865 that come from known issues:
=== IGT changes ===
==== Issues hit ====
igt@drv_module_reload@basic-reload:
fi-blb-e6850: PASS -> INCOMPLETE (fdo#107718)
fi-glk-j4005: PASS -> DMESG-WARN (fdo#106248, fdo#106725)
igt@gem_exec_suspend@basic-s3:
fi-bdw-samus: PASS -> INCOMPLETE (fdo#107773)
igt@kms_flip@basic-flip-vs-dpms:
fi-skl-6700hq: PASS -> DMESG-WARN (fdo#105998)
igt@kms_flip@basic-flip-vs-modeset:
fi-glk-j4005: PASS -> DMESG-WARN (fdo#106000)
igt@kms_frontbuffer_tracking@basic:
fi-byt-clapper: PASS -> FAIL (fdo#103167)
igt@pm_rpm@module-reload:
fi-glk-j4005: PASS -> DMESG-WARN (fdo#107726)
==== Possible fixes ====
igt@drv_selftest@live_hangcheck:
fi-glk-j4005: INCOMPLETE (k.org#198133, fdo#103359) -> PASS
igt@kms_pipe_crc_basic@nonblocking-crc-pipe-b:
fi-byt-clapper: FAIL (fdo#107362) -> PASS
igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c:
fi-cfl-8109u: FAIL (fdo#103375) -> PASS
fdo#103167 https://bugs.freedesktop.org/show_bug.cgi?id=103167
fdo#103359 https://bugs.freedesktop.org/show_bug.cgi?id=103359
fdo#103375 https://bugs.freedesktop.org/show_bug.cgi?id=103375
fdo#105998 https://bugs.freedesktop.org/show_bug.cgi?id=105998
fdo#106000 https://bugs.freedesktop.org/show_bug.cgi?id=106000
fdo#106248 https://bugs.freedesktop.org/show_bug.cgi?id=106248
fdo#106725 https://bugs.freedesktop.org/show_bug.cgi?id=106725
fdo#107362 https://bugs.freedesktop.org/show_bug.cgi?id=107362
fdo#107718 https://bugs.freedesktop.org/show_bug.cgi?id=107718
fdo#107726 https://bugs.freedesktop.org/show_bug.cgi?id=107726
fdo#107773 https://bugs.freedesktop.org/show_bug.cgi?id=107773
k.org#198133 https://bugzilla.kernel.org/show_bug.cgi?id=198133
== Participating hosts (51 -> 41) ==
Additional (1): fi-skl-caroline
Missing (11): fi-ilk-m540 fi-hsw-4200u fi-skl-guc fi-byt-squawks fi-bsw-cyan fi-cfl-guc fi-kbl-guc fi-ctg-p8600 fi-skl-iommu fi-pnv-d510 fi-snb-2600
== Build changes ==
* IGT: IGT_4648 -> IGTPW_1865
CI_DRM_4859: 841654aee134e50b21bf8f2aab17da8d0afd14c4 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_1865: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1865/
IGT_4648: f2919ea120660ca15622a27527e1842d0dd3f1b7 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Testlist changes ==
+igt@gem_watchdog@basic-bsd
+igt@gem_watchdog@basic-bsd1
+igt@gem_watchdog@basic-bsd2
+igt@gem_watchdog@basic-render
+igt@gem_watchdog@basic-vebox
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1865/issues.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/gem_watchdog: Initial set of tests for GPU watchdog
2018-09-21 19:54 [igt-dev] [PATCH i-g-t] tests/gem_watchdog: GPU engine reset Carlos Santa
2018-09-21 19:54 ` [igt-dev] [PATCH i-g-t] tests/gem_watchdog: Initial set of tests for GPU watchdog Carlos Santa
2018-09-21 23:07 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
@ 2018-09-22 1:18 ` Patchwork
2 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2018-09-22 1:18 UTC (permalink / raw)
To: Carlos Santa; +Cc: igt-dev
== Series Details ==
Series: tests/gem_watchdog: Initial set of tests for GPU watchdog
URL : https://patchwork.freedesktop.org/series/50041/
State : failure
== Summary ==
= CI Bug Log - changes from IGT_4648_full -> IGTPW_1865_full =
== Summary - FAILURE ==
Serious unknown changes coming with IGTPW_1865_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_1865_full, please notify your bug team to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://patchwork.freedesktop.org/api/1.0/series/50041/revisions/1/mbox/
== Possible new issues ==
Here are the unknown changes that may have been introduced in IGTPW_1865_full:
=== IGT changes ===
==== Possible regressions ====
{igt@gem_watchdog@basic-bsd}:
shard-apl: NOTRUN -> FAIL +2
shard-snb: NOTRUN -> FAIL +1
{igt@gem_watchdog@basic-render}:
shard-kbl: NOTRUN -> FAIL +3
shard-glk: NOTRUN -> FAIL +1
{igt@gem_watchdog@basic-vebox}:
shard-hsw: NOTRUN -> FAIL +2
igt@prime_busy@hang-bsd:
shard-apl: PASS -> FAIL
== Known issues ==
Here are the changes found in IGTPW_1865_full that come from known issues:
=== IGT changes ===
==== Issues hit ====
igt@gem_exec_schedule@pi-ringfull-blt:
shard-glk: NOTRUN -> FAIL (fdo#103158)
igt@kms_available_modes_crc@available_mode_test_crc:
shard-snb: NOTRUN -> FAIL (fdo#106641)
igt@kms_busy@extended-modeset-hang-newfb-render-c:
shard-glk: NOTRUN -> DMESG-WARN (fdo#107956) +2
igt@kms_busy@extended-pageflip-modeset-hang-oldfb-render-a:
shard-snb: NOTRUN -> DMESG-WARN (fdo#107956)
igt@kms_cursor_crc@cursor-128x128-suspend:
shard-snb: NOTRUN -> INCOMPLETE (fdo#105411)
igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
shard-glk: NOTRUN -> DMESG-WARN (fdo#106538, fdo#105763)
igt@kms_flip@flip-vs-expired-vblank:
shard-glk: PASS -> FAIL (fdo#105363)
igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu:
shard-glk: NOTRUN -> FAIL (fdo#103167)
igt@kms_frontbuffer_tracking@fbc-suspend:
shard-kbl: PASS -> INCOMPLETE (fdo#103665, fdo#105959)
igt@kms_plane_multiple@atomic-pipe-a-tiling-x:
shard-snb: PASS -> FAIL (fdo#103166)
igt@kms_rotation_crc@sprite-rotation-180:
shard-snb: NOTRUN -> FAIL (fdo#103925) +1
igt@kms_setmode@basic:
shard-kbl: PASS -> FAIL (fdo#99912)
==== Possible fixes ====
igt@kms_busy@extended-pageflip-hang-newfb-render-a:
shard-glk: DMESG-WARN (fdo#107956) -> PASS
igt@kms_busy@extended-pageflip-hang-newfb-render-b:
shard-apl: DMESG-WARN (fdo#107956) -> PASS
igt@kms_cursor_legacy@cursora-vs-flipa-toggle:
shard-glk: DMESG-WARN (fdo#106538, fdo#105763) -> PASS
igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes:
shard-apl: INCOMPLETE (fdo#103927) -> PASS
igt@kms_vblank@pipe-b-query-busy-hang:
shard-apl: DMESG-WARN (fdo#106107) -> PASS
igt@perf_pmu@init-wait-vcs0:
shard-snb: INCOMPLETE (fdo#107816, fdo#105411) -> PASS
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
fdo#103158 https://bugs.freedesktop.org/show_bug.cgi?id=103158
fdo#103166 https://bugs.freedesktop.org/show_bug.cgi?id=103166
fdo#103167 https://bugs.freedesktop.org/show_bug.cgi?id=103167
fdo#103665 https://bugs.freedesktop.org/show_bug.cgi?id=103665
fdo#103925 https://bugs.freedesktop.org/show_bug.cgi?id=103925
fdo#103927 https://bugs.freedesktop.org/show_bug.cgi?id=103927
fdo#105363 https://bugs.freedesktop.org/show_bug.cgi?id=105363
fdo#105411 https://bugs.freedesktop.org/show_bug.cgi?id=105411
fdo#105763 https://bugs.freedesktop.org/show_bug.cgi?id=105763
fdo#105959 https://bugs.freedesktop.org/show_bug.cgi?id=105959
fdo#106107 https://bugs.freedesktop.org/show_bug.cgi?id=106107
fdo#106538 https://bugs.freedesktop.org/show_bug.cgi?id=106538
fdo#106641 https://bugs.freedesktop.org/show_bug.cgi?id=106641
fdo#107816 https://bugs.freedesktop.org/show_bug.cgi?id=107816
fdo#107956 https://bugs.freedesktop.org/show_bug.cgi?id=107956
fdo#99912 https://bugs.freedesktop.org/show_bug.cgi?id=99912
== Participating hosts (5 -> 5) ==
No changes in participating hosts
== Build changes ==
* IGT: IGT_4648 -> IGTPW_1865
* Linux: CI_DRM_4854 -> CI_DRM_4859
CI_DRM_4854: 78a6bcff149f370d58fe0bf51c29cbe62d8bc27c @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_4859: 841654aee134e50b21bf8f2aab17da8d0afd14c4 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_1865: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1865/
IGT_4648: f2919ea120660ca15622a27527e1842d0dd3f1b7 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1865/shards.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] tests/gem_watchdog: Initial set of tests for GPU watchdog
2018-09-21 19:54 ` [igt-dev] [PATCH i-g-t] tests/gem_watchdog: Initial set of tests for GPU watchdog Carlos Santa
2018-09-21 21:14 ` Chris Wilson
@ 2018-09-24 12:13 ` Petri Latvala
1 sibling, 0 replies; 6+ messages in thread
From: Petri Latvala @ 2018-09-24 12:13 UTC (permalink / raw)
To: Carlos Santa; +Cc: igt-dev, Michel Thierry
On Fri, Sep 21, 2018 at 12:54:13PM -0700, Carlos Santa wrote:
> This test adds basic set of tests to reset the different
> GPU engines through the watchdog timer.
>
> Credits to Antonio for the original codebase this is based on.
>
> This was verified on SKL/ULT GT3:
>
> $./gem_watchdog --run-subtest basic-vebox
> IGT-Version: 1.23-gaaeb2007206d (x86_64) (Linux: 4.18.0-rc7+ x86_64)
> Starting subtest: basic-vebox
> Subtest basic-vebox: SUCCESS (2.402s)
> $ sudo cat /sys/kernel/debug/dri/0/i915_reset_info
> full gpu reset = 0
> GuC watchdog/media reset = 0
> rcs0 = 0
> bcs0 = 0
> vcs0 = 0
> vcs1 = 0
> vecs0 = 1
>
> Cc: Antonio Argenziano <antonio.argenziano@intel.com>
> Cc: Michel Thierry <michel.thierry@intel.com>
> Signed-off-by: Carlos Santa <carlos.santa@intel.com>
> ---
> tests/Makefile.sources | 1 +
> tests/gem_watchdog.c | 252 +++++++++++++++++++++++++++++++++++++++++++++++++
> tests/meson.build | 1 +
> 3 files changed, 254 insertions(+)
> create mode 100644 tests/gem_watchdog.c
>
> diff --git a/tests/Makefile.sources b/tests/Makefile.sources
> index c84933f1d971..9b298886a2e1 100644
> --- a/tests/Makefile.sources
> +++ b/tests/Makefile.sources
> @@ -155,6 +155,7 @@ TESTS_progs = \
> gem_unref_active_buffers \
> gem_userptr_blits \
> gem_wait \
> + gem_watchdog \
> gem_workarounds \
> gem_write_read_ring_switch \
> gen3_mixed_blits \
> diff --git a/tests/gem_watchdog.c b/tests/gem_watchdog.c
> new file mode 100644
> index 000000000000..e9d8bbc9a2ec
> --- /dev/null
> +++ b/tests/gem_watchdog.c
> @@ -0,0 +1,252 @@
> +/*
> + * Copyright © 2016 Intel Corporation
Is this year correct?
IGT_TEST_DESCRIPTION() is missing also.
--
Petri Latvala
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2018-09-24 12:13 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-09-21 19:54 [igt-dev] [PATCH i-g-t] tests/gem_watchdog: GPU engine reset Carlos Santa
2018-09-21 19:54 ` [igt-dev] [PATCH i-g-t] tests/gem_watchdog: Initial set of tests for GPU watchdog Carlos Santa
2018-09-21 21:14 ` Chris Wilson
2018-09-24 12:13 ` Petri Latvala
2018-09-21 23:07 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2018-09-22 1:18 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).