* [PATCH v3 1/2] drm/xe/bmg: implement Wa_16023588340
@ 2024-07-02 15:06 Matthew Auld
2024-07-02 15:06 ` [PATCH v3 2/2] drm/i915: disable fbc due to Wa_16023588340 Matthew Auld
` (4 more replies)
0 siblings, 5 replies; 7+ messages in thread
From: Matthew Auld @ 2024-07-02 15:06 UTC (permalink / raw)
To: intel-xe
Cc: intel-gfx, Jonathan Cavitt, Matt Roper, Lucas De Marchi,
Vinod Govindapillai
This involves enabling l2 caching of host side memory access to VRAM
through the CPU BAR. The main fallout here is with display since VRAM
writes from CPU can now be cached in GPU l2, and display is never
coherent with caches, so needs various manual flushing. In the case of
fbc we disable it due to complications in getting this to work
correctly (in a later patch).
Signed-off-by: Matthew Auld <matthew.auld@intel.com>
Cc: Jonathan Cavitt <jonathan.cavitt@intel.com>
Cc: Matt Roper <matthew.d.roper@intel.com>
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Cc: Vinod Govindapillai <vinod.govindapillai@intel.com>
Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
---
drivers/gpu/drm/xe/Makefile | 2 +
drivers/gpu/drm/xe/display/xe_dsb_buffer.c | 8 ++++
drivers/gpu/drm/xe/display/xe_fb_pin.c | 3 ++
drivers/gpu/drm/xe/regs/xe_gt_regs.h | 8 ++++
drivers/gpu/drm/xe/xe_device.c | 30 ++++++++++++
drivers/gpu/drm/xe/xe_device.h | 1 +
drivers/gpu/drm/xe/xe_gt.c | 54 ++++++++++++++++++++++
drivers/gpu/drm/xe/xe_pat.c | 11 ++++-
drivers/gpu/drm/xe/xe_wa_oob.rules | 1 +
9 files changed, 117 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/xe/Makefile b/drivers/gpu/drm/xe/Makefile
index b1e03bfe4a68..970c5c09e20a 100644
--- a/drivers/gpu/drm/xe/Makefile
+++ b/drivers/gpu/drm/xe/Makefile
@@ -25,12 +25,14 @@ $(obj)/generated/%_wa_oob.c $(obj)/generated/%_wa_oob.h: $(obj)/xe_gen_wa_oob \
uses_generated_oob := \
$(obj)/xe_ggtt.o \
+ $(obj)/xe_device.o \
$(obj)/xe_gsc.o \
$(obj)/xe_gt.o \
$(obj)/xe_guc.o \
$(obj)/xe_guc_ads.o \
$(obj)/xe_guc_pc.o \
$(obj)/xe_migrate.o \
+ $(obj)/xe_pat.o \
$(obj)/xe_ring_ops.o \
$(obj)/xe_vm.o \
$(obj)/xe_wa.o \
diff --git a/drivers/gpu/drm/xe/display/xe_dsb_buffer.c b/drivers/gpu/drm/xe/display/xe_dsb_buffer.c
index 9e860c61f4b3..ccd0d87d438a 100644
--- a/drivers/gpu/drm/xe/display/xe_dsb_buffer.c
+++ b/drivers/gpu/drm/xe/display/xe_dsb_buffer.c
@@ -7,6 +7,8 @@
#include "intel_display_types.h"
#include "intel_dsb_buffer.h"
#include "xe_bo.h"
+#include "xe_device.h"
+#include "xe_device_types.h"
#include "xe_gt.h"
u32 intel_dsb_buffer_ggtt_offset(struct intel_dsb_buffer *dsb_buf)
@@ -16,7 +18,10 @@ u32 intel_dsb_buffer_ggtt_offset(struct intel_dsb_buffer *dsb_buf)
void intel_dsb_buffer_write(struct intel_dsb_buffer *dsb_buf, u32 idx, u32 val)
{
+ struct xe_device *xe = dsb_buf->vma->bo->tile->xe;
+
iosys_map_wr(&dsb_buf->vma->bo->vmap, idx * 4, u32, val);
+ xe_device_l2_flush(xe);
}
u32 intel_dsb_buffer_read(struct intel_dsb_buffer *dsb_buf, u32 idx)
@@ -26,9 +31,12 @@ u32 intel_dsb_buffer_read(struct intel_dsb_buffer *dsb_buf, u32 idx)
void intel_dsb_buffer_memset(struct intel_dsb_buffer *dsb_buf, u32 idx, u32 val, size_t size)
{
+ struct xe_device *xe = dsb_buf->vma->bo->tile->xe;
+
WARN_ON(idx > (dsb_buf->buf_size - size) / sizeof(*dsb_buf->cmd_buf));
iosys_map_memset(&dsb_buf->vma->bo->vmap, idx * 4, val, size);
+ xe_device_l2_flush(xe);
}
bool intel_dsb_buffer_create(struct intel_crtc *crtc, struct intel_dsb_buffer *dsb_buf, size_t size)
diff --git a/drivers/gpu/drm/xe/display/xe_fb_pin.c b/drivers/gpu/drm/xe/display/xe_fb_pin.c
index 423f367c7065..d7db44e79eaf 100644
--- a/drivers/gpu/drm/xe/display/xe_fb_pin.c
+++ b/drivers/gpu/drm/xe/display/xe_fb_pin.c
@@ -10,6 +10,7 @@
#include "intel_fb.h"
#include "intel_fb_pin.h"
#include "xe_bo.h"
+#include "xe_device.h"
#include "xe_ggtt.h"
#include "xe_gt.h"
#include "xe_pm.h"
@@ -304,6 +305,8 @@ static struct i915_vma *__xe_pin_fb_vma(const struct intel_framebuffer *fb,
if (ret)
goto err_unpin;
+ /* Ensure DPT writes are flushed */
+ xe_device_l2_flush(xe);
return vma;
err_unpin:
diff --git a/drivers/gpu/drm/xe/regs/xe_gt_regs.h b/drivers/gpu/drm/xe/regs/xe_gt_regs.h
index d44564bad009..fd9d94174efb 100644
--- a/drivers/gpu/drm/xe/regs/xe_gt_regs.h
+++ b/drivers/gpu/drm/xe/regs/xe_gt_regs.h
@@ -80,6 +80,9 @@
#define LE_CACHEABILITY_MASK REG_GENMASK(1, 0)
#define LE_CACHEABILITY(value) REG_FIELD_PREP(LE_CACHEABILITY_MASK, value)
+#define XE2_GAMREQSTRM_CTRL XE_REG(0x4194)
+#define CG_DIS_CNTLBUS REG_BIT(6)
+
#define CCS_AUX_INV XE_REG(0x4208)
#define VD0_AUX_INV XE_REG(0x4218)
@@ -372,6 +375,11 @@
#define XEHPC_L3CLOS_MASK(i) XE_REG_MCR(0xb194 + (i) * 8)
+#define XE2_GLOBAL_INVAL XE_REG(0xb404)
+
+#define SCRATCH1LPFC XE_REG(0xb474)
+#define EN_L3_RW_CCS_CACHE_FLUSH REG_BIT(0)
+
#define XE2LPM_L3SQCREG5 XE_REG_MCR(0xb658)
#define XE2_TDF_CTRL XE_REG(0xb418)
diff --git a/drivers/gpu/drm/xe/xe_device.c b/drivers/gpu/drm/xe/xe_device.c
index cfda7cb5df2c..b0f79ef6bce1 100644
--- a/drivers/gpu/drm/xe/xe_device.c
+++ b/drivers/gpu/drm/xe/xe_device.c
@@ -54,6 +54,9 @@
#include "xe_vm.h"
#include "xe_vram.h"
#include "xe_wait_user_fence.h"
+#include "xe_wa.h"
+
+#include <generated/xe_wa_oob.h>
static int xe_file_open(struct drm_device *dev, struct drm_file *file)
{
@@ -779,6 +782,11 @@ void xe_device_td_flush(struct xe_device *xe)
if (!IS_DGFX(xe) || GRAPHICS_VER(xe) < 20)
return;
+ if (XE_WA(xe_root_mmio_gt(xe), 16023588340)) {
+ xe_device_l2_flush(xe);
+ return;
+ }
+
for_each_gt(gt, xe, id) {
if (xe_gt_is_media_type(gt))
continue;
@@ -802,6 +810,28 @@ void xe_device_td_flush(struct xe_device *xe)
}
}
+void xe_device_l2_flush(struct xe_device *xe)
+{
+ struct xe_gt *gt;
+ int err;
+
+ gt = xe_root_mmio_gt(xe);
+
+ if (!XE_WA(gt, 16023588340))
+ return;
+
+ err = xe_force_wake_get(gt_to_fw(gt), XE_FW_GT);
+ if (err)
+ return;
+
+ xe_mmio_write32(gt, XE2_GLOBAL_INVAL, 0x1);
+
+ if (xe_mmio_wait32(gt, XE2_GLOBAL_INVAL, 0x1, 0x0, 150, NULL, true))
+ xe_gt_err_once(gt, "Global invalidation timeout\n");
+
+ xe_force_wake_put(gt_to_fw(gt), XE_FW_GT);
+}
+
u32 xe_device_ccs_bytes(struct xe_device *xe, u64 size)
{
return xe_device_has_flat_ccs(xe) ?
diff --git a/drivers/gpu/drm/xe/xe_device.h b/drivers/gpu/drm/xe/xe_device.h
index bb07f5669dbb..0a2a3e7fd402 100644
--- a/drivers/gpu/drm/xe/xe_device.h
+++ b/drivers/gpu/drm/xe/xe_device.h
@@ -162,6 +162,7 @@ u64 xe_device_canonicalize_addr(struct xe_device *xe, u64 address);
u64 xe_device_uncanonicalize_addr(struct xe_device *xe, u64 address);
void xe_device_td_flush(struct xe_device *xe);
+void xe_device_l2_flush(struct xe_device *xe);
static inline bool xe_device_wedged(struct xe_device *xe)
{
diff --git a/drivers/gpu/drm/xe/xe_gt.c b/drivers/gpu/drm/xe/xe_gt.c
index 29e8ea94d05e..006d3594ba55 100644
--- a/drivers/gpu/drm/xe/xe_gt.c
+++ b/drivers/gpu/drm/xe/xe_gt.c
@@ -11,6 +11,8 @@
#include <drm/xe_drm.h>
#include <generated/xe_wa_oob.h>
+#include <generated/xe_wa_oob.h>
+
#include "instructions/xe_gfxpipe_commands.h"
#include "instructions/xe_mi_commands.h"
#include "regs/xe_gt_regs.h"
@@ -95,6 +97,51 @@ void xe_gt_sanitize(struct xe_gt *gt)
gt->uc.guc.submission_state.enabled = false;
}
+static void xe_gt_enable_host_l2_vram(struct xe_gt *gt)
+{
+ u32 reg;
+ int err;
+
+ if (!XE_WA(gt, 16023588340))
+ return;
+
+ err = xe_force_wake_get(gt_to_fw(gt), XE_FW_GT);
+ if (WARN_ON(err))
+ return;
+
+ if (!xe_gt_is_media_type(gt)) {
+ xe_mmio_write32(gt, SCRATCH1LPFC, EN_L3_RW_CCS_CACHE_FLUSH);
+ reg = xe_mmio_read32(gt, XE2_GAMREQSTRM_CTRL);
+ reg |= CG_DIS_CNTLBUS;
+ xe_mmio_write32(gt, XE2_GAMREQSTRM_CTRL, reg);
+ }
+
+ xe_gt_mcr_multicast_write(gt, XEHPC_L3CLOS_MASK(3), 0x3);
+ xe_force_wake_put(gt_to_fw(gt), XE_FW_GT);
+}
+
+static void xe_gt_disable_host_l2_vram(struct xe_gt *gt)
+{
+ u32 reg;
+ int err;
+
+ if (!XE_WA(gt, 16023588340))
+ return;
+
+ if (xe_gt_is_media_type(gt))
+ return;
+
+ err = xe_force_wake_get(gt_to_fw(gt), XE_FW_GT);
+ if (WARN_ON(err))
+ return;
+
+ reg = xe_mmio_read32(gt, XE2_GAMREQSTRM_CTRL);
+ reg &= ~CG_DIS_CNTLBUS;
+ xe_mmio_write32(gt, XE2_GAMREQSTRM_CTRL, reg);
+
+ xe_force_wake_put(gt_to_fw(gt), XE_FW_GT);
+}
+
/**
* xe_gt_remove() - Clean up the GT structures before driver removal
* @gt: the GT object
@@ -111,6 +158,8 @@ void xe_gt_remove(struct xe_gt *gt)
for (i = 0; i < XE_ENGINE_CLASS_MAX; ++i)
xe_hw_fence_irq_finish(>->fence_irq[i]);
+
+ xe_gt_disable_host_l2_vram(gt);
}
static void gt_reset_worker(struct work_struct *w);
@@ -508,6 +557,7 @@ int xe_gt_init_hwconfig(struct xe_gt *gt)
xe_gt_mcr_init_early(gt);
xe_pat_init(gt);
+ xe_gt_enable_host_l2_vram(gt);
err = xe_uc_init(>->uc);
if (err)
@@ -643,6 +693,8 @@ static int do_gt_restart(struct xe_gt *gt)
xe_pat_init(gt);
+ xe_gt_enable_host_l2_vram(gt);
+
xe_gt_mcr_set_implicit_defaults(gt);
xe_reg_sr_apply_mmio(>->reg_sr, gt);
@@ -796,6 +848,8 @@ int xe_gt_suspend(struct xe_gt *gt)
xe_gt_idle_disable_pg(gt);
+ xe_gt_disable_host_l2_vram(gt);
+
XE_WARN_ON(xe_force_wake_put(gt_to_fw(gt), XE_FORCEWAKE_ALL));
xe_gt_dbg(gt, "suspended\n");
diff --git a/drivers/gpu/drm/xe/xe_pat.c b/drivers/gpu/drm/xe/xe_pat.c
index 4ee32ee1cc88..722278cc23fc 100644
--- a/drivers/gpu/drm/xe/xe_pat.c
+++ b/drivers/gpu/drm/xe/xe_pat.c
@@ -7,6 +7,8 @@
#include <drm/xe_drm.h>
+#include <generated/xe_wa_oob.h>
+
#include "regs/xe_reg_defs.h"
#include "xe_assert.h"
#include "xe_device.h"
@@ -15,6 +17,7 @@
#include "xe_gt_mcr.h"
#include "xe_mmio.h"
#include "xe_sriov.h"
+#include "xe_wa.h"
#define _PAT_ATS 0x47fc
#define _PAT_INDEX(index) _PICK_EVEN_2RANGES(index, 8, \
@@ -382,7 +385,13 @@ void xe_pat_init_early(struct xe_device *xe)
if (GRAPHICS_VER(xe) == 20) {
xe->pat.ops = &xe2_pat_ops;
xe->pat.table = xe2_pat_table;
- xe->pat.n_entries = ARRAY_SIZE(xe2_pat_table);
+
+ /* Wa_16023588340. XXX: Should use XE_WA */
+ if (GRAPHICS_VERx100(xe) == 2001)
+ xe->pat.n_entries = 28; /* Disable CLOS3 */
+ else
+ xe->pat.n_entries = ARRAY_SIZE(xe2_pat_table);
+
xe->pat.idx[XE_CACHE_NONE] = 3;
xe->pat.idx[XE_CACHE_WT] = 15;
xe->pat.idx[XE_CACHE_WB] = 2;
diff --git a/drivers/gpu/drm/xe/xe_wa_oob.rules b/drivers/gpu/drm/xe/xe_wa_oob.rules
index a6b897030fde..c6d8941621c6 100644
--- a/drivers/gpu/drm/xe/xe_wa_oob.rules
+++ b/drivers/gpu/drm/xe/xe_wa_oob.rules
@@ -28,3 +28,4 @@
GRAPHICS_VERSION(2004)
13011645652 GRAPHICS_VERSION(2004)
22019338487 MEDIA_VERSION(2000)
+16023588340 GRAPHICS_VERSION(2001)
--
2.45.2
^ permalink raw reply related [flat|nested] 7+ messages in thread* [PATCH v3 2/2] drm/i915: disable fbc due to Wa_16023588340 2024-07-02 15:06 [PATCH v3 1/2] drm/xe/bmg: implement Wa_16023588340 Matthew Auld @ 2024-07-02 15:06 ` Matthew Auld 2024-07-02 15:53 ` ✗ Fi.CI.CHECKPATCH: warning for series starting with [v3,1/2] drm/xe/bmg: implement Wa_16023588340 Patchwork ` (3 subsequent siblings) 4 siblings, 0 replies; 7+ messages in thread From: Matthew Auld @ 2024-07-02 15:06 UTC (permalink / raw) To: intel-xe Cc: intel-gfx, Jonathan Cavitt, Matt Roper, Lucas De Marchi, Vinod Govindapillai, Jani Nikula, Rodrigo Vivi On BMG-G21 we need to disable fbc due to complications around the WA. v2: - Try to handle with i915_drv.h and compat layer. (Rodrigo) v3: - For simplicity retreat back to the original design for now. - Drop the extra \ from the Makefile (Jani) Signed-off-by: Matthew Auld <matthew.auld@intel.com> Cc: Jonathan Cavitt <jonathan.cavitt@intel.com> Cc: Matt Roper <matthew.d.roper@intel.com> Cc: Lucas De Marchi <lucas.demarchi@intel.com> Cc: Vinod Govindapillai <vinod.govindapillai@intel.com> Cc: Jani Nikula <jani.nikula@intel.com> Cc: intel-gfx@lists.freedesktop.org Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com> Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com> --- drivers/gpu/drm/i915/display/intel_display_wa.h | 8 ++++++++ drivers/gpu/drm/i915/display/intel_fbc.c | 6 ++++++ drivers/gpu/drm/xe/Makefile | 4 +++- drivers/gpu/drm/xe/display/xe_display_wa.c | 16 ++++++++++++++++ 4 files changed, 33 insertions(+), 1 deletion(-) create mode 100644 drivers/gpu/drm/xe/display/xe_display_wa.c diff --git a/drivers/gpu/drm/i915/display/intel_display_wa.h b/drivers/gpu/drm/i915/display/intel_display_wa.h index 63201d09852c..be644ab6ae00 100644 --- a/drivers/gpu/drm/i915/display/intel_display_wa.h +++ b/drivers/gpu/drm/i915/display/intel_display_wa.h @@ -6,8 +6,16 @@ #ifndef __INTEL_DISPLAY_WA_H__ #define __INTEL_DISPLAY_WA_H__ +#include <linux/types.h> + struct drm_i915_private; void intel_display_wa_apply(struct drm_i915_private *i915); +#ifdef I915 +static inline bool intel_display_needs_wa_16023588340(struct drm_i915_private *i915) { return false; } +#else +bool intel_display_needs_wa_16023588340(struct drm_i915_private *i915); +#endif + #endif diff --git a/drivers/gpu/drm/i915/display/intel_fbc.c b/drivers/gpu/drm/i915/display/intel_fbc.c index 67116c9f1464..8488f82143a4 100644 --- a/drivers/gpu/drm/i915/display/intel_fbc.c +++ b/drivers/gpu/drm/i915/display/intel_fbc.c @@ -56,6 +56,7 @@ #include "intel_display_device.h" #include "intel_display_trace.h" #include "intel_display_types.h" +#include "intel_display_wa.h" #include "intel_fbc.h" #include "intel_fbc_regs.h" #include "intel_frontbuffer.h" @@ -1237,6 +1238,11 @@ static int intel_fbc_check_plane(struct intel_atomic_state *state, return 0; } + if (intel_display_needs_wa_16023588340(i915)) { + plane_state->no_fbc_reason = "Wa_16023588340"; + return 0; + } + /* WaFbcTurnOffFbcWhenHyperVisorIsUsed:skl,bxt */ if (i915_vtd_active(i915) && (IS_SKYLAKE(i915) || IS_BROXTON(i915))) { plane_state->no_fbc_reason = "VT-d enabled"; diff --git a/drivers/gpu/drm/xe/Makefile b/drivers/gpu/drm/xe/Makefile index 970c5c09e20a..9e1bb2f6e03c 100644 --- a/drivers/gpu/drm/xe/Makefile +++ b/drivers/gpu/drm/xe/Makefile @@ -36,7 +36,8 @@ uses_generated_oob := \ $(obj)/xe_ring_ops.o \ $(obj)/xe_vm.o \ $(obj)/xe_wa.o \ - $(obj)/xe_ttm_stolen_mgr.o + $(obj)/xe_ttm_stolen_mgr.o \ + $(obj)/display/xe_display_wa.o $(uses_generated_oob): $(generated_oob) @@ -194,6 +195,7 @@ xe-$(CONFIG_DRM_XE_DISPLAY) += \ display/xe_display.o \ display/xe_display_misc.o \ display/xe_display_rps.o \ + display/xe_display_wa.o \ display/xe_dsb_buffer.o \ display/xe_fb_pin.o \ display/xe_hdcp_gsc.o \ diff --git a/drivers/gpu/drm/xe/display/xe_display_wa.c b/drivers/gpu/drm/xe/display/xe_display_wa.c new file mode 100644 index 000000000000..68e3d1959ad6 --- /dev/null +++ b/drivers/gpu/drm/xe/display/xe_display_wa.c @@ -0,0 +1,16 @@ +// SPDX-License-Identifier: MIT +/* + * Copyright © 2024 Intel Corporation + */ + +#include "intel_display_wa.h" + +#include "xe_device.h" +#include "xe_wa.h" + +#include <generated/xe_wa_oob.h> + +bool intel_display_needs_wa_16023588340(struct drm_i915_private *i915) +{ + return XE_WA(xe_root_mmio_gt(i915), 16023588340); +} -- 2.45.2 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* ✗ Fi.CI.CHECKPATCH: warning for series starting with [v3,1/2] drm/xe/bmg: implement Wa_16023588340 2024-07-02 15:06 [PATCH v3 1/2] drm/xe/bmg: implement Wa_16023588340 Matthew Auld 2024-07-02 15:06 ` [PATCH v3 2/2] drm/i915: disable fbc due to Wa_16023588340 Matthew Auld @ 2024-07-02 15:53 ` Patchwork 2024-07-02 16:01 ` ✓ Fi.CI.BAT: success " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2024-07-02 15:53 UTC (permalink / raw) To: Matthew Auld; +Cc: intel-gfx == Series Details == Series: series starting with [v3,1/2] drm/xe/bmg: implement Wa_16023588340 URL : https://patchwork.freedesktop.org/series/135657/ State : warning == Summary == Error: dim checkpatch failed ab5feace5b5b drm/xe/bmg: implement Wa_16023588340 9378107d3b1d drm/i915: disable fbc due to Wa_16023588340 -:39: WARNING:LONG_LINE: line length of 102 exceeds 100 columns #39: FILE: drivers/gpu/drm/i915/display/intel_display_wa.h:16: +static inline bool intel_display_needs_wa_16023588340(struct drm_i915_private *i915) { return false; } -:92: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating? #92: new file mode 100644 total: 0 errors, 2 warnings, 0 checks, 66 lines checked ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ Fi.CI.BAT: success for series starting with [v3,1/2] drm/xe/bmg: implement Wa_16023588340 2024-07-02 15:06 [PATCH v3 1/2] drm/xe/bmg: implement Wa_16023588340 Matthew Auld 2024-07-02 15:06 ` [PATCH v3 2/2] drm/i915: disable fbc due to Wa_16023588340 Matthew Auld 2024-07-02 15:53 ` ✗ Fi.CI.CHECKPATCH: warning for series starting with [v3,1/2] drm/xe/bmg: implement Wa_16023588340 Patchwork @ 2024-07-02 16:01 ` Patchwork 2024-07-02 21:15 ` ✗ Fi.CI.IGT: failure " Patchwork 2024-07-03 9:24 ` [PATCH v3 1/2] " Thomas Hellström 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2024-07-02 16:01 UTC (permalink / raw) To: Matthew Auld; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 4481 bytes --] == Series Details == Series: series starting with [v3,1/2] drm/xe/bmg: implement Wa_16023588340 URL : https://patchwork.freedesktop.org/series/135657/ State : success == Summary == CI Bug Log - changes from CI_DRM_15013 -> Patchwork_135657v1 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/index.html Participating hosts (42 -> 40) ------------------------------ Additional (1): bat-twl-2 Missing (3): bat-adln-1 fi-snb-2520m fi-elk-e7500 Known issues ------------ Here are the changes found in Patchwork_135657v1 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_lmem_swapping@basic@lmem0: - bat-dg2-11: [PASS][1] -> [FAIL][2] ([i915#10378]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15013/bat-dg2-11/igt@gem_lmem_swapping@basic@lmem0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/bat-dg2-11/igt@gem_lmem_swapping@basic@lmem0.html * igt@i915_pm_rpm@module-reload: - fi-kbl-7567u: [PASS][3] -> [DMESG-WARN][4] ([i915#1982]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15013/fi-kbl-7567u/igt@i915_pm_rpm@module-reload.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/fi-kbl-7567u/igt@i915_pm_rpm@module-reload.html * igt@kms_chamelium_edid@dp-edid-read: - bat-dg2-13: [PASS][5] -> [ABORT][6] ([i915#11552]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15013/bat-dg2-13/igt@kms_chamelium_edid@dp-edid-read.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/bat-dg2-13/igt@kms_chamelium_edid@dp-edid-read.html #### Possible fixes #### * igt@i915_selftest@live@gt_engines: - fi-kbl-7567u: [DMESG-WARN][7] ([i915#11328]) -> [PASS][8] +1 other test pass [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15013/fi-kbl-7567u/igt@i915_selftest@live@gt_engines.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/fi-kbl-7567u/igt@i915_selftest@live@gt_engines.html * igt@i915_selftest@live@workarounds: - bat-dg2-11: [DMESG-FAIL][9] ([i915#9500]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15013/bat-dg2-11/igt@i915_selftest@live@workarounds.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/bat-dg2-11/igt@i915_selftest@live@workarounds.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10209]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10209 [i915#10212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10212 [i915#10213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10213 [i915#10214]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10214 [i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216 [i915#10378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10378 [i915#11030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11030 [i915#11031]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11031 [i915#11032]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11032 [i915#11328]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11328 [i915#11552]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11552 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809 [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318 [i915#9500]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9500 [i915#9886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886 Build changes ------------- * Linux: CI_DRM_15013 -> Patchwork_135657v1 CI-20190529: 20190529 CI_DRM_15013: 0318a12ff6fb8c321458aa2b373e9322896ee951 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7906: ae91ba26f657bf11264f64bd2dc21f471a5d18f5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_135657v1: 0318a12ff6fb8c321458aa2b373e9322896ee951 @ git://anongit.freedesktop.org/gfx-ci/linux == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/index.html [-- Attachment #2: Type: text/html, Size: 4281 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ Fi.CI.IGT: failure for series starting with [v3,1/2] drm/xe/bmg: implement Wa_16023588340 2024-07-02 15:06 [PATCH v3 1/2] drm/xe/bmg: implement Wa_16023588340 Matthew Auld ` (2 preceding siblings ...) 2024-07-02 16:01 ` ✓ Fi.CI.BAT: success " Patchwork @ 2024-07-02 21:15 ` Patchwork 2024-07-03 9:24 ` [PATCH v3 1/2] " Thomas Hellström 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2024-07-02 21:15 UTC (permalink / raw) To: Matthew Auld; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 86154 bytes --] == Series Details == Series: series starting with [v3,1/2] drm/xe/bmg: implement Wa_16023588340 URL : https://patchwork.freedesktop.org/series/135657/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15013_full -> Patchwork_135657v1_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_135657v1_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_135657v1_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_135657v1_full: ### IGT changes ### #### Possible regressions #### * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-d-edp-1: - shard-mtlp: [PASS][1] -> [FAIL][2] +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15013/shard-mtlp-3/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-d-edp-1.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-mtlp-4/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-d-edp-1.html #### Warnings #### * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1: - shard-snb: [FAIL][3] ([i915#11462]) -> [FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15013/shard-snb4/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-snb2/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html New tests --------- New tests have been introduced between CI_DRM_15013_full and Patchwork_135657v1_full: ### New IGT tests (2) ### * igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-dp-4: - Statuses : 1 pass(s) - Exec time: [0.65] s * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-d-dp-4: - Statuses : 1 pass(s) - Exec time: [0.47] s Known issues ------------ Here are the changes found in Patchwork_135657v1_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-mtlp: NOTRUN -> [SKIP][5] ([i915#8411]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-mtlp-6/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@object-reloc-keep-cache: - shard-dg2: NOTRUN -> [SKIP][6] ([i915#8411]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-3/igt@api_intel_bb@object-reloc-keep-cache.html * igt@device_reset@cold-reset-bound: - shard-dg1: NOTRUN -> [SKIP][7] ([i915#11078]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-16/igt@device_reset@cold-reset-bound.html * igt@device_reset@unbind-reset-rebind: - shard-dg1: NOTRUN -> [ABORT][8] ([i915#9413]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-15/igt@device_reset@unbind-reset-rebind.html * igt@drm_fdinfo@all-busy-check-all: - shard-mtlp: NOTRUN -> [SKIP][9] ([i915#8414]) +6 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-mtlp-6/igt@drm_fdinfo@all-busy-check-all.html * igt@drm_fdinfo@virtual-busy: - shard-dg1: NOTRUN -> [SKIP][10] ([i915#8414]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-17/igt@drm_fdinfo@virtual-busy.html * igt@gem_basic@multigpu-create-close: - shard-dg2: NOTRUN -> [SKIP][11] ([i915#7697]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-10/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@block-multicopy-inplace: - shard-dg1: NOTRUN -> [SKIP][12] ([i915#3555] / [i915#9323]) +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-17/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ccs@ctrl-surf-copy: - shard-rkl: NOTRUN -> [SKIP][13] ([i915#3555] / [i915#9323]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-rkl-4/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@suspend-resume: - shard-rkl: NOTRUN -> [SKIP][14] ([i915#9323]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-rkl-6/igt@gem_ccs@suspend-resume.html * igt@gem_compute@compute-square: - shard-mtlp: NOTRUN -> [SKIP][15] ([i915#9310]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-mtlp-6/igt@gem_compute@compute-square.html * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: NOTRUN -> [ABORT][16] ([i915#9846]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-5/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_create@create-ext-set-pat: - shard-dg1: NOTRUN -> [SKIP][17] ([i915#8562]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-17/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-dg2: NOTRUN -> [SKIP][18] ([i915#8555]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-10/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-dg1: NOTRUN -> [SKIP][19] ([i915#8555]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-16/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_sseu@mmap-args: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#280]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-10/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@kms: - shard-dg2: [PASS][21] -> [FAIL][22] ([i915#5784]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15013/shard-dg2-8/igt@gem_eio@kms.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-1/igt@gem_eio@kms.html * igt@gem_eio@unwedge-stress: - shard-dg1: [PASS][23] -> [FAIL][24] ([i915#5784]) +1 other test fail [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15013/shard-dg1-16/igt@gem_eio@unwedge-stress.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-13/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@bonded-semaphore: - shard-mtlp: NOTRUN -> [SKIP][25] ([i915#4812]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-mtlp-6/igt@gem_exec_balancer@bonded-semaphore.html * igt@gem_exec_balancer@parallel-bb-first: - shard-rkl: NOTRUN -> [SKIP][26] ([i915#4525]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-rkl-6/igt@gem_exec_balancer@parallel-bb-first.html * igt@gem_exec_capture@capture-recoverable: - shard-rkl: NOTRUN -> [SKIP][27] ([i915#6344]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-rkl-4/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_fair@basic-none@rcs0: - shard-glk: NOTRUN -> [FAIL][28] ([i915#2842]) +2 other tests fail [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-glk5/igt@gem_exec_fair@basic-none@rcs0.html * igt@gem_exec_fair@basic-pace-share: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#3539] / [i915#4852]) +3 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-3/igt@gem_exec_fair@basic-pace-share.html * igt@gem_exec_fair@basic-pace@bcs0: - shard-rkl: [PASS][30] -> [FAIL][31] ([i915#2842]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15013/shard-rkl-2/igt@gem_exec_fair@basic-pace@bcs0.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-rkl-1/igt@gem_exec_fair@basic-pace@bcs0.html * igt@gem_exec_flush@basic-uc-prw-default: - shard-dg1: NOTRUN -> [SKIP][32] ([i915#3539]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-17/igt@gem_exec_flush@basic-uc-prw-default.html * igt@gem_exec_flush@basic-wb-rw-before-default: - shard-dg1: NOTRUN -> [SKIP][33] ([i915#3539] / [i915#4852]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-16/igt@gem_exec_flush@basic-wb-rw-before-default.html * igt@gem_exec_reloc@basic-active: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#3281]) +2 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-3/igt@gem_exec_reloc@basic-active.html * igt@gem_exec_reloc@basic-cpu-wc-noreloc: - shard-mtlp: NOTRUN -> [SKIP][35] ([i915#3281]) +2 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-mtlp-6/igt@gem_exec_reloc@basic-cpu-wc-noreloc.html * igt@gem_exec_reloc@basic-gtt: - shard-dg1: NOTRUN -> [SKIP][36] ([i915#3281]) +7 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-17/igt@gem_exec_reloc@basic-gtt.html * igt@gem_exec_reloc@basic-gtt-cpu: - shard-rkl: NOTRUN -> [SKIP][37] ([i915#3281]) +14 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-cpu.html * igt@gem_exec_schedule@semaphore-power: - shard-rkl: NOTRUN -> [SKIP][38] ([i915#7276]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-rkl-4/igt@gem_exec_schedule@semaphore-power.html - shard-dg1: NOTRUN -> [SKIP][39] ([i915#4812]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-17/igt@gem_exec_schedule@semaphore-power.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg1: NOTRUN -> [SKIP][40] ([i915#4860]) +2 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-17/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_fenced_exec_thrash@too-many-fences: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#4860]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-10/igt@gem_fenced_exec_thrash@too-many-fences.html * igt@gem_lmem_swapping@heavy-random@lmem0: - shard-dg1: [PASS][42] -> [FAIL][43] ([i915#10378]) +1 other test fail [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15013/shard-dg1-16/igt@gem_lmem_swapping@heavy-random@lmem0.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-13/igt@gem_lmem_swapping@heavy-random@lmem0.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][44] ([i915#4565]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-16/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html * igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0: - shard-dg2: NOTRUN -> [FAIL][45] ([i915#10378]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-3/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html * igt@gem_lmem_swapping@massive: - shard-rkl: NOTRUN -> [SKIP][46] ([i915#4613]) +3 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-rkl-4/igt@gem_lmem_swapping@massive.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4613]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-mtlp-6/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@random: - shard-glk: NOTRUN -> [SKIP][48] ([i915#4613]) +4 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-glk1/igt@gem_lmem_swapping@random.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [PASS][49] -> [TIMEOUT][50] ([i915#5493]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15013/shard-dg2-7/igt@gem_lmem_swapping@smem-oom@lmem0.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-11/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_madvise@dontneed-before-exec: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#3282]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-mtlp-6/igt@gem_madvise@dontneed-before-exec.html * igt@gem_mmap_gtt@cpuset-medium-copy-odd: - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4077]) +2 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-mtlp-6/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html * igt@gem_mmap_gtt@fault-concurrent: - shard-dg1: NOTRUN -> [SKIP][53] ([i915#4077]) +7 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-17/igt@gem_mmap_gtt@fault-concurrent.html * igt@gem_mmap_gtt@isolation: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#4077]) +5 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-10/igt@gem_mmap_gtt@isolation.html * igt@gem_mmap_offset@clear@smem0: - shard-mtlp: [PASS][55] -> [ABORT][56] ([i915#10029] / [i915#10729]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15013/shard-mtlp-4/igt@gem_mmap_offset@clear@smem0.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-mtlp-4/igt@gem_mmap_offset@clear@smem0.html * igt@gem_mmap_wc@write-cpu-read-wc: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#4083]) +2 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-10/igt@gem_mmap_wc@write-cpu-read-wc.html * igt@gem_partial_pwrite_pread@reads: - shard-dg1: NOTRUN -> [SKIP][58] ([i915#3282]) +4 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-16/igt@gem_partial_pwrite_pread@reads.html * igt@gem_pwrite_snooped: - shard-rkl: NOTRUN -> [SKIP][59] ([i915#3282]) +6 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-rkl-6/igt@gem_pwrite_snooped.html * igt@gem_pxp@create-regular-buffer: - shard-tglu: NOTRUN -> [SKIP][60] ([i915#4270]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-tglu-6/igt@gem_pxp@create-regular-buffer.html * igt@gem_pxp@display-protected-crc: - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4270]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-mtlp-6/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-rkl: NOTRUN -> [SKIP][62] ([i915#4270]) +3 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-rkl-6/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#4270]) +3 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-3/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#4270]) +3 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-16/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_readwrite@beyond-eob: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#3282]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-3/igt@gem_readwrite@beyond-eob.html * igt@gem_render_copy@x-tiled-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#8428]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-mtlp-6/igt@gem_render_copy@x-tiled-to-vebox-y-tiled.html * igt@gem_render_copy@y-tiled-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#5190] / [i915#8428]) +2 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-3/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4079]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-mtlp-6/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_set_tiling_vs_gtt: - shard-dg1: NOTRUN -> [SKIP][69] ([i915#4079]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-16/igt@gem_set_tiling_vs_gtt.html * igt@gem_softpin@evict-snoop-interruptible: - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4885]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-mtlp-6/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_tiled_pread_pwrite: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#4079]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-10/igt@gem_tiled_pread_pwrite.html * igt@gem_userptr_blits@coherency-sync: - shard-rkl: NOTRUN -> [SKIP][72] ([i915#3297]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-rkl-4/igt@gem_userptr_blits@coherency-sync.html - shard-tglu: NOTRUN -> [SKIP][73] ([i915#3297]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-tglu-6/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@forbidden-operations: - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#3282] / [i915#3297]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-mtlp-6/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#3297]) +3 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-mtlp-6/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#3297] / [i915#4880]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-10/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg1: NOTRUN -> [SKIP][77] ([i915#3297] / [i915#4880]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-16/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#3297]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-3/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-dg1: NOTRUN -> [SKIP][79] ([i915#3297]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-16/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gen9_exec_parse@bb-chained: - shard-dg1: NOTRUN -> [SKIP][80] ([i915#2527]) +2 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-16/igt@gen9_exec_parse@bb-chained.html * igt@gen9_exec_parse@bb-secure: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#2856]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-10/igt@gen9_exec_parse@bb-secure.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-mtlp: NOTRUN -> [SKIP][82] ([i915#2856]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-mtlp-6/igt@gen9_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@secure-batches: - shard-rkl: NOTRUN -> [SKIP][83] ([i915#2527]) +3 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-rkl-4/igt@gen9_exec_parse@secure-batches.html * igt@i915_fb_tiling: - shard-dg1: NOTRUN -> [SKIP][84] ([i915#4881]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-16/igt@i915_fb_tiling.html * igt@i915_module_load@load: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#6227]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-3/igt@i915_module_load@load.html * igt@i915_module_load@reload-with-fault-injection: - shard-rkl: [PASS][86] -> [ABORT][87] ([i915#9820]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15013/shard-rkl-2/igt@i915_module_load@reload-with-fault-injection.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-rkl-1/igt@i915_module_load@reload-with-fault-injection.html - shard-tglu: [PASS][88] -> [ABORT][89] ([i915#9820]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15013/shard-tglu-9/igt@i915_module_load@reload-with-fault-injection.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-tglu-10/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-dg1: NOTRUN -> [SKIP][90] ([i915#6590]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-17/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rps@basic-api: - shard-dg1: NOTRUN -> [SKIP][91] ([i915#6621]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-16/igt@i915_pm_rps@basic-api.html * igt@i915_pm_rps@waitboost: - shard-mtlp: NOTRUN -> [FAIL][92] ([i915#8346]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-mtlp-6/igt@i915_pm_rps@waitboost.html * igt@i915_query@hwconfig_table: - shard-rkl: NOTRUN -> [SKIP][93] ([i915#6245]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-rkl-6/igt@i915_query@hwconfig_table.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#6188]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-10/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_suspend@basic-s3-without-i915: - shard-rkl: NOTRUN -> [FAIL][95] ([i915#10031] / [i915#11279]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-rkl-4/igt@i915_suspend@basic-s3-without-i915.html - shard-tglu: NOTRUN -> [INCOMPLETE][96] ([i915#7443]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-tglu-6/igt@i915_suspend@basic-s3-without-i915.html * igt@intel_hwmon@hwmon-read: - shard-rkl: NOTRUN -> [SKIP][97] ([i915#7707]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-rkl-4/igt@intel_hwmon@hwmon-read.html - shard-tglu: NOTRUN -> [SKIP][98] ([i915#7707]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-tglu-6/igt@intel_hwmon@hwmon-read.html * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - shard-mtlp: NOTRUN -> [SKIP][99] ([i915#4212]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-mtlp-6/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][100] ([i915#4212]) +1 other test skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-10/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][101] ([i915#8709]) +3 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-rkl-6/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#1769] / [i915#3555]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-mtlp: [PASS][103] -> [FAIL][104] ([i915#5138]) +1 other test fail [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15013/shard-mtlp-8/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-mtlp-4/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][105] ([i915#4538] / [i915#5286]) +3 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-16/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][106] ([i915#5286]) +3 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][107] ([i915#3638]) +1 other test skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-17/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][108] ([i915#3638]) +2 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-rkl-6/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][109] +15 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-11/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#4538] / [i915#5190]) +6 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-10/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-mtlp: NOTRUN -> [SKIP][111] +3 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-mtlp-6/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][112] +8 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-tglu-6/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][113] ([i915#4538]) +3 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-17/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_big_joiner@invalid-modeset-force-joiner: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#10656]) +1 other test skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-2/igt@kms_big_joiner@invalid-modeset-force-joiner.html - shard-rkl: NOTRUN -> [SKIP][115] ([i915#10656]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-rkl-4/igt@kms_big_joiner@invalid-modeset-force-joiner.html - shard-dg1: NOTRUN -> [SKIP][116] ([i915#10656]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-17/igt@kms_big_joiner@invalid-modeset-force-joiner.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#10307] / [i915#10434] / [i915#6095]) +5 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-8/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#10307] / [i915#6095]) +173 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-11/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4.html * igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][119] ([i915#6095]) +11 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-tglu-6/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][120] ([i915#6095]) +15 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-mtlp-6/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs@pipe-c-edp-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][121] ([i915#6095]) +73 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-rkl-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][122] ([i915#6095]) +71 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-13/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-rkl: NOTRUN -> [SKIP][123] ([i915#3742]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-rkl-2/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#7213]) +3 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-1/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#4087]) +3 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-8/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html * igt@kms_chamelium_audio@dp-audio: - shard-mtlp: NOTRUN -> [SKIP][126] ([i915#7828]) +1 other test skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-mtlp-6/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_hpd@dp-hpd-after-suspend: - shard-tglu: NOTRUN -> [SKIP][127] ([i915#7828]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-tglu-6/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html * igt@kms_chamelium_hpd@dp-hpd-storm-disable: - shard-dg1: NOTRUN -> [SKIP][128] ([i915#7828]) +6 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-17/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html * igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#7828]) +6 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-11/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html * igt@kms_chamelium_hpd@hdmi-hpd-fast: - shard-rkl: NOTRUN -> [SKIP][130] ([i915#7828]) +8 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-rkl-2/igt@kms_chamelium_hpd@hdmi-hpd-fast.html * igt@kms_color@deep-color: - shard-rkl: NOTRUN -> [SKIP][131] ([i915#3555]) +2 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-rkl-4/igt@kms_color@deep-color.html * igt@kms_content_protection@atomic: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#7118] / [i915#9424]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-8/igt@kms_content_protection@atomic.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg2: NOTRUN -> [SKIP][133] ([i915#3299]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-3/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-rkl: NOTRUN -> [SKIP][134] ([i915#3116]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-rkl-4/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@lic-type-0@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][135] ([i915#7173]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-11/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html * igt@kms_content_protection@mei-interface: - shard-mtlp: NOTRUN -> [SKIP][136] ([i915#8063] / [i915#9433]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-mtlp-6/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-rkl: NOTRUN -> [SKIP][137] ([i915#7118]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-rkl-6/igt@kms_content_protection@srm.html * igt@kms_content_protection@type1: - shard-dg1: NOTRUN -> [SKIP][138] ([i915#7116] / [i915#9424]) +1 other test skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-17/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#3359]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-5/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-mtlp: NOTRUN -> [SKIP][140] ([i915#3359]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-mtlp-6/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-tglu: NOTRUN -> [SKIP][141] ([i915#3555]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-tglu-6/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#3555]) +5 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-10/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-dg1: NOTRUN -> [SKIP][143] ([i915#3555]) +3 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-17/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_crc@cursor-sliding-max-size: - shard-mtlp: NOTRUN -> [SKIP][144] ([i915#3555] / [i915#8814]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-mtlp-6/igt@kms_cursor_crc@cursor-sliding-max-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#5354]) +15 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-10/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#9067]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-10/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-tglu: NOTRUN -> [SKIP][147] ([i915#4103]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-tglu-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#4103] / [i915#4213]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-rkl: NOTRUN -> [SKIP][149] ([i915#4103]) +1 other test skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-rkl-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-dg1: NOTRUN -> [SKIP][150] ([i915#9723]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-16/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_display_modes@extended-mode-basic: - shard-mtlp: NOTRUN -> [SKIP][151] ([i915#3555] / [i915#8827]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-mtlp-6/igt@kms_display_modes@extended-mode-basic.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-rkl: NOTRUN -> [SKIP][152] ([i915#8588]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-rkl-2/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][153] ([i915#3804]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dp_aux_dev: - shard-dg2: [PASS][154] -> [SKIP][155] ([i915#1257]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15013/shard-dg2-11/igt@kms_dp_aux_dev.html [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-1/igt@kms_dp_aux_dev.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][156] ([i915#8812]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-17/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#3555] / [i915#3840]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-3/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-formats: - shard-rkl: NOTRUN -> [SKIP][158] ([i915#3555] / [i915#3840]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-rkl-6/igt@kms_dsc@dsc-with-formats.html * igt@kms_fbcon_fbt@psr: - shard-rkl: NOTRUN -> [SKIP][159] ([i915#3955]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-rkl-4/igt@kms_fbcon_fbt@psr.html - shard-dg1: NOTRUN -> [SKIP][160] ([i915#3469]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-17/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@chamelium: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#4854]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-rkl-2/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-3x: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#1839]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-11/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@psr2: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#658]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-3/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-flip-vs-dpms: - shard-rkl: NOTRUN -> [SKIP][164] +19 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-rkl-2/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][165] ([i915#8381]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-mtlp-6/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-plain-flip: - shard-mtlp: NOTRUN -> [SKIP][166] ([i915#3637]) +1 other test skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-mtlp-6/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-dg1: NOTRUN -> [SKIP][167] ([i915#9934]) +2 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-17/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip@flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#8381]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-3/igt@kms_flip@flip-vs-fences.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][169] ([i915#2672]) +1 other test skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html - shard-dg1: NOTRUN -> [SKIP][170] ([i915#2587] / [i915#2672]) +3 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#2672]) +3 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][172] ([i915#2587] / [i915#2672]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-tglu-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][173] ([i915#2672]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite: - shard-dg2: [PASS][174] -> [FAIL][175] ([i915#6880]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15013/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff: - shard-mtlp: NOTRUN -> [SKIP][176] ([i915#1825]) +6 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][177] +34 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][178] ([i915#8708]) +1 other test skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][179] ([i915#3023]) +20 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#9766]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-10/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#8708]) +13 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt: - shard-dg1: NOTRUN -> [SKIP][182] ([i915#3458]) +9 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#3458]) +8 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][184] ([i915#1825]) +38 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][185] ([i915#8708]) +8 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_hdr@invalid-metadata-sizes: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#3555] / [i915#8228]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-3/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-toggle-dpms: - shard-rkl: NOTRUN -> [SKIP][187] ([i915#3555] / [i915#8228]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-rkl-6/igt@kms_hdr@static-toggle-dpms.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg1: NOTRUN -> [SKIP][188] ([i915#1839]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-16/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@atomic-fastset: - shard-tglu: NOTRUN -> [SKIP][189] ([i915#6301]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-tglu-6/igt@kms_panel_fitting@atomic-fastset.html - shard-rkl: NOTRUN -> [SKIP][190] ([i915#6301]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-rkl-4/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_panel_fitting@legacy: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#6301]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-10/igt@kms_panel_fitting@legacy.html * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][192] ([i915#10647]) +1 other test fail [192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-glk1/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][193] ([i915#8292]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-rkl-6/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#9423]) +7 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][195] ([i915#9423]) +9 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-rkl-3/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][196] ([i915#5176] / [i915#9423]) +1 other test skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-rkl-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][197] ([i915#9423]) +11 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-13/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][198] ([i915#5235]) +9 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#5235] / [i915#9423]) +15 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [SKIP][200] +245 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-glk1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][201] ([i915#5235]) +3 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-17/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-dg2: NOTRUN -> [SKIP][202] ([i915#9685]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-10/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc6-psr: - shard-dg1: NOTRUN -> [SKIP][203] ([i915#9685]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-17/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_dc@dc9-dpms: - shard-tglu: [PASS][204] -> [SKIP][205] ([i915#4281]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15013/shard-tglu-3/igt@kms_pm_dc@dc9-dpms.html [205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-tglu-8/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@screens-disabled: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#8430]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-3/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: [PASS][207] -> [SKIP][208] ([i915#9519]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15013/shard-dg2-4/igt@kms_pm_rpm@dpms-lpsp.html [208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-11/igt@kms_pm_rpm@dpms-lpsp.html - shard-rkl: [PASS][209] -> [SKIP][210] ([i915#9519]) +3 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15013/shard-rkl-5/igt@kms_pm_rpm@dpms-lpsp.html [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-rkl-3/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: NOTRUN -> [SKIP][211] ([i915#9519]) +2 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_prime@basic-crc-hybrid: - shard-rkl: NOTRUN -> [SKIP][212] ([i915#6524]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-rkl-6/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#11520]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-10/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf: - shard-rkl: NOTRUN -> [SKIP][214] ([i915#11520]) +3 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-rkl-2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: - shard-dg1: NOTRUN -> [SKIP][215] ([i915#11520]) +2 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-16/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][216] ([i915#11520]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-tglu-6/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-p010: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#9683]) +1 other test skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-3/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-psr-cursor-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][218] ([i915#9732]) +1 other test skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-tglu-6/igt@kms_psr@fbc-psr-cursor-mmap-cpu.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-rkl: NOTRUN -> [SKIP][219] ([i915#1072] / [i915#9732]) +18 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-rkl-6/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_psr@pr-sprite-plane-onoff: - shard-mtlp: NOTRUN -> [SKIP][220] ([i915#9688]) +3 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-mtlp-6/igt@kms_psr@pr-sprite-plane-onoff.html * igt@kms_psr@psr2-cursor-blt: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#1072] / [i915#9732]) +9 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-3/igt@kms_psr@psr2-cursor-blt.html * igt@kms_psr@psr2-primary-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][222] ([i915#1072] / [i915#9732]) +16 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-16/igt@kms_psr@psr2-primary-mmap-cpu.html * igt@kms_psr@psr2-suspend: - shard-dg2: NOTRUN -> [SKIP][223] ([i915#1072] / [i915#9673] / [i915#9732]) +1 other test skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-11/igt@kms_psr@psr2-suspend.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-rkl: NOTRUN -> [SKIP][224] ([i915#9685]) +1 other test skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-rkl-2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-tglu: NOTRUN -> [SKIP][225] ([i915#9685]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-tglu-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@cursor-rotation-180: - shard-dg1: [PASS][226] -> [DMESG-WARN][227] ([i915#4423]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15013/shard-dg1-15/igt@kms_rotation_crc@cursor-rotation-180.html [227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-16/igt@kms_rotation_crc@cursor-rotation-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-rkl: NOTRUN -> [SKIP][228] ([i915#5289]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg1: NOTRUN -> [SKIP][229] ([i915#5289]) +1 other test skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-17/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-dg2: NOTRUN -> [SKIP][230] ([i915#11131] / [i915#4235]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-3/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2: NOTRUN -> [SKIP][231] ([i915#8623]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-11/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][232] ([i915#9196]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-rkl-6/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-2.html * igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1: - shard-mtlp: [PASS][233] -> [FAIL][234] ([i915#9196]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15013/shard-mtlp-2/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html [234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-mtlp-3/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-4: - shard-dg1: [PASS][235] -> [FAIL][236] ([i915#9196]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15013/shard-dg1-17/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-4.html [236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-14/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-4.html * igt@kms_vrr@flip-basic-fastset: - shard-dg1: NOTRUN -> [SKIP][237] ([i915#9906]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-17/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-mtlp: NOTRUN -> [SKIP][238] ([i915#8808] / [i915#9906]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-mtlp-6/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@kms_writeback@writeback-check-output: - shard-dg2: NOTRUN -> [SKIP][239] ([i915#2437]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-10/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-mtlp: NOTRUN -> [SKIP][240] ([i915#2437] / [i915#9412]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-mtlp-6/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@kms_writeback@writeback-invalid-parameters: - shard-tglu: NOTRUN -> [SKIP][241] ([i915#2437]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-tglu-6/igt@kms_writeback@writeback-invalid-parameters.html - shard-rkl: NOTRUN -> [SKIP][242] ([i915#2437]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-rkl-4/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][243] ([i915#2434]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-3/igt@perf@mi-rpc.html * igt@perf@per-context-mode-unprivileged: - shard-rkl: NOTRUN -> [SKIP][244] ([i915#2435]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-rkl-2/igt@perf@per-context-mode-unprivileged.html * igt@perf_pmu@frequency@gt0: - shard-dg2: NOTRUN -> [FAIL][245] ([i915#6806]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-10/igt@perf_pmu@frequency@gt0.html * igt@perf_pmu@rc6-all-gts: - shard-dg1: NOTRUN -> [SKIP][246] ([i915#8516]) +1 other test skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-17/igt@perf_pmu@rc6-all-gts.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-rkl: NOTRUN -> [SKIP][247] ([i915#8516]) +1 other test skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-rkl-4/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_vgem@basic-fence-flip: - shard-dg1: NOTRUN -> [SKIP][248] ([i915#3708]) +1 other test skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-17/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-mmap: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#3708] / [i915#4077]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-3/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@coherency-gtt: - shard-rkl: NOTRUN -> [SKIP][250] ([i915#3708]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-rkl-4/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-read-hang: - shard-dg2: NOTRUN -> [SKIP][251] ([i915#3708]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-3/igt@prime_vgem@fence-read-hang.html * igt@sriov_basic@bind-unbind-vf: - shard-dg2: NOTRUN -> [SKIP][252] ([i915#9917]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-3/igt@sriov_basic@bind-unbind-vf.html * igt@tools_test@sysfs_l3_parity: - shard-dg2: NOTRUN -> [SKIP][253] ([i915#4818]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-3/igt@tools_test@sysfs_l3_parity.html #### Possible fixes #### * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglu: [FAIL][254] ([i915#2842]) -> [PASS][255] [254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15013/shard-tglu-5/igt@gem_exec_fair@basic-pace-share@rcs0.html [255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-tglu-9/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-dg1: [DMESG-WARN][256] ([i915#1982] / [i915#4391] / [i915#4423]) -> [PASS][257] [256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15013/shard-dg1-16/igt@gem_lmem_evict@dontneed-evict-race.html [257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-15/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@heavy-verify-random@lmem0: - shard-dg2: [FAIL][258] ([i915#10378]) -> [PASS][259] +1 other test pass [258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15013/shard-dg2-4/igt@gem_lmem_swapping@heavy-verify-random@lmem0.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-11/igt@gem_lmem_swapping@heavy-verify-random@lmem0.html * igt@i915_module_load@reload-with-fault-injection: - shard-glk: [ABORT][260] -> [PASS][261] [260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15013/shard-glk7/igt@i915_module_load@reload-with-fault-injection.html [261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-glk5/igt@i915_module_load@reload-with-fault-injection.html - shard-dg2: [ABORT][262] ([i915#9820]) -> [PASS][263] [262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15013/shard-dg2-2/igt@i915_module_load@reload-with-fault-injection.html [263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_power@sanity: - shard-mtlp: [SKIP][264] ([i915#7984]) -> [PASS][265] [264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15013/shard-mtlp-1/igt@i915_power@sanity.html [265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-mtlp-6/igt@i915_power@sanity.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [FAIL][266] ([i915#2346]) -> [PASS][267] [266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15013/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg2: [SKIP][268] ([i915#9519]) -> [PASS][269] +2 other tests pass [268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15013/shard-dg2-6/igt@kms_pm_rpm@modeset-lpsp.html [269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [SKIP][270] ([i915#9519]) -> [PASS][271] [270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15013/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1: - shard-tglu: [FAIL][272] ([i915#9196]) -> [PASS][273] [272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15013/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-tglu-5/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1: - shard-mtlp: [FAIL][274] ([i915#9196]) -> [PASS][275] +1 other test pass [274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15013/shard-mtlp-2/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html [275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-mtlp-3/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-4: - shard-dg1: [FAIL][276] ([i915#9196]) -> [PASS][277] [276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15013/shard-dg1-17/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-4.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-14/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-4.html #### Warnings #### * igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0: - shard-dg1: [SKIP][278] ([i915#4565]) -> [SKIP][279] ([i915#4423] / [i915#4565]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15013/shard-dg1-15/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html [279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-16/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html * igt@i915_module_load@reload-with-fault-injection: - shard-mtlp: [ABORT][280] ([i915#10131] / [i915#10887]) -> [ABORT][281] ([i915#10131] / [i915#9697]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15013/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html [281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-4: - shard-dg1: [SKIP][282] ([i915#4423] / [i915#6095]) -> [SKIP][283] ([i915#6095]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15013/shard-dg1-16/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-4.html [283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-15/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-4.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-dg1: [SKIP][284] ([i915#3555]) -> [SKIP][285] ([i915#3555] / [i915#4423]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15013/shard-dg1-15/igt@kms_cursor_crc@cursor-onscreen-32x32.html [285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-16/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-tglu: [SKIP][286] ([i915#3359]) -> [SKIP][287] ([i915#11453] / [i915#3359]) +9 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15013/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-512x512.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-tglu-5/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_feature_discovery@psr1: - shard-dg1: [SKIP][288] ([i915#4423] / [i915#658]) -> [SKIP][289] ([i915#658]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15013/shard-dg1-16/igt@kms_feature_discovery@psr1.html [289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-15/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-flip-vs-panning: - shard-dg1: [SKIP][290] ([i915#9934]) -> [SKIP][291] ([i915#4423] / [i915#9934]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15013/shard-dg1-15/igt@kms_flip@2x-flip-vs-panning.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-16/igt@kms_flip@2x-flip-vs-panning.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-dg1: [SKIP][292] ([i915#8708]) -> [SKIP][293] ([i915#4423] / [i915#8708]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15013/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-cpu: - shard-dg1: [SKIP][294] ([i915#4423]) -> [SKIP][295] [294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15013/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-cpu.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite: - shard-dg2: [SKIP][296] ([i915#10433] / [i915#3458]) -> [SKIP][297] ([i915#3458]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15013/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_hdr@invalid-metadata-sizes: - shard-dg1: [SKIP][298] ([i915#3555] / [i915#8228]) -> [SKIP][299] ([i915#3555] / [i915#4423] / [i915#8228]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15013/shard-dg1-15/igt@kms_hdr@invalid-metadata-sizes.html [299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg1-16/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_psr@fbc-psr-primary-blt: - shard-dg2: [SKIP][300] ([i915#1072] / [i915#9732]) -> [SKIP][301] ([i915#1072] / [i915#9673] / [i915#9732]) +12 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15013/shard-dg2-2/igt@kms_psr@fbc-psr-primary-blt.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-11/igt@kms_psr@fbc-psr-primary-blt.html * igt@kms_psr@psr-cursor-render: - shard-dg2: [SKIP][302] ([i915#1072] / [i915#9673] / [i915#9732]) -> [SKIP][303] ([i915#1072] / [i915#9732]) +15 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15013/shard-dg2-11/igt@kms_psr@psr-cursor-render.html [303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-8/igt@kms_psr@psr-cursor-render.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2: [SKIP][304] ([i915#4235] / [i915#5190]) -> [SKIP][305] ([i915#11131] / [i915#4235] / [i915#5190]) +2 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15013/shard-dg2-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html [305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: [SKIP][306] ([i915#4235]) -> [SKIP][307] ([i915#11131] / [i915#4235]) +4 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15013/shard-dg2-6/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-dg2-10/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_tiled_display@basic-test-pattern: - shard-glk: [FAIL][308] ([i915#10959]) -> [SKIP][309] [308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15013/shard-glk5/igt@kms_tiled_display@basic-test-pattern.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135657v1/shard-glk8/igt@kms_tiled_display@basic-test-pattern.html [i915#10029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10029 [i915#10031]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10031 [i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10378 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10729]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10729 [i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887 [i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11131 [i915#11279]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11279 [i915#11453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453 [i915#11462]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11462 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 [i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346 [i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434 [i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435 [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4087 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281 [i915#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881 [i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885 [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493 [i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6188]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6188 [i915#6227]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6227 [i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#6806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6806 [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880 [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173 [i915#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213 [i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276 [i915#7443]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984 [i915#8063]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8063 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8292]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8292 [i915#8346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8346 [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562 [i915#8588]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8588 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709 [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808 [i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#8827]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8827 [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067 [i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196 [i915#9310]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9310 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412 [i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433 [i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519 [i915#9673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9697 [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766 [i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820 [i915#9846]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9846 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * Linux: CI_DRM_15013 -> Patchwork_135657v1 CI-20190529: 20190529 CI_DRM_15013: 0318a12ff6fb8c321458aa2b373e9322896ee951 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7906: ae91ba26f657bf11264f64bd2dc21f471a5d18f5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_135657v1: 0318a12ff6fb8c321458aa2b373e9322896ee951 @ 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_135657v1/index.html [-- Attachment #2: Type: text/html, Size: 106471 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v3 1/2] drm/xe/bmg: implement Wa_16023588340 2024-07-02 15:06 [PATCH v3 1/2] drm/xe/bmg: implement Wa_16023588340 Matthew Auld ` (3 preceding siblings ...) 2024-07-02 21:15 ` ✗ Fi.CI.IGT: failure " Patchwork @ 2024-07-03 9:24 ` Thomas Hellström 2024-07-03 9:41 ` Matthew Auld 4 siblings, 1 reply; 7+ messages in thread From: Thomas Hellström @ 2024-07-03 9:24 UTC (permalink / raw) To: Matthew Auld, intel-xe Cc: intel-gfx, Jonathan Cavitt, Matt Roper, Lucas De Marchi, Vinod Govindapillai Hi, Matt On Tue, 2024-07-02 at 16:06 +0100, Matthew Auld wrote: > This involves enabling l2 caching of host side memory access to VRAM > through the CPU BAR. The main fallout here is with display since VRAM > writes from CPU can now be cached in GPU l2, and display is never > coherent with caches, so needs various manual flushing. In the case > of > fbc we disable it due to complications in getting this to work > correctly (in a later patch). What about user-space accesses to framebuffers? /Thomas > > Signed-off-by: Matthew Auld <matthew.auld@intel.com> > Cc: Jonathan Cavitt <jonathan.cavitt@intel.com> > Cc: Matt Roper <matthew.d.roper@intel.com> > Cc: Lucas De Marchi <lucas.demarchi@intel.com> > Cc: Vinod Govindapillai <vinod.govindapillai@intel.com> > Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com> > --- > drivers/gpu/drm/xe/Makefile | 2 + > drivers/gpu/drm/xe/display/xe_dsb_buffer.c | 8 ++++ > drivers/gpu/drm/xe/display/xe_fb_pin.c | 3 ++ > drivers/gpu/drm/xe/regs/xe_gt_regs.h | 8 ++++ > drivers/gpu/drm/xe/xe_device.c | 30 ++++++++++++ > drivers/gpu/drm/xe/xe_device.h | 1 + > drivers/gpu/drm/xe/xe_gt.c | 54 > ++++++++++++++++++++++ > drivers/gpu/drm/xe/xe_pat.c | 11 ++++- > drivers/gpu/drm/xe/xe_wa_oob.rules | 1 + > 9 files changed, 117 insertions(+), 1 deletion(-) > > diff --git a/drivers/gpu/drm/xe/Makefile > b/drivers/gpu/drm/xe/Makefile > index b1e03bfe4a68..970c5c09e20a 100644 > --- a/drivers/gpu/drm/xe/Makefile > +++ b/drivers/gpu/drm/xe/Makefile > @@ -25,12 +25,14 @@ $(obj)/generated/%_wa_oob.c > $(obj)/generated/%_wa_oob.h: $(obj)/xe_gen_wa_oob \ > > uses_generated_oob := \ > $(obj)/xe_ggtt.o \ > + $(obj)/xe_device.o \ > $(obj)/xe_gsc.o \ > $(obj)/xe_gt.o \ > $(obj)/xe_guc.o \ > $(obj)/xe_guc_ads.o \ > $(obj)/xe_guc_pc.o \ > $(obj)/xe_migrate.o \ > + $(obj)/xe_pat.o \ > $(obj)/xe_ring_ops.o \ > $(obj)/xe_vm.o \ > $(obj)/xe_wa.o \ > diff --git a/drivers/gpu/drm/xe/display/xe_dsb_buffer.c > b/drivers/gpu/drm/xe/display/xe_dsb_buffer.c > index 9e860c61f4b3..ccd0d87d438a 100644 > --- a/drivers/gpu/drm/xe/display/xe_dsb_buffer.c > +++ b/drivers/gpu/drm/xe/display/xe_dsb_buffer.c > @@ -7,6 +7,8 @@ > #include "intel_display_types.h" > #include "intel_dsb_buffer.h" > #include "xe_bo.h" > +#include "xe_device.h" > +#include "xe_device_types.h" > #include "xe_gt.h" > > u32 intel_dsb_buffer_ggtt_offset(struct intel_dsb_buffer *dsb_buf) > @@ -16,7 +18,10 @@ u32 intel_dsb_buffer_ggtt_offset(struct > intel_dsb_buffer *dsb_buf) > > void intel_dsb_buffer_write(struct intel_dsb_buffer *dsb_buf, u32 > idx, u32 val) > { > + struct xe_device *xe = dsb_buf->vma->bo->tile->xe; > + > iosys_map_wr(&dsb_buf->vma->bo->vmap, idx * 4, u32, val); > + xe_device_l2_flush(xe); > } > > u32 intel_dsb_buffer_read(struct intel_dsb_buffer *dsb_buf, u32 idx) > @@ -26,9 +31,12 @@ u32 intel_dsb_buffer_read(struct intel_dsb_buffer > *dsb_buf, u32 idx) > > void intel_dsb_buffer_memset(struct intel_dsb_buffer *dsb_buf, u32 > idx, u32 val, size_t size) > { > + struct xe_device *xe = dsb_buf->vma->bo->tile->xe; > + > WARN_ON(idx > (dsb_buf->buf_size - size) / sizeof(*dsb_buf- > >cmd_buf)); > > iosys_map_memset(&dsb_buf->vma->bo->vmap, idx * 4, val, > size); > + xe_device_l2_flush(xe); > } > > bool intel_dsb_buffer_create(struct intel_crtc *crtc, struct > intel_dsb_buffer *dsb_buf, size_t size) > diff --git a/drivers/gpu/drm/xe/display/xe_fb_pin.c > b/drivers/gpu/drm/xe/display/xe_fb_pin.c > index 423f367c7065..d7db44e79eaf 100644 > --- a/drivers/gpu/drm/xe/display/xe_fb_pin.c > +++ b/drivers/gpu/drm/xe/display/xe_fb_pin.c > @@ -10,6 +10,7 @@ > #include "intel_fb.h" > #include "intel_fb_pin.h" > #include "xe_bo.h" > +#include "xe_device.h" > #include "xe_ggtt.h" > #include "xe_gt.h" > #include "xe_pm.h" > @@ -304,6 +305,8 @@ static struct i915_vma *__xe_pin_fb_vma(const > struct intel_framebuffer *fb, > if (ret) > goto err_unpin; > > + /* Ensure DPT writes are flushed */ > + xe_device_l2_flush(xe); > return vma; > > err_unpin: > diff --git a/drivers/gpu/drm/xe/regs/xe_gt_regs.h > b/drivers/gpu/drm/xe/regs/xe_gt_regs.h > index d44564bad009..fd9d94174efb 100644 > --- a/drivers/gpu/drm/xe/regs/xe_gt_regs.h > +++ b/drivers/gpu/drm/xe/regs/xe_gt_regs.h > @@ -80,6 +80,9 @@ > #define LE_CACHEABILITY_MASK REG_GENMASK(1, 0) > #define > LE_CACHEABILITY(value) REG_FIELD_PREP(LE_CACHEABILITY_MASK, value) > > +#define XE2_GAMREQSTRM_CTRL XE_REG(0x4194) > +#define CG_DIS_CNTLBUS REG_BIT(6) > + > #define CCS_AUX_INV XE_REG(0x4208) > > #define VD0_AUX_INV XE_REG(0x4218) > @@ -372,6 +375,11 @@ > > #define XEHPC_L3CLOS_MASK(i) XE_REG_MCR(0xb194 + > (i) * 8) > > +#define XE2_GLOBAL_INVAL XE_REG(0xb404) > + > +#define SCRATCH1LPFC XE_REG(0xb474) > +#define EN_L3_RW_CCS_CACHE_FLUSH REG_BIT(0) > + > #define XE2LPM_L3SQCREG5 XE_REG_MCR(0xb658) > > #define XE2_TDF_CTRL XE_REG(0xb418) > diff --git a/drivers/gpu/drm/xe/xe_device.c > b/drivers/gpu/drm/xe/xe_device.c > index cfda7cb5df2c..b0f79ef6bce1 100644 > --- a/drivers/gpu/drm/xe/xe_device.c > +++ b/drivers/gpu/drm/xe/xe_device.c > @@ -54,6 +54,9 @@ > #include "xe_vm.h" > #include "xe_vram.h" > #include "xe_wait_user_fence.h" > +#include "xe_wa.h" > + > +#include <generated/xe_wa_oob.h> > > static int xe_file_open(struct drm_device *dev, struct drm_file > *file) > { > @@ -779,6 +782,11 @@ void xe_device_td_flush(struct xe_device *xe) > if (!IS_DGFX(xe) || GRAPHICS_VER(xe) < 20) > return; > > + if (XE_WA(xe_root_mmio_gt(xe), 16023588340)) { > + xe_device_l2_flush(xe); > + return; > + } > + > for_each_gt(gt, xe, id) { > if (xe_gt_is_media_type(gt)) > continue; > @@ -802,6 +810,28 @@ void xe_device_td_flush(struct xe_device *xe) > } > } > > +void xe_device_l2_flush(struct xe_device *xe) > +{ > + struct xe_gt *gt; > + int err; > + > + gt = xe_root_mmio_gt(xe); > + > + if (!XE_WA(gt, 16023588340)) > + return; > + > + err = xe_force_wake_get(gt_to_fw(gt), XE_FW_GT); > + if (err) > + return; > + > + xe_mmio_write32(gt, XE2_GLOBAL_INVAL, 0x1); > + > + if (xe_mmio_wait32(gt, XE2_GLOBAL_INVAL, 0x1, 0x0, 150, > NULL, true)) > + xe_gt_err_once(gt, "Global invalidation timeout\n"); > + > + xe_force_wake_put(gt_to_fw(gt), XE_FW_GT); > +} > + > u32 xe_device_ccs_bytes(struct xe_device *xe, u64 size) > { > return xe_device_has_flat_ccs(xe) ? > diff --git a/drivers/gpu/drm/xe/xe_device.h > b/drivers/gpu/drm/xe/xe_device.h > index bb07f5669dbb..0a2a3e7fd402 100644 > --- a/drivers/gpu/drm/xe/xe_device.h > +++ b/drivers/gpu/drm/xe/xe_device.h > @@ -162,6 +162,7 @@ u64 xe_device_canonicalize_addr(struct xe_device > *xe, u64 address); > u64 xe_device_uncanonicalize_addr(struct xe_device *xe, u64 > address); > > void xe_device_td_flush(struct xe_device *xe); > +void xe_device_l2_flush(struct xe_device *xe); > > static inline bool xe_device_wedged(struct xe_device *xe) > { > diff --git a/drivers/gpu/drm/xe/xe_gt.c b/drivers/gpu/drm/xe/xe_gt.c > index 29e8ea94d05e..006d3594ba55 100644 > --- a/drivers/gpu/drm/xe/xe_gt.c > +++ b/drivers/gpu/drm/xe/xe_gt.c > @@ -11,6 +11,8 @@ > #include <drm/xe_drm.h> > #include <generated/xe_wa_oob.h> > > +#include <generated/xe_wa_oob.h> > + > #include "instructions/xe_gfxpipe_commands.h" > #include "instructions/xe_mi_commands.h" > #include "regs/xe_gt_regs.h" > @@ -95,6 +97,51 @@ void xe_gt_sanitize(struct xe_gt *gt) > gt->uc.guc.submission_state.enabled = false; > } > > +static void xe_gt_enable_host_l2_vram(struct xe_gt *gt) > +{ > + u32 reg; > + int err; > + > + if (!XE_WA(gt, 16023588340)) > + return; > + > + err = xe_force_wake_get(gt_to_fw(gt), XE_FW_GT); > + if (WARN_ON(err)) > + return; > + > + if (!xe_gt_is_media_type(gt)) { > + xe_mmio_write32(gt, SCRATCH1LPFC, > EN_L3_RW_CCS_CACHE_FLUSH); > + reg = xe_mmio_read32(gt, XE2_GAMREQSTRM_CTRL); > + reg |= CG_DIS_CNTLBUS; > + xe_mmio_write32(gt, XE2_GAMREQSTRM_CTRL, reg); > + } > + > + xe_gt_mcr_multicast_write(gt, XEHPC_L3CLOS_MASK(3), 0x3); > + xe_force_wake_put(gt_to_fw(gt), XE_FW_GT); > +} > + > +static void xe_gt_disable_host_l2_vram(struct xe_gt *gt) > +{ > + u32 reg; > + int err; > + > + if (!XE_WA(gt, 16023588340)) > + return; > + > + if (xe_gt_is_media_type(gt)) > + return; > + > + err = xe_force_wake_get(gt_to_fw(gt), XE_FW_GT); > + if (WARN_ON(err)) > + return; > + > + reg = xe_mmio_read32(gt, XE2_GAMREQSTRM_CTRL); > + reg &= ~CG_DIS_CNTLBUS; > + xe_mmio_write32(gt, XE2_GAMREQSTRM_CTRL, reg); > + > + xe_force_wake_put(gt_to_fw(gt), XE_FW_GT); > +} > + > /** > * xe_gt_remove() - Clean up the GT structures before driver removal > * @gt: the GT object > @@ -111,6 +158,8 @@ void xe_gt_remove(struct xe_gt *gt) > > for (i = 0; i < XE_ENGINE_CLASS_MAX; ++i) > xe_hw_fence_irq_finish(>->fence_irq[i]); > + > + xe_gt_disable_host_l2_vram(gt); > } > > static void gt_reset_worker(struct work_struct *w); > @@ -508,6 +557,7 @@ int xe_gt_init_hwconfig(struct xe_gt *gt) > > xe_gt_mcr_init_early(gt); > xe_pat_init(gt); > + xe_gt_enable_host_l2_vram(gt); > > err = xe_uc_init(>->uc); > if (err) > @@ -643,6 +693,8 @@ static int do_gt_restart(struct xe_gt *gt) > > xe_pat_init(gt); > > + xe_gt_enable_host_l2_vram(gt); > + > xe_gt_mcr_set_implicit_defaults(gt); > xe_reg_sr_apply_mmio(>->reg_sr, gt); > > @@ -796,6 +848,8 @@ int xe_gt_suspend(struct xe_gt *gt) > > xe_gt_idle_disable_pg(gt); > > + xe_gt_disable_host_l2_vram(gt); > + > XE_WARN_ON(xe_force_wake_put(gt_to_fw(gt), > XE_FORCEWAKE_ALL)); > xe_gt_dbg(gt, "suspended\n"); > > diff --git a/drivers/gpu/drm/xe/xe_pat.c > b/drivers/gpu/drm/xe/xe_pat.c > index 4ee32ee1cc88..722278cc23fc 100644 > --- a/drivers/gpu/drm/xe/xe_pat.c > +++ b/drivers/gpu/drm/xe/xe_pat.c > @@ -7,6 +7,8 @@ > > #include <drm/xe_drm.h> > > +#include <generated/xe_wa_oob.h> > + > #include "regs/xe_reg_defs.h" > #include "xe_assert.h" > #include "xe_device.h" > @@ -15,6 +17,7 @@ > #include "xe_gt_mcr.h" > #include "xe_mmio.h" > #include "xe_sriov.h" > +#include "xe_wa.h" > > #define _PAT_ATS 0x47fc > #define > _PAT_INDEX(index) _PICK_EVEN_2RANGES(index, 8, \ > @@ -382,7 +385,13 @@ void xe_pat_init_early(struct xe_device *xe) > if (GRAPHICS_VER(xe) == 20) { > xe->pat.ops = &xe2_pat_ops; > xe->pat.table = xe2_pat_table; > - xe->pat.n_entries = ARRAY_SIZE(xe2_pat_table); > + > + /* Wa_16023588340. XXX: Should use XE_WA */ > + if (GRAPHICS_VERx100(xe) == 2001) > + xe->pat.n_entries = 28; /* Disable CLOS3 */ > + else > + xe->pat.n_entries = > ARRAY_SIZE(xe2_pat_table); > + > xe->pat.idx[XE_CACHE_NONE] = 3; > xe->pat.idx[XE_CACHE_WT] = 15; > xe->pat.idx[XE_CACHE_WB] = 2; > diff --git a/drivers/gpu/drm/xe/xe_wa_oob.rules > b/drivers/gpu/drm/xe/xe_wa_oob.rules > index a6b897030fde..c6d8941621c6 100644 > --- a/drivers/gpu/drm/xe/xe_wa_oob.rules > +++ b/drivers/gpu/drm/xe/xe_wa_oob.rules > @@ -28,3 +28,4 @@ > GRAPHICS_VERSION(2004) > 13011645652 GRAPHICS_VERSION(2004) > 22019338487 MEDIA_VERSION(2000) > +16023588340 GRAPHICS_VERSION(2001) ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v3 1/2] drm/xe/bmg: implement Wa_16023588340 2024-07-03 9:24 ` [PATCH v3 1/2] " Thomas Hellström @ 2024-07-03 9:41 ` Matthew Auld 0 siblings, 0 replies; 7+ messages in thread From: Matthew Auld @ 2024-07-03 9:41 UTC (permalink / raw) To: Thomas Hellström, intel-xe Cc: intel-gfx, Jonathan Cavitt, Matt Roper, Lucas De Marchi, Vinod Govindapillai Hi, On 03/07/2024 10:24, Thomas Hellström wrote: > Hi, Matt > > On Tue, 2024-07-02 at 16:06 +0100, Matthew Auld wrote: >> This involves enabling l2 caching of host side memory access to VRAM >> through the CPU BAR. The main fallout here is with display since VRAM >> writes from CPU can now be cached in GPU l2, and display is never >> coherent with caches, so needs various manual flushing. In the case >> of >> fbc we disable it due to complications in getting this to work >> correctly (in a later patch). > > What about user-space accesses to framebuffers? There should be a manual flush of entire l2 before flip etc. For simplicity we piggy back off of xe_device_td_flush() which should already be called in the right places from i915-display. With td_flush we were already flushing l2, but only cache entries marked as transient display. > > /Thomas > > >> >> Signed-off-by: Matthew Auld <matthew.auld@intel.com> >> Cc: Jonathan Cavitt <jonathan.cavitt@intel.com> >> Cc: Matt Roper <matthew.d.roper@intel.com> >> Cc: Lucas De Marchi <lucas.demarchi@intel.com> >> Cc: Vinod Govindapillai <vinod.govindapillai@intel.com> >> Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com> >> --- >> drivers/gpu/drm/xe/Makefile | 2 + >> drivers/gpu/drm/xe/display/xe_dsb_buffer.c | 8 ++++ >> drivers/gpu/drm/xe/display/xe_fb_pin.c | 3 ++ >> drivers/gpu/drm/xe/regs/xe_gt_regs.h | 8 ++++ >> drivers/gpu/drm/xe/xe_device.c | 30 ++++++++++++ >> drivers/gpu/drm/xe/xe_device.h | 1 + >> drivers/gpu/drm/xe/xe_gt.c | 54 >> ++++++++++++++++++++++ >> drivers/gpu/drm/xe/xe_pat.c | 11 ++++- >> drivers/gpu/drm/xe/xe_wa_oob.rules | 1 + >> 9 files changed, 117 insertions(+), 1 deletion(-) >> >> diff --git a/drivers/gpu/drm/xe/Makefile >> b/drivers/gpu/drm/xe/Makefile >> index b1e03bfe4a68..970c5c09e20a 100644 >> --- a/drivers/gpu/drm/xe/Makefile >> +++ b/drivers/gpu/drm/xe/Makefile >> @@ -25,12 +25,14 @@ $(obj)/generated/%_wa_oob.c >> $(obj)/generated/%_wa_oob.h: $(obj)/xe_gen_wa_oob \ >> >> uses_generated_oob := \ >> $(obj)/xe_ggtt.o \ >> + $(obj)/xe_device.o \ >> $(obj)/xe_gsc.o \ >> $(obj)/xe_gt.o \ >> $(obj)/xe_guc.o \ >> $(obj)/xe_guc_ads.o \ >> $(obj)/xe_guc_pc.o \ >> $(obj)/xe_migrate.o \ >> + $(obj)/xe_pat.o \ >> $(obj)/xe_ring_ops.o \ >> $(obj)/xe_vm.o \ >> $(obj)/xe_wa.o \ >> diff --git a/drivers/gpu/drm/xe/display/xe_dsb_buffer.c >> b/drivers/gpu/drm/xe/display/xe_dsb_buffer.c >> index 9e860c61f4b3..ccd0d87d438a 100644 >> --- a/drivers/gpu/drm/xe/display/xe_dsb_buffer.c >> +++ b/drivers/gpu/drm/xe/display/xe_dsb_buffer.c >> @@ -7,6 +7,8 @@ >> #include "intel_display_types.h" >> #include "intel_dsb_buffer.h" >> #include "xe_bo.h" >> +#include "xe_device.h" >> +#include "xe_device_types.h" >> #include "xe_gt.h" >> >> u32 intel_dsb_buffer_ggtt_offset(struct intel_dsb_buffer *dsb_buf) >> @@ -16,7 +18,10 @@ u32 intel_dsb_buffer_ggtt_offset(struct >> intel_dsb_buffer *dsb_buf) >> >> void intel_dsb_buffer_write(struct intel_dsb_buffer *dsb_buf, u32 >> idx, u32 val) >> { >> + struct xe_device *xe = dsb_buf->vma->bo->tile->xe; >> + >> iosys_map_wr(&dsb_buf->vma->bo->vmap, idx * 4, u32, val); >> + xe_device_l2_flush(xe); >> } >> >> u32 intel_dsb_buffer_read(struct intel_dsb_buffer *dsb_buf, u32 idx) >> @@ -26,9 +31,12 @@ u32 intel_dsb_buffer_read(struct intel_dsb_buffer >> *dsb_buf, u32 idx) >> >> void intel_dsb_buffer_memset(struct intel_dsb_buffer *dsb_buf, u32 >> idx, u32 val, size_t size) >> { >> + struct xe_device *xe = dsb_buf->vma->bo->tile->xe; >> + >> WARN_ON(idx > (dsb_buf->buf_size - size) / sizeof(*dsb_buf- >>> cmd_buf)); >> >> iosys_map_memset(&dsb_buf->vma->bo->vmap, idx * 4, val, >> size); >> + xe_device_l2_flush(xe); >> } >> >> bool intel_dsb_buffer_create(struct intel_crtc *crtc, struct >> intel_dsb_buffer *dsb_buf, size_t size) >> diff --git a/drivers/gpu/drm/xe/display/xe_fb_pin.c >> b/drivers/gpu/drm/xe/display/xe_fb_pin.c >> index 423f367c7065..d7db44e79eaf 100644 >> --- a/drivers/gpu/drm/xe/display/xe_fb_pin.c >> +++ b/drivers/gpu/drm/xe/display/xe_fb_pin.c >> @@ -10,6 +10,7 @@ >> #include "intel_fb.h" >> #include "intel_fb_pin.h" >> #include "xe_bo.h" >> +#include "xe_device.h" >> #include "xe_ggtt.h" >> #include "xe_gt.h" >> #include "xe_pm.h" >> @@ -304,6 +305,8 @@ static struct i915_vma *__xe_pin_fb_vma(const >> struct intel_framebuffer *fb, >> if (ret) >> goto err_unpin; >> >> + /* Ensure DPT writes are flushed */ >> + xe_device_l2_flush(xe); >> return vma; >> >> err_unpin: >> diff --git a/drivers/gpu/drm/xe/regs/xe_gt_regs.h >> b/drivers/gpu/drm/xe/regs/xe_gt_regs.h >> index d44564bad009..fd9d94174efb 100644 >> --- a/drivers/gpu/drm/xe/regs/xe_gt_regs.h >> +++ b/drivers/gpu/drm/xe/regs/xe_gt_regs.h >> @@ -80,6 +80,9 @@ >> #define LE_CACHEABILITY_MASK REG_GENMASK(1, 0) >> #define >> LE_CACHEABILITY(value) REG_FIELD_PREP(LE_CACHEABILITY_MASK, value) >> >> +#define XE2_GAMREQSTRM_CTRL XE_REG(0x4194) >> +#define CG_DIS_CNTLBUS REG_BIT(6) >> + >> #define CCS_AUX_INV XE_REG(0x4208) >> >> #define VD0_AUX_INV XE_REG(0x4218) >> @@ -372,6 +375,11 @@ >> >> #define XEHPC_L3CLOS_MASK(i) XE_REG_MCR(0xb194 + >> (i) * 8) >> >> +#define XE2_GLOBAL_INVAL XE_REG(0xb404) >> + >> +#define SCRATCH1LPFC XE_REG(0xb474) >> +#define EN_L3_RW_CCS_CACHE_FLUSH REG_BIT(0) >> + >> #define XE2LPM_L3SQCREG5 XE_REG_MCR(0xb658) >> >> #define XE2_TDF_CTRL XE_REG(0xb418) >> diff --git a/drivers/gpu/drm/xe/xe_device.c >> b/drivers/gpu/drm/xe/xe_device.c >> index cfda7cb5df2c..b0f79ef6bce1 100644 >> --- a/drivers/gpu/drm/xe/xe_device.c >> +++ b/drivers/gpu/drm/xe/xe_device.c >> @@ -54,6 +54,9 @@ >> #include "xe_vm.h" >> #include "xe_vram.h" >> #include "xe_wait_user_fence.h" >> +#include "xe_wa.h" >> + >> +#include <generated/xe_wa_oob.h> >> >> static int xe_file_open(struct drm_device *dev, struct drm_file >> *file) >> { >> @@ -779,6 +782,11 @@ void xe_device_td_flush(struct xe_device *xe) >> if (!IS_DGFX(xe) || GRAPHICS_VER(xe) < 20) >> return; >> >> + if (XE_WA(xe_root_mmio_gt(xe), 16023588340)) { >> + xe_device_l2_flush(xe); >> + return; >> + } >> + >> for_each_gt(gt, xe, id) { >> if (xe_gt_is_media_type(gt)) >> continue; >> @@ -802,6 +810,28 @@ void xe_device_td_flush(struct xe_device *xe) >> } >> } >> >> +void xe_device_l2_flush(struct xe_device *xe) >> +{ >> + struct xe_gt *gt; >> + int err; >> + >> + gt = xe_root_mmio_gt(xe); >> + >> + if (!XE_WA(gt, 16023588340)) >> + return; >> + >> + err = xe_force_wake_get(gt_to_fw(gt), XE_FW_GT); >> + if (err) >> + return; >> + >> + xe_mmio_write32(gt, XE2_GLOBAL_INVAL, 0x1); >> + >> + if (xe_mmio_wait32(gt, XE2_GLOBAL_INVAL, 0x1, 0x0, 150, >> NULL, true)) >> + xe_gt_err_once(gt, "Global invalidation timeout\n"); >> + >> + xe_force_wake_put(gt_to_fw(gt), XE_FW_GT); >> +} >> + >> u32 xe_device_ccs_bytes(struct xe_device *xe, u64 size) >> { >> return xe_device_has_flat_ccs(xe) ? >> diff --git a/drivers/gpu/drm/xe/xe_device.h >> b/drivers/gpu/drm/xe/xe_device.h >> index bb07f5669dbb..0a2a3e7fd402 100644 >> --- a/drivers/gpu/drm/xe/xe_device.h >> +++ b/drivers/gpu/drm/xe/xe_device.h >> @@ -162,6 +162,7 @@ u64 xe_device_canonicalize_addr(struct xe_device >> *xe, u64 address); >> u64 xe_device_uncanonicalize_addr(struct xe_device *xe, u64 >> address); >> >> void xe_device_td_flush(struct xe_device *xe); >> +void xe_device_l2_flush(struct xe_device *xe); >> >> static inline bool xe_device_wedged(struct xe_device *xe) >> { >> diff --git a/drivers/gpu/drm/xe/xe_gt.c b/drivers/gpu/drm/xe/xe_gt.c >> index 29e8ea94d05e..006d3594ba55 100644 >> --- a/drivers/gpu/drm/xe/xe_gt.c >> +++ b/drivers/gpu/drm/xe/xe_gt.c >> @@ -11,6 +11,8 @@ >> #include <drm/xe_drm.h> >> #include <generated/xe_wa_oob.h> >> >> +#include <generated/xe_wa_oob.h> >> + >> #include "instructions/xe_gfxpipe_commands.h" >> #include "instructions/xe_mi_commands.h" >> #include "regs/xe_gt_regs.h" >> @@ -95,6 +97,51 @@ void xe_gt_sanitize(struct xe_gt *gt) >> gt->uc.guc.submission_state.enabled = false; >> } >> >> +static void xe_gt_enable_host_l2_vram(struct xe_gt *gt) >> +{ >> + u32 reg; >> + int err; >> + >> + if (!XE_WA(gt, 16023588340)) >> + return; >> + >> + err = xe_force_wake_get(gt_to_fw(gt), XE_FW_GT); >> + if (WARN_ON(err)) >> + return; >> + >> + if (!xe_gt_is_media_type(gt)) { >> + xe_mmio_write32(gt, SCRATCH1LPFC, >> EN_L3_RW_CCS_CACHE_FLUSH); >> + reg = xe_mmio_read32(gt, XE2_GAMREQSTRM_CTRL); >> + reg |= CG_DIS_CNTLBUS; >> + xe_mmio_write32(gt, XE2_GAMREQSTRM_CTRL, reg); >> + } >> + >> + xe_gt_mcr_multicast_write(gt, XEHPC_L3CLOS_MASK(3), 0x3); >> + xe_force_wake_put(gt_to_fw(gt), XE_FW_GT); >> +} >> + >> +static void xe_gt_disable_host_l2_vram(struct xe_gt *gt) >> +{ >> + u32 reg; >> + int err; >> + >> + if (!XE_WA(gt, 16023588340)) >> + return; >> + >> + if (xe_gt_is_media_type(gt)) >> + return; >> + >> + err = xe_force_wake_get(gt_to_fw(gt), XE_FW_GT); >> + if (WARN_ON(err)) >> + return; >> + >> + reg = xe_mmio_read32(gt, XE2_GAMREQSTRM_CTRL); >> + reg &= ~CG_DIS_CNTLBUS; >> + xe_mmio_write32(gt, XE2_GAMREQSTRM_CTRL, reg); >> + >> + xe_force_wake_put(gt_to_fw(gt), XE_FW_GT); >> +} >> + >> /** >> * xe_gt_remove() - Clean up the GT structures before driver removal >> * @gt: the GT object >> @@ -111,6 +158,8 @@ void xe_gt_remove(struct xe_gt *gt) >> >> for (i = 0; i < XE_ENGINE_CLASS_MAX; ++i) >> xe_hw_fence_irq_finish(>->fence_irq[i]); >> + >> + xe_gt_disable_host_l2_vram(gt); >> } >> >> static void gt_reset_worker(struct work_struct *w); >> @@ -508,6 +557,7 @@ int xe_gt_init_hwconfig(struct xe_gt *gt) >> >> xe_gt_mcr_init_early(gt); >> xe_pat_init(gt); >> + xe_gt_enable_host_l2_vram(gt); >> >> err = xe_uc_init(>->uc); >> if (err) >> @@ -643,6 +693,8 @@ static int do_gt_restart(struct xe_gt *gt) >> >> xe_pat_init(gt); >> >> + xe_gt_enable_host_l2_vram(gt); >> + >> xe_gt_mcr_set_implicit_defaults(gt); >> xe_reg_sr_apply_mmio(>->reg_sr, gt); >> >> @@ -796,6 +848,8 @@ int xe_gt_suspend(struct xe_gt *gt) >> >> xe_gt_idle_disable_pg(gt); >> >> + xe_gt_disable_host_l2_vram(gt); >> + >> XE_WARN_ON(xe_force_wake_put(gt_to_fw(gt), >> XE_FORCEWAKE_ALL)); >> xe_gt_dbg(gt, "suspended\n"); >> >> diff --git a/drivers/gpu/drm/xe/xe_pat.c >> b/drivers/gpu/drm/xe/xe_pat.c >> index 4ee32ee1cc88..722278cc23fc 100644 >> --- a/drivers/gpu/drm/xe/xe_pat.c >> +++ b/drivers/gpu/drm/xe/xe_pat.c >> @@ -7,6 +7,8 @@ >> >> #include <drm/xe_drm.h> >> >> +#include <generated/xe_wa_oob.h> >> + >> #include "regs/xe_reg_defs.h" >> #include "xe_assert.h" >> #include "xe_device.h" >> @@ -15,6 +17,7 @@ >> #include "xe_gt_mcr.h" >> #include "xe_mmio.h" >> #include "xe_sriov.h" >> +#include "xe_wa.h" >> >> #define _PAT_ATS 0x47fc >> #define >> _PAT_INDEX(index) _PICK_EVEN_2RANGES(index, 8, \ >> @@ -382,7 +385,13 @@ void xe_pat_init_early(struct xe_device *xe) >> if (GRAPHICS_VER(xe) == 20) { >> xe->pat.ops = &xe2_pat_ops; >> xe->pat.table = xe2_pat_table; >> - xe->pat.n_entries = ARRAY_SIZE(xe2_pat_table); >> + >> + /* Wa_16023588340. XXX: Should use XE_WA */ >> + if (GRAPHICS_VERx100(xe) == 2001) >> + xe->pat.n_entries = 28; /* Disable CLOS3 */ >> + else >> + xe->pat.n_entries = >> ARRAY_SIZE(xe2_pat_table); >> + >> xe->pat.idx[XE_CACHE_NONE] = 3; >> xe->pat.idx[XE_CACHE_WT] = 15; >> xe->pat.idx[XE_CACHE_WB] = 2; >> diff --git a/drivers/gpu/drm/xe/xe_wa_oob.rules >> b/drivers/gpu/drm/xe/xe_wa_oob.rules >> index a6b897030fde..c6d8941621c6 100644 >> --- a/drivers/gpu/drm/xe/xe_wa_oob.rules >> +++ b/drivers/gpu/drm/xe/xe_wa_oob.rules >> @@ -28,3 +28,4 @@ >> GRAPHICS_VERSION(2004) >> 13011645652 GRAPHICS_VERSION(2004) >> 22019338487 MEDIA_VERSION(2000) >> +16023588340 GRAPHICS_VERSION(2001) > ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2024-07-03 9:41 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-07-02 15:06 [PATCH v3 1/2] drm/xe/bmg: implement Wa_16023588340 Matthew Auld 2024-07-02 15:06 ` [PATCH v3 2/2] drm/i915: disable fbc due to Wa_16023588340 Matthew Auld 2024-07-02 15:53 ` ✗ Fi.CI.CHECKPATCH: warning for series starting with [v3,1/2] drm/xe/bmg: implement Wa_16023588340 Patchwork 2024-07-02 16:01 ` ✓ Fi.CI.BAT: success " Patchwork 2024-07-02 21:15 ` ✗ Fi.CI.IGT: failure " Patchwork 2024-07-03 9:24 ` [PATCH v3 1/2] " Thomas Hellström 2024-07-03 9:41 ` Matthew Auld
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox