All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Revert "drm/i915/tgl: Implement Wa_1406941453"
@ 2019-09-20  8:12 Chris Wilson
  2019-09-20 10:21 ` Chris Wilson
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Chris Wilson @ 2019-09-20  8:12 UTC (permalink / raw)
  To: intel-gfx; +Cc: Lucas De Marchi

Our sanitychecks indicate that while this register is context
saved/restore, the HW does not preserve this bit within the register --
it likely doesn't exist, or one of those mythical bits that the
architects insist does something despite all appearances to the
contrary.

For reference, SAMPLER_MODE is already in i915_reg.h as
GEN10_SAMPLER_MODE and is being setup in icl_ctx_workarounds_init() as
opposed to the chosen location here of rcs_engine_wa_init).

Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=111754
Fixes: 7f0cc34b5349 ("drm/i915/tgl: Implement Wa_1406941453")
Testcase: igt/i915_selftest/live_workarounds
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Cc: Stuart Summers <stuart.summers@intel.com>
Cc: Radhakrishna Sripada <radhakrishna.sripada@intel.com>
Cc: Jani Nikula <jani.nikula@linux.intel.com>
Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
---
 drivers/gpu/drm/i915/gt/intel_workarounds.c | 7 -------
 drivers/gpu/drm/i915/i915_reg.h             | 3 ---
 2 files changed, 10 deletions(-)

diff --git a/drivers/gpu/drm/i915/gt/intel_workarounds.c b/drivers/gpu/drm/i915/gt/intel_workarounds.c
index 25ae60846398..ba65e5018978 100644
--- a/drivers/gpu/drm/i915/gt/intel_workarounds.c
+++ b/drivers/gpu/drm/i915/gt/intel_workarounds.c
@@ -1260,13 +1260,6 @@ rcs_engine_wa_init(struct intel_engine_cs *engine, struct i915_wa_list *wal)
 {
 	struct drm_i915_private *i915 = engine->i915;
 
-	if (IS_GEN(i915, 12)) {
-		/* Wa_1406941453:tgl */
-		wa_masked_en(wal,
-			     SAMPLER_MODE,
-			     SAMPLER_ENABLE_SMALL_PL);
-	}
-
 	if (IS_GEN(i915, 11)) {
 		/* This is not an Wa. Enable for better image quality */
 		wa_masked_en(wal,
diff --git a/drivers/gpu/drm/i915/i915_reg.h b/drivers/gpu/drm/i915/i915_reg.h
index 5e3a6178aff4..f8f52ae6cc6f 100644
--- a/drivers/gpu/drm/i915/i915_reg.h
+++ b/drivers/gpu/drm/i915/i915_reg.h
@@ -8965,9 +8965,6 @@ enum {
 #define   GEN9_DG_MIRROR_FIX_ENABLE	(1 << 5)
 #define   GEN9_CCS_TLB_PREFETCH_ENABLE	(1 << 3)
 
-#define SAMPLER_MODE			_MMIO(0xe18c)
-#define   SAMPLER_ENABLE_SMALL_PL	(1 << 15)
-
 #define GEN8_ROW_CHICKEN		_MMIO(0xe4f0)
 #define   FLOW_CONTROL_ENABLE		(1 << 15)
 #define   PARTIAL_INSTRUCTION_SHOOTDOWN_DISABLE	(1 << 8)
-- 
2.23.0

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] Revert "drm/i915/tgl: Implement Wa_1406941453"
  2019-09-20  8:12 [PATCH] Revert "drm/i915/tgl: Implement Wa_1406941453" Chris Wilson
@ 2019-09-20 10:21 ` Chris Wilson
  2019-09-20 10:58 ` ✓ Fi.CI.BAT: success for " Patchwork
  2019-09-21  0:22 ` ✗ Fi.CI.IGT: failure " Patchwork
  2 siblings, 0 replies; 4+ messages in thread
From: Chris Wilson @ 2019-09-20 10:21 UTC (permalink / raw)
  To: intel-gfx; +Cc: Lucas De Marchi

Quoting Chris Wilson (2019-09-20 09:12:54)
> Our sanitychecks indicate that while this register is context
> saved/restore, the HW does not preserve this bit within the register --
> it likely doesn't exist, or one of those mythical bits that the
> architects insist does something despite all appearances to the
> contrary.
> 
> For reference, SAMPLER_MODE is already in i915_reg.h as
> GEN10_SAMPLER_MODE and is being setup in icl_ctx_workarounds_init() as
> opposed to the chosen location here of rcs_engine_wa_init).
> 
> Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=111754
> Fixes: 7f0cc34b5349 ("drm/i915/tgl: Implement Wa_1406941453")
> Testcase: igt/i915_selftest/live_workarounds
> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
> Cc: Lucas De Marchi <lucas.demarchi@intel.com>
> Cc: Stuart Summers <stuart.summers@intel.com>
> Cc: Radhakrishna Sripada <radhakrishna.sripada@intel.com>
> Cc: Jani Nikula <jani.nikula@linux.intel.com>
> Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>

Lucas said last night in response to the CI error,

"Yes, let's revert until I find out what I should really do."

which I am going to take as a preemptive ack :)
Acked-by: Lucas De Marchi <lucas.demarchi@intel.com>
-Chris
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 4+ messages in thread

* ✓ Fi.CI.BAT: success for Revert "drm/i915/tgl: Implement Wa_1406941453"
  2019-09-20  8:12 [PATCH] Revert "drm/i915/tgl: Implement Wa_1406941453" Chris Wilson
  2019-09-20 10:21 ` Chris Wilson
@ 2019-09-20 10:58 ` Patchwork
  2019-09-21  0:22 ` ✗ Fi.CI.IGT: failure " Patchwork
  2 siblings, 0 replies; 4+ messages in thread
From: Patchwork @ 2019-09-20 10:58 UTC (permalink / raw)
  To: Chris Wilson; +Cc: intel-gfx

== Series Details ==

Series: Revert "drm/i915/tgl: Implement Wa_1406941453"
URL   : https://patchwork.freedesktop.org/series/66986/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_6927 -> Patchwork_14469
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14469/

Known issues
------------

  Here are the changes found in Patchwork_14469 that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_frontbuffer_tracking@basic:
    - fi-icl-u3:          [PASS][1] -> [FAIL][2] ([fdo#103167])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6927/fi-icl-u3/igt@kms_frontbuffer_tracking@basic.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14469/fi-icl-u3/igt@kms_frontbuffer_tracking@basic.html

  
#### Possible fixes ####

  * igt@gem_ctx_create@basic-files:
    - {fi-icl-guc}:       [INCOMPLETE][3] ([fdo#107713] / [fdo#109100]) -> [PASS][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6927/fi-icl-guc/igt@gem_ctx_create@basic-files.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14469/fi-icl-guc/igt@gem_ctx_create@basic-files.html
    - {fi-tgl-u2}:        [INCOMPLETE][5] ([fdo#111735]) -> [PASS][6]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6927/fi-tgl-u2/igt@gem_ctx_create@basic-files.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14469/fi-tgl-u2/igt@gem_ctx_create@basic-files.html
    - {fi-icl-dsi}:       [INCOMPLETE][7] ([fdo#107713] / [fdo#109100]) -> [PASS][8]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6927/fi-icl-dsi/igt@gem_ctx_create@basic-files.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14469/fi-icl-dsi/igt@gem_ctx_create@basic-files.html

  * igt@gem_ctx_switch@legacy-render:
    - fi-apl-guc:         [INCOMPLETE][9] ([fdo#103927] / [fdo#111381]) -> [PASS][10]
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6927/fi-apl-guc/igt@gem_ctx_switch@legacy-render.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14469/fi-apl-guc/igt@gem_ctx_switch@legacy-render.html

  * igt@gem_exec_reloc@basic-gtt-read:
    - fi-icl-u3:          [DMESG-WARN][11] ([fdo#107724]) -> [PASS][12] +1 similar issue
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6927/fi-icl-u3/igt@gem_exec_reloc@basic-gtt-read.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14469/fi-icl-u3/igt@gem_exec_reloc@basic-gtt-read.html

  * igt@i915_selftest@live_workarounds:
    - {fi-tgl-u}:         [DMESG-FAIL][13] ([fdo#111754]) -> [PASS][14]
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6927/fi-tgl-u/igt@i915_selftest@live_workarounds.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14469/fi-tgl-u/igt@i915_selftest@live_workarounds.html

  * igt@kms_chamelium@common-hpd-after-suspend:
    - fi-skl-6700k2:      [FAIL][15] ([fdo#111191]) -> [PASS][16]
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6927/fi-skl-6700k2/igt@kms_chamelium@common-hpd-after-suspend.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14469/fi-skl-6700k2/igt@kms_chamelium@common-hpd-after-suspend.html

  * igt@kms_chamelium@hdmi-crc-fast:
    - fi-skl-6700k2:      [FAIL][17] ([fdo#111190]) -> [PASS][18] +1 similar issue
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6927/fi-skl-6700k2/igt@kms_chamelium@hdmi-crc-fast.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14469/fi-skl-6700k2/igt@kms_chamelium@hdmi-crc-fast.html

  * igt@kms_chamelium@hdmi-hpd-fast:
    - fi-skl-6700k2:      [FAIL][19] -> [PASS][20]
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6927/fi-skl-6700k2/igt@kms_chamelium@hdmi-hpd-fast.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14469/fi-skl-6700k2/igt@kms_chamelium@hdmi-hpd-fast.html

  
#### Warnings ####

  * igt@kms_chamelium@hdmi-hpd-fast:
    - fi-kbl-7500u:       [FAIL][21] ([fdo#111096]) -> [FAIL][22] ([fdo#111407])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6927/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14469/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.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#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927
  [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
  [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724
  [fdo#109100]: https://bugs.freedesktop.org/show_bug.cgi?id=109100
  [fdo#111096]: https://bugs.freedesktop.org/show_bug.cgi?id=111096
  [fdo#111190]: https://bugs.freedesktop.org/show_bug.cgi?id=111190
  [fdo#111191]: https://bugs.freedesktop.org/show_bug.cgi?id=111191
  [fdo#111381]: https://bugs.freedesktop.org/show_bug.cgi?id=111381
  [fdo#111407]: https://bugs.freedesktop.org/show_bug.cgi?id=111407
  [fdo#111735]: https://bugs.freedesktop.org/show_bug.cgi?id=111735
  [fdo#111754]: https://bugs.freedesktop.org/show_bug.cgi?id=111754


Participating hosts (54 -> 45)
------------------------------

  Missing    (9): fi-kbl-soraka fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-pnv-d510 fi-icl-y fi-byt-clapper fi-bdw-samus 


Build changes
-------------

  * CI: CI-20190529 -> None
  * Linux: CI_DRM_6927 -> Patchwork_14469

  CI-20190529: 20190529
  CI_DRM_6927: b660b150f46c5ed8606bc15ef8f70a937db868ab @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_5193: 924e5c59dbb82938e743efd6b0812eeb5760b70d @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
  Patchwork_14469: 09a86850474ee121ce57550ddc8016f5ddc463b3 @ git://anongit.freedesktop.org/gfx-ci/linux


== Linux commits ==

09a86850474e Revert "drm/i915/tgl: Implement Wa_1406941453"

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14469/index.html
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 4+ messages in thread

* ✗ Fi.CI.IGT: failure for Revert "drm/i915/tgl: Implement Wa_1406941453"
  2019-09-20  8:12 [PATCH] Revert "drm/i915/tgl: Implement Wa_1406941453" Chris Wilson
  2019-09-20 10:21 ` Chris Wilson
  2019-09-20 10:58 ` ✓ Fi.CI.BAT: success for " Patchwork
@ 2019-09-21  0:22 ` Patchwork
  2 siblings, 0 replies; 4+ messages in thread
From: Patchwork @ 2019-09-21  0:22 UTC (permalink / raw)
  To: Chris Wilson; +Cc: intel-gfx

== Series Details ==

Series: Revert "drm/i915/tgl: Implement Wa_1406941453"
URL   : https://patchwork.freedesktop.org/series/66986/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_6927_full -> Patchwork_14469_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with Patchwork_14469_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in Patchwork_14469_full, please notify your bug team to allow them
  to document this new failure mode, which will reduce false positives in CI.

  

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in Patchwork_14469_full:

### IGT changes ###

#### Possible regressions ####

  * igt@kms_vblank@pipe-b-ts-continuation-suspend:
    - shard-iclb:         NOTRUN -> [DMESG-WARN][1]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14469/shard-iclb3/igt@kms_vblank@pipe-b-ts-continuation-suspend.html

  
Known issues
------------

  Here are the changes found in Patchwork_14469_full that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@gem_exec_balancer@smoke:
    - shard-iclb:         [PASS][2] -> [SKIP][3] ([fdo#110854])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6927/shard-iclb4/igt@gem_exec_balancer@smoke.html
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14469/shard-iclb3/igt@gem_exec_balancer@smoke.html

  * igt@gem_exec_schedule@preempt-other-chain-bsd:
    - shard-iclb:         [PASS][4] -> [SKIP][5] ([fdo#111325]) +5 similar issues
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6927/shard-iclb5/igt@gem_exec_schedule@preempt-other-chain-bsd.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14469/shard-iclb4/igt@gem_exec_schedule@preempt-other-chain-bsd.html

  * igt@gem_exec_schedule@preempt-queue-bsd1:
    - shard-iclb:         [PASS][6] -> [SKIP][7] ([fdo#109276]) +17 similar issues
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6927/shard-iclb1/igt@gem_exec_schedule@preempt-queue-bsd1.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14469/shard-iclb8/igt@gem_exec_schedule@preempt-queue-bsd1.html

  * igt@i915_pm_rc6_residency@rc6-accuracy:
    - shard-kbl:          [PASS][8] -> [SKIP][9] ([fdo#109271])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6927/shard-kbl3/igt@i915_pm_rc6_residency@rc6-accuracy.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14469/shard-kbl2/igt@i915_pm_rc6_residency@rc6-accuracy.html

  * igt@i915_pm_rpm@universal-planes-dpms:
    - shard-apl:          [PASS][10] -> [INCOMPLETE][11] ([fdo#103927]) +4 similar issues
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6927/shard-apl6/igt@i915_pm_rpm@universal-planes-dpms.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14469/shard-apl4/igt@i915_pm_rpm@universal-planes-dpms.html

  * igt@i915_selftest@live_gem_contexts:
    - shard-hsw:          [PASS][12] -> [DMESG-FAIL][13] ([fdo#111692])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6927/shard-hsw4/igt@i915_selftest@live_gem_contexts.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14469/shard-hsw6/igt@i915_selftest@live_gem_contexts.html

  * igt@i915_suspend@fence-restore-tiled2untiled:
    - shard-apl:          [PASS][14] -> [DMESG-WARN][15] ([fdo#108566]) +5 similar issues
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6927/shard-apl2/igt@i915_suspend@fence-restore-tiled2untiled.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14469/shard-apl4/igt@i915_suspend@fence-restore-tiled2untiled.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic:
    - shard-skl:          [PASS][16] -> [FAIL][17] ([fdo#102670])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6927/shard-skl9/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14469/shard-skl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html

  * igt@kms_flip@2x-flip-vs-fences-interruptible:
    - shard-hsw:          [PASS][18] -> [DMESG-WARN][19] ([fdo#102614])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6927/shard-hsw6/igt@kms_flip@2x-flip-vs-fences-interruptible.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14469/shard-hsw5/igt@kms_flip@2x-flip-vs-fences-interruptible.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt:
    - shard-iclb:         [PASS][20] -> [FAIL][21] ([fdo#103167]) +5 similar issues
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6927/shard-iclb6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14469/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html

  * igt@kms_pipe_crc_basic@read-crc-pipe-c-frame-sequence:
    - shard-skl:          [PASS][22] -> [FAIL][23] ([fdo#103191])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6927/shard-skl3/igt@kms_pipe_crc_basic@read-crc-pipe-c-frame-sequence.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14469/shard-skl6/igt@kms_pipe_crc_basic@read-crc-pipe-c-frame-sequence.html

  * igt@kms_psr@psr2_suspend:
    - shard-iclb:         [PASS][24] -> [SKIP][25] ([fdo#109441])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6927/shard-iclb2/igt@kms_psr@psr2_suspend.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14469/shard-iclb1/igt@kms_psr@psr2_suspend.html

  * igt@kms_rotation_crc@multiplane-rotation-cropping-top:
    - shard-skl:          [PASS][26] -> [DMESG-WARN][27] ([fdo#106107])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6927/shard-skl6/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14469/shard-skl3/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html

  * igt@perf@polling:
    - shard-skl:          [PASS][28] -> [FAIL][29] ([fdo#110728])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6927/shard-skl1/igt@perf@polling.html
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14469/shard-skl5/igt@perf@polling.html

  * igt@perf_pmu@busy-no-semaphores-bcs0:
    - shard-hsw:          [PASS][30] -> [DMESG-WARN][31] ([fdo#111626])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6927/shard-hsw5/igt@perf_pmu@busy-no-semaphores-bcs0.html
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14469/shard-hsw6/igt@perf_pmu@busy-no-semaphores-bcs0.html

  
#### Possible fixes ####

  * igt@gem_exec_schedule@reorder-wide-bsd:
    - shard-iclb:         [SKIP][32] ([fdo#111325]) -> [PASS][33] +4 similar issues
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6927/shard-iclb4/igt@gem_exec_schedule@reorder-wide-bsd.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14469/shard-iclb3/igt@gem_exec_schedule@reorder-wide-bsd.html

  * igt@gem_mmap_gtt@hang:
    - shard-iclb:         [FAIL][34] ([fdo#109677]) -> [PASS][35]
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6927/shard-iclb2/igt@gem_mmap_gtt@hang.html
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14469/shard-iclb8/igt@gem_mmap_gtt@hang.html

  * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
    - shard-hsw:          [FAIL][36] ([fdo#105767]) -> [PASS][37]
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6927/shard-hsw4/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14469/shard-hsw4/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html

  * igt@kms_flip@flip-vs-expired-vblank:
    - shard-skl:          [FAIL][38] ([fdo#105363]) -> [PASS][39]
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6927/shard-skl7/igt@kms_flip@flip-vs-expired-vblank.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14469/shard-skl6/igt@kms_flip@flip-vs-expired-vblank.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-hsw:          [INCOMPLETE][40] ([fdo#103540]) -> [PASS][41]
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6927/shard-hsw6/igt@kms_flip@flip-vs-suspend.html
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14469/shard-hsw4/igt@kms_flip@flip-vs-suspend.html
    - shard-kbl:          [FAIL][42] ([fdo#103375]) -> [PASS][43]
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6927/shard-kbl1/igt@kms_flip@flip-vs-suspend.html
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14469/shard-kbl4/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite:
    - shard-iclb:         [FAIL][44] ([fdo#103167]) -> [PASS][45] +3 similar issues
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6927/shard-iclb8/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14469/shard-iclb1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbc-suspend:
    - shard-apl:          [DMESG-WARN][46] ([fdo#108566]) -> [PASS][47] +4 similar issues
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6927/shard-apl3/igt@kms_frontbuffer_tracking@fbc-suspend.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14469/shard-apl2/igt@kms_frontbuffer_tracking@fbc-suspend.html

  * igt@kms_plane_alpha_blend@pipe-c-coverage-7efc:
    - shard-skl:          [FAIL][48] ([fdo#108145] / [fdo#110403]) -> [PASS][49] +1 similar issue
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6927/shard-skl2/igt@kms_plane_alpha_blend@pipe-c-coverage-7efc.html
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14469/shard-skl2/igt@kms_plane_alpha_blend@pipe-c-coverage-7efc.html

  * igt@kms_psr2_su@page_flip:
    - shard-iclb:         [SKIP][50] ([fdo#109642] / [fdo#111068]) -> [PASS][51]
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6927/shard-iclb4/igt@kms_psr2_su@page_flip.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14469/shard-iclb2/igt@kms_psr2_su@page_flip.html

  * igt@kms_psr@psr2_basic:
    - shard-iclb:         [SKIP][52] ([fdo#109441]) -> [PASS][53] +2 similar issues
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6927/shard-iclb4/igt@kms_psr@psr2_basic.html
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14469/shard-iclb2/igt@kms_psr@psr2_basic.html

  * igt@kms_setmode@basic:
    - shard-apl:          [FAIL][54] ([fdo#99912]) -> [PASS][55]
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6927/shard-apl8/igt@kms_setmode@basic.html
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14469/shard-apl7/igt@kms_setmode@basic.html

  * igt@prime_vgem@fence-wait-bsd2:
    - shard-iclb:         [SKIP][56] ([fdo#109276]) -> [PASS][57] +12 similar issues
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6927/shard-iclb8/igt@prime_vgem@fence-wait-bsd2.html
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14469/shard-iclb1/igt@prime_vgem@fence-wait-bsd2.html

  
#### Warnings ####

  * igt@gem_ctx_isolation@vcs1-s3:
    - shard-iclb:         [DMESG-WARN][58] -> [SKIP][59] ([fdo#109276])
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6927/shard-iclb4/igt@gem_ctx_isolation@vcs1-s3.html
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14469/shard-iclb3/igt@gem_ctx_isolation@vcs1-s3.html

  * igt@gem_mocs_settings@mocs-isolation-bsd2:
    - shard-iclb:         [SKIP][60] ([fdo#109276]) -> [FAIL][61] ([fdo#111330])
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6927/shard-iclb5/igt@gem_mocs_settings@mocs-isolation-bsd2.html
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14469/shard-iclb4/igt@gem_mocs_settings@mocs-isolation-bsd2.html

  * igt@gem_mocs_settings@mocs-settings-bsd2:
    - shard-iclb:         [FAIL][62] ([fdo#111330]) -> [SKIP][63] ([fdo#109276])
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6927/shard-iclb4/igt@gem_mocs_settings@mocs-settings-bsd2.html
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14469/shard-iclb3/igt@gem_mocs_settings@mocs-settings-bsd2.html

  
  [fdo#102614]: https://bugs.freedesktop.org/show_bug.cgi?id=102614
  [fdo#102670]: https://bugs.freedesktop.org/show_bug.cgi?id=102670
  [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
  [fdo#103191]: https://bugs.freedesktop.org/show_bug.cgi?id=103191
  [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
  [fdo#103540]: https://bugs.freedesktop.org/show_bug.cgi?id=103540
  [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927
  [fdo#105363]: https://bugs.freedesktop.org/show_bug.cgi?id=105363
  [fdo#105767]: https://bugs.freedesktop.org/show_bug.cgi?id=105767
  [fdo#106107]: https://bugs.freedesktop.org/show_bug.cgi?id=106107
  [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
  [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
  [fdo#109677]: https://bugs.freedesktop.org/show_bug.cgi?id=109677
  [fdo#110403]: https://bugs.freedesktop.org/show_bug.cgi?id=110403
  [fdo#110728]: https://bugs.freedesktop.org/show_bug.cgi?id=110728
  [fdo#110854]: https://bugs.freedesktop.org/show_bug.cgi?id=110854
  [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
  [fdo#111325]: https://bugs.freedesktop.org/show_bug.cgi?id=111325
  [fdo#111330]: https://bugs.freedesktop.org/show_bug.cgi?id=111330
  [fdo#111626]: https://bugs.freedesktop.org/show_bug.cgi?id=111626
  [fdo#111692]: https://bugs.freedesktop.org/show_bug.cgi?id=111692
  [fdo#99912]: https://bugs.freedesktop.org/show_bug.cgi?id=99912


Participating hosts (9 -> 9)
------------------------------

  No changes in participating hosts


Build changes
-------------

  * CI: CI-20190529 -> None
  * Linux: CI_DRM_6927 -> Patchwork_14469

  CI-20190529: 20190529
  CI_DRM_6927: b660b150f46c5ed8606bc15ef8f70a937db868ab @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_5193: 924e5c59dbb82938e743efd6b0812eeb5760b70d @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
  Patchwork_14469: 09a86850474ee121ce57550ddc8016f5ddc463b3 @ git://anongit.freedesktop.org/gfx-ci/linux
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14469/
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-09-21  0:22 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-09-20  8:12 [PATCH] Revert "drm/i915/tgl: Implement Wa_1406941453" Chris Wilson
2019-09-20 10:21 ` Chris Wilson
2019-09-20 10:58 ` ✓ Fi.CI.BAT: success for " Patchwork
2019-09-21  0:22 ` ✗ Fi.CI.IGT: failure " Patchwork

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.