* [igt-dev] [PATCH i-g-t v7] tests/i915/gem_huc_copy: Enable a HuC copy test @ 2020-06-23 18:14 Robert M. Fosha 2020-06-24 4:04 ` [igt-dev] ✓ Fi.CI.IGT: success for tests/i915/gem_huc_copy: Enable a HuC copy test (rev7) Patchwork 0 siblings, 1 reply; 2+ messages in thread From: Robert M. Fosha @ 2020-06-23 18:14 UTC (permalink / raw) To: igt-dev; +Cc: Chris Wilson, Sally Qi From: Sally Qi <feng.qi@intel.com> This test case loads the HuC copy firmware to copy the content of the source buffer to the destination buffer. v2: (Tony Ye) * Restructured some functions and files. * Defined the copy buffer size as 4K explicitly as the HuC Copy kernel always copy 4K bytes from src buffer to dst buffer. v3: (Feng Qi, Antonio Argenziano, Tony Ye) * Restructured some functions as igt requested, exclude libdrm function call. * Remove huc function wrappers * Random initialize source input buffer v4: (Robert Fosha) * Fix autotools build failure. v5: (Feng Qi, Tony Ye) * Released all bo buffer after huc copying. * Restructured huc_copy() function. v6: (Feng Qi) * Fixed the function of huc enabling and status check * Added huc_copy to fast feedback testlist v7: (Tony Ye, Feng Qi, Robert Fosha, Chris Wilson, Michal Wajdeczko) * Check error with HUC_STATUS ioctl instead of debugfs v8: (Antonio Argenziano) * Remove unnecessary variable. * Add huc_load subtest. * Move failure checks out of igt_fixture. * get_huc_status() returns errno and then status as a parameter v9: (Antonio Argenziano) * Remove huc_load subtest - to be added later. Signed-off-by: Feng Qi <feng.qi@intel.com> Signed-off-by: Tony Ye <tony.ye@intel.com> Cc: Michal Wajdeczko <michal.wajdeczko@intel.com> Cc: Chris Wilson <chris@chris-wilson.co.uk> Acked-by: Antonio Argenziano <antonio.argenziano@intel.com> --- lib/Makefile.sources | 2 + lib/huc_copy.c | 106 ++++++++++++++++++++ lib/huc_copy.h | 49 ++++++++++ lib/intel_batchbuffer.c | 20 ++++ lib/intel_batchbuffer.h | 18 ++++ lib/meson.build | 1 + tests/Makefile.sources | 3 + tests/i915/gem_huc_copy.c | 135 ++++++++++++++++++++++++++ tests/intel-ci/fast-feedback.testlist | 2 + tests/meson.build | 1 + 10 files changed, 337 insertions(+) create mode 100644 lib/huc_copy.c create mode 100644 lib/huc_copy.h create mode 100644 tests/i915/gem_huc_copy.c diff --git a/lib/Makefile.sources b/lib/Makefile.sources index 00374c97..464f5be2 100644 --- a/lib/Makefile.sources +++ b/lib/Makefile.sources @@ -90,6 +90,8 @@ lib_source_list = \ ioctl_wrappers.h \ media_fill.c \ media_fill.h \ + huc_copy.c \ + huc_copy.h \ media_spin.h \ media_spin.c \ gpgpu_fill.h \ diff --git a/lib/huc_copy.c b/lib/huc_copy.c new file mode 100644 index 00000000..bc98b1f9 --- /dev/null +++ b/lib/huc_copy.c @@ -0,0 +1,106 @@ +/* + * Copyright © 2019 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 <i915_drm.h> +#include "huc_copy.h" + +static void +gen9_emit_huc_virtual_addr_state(struct drm_i915_gem_exec_object2 *src, + struct drm_i915_gem_exec_object2 *dst, + struct drm_i915_gem_relocation_entry *reloc_src, + struct drm_i915_gem_relocation_entry *reloc_dst, + uint32_t *buf, + int *i) +{ + buf[(*i)++] = HUC_VIRTUAL_ADDR_STATE; + + for (int j = 0; j < HUC_VIRTUAL_ADDR_REGION_NUM; j++) { + if (j == HUC_VIRTUAL_ADDR_REGION_SRC) { + buf[(*i)++] = src->offset; + + reloc_src->target_handle = src->handle; + reloc_src->delta = 0; + reloc_src->offset = (*i - 1) * sizeof(buf[0]); + reloc_src->read_domains = 0; + reloc_src->write_domain = 0; + } else if (j == HUC_VIRTUAL_ADDR_REGION_DST) { + buf[(*i)++] = dst->offset; + + reloc_dst->target_handle = dst->handle; + reloc_dst->delta = 0; + reloc_dst->offset = (*i - 1) * sizeof(buf[0]); + reloc_dst->read_domains = 0; + reloc_dst->write_domain = I915_GEM_DOMAIN_RENDER; + } else { + buf[(*i)++] = 0; + } + buf[(*i)++] = 0; + buf[(*i)++] = 0; + } +} + +void +gen9_huc_copyfunc(int fd, + struct drm_i915_gem_exec_object2 *obj) +{ + struct drm_i915_gem_relocation_entry reloc[2]; + struct drm_i915_gem_execbuffer2 execbuf; + int i = 0; + uint32_t buf[63]; + + /* load huc kernel */ + buf[i++] = HUC_IMEM_STATE; + buf[i++] = 0; + buf[i++] = 0; + buf[i++] = 0; + buf[i++] = 0x3; + + buf[i++] = MFX_WAIT; + buf[i++] = MFX_WAIT; + + buf[i++] = HUC_PIPE_MODE_SELECT; + buf[i++] = 0; + buf[i++] = 0; + + buf[i++] = MFX_WAIT; + + memset(reloc, 0, sizeof(reloc)); + gen9_emit_huc_virtual_addr_state(&obj[0], &obj[1], &reloc[0], &reloc[1], buf, &i); + + buf[i++] = HUC_START; + buf[i++] = 1; + + buf[i++] = MI_BATCH_BUFFER_END; + + gem_write(fd, obj[2].handle, 0, buf, sizeof(buf)); + obj[2].relocation_count = 2; + obj[2].relocs_ptr = to_user_pointer(reloc); + + memset(&execbuf, 0, sizeof(execbuf)); + execbuf.buffers_ptr = to_user_pointer(obj); + execbuf.buffer_count = 3; + execbuf.flags = I915_EXEC_BSD; + + gem_execbuf(fd, &execbuf); +} diff --git a/lib/huc_copy.h b/lib/huc_copy.h new file mode 100644 index 00000000..ac31d800 --- /dev/null +++ b/lib/huc_copy.h @@ -0,0 +1,49 @@ +/* + * Copyright © 2019 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. + * + */ + +#ifndef HUC_COPY_H +#define HUC_COPY_H + +#include <stdint.h> +#include <string.h> +#include "ioctl_wrappers.h" +#include "intel_reg.h" + +#define PARALLEL_VIDEO_PIPE (0x3<<29) +#define MFX_WAIT (PARALLEL_VIDEO_PIPE|(0x1<<27)|(0x1<<8)) + +#define HUC_IMEM_STATE (PARALLEL_VIDEO_PIPE|(0x2<<27)|(0xb<<23)|(0x1<<16)|0x3) +#define HUC_PIPE_MODE_SELECT (PARALLEL_VIDEO_PIPE|(0x2<<27)|(0xb<<23)|0x1) +#define HUC_START (PARALLEL_VIDEO_PIPE|(0x2<<27)|(0xb<<23)|(0x21<<16)) +#define HUC_VIRTUAL_ADDR_STATE (PARALLEL_VIDEO_PIPE|(0x2<<27)|(0xb<<23)|(0x4<<16)|0x2f) + +#define HUC_VIRTUAL_ADDR_REGION_NUM 16 +#define HUC_VIRTUAL_ADDR_REGION_SRC 0 +#define HUC_VIRTUAL_ADDR_REGION_DST 14 + +void +gen9_huc_copyfunc(int fd, + struct drm_i915_gem_exec_object2 *obj); + +#endif /* HUC_COPY_H */ diff --git a/lib/intel_batchbuffer.c b/lib/intel_batchbuffer.c index 2a882627..808d3b5a 100644 --- a/lib/intel_batchbuffer.c +++ b/lib/intel_batchbuffer.c @@ -48,6 +48,7 @@ #include "igt_aux.h" #include "igt_rand.h" #include "i830_reg.h" +#include "huc_copy.h" #include <i915_drm.h> @@ -1711,3 +1712,22 @@ bool intel_bb_object_offset_to_buf(struct intel_bb *ibb, struct intel_buf *buf) return true; } + +/** + * igt_get_huc_copyfunc: + * @devid: pci device id + * + * Returns: + * + * The platform-specific huc copy function pointer for the device specified + * with @devid. Will return NULL when no media spin function is implemented. + */ +igt_huc_copyfunc_t igt_get_huc_copyfunc(int devid) +{ + igt_huc_copyfunc_t copy = NULL; + + if (IS_GEN12(devid) || IS_GEN11(devid) || IS_GEN9(devid)) + copy = gen9_huc_copyfunc; + + return copy; +} diff --git a/lib/intel_batchbuffer.h b/lib/intel_batchbuffer.h index 0649fc22..68db0281 100644 --- a/lib/intel_batchbuffer.h +++ b/lib/intel_batchbuffer.h @@ -529,4 +529,22 @@ void intel_bb_exec_with_context(struct intel_bb *ibb, uint32_t end_offset, uint64_t intel_bb_get_object_offset(struct intel_bb *ibb, uint32_t handle); bool intel_bb_object_offset_to_buf(struct intel_bb *ibb, struct intel_buf *buf); +/** + * igt_huc_copyfunc_t: + * @fd: drm fd + * @obj: drm_i915_gem_exec_object2 buffer array + * obj[0] is source buffer + * obj[1] is destination buffer + * obj[2] is execution buffer + * + * This is the type of the per-platform huc copy functions. + * + * The huc copy function emits a batchbuffer to the VDBOX engine to + * invoke the HuC Copy kernel to copy 4K bytes from the source buffer + * to the destination buffer. + */ +typedef void (*igt_huc_copyfunc_t)(int fd, + struct drm_i915_gem_exec_object2 *obj); + +igt_huc_copyfunc_t igt_get_huc_copyfunc(int devid); #endif diff --git a/lib/meson.build b/lib/meson.build index 6c71ae3d..341696e5 100644 --- a/lib/meson.build +++ b/lib/meson.build @@ -1,5 +1,6 @@ lib_sources = [ 'drmtest.c', + 'huc_copy.c', 'i915/gem.c', 'i915/gem_context.c', 'i915/gem_engine_topology.c', diff --git a/tests/Makefile.sources b/tests/Makefile.sources index af900bcf..7ee0b765 100644 --- a/tests/Makefile.sources +++ b/tests/Makefile.sources @@ -323,6 +323,9 @@ gem_media_fill_SOURCES = i915/gem_media_fill.c TESTS_progs += gem_media_vme gem_media_vme_SOURCES = i915/gem_media_vme.c +TESTS_progs += gem_huc_copy +gem_huc_copy_SOURCES = i915/gem_huc_copy.c + TESTS_progs += gem_mmap gem_mmap_SOURCES = i915/gem_mmap.c diff --git a/tests/i915/gem_huc_copy.c b/tests/i915/gem_huc_copy.c new file mode 100644 index 00000000..5954d34e --- /dev/null +++ b/tests/i915/gem_huc_copy.c @@ -0,0 +1,135 @@ +/* + * Copyright © 2019 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 <stdbool.h> +#include <unistd.h> +#include <stdlib.h> +#include <sys/ioctl.h> +#include <stdio.h> +#include <string.h> +#include <fcntl.h> +#include <inttypes.h> +#include <errno.h> +#include <sys/stat.h> +#include <sys/time.h> +#include "drm.h" +#include "i915/gem.h" + +IGT_TEST_DESCRIPTION("A very simple workload for the HuC."); + +#define HUC_COPY_DATA_BUF_SIZE 4096 + +static void +compare_huc_copy_result(int drm_fd, uint32_t src_handle, uint32_t dst_handle) +{ + char src_output[HUC_COPY_DATA_BUF_SIZE]; + char dst_output[HUC_COPY_DATA_BUF_SIZE]; + + gem_read(drm_fd, src_handle, 0, src_output, HUC_COPY_DATA_BUF_SIZE); + gem_read(drm_fd, dst_handle, 0, dst_output, HUC_COPY_DATA_BUF_SIZE); + + for (int i = 0; i < HUC_COPY_DATA_BUF_SIZE; i++) + igt_assert_f(src_output[i] == dst_output[i], + "Exepected %c, found %c at %4d.\n", + src_output[i], dst_output[i], i); +} + +static int get_huc_status(int fd, int *status) +{ + drm_i915_getparam_t gp = { + .param = I915_PARAM_HUC_STATUS, + .value = status, + }; + + if (igt_ioctl(fd, DRM_IOCTL_I915_GETPARAM, &gp)) + return -errno; + + errno = 0; + return errno; +} + +static void test_huc_load(int fd) +{ + int err; + int status = 0; + + err = get_huc_status(fd, &status); + igt_skip_on_f(err == -ENODEV, + "HuC is not present on this platform!\n"); + igt_skip_on_f(err == -EOPNOTSUPP, + "HuC firmware is disabled!\n"); + igt_fail_on_f(err < 0, "HuC firmware loading error: %i, %s\n", + -err, strerror(-err)); + igt_fail_on_f(status == 0, "HuC firmware is not running!\n"); +} + +igt_main +{ + int drm_fd = -1; + uint32_t devid; + igt_huc_copyfunc_t huc_copy; + + igt_fixture { + drm_fd = drm_open_driver(DRIVER_INTEL); + igt_require_gem(drm_fd); + devid = intel_get_drm_devid(drm_fd); + huc_copy = igt_get_huc_copyfunc(devid); + + igt_require_f(huc_copy, "no huc_copy function\n"); + } + + igt_describe("Make sure that Huc firmware works" + "by copying a char array using Huc" + "and verifying the copied result"); + + igt_subtest("huc-copy") { + char inputs[HUC_COPY_DATA_BUF_SIZE]; + struct drm_i915_gem_exec_object2 obj[3]; + + test_huc_load(drm_fd); + /* Initialize src buffer randomly */ + srand(time(NULL)); + for (int i = 0; i < HUC_COPY_DATA_BUF_SIZE; i++) + inputs[i] = (char) (rand() % 256); + + memset(obj, 0, sizeof(obj)); + /* source buffer object for storing input */ + obj[0].handle = gem_create(drm_fd, HUC_COPY_DATA_BUF_SIZE); + /* destination buffer object to receive input */ + obj[1].handle = gem_create(drm_fd, HUC_COPY_DATA_BUF_SIZE); + /* execution buffer object */ + obj[2].handle = gem_create(drm_fd, 4096); + + gem_write(drm_fd, obj[0].handle, 0, inputs, HUC_COPY_DATA_BUF_SIZE); + + huc_copy(drm_fd, obj); + compare_huc_copy_result(drm_fd, obj[0].handle, obj[1].handle); + + gem_close(drm_fd, obj[0].handle); + gem_close(drm_fd, obj[1].handle); + gem_close(drm_fd, obj[2].handle); + } + + igt_fixture + close(drm_fd); +} diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist index 04f6affc..b23a884d 100644 --- a/tests/intel-ci/fast-feedback.testlist +++ b/tests/intel-ci/fast-feedback.testlist @@ -28,6 +28,8 @@ igt@gem_flink_basic@bad-open igt@gem_flink_basic@basic igt@gem_flink_basic@double-flink igt@gem_flink_basic@flink-lifetime +igt@gem_huc_copy@huc_copy +igt@gem_huc_copy@huc_load igt@gem_linear_blits@basic igt@gem_mmap@basic igt@gem_mmap_gtt@basic diff --git a/tests/meson.build b/tests/meson.build index 28091794..156c9577 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -166,6 +166,7 @@ i915_progs = [ 'gem_gtt_cpu_tlb', 'gem_gtt_hog', 'gem_gtt_speed', + 'gem_huc_copy', 'gem_linear_blits', 'gem_lut_handle', 'gem_madvise', -- 2.21.0.5.gaeb582a983 _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply related [flat|nested] 2+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for tests/i915/gem_huc_copy: Enable a HuC copy test (rev7) 2020-06-23 18:14 [igt-dev] [PATCH i-g-t v7] tests/i915/gem_huc_copy: Enable a HuC copy test Robert M. Fosha @ 2020-06-24 4:04 ` Patchwork 0 siblings, 0 replies; 2+ messages in thread From: Patchwork @ 2020-06-24 4:04 UTC (permalink / raw) To: Robert M. Fosha; +Cc: igt-dev == Series Details == Series: tests/i915/gem_huc_copy: Enable a HuC copy test (rev7) URL : https://patchwork.freedesktop.org/series/71194/ State : success == Summary == CI Bug Log - changes from CI_DRM_8658_full -> IGTPW_4697_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4697/index.html Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_4697_full: ### IGT changes ### #### Possible regressions #### * {igt@gem_huc_copy@huc-copy} (NEW): - shard-iclb: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4697/shard-iclb8/igt@gem_huc_copy@huc-copy.html New tests --------- New tests have been introduced between CI_DRM_8658_full and IGTPW_4697_full: ### New IGT tests (1) ### * igt@gem_huc_copy@huc-copy: - Statuses : 1 pass(s) 6 skip(s) - Exec time: [0.0, 0.00] s Known issues ------------ Here are the changes found in IGTPW_4697_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_isolation@preservation-s3@vcs0: - shard-kbl: [PASS][2] -> [DMESG-WARN][3] ([i915#180]) +3 similar issues [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8658/shard-kbl6/igt@gem_ctx_isolation@preservation-s3@vcs0.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4697/shard-kbl7/igt@gem_ctx_isolation@preservation-s3@vcs0.html * igt@gem_eio@in-flight-suspend: - shard-kbl: [PASS][4] -> [INCOMPLETE][5] ([i915#155]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8658/shard-kbl6/igt@gem_eio@in-flight-suspend.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4697/shard-kbl3/igt@gem_eio@in-flight-suspend.html * igt@gem_exec_whisper@basic-fds: - shard-glk: [PASS][6] -> [DMESG-WARN][7] ([i915#118] / [i915#95]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8658/shard-glk5/igt@gem_exec_whisper@basic-fds.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4697/shard-glk7/igt@gem_exec_whisper@basic-fds.html * igt@gem_mmap_offset@bad-object: - shard-tglb: [PASS][8] -> [DMESG-WARN][9] ([i915#402]) +3 similar issues [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8658/shard-tglb8/igt@gem_mmap_offset@bad-object.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4697/shard-tglb6/igt@gem_mmap_offset@bad-object.html * igt@gen9_exec_parse@allowed-single: - shard-glk: [PASS][10] -> [INCOMPLETE][11] ([i915#1436] / [i915#58] / [k.org#198133]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8658/shard-glk5/igt@gen9_exec_parse@allowed-single.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4697/shard-glk7/igt@gen9_exec_parse@allowed-single.html * igt@i915_pm_dc@dc6-psr: - shard-iclb: [PASS][12] -> [FAIL][13] ([i915#1899]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8658/shard-iclb4/igt@i915_pm_dc@dc6-psr.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4697/shard-iclb3/igt@i915_pm_dc@dc6-psr.html * igt@kms_cursor_crc@pipe-a-cursor-64x64-random: - shard-apl: [PASS][14] -> [DMESG-WARN][15] ([i915#1635] / [i915#95]) +31 similar issues [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8658/shard-apl6/igt@kms_cursor_crc@pipe-a-cursor-64x64-random.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4697/shard-apl3/igt@kms_cursor_crc@pipe-a-cursor-64x64-random.html - shard-kbl: [PASS][16] -> [DMESG-FAIL][17] ([i915#54] / [i915#95]) +1 similar issue [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8658/shard-kbl7/igt@kms_cursor_crc@pipe-a-cursor-64x64-random.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4697/shard-kbl1/igt@kms_cursor_crc@pipe-a-cursor-64x64-random.html * igt@kms_cursor_crc@pipe-a-cursor-suspend: - shard-tglb: [PASS][18] -> [INCOMPLETE][19] ([i915#1602] / [i915#456]) +1 similar issue [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8658/shard-tglb3/igt@kms_cursor_crc@pipe-a-cursor-suspend.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4697/shard-tglb1/igt@kms_cursor_crc@pipe-a-cursor-suspend.html * igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a1: - shard-hsw: [PASS][20] -> [INCOMPLETE][21] ([i915#2055]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8658/shard-hsw4/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a1.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4697/shard-hsw4/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a1.html * igt@kms_flip_tiling@flip-changes-tiling-y: - shard-apl: [PASS][22] -> [DMESG-FAIL][23] ([i915#1635] / [i915#95]) +1 similar issue [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8658/shard-apl1/igt@kms_flip_tiling@flip-changes-tiling-y.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4697/shard-apl4/igt@kms_flip_tiling@flip-changes-tiling-y.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render: - shard-kbl: [PASS][24] -> [FAIL][25] ([i915#49]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8658/shard-kbl1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4697/shard-kbl3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html - shard-apl: [PASS][26] -> [DMESG-FAIL][27] ([i915#1635] / [i915#49] / [i915#95]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8658/shard-apl6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4697/shard-apl2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move: - shard-kbl: [PASS][28] -> [DMESG-WARN][29] ([i915#1982]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8658/shard-kbl7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4697/shard-kbl1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render: - shard-kbl: [PASS][30] -> [DMESG-WARN][31] ([i915#93] / [i915#95]) +44 similar issues [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8658/shard-kbl6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4697/shard-kbl7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt: - shard-glk: [PASS][32] -> [FAIL][33] ([i915#49]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8658/shard-glk7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4697/shard-glk8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_setmode@basic: - shard-kbl: [PASS][34] -> [FAIL][35] ([i915#31]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8658/shard-kbl6/igt@kms_setmode@basic.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4697/shard-kbl7/igt@kms_setmode@basic.html * igt@kms_sysfs_edid_timing: - shard-apl: [PASS][36] -> [FAIL][37] ([IGT#2]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8658/shard-apl4/igt@kms_sysfs_edid_timing.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4697/shard-apl4/igt@kms_sysfs_edid_timing.html - shard-kbl: [PASS][38] -> [FAIL][39] ([IGT#2]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8658/shard-kbl3/igt@kms_sysfs_edid_timing.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4697/shard-kbl4/igt@kms_sysfs_edid_timing.html * igt@perf@polling-parameterized: - shard-tglb: [PASS][40] -> [FAIL][41] ([i915#1542]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8658/shard-tglb6/igt@perf@polling-parameterized.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4697/shard-tglb8/igt@perf@polling-parameterized.html * igt@perf_pmu@rc6: - shard-hsw: [PASS][42] -> [TIMEOUT][43] ([i915#1958]) +2 similar issues [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8658/shard-hsw4/igt@perf_pmu@rc6.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4697/shard-hsw1/igt@perf_pmu@rc6.html - shard-snb: [PASS][44] -> [TIMEOUT][45] ([i915#1958]) +2 similar issues [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8658/shard-snb5/igt@perf_pmu@rc6.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4697/shard-snb4/igt@perf_pmu@rc6.html #### Possible fixes #### * igt@gem_exec_create@madvise: - shard-glk: [DMESG-WARN][46] ([i915#118] / [i915#95]) -> [PASS][47] +1 similar issue [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8658/shard-glk1/igt@gem_exec_create@madvise.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4697/shard-glk8/igt@gem_exec_create@madvise.html * igt@gem_exec_reloc@basic-concurrent0: - shard-glk: [FAIL][48] ([i915#1930]) -> [PASS][49] [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8658/shard-glk5/igt@gem_exec_reloc@basic-concurrent0.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4697/shard-glk6/igt@gem_exec_reloc@basic-concurrent0.html * igt@gem_shrink@reclaim: - shard-hsw: [SKIP][50] ([fdo#109271]) -> [PASS][51] [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8658/shard-hsw1/igt@gem_shrink@reclaim.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4697/shard-hsw4/igt@gem_shrink@reclaim.html * igt@gem_userptr_blits@create-destroy-sync: - shard-hsw: [TIMEOUT][52] ([i915#1958]) -> [PASS][53] +2 similar issues [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8658/shard-hsw1/igt@gem_userptr_blits@create-destroy-sync.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4697/shard-hsw1/igt@gem_userptr_blits@create-destroy-sync.html * igt@i915_module_load@reload: - shard-tglb: [DMESG-WARN][54] ([i915#402]) -> [PASS][55] [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8658/shard-tglb5/igt@i915_module_load@reload.html [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4697/shard-tglb6/igt@i915_module_load@reload.html * igt@i915_pm_dc@dc3co-vpb-simulation: - shard-tglb: [SKIP][56] ([i915#1904]) -> [PASS][57] [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8658/shard-tglb6/igt@i915_pm_dc@dc3co-vpb-simulation.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4697/shard-tglb5/igt@i915_pm_dc@dc3co-vpb-simulation.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-kbl: [INCOMPLETE][58] ([i915#151] / [i915#155]) -> [PASS][59] [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8658/shard-kbl4/igt@i915_pm_rpm@system-suspend-execbuf.html [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4697/shard-kbl7/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-kbl: [DMESG-WARN][60] ([i915#180]) -> [PASS][61] +1 similar issue [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8658/shard-kbl4/igt@i915_suspend@fence-restore-tiled2untiled.html [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4697/shard-kbl3/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@kms_big_fb@x-tiled-64bpp-rotate-180: - shard-glk: [DMESG-FAIL][62] ([i915#118] / [i915#95]) -> [PASS][63] [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8658/shard-glk8/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4697/shard-glk1/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html * igt@kms_color@pipe-a-ctm-blue-to-red: - shard-kbl: [DMESG-WARN][64] ([i915#93] / [i915#95]) -> [PASS][65] +34 similar issues [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8658/shard-kbl1/igt@kms_color@pipe-a-ctm-blue-to-red.html [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4697/shard-kbl6/igt@kms_color@pipe-a-ctm-blue-to-red.html * igt@kms_cursor_crc@pipe-a-cursor-64x64-onscreen: - shard-kbl: [DMESG-FAIL][66] ([i915#54] / [i915#95]) -> [PASS][67] +1 similar issue [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8658/shard-kbl7/igt@kms_cursor_crc@pipe-a-cursor-64x64-onscreen.html [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4697/shard-kbl4/igt@kms_cursor_crc@pipe-a-cursor-64x64-onscreen.html * igt@kms_flip_tiling@flip-changes-tiling-yf: - shard-kbl: [DMESG-FAIL][68] ([i915#95]) -> [PASS][69] +1 similar issue [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8658/shard-kbl4/igt@kms_flip_tiling@flip-changes-tiling-yf.html [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4697/shard-kbl3/igt@kms_flip_tiling@flip-changes-tiling-yf.html - shard-apl: [DMESG-FAIL][70] ([i915#1635] / [i915#95]) -> [PASS][71] +2 similar issues [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8658/shard-apl7/igt@kms_flip_tiling@flip-changes-tiling-yf.html [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4697/shard-apl4/igt@kms_flip_tiling@flip-changes-tiling-yf.html * igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary: - shard-iclb: [DMESG-WARN][72] ([i915#1982]) -> [PASS][73] [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8658/shard-iclb3/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4697/shard-iclb3/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html * igt@kms_plane_alpha_blend@pipe-a-constant-alpha-mid: - shard-kbl: [DMESG-FAIL][74] ([fdo#108145] / [i915#95]) -> [PASS][75] [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8658/shard-kbl4/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-mid.html [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4697/shard-kbl3/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-mid.html - shard-apl: [DMESG-FAIL][76] ([fdo#108145] / [i915#1635] / [i915#95]) -> [PASS][77] [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8658/shard-apl3/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-mid.html [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4697/shard-apl4/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-mid.html * igt@kms_universal_plane@universal-plane-gen9-features-pipe-b: - shard-tglb: [DMESG-WARN][78] ([i915#1982]) -> [PASS][79] +1 similar issue [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8658/shard-tglb8/igt@kms_universal_plane@universal-plane-gen9-features-pipe-b.html [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4697/shard-tglb3/igt@kms_universal_plane@universal-plane-gen9-features-pipe-b.html * igt@kms_vblank@pipe-b-ts-continuation-dpms-rpm: - shard-apl: [DMESG-WARN][80] ([i915#1635] / [i915#95]) -> [PASS][81] +30 similar issues [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8658/shard-apl1/igt@kms_vblank@pipe-b-ts-continuation-dpms-rpm.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4697/shard-apl4/igt@kms_vblank@pipe-b-ts-continuation-dpms-rpm.html #### Warnings #### * igt@gem_exec_reloc@basic-concurrent16: - shard-snb: [FAIL][82] ([i915#1930]) -> [TIMEOUT][83] ([i915#1958]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8658/shard-snb2/igt@gem_exec_reloc@basic-concurrent16.html [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4697/shard-snb4/igt@gem_exec_reloc@basic-concurrent16.html * igt@i915_pm_dc@dc6-psr: - shard-tglb: [FAIL][84] ([i915#454]) -> [SKIP][85] ([i915#468]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8658/shard-tglb7/igt@i915_pm_dc@dc6-psr.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4697/shard-tglb2/igt@i915_pm_dc@dc6-psr.html * igt@kms_big_fb@y-tiled-32bpp-rotate-90: - shard-hsw: [TIMEOUT][86] ([i915#1958]) -> [SKIP][87] ([fdo#109271]) +1 similar issue [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8658/shard-hsw1/igt@kms_big_fb@y-tiled-32bpp-rotate-90.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4697/shard-hsw4/igt@kms_big_fb@y-tiled-32bpp-rotate-90.html * igt@kms_color_chamelium@pipe-a-ctm-limited-range: - shard-apl: [SKIP][88] ([fdo#109271] / [fdo#111827] / [i915#1635]) -> [SKIP][89] ([fdo#109271] / [fdo#111827]) +2 similar issues [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8658/shard-apl6/igt@kms_color_chamelium@pipe-a-ctm-limited-range.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4697/shard-apl8/igt@kms_color_chamelium@pipe-a-ctm-limited-range.html * igt@kms_content_protection@atomic: - shard-kbl: [TIMEOUT][90] ([i915#1319] / [i915#1958]) -> [TIMEOUT][91] ([i915#1319]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8658/shard-kbl1/igt@kms_content_protection@atomic.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4697/shard-kbl6/igt@kms_content_protection@atomic.html * igt@kms_content_protection@srm: - shard-apl: [FAIL][92] ([fdo#110321]) -> [DMESG-FAIL][93] ([fdo#110321] / [i915#1635] / [i915#95]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8658/shard-apl1/igt@kms_content_protection@srm.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4697/shard-apl7/igt@kms_content_protection@srm.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-apl: [SKIP][94] ([fdo#109271]) -> [SKIP][95] ([fdo#109271] / [i915#1635]) +19 similar issues [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8658/shard-apl2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4697/shard-apl8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-snb: [SKIP][96] ([fdo#109271]) -> [TIMEOUT][97] ([i915#1958]) +1 similar issue [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8658/shard-snb4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4697/shard-snb4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html - shard-hsw: [SKIP][98] ([fdo#109271]) -> [TIMEOUT][99] ([i915#1958]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8658/shard-hsw4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4697/shard-hsw1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a: - shard-kbl: [DMESG-WARN][100] ([i915#180]) -> [DMESG-FAIL][101] ([i915#95]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8658/shard-kbl1/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4697/shard-kbl7/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html * igt@kms_plane_alpha_blend@pipe-a-alpha-basic: - shard-apl: [FAIL][102] ([fdo#108145] / [i915#265]) -> [DMESG-FAIL][103] ([fdo#108145] / [i915#1635] / [i915#95]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8658/shard-apl7/igt@kms_plane_alpha_blend@pipe-a-alpha-basic.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4697/shard-apl3/igt@kms_plane_alpha_blend@pipe-a-alpha-basic.html * igt@perf@gen12-unprivileged-single-ctx-counters: - shard-apl: [SKIP][104] ([fdo#109271] / [i915#1635]) -> [SKIP][105] ([fdo#109271]) +10 similar issues [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8658/shard-apl7/igt@perf@gen12-unprivileged-single-ctx-counters.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4697/shard-apl1/igt@perf@gen12-unprivileged-single-ctx-counters.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#110321]: https://bugs.freedesktop.org/show_bug.cgi?id=110321 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118 [i915#1319]: https://gitlab.freedesktop.org/drm/intel/issues/1319 [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436 [i915#151]: https://gitlab.freedesktop.org/drm/intel/issues/151 [i915#1542]: https://gitlab.freedesktop.org/drm/intel/issues/1542 [i915#155]: https://gitlab.freedesktop.org/drm/intel/issues/155 [i915#1602]: https://gitlab.freedesktop.org/drm/intel/issues/1602 [i915#1635]: https://gitlab.freedesktop.org/drm/intel/issues/1635 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1899]: https://gitlab.freedesktop.org/drm/intel/issues/1899 [i915#1904]: https://gitlab.freedesktop.org/drm/intel/issues/1904 [i915#1930]: https://gitlab.freedesktop.org/drm/intel/issues/1930 [i915#1958]: https://gitlab.freedesktop.org/drm/intel/issues/1958 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2055]: https://gitlab.freedesktop.org/drm/intel/issues/2055 [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265 [i915#31]: https://gitlab.freedesktop.org/drm/intel/issues/31 [i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#456]: https://gitlab.freedesktop.org/drm/intel/issues/456 [i915#468]: https://gitlab.freedesktop.org/drm/intel/issues/468 [i915#49]: https://gitlab.freedesktop.org/drm/intel/issues/49 [i915#54]: https://gitlab.freedesktop.org/drm/intel/issues/54 [i915#58]: https://gitlab.freedesktop.org/drm/intel/issues/58 [i915#93]: https://gitlab.freedesktop.org/drm/intel/issues/93 [i915#95]: https://gitlab.freedesktop.org/drm/intel/issues/95 [k.org#198133]: https://bugzilla.kernel.org/show_bug.cgi?id=198133 Participating hosts (11 -> 8) ------------------------------ Missing (3): pig-skl-6260u pig-glk-j5005 pig-icl-1065g7 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5717 -> IGTPW_4697 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_8658: c86979e2fe3c106d95b5fcf2075709afa40f0f95 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_4697: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4697/index.html IGT_5717: 725bf2dae51f0087eaa64f1931a2ef9d22f070dd @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4697/index.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2020-06-24 4:04 UTC | newest] Thread overview: 2+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2020-06-23 18:14 [igt-dev] [PATCH i-g-t v7] tests/i915/gem_huc_copy: Enable a HuC copy test Robert M. Fosha 2020-06-24 4:04 ` [igt-dev] ✓ Fi.CI.IGT: success for tests/i915/gem_huc_copy: Enable a HuC copy test (rev7) Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox