* [Intel-gfx] [PATCH i-g-t] i915/gem_workarounds: Mix and match SRM with mmio reads
@ 2019-05-29 21:13 Chris Wilson
2019-05-29 22:08 ` [igt-dev] ✗ Fi.CI.BAT: failure for " Patchwork
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Chris Wilson @ 2019-05-29 21:13 UTC (permalink / raw)
To: intel-gfx; +Cc: igt-dev
On apl, mmio reads fail, reading 0.
On cml, SRM reads fail, reading 0.
Combine both approaches, starting with SRM and fixing in the blanks with
mmio reads.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Matthew Auld <matthew.william.auld@gmail.com>
Cc: Mika Kuoppala <mika.kuoppala@linux.intel.com>
---
tests/i915/gem_workarounds.c | 70 ++++++++++++++++++++++++++++++++----
1 file changed, 63 insertions(+), 7 deletions(-)
diff --git a/tests/i915/gem_workarounds.c b/tests/i915/gem_workarounds.c
index f78dfd00b..403863c0b 100644
--- a/tests/i915/gem_workarounds.c
+++ b/tests/i915/gem_workarounds.c
@@ -80,11 +80,59 @@ static bool write_only(const uint32_t addr)
return false;
}
+#define MI_STORE_REGISTER_MEM (0x24 << 23)
+
static int workaround_fail_count(int i915, uint32_t ctx)
{
+ struct drm_i915_gem_exec_object2 obj[2];
+ struct drm_i915_gem_relocation_entry *reloc;
+ struct drm_i915_gem_execbuffer2 execbuf;
+ uint32_t result_sz, batch_sz;
+ uint32_t *base, *out;
igt_spin_t *spin;
int fw, fail = 0;
+ reloc = calloc(num_wa_regs, sizeof(*reloc));
+ igt_assert(reloc);
+
+ result_sz = 4 * num_wa_regs;
+ result_sz = PAGE_ALIGN(result_sz);
+
+ batch_sz = 16 * num_wa_regs + 4;
+ batch_sz = PAGE_ALIGN(batch_sz);
+
+ memset(obj, 0, sizeof(obj));
+ obj[0].handle = gem_create(i915, result_sz);
+ gem_set_caching(i915, obj[0].handle, I915_CACHING_CACHED);
+ obj[1].handle = gem_create(i915, batch_sz);
+ obj[1].relocs_ptr = to_user_pointer(reloc);
+ obj[1].relocation_count = num_wa_regs;
+
+ out = base =
+ gem_mmap__cpu(i915, obj[1].handle, 0, batch_sz, PROT_WRITE);
+ for (int i = 0; i < num_wa_regs; i++) {
+ *out++ = MI_STORE_REGISTER_MEM | ((gen >= 8 ? 4 : 2) - 2);
+ *out++ = wa_regs[i].addr;
+ reloc[i].target_handle = obj[0].handle;
+ reloc[i].offset = (out - base) * sizeof(*out);
+ reloc[i].delta = i * sizeof(uint32_t);
+ reloc[i].read_domains = I915_GEM_DOMAIN_INSTRUCTION;
+ reloc[i].write_domain = I915_GEM_DOMAIN_INSTRUCTION;
+ *out++ = reloc[i].delta;
+ if (gen >= 8)
+ *out++ = 0;
+ }
+ *out++ = MI_BATCH_BUFFER_END;
+ munmap(base, batch_sz);
+
+ memset(&execbuf, 0, sizeof(execbuf));
+ execbuf.buffers_ptr = to_user_pointer(obj);
+ execbuf.buffer_count = 2;
+ execbuf.rsvd1 = ctx;
+ gem_execbuf(i915, &execbuf);
+
+ gem_set_domain(i915, obj[0].handle, I915_GEM_DOMAIN_CPU, 0);
+
spin = igt_spin_new(i915, .ctx = ctx, .flags = IGT_SPIN_POLL_RUN);
igt_spin_busywait_until_started(spin);
@@ -92,20 +140,23 @@ static int workaround_fail_count(int i915, uint32_t ctx)
if (fw < 0)
igt_debug("Unable to obtain i915_user_forcewake!\n");
+ igt_debug("Address\tval\t\tmask\t\tread\t\tresult\n");
+
+ out = gem_mmap__cpu(i915, obj[0].handle, 0, result_sz, PROT_READ);
for (int i = 0; i < num_wa_regs; i++) {
- const uint32_t value =
- *(uint32_t *)(igt_global_mmio + wa_regs[i].addr);
- const bool ok =
- (wa_regs[i].value & wa_regs[i].mask) ==
- (value & wa_regs[i].mask);
char buf[80];
snprintf(buf, sizeof(buf),
"0x%05X\t0x%08X\t0x%08X\t0x%08X",
wa_regs[i].addr, wa_regs[i].value, wa_regs[i].mask,
- value);
+ out[i]);
+
+ /* If the SRM failed, fill in the result using mmio */
+ if (out[i] == 0)
+ out[i] = *(volatile uint32_t *)(igt_global_mmio + wa_regs[i].addr);
- if (ok) {
+ if ((wa_regs[i].value & wa_regs[i].mask) ==
+ (out[i] & wa_regs[i].mask)) {
igt_debug("%s\tOK\n", buf);
} else if (write_only(wa_regs[i].addr)) {
igt_debug("%s\tIGNORED (w/o)\n", buf);
@@ -114,10 +165,15 @@ static int workaround_fail_count(int i915, uint32_t ctx)
fail++;
}
}
+ munmap(out, result_sz);
close(fw);
igt_spin_free(i915, spin);
+ gem_close(i915, obj[1].handle);
+ gem_close(i915, obj[0].handle);
+ free(reloc);
+
return fail;
}
--
2.20.1
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [igt-dev] ✗ Fi.CI.BAT: failure for i915/gem_workarounds: Mix and match SRM with mmio reads
2019-05-29 21:13 [Intel-gfx] [PATCH i-g-t] i915/gem_workarounds: Mix and match SRM with mmio reads Chris Wilson
@ 2019-05-29 22:08 ` Patchwork
2019-05-30 10:39 ` [igt-dev] [PATCH i-g-t] " Matthew Auld
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2019-05-29 22:08 UTC (permalink / raw)
To: Chris Wilson; +Cc: igt-dev
== Series Details ==
Series: i915/gem_workarounds: Mix and match SRM with mmio reads
URL : https://patchwork.freedesktop.org/series/61353/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_6166 -> IGTPW_3077
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_3077 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_3077, 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/61353/revisions/1/mbox/
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_3077:
### IGT changes ###
#### Possible regressions ####
* igt@i915_selftest@live_execlists:
- fi-icl-u2: NOTRUN -> [DMESG-WARN][1] +1 similar issue
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3077/fi-icl-u2/igt@i915_selftest@live_execlists.html
#### Warnings ####
* igt@i915_selftest@live_hangcheck:
- fi-icl-u2: [INCOMPLETE][2] ([fdo#107713] / [fdo#108569]) -> [DMESG-WARN][3]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6166/fi-icl-u2/igt@i915_selftest@live_hangcheck.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3077/fi-icl-u2/igt@i915_selftest@live_hangcheck.html
Known issues
------------
Here are the changes found in IGTPW_3077 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_mmap@basic-small-bo:
- fi-icl-u3: [PASS][4] -> [DMESG-WARN][5] ([fdo#107724]) +1 similar issue
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6166/fi-icl-u3/igt@gem_mmap@basic-small-bo.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3077/fi-icl-u3/igt@gem_mmap@basic-small-bo.html
#### Possible fixes ####
* igt@gem_ctx_create@basic-files:
- {fi-icl-guc}: [INCOMPLETE][6] ([fdo#107713] / [fdo#109100]) -> [PASS][7]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6166/fi-icl-guc/igt@gem_ctx_create@basic-files.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3077/fi-icl-guc/igt@gem_ctx_create@basic-files.html
* igt@gem_exec_suspend@basic-s3:
- {fi-apl-guc}: [DMESG-WARN][8] ([fdo#108566]) -> [PASS][9]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6166/fi-apl-guc/igt@gem_exec_suspend@basic-s3.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3077/fi-apl-guc/igt@gem_exec_suspend@basic-s3.html
* igt@gem_workarounds@basic-read:
- {fi-apl-guc}: [FAIL][10] ([fdo#110544]) -> [PASS][11]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6166/fi-apl-guc/igt@gem_workarounds@basic-read.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3077/fi-apl-guc/igt@gem_workarounds@basic-read.html
* igt@i915_selftest@live_contexts:
- fi-bdw-gvtdvm: [DMESG-FAIL][12] ([fdo#110235]) -> [PASS][13]
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6166/fi-bdw-gvtdvm/igt@i915_selftest@live_contexts.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3077/fi-bdw-gvtdvm/igt@i915_selftest@live_contexts.html
* {igt@i915_selftest@live_reset}:
- fi-skl-iommu: [INCOMPLETE][14] ([fdo#108602]) -> [PASS][15]
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6166/fi-skl-iommu/igt@i915_selftest@live_reset.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3077/fi-skl-iommu/igt@i915_selftest@live_reset.html
* igt@kms_frontbuffer_tracking@basic:
- {fi-icl-dsi}: [FAIL][16] ([fdo#103167]) -> [PASS][17]
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6166/fi-icl-dsi/igt@kms_frontbuffer_tracking@basic.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3077/fi-icl-dsi/igt@kms_frontbuffer_tracking@basic.html
#### Warnings ####
* igt@i915_selftest@live_hangcheck:
- fi-icl-u3: [DMESG-WARN][18] -> [INCOMPLETE][19] ([fdo#107713] / [fdo#108569])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6166/fi-icl-u3/igt@i915_selftest@live_hangcheck.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3077/fi-icl-u3/igt@i915_selftest@live_hangcheck.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
[fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
[fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724
[fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566
[fdo#108569]: https://bugs.freedesktop.org/show_bug.cgi?id=108569
[fdo#108602]: https://bugs.freedesktop.org/show_bug.cgi?id=108602
[fdo#109100]: https://bugs.freedesktop.org/show_bug.cgi?id=109100
[fdo#110235]: https://bugs.freedesktop.org/show_bug.cgi?id=110235
[fdo#110544]: https://bugs.freedesktop.org/show_bug.cgi?id=110544
Participating hosts (50 -> 44)
------------------------------
Missing (6): fi-ilk-m540 fi-byt-squawks fi-bsw-cyan fi-icl-y fi-byt-clapper fi-bdw-samus
Build changes
-------------
* IGT: IGT_5024 -> IGTPW_3077
CI_DRM_6166: 0bd6fdd57b1e01b228ba81fea2b3e9fc381b3298 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_3077: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3077/
IGT_5024: f414756be2ac57e194919973da7b86644ba61241 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3077/
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] i915/gem_workarounds: Mix and match SRM with mmio reads
2019-05-29 21:13 [Intel-gfx] [PATCH i-g-t] i915/gem_workarounds: Mix and match SRM with mmio reads Chris Wilson
2019-05-29 22:08 ` [igt-dev] ✗ Fi.CI.BAT: failure for " Patchwork
@ 2019-05-30 10:39 ` Matthew Auld
2019-05-31 7:33 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2019-05-31 15:14 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Matthew Auld @ 2019-05-30 10:39 UTC (permalink / raw)
To: Chris Wilson; +Cc: igt-dev, Intel Graphics Development
On Wed, 29 May 2019 at 22:14, Chris Wilson <chris@chris-wilson.co.uk> wrote:
>
> On apl, mmio reads fail, reading 0.
> On cml, SRM reads fail, reading 0.
>
> Combine both approaches, starting with SRM and fixing in the blanks with
> mmio reads.
>
> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
> Cc: Matthew Auld <matthew.william.auld@gmail.com>
> Cc: Mika Kuoppala <mika.kuoppala@linux.intel.com>
Reviewed-by: Matthew Auld <matthew.william.auld@gmail.com>
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for i915/gem_workarounds: Mix and match SRM with mmio reads
2019-05-29 21:13 [Intel-gfx] [PATCH i-g-t] i915/gem_workarounds: Mix and match SRM with mmio reads Chris Wilson
2019-05-29 22:08 ` [igt-dev] ✗ Fi.CI.BAT: failure for " Patchwork
2019-05-30 10:39 ` [igt-dev] [PATCH i-g-t] " Matthew Auld
@ 2019-05-31 7:33 ` Patchwork
2019-05-31 15:14 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2019-05-31 7:33 UTC (permalink / raw)
To: Chris Wilson; +Cc: igt-dev
== Series Details ==
Series: i915/gem_workarounds: Mix and match SRM with mmio reads
URL : https://patchwork.freedesktop.org/series/61353/
State : success
== Summary ==
CI Bug Log - changes from IGT_5024 -> IGTPW_3077
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://patchwork.freedesktop.org/api/1.0/series/61353/revisions/1/mbox/
Known issues
------------
Here are the changes found in IGTPW_3077 that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@gem_workarounds@basic-read:
- {fi-apl-guc}: [FAIL][1] ([fdo#110544]) -> [PASS][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5024/fi-apl-guc/igt@gem_workarounds@basic-read.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3077/fi-apl-guc/igt@gem_workarounds@basic-read.html
#### Warnings ####
* igt@i915_pm_rpm@basic-pci-d3-state:
- fi-pnv-d510: [INCOMPLETE][3] ([fdo#110740]) -> [SKIP][4] ([fdo#109271])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5024/fi-pnv-d510/igt@i915_pm_rpm@basic-pci-d3-state.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3077/fi-pnv-d510/igt@i915_pm_rpm@basic-pci-d3-state.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#110544]: https://bugs.freedesktop.org/show_bug.cgi?id=110544
[fdo#110740]: https://bugs.freedesktop.org/show_bug.cgi?id=110740
Participating hosts (46 -> 44)
------------------------------
Additional (5): fi-skl-guc fi-icl-u2 fi-icl-u3 fi-icl-guc fi-icl-dsi
Missing (7): fi-kbl-soraka fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-cfl-8109u fi-byt-clapper fi-bdw-samus
Build changes
-------------
* IGT: IGT_5024 -> IGTPW_3077
* Linux: CI_DRM_6160 -> CI_DRM_6166
CI_DRM_6160: 43905c26d4fd15cba890e62f271befc0eca8de4c @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_6166: 0bd6fdd57b1e01b228ba81fea2b3e9fc381b3298 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_3077: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3077/
IGT_5024: f414756be2ac57e194919973da7b86644ba61241 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3077/
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for i915/gem_workarounds: Mix and match SRM with mmio reads
2019-05-29 21:13 [Intel-gfx] [PATCH i-g-t] i915/gem_workarounds: Mix and match SRM with mmio reads Chris Wilson
` (2 preceding siblings ...)
2019-05-31 7:33 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
@ 2019-05-31 15:14 ` Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2019-05-31 15:14 UTC (permalink / raw)
To: Chris Wilson; +Cc: igt-dev
== Series Details ==
Series: i915/gem_workarounds: Mix and match SRM with mmio reads
URL : https://patchwork.freedesktop.org/series/61353/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_6166_full -> IGTPW_3077_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_3077_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_3077_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/61353/revisions/1/mbox/
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_3077_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_color@pipe-a-ctm-max:
- shard-kbl: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6166/shard-kbl1/igt@kms_color@pipe-a-ctm-max.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3077/shard-kbl2/igt@kms_color@pipe-a-ctm-max.html
- shard-apl: [PASS][3] -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6166/shard-apl3/igt@kms_color@pipe-a-ctm-max.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3077/shard-apl3/igt@kms_color@pipe-a-ctm-max.html
Known issues
------------
Here are the changes found in IGTPW_3077_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@drm_read@short-buffer-wakeup:
- shard-hsw: [PASS][5] -> [INCOMPLETE][6] ([fdo#103540])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6166/shard-hsw1/igt@drm_read@short-buffer-wakeup.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3077/shard-hsw1/igt@drm_read@short-buffer-wakeup.html
* igt@gem_pwrite@big-gtt-backwards:
- shard-glk: [PASS][7] -> [INCOMPLETE][8] ([fdo#103359] / [k.org#198133])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6166/shard-glk6/igt@gem_pwrite@big-gtt-backwards.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3077/shard-glk5/igt@gem_pwrite@big-gtt-backwards.html
- shard-apl: [PASS][9] -> [INCOMPLETE][10] ([fdo#103927])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6166/shard-apl4/igt@gem_pwrite@big-gtt-backwards.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3077/shard-apl2/igt@gem_pwrite@big-gtt-backwards.html
* igt@gem_tiled_swapping@non-threaded:
- shard-glk: [PASS][11] -> [DMESG-WARN][12] ([fdo#108686])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6166/shard-glk9/igt@gem_tiled_swapping@non-threaded.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3077/shard-glk5/igt@gem_tiled_swapping@non-threaded.html
* igt@i915_suspend@fence-restore-untiled:
- shard-apl: [PASS][13] -> [DMESG-WARN][14] ([fdo#108566]) +3 similar issues
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6166/shard-apl5/igt@i915_suspend@fence-restore-untiled.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3077/shard-apl2/igt@i915_suspend@fence-restore-untiled.html
* igt@kms_busy@extended-modeset-hang-newfb-with-reset-render-a:
- shard-iclb: [PASS][15] -> [INCOMPLETE][16] ([fdo#107713])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6166/shard-iclb3/igt@kms_busy@extended-modeset-hang-newfb-with-reset-render-a.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3077/shard-iclb7/igt@kms_busy@extended-modeset-hang-newfb-with-reset-render-a.html
* igt@kms_color@pipe-b-ctm-0-25:
- shard-kbl: [PASS][17] -> [INCOMPLETE][18] ([fdo#103665])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6166/shard-kbl7/igt@kms_color@pipe-b-ctm-0-25.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3077/shard-kbl6/igt@kms_color@pipe-b-ctm-0-25.html
* igt@kms_cursor_crc@pipe-b-cursor-128x128-sliding:
- shard-kbl: [PASS][19] -> [FAIL][20] ([fdo#103232])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6166/shard-kbl2/igt@kms_cursor_crc@pipe-b-cursor-128x128-sliding.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3077/shard-kbl1/igt@kms_cursor_crc@pipe-b-cursor-128x128-sliding.html
- shard-apl: [PASS][21] -> [FAIL][22] ([fdo#103232])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6166/shard-apl5/igt@kms_cursor_crc@pipe-b-cursor-128x128-sliding.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3077/shard-apl3/igt@kms_cursor_crc@pipe-b-cursor-128x128-sliding.html
* igt@kms_cursor_crc@pipe-c-cursor-suspend:
- shard-kbl: [PASS][23] -> [DMESG-WARN][24] ([fdo#108566])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6166/shard-kbl6/igt@kms_cursor_crc@pipe-c-cursor-suspend.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3077/shard-kbl6/igt@kms_cursor_crc@pipe-c-cursor-suspend.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render:
- shard-iclb: [PASS][25] -> [FAIL][26] ([fdo#103167]) +3 similar issues
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6166/shard-iclb3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3077/shard-iclb5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt:
- shard-glk: [PASS][27] -> [FAIL][28] ([fdo#103167])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6166/shard-glk5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3077/shard-glk9/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html
- shard-apl: [PASS][29] -> [FAIL][30] ([fdo#103167])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6166/shard-apl8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3077/shard-apl5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html
- shard-kbl: [PASS][31] -> [FAIL][32] ([fdo#103167])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6166/shard-kbl6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3077/shard-kbl7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite:
- shard-hsw: [PASS][33] -> [SKIP][34] ([fdo#109271]) +14 similar issues
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6166/shard-hsw4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3077/shard-hsw1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_psr@psr2_cursor_mmap_cpu:
- shard-iclb: [PASS][35] -> [SKIP][36] ([fdo#109441]) +1 similar issue
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6166/shard-iclb2/igt@kms_psr@psr2_cursor_mmap_cpu.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3077/shard-iclb5/igt@kms_psr@psr2_cursor_mmap_cpu.html
* igt@kms_setmode@basic:
- shard-hsw: [PASS][37] -> [FAIL][38] ([fdo#99912])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6166/shard-hsw1/igt@kms_setmode@basic.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3077/shard-hsw7/igt@kms_setmode@basic.html
- shard-kbl: [PASS][39] -> [FAIL][40] ([fdo#99912])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6166/shard-kbl1/igt@kms_setmode@basic.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3077/shard-kbl4/igt@kms_setmode@basic.html
* igt@kms_sysfs_edid_timing:
- shard-glk: [PASS][41] -> [FAIL][42] ([fdo#100047])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6166/shard-glk3/igt@kms_sysfs_edid_timing.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3077/shard-glk5/igt@kms_sysfs_edid_timing.html
#### Possible fixes ####
* igt@drm_read@short-buffer-block:
- shard-apl: [INCOMPLETE][43] ([fdo#103927]) -> [PASS][44]
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6166/shard-apl4/igt@drm_read@short-buffer-block.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3077/shard-apl6/igt@drm_read@short-buffer-block.html
* igt@gem_ctx_isolation@vecs0-s3:
- shard-kbl: [DMESG-WARN][45] ([fdo#108566]) -> [PASS][46] +1 similar issue
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6166/shard-kbl6/igt@gem_ctx_isolation@vecs0-s3.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3077/shard-kbl2/igt@gem_ctx_isolation@vecs0-s3.html
* igt@gem_workarounds@suspend-resume:
- shard-apl: [FAIL][47] ([fdo#110544]) -> [PASS][48] +8 similar issues
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6166/shard-apl5/igt@gem_workarounds@suspend-resume.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3077/shard-apl2/igt@gem_workarounds@suspend-resume.html
* igt@i915_pm_rc6_residency@rc6-accuracy:
- shard-kbl: [SKIP][49] ([fdo#109271]) -> [PASS][50]
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6166/shard-kbl1/igt@i915_pm_rc6_residency@rc6-accuracy.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3077/shard-kbl2/igt@i915_pm_rc6_residency@rc6-accuracy.html
- shard-snb: [SKIP][51] ([fdo#109271]) -> [PASS][52]
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6166/shard-snb1/igt@i915_pm_rc6_residency@rc6-accuracy.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3077/shard-snb4/igt@i915_pm_rc6_residency@rc6-accuracy.html
* igt@i915_suspend@debugfs-reader:
- shard-apl: [DMESG-WARN][53] ([fdo#108566]) -> [PASS][54] +10 similar issues
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6166/shard-apl5/igt@i915_suspend@debugfs-reader.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3077/shard-apl6/igt@i915_suspend@debugfs-reader.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
- shard-hsw: [SKIP][55] ([fdo#109271]) -> [PASS][56] +33 similar issues
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6166/shard-hsw1/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3077/shard-hsw5/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite:
- shard-iclb: [FAIL][57] ([fdo#103167]) -> [PASS][58] +5 similar issues
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6166/shard-iclb4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite.html
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3077/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_psr@psr2_cursor_blt:
- shard-iclb: [SKIP][59] ([fdo#109441]) -> [PASS][60] +1 similar issue
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6166/shard-iclb6/igt@kms_psr@psr2_cursor_blt.html
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3077/shard-iclb2/igt@kms_psr@psr2_cursor_blt.html
* igt@tools_test@tools_test:
- shard-apl: [SKIP][61] ([fdo#109271]) -> [PASS][62]
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6166/shard-apl5/igt@tools_test@tools_test.html
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3077/shard-apl8/igt@tools_test@tools_test.html
#### Warnings ####
* igt@gem_mmap_gtt@forked-big-copy-xy:
- shard-iclb: [TIMEOUT][63] ([fdo#109673]) -> [INCOMPLETE][64] ([fdo#107713] / [fdo#109100]) +1 similar issue
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6166/shard-iclb3/igt@gem_mmap_gtt@forked-big-copy-xy.html
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3077/shard-iclb2/igt@gem_mmap_gtt@forked-big-copy-xy.html
[fdo#100047]: https://bugs.freedesktop.org/show_bug.cgi?id=100047
[fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
[fdo#103232]: https://bugs.freedesktop.org/show_bug.cgi?id=103232
[fdo#103359]: https://bugs.freedesktop.org/show_bug.cgi?id=103359
[fdo#103540]: https://bugs.freedesktop.org/show_bug.cgi?id=103540
[fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665
[fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927
[fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
[fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566
[fdo#108686]: https://bugs.freedesktop.org/show_bug.cgi?id=108686
[fdo#109100]: https://bugs.freedesktop.org/show_bug.cgi?id=109100
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
[fdo#109673]: https://bugs.freedesktop.org/show_bug.cgi?id=109673
[fdo#110544]: https://bugs.freedesktop.org/show_bug.cgi?id=110544
[fdo#99912]: https://bugs.freedesktop.org/show_bug.cgi?id=99912
[k.org#198133]: https://bugzilla.kernel.org/show_bug.cgi?id=198133
Participating hosts (10 -> 6)
------------------------------
Missing (4): pig-skl-6260u shard-skl pig-hsw-4770r pig-glk-j5005
Build changes
-------------
* IGT: IGT_5024 -> IGTPW_3077
* Piglit: piglit_4509 -> None
CI_DRM_6166: 0bd6fdd57b1e01b228ba81fea2b3e9fc381b3298 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_3077: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3077/
IGT_5024: f414756be2ac57e194919973da7b86644ba61241 @ 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_3077/
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2019-05-31 15:14 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-05-29 21:13 [Intel-gfx] [PATCH i-g-t] i915/gem_workarounds: Mix and match SRM with mmio reads Chris Wilson
2019-05-29 22:08 ` [igt-dev] ✗ Fi.CI.BAT: failure for " Patchwork
2019-05-30 10:39 ` [igt-dev] [PATCH i-g-t] " Matthew Auld
2019-05-31 7:33 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2019-05-31 15:14 ` [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