* [Intel-gfx] [PATCH CI] drm/i915/display: Program DBUF_CTL tracker state service
@ 2020-10-19 17:39 José Roberto de Souza
2020-10-19 18:12 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/display: Program DBUF_CTL tracker state service (rev2) Patchwork
2020-10-19 20:50 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
0 siblings, 2 replies; 4+ messages in thread
From: José Roberto de Souza @ 2020-10-19 17:39 UTC (permalink / raw)
To: intel-gfx
This sequence is not part of "Sequences to Initialize Display" but
as noted in the MBus page the DBUF_CTL.Tracker_state_service needs
to be set to 8.
BSpec: 49213
Reviewed-by: Matt Roper <matthew.d.roper@intel.com>
Signed-off-by: José Roberto de Souza <jose.souza@intel.com>
---
drivers/gpu/drm/i915/display/intel_display_power.c | 14 ++++++++++++++
drivers/gpu/drm/i915/i915_reg.h | 14 +++++++++-----
2 files changed, 23 insertions(+), 5 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_display_power.c b/drivers/gpu/drm/i915/display/intel_display_power.c
index 45806cfc679a..b64b7767f467 100644
--- a/drivers/gpu/drm/i915/display/intel_display_power.c
+++ b/drivers/gpu/drm/i915/display/intel_display_power.c
@@ -4771,6 +4771,17 @@ static void gen9_dbuf_disable(struct drm_i915_private *dev_priv)
gen9_dbuf_slices_update(dev_priv, 0);
}
+static void gen12_dbuf_slices_config(struct drm_i915_private *dev_priv)
+{
+ const int num_slices = INTEL_INFO(dev_priv)->num_supported_dbuf_slices;
+ enum dbuf_slice slice;
+
+ for (slice = DBUF_S1; slice < (DBUF_S1 + num_slices); slice++)
+ intel_de_rmw(dev_priv, DBUF_CTL_S(slice),
+ DBUF_TRACKER_STATE_SERVICE_MASK,
+ DBUF_TRACKER_STATE_SERVICE(8));
+}
+
static void icl_mbus_init(struct drm_i915_private *dev_priv)
{
unsigned long abox_regs = INTEL_INFO(dev_priv)->abox_mask;
@@ -5340,6 +5351,9 @@ static void icl_display_core_init(struct drm_i915_private *dev_priv,
/* 4. Enable CDCLK. */
intel_cdclk_init_hw(dev_priv);
+ if (INTEL_GEN(dev_priv) >= 12)
+ gen12_dbuf_slices_config(dev_priv);
+
/* 5. Enable DBUF. */
gen9_dbuf_enable(dev_priv);
diff --git a/drivers/gpu/drm/i915/i915_reg.h b/drivers/gpu/drm/i915/i915_reg.h
index 6d97e6286c2d..c38901e2f81c 100644
--- a/drivers/gpu/drm/i915/i915_reg.h
+++ b/drivers/gpu/drm/i915/i915_reg.h
@@ -7927,11 +7927,15 @@ enum {
#define DISP_ARB_CTL2 _MMIO(0x45004)
#define DISP_DATA_PARTITION_5_6 (1 << 6)
#define DISP_IPC_ENABLE (1 << 3)
-#define _DBUF_CTL_S1 0x45008
-#define _DBUF_CTL_S2 0x44FE8
-#define DBUF_CTL_S(slice) _MMIO(_PICK_EVEN(slice, _DBUF_CTL_S1, _DBUF_CTL_S2))
-#define DBUF_POWER_REQUEST (1 << 31)
-#define DBUF_POWER_STATE (1 << 30)
+
+#define _DBUF_CTL_S1 0x45008
+#define _DBUF_CTL_S2 0x44FE8
+#define DBUF_CTL_S(slice) _MMIO(_PICK_EVEN(slice, _DBUF_CTL_S1, _DBUF_CTL_S2))
+#define DBUF_POWER_REQUEST REG_BIT(31)
+#define DBUF_POWER_STATE REG_BIT(30)
+#define DBUF_TRACKER_STATE_SERVICE_MASK REG_GENMASK(23, 19)
+#define DBUF_TRACKER_STATE_SERVICE(x) REG_FIELD_PREP(DBUF_TRACKER_STATE_SERVICE_MASK, x)
+
#define GEN7_MSG_CTL _MMIO(0x45010)
#define WAIT_FOR_PCH_RESET_ACK (1 << 1)
#define WAIT_FOR_PCH_FLR_ACK (1 << 0)
--
2.28.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
* [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/display: Program DBUF_CTL tracker state service (rev2)
2020-10-19 17:39 [Intel-gfx] [PATCH CI] drm/i915/display: Program DBUF_CTL tracker state service José Roberto de Souza
@ 2020-10-19 18:12 ` Patchwork
2020-10-19 20:50 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
1 sibling, 0 replies; 4+ messages in thread
From: Patchwork @ 2020-10-19 18:12 UTC (permalink / raw)
To: José Roberto de Souza; +Cc: intel-gfx
[-- Attachment #1.1: Type: text/plain, Size: 4593 bytes --]
== Series Details ==
Series: drm/i915/display: Program DBUF_CTL tracker state service (rev2)
URL : https://patchwork.freedesktop.org/series/82785/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_9163 -> Patchwork_18734
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18734/index.html
Known issues
------------
Here are the changes found in Patchwork_18734 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- fi-icl-u2: [PASS][1] -> [DMESG-WARN][2] ([i915#1982])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9163/fi-icl-u2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18734/fi-icl-u2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- fi-bsw-kefka: [PASS][3] -> [DMESG-WARN][4] ([i915#1982])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9163/fi-bsw-kefka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18734/fi-bsw-kefka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
#### Possible fixes ####
* igt@i915_module_load@reload:
- {fi-tgl-dsi}: [DMESG-WARN][5] ([i915#1982] / [k.org#205379]) -> [PASS][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9163/fi-tgl-dsi/igt@i915_module_load@reload.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18734/fi-tgl-dsi/igt@i915_module_load@reload.html
* igt@kms_chamelium@dp-crc-fast:
- fi-kbl-7500u: [FAIL][7] ([i915#1161] / [i915#262]) -> [PASS][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9163/fi-kbl-7500u/igt@kms_chamelium@dp-crc-fast.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18734/fi-kbl-7500u/igt@kms_chamelium@dp-crc-fast.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- fi-byt-j1900: [DMESG-WARN][9] ([i915#1982]) -> [PASS][10] +1 similar issue
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9163/fi-byt-j1900/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18734/fi-byt-j1900/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- fi-icl-u2: [DMESG-WARN][11] ([i915#1982]) -> [PASS][12] +1 similar issue
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9163/fi-icl-u2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18734/fi-icl-u2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-a:
- {fi-tgl-dsi}: [DMESG-WARN][13] ([i915#402]) -> [PASS][14]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9163/fi-tgl-dsi/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-a.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18734/fi-tgl-dsi/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-a.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#1161]: https://gitlab.freedesktop.org/drm/intel/issues/1161
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#262]: https://gitlab.freedesktop.org/drm/intel/issues/262
[i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402
[k.org#205379]: https://bugzilla.kernel.org/show_bug.cgi?id=205379
Participating hosts (45 -> 40)
------------------------------
Additional (1): fi-blb-e6850
Missing (6): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-byt-clapper fi-bdw-samus
Build changes
-------------
* Linux: CI_DRM_9163 -> Patchwork_18734
CI-20190529: 20190529
CI_DRM_9163: e984f8cbd92765a305dd322240278e0f69dbae38 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_5822: b4bcf05cb9839037128905deda7146434155cc41 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
Patchwork_18734: b959aff59ea2daf6f140ce442c03217736d80fc1 @ git://anongit.freedesktop.org/gfx-ci/linux
== Linux commits ==
b959aff59ea2 drm/i915/display: Program DBUF_CTL tracker state service
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18734/index.html
[-- Attachment #1.2: Type: text/html, Size: 5639 bytes --]
[-- Attachment #2: Type: text/plain, Size: 160 bytes --]
_______________________________________________
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
* [Intel-gfx] ✗ Fi.CI.IGT: failure for drm/i915/display: Program DBUF_CTL tracker state service (rev2)
2020-10-19 17:39 [Intel-gfx] [PATCH CI] drm/i915/display: Program DBUF_CTL tracker state service José Roberto de Souza
2020-10-19 18:12 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/display: Program DBUF_CTL tracker state service (rev2) Patchwork
@ 2020-10-19 20:50 ` Patchwork
2020-10-20 0:25 ` Souza, Jose
1 sibling, 1 reply; 4+ messages in thread
From: Patchwork @ 2020-10-19 20:50 UTC (permalink / raw)
To: Souza, Jose; +Cc: intel-gfx
[-- Attachment #1.1: Type: text/plain, Size: 16380 bytes --]
== Series Details ==
Series: drm/i915/display: Program DBUF_CTL tracker state service (rev2)
URL : https://patchwork.freedesktop.org/series/82785/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_9163_full -> Patchwork_18734_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_18734_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_18734_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_18734_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_exec_whisper@basic-queues-priority-all:
- shard-glk: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9163/shard-glk8/igt@gem_exec_whisper@basic-queues-priority-all.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18734/shard-glk1/igt@gem_exec_whisper@basic-queues-priority-all.html
#### Warnings ####
* igt@core_hotunplug@hotrebind-lateclose:
- shard-hsw: [WARN][3] ([i915#2283]) -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9163/shard-hsw2/igt@core_hotunplug@hotrebind-lateclose.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18734/shard-hsw6/igt@core_hotunplug@hotrebind-lateclose.html
Known issues
------------
Here are the changes found in Patchwork_18734_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_ctx_create@basic:
- shard-iclb: [PASS][5] -> [DMESG-WARN][6] ([i915#1982])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9163/shard-iclb2/igt@gem_ctx_create@basic.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18734/shard-iclb2/igt@gem_ctx_create@basic.html
* igt@gem_exec_reloc@basic-many-active@vecs0:
- shard-glk: [PASS][7] -> [FAIL][8] ([i915#2389]) +2 similar issues
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9163/shard-glk2/igt@gem_exec_reloc@basic-many-active@vecs0.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18734/shard-glk8/igt@gem_exec_reloc@basic-many-active@vecs0.html
* igt@gem_exec_whisper@basic-queues-forked:
- shard-glk: [PASS][9] -> [DMESG-WARN][10] ([i915#118] / [i915#95])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9163/shard-glk6/igt@gem_exec_whisper@basic-queues-forked.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18734/shard-glk3/igt@gem_exec_whisper@basic-queues-forked.html
* igt@gem_userptr_blits@sync-unmap-cycles:
- shard-skl: [PASS][11] -> [TIMEOUT][12] ([i915#2424])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9163/shard-skl10/igt@gem_userptr_blits@sync-unmap-cycles.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18734/shard-skl9/igt@gem_userptr_blits@sync-unmap-cycles.html
* igt@i915_pm_dc@dc6-psr:
- shard-skl: [PASS][13] -> [FAIL][14] ([i915#454])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9163/shard-skl4/igt@i915_pm_dc@dc6-psr.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18734/shard-skl1/igt@i915_pm_dc@dc6-psr.html
* igt@kms_big_fb@linear-32bpp-rotate-180:
- shard-glk: [PASS][15] -> [DMESG-FAIL][16] ([i915#118] / [i915#95])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9163/shard-glk3/igt@kms_big_fb@linear-32bpp-rotate-180.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18734/shard-glk3/igt@kms_big_fb@linear-32bpp-rotate-180.html
* igt@kms_cursor_edge_walk@pipe-b-256x256-right-edge:
- shard-skl: [PASS][17] -> [DMESG-WARN][18] ([i915#1982]) +7 similar issues
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9163/shard-skl5/igt@kms_cursor_edge_walk@pipe-b-256x256-right-edge.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18734/shard-skl2/igt@kms_cursor_edge_walk@pipe-b-256x256-right-edge.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1:
- shard-skl: [PASS][19] -> [FAIL][20] ([i915#2122])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9163/shard-skl9/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18734/shard-skl7/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-skl: [PASS][21] -> [FAIL][22] ([i915#79])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9163/shard-skl9/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18734/shard-skl7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_frontbuffer_tracking@fbc-stridechange:
- shard-glk: [PASS][23] -> [DMESG-WARN][24] ([i915#1982])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9163/shard-glk8/igt@kms_frontbuffer_tracking@fbc-stridechange.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18734/shard-glk8/igt@kms_frontbuffer_tracking@fbc-stridechange.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff:
- shard-tglb: [PASS][25] -> [DMESG-WARN][26] ([i915#1982]) +2 similar issues
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9163/shard-tglb3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18734/shard-tglb5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html
* igt@kms_psr@psr2_cursor_plane_onoff:
- shard-iclb: [PASS][27] -> [SKIP][28] ([fdo#109441]) +1 similar issue
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9163/shard-iclb2/igt@kms_psr@psr2_cursor_plane_onoff.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18734/shard-iclb4/igt@kms_psr@psr2_cursor_plane_onoff.html
* igt@kms_universal_plane@universal-plane-gen9-features-pipe-a:
- shard-kbl: [PASS][29] -> [DMESG-WARN][30] ([i915#1982]) +1 similar issue
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9163/shard-kbl1/igt@kms_universal_plane@universal-plane-gen9-features-pipe-a.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18734/shard-kbl1/igt@kms_universal_plane@universal-plane-gen9-features-pipe-a.html
* igt@perf@polling-parameterized:
- shard-iclb: [PASS][31] -> [FAIL][32] ([i915#1542])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9163/shard-iclb5/igt@perf@polling-parameterized.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18734/shard-iclb8/igt@perf@polling-parameterized.html
* igt@prime_vgem@coherency-blt:
- shard-snb: [PASS][33] -> [INCOMPLETE][34] ([i915#82])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9163/shard-snb2/igt@prime_vgem@coherency-blt.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18734/shard-snb4/igt@prime_vgem@coherency-blt.html
* igt@syncobj_basic@bad-flags-fd-to-handle:
- shard-apl: [PASS][35] -> [DMESG-WARN][36] ([i915#1635] / [i915#1982])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9163/shard-apl2/igt@syncobj_basic@bad-flags-fd-to-handle.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18734/shard-apl2/igt@syncobj_basic@bad-flags-fd-to-handle.html
#### Possible fixes ####
* igt@gem_exec_reloc@basic-many-active@rcs0:
- shard-hsw: [FAIL][37] ([i915#2389]) -> [PASS][38]
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9163/shard-hsw4/igt@gem_exec_reloc@basic-many-active@rcs0.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18734/shard-hsw8/igt@gem_exec_reloc@basic-many-active@rcs0.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-skl: [TIMEOUT][39] ([i915#2424]) -> [PASS][40]
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9163/shard-skl8/igt@gem_userptr_blits@unsync-unmap-cycles.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18734/shard-skl4/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@kms_cursor_crc@pipe-c-cursor-128x128-onscreen:
- shard-skl: [FAIL][41] ([i915#54]) -> [PASS][42]
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9163/shard-skl4/igt@kms_cursor_crc@pipe-c-cursor-128x128-onscreen.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18734/shard-skl1/igt@kms_cursor_crc@pipe-c-cursor-128x128-onscreen.html
* igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size:
- shard-skl: [DMESG-WARN][43] ([i915#1982]) -> [PASS][44] +3 similar issues
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9163/shard-skl9/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18734/shard-skl8/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1:
- shard-skl: [FAIL][45] ([i915#2122]) -> [PASS][46]
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9163/shard-skl6/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18734/shard-skl2/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html
* igt@kms_frontbuffer_tracking@fbc-modesetfrombusy:
- shard-snb: [FAIL][47] ([i915#2546]) -> [PASS][48]
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9163/shard-snb2/igt@kms_frontbuffer_tracking@fbc-modesetfrombusy.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18734/shard-snb5/igt@kms_frontbuffer_tracking@fbc-modesetfrombusy.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-wc:
- shard-tglb: [DMESG-WARN][49] ([i915#1982]) -> [PASS][50]
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9163/shard-tglb6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-wc.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18734/shard-tglb8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_plane_alpha_blend@pipe-c-coverage-7efc:
- shard-skl: [FAIL][51] ([fdo#108145] / [i915#265]) -> [PASS][52] +2 similar issues
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9163/shard-skl4/igt@kms_plane_alpha_blend@pipe-c-coverage-7efc.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18734/shard-skl1/igt@kms_plane_alpha_blend@pipe-c-coverage-7efc.html
* igt@kms_plane_cursor@pipe-a-primary-size-256:
- shard-glk: [DMESG-WARN][53] ([i915#1982]) -> [PASS][54] +1 similar issue
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9163/shard-glk6/igt@kms_plane_cursor@pipe-a-primary-size-256.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18734/shard-glk9/igt@kms_plane_cursor@pipe-a-primary-size-256.html
* igt@kms_psr@psr2_primary_mmap_cpu:
- shard-iclb: [SKIP][55] ([fdo#109441]) -> [PASS][56] +1 similar issue
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9163/shard-iclb3/igt@kms_psr@psr2_primary_mmap_cpu.html
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18734/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html
* igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend:
- shard-skl: [INCOMPLETE][57] ([i915#198]) -> [PASS][58] +1 similar issue
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9163/shard-skl1/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18734/shard-skl3/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html
* igt@perf@polling:
- shard-hsw: [SKIP][59] ([fdo#109271]) -> [PASS][60]
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9163/shard-hsw2/igt@perf@polling.html
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18734/shard-hsw6/igt@perf@polling.html
* igt@perf@polling-parameterized:
- shard-skl: [FAIL][61] ([i915#1542]) -> [PASS][62]
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9163/shard-skl8/igt@perf@polling-parameterized.html
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18734/shard-skl4/igt@perf@polling-parameterized.html
#### Warnings ####
* igt@kms_dp_dsc@basic-dsc-enable-edp:
- shard-iclb: [SKIP][63] ([fdo#109349]) -> [DMESG-WARN][64] ([i915#1226])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9163/shard-iclb3/igt@kms_dp_dsc@basic-dsc-enable-edp.html
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18734/shard-iclb2/igt@kms_dp_dsc@basic-dsc-enable-edp.html
* igt@kms_flip@flip-vs-suspend-interruptible@c-edp1:
- shard-tglb: [DMESG-WARN][65] ([i915#2411]) -> [INCOMPLETE][66] ([i915#2411])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9163/shard-tglb1/igt@kms_flip@flip-vs-suspend-interruptible@c-edp1.html
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18734/shard-tglb8/igt@kms_flip@flip-vs-suspend-interruptible@c-edp1.html
* igt@runner@aborted:
- shard-skl: [FAIL][67] ([i915#2029] / [i915#2439]) -> [FAIL][68] ([i915#1611] / [i915#2029] / [i915#2439])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9163/shard-skl3/igt@runner@aborted.html
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18734/shard-skl3/igt@runner@aborted.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109349]: https://bugs.freedesktop.org/show_bug.cgi?id=109349
[fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
[i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118
[i915#1226]: https://gitlab.freedesktop.org/drm/intel/issues/1226
[i915#1542]: https://gitlab.freedesktop.org/drm/intel/issues/1542
[i915#1611]: https://gitlab.freedesktop.org/drm/intel/issues/1611
[i915#1635]: https://gitlab.freedesktop.org/drm/intel/issues/1635
[i915#198]: https://gitlab.freedesktop.org/drm/intel/issues/198
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2029]: https://gitlab.freedesktop.org/drm/intel/issues/2029
[i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122
[i915#2283]: https://gitlab.freedesktop.org/drm/intel/issues/2283
[i915#2389]: https://gitlab.freedesktop.org/drm/intel/issues/2389
[i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411
[i915#2424]: https://gitlab.freedesktop.org/drm/intel/issues/2424
[i915#2439]: https://gitlab.freedesktop.org/drm/intel/issues/2439
[i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521
[i915#2546]: https://gitlab.freedesktop.org/drm/intel/issues/2546
[i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265
[i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
[i915#54]: https://gitlab.freedesktop.org/drm/intel/issues/54
[i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
[i915#82]: https://gitlab.freedesktop.org/drm/intel/issues/82
[i915#95]: https://gitlab.freedesktop.org/drm/intel/issues/95
Participating hosts (11 -> 11)
------------------------------
No changes in participating hosts
Build changes
-------------
* Linux: CI_DRM_9163 -> Patchwork_18734
CI-20190529: 20190529
CI_DRM_9163: e984f8cbd92765a305dd322240278e0f69dbae38 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_5822: b4bcf05cb9839037128905deda7146434155cc41 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
Patchwork_18734: b959aff59ea2daf6f140ce442c03217736d80fc1 @ 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_18734/index.html
[-- Attachment #1.2: Type: text/html, Size: 18968 bytes --]
[-- Attachment #2: Type: text/plain, Size: 160 bytes --]
_______________________________________________
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
* Re: [Intel-gfx] ✗ Fi.CI.IGT: failure for drm/i915/display: Program DBUF_CTL tracker state service (rev2)
2020-10-19 20:50 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
@ 2020-10-20 0:25 ` Souza, Jose
0 siblings, 0 replies; 4+ messages in thread
From: Souza, Jose @ 2020-10-20 0:25 UTC (permalink / raw)
To: intel-gfx@lists.freedesktop.org
On Mon, 2020-10-19 at 20:50 +0000, Patchwork wrote:
> Patch Details
> Series:drm/i915/display: Program DBUF_CTL tracker state service (rev2)URL:https://patchwork.freedesktop.org/series/82785/State:failure
> Details:https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_18734/index.html
> CI Bug Log - changes from CI_DRM_9163_full -> Patchwork_18734_fullSummaryFAILURE
> Serious unknown changes coming with Patchwork_18734_full absolutely need to be
> verified manually.
> If you think the reported changes have nothing to do with the changes
> introduced in Patchwork_18734_full, please notify your bug team to allow them
> to document this new failure mode, which will reduce false positives in CI.
> Possible new issuesHere are the unknown changes that may have been introduced in Patchwork_18734_full:
> IGT changesPossible regressions * igt@gem_exec_whisper@basic-queues-priority-all:shard-glk: PASS -> INCOMPLETE
> Warnings * igt@core_hotunplug@hotrebind-lateclose:shard-hsw: WARN (i915#2283) -> FAIL
The error and the warnings above are in platforms not affected by this change.
Pushed to dinq, thanks for the review Matt.
> Known issuesHere are the changes found in Patchwork_18734_full that come from known issues:
> IGT changesIssues hit * igt@gem_ctx_create@basic:shard-iclb: PASS -> DMESG-WARN (i915#1982)
> * igt@gem_exec_reloc@basic-many-active@vecs0:shard-glk: PASS -> FAIL (i915#2389) +2 similar issues
> * igt@gem_exec_whisper@basic-queues-forked:shard-glk: PASS -> DMESG-WARN (i915#118 / i915#95)
> * igt@gem_userptr_blits@sync-unmap-cycles:shard-skl: PASS -> TIMEOUT (i915#2424)
> * igt@i915_pm_dc@dc6-psr:shard-skl: PASS -> FAIL (i915#454)
> * igt@kms_big_fb@linear-32bpp-rotate-180:shard-glk: PASS -> DMESG-FAIL (i915#118 / i915#95)
> * igt@kms_cursor_edge_walk@pipe-b-256x256-right-edge:shard-skl: PASS -> DMESG-WARN (i915#1982) +7 similar issues
> * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1:shard-skl: PASS -> FAIL (i915#2122)
> * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:shard-skl: PASS -> FAIL (i915#79)
> * igt@kms_frontbuffer_tracking@fbc-stridechange:shard-glk: PASS -> DMESG-WARN (i915#1982)
> * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff:shard-tglb: PASS -> DMESG-WARN (i915#1982) +2 similar issues
> * igt@kms_psr@psr2_cursor_plane_onoff:shard-iclb: PASS -> SKIP (fdo#109441) +1 similar issue
> * igt@kms_universal_plane@universal-plane-gen9-features-pipe-a:shard-kbl: PASS -> DMESG-WARN (i915#1982) +1 similar issue
> * igt@perf@polling-parameterized:shard-iclb: PASS -> FAIL (i915#1542)
> * igt@prime_vgem@coherency-blt:shard-snb: PASS -> INCOMPLETE (i915#82)
> * igt@syncobj_basic@bad-flags-fd-to-handle:shard-apl: PASS -> DMESG-WARN (i915#1635 / i915#1982)
> Possible fixes * igt@gem_exec_reloc@basic-many-active@rcs0:shard-hsw: FAIL (i915#2389) -> PASS
> * igt@gem_userptr_blits@unsync-unmap-cycles:shard-skl: TIMEOUT (i915#2424) -> PASS
> * igt@kms_cursor_crc@pipe-c-cursor-128x128-onscreen:shard-skl: FAIL (i915#54) -> PASS
> * igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size:shard-skl: DMESG-WARN (i915#1982) -> PASS +3 similar issues
> * igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1:shard-skl: FAIL (i915#2122) -> PASS
> * igt@kms_frontbuffer_tracking@fbc-modesetfrombusy:shard-snb: FAIL (i915#2546) -> PASS
> * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-wc:shard-tglb: DMESG-WARN (i915#1982) -> PASS
> * igt@kms_plane_alpha_blend@pipe-c-coverage-7efc:shard-skl: FAIL (fdo#108145 / i915#265) -> PASS +2 similar issues
> * igt@kms_plane_cursor@pipe-a-primary-size-256:shard-glk: DMESG-WARN (i915#1982) -> PASS +1 similar issue
> * igt@kms_psr@psr2_primary_mmap_cpu:shard-iclb: SKIP (fdo#109441) -> PASS +1 similar issue
> * igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend:shard-skl: INCOMPLETE (i915#198) -> PASS +1 similar issue
> * igt@perf@polling:shard-hsw: SKIP (fdo#109271) -> PASS
> * igt@perf@polling-parameterized:shard-skl: FAIL (i915#1542) -> PASS
> Warnings * igt@kms_dp_dsc@basic-dsc-enable-edp:shard-iclb: SKIP (fdo#109349) -> DMESG-WARN (i915#1226)
> * igt@kms_flip@flip-vs-suspend-interruptible@c-edp1:shard-tglb: DMESG-WARN (i915#2411) -> INCOMPLETE (i915#2411)
> * igt@runner@aborted:shard-skl: FAIL (i915#2029 / i915#2439) -> FAIL (i915#1611 / i915#2029 / i915#2439)
> {name}: This element is suppressed. This means it is ignored when computing
> the status of the difference (SUCCESS, WARNING, or FAILURE).
> Participating hosts (11 -> 11)No changes in participating hosts
> Build changes * Linux: CI_DRM_9163 -> Patchwork_18734
> CI-20190529: 20190529
> CI_DRM_9163: e984f8cbd92765a305dd322240278e0f69dbae38 @ git://anongit.freedesktop.org/gfx-ci/linux
> IGT_5822: b4bcf05cb9839037128905deda7146434155cc41 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
> Patchwork_18734: b959aff59ea2daf6f140ce442c03217736d80fc1 @ git://anongit.freedesktop.org/gfx-ci/linux
> piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
_______________________________________________
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:[~2020-10-20 0:25 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-10-19 17:39 [Intel-gfx] [PATCH CI] drm/i915/display: Program DBUF_CTL tracker state service José Roberto de Souza
2020-10-19 18:12 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/display: Program DBUF_CTL tracker state service (rev2) Patchwork
2020-10-19 20:50 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
2020-10-20 0:25 ` Souza, Jose
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox