* [Intel-gfx] [PATCH 1/5] drm/i915/fbc: Remove ancient 16k plane stride limit
@ 2023-09-14 11:38 Ville Syrjala
2023-09-14 11:38 ` [Intel-gfx] [PATCH 2/5] drm/i915/fbc: Split plane stride checks per-platform Ville Syrjala
` (9 more replies)
0 siblings, 10 replies; 19+ messages in thread
From: Ville Syrjala @ 2023-09-14 11:38 UTC (permalink / raw)
To: intel-gfx
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
The 16k max plane stride limit seems to be originally from
i965gm, and no limit explicit limit has been specified since (g4x+).
So let's assume the max plane stride itself is a suitable limit
also for the more recent FBC hardware.
In fact even for i965gm the max X-tiled stride is also 16k so
technically we don't need the check there either, but let's
keep it there anyway since it's explicitly mentioned in the
spec. Gen2/3 have more strict limits checked separately.
Cc: Swati Sharma <swati2.sharma@intel.com>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/display/intel_fbc.c | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_fbc.c b/drivers/gpu/drm/i915/display/intel_fbc.c
index 817e5784660b..1b3358a0fbfb 100644
--- a/drivers/gpu/drm/i915/display/intel_fbc.c
+++ b/drivers/gpu/drm/i915/display/intel_fbc.c
@@ -866,7 +866,8 @@ static bool stride_is_valid(const struct intel_plane_state *plane_state)
if (DISPLAY_VER(i915) == 2 || DISPLAY_VER(i915) == 3)
return stride == 4096 || stride == 8192;
- if (DISPLAY_VER(i915) == 4 && !IS_G4X(i915) && stride < 2048)
+ if (DISPLAY_VER(i915) == 4 && !IS_G4X(i915) &&
+ (stride < 2048 || stride > 16384))
return false;
/* Display WA #1105: skl,bxt,kbl,cfl,glk */
@@ -874,9 +875,6 @@ static bool stride_is_valid(const struct intel_plane_state *plane_state)
fb->modifier == DRM_FORMAT_MOD_LINEAR && stride & 511)
return false;
- if (stride > 16384)
- return false;
-
return true;
}
--
2.41.0
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [Intel-gfx] [PATCH 2/5] drm/i915/fbc: Split plane stride checks per-platform
2023-09-14 11:38 [Intel-gfx] [PATCH 1/5] drm/i915/fbc: Remove ancient 16k plane stride limit Ville Syrjala
@ 2023-09-14 11:38 ` Ville Syrjala
2023-10-01 10:53 ` Govindapillai, Vinod
2023-09-14 11:38 ` [Intel-gfx] [PATCH 3/5] drm/i915/fbc: Split plane tiling " Ville Syrjala
` (8 subsequent siblings)
9 siblings, 1 reply; 19+ messages in thread
From: Ville Syrjala @ 2023-09-14 11:38 UTC (permalink / raw)
To: intel-gfx
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Carve up stride_is_valid() into per-platform variants to
make it easier to see what limits are actually being imposed.
TODO: maybe go for vfuncs later
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/display/intel_fbc.c | 68 ++++++++++++++++++------
1 file changed, 51 insertions(+), 17 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_fbc.c b/drivers/gpu/drm/i915/display/intel_fbc.c
index 1b3358a0fbfb..4c4626c84666 100644
--- a/drivers/gpu/drm/i915/display/intel_fbc.c
+++ b/drivers/gpu/drm/i915/display/intel_fbc.c
@@ -848,6 +848,47 @@ void intel_fbc_cleanup(struct drm_i915_private *i915)
}
}
+static bool i8xx_fbc_stride_is_valid(const struct intel_plane_state *plane_state)
+{
+ const struct drm_framebuffer *fb = plane_state->hw.fb;
+ unsigned int stride = intel_fbc_plane_stride(plane_state) *
+ fb->format->cpp[0];
+
+ return stride == 4096 || stride == 8192;
+}
+
+static bool i965_fbc_stride_is_valid(const struct intel_plane_state *plane_state)
+{
+ const struct drm_framebuffer *fb = plane_state->hw.fb;
+ unsigned int stride = intel_fbc_plane_stride(plane_state) *
+ fb->format->cpp[0];
+
+ return stride >= 2048 && stride <= 16384;
+}
+
+static bool g4x_fbc_stride_is_valid(const struct intel_plane_state *plane_state)
+{
+ return true;
+}
+
+static bool skl_fbc_stride_is_valid(const struct intel_plane_state *plane_state)
+{
+ const struct drm_framebuffer *fb = plane_state->hw.fb;
+ unsigned int stride = intel_fbc_plane_stride(plane_state) *
+ fb->format->cpp[0];
+
+ /* Display WA #1105: skl,bxt,kbl,cfl,glk */
+ if (fb->modifier == DRM_FORMAT_MOD_LINEAR && stride & 511)
+ return false;
+
+ return true;
+}
+
+static bool icl_fbc_stride_is_valid(const struct intel_plane_state *plane_state)
+{
+ return true;
+}
+
static bool stride_is_valid(const struct intel_plane_state *plane_state)
{
struct drm_i915_private *i915 = to_i915(plane_state->uapi.plane->dev);
@@ -859,23 +900,16 @@ static bool stride_is_valid(const struct intel_plane_state *plane_state)
if (drm_WARN_ON_ONCE(&i915->drm, (stride & (64 - 1)) != 0))
return false;
- /* Below are the additional FBC restrictions. */
- if (stride < 512)
- return false;
-
- if (DISPLAY_VER(i915) == 2 || DISPLAY_VER(i915) == 3)
- return stride == 4096 || stride == 8192;
-
- if (DISPLAY_VER(i915) == 4 && !IS_G4X(i915) &&
- (stride < 2048 || stride > 16384))
- return false;
-
- /* Display WA #1105: skl,bxt,kbl,cfl,glk */
- if ((DISPLAY_VER(i915) == 9 || IS_GEMINILAKE(i915)) &&
- fb->modifier == DRM_FORMAT_MOD_LINEAR && stride & 511)
- return false;
-
- return true;
+ if (DISPLAY_VER(i915) >= 11)
+ return icl_fbc_stride_is_valid(plane_state);
+ else if (DISPLAY_VER(i915) >= 9)
+ return skl_fbc_stride_is_valid(plane_state);
+ else if (DISPLAY_VER(i915) >= 5 || IS_G4X(i915))
+ return g4x_fbc_stride_is_valid(plane_state);
+ else if (DISPLAY_VER(i915) == 4)
+ return i965_fbc_stride_is_valid(plane_state);
+ else
+ return i8xx_fbc_stride_is_valid(plane_state);
}
static bool pixel_format_is_valid(const struct intel_plane_state *plane_state)
--
2.41.0
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [Intel-gfx] [PATCH 3/5] drm/i915/fbc: Split plane tiling checks per-platform
2023-09-14 11:38 [Intel-gfx] [PATCH 1/5] drm/i915/fbc: Remove ancient 16k plane stride limit Ville Syrjala
2023-09-14 11:38 ` [Intel-gfx] [PATCH 2/5] drm/i915/fbc: Split plane stride checks per-platform Ville Syrjala
@ 2023-09-14 11:38 ` Ville Syrjala
2023-10-01 11:00 ` Govindapillai, Vinod
2023-09-14 11:38 ` [Intel-gfx] [PATCH 4/5] drm/i915/fbc: Split plane rotation " Ville Syrjala
` (7 subsequent siblings)
9 siblings, 1 reply; 19+ messages in thread
From: Ville Syrjala @ 2023-09-14 11:38 UTC (permalink / raw)
To: intel-gfx
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Carve up tiling_is_valid() into per-platform variants to
make it easier to see what limits are actually being imposed.
TODO: maybe go for vfuncs later
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/display/intel_fbc.c | 21 ++++++++++++++++++---
1 file changed, 18 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_fbc.c b/drivers/gpu/drm/i915/display/intel_fbc.c
index 4c4626c84666..052f9d8b53d4 100644
--- a/drivers/gpu/drm/i915/display/intel_fbc.c
+++ b/drivers/gpu/drm/i915/display/intel_fbc.c
@@ -984,16 +984,21 @@ static bool intel_fbc_hw_tracking_covers_screen(const struct intel_plane_state *
return effective_w <= max_w && effective_h <= max_h;
}
-static bool tiling_is_valid(const struct intel_plane_state *plane_state)
+static bool i8xx_fbc_tiling_valid(const struct intel_plane_state *plane_state)
+{
+ const struct drm_framebuffer *fb = plane_state->hw.fb;
+
+ return fb->modifier == I915_FORMAT_MOD_X_TILED;
+}
+
+static bool skl_fbc_tiling_valid(const struct intel_plane_state *plane_state)
{
- struct drm_i915_private *i915 = to_i915(plane_state->uapi.plane->dev);
const struct drm_framebuffer *fb = plane_state->hw.fb;
switch (fb->modifier) {
case DRM_FORMAT_MOD_LINEAR:
case I915_FORMAT_MOD_Y_TILED:
case I915_FORMAT_MOD_Yf_TILED:
- return DISPLAY_VER(i915) >= 9;
case I915_FORMAT_MOD_4_TILED:
case I915_FORMAT_MOD_X_TILED:
return true;
@@ -1002,6 +1007,16 @@ static bool tiling_is_valid(const struct intel_plane_state *plane_state)
}
}
+static bool tiling_is_valid(const struct intel_plane_state *plane_state)
+{
+ struct drm_i915_private *i915 = to_i915(plane_state->uapi.plane->dev);
+
+ if (DISPLAY_VER(i915) >= 9)
+ return skl_fbc_tiling_valid(plane_state);
+ else
+ return i8xx_fbc_tiling_valid(plane_state);
+}
+
static void intel_fbc_update_state(struct intel_atomic_state *state,
struct intel_crtc *crtc,
struct intel_plane *plane)
--
2.41.0
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [Intel-gfx] [PATCH 4/5] drm/i915/fbc: Split plane rotation checks per-platform
2023-09-14 11:38 [Intel-gfx] [PATCH 1/5] drm/i915/fbc: Remove ancient 16k plane stride limit Ville Syrjala
2023-09-14 11:38 ` [Intel-gfx] [PATCH 2/5] drm/i915/fbc: Split plane stride checks per-platform Ville Syrjala
2023-09-14 11:38 ` [Intel-gfx] [PATCH 3/5] drm/i915/fbc: Split plane tiling " Ville Syrjala
@ 2023-09-14 11:38 ` Ville Syrjala
2023-10-01 11:03 ` Govindapillai, Vinod
2023-09-14 11:38 ` [Intel-gfx] [PATCH 5/5] drm/i915/fbc: Split plane pixel format " Ville Syrjala
` (6 subsequent siblings)
9 siblings, 1 reply; 19+ messages in thread
From: Ville Syrjala @ 2023-09-14 11:38 UTC (permalink / raw)
To: intel-gfx
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Carve up rotation_is_valid() into per-platform variants to
make it easier to see what limits are actually being imposed.
TODO: maybe go for vfuncs later
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/display/intel_fbc.c | 30 +++++++++++++++++++-----
1 file changed, 24 insertions(+), 6 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_fbc.c b/drivers/gpu/drm/i915/display/intel_fbc.c
index 052f9d8b53d4..1a6931e66d5d 100644
--- a/drivers/gpu/drm/i915/display/intel_fbc.c
+++ b/drivers/gpu/drm/i915/display/intel_fbc.c
@@ -935,22 +935,40 @@ static bool pixel_format_is_valid(const struct intel_plane_state *plane_state)
}
}
-static bool rotation_is_valid(const struct intel_plane_state *plane_state)
+static bool i8xx_fbc_rotation_is_valid(const struct intel_plane_state *plane_state)
+{
+ return plane_state->hw.rotation == DRM_MODE_ROTATE_0;
+}
+
+static bool g4x_fbc_rotation_is_valid(const struct intel_plane_state *plane_state)
+{
+ return true;
+}
+
+static bool skl_fbc_rotation_is_valid(const struct intel_plane_state *plane_state)
{
- struct drm_i915_private *i915 = to_i915(plane_state->uapi.plane->dev);
const struct drm_framebuffer *fb = plane_state->hw.fb;
unsigned int rotation = plane_state->hw.rotation;
- if (DISPLAY_VER(i915) >= 9 && fb->format->format == DRM_FORMAT_RGB565 &&
+ if (fb->format->format == DRM_FORMAT_RGB565 &&
drm_rotation_90_or_270(rotation))
return false;
- else if (DISPLAY_VER(i915) <= 4 && !IS_G4X(i915) &&
- rotation != DRM_MODE_ROTATE_0)
- return false;
return true;
}
+static bool rotation_is_valid(const struct intel_plane_state *plane_state)
+{
+ struct drm_i915_private *i915 = to_i915(plane_state->uapi.plane->dev);
+
+ if (DISPLAY_VER(i915) >= 9)
+ return skl_fbc_rotation_is_valid(plane_state);
+ else if (DISPLAY_VER(i915) >= 5 || IS_G4X(i915))
+ return g4x_fbc_rotation_is_valid(plane_state);
+ else
+ return i8xx_fbc_rotation_is_valid(plane_state);
+}
+
/*
* For some reason, the hardware tracking starts looking at whatever we
* programmed as the display plane base address register. It does not look at
--
2.41.0
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [Intel-gfx] [PATCH 5/5] drm/i915/fbc: Split plane pixel format checks per-platform
2023-09-14 11:38 [Intel-gfx] [PATCH 1/5] drm/i915/fbc: Remove ancient 16k plane stride limit Ville Syrjala
` (2 preceding siblings ...)
2023-09-14 11:38 ` [Intel-gfx] [PATCH 4/5] drm/i915/fbc: Split plane rotation " Ville Syrjala
@ 2023-09-14 11:38 ` Ville Syrjala
2023-10-01 11:08 ` Govindapillai, Vinod
2023-09-14 20:36 ` [Intel-gfx] ✓ Fi.CI.BAT: success for series starting with [1/5] drm/i915/fbc: Remove ancient 16k plane stride limit Patchwork
` (5 subsequent siblings)
9 siblings, 1 reply; 19+ messages in thread
From: Ville Syrjala @ 2023-09-14 11:38 UTC (permalink / raw)
To: intel-gfx
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Carve up pixel_format_is_valid() into per-platform variants to
make it easier to see what limits are actually being imposed.
Note that the XRGB1555 can be dropped from the g4x+ variant
since the plane no longer supports that format anyway.
TODO: maybe go for vfuncs later
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/display/intel_fbc.c | 28 +++++++++++++++++++++++-
1 file changed, 27 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/i915/display/intel_fbc.c b/drivers/gpu/drm/i915/display/intel_fbc.c
index 1a6931e66d5d..51998b1ec941 100644
--- a/drivers/gpu/drm/i915/display/intel_fbc.c
+++ b/drivers/gpu/drm/i915/display/intel_fbc.c
@@ -912,7 +912,7 @@ static bool stride_is_valid(const struct intel_plane_state *plane_state)
return i8xx_fbc_stride_is_valid(plane_state);
}
-static bool pixel_format_is_valid(const struct intel_plane_state *plane_state)
+static bool i8xx_fbc_pixel_format_is_valid(const struct intel_plane_state *plane_state)
{
struct drm_i915_private *i915 = to_i915(plane_state->uapi.plane->dev);
const struct drm_framebuffer *fb = plane_state->hw.fb;
@@ -926,6 +926,22 @@ static bool pixel_format_is_valid(const struct intel_plane_state *plane_state)
/* 16bpp not supported on gen2 */
if (DISPLAY_VER(i915) == 2)
return false;
+ return true;
+ default:
+ return false;
+ }
+}
+
+static bool g4x_fbc_pixel_format_is_valid(const struct intel_plane_state *plane_state)
+{
+ struct drm_i915_private *i915 = to_i915(plane_state->uapi.plane->dev);
+ const struct drm_framebuffer *fb = plane_state->hw.fb;
+
+ switch (fb->format->format) {
+ case DRM_FORMAT_XRGB8888:
+ case DRM_FORMAT_XBGR8888:
+ return true;
+ case DRM_FORMAT_RGB565:
/* WaFbcOnly1to1Ratio:ctg */
if (IS_G4X(i915))
return false;
@@ -935,6 +951,16 @@ static bool pixel_format_is_valid(const struct intel_plane_state *plane_state)
}
}
+static bool pixel_format_is_valid(const struct intel_plane_state *plane_state)
+{
+ struct drm_i915_private *i915 = to_i915(plane_state->uapi.plane->dev);
+
+ if (DISPLAY_VER(i915) >= 5 || IS_G4X(i915))
+ return g4x_fbc_pixel_format_is_valid(plane_state);
+ else
+ return i8xx_fbc_pixel_format_is_valid(plane_state);
+}
+
static bool i8xx_fbc_rotation_is_valid(const struct intel_plane_state *plane_state)
{
return plane_state->hw.rotation == DRM_MODE_ROTATE_0;
--
2.41.0
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for series starting with [1/5] drm/i915/fbc: Remove ancient 16k plane stride limit
2023-09-14 11:38 [Intel-gfx] [PATCH 1/5] drm/i915/fbc: Remove ancient 16k plane stride limit Ville Syrjala
` (3 preceding siblings ...)
2023-09-14 11:38 ` [Intel-gfx] [PATCH 5/5] drm/i915/fbc: Split plane pixel format " Ville Syrjala
@ 2023-09-14 20:36 ` Patchwork
2023-09-15 5:15 ` [Intel-gfx] [PATCH 1/5] " Sharma, Swati2
` (4 subsequent siblings)
9 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2023-09-14 20:36 UTC (permalink / raw)
To: Ville Syrjala; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 5074 bytes --]
== Series Details ==
Series: series starting with [1/5] drm/i915/fbc: Remove ancient 16k plane stride limit
URL : https://patchwork.freedesktop.org/series/123687/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_13633 -> Patchwork_123687v1
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v1/index.html
Participating hosts (40 -> 40)
------------------------------
Additional (1): fi-kbl-soraka
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in Patchwork_123687v1 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_huc_copy@huc-copy:
- fi-kbl-soraka: NOTRUN -> [SKIP][1] ([fdo#109271] / [i915#2190])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v1/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@basic:
- fi-kbl-soraka: NOTRUN -> [SKIP][2] ([fdo#109271] / [i915#4613]) +3 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v1/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html
* igt@i915_selftest@live@gt_pm:
- fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][3] ([i915#1886] / [i915#7913])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v1/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html
* igt@kms_dsc@dsc-basic:
- fi-kbl-soraka: NOTRUN -> [SKIP][4] ([fdo#109271]) +9 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v1/fi-kbl-soraka/igt@kms_dsc@dsc-basic.html
* igt@kms_hdmi_inject@inject-audio:
- fi-kbl-guc: [PASS][5] -> [FAIL][6] ([IGT#3] / [i915#6121])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v1/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
- bat-dg2-11: NOTRUN -> [SKIP][7] ([i915#1845]) +3 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v1/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
#### Possible fixes ####
* igt@i915_selftest@live@execlists:
- fi-bsw-n3050: [ABORT][8] ([i915#7911] / [i915#7913]) -> [PASS][9]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/fi-bsw-n3050/igt@i915_selftest@live@execlists.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v1/fi-bsw-n3050/igt@i915_selftest@live@execlists.html
* igt@i915_suspend@basic-s2idle-without-i915:
- bat-dg2-9: [WARN][10] -> [PASS][11]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/bat-dg2-9/igt@i915_suspend@basic-s2idle-without-i915.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v1/bat-dg2-9/igt@i915_suspend@basic-s2idle-without-i915.html
* igt@kms_chamelium_frames@dp-crc-fast:
- {bat-dg2-13}: [DMESG-WARN][12] ([Intel XE#485]) -> [PASS][13]
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13633/bat-dg2-13/igt@kms_chamelium_frames@dp-crc-fast.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v1/bat-dg2-13/igt@kms_chamelium_frames@dp-crc-fast.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[IGT#3]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/3
[Intel XE#485]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/485
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121
[i915#7911]: https://gitlab.freedesktop.org/drm/intel/issues/7911
[i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913
Build changes
-------------
* Linux: CI_DRM_13633 -> Patchwork_123687v1
CI-20190529: 20190529
CI_DRM_13633: 5cf0e59ecc1424e51a5f5cf2f26682b5dcea5a25 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_7488: 099e058c5dfb7a49942edf03cae88a52a77077a3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_123687v1: 5cf0e59ecc1424e51a5f5cf2f26682b5dcea5a25 @ git://anongit.freedesktop.org/gfx-ci/linux
### Linux commits
1622a2dd32c6 drm/i915/fbc: Split plane pixel format checks per-platform
41ce6dbbbe51 drm/i915/fbc: Split plane rotation checks per-platform
899e9d6cc831 drm/i915/fbc: Split plane tiling checks per-platform
8899b49bda6b drm/i915/fbc: Split plane stride checks per-platform
7085df43df5d drm/i915/fbc: Remove ancient 16k plane stride limit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v1/index.html
[-- Attachment #2: Type: text/html, Size: 6133 bytes --]
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [Intel-gfx] [PATCH 1/5] drm/i915/fbc: Remove ancient 16k plane stride limit
2023-09-14 11:38 [Intel-gfx] [PATCH 1/5] drm/i915/fbc: Remove ancient 16k plane stride limit Ville Syrjala
` (4 preceding siblings ...)
2023-09-14 20:36 ` [Intel-gfx] ✓ Fi.CI.BAT: success for series starting with [1/5] drm/i915/fbc: Remove ancient 16k plane stride limit Patchwork
@ 2023-09-15 5:15 ` Sharma, Swati2
2023-09-15 16:48 ` Matt Roper
` (3 subsequent siblings)
9 siblings, 0 replies; 19+ messages in thread
From: Sharma, Swati2 @ 2023-09-15 5:15 UTC (permalink / raw)
To: Ville Syrjala, intel-gfx
Thanks Ville for the fix!
LGTM
Reviewed-by: Swati Sharma <swati2.sharma@intel.com>
On 14-Sep-23 5:08 PM, Ville Syrjala wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> The 16k max plane stride limit seems to be originally from
> i965gm, and no limit explicit limit has been specified since (g4x+).
nitpick: "limit" seems to be extra here
> So let's assume the max plane stride itself is a suitable limit
> also for the more recent FBC hardware.
>
> In fact even for i965gm the max X-tiled stride is also 16k so
> technically we don't need the check there either, but let's
> keep it there anyway since it's explicitly mentioned in the
> spec. Gen2/3 have more strict limits checked separately.
>
> Cc: Swati Sharma <swati2.sharma@intel.com>
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> > ---
> drivers/gpu/drm/i915/display/intel_fbc.c | 6 ++----
> 1 file changed, 2 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_fbc.c b/drivers/gpu/drm/i915/display/intel_fbc.c
> index 817e5784660b..1b3358a0fbfb 100644
> --- a/drivers/gpu/drm/i915/display/intel_fbc.c
> +++ b/drivers/gpu/drm/i915/display/intel_fbc.c
> @@ -866,7 +866,8 @@ static bool stride_is_valid(const struct intel_plane_state *plane_state)
> if (DISPLAY_VER(i915) == 2 || DISPLAY_VER(i915) == 3)
> return stride == 4096 || stride == 8192;
>
> - if (DISPLAY_VER(i915) == 4 && !IS_G4X(i915) && stride < 2048)
> + if (DISPLAY_VER(i915) == 4 && !IS_G4X(i915) &&
> + (stride < 2048 || stride > 16384))
> return false;
>
> /* Display WA #1105: skl,bxt,kbl,cfl,glk */
> @@ -874,9 +875,6 @@ static bool stride_is_valid(const struct intel_plane_state *plane_state)
> fb->modifier == DRM_FORMAT_MOD_LINEAR && stride & 511)
> return false;
>
> - if (stride > 16384)
> - return false;
> -
> return true;
> }
>
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [Intel-gfx] [PATCH 1/5] drm/i915/fbc: Remove ancient 16k plane stride limit
2023-09-14 11:38 [Intel-gfx] [PATCH 1/5] drm/i915/fbc: Remove ancient 16k plane stride limit Ville Syrjala
` (5 preceding siblings ...)
2023-09-15 5:15 ` [Intel-gfx] [PATCH 1/5] " Sharma, Swati2
@ 2023-09-15 16:48 ` Matt Roper
2023-09-15 16:54 ` Ville Syrjälä
2023-09-29 13:08 ` Juha-Pekka Heikkila
` (2 subsequent siblings)
9 siblings, 1 reply; 19+ messages in thread
From: Matt Roper @ 2023-09-15 16:48 UTC (permalink / raw)
To: Ville Syrjala; +Cc: intel-gfx
On Thu, Sep 14, 2023 at 02:38:50PM +0300, Ville Syrjala wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> The 16k max plane stride limit seems to be originally from
> i965gm, and no limit explicit limit has been specified since (g4x+).
There are maximum limits specified on the PLANE_STRIDE register pages
(bspec 7667, 50416, 69877).
display version 9 - 10: max 8k pixels and 32k bytes
display version 11 - 12: max 8k pixels
display version 13 - 20: max 128k bytes
Matt
> So let's assume the max plane stride itself is a suitable limit
> also for the more recent FBC hardware.
>
> In fact even for i965gm the max X-tiled stride is also 16k so
> technically we don't need the check there either, but let's
> keep it there anyway since it's explicitly mentioned in the
> spec. Gen2/3 have more strict limits checked separately.
>
> Cc: Swati Sharma <swati2.sharma@intel.com>
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_fbc.c | 6 ++----
> 1 file changed, 2 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_fbc.c b/drivers/gpu/drm/i915/display/intel_fbc.c
> index 817e5784660b..1b3358a0fbfb 100644
> --- a/drivers/gpu/drm/i915/display/intel_fbc.c
> +++ b/drivers/gpu/drm/i915/display/intel_fbc.c
> @@ -866,7 +866,8 @@ static bool stride_is_valid(const struct intel_plane_state *plane_state)
> if (DISPLAY_VER(i915) == 2 || DISPLAY_VER(i915) == 3)
> return stride == 4096 || stride == 8192;
>
> - if (DISPLAY_VER(i915) == 4 && !IS_G4X(i915) && stride < 2048)
> + if (DISPLAY_VER(i915) == 4 && !IS_G4X(i915) &&
> + (stride < 2048 || stride > 16384))
> return false;
>
> /* Display WA #1105: skl,bxt,kbl,cfl,glk */
> @@ -874,9 +875,6 @@ static bool stride_is_valid(const struct intel_plane_state *plane_state)
> fb->modifier == DRM_FORMAT_MOD_LINEAR && stride & 511)
> return false;
>
> - if (stride > 16384)
> - return false;
> -
> return true;
> }
>
> --
> 2.41.0
>
--
Matt Roper
Graphics Software Engineer
Linux GPU Platform Enablement
Intel Corporation
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [Intel-gfx] [PATCH 1/5] drm/i915/fbc: Remove ancient 16k plane stride limit
2023-09-15 16:48 ` Matt Roper
@ 2023-09-15 16:54 ` Ville Syrjälä
0 siblings, 0 replies; 19+ messages in thread
From: Ville Syrjälä @ 2023-09-15 16:54 UTC (permalink / raw)
To: Matt Roper; +Cc: intel-gfx
On Fri, Sep 15, 2023 at 09:48:54AM -0700, Matt Roper wrote:
> On Thu, Sep 14, 2023 at 02:38:50PM +0300, Ville Syrjala wrote:
> > From: Ville Syrjälä <ville.syrjala@linux.intel.com>
> >
> > The 16k max plane stride limit seems to be originally from
> > i965gm, and no limit explicit limit has been specified since (g4x+).
>
> There are maximum limits specified on the PLANE_STRIDE register pages
> (bspec 7667, 50416, 69877).
>
> display version 9 - 10: max 8k pixels and 32k bytes
> display version 11 - 12: max 8k pixels
> display version 13 - 20: max 128k bytes
Sure, but those are handled elsewhere. Here we're only
interested in limits specific to FBC.
>
>
> Matt
>
> > So let's assume the max plane stride itself is a suitable limit
> > also for the more recent FBC hardware.
> >
> > In fact even for i965gm the max X-tiled stride is also 16k so
> > technically we don't need the check there either, but let's
> > keep it there anyway since it's explicitly mentioned in the
> > spec. Gen2/3 have more strict limits checked separately.
> >
> > Cc: Swati Sharma <swati2.sharma@intel.com>
> > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> > ---
> > drivers/gpu/drm/i915/display/intel_fbc.c | 6 ++----
> > 1 file changed, 2 insertions(+), 4 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/i915/display/intel_fbc.c b/drivers/gpu/drm/i915/display/intel_fbc.c
> > index 817e5784660b..1b3358a0fbfb 100644
> > --- a/drivers/gpu/drm/i915/display/intel_fbc.c
> > +++ b/drivers/gpu/drm/i915/display/intel_fbc.c
> > @@ -866,7 +866,8 @@ static bool stride_is_valid(const struct intel_plane_state *plane_state)
> > if (DISPLAY_VER(i915) == 2 || DISPLAY_VER(i915) == 3)
> > return stride == 4096 || stride == 8192;
> >
> > - if (DISPLAY_VER(i915) == 4 && !IS_G4X(i915) && stride < 2048)
> > + if (DISPLAY_VER(i915) == 4 && !IS_G4X(i915) &&
> > + (stride < 2048 || stride > 16384))
> > return false;
> >
> > /* Display WA #1105: skl,bxt,kbl,cfl,glk */
> > @@ -874,9 +875,6 @@ static bool stride_is_valid(const struct intel_plane_state *plane_state)
> > fb->modifier == DRM_FORMAT_MOD_LINEAR && stride & 511)
> > return false;
> >
> > - if (stride > 16384)
> > - return false;
> > -
> > return true;
> > }
> >
> > --
> > 2.41.0
> >
>
> --
> Matt Roper
> Graphics Software Engineer
> Linux GPU Platform Enablement
> Intel Corporation
--
Ville Syrjälä
Intel
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [Intel-gfx] [PATCH 1/5] drm/i915/fbc: Remove ancient 16k plane stride limit
2023-09-14 11:38 [Intel-gfx] [PATCH 1/5] drm/i915/fbc: Remove ancient 16k plane stride limit Ville Syrjala
` (6 preceding siblings ...)
2023-09-15 16:48 ` Matt Roper
@ 2023-09-29 13:08 ` Juha-Pekka Heikkila
2023-09-29 16:27 ` [Intel-gfx] ✓ Fi.CI.BAT: success for series starting with [1/5] drm/i915/fbc: Remove ancient 16k plane stride limit (rev2) Patchwork
2023-09-29 23:41 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
9 siblings, 0 replies; 19+ messages in thread
From: Juha-Pekka Heikkila @ 2023-09-29 13:08 UTC (permalink / raw)
To: Ville Syrjala, intel-gfx
All 5 patches look ok to me, I didn't spot anything to comment about.
Reviewed-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
On 14.9.2023 14.38, Ville Syrjala wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> The 16k max plane stride limit seems to be originally from
> i965gm, and no limit explicit limit has been specified since (g4x+).
> So let's assume the max plane stride itself is a suitable limit
> also for the more recent FBC hardware.
>
> In fact even for i965gm the max X-tiled stride is also 16k so
> technically we don't need the check there either, but let's
> keep it there anyway since it's explicitly mentioned in the
> spec. Gen2/3 have more strict limits checked separately.
>
> Cc: Swati Sharma <swati2.sharma@intel.com>
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_fbc.c | 6 ++----
> 1 file changed, 2 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_fbc.c b/drivers/gpu/drm/i915/display/intel_fbc.c
> index 817e5784660b..1b3358a0fbfb 100644
> --- a/drivers/gpu/drm/i915/display/intel_fbc.c
> +++ b/drivers/gpu/drm/i915/display/intel_fbc.c
> @@ -866,7 +866,8 @@ static bool stride_is_valid(const struct intel_plane_state *plane_state)
> if (DISPLAY_VER(i915) == 2 || DISPLAY_VER(i915) == 3)
> return stride == 4096 || stride == 8192;
>
> - if (DISPLAY_VER(i915) == 4 && !IS_G4X(i915) && stride < 2048)
> + if (DISPLAY_VER(i915) == 4 && !IS_G4X(i915) &&
> + (stride < 2048 || stride > 16384))
> return false;
>
> /* Display WA #1105: skl,bxt,kbl,cfl,glk */
> @@ -874,9 +875,6 @@ static bool stride_is_valid(const struct intel_plane_state *plane_state)
> fb->modifier == DRM_FORMAT_MOD_LINEAR && stride & 511)
> return false;
>
> - if (stride > 16384)
> - return false;
> -
> return true;
> }
>
^ permalink raw reply [flat|nested] 19+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for series starting with [1/5] drm/i915/fbc: Remove ancient 16k plane stride limit (rev2)
2023-09-14 11:38 [Intel-gfx] [PATCH 1/5] drm/i915/fbc: Remove ancient 16k plane stride limit Ville Syrjala
` (7 preceding siblings ...)
2023-09-29 13:08 ` Juha-Pekka Heikkila
@ 2023-09-29 16:27 ` Patchwork
2023-09-29 23:41 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
9 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2023-09-29 16:27 UTC (permalink / raw)
To: Ville Syrjala; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 10774 bytes --]
== Series Details ==
Series: series starting with [1/5] drm/i915/fbc: Remove ancient 16k plane stride limit (rev2)
URL : https://patchwork.freedesktop.org/series/123687/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_13693 -> Patchwork_123687v2
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/index.html
Participating hosts (38 -> 38)
------------------------------
Additional (1): bat-dg2-9
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in Patchwork_123687v2 that come from known issues:
### CI changes ###
#### Possible fixes ####
* boot:
- fi-hsw-4770: [FAIL][1] ([i915#8293]) -> [PASS][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13693/fi-hsw-4770/boot.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/fi-hsw-4770/boot.html
### IGT changes ###
#### Issues hit ####
* igt@gem_exec_suspend@basic-s0@smem:
- bat-dg2-9: NOTRUN -> [INCOMPLETE][3] ([i915#9275])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/bat-dg2-9/igt@gem_exec_suspend@basic-s0@smem.html
* igt@gem_mmap@basic:
- bat-dg2-9: NOTRUN -> [SKIP][4] ([i915#4083])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/bat-dg2-9/igt@gem_mmap@basic.html
* igt@gem_mmap_gtt@basic:
- bat-dg2-9: NOTRUN -> [SKIP][5] ([i915#4077]) +2 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/bat-dg2-9/igt@gem_mmap_gtt@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-dg2-9: NOTRUN -> [SKIP][6] ([i915#4079]) +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/bat-dg2-9/igt@gem_render_tiled_blits@basic.html
* igt@i915_pm_rps@basic-api:
- bat-dg2-9: NOTRUN -> [SKIP][7] ([i915#6621])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/bat-dg2-9/igt@i915_pm_rps@basic-api.html
* igt@i915_suspend@basic-s3-without-i915:
- bat-mtlp-8: NOTRUN -> [SKIP][8] ([i915#6645])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/bat-mtlp-8/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-dg2-9: NOTRUN -> [SKIP][9] ([i915#5190])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/bat-dg2-9/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- fi-hsw-4770: NOTRUN -> [SKIP][10] ([fdo#109271]) +13 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/fi-hsw-4770/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-dg2-9: NOTRUN -> [SKIP][11] ([i915#4215] / [i915#5190])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/bat-dg2-9/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- bat-dg2-9: NOTRUN -> [SKIP][12] ([i915#4212]) +6 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/bat-dg2-9/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- bat-dg2-9: NOTRUN -> [SKIP][13] ([i915#4212] / [i915#5608])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/bat-dg2-9/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-dg2-9: NOTRUN -> [SKIP][14] ([i915#4103] / [i915#4213] / [i915#5608]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/bat-dg2-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-dg2-9: NOTRUN -> [SKIP][15] ([fdo#109285])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/bat-dg2-9/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-dg2-9: NOTRUN -> [SKIP][16] ([i915#5274])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/bat-dg2-9/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@basic:
- fi-bsw-nick: [PASS][17] -> [FAIL][18] ([i915#9276])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13693/fi-bsw-nick/igt@kms_frontbuffer_tracking@basic.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/fi-bsw-nick/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-c-dp-5:
- bat-adlp-11: NOTRUN -> [ABORT][19] ([i915#8668])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/bat-adlp-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-c-dp-5.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-vga-1:
- fi-hsw-4770: NOTRUN -> [DMESG-WARN][20] ([i915#8841]) +6 other tests dmesg-warn
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/fi-hsw-4770/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-vga-1.html
* igt@kms_psr@sprite_plane_onoff:
- bat-dg2-9: NOTRUN -> [SKIP][21] ([i915#1072]) +3 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/bat-dg2-9/igt@kms_psr@sprite_plane_onoff.html
- fi-hsw-4770: NOTRUN -> [SKIP][22] ([fdo#109271] / [i915#1072]) +3 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/fi-hsw-4770/igt@kms_psr@sprite_plane_onoff.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-dg2-9: NOTRUN -> [SKIP][23] ([i915#3555])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/bat-dg2-9/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-dg2-9: NOTRUN -> [SKIP][24] ([i915#3708])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/bat-dg2-9/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-mmap:
- bat-dg2-9: NOTRUN -> [SKIP][25] ([i915#3708] / [i915#4077]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/bat-dg2-9/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-write:
- bat-dg2-9: NOTRUN -> [SKIP][26] ([i915#3291] / [i915#3708]) +2 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/bat-dg2-9/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@i915_selftest@live@requests:
- bat-mtlp-8: [ABORT][27] ([i915#9414]) -> [PASS][28]
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13693/bat-mtlp-8/igt@i915_selftest@live@requests.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/bat-mtlp-8/igt@i915_selftest@live@requests.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-a-dp-5:
- bat-adlp-11: [DMESG-FAIL][29] ([i915#6868]) -> [PASS][30]
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13693/bat-adlp-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-a-dp-5.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/bat-adlp-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-a-dp-5.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-c-dp-5:
- bat-adlp-11: [FAIL][31] ([i915#9047]) -> [PASS][32] +2 other tests pass
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13693/bat-adlp-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-c-dp-5.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/bat-adlp-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-c-dp-5.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645
[i915#6868]: https://gitlab.freedesktop.org/drm/intel/issues/6868
[i915#8293]: https://gitlab.freedesktop.org/drm/intel/issues/8293
[i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
[i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841
[i915#9047]: https://gitlab.freedesktop.org/drm/intel/issues/9047
[i915#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275
[i915#9276]: https://gitlab.freedesktop.org/drm/intel/issues/9276
[i915#9414]: https://gitlab.freedesktop.org/drm/intel/issues/9414
Build changes
-------------
* Linux: CI_DRM_13693 -> Patchwork_123687v2
CI-20190529: 20190529
CI_DRM_13693: bb46e837b7e59c22a567ae6913ff4d6bf0e9211a @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_7506: 4fdf544bd0a38c5a100ef43c30171827e1c8c442 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_123687v2: bb46e837b7e59c22a567ae6913ff4d6bf0e9211a @ git://anongit.freedesktop.org/gfx-ci/linux
### Linux commits
43760b076122 drm/i915/fbc: Split plane pixel format checks per-platform
e63edeacc98d drm/i915/fbc: Split plane rotation checks per-platform
bd39c522c057 drm/i915/fbc: Split plane tiling checks per-platform
bfaa98fa3691 drm/i915/fbc: Split plane stride checks per-platform
812ecc34ae2f drm/i915/fbc: Remove ancient 16k plane stride limit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/index.html
[-- Attachment #2: Type: text/html, Size: 12546 bytes --]
^ permalink raw reply [flat|nested] 19+ messages in thread
* [Intel-gfx] ✗ Fi.CI.IGT: failure for series starting with [1/5] drm/i915/fbc: Remove ancient 16k plane stride limit (rev2)
2023-09-14 11:38 [Intel-gfx] [PATCH 1/5] drm/i915/fbc: Remove ancient 16k plane stride limit Ville Syrjala
` (8 preceding siblings ...)
2023-09-29 16:27 ` [Intel-gfx] ✓ Fi.CI.BAT: success for series starting with [1/5] drm/i915/fbc: Remove ancient 16k plane stride limit (rev2) Patchwork
@ 2023-09-29 23:41 ` Patchwork
9 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2023-09-29 23:41 UTC (permalink / raw)
To: Ville Syrjala; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 60347 bytes --]
== Series Details ==
Series: series starting with [1/5] drm/i915/fbc: Remove ancient 16k plane stride limit (rev2)
URL : https://patchwork.freedesktop.org/series/123687/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_13693_full -> Patchwork_123687v2_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_123687v2_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_123687v2_full, please notify your bug team (lgci.bug.filing@intel.com) 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_123687v2_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_frontbuffer_tracking@fbc-badstride:
- shard-rkl: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13693/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-badstride.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-badstride.html
- shard-dg1: [PASS][3] -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13693/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-badstride.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-badstride.html
- shard-tglu: [PASS][5] -> [FAIL][6] +1 other test fail
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13693/shard-tglu-7/igt@kms_frontbuffer_tracking@fbc-badstride.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-badstride.html
- shard-mtlp: [PASS][7] -> [FAIL][8] +1 other test fail
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13693/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-badstride.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-badstride.html
- shard-apl: [PASS][9] -> [FAIL][10]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13693/shard-apl2/igt@kms_frontbuffer_tracking@fbc-badstride.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-apl7/igt@kms_frontbuffer_tracking@fbc-badstride.html
- shard-glk: [PASS][11] -> [FAIL][12]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13693/shard-glk2/igt@kms_frontbuffer_tracking@fbc-badstride.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-glk1/igt@kms_frontbuffer_tracking@fbc-badstride.html
- shard-dg2: NOTRUN -> [FAIL][13]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-badstride.html
Known issues
------------
Here are the changes found in Patchwork_123687v2_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-dg2: NOTRUN -> [SKIP][14] ([i915#8411])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-11/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@device_reset@cold-reset-bound:
- shard-mtlp: NOTRUN -> [SKIP][15] ([i915#7701])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-mtlp-4/igt@device_reset@cold-reset-bound.html
* igt@drm_fdinfo@busy@ccs0:
- shard-dg2: NOTRUN -> [SKIP][16] ([i915#8414]) +20 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-1/igt@drm_fdinfo@busy@ccs0.html
* igt@gem_busy@semaphore:
- shard-dg2: NOTRUN -> [SKIP][17] ([i915#3936])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-7/igt@gem_busy@semaphore.html
* igt@gem_close_race@multigpu-basic-process:
- shard-mtlp: NOTRUN -> [SKIP][18] ([i915#7697])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-mtlp-1/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-rkl: [PASS][19] -> [FAIL][20] ([i915#6268])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13693/shard-rkl-2/igt@gem_ctx_exec@basic-nohangcheck.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_isolation@preservation-reset@vcs1:
- shard-mtlp: [PASS][21] -> [ABORT][22] ([i915#9414])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13693/shard-mtlp-4/igt@gem_ctx_isolation@preservation-reset@vcs1.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-mtlp-6/igt@gem_ctx_isolation@preservation-reset@vcs1.html
* igt@gem_ctx_persistence@heartbeat-many:
- shard-dg2: NOTRUN -> [SKIP][23] ([i915#8555]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-many.html
* igt@gem_ctx_persistence@idempotent:
- shard-snb: NOTRUN -> [SKIP][24] ([fdo#109271] / [i915#1099])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-snb5/igt@gem_ctx_persistence@idempotent.html
* igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0:
- shard-dg2: NOTRUN -> [SKIP][25] ([i915#5882]) +9 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-7/igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-dg2: NOTRUN -> [SKIP][26] ([i915#280])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-11/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_eio@reset-stress:
- shard-dg2: NOTRUN -> [FAIL][27] ([i915#5784])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-7/igt@gem_eio@reset-stress.html
- shard-snb: NOTRUN -> [FAIL][28] ([i915#8898])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-snb5/igt@gem_eio@reset-stress.html
* igt@gem_exec_balancer@bonded-dual:
- shard-dg2: NOTRUN -> [SKIP][29] ([i915#4771])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-7/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@bonded-semaphore:
- shard-mtlp: NOTRUN -> [SKIP][30] ([i915#4812])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-mtlp-1/igt@gem_exec_balancer@bonded-semaphore.html
* igt@gem_exec_capture@capture-invisible@lmem0:
- shard-dg2: NOTRUN -> [SKIP][31] ([i915#6334]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-1/igt@gem_exec_capture@capture-invisible@lmem0.html
* igt@gem_exec_endless@dispatch@vecs0:
- shard-tglu: [PASS][32] -> [TIMEOUT][33] ([i915#3778])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13693/shard-tglu-5/igt@gem_exec_endless@dispatch@vecs0.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-tglu-9/igt@gem_exec_endless@dispatch@vecs0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-tglu: [PASS][34] -> [FAIL][35] ([i915#2842])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13693/shard-tglu-8/igt@gem_exec_fair@basic-pace-share@rcs0.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-tglu-10/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-rkl: [PASS][36] -> [FAIL][37] ([i915#2842]) +2 other tests fail
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13693/shard-rkl-7/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-rkl-2/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_flush@basic-batch-kernel-default-uc:
- shard-mtlp: [PASS][38] -> [DMESG-FAIL][39] ([i915#8962])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13693/shard-mtlp-3/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-mtlp-4/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
* igt@gem_exec_flush@basic-uc-ro-default:
- shard-dg2: NOTRUN -> [SKIP][40] ([i915#3539] / [i915#4852]) +4 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-1/igt@gem_exec_flush@basic-uc-ro-default.html
* igt@gem_exec_params@secure-non-master:
- shard-dg2: NOTRUN -> [SKIP][41] ([fdo#112283])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-1/igt@gem_exec_params@secure-non-master.html
* igt@gem_exec_reloc@basic-cpu-read-active:
- shard-mtlp: NOTRUN -> [SKIP][42] ([i915#3281])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-mtlp-4/igt@gem_exec_reloc@basic-cpu-read-active.html
* igt@gem_exec_reloc@basic-wc:
- shard-dg2: NOTRUN -> [SKIP][43] ([i915#3281]) +9 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-7/igt@gem_exec_reloc@basic-wc.html
* igt@gem_exec_reloc@basic-write-gtt-noreloc:
- shard-rkl: NOTRUN -> [SKIP][44] ([i915#3281]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-rkl-4/igt@gem_exec_reloc@basic-write-gtt-noreloc.html
* igt@gem_fence_thrash@bo-copy:
- shard-dg2: NOTRUN -> [SKIP][45] ([i915#4860]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-11/igt@gem_fence_thrash@bo-copy.html
* igt@gem_lmem_swapping@verify:
- shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4613])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-mtlp-1/igt@gem_lmem_swapping@verify.html
* igt@gem_madvise@dontneed-before-pwrite:
- shard-dg2: NOTRUN -> [SKIP][47] ([i915#3282]) +2 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-7/igt@gem_madvise@dontneed-before-pwrite.html
* igt@gem_mmap@bad-object:
- shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4083]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-mtlp-1/igt@gem_mmap@bad-object.html
* igt@gem_mmap_gtt@medium-copy-xy:
- shard-dg2: NOTRUN -> [SKIP][49] ([i915#4077]) +9 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-1/igt@gem_mmap_gtt@medium-copy-xy.html
* igt@gem_mmap_wc@bad-object:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#4083]) +8 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-7/igt@gem_mmap_wc@bad-object.html
* igt@gem_pread@snoop:
- shard-mtlp: NOTRUN -> [SKIP][51] ([i915#3282])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-mtlp-4/igt@gem_pread@snoop.html
* igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#4270]) +3 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-11/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
* igt@gem_pxp@verify-pxp-stale-buf-execution:
- shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4270]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-mtlp-4/igt@gem_pxp@verify-pxp-stale-buf-execution.html
* igt@gem_render_copy@y-tiled-mc-ccs-to-y-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][54] ([i915#8428]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-mtlp-1/igt@gem_render_copy@y-tiled-mc-ccs-to-y-tiled-ccs.html
* igt@gem_render_tiled_blits@basic:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#4079]) +2 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-7/igt@gem_render_tiled_blits@basic.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4079])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-mtlp-1/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_tiled_wb:
- shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4077]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-mtlp-1/igt@gem_tiled_wb.html
* igt@gem_unfence_active_buffers:
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#4879])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-11/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#3297]) +2 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-7/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#3297] / [i915#4880])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-11/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@readonly-unsync:
- shard-mtlp: NOTRUN -> [SKIP][61] ([i915#3297])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-mtlp-1/igt@gem_userptr_blits@readonly-unsync.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg2: NOTRUN -> [SKIP][62] ([i915#3297] / [i915#4958])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-7/igt@gem_userptr_blits@sd-probe.html
* igt@gen7_exec_parse@basic-offset:
- shard-mtlp: NOTRUN -> [SKIP][63] ([fdo#109289])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-mtlp-4/igt@gen7_exec_parse@basic-offset.html
* igt@gen7_exec_parse@batch-without-end:
- shard-dg2: NOTRUN -> [SKIP][64] ([fdo#109289]) +3 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-7/igt@gen7_exec_parse@batch-without-end.html
* igt@gen9_exec_parse@shadow-peek:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#2856]) +2 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-7/igt@gen9_exec_parse@shadow-peek.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg2: NOTRUN -> [DMESG-WARN][66] ([i915#8617])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-7/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rpm@dpms-lpsp:
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#1397])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-1/igt@i915_pm_rpm@dpms-lpsp.html
* igt@i915_pm_rpm@dpms-mode-unset-lpsp:
- shard-dg1: [PASS][68] -> [SKIP][69] ([i915#1397])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13693/shard-dg1-19/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg1-12/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html
* igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-rkl: [PASS][70] -> [SKIP][71] ([i915#1397])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13693/shard-rkl-2/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-rkl-7/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
- shard-mtlp: NOTRUN -> [SKIP][72] ([i915#1397])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-mtlp-1/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@i915_pm_rpm@modeset-lpsp-stress:
- shard-dg2: [PASS][73] -> [SKIP][74] ([i915#1397]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13693/shard-dg2-10/igt@i915_pm_rpm@modeset-lpsp-stress.html
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-2/igt@i915_pm_rpm@modeset-lpsp-stress.html
* igt@i915_pm_rpm@modeset-pc8-residency-stress:
- shard-dg2: NOTRUN -> [SKIP][75] ([fdo#109506])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-7/igt@i915_pm_rpm@modeset-pc8-residency-stress.html
* igt@i915_pm_rps@thresholds@gt1:
- shard-mtlp: NOTRUN -> [SKIP][76] ([i915#8925]) +1 other test skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-mtlp-4/igt@i915_pm_rps@thresholds@gt1.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#4387])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-7/igt@i915_pm_sseu@full-enable.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-rkl: [PASS][78] -> [FAIL][79] ([fdo#103375])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13693/shard-rkl-7/igt@i915_suspend@basic-s3-without-i915.html
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-rkl-6/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- shard-dg2: NOTRUN -> [SKIP][80] ([i915#4212])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-11/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- shard-mtlp: NOTRUN -> [SKIP][81] ([i915#4212])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-mtlp-4/igt@kms_addfb_basic@basic-x-tiled-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][82] ([i915#4215] / [i915#5190])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-1/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-mtlp: NOTRUN -> [SKIP][83] ([i915#3826])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-mtlp-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-1-y-rc_ccs:
- shard-dg1: NOTRUN -> [SKIP][84] ([i915#8502]) +7 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg1-19/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-1-y-rc_ccs.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][85] ([i915#5286])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-rkl-4/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-mtlp: [PASS][86] -> [FAIL][87] ([i915#5138])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13693/shard-mtlp-6/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-mtlp-7/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-mtlp: NOTRUN -> [SKIP][88] ([fdo#111614])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-mtlp-1/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: NOTRUN -> [FAIL][89] ([i915#5138])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][90] ([fdo#111614]) +3 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-1/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2: NOTRUN -> [SKIP][91] ([i915#5190]) +15 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-11/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-tglu: [PASS][92] -> [FAIL][93] ([i915#3743]) +3 other tests fail
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13693/shard-tglu-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-tglu-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: NOTRUN -> [SKIP][94] ([fdo#111615])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-mtlp-4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][95] ([i915#4538] / [i915#5190]) +5 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_joiner@basic:
- shard-dg2: NOTRUN -> [SKIP][96] ([i915#2705])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-1/igt@kms_big_joiner@basic.html
* igt@kms_ccs@pipe-c-bad-pixel-format-4_tiled_dg2_rc_ccs_cc:
- shard-rkl: NOTRUN -> [SKIP][97] ([i915#5354]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-rkl-4/igt@kms_ccs@pipe-c-bad-pixel-format-4_tiled_dg2_rc_ccs_cc.html
* igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs:
- shard-dg2: NOTRUN -> [SKIP][98] ([i915#5354]) +49 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-11/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs.html
* igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc:
- shard-dg2: NOTRUN -> [SKIP][99] ([i915#3689] / [i915#3886] / [i915#5354]) +9 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-7/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-c-missing-ccs-buffer-y_tiled_gen12_mc_ccs:
- shard-mtlp: NOTRUN -> [SKIP][100] ([i915#3886] / [i915#5354] / [i915#6095])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-mtlp-1/igt@kms_ccs@pipe-c-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-d-crc-primary-basic-yf_tiled_ccs:
- shard-dg2: NOTRUN -> [SKIP][101] ([i915#3689] / [i915#5354]) +23 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-7/igt@kms_ccs@pipe-d-crc-primary-basic-yf_tiled_ccs.html
* igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs:
- shard-mtlp: NOTRUN -> [SKIP][102] ([i915#5354] / [i915#6095]) +4 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-mtlp-1/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs.html
* igt@kms_chamelium_color@degamma:
- shard-dg2: NOTRUN -> [SKIP][103] ([fdo#111827]) +2 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-7/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_frames@dp-frame-dump:
- shard-mtlp: NOTRUN -> [SKIP][104] ([i915#7828]) +1 other test skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-mtlp-4/igt@kms_chamelium_frames@dp-frame-dump.html
* igt@kms_chamelium_frames@hdmi-crc-multiple:
- shard-dg2: NOTRUN -> [SKIP][105] ([i915#7828]) +11 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-1/igt@kms_chamelium_frames@hdmi-crc-multiple.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-rkl: NOTRUN -> [SKIP][106] ([i915#7828])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-rkl-4/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_color@deep-color:
- shard-rkl: NOTRUN -> [SKIP][107] ([i915#3555])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-rkl-1/igt@kms_color@deep-color.html
* igt@kms_content_protection@atomic@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [TIMEOUT][108] ([i915#7173]) +1 other test timeout
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-11/igt@kms_content_protection@atomic@pipe-a-dp-4.html
* igt@kms_content_protection@uevent@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [FAIL][109] ([i915#1339])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-11/igt@kms_content_protection@uevent@pipe-a-dp-4.html
* igt@kms_cursor_crc@cursor-random-128x128@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [ABORT][110] ([i915#9414])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-mtlp-4/igt@kms_cursor_crc@cursor-random-128x128@pipe-a-edp-1.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-rkl: NOTRUN -> [SKIP][111] ([i915#3359])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-rkl-4/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-dg2: NOTRUN -> [SKIP][112] ([i915#3359]) +2 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-7/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-dg2: NOTRUN -> [SKIP][113] ([i915#3555]) +6 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-7/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#4103] / [i915#4213] / [i915#5608])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-dg2: NOTRUN -> [SKIP][115] ([fdo#109274] / [i915#5354]) +2 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: [PASS][116] -> [FAIL][117] ([i915#2346])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13693/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][118] ([i915#4103] / [i915#4213])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@single-move@all-pipes:
- shard-mtlp: [PASS][119] -> [DMESG-WARN][120] ([i915#2017])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13693/shard-mtlp-5/igt@kms_cursor_legacy@single-move@all-pipes.html
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-mtlp-4/igt@kms_cursor_legacy@single-move@all-pipes.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-mtlp: NOTRUN -> [SKIP][121] ([i915#3555] / [i915#3840])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-mtlp-1/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#3469])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-11/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_fence_pin_leak:
- shard-dg2: NOTRUN -> [SKIP][123] ([i915#4881])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-11/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-mtlp: NOTRUN -> [SKIP][124] ([i915#3637])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-mtlp-4/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][125] ([fdo#111767] / [i915#3637])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-mtlp-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
- shard-snb: NOTRUN -> [SKIP][126] ([fdo#109271] / [fdo#111767])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-snb6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-dg2: NOTRUN -> [SKIP][127] ([i915#8381])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-1/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-dg2: NOTRUN -> [SKIP][128] ([fdo#109274]) +8 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-1/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-rkl: NOTRUN -> [SKIP][129] ([fdo#111825])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-rkl-4/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][130] ([i915#2672]) +1 other test skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][131] ([i915#2672])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][132] ([i915#8708]) +23 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
- shard-mtlp: NOTRUN -> [SKIP][133] ([i915#1825]) +4 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][134] ([i915#5460])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render:
- shard-rkl: NOTRUN -> [SKIP][135] ([i915#3023]) +2 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][136] ([i915#8708]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][137] ([fdo#111825] / [i915#1825]) +2 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render:
- shard-dg2: NOTRUN -> [SKIP][138] ([i915#3458]) +21 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes:
- shard-snb: NOTRUN -> [DMESG-WARN][139] ([i915#8841]) +6 other tests dmesg-warn
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-snb5/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html
* igt@kms_plane_lowres@tiling-y:
- shard-dg2: NOTRUN -> [SKIP][140] ([i915#8821])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-7/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_multiple@tiling-yf:
- shard-dg2: NOTRUN -> [SKIP][141] ([i915#3555] / [i915#8806])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-7/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1:
- shard-dg1: NOTRUN -> [FAIL][142] ([i915#8292])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg1-19/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-1:
- shard-dg1: NOTRUN -> [SKIP][143] ([i915#5235]) +7 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg1-19/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][144] ([i915#5235]) +3 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-mtlp-4/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-edp-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][145] ([i915#5235]) +15 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-6/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3.html
* igt@kms_prime@basic-crc-vgem:
- shard-dg2: NOTRUN -> [SKIP][146] ([i915#6524] / [i915#6805])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-11/igt@kms_prime@basic-crc-vgem.html
* igt@kms_psr2_sf@cursor-plane-update-sf:
- shard-rkl: NOTRUN -> [SKIP][147] ([fdo#111068] / [i915#658])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-rkl-4/igt@kms_psr2_sf@cursor-plane-update-sf.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg2: NOTRUN -> [SKIP][148] ([i915#658]) +2 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-7/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@primary_blt:
- shard-rkl: NOTRUN -> [SKIP][149] ([i915#1072])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-rkl-4/igt@kms_psr@primary_blt.html
* igt@kms_psr@psr2_cursor_plane_move:
- shard-dg2: NOTRUN -> [SKIP][150] ([i915#1072]) +7 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-11/igt@kms_psr@psr2_cursor_plane_move.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#5461] / [i915#658])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-rkl-4/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-snb: NOTRUN -> [SKIP][152] ([fdo#109271]) +107 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-snb5/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2: NOTRUN -> [SKIP][153] ([i915#4235]) +2 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-7/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-mtlp: NOTRUN -> [SKIP][154] ([i915#3555] / [i915#8823])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-mtlp-1/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_sysfs_edid_timing:
- shard-dg2: NOTRUN -> [FAIL][155] ([IGT#2])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-7/igt@kms_sysfs_edid_timing.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2: NOTRUN -> [SKIP][156] ([i915#8623])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_tv_load_detect@load-detect:
- shard-dg2: NOTRUN -> [SKIP][157] ([fdo#109309])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-7/igt@kms_tv_load_detect@load-detect.html
* igt@kms_universal_plane@cursor-fb-leak-pipe-a:
- shard-snb: [PASS][158] -> [FAIL][159] ([i915#9196])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13693/shard-snb5/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-snb1/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html
* igt@kms_universal_plane@cursor-fb-leak-pipe-c:
- shard-dg2: [PASS][160] -> [FAIL][161] ([i915#9196])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13693/shard-dg2-10/igt@kms_universal_plane@cursor-fb-leak-pipe-c.html
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-2/igt@kms_universal_plane@cursor-fb-leak-pipe-c.html
* igt@kms_vrr@flip-basic:
- shard-mtlp: NOTRUN -> [SKIP][162] ([i915#3555] / [i915#8808])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-mtlp-4/igt@kms_vrr@flip-basic.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-dg2: NOTRUN -> [SKIP][163] ([i915#2437]) +1 other test skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-1/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf@mi-rpc:
- shard-dg2: NOTRUN -> [SKIP][164] ([i915#2434])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-7/igt@perf@mi-rpc.html
* igt@perf_pmu@busy-double-start@vcs1:
- shard-mtlp: [PASS][165] -> [FAIL][166] ([i915#4349]) +2 other tests fail
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13693/shard-mtlp-8/igt@perf_pmu@busy-double-start@vcs1.html
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-mtlp-4/igt@perf_pmu@busy-double-start@vcs1.html
* igt@prime_vgem@fence-flip-hang:
- shard-dg2: NOTRUN -> [SKIP][167] ([i915#3708])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-1/igt@prime_vgem@fence-flip-hang.html
* igt@v3d/v3d_perfmon@get-values-invalid-pad:
- shard-mtlp: NOTRUN -> [SKIP][168] ([i915#2575])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-mtlp-1/igt@v3d/v3d_perfmon@get-values-invalid-pad.html
* igt@v3d/v3d_submit_cl@bad-perfmon:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#2575]) +12 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-1/igt@v3d/v3d_submit_cl@bad-perfmon.html
* igt@vc4/vc4_tiling@get-bad-modifier:
- shard-mtlp: NOTRUN -> [SKIP][170] ([i915#7711]) +1 other test skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-mtlp-1/igt@vc4/vc4_tiling@get-bad-modifier.html
* igt@vc4/vc4_tiling@set-get:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#7711]) +7 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-7/igt@vc4/vc4_tiling@set-get.html
#### Possible fixes ####
* igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
- shard-rkl: [FAIL][172] ([i915#7742]) -> [PASS][173]
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13693/shard-rkl-7/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-rkl-6/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
* igt@gem_ctx_isolation@preservation-s3@vcs1:
- shard-mtlp: [ABORT][174] ([i915#9262]) -> [PASS][175]
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13693/shard-mtlp-2/igt@gem_ctx_isolation@preservation-s3@vcs1.html
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-mtlp-1/igt@gem_ctx_isolation@preservation-s3@vcs1.html
* igt@gem_eio@kms:
- shard-dg1: [FAIL][176] ([i915#5784]) -> [PASS][177]
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13693/shard-dg1-17/igt@gem_eio@kms.html
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg1-15/igt@gem_eio@kms.html
* igt@gem_exec_fair@basic-pace@bcs0:
- shard-rkl: [FAIL][178] ([i915#2842]) -> [PASS][179]
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13693/shard-rkl-4/igt@gem_exec_fair@basic-pace@bcs0.html
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-rkl-4/igt@gem_exec_fair@basic-pace@bcs0.html
* igt@gem_exec_schedule@u-semaphore-resolve:
- shard-mtlp: [ABORT][180] ([i915#9414]) -> [PASS][181]
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13693/shard-mtlp-5/igt@gem_exec_schedule@u-semaphore-resolve.html
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-mtlp-4/igt@gem_exec_schedule@u-semaphore-resolve.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [TIMEOUT][182] ([i915#5493]) -> [PASS][183]
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13693/shard-dg2-11/igt@gem_lmem_swapping@smem-oom@lmem0.html
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-11/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_softpin@noreloc-s3:
- shard-dg2: [FAIL][184] ([fdo#103375]) -> [PASS][185]
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13693/shard-dg2-5/igt@gem_softpin@noreloc-s3.html
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-5/igt@gem_softpin@noreloc-s3.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg1: [DMESG-WARN][186] ([i915#4391]) -> [PASS][187]
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13693/shard-dg1-19/igt@i915_module_load@reload-with-fault-injection.html
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg1-12/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rc6_residency@rc6-idle@rcs0:
- shard-dg1: [FAIL][188] ([i915#3591]) -> [PASS][189]
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13693/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
* igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg1: [SKIP][190] ([i915#1397]) -> [PASS][191] +2 other tests pass
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13693/shard-dg1-19/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg1-12/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: [SKIP][192] ([i915#1397]) -> [PASS][193] +1 other test pass
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13693/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-rkl-2/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-apl: [FAIL][194] ([i915#2346]) -> [PASS][195]
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13693/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_flip@flip-vs-suspend@c-edp1:
- shard-mtlp: [FAIL][196] ([fdo#103375]) -> [PASS][197]
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13693/shard-mtlp-1/igt@kms_flip@flip-vs-suspend@c-edp1.html
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-mtlp-5/igt@kms_flip@flip-vs-suspend@c-edp1.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
- shard-snb: [SKIP][198] ([fdo#109271]) -> [PASS][199]
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13693/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes:
- shard-dg2: [INCOMPLETE][200] -> [PASS][201]
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13693/shard-dg2-5/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg2-7/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html
* igt@perf_pmu@busy-double-start@bcs0:
- shard-mtlp: [FAIL][202] ([i915#4349]) -> [PASS][203]
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13693/shard-mtlp-8/igt@perf_pmu@busy-double-start@bcs0.html
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-mtlp-4/igt@perf_pmu@busy-double-start@bcs0.html
* igt@perf_pmu@busy-idle-check-all@ccs0:
- shard-mtlp: [FAIL][204] ([i915#4521]) -> [PASS][205]
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13693/shard-mtlp-7/igt@perf_pmu@busy-idle-check-all@ccs0.html
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-mtlp-3/igt@perf_pmu@busy-idle-check-all@ccs0.html
* igt@perf_pmu@multi-client@rcs0:
- shard-mtlp: [FAIL][206] -> [PASS][207]
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13693/shard-mtlp-1/igt@perf_pmu@multi-client@rcs0.html
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-mtlp-5/igt@perf_pmu@multi-client@rcs0.html
* igt@syncobj_timeline@host-signal-points:
- shard-dg1: [DMESG-WARN][208] ([i915#4423]) -> [PASS][209] +2 other tests pass
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13693/shard-dg1-15/igt@syncobj_timeline@host-signal-points.html
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg1-18/igt@syncobj_timeline@host-signal-points.html
#### Warnings ####
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg1: [DMESG-WARN][210] ([i915#4936] / [i915#5493]) -> [TIMEOUT][211] ([i915#5493])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13693/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_workarounds@suspend-resume-context:
- shard-snb: [DMESG-WARN][212] ([i915#5090] / [i915#8841]) -> [DMESG-WARN][213] ([i915#8841])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13693/shard-snb2/igt@gem_workarounds@suspend-resume-context.html
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-snb6/igt@gem_workarounds@suspend-resume-context.html
* igt@i915_pm_rc6_residency@rc6-idle@vcs0:
- shard-tglu: [WARN][214] ([i915#2681]) -> [FAIL][215] ([i915#2681] / [i915#3591])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13693/shard-tglu-4/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
- shard-dg1: [SKIP][216] ([fdo#111825] / [i915#4423]) -> [SKIP][217] ([fdo#111825])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13693/shard-dg1-15/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg1-18/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_force_connector_basic@force-load-detect:
- shard-rkl: [SKIP][218] ([fdo#109285]) -> [SKIP][219] ([fdo#109285] / [i915#4098])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13693/shard-rkl-6/igt@kms_force_connector_basic@force-load-detect.html
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-rkl-4/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][220] ([i915#4816]) -> [SKIP][221] ([i915#4070] / [i915#4816])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13693/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_psr@sprite_plane_onoff:
- shard-dg1: [SKIP][222] ([i915#1072] / [i915#4078]) -> [SKIP][223] ([i915#1072])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13693/shard-dg1-18/igt@kms_psr@sprite_plane_onoff.html
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123687v2/shard-dg1-17/igt@kms_psr@sprite_plane_onoff.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
[fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#1339]: https://gitlab.freedesktop.org/drm/intel/issues/1339
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937
[i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3778]: https://gitlab.freedesktop.org/drm/intel/issues/3778
[i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
[i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
[i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391
[i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423
[i915#4521]: https://gitlab.freedesktop.org/drm/intel/issues/4521
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879
[i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
[i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881
[i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936
[i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958
[i915#5090]: https://gitlab.freedesktop.org/drm/intel/issues/5090
[i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460
[i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461
[i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
[i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#5882]: https://gitlab.freedesktop.org/drm/intel/issues/5882
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805
[i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292
[i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
[i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428
[i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8617]: https://gitlab.freedesktop.org/drm/intel/issues/8617
[i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806
[i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808
[i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821
[i915#8823]: https://gitlab.freedesktop.org/drm/intel/issues/8823
[i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841
[i915#8898]: https://gitlab.freedesktop.org/drm/intel/issues/8898
[i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925
[i915#8962]: https://gitlab.freedesktop.org/drm/intel/issues/8962
[i915#9053]: https://gitlab.freedesktop.org/drm/intel/issues/9053
[i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196
[i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262
[i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412
[i915#9414]: https://gitlab.freedesktop.org/drm/intel/issues/9414
[i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424
Build changes
-------------
* Linux: CI_DRM_13693 -> Patchwork_123687v2
CI-20190529: 20190529
CI_DRM_13693: bb46e837b7e59c22a567ae6913ff4d6bf0e9211a @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_7506: 4fdf544bd0a38c5a100ef43c30171827e1c8c442 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_123687v2: bb46e837b7e59c22a567ae6913ff4d6bf0e9211a @ 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_123687v2/index.html
[-- Attachment #2: Type: text/html, Size: 70081 bytes --]
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [Intel-gfx] [PATCH 2/5] drm/i915/fbc: Split plane stride checks per-platform
2023-09-14 11:38 ` [Intel-gfx] [PATCH 2/5] drm/i915/fbc: Split plane stride checks per-platform Ville Syrjala
@ 2023-10-01 10:53 ` Govindapillai, Vinod
2023-10-02 7:02 ` Ville Syrjälä
0 siblings, 1 reply; 19+ messages in thread
From: Govindapillai, Vinod @ 2023-10-01 10:53 UTC (permalink / raw)
To: ville.syrjala@linux.intel.com, intel-gfx@lists.freedesktop.org
Hi Ville,
On Thu, 2023-09-14 at 14:38 +0300, Ville Syrjala wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> Carve up stride_is_valid() into per-platform variants to
> make it easier to see what limits are actually being imposed.
>
> TODO: maybe go for vfuncs later
>
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_fbc.c | 68 ++++++++++++++++++------
> 1 file changed, 51 insertions(+), 17 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_fbc.c b/drivers/gpu/drm/i915/display/intel_fbc.c
> index 1b3358a0fbfb..4c4626c84666 100644
> --- a/drivers/gpu/drm/i915/display/intel_fbc.c
> +++ b/drivers/gpu/drm/i915/display/intel_fbc.c
> @@ -848,6 +848,47 @@ void intel_fbc_cleanup(struct drm_i915_private *i915)
> }
> }
>
> +static bool i8xx_fbc_stride_is_valid(const struct intel_plane_state *plane_state)
> +{
> + const struct drm_framebuffer *fb = plane_state->hw.fb;
> + unsigned int stride = intel_fbc_plane_stride(plane_state) *
> + fb->format->cpp[0];
> +
> + return stride == 4096 || stride == 8192;
> +}
> +
> +static bool i965_fbc_stride_is_valid(const struct intel_plane_state *plane_state)
> +{
> + const struct drm_framebuffer *fb = plane_state->hw.fb;
> + unsigned int stride = intel_fbc_plane_stride(plane_state) *
> + fb->format->cpp[0];
> +
> + return stride >= 2048 && stride <= 16384;
> +}
> +
> +static bool g4x_fbc_stride_is_valid(const struct intel_plane_state *plane_state)
> +{
> + return true;
> +}
> +
> +static bool skl_fbc_stride_is_valid(const struct intel_plane_state *plane_state)
> +{
> + const struct drm_framebuffer *fb = plane_state->hw.fb;
> + unsigned int stride = intel_fbc_plane_stride(plane_state) *
> + fb->format->cpp[0];
> +
> + /* Display WA #1105: skl,bxt,kbl,cfl,glk */
> + if (fb->modifier == DRM_FORMAT_MOD_LINEAR && stride & 511)
> + return false;
> +
> + return true;
> +}
> +
> +static bool icl_fbc_stride_is_valid(const struct intel_plane_state *plane_state)
> +{
> + return true;
> +}
> +
> static bool stride_is_valid(const struct intel_plane_state *plane_state)
> {
> struct drm_i915_private *i915 = to_i915(plane_state->uapi.plane->dev);
> @@ -859,23 +900,16 @@ static bool stride_is_valid(const struct intel_plane_state *plane_state)
> if (drm_WARN_ON_ONCE(&i915->drm, (stride & (64 - 1)) != 0))
> return false;
>
> - /* Below are the additional FBC restrictions. */
> - if (stride < 512)
> - return false;
Is this check not required anymore for ICL+ and G4x?
> -
> - if (DISPLAY_VER(i915) == 2 || DISPLAY_VER(i915) == 3)
> - return stride == 4096 || stride == 8192;
> -
> - if (DISPLAY_VER(i915) == 4 && !IS_G4X(i915) &&
> - (stride < 2048 || stride > 16384))
> - return false;
> -
> - /* Display WA #1105: skl,bxt,kbl,cfl,glk */
> - if ((DISPLAY_VER(i915) == 9 || IS_GEMINILAKE(i915)) &&
> - fb->modifier == DRM_FORMAT_MOD_LINEAR && stride & 511)
> - return false;
> -
> - return true;
> + if (DISPLAY_VER(i915) >= 11)
> + return icl_fbc_stride_is_valid(plane_state);
> + else if (DISPLAY_VER(i915) >= 9)
> + return skl_fbc_stride_is_valid(plane_state);
> + else if (DISPLAY_VER(i915) >= 5 || IS_G4X(i915))
> + return g4x_fbc_stride_is_valid(plane_state);
> + else if (DISPLAY_VER(i915) == 4)
> + return i965_fbc_stride_is_valid(plane_state);
> + else
> + return i8xx_fbc_stride_is_valid(plane_state);
Also I guess we could pass "stride" as parameter to these functions for clarity and simplify.
There as some IGT CI failures related to bad_stride tests.
BR
Vinod
> }
>
> static bool pixel_format_is_valid(const struct intel_plane_state *plane_state)
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [Intel-gfx] [PATCH 3/5] drm/i915/fbc: Split plane tiling checks per-platform
2023-09-14 11:38 ` [Intel-gfx] [PATCH 3/5] drm/i915/fbc: Split plane tiling " Ville Syrjala
@ 2023-10-01 11:00 ` Govindapillai, Vinod
2023-10-02 6:55 ` Ville Syrjälä
0 siblings, 1 reply; 19+ messages in thread
From: Govindapillai, Vinod @ 2023-10-01 11:00 UTC (permalink / raw)
To: ville.syrjala@linux.intel.com, intel-gfx@lists.freedesktop.org
Hi Ville,
On Thu, 2023-09-14 at 14:38 +0300, Ville Syrjala wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> Carve up tiling_is_valid() into per-platform variants to
> make it easier to see what limits are actually being imposed.
>
> TODO: maybe go for vfuncs later
>
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_fbc.c | 21 ++++++++++++++++++---
> 1 file changed, 18 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_fbc.c b/drivers/gpu/drm/i915/display/intel_fbc.c
> index 4c4626c84666..052f9d8b53d4 100644
> --- a/drivers/gpu/drm/i915/display/intel_fbc.c
> +++ b/drivers/gpu/drm/i915/display/intel_fbc.c
> @@ -984,16 +984,21 @@ static bool intel_fbc_hw_tracking_covers_screen(const struct
> intel_plane_state *
> return effective_w <= max_w && effective_h <= max_h;
> }
>
> -static bool tiling_is_valid(const struct intel_plane_state *plane_state)
> +static bool i8xx_fbc_tiling_valid(const struct intel_plane_state *plane_state)
> +{
> + const struct drm_framebuffer *fb = plane_state->hw.fb;
> +
> + return fb->modifier == I915_FORMAT_MOD_X_TILED;
> +}
> +
> +static bool skl_fbc_tiling_valid(const struct intel_plane_state *plane_state)
> {
> - struct drm_i915_private *i915 = to_i915(plane_state->uapi.plane->dev);
> const struct drm_framebuffer *fb = plane_state->hw.fb;
>
> switch (fb->modifier) {
> case DRM_FORMAT_MOD_LINEAR:
> case I915_FORMAT_MOD_Y_TILED:
> case I915_FORMAT_MOD_Yf_TILED:
> - return DISPLAY_VER(i915) >= 9;
> case I915_FORMAT_MOD_4_TILED:
> case I915_FORMAT_MOD_X_TILED:
> return true;
> @@ -1002,6 +1007,16 @@ static bool tiling_is_valid(const struct intel_plane_state *plane_state)
> }
> }
>
> +static bool tiling_is_valid(const struct intel_plane_state *plane_state)
> +{
> + struct drm_i915_private *i915 = to_i915(plane_state->uapi.plane->dev);
> +
> + if (DISPLAY_VER(i915) >= 9)
> + return skl_fbc_tiling_valid(plane_state);
> + else
> + return i8xx_fbc_tiling_valid(plane_state);
I915_FORMAT_MOD_4_TILED is not checked for i8xx_fbc_tiling_valid() comparing to the original code.
Is that intentional?
With that checked,
Reviewed-by: Vinod Govindapillai <vinod.govindapillai@intel.com>
> +}
> +
> static void intel_fbc_update_state(struct intel_atomic_state *state,
> struct intel_crtc *crtc,
> struct intel_plane *plane)
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [Intel-gfx] [PATCH 4/5] drm/i915/fbc: Split plane rotation checks per-platform
2023-09-14 11:38 ` [Intel-gfx] [PATCH 4/5] drm/i915/fbc: Split plane rotation " Ville Syrjala
@ 2023-10-01 11:03 ` Govindapillai, Vinod
0 siblings, 0 replies; 19+ messages in thread
From: Govindapillai, Vinod @ 2023-10-01 11:03 UTC (permalink / raw)
To: ville.syrjala@linux.intel.com, intel-gfx@lists.freedesktop.org
On Thu, 2023-09-14 at 14:38 +0300, Ville Syrjala wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> Carve up rotation_is_valid() into per-platform variants to
> make it easier to see what limits are actually being imposed.
>
> TODO: maybe go for vfuncs later
>
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_fbc.c | 30 +++++++++++++++++++-----
> 1 file changed, 24 insertions(+), 6 deletions(-)
Reviewed-by: Vinod Govindapillai <vinod.govindapillai@intel.com>
>
> diff --git a/drivers/gpu/drm/i915/display/intel_fbc.c b/drivers/gpu/drm/i915/display/intel_fbc.c
> index 052f9d8b53d4..1a6931e66d5d 100644
> --- a/drivers/gpu/drm/i915/display/intel_fbc.c
> +++ b/drivers/gpu/drm/i915/display/intel_fbc.c
> @@ -935,22 +935,40 @@ static bool pixel_format_is_valid(const struct intel_plane_state
> *plane_state)
> }
> }
>
> -static bool rotation_is_valid(const struct intel_plane_state *plane_state)
> +static bool i8xx_fbc_rotation_is_valid(const struct intel_plane_state *plane_state)
> +{
> + return plane_state->hw.rotation == DRM_MODE_ROTATE_0;
> +}
> +
> +static bool g4x_fbc_rotation_is_valid(const struct intel_plane_state *plane_state)
> +{
> + return true;
> +}
> +
> +static bool skl_fbc_rotation_is_valid(const struct intel_plane_state *plane_state)
> {
> - struct drm_i915_private *i915 = to_i915(plane_state->uapi.plane->dev);
> const struct drm_framebuffer *fb = plane_state->hw.fb;
> unsigned int rotation = plane_state->hw.rotation;
>
> - if (DISPLAY_VER(i915) >= 9 && fb->format->format == DRM_FORMAT_RGB565 &&
> + if (fb->format->format == DRM_FORMAT_RGB565 &&
> drm_rotation_90_or_270(rotation))
> return false;
> - else if (DISPLAY_VER(i915) <= 4 && !IS_G4X(i915) &&
> - rotation != DRM_MODE_ROTATE_0)
> - return false;
>
> return true;
> }
>
> +static bool rotation_is_valid(const struct intel_plane_state *plane_state)
> +{
> + struct drm_i915_private *i915 = to_i915(plane_state->uapi.plane->dev);
> +
> + if (DISPLAY_VER(i915) >= 9)
> + return skl_fbc_rotation_is_valid(plane_state);
> + else if (DISPLAY_VER(i915) >= 5 || IS_G4X(i915))
> + return g4x_fbc_rotation_is_valid(plane_state);
> + else
> + return i8xx_fbc_rotation_is_valid(plane_state);
> +}
> +
> /*
> * For some reason, the hardware tracking starts looking at whatever we
> * programmed as the display plane base address register. It does not look at
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [Intel-gfx] [PATCH 5/5] drm/i915/fbc: Split plane pixel format checks per-platform
2023-09-14 11:38 ` [Intel-gfx] [PATCH 5/5] drm/i915/fbc: Split plane pixel format " Ville Syrjala
@ 2023-10-01 11:08 ` Govindapillai, Vinod
0 siblings, 0 replies; 19+ messages in thread
From: Govindapillai, Vinod @ 2023-10-01 11:08 UTC (permalink / raw)
To: ville.syrjala@linux.intel.com, intel-gfx@lists.freedesktop.org
On Thu, 2023-09-14 at 14:38 +0300, Ville Syrjala wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> Carve up pixel_format_is_valid() into per-platform variants to
> make it easier to see what limits are actually being imposed.
>
> Note that the XRGB1555 can be dropped from the g4x+ variant
> since the plane no longer supports that format anyway.
>
> TODO: maybe go for vfuncs later
>
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_fbc.c | 28 +++++++++++++++++++++++-
> 1 file changed, 27 insertions(+), 1 deletion(-)
Reviewed-by: Vinod Govindapillai <vinod.govindapillai@intel.com>
>
> diff --git a/drivers/gpu/drm/i915/display/intel_fbc.c b/drivers/gpu/drm/i915/display/intel_fbc.c
> index 1a6931e66d5d..51998b1ec941 100644
> --- a/drivers/gpu/drm/i915/display/intel_fbc.c
> +++ b/drivers/gpu/drm/i915/display/intel_fbc.c
> @@ -912,7 +912,7 @@ static bool stride_is_valid(const struct intel_plane_state *plane_state)
> return i8xx_fbc_stride_is_valid(plane_state);
> }
>
> -static bool pixel_format_is_valid(const struct intel_plane_state *plane_state)
> +static bool i8xx_fbc_pixel_format_is_valid(const struct intel_plane_state *plane_state)
> {
> struct drm_i915_private *i915 = to_i915(plane_state->uapi.plane->dev);
> const struct drm_framebuffer *fb = plane_state->hw.fb;
> @@ -926,6 +926,22 @@ static bool pixel_format_is_valid(const struct intel_plane_state
> *plane_state)
> /* 16bpp not supported on gen2 */
> if (DISPLAY_VER(i915) == 2)
> return false;
> + return true;
> + default:
> + return false;
> + }
> +}
> +
> +static bool g4x_fbc_pixel_format_is_valid(const struct intel_plane_state *plane_state)
> +{
> + struct drm_i915_private *i915 = to_i915(plane_state->uapi.plane->dev);
> + const struct drm_framebuffer *fb = plane_state->hw.fb;
> +
> + switch (fb->format->format) {
> + case DRM_FORMAT_XRGB8888:
> + case DRM_FORMAT_XBGR8888:
> + return true;
> + case DRM_FORMAT_RGB565:
> /* WaFbcOnly1to1Ratio:ctg */
> if (IS_G4X(i915))
> return false;
> @@ -935,6 +951,16 @@ static bool pixel_format_is_valid(const struct intel_plane_state
> *plane_state)
> }
> }
>
> +static bool pixel_format_is_valid(const struct intel_plane_state *plane_state)
> +{
> + struct drm_i915_private *i915 = to_i915(plane_state->uapi.plane->dev);
> +
> + if (DISPLAY_VER(i915) >= 5 || IS_G4X(i915))
> + return g4x_fbc_pixel_format_is_valid(plane_state);
> + else
> + return i8xx_fbc_pixel_format_is_valid(plane_state);
> +}
> +
> static bool i8xx_fbc_rotation_is_valid(const struct intel_plane_state *plane_state)
> {
> return plane_state->hw.rotation == DRM_MODE_ROTATE_0;
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [Intel-gfx] [PATCH 3/5] drm/i915/fbc: Split plane tiling checks per-platform
2023-10-01 11:00 ` Govindapillai, Vinod
@ 2023-10-02 6:55 ` Ville Syrjälä
0 siblings, 0 replies; 19+ messages in thread
From: Ville Syrjälä @ 2023-10-02 6:55 UTC (permalink / raw)
To: Govindapillai, Vinod; +Cc: intel-gfx@lists.freedesktop.org
On Sun, Oct 01, 2023 at 11:00:44AM +0000, Govindapillai, Vinod wrote:
> Hi Ville,
>
> On Thu, 2023-09-14 at 14:38 +0300, Ville Syrjala wrote:
> > From: Ville Syrjälä <ville.syrjala@linux.intel.com>
> >
> > Carve up tiling_is_valid() into per-platform variants to
> > make it easier to see what limits are actually being imposed.
> >
> > TODO: maybe go for vfuncs later
> >
> > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> > ---
> > drivers/gpu/drm/i915/display/intel_fbc.c | 21 ++++++++++++++++++---
> > 1 file changed, 18 insertions(+), 3 deletions(-)
>
>
> >
> > diff --git a/drivers/gpu/drm/i915/display/intel_fbc.c b/drivers/gpu/drm/i915/display/intel_fbc.c
> > index 4c4626c84666..052f9d8b53d4 100644
> > --- a/drivers/gpu/drm/i915/display/intel_fbc.c
> > +++ b/drivers/gpu/drm/i915/display/intel_fbc.c
> > @@ -984,16 +984,21 @@ static bool intel_fbc_hw_tracking_covers_screen(const struct
> > intel_plane_state *
> > return effective_w <= max_w && effective_h <= max_h;
> > }
> >
> > -static bool tiling_is_valid(const struct intel_plane_state *plane_state)
> > +static bool i8xx_fbc_tiling_valid(const struct intel_plane_state *plane_state)
> > +{
> > + const struct drm_framebuffer *fb = plane_state->hw.fb;
> > +
> > + return fb->modifier == I915_FORMAT_MOD_X_TILED;
> > +}
> > +
> > +static bool skl_fbc_tiling_valid(const struct intel_plane_state *plane_state)
> > {
> > - struct drm_i915_private *i915 = to_i915(plane_state->uapi.plane->dev);
> > const struct drm_framebuffer *fb = plane_state->hw.fb;
> >
> > switch (fb->modifier) {
> > case DRM_FORMAT_MOD_LINEAR:
> > case I915_FORMAT_MOD_Y_TILED:
> > case I915_FORMAT_MOD_Yf_TILED:
> > - return DISPLAY_VER(i915) >= 9;
> > case I915_FORMAT_MOD_4_TILED:
> > case I915_FORMAT_MOD_X_TILED:
> > return true;
> > @@ -1002,6 +1007,16 @@ static bool tiling_is_valid(const struct intel_plane_state *plane_state)
> > }
> > }
> >
> > +static bool tiling_is_valid(const struct intel_plane_state *plane_state)
> > +{
> > + struct drm_i915_private *i915 = to_i915(plane_state->uapi.plane->dev);
> > +
> > + if (DISPLAY_VER(i915) >= 9)
> > + return skl_fbc_tiling_valid(plane_state);
> > + else
> > + return i8xx_fbc_tiling_valid(plane_state);
> I915_FORMAT_MOD_4_TILED is not checked for i8xx_fbc_tiling_valid() comparing to the original code.
> Is that intentional?
Tile4 was introduced in dg2/mtl
>
> With that checked,
>
> Reviewed-by: Vinod Govindapillai <vinod.govindapillai@intel.com>
>
>
> > +}
> > +
> > static void intel_fbc_update_state(struct intel_atomic_state *state,
> > struct intel_crtc *crtc,
> > struct intel_plane *plane)
>
--
Ville Syrjälä
Intel
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [Intel-gfx] [PATCH 2/5] drm/i915/fbc: Split plane stride checks per-platform
2023-10-01 10:53 ` Govindapillai, Vinod
@ 2023-10-02 7:02 ` Ville Syrjälä
2023-10-02 7:32 ` Govindapillai, Vinod
0 siblings, 1 reply; 19+ messages in thread
From: Ville Syrjälä @ 2023-10-02 7:02 UTC (permalink / raw)
To: Govindapillai, Vinod; +Cc: intel-gfx@lists.freedesktop.org
On Sun, Oct 01, 2023 at 10:53:37AM +0000, Govindapillai, Vinod wrote:
> Hi Ville,
>
>
> On Thu, 2023-09-14 at 14:38 +0300, Ville Syrjala wrote:
> > From: Ville Syrjälä <ville.syrjala@linux.intel.com>
> >
> > Carve up stride_is_valid() into per-platform variants to
> > make it easier to see what limits are actually being imposed.
> >
> > TODO: maybe go for vfuncs later
> >
> > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> > ---
> > drivers/gpu/drm/i915/display/intel_fbc.c | 68 ++++++++++++++++++------
> > 1 file changed, 51 insertions(+), 17 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/i915/display/intel_fbc.c b/drivers/gpu/drm/i915/display/intel_fbc.c
> > index 1b3358a0fbfb..4c4626c84666 100644
> > --- a/drivers/gpu/drm/i915/display/intel_fbc.c
> > +++ b/drivers/gpu/drm/i915/display/intel_fbc.c
> > @@ -848,6 +848,47 @@ void intel_fbc_cleanup(struct drm_i915_private *i915)
> > }
> > }
> >
> > +static bool i8xx_fbc_stride_is_valid(const struct intel_plane_state *plane_state)
> > +{
> > + const struct drm_framebuffer *fb = plane_state->hw.fb;
> > + unsigned int stride = intel_fbc_plane_stride(plane_state) *
> > + fb->format->cpp[0];
> > +
> > + return stride == 4096 || stride == 8192;
> > +}
> > +
> > +static bool i965_fbc_stride_is_valid(const struct intel_plane_state *plane_state)
> > +{
> > + const struct drm_framebuffer *fb = plane_state->hw.fb;
> > + unsigned int stride = intel_fbc_plane_stride(plane_state) *
> > + fb->format->cpp[0];
> > +
> > + return stride >= 2048 && stride <= 16384;
> > +}
> > +
> > +static bool g4x_fbc_stride_is_valid(const struct intel_plane_state *plane_state)
> > +{
> > + return true;
> > +}
> > +
> > +static bool skl_fbc_stride_is_valid(const struct intel_plane_state *plane_state)
> > +{
> > + const struct drm_framebuffer *fb = plane_state->hw.fb;
> > + unsigned int stride = intel_fbc_plane_stride(plane_state) *
> > + fb->format->cpp[0];
> > +
> > + /* Display WA #1105: skl,bxt,kbl,cfl,glk */
> > + if (fb->modifier == DRM_FORMAT_MOD_LINEAR && stride & 511)
> > + return false;
> > +
> > + return true;
> > +}
> > +
> > +static bool icl_fbc_stride_is_valid(const struct intel_plane_state *plane_state)
> > +{
> > + return true;
> > +}
> > +
> > static bool stride_is_valid(const struct intel_plane_state *plane_state)
> > {
> > struct drm_i915_private *i915 = to_i915(plane_state->uapi.plane->dev);
> > @@ -859,23 +900,16 @@ static bool stride_is_valid(const struct intel_plane_state *plane_state)
> > if (drm_WARN_ON_ONCE(&i915->drm, (stride & (64 - 1)) != 0))
> > return false;
> >
> > - /* Below are the additional FBC restrictions. */
> > - if (stride < 512)
> > - return false;
> Is this check not required anymore for ICL+ and G4x?
Pre-skl FBC only supports X-tile which is a multiple of 512 bytes
anyway, so the check is redundant there.
And skl+ can support smaller strides with modifiers that have
smaller tile width (minus the linear stride w/a on skl/bxt/glk).
Perhaps removing this check should be a separate patch...
and we could remove the "multiple of 64 bytes" check too
since that is always true on any platform/modifier.
>
> > -
> > - if (DISPLAY_VER(i915) == 2 || DISPLAY_VER(i915) == 3)
> > - return stride == 4096 || stride == 8192;
> > -
> > - if (DISPLAY_VER(i915) == 4 && !IS_G4X(i915) &&
> > - (stride < 2048 || stride > 16384))
> > - return false;
> > -
> > - /* Display WA #1105: skl,bxt,kbl,cfl,glk */
> > - if ((DISPLAY_VER(i915) == 9 || IS_GEMINILAKE(i915)) &&
> > - fb->modifier == DRM_FORMAT_MOD_LINEAR && stride & 511)
> > - return false;
> > -
> > - return true;
> > + if (DISPLAY_VER(i915) >= 11)
> > + return icl_fbc_stride_is_valid(plane_state);
> > + else if (DISPLAY_VER(i915) >= 9)
> > + return skl_fbc_stride_is_valid(plane_state);
> > + else if (DISPLAY_VER(i915) >= 5 || IS_G4X(i915))
> > + return g4x_fbc_stride_is_valid(plane_state);
> > + else if (DISPLAY_VER(i915) == 4)
> > + return i965_fbc_stride_is_valid(plane_state);
> > + else
> > + return i8xx_fbc_stride_is_valid(plane_state);
> Also I guess we could pass "stride" as parameter to these functions for clarity and simplify.
We need more than the stride there.
>
> There as some IGT CI failures related to bad_stride tests.
Yeah, I need to nuke that subtest.
>
> BR
> Vinod
> > }
> >
> > static bool pixel_format_is_valid(const struct intel_plane_state *plane_state)
>
--
Ville Syrjälä
Intel
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [Intel-gfx] [PATCH 2/5] drm/i915/fbc: Split plane stride checks per-platform
2023-10-02 7:02 ` Ville Syrjälä
@ 2023-10-02 7:32 ` Govindapillai, Vinod
0 siblings, 0 replies; 19+ messages in thread
From: Govindapillai, Vinod @ 2023-10-02 7:32 UTC (permalink / raw)
To: ville.syrjala@linux.intel.com; +Cc: intel-gfx@lists.freedesktop.org
Thanks for clarifications.. This is now
Reviewed-by: Vinod Govindapillai <vinod.govindapillai@intel.com>
On Mon, 2023-10-02 at 10:02 +0300, Ville Syrjälä wrote:
> On Sun, Oct 01, 2023 at 10:53:37AM +0000, Govindapillai, Vinod wrote:
> > Hi Ville,
> >
> >
> > On Thu, 2023-09-14 at 14:38 +0300, Ville Syrjala wrote:
> > > From: Ville Syrjälä <ville.syrjala@linux.intel.com>
> > >
> > > Carve up stride_is_valid() into per-platform variants to
> > > make it easier to see what limits are actually being imposed.
> > >
> > > TODO: maybe go for vfuncs later
> > >
> > > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> > > ---
> > > drivers/gpu/drm/i915/display/intel_fbc.c | 68 ++++++++++++++++++------
> > > 1 file changed, 51 insertions(+), 17 deletions(-)
> > >
> > > diff --git a/drivers/gpu/drm/i915/display/intel_fbc.c
> > > b/drivers/gpu/drm/i915/display/intel_fbc.c
> > > index 1b3358a0fbfb..4c4626c84666 100644
> > > --- a/drivers/gpu/drm/i915/display/intel_fbc.c
> > > +++ b/drivers/gpu/drm/i915/display/intel_fbc.c
> > > @@ -848,6 +848,47 @@ void intel_fbc_cleanup(struct drm_i915_private *i915)
> > > }
> > > }
> > >
> > > +static bool i8xx_fbc_stride_is_valid(const struct intel_plane_state *plane_state)
> > > +{
> > > + const struct drm_framebuffer *fb = plane_state->hw.fb;
> > > + unsigned int stride = intel_fbc_plane_stride(plane_state) *
> > > + fb->format->cpp[0];
> > > +
> > > + return stride == 4096 || stride == 8192;
> > > +}
> > > +
> > > +static bool i965_fbc_stride_is_valid(const struct intel_plane_state *plane_state)
> > > +{
> > > + const struct drm_framebuffer *fb = plane_state->hw.fb;
> > > + unsigned int stride = intel_fbc_plane_stride(plane_state) *
> > > + fb->format->cpp[0];
> > > +
> > > + return stride >= 2048 && stride <= 16384;
> > > +}
> > > +
> > > +static bool g4x_fbc_stride_is_valid(const struct intel_plane_state *plane_state)
> > > +{
> > > + return true;
> > > +}
> > > +
> > > +static bool skl_fbc_stride_is_valid(const struct intel_plane_state *plane_state)
> > > +{
> > > + const struct drm_framebuffer *fb = plane_state->hw.fb;
> > > + unsigned int stride = intel_fbc_plane_stride(plane_state) *
> > > + fb->format->cpp[0];
> > > +
> > > + /* Display WA #1105: skl,bxt,kbl,cfl,glk */
> > > + if (fb->modifier == DRM_FORMAT_MOD_LINEAR && stride & 511)
> > > + return false;
> > > +
> > > + return true;
> > > +}
> > > +
> > > +static bool icl_fbc_stride_is_valid(const struct intel_plane_state *plane_state)
> > > +{
> > > + return true;
> > > +}
> > > +
> > > static bool stride_is_valid(const struct intel_plane_state *plane_state)
> > > {
> > > struct drm_i915_private *i915 = to_i915(plane_state->uapi.plane->dev);
> > > @@ -859,23 +900,16 @@ static bool stride_is_valid(const struct intel_plane_state *plane_state)
> > > if (drm_WARN_ON_ONCE(&i915->drm, (stride & (64 - 1)) != 0))
> > > return false;
> > >
> > > - /* Below are the additional FBC restrictions. */
> > > - if (stride < 512)
> > > - return false;
> > Is this check not required anymore for ICL+ and G4x?
>
> Pre-skl FBC only supports X-tile which is a multiple of 512 bytes
> anyway, so the check is redundant there.
>
> And skl+ can support smaller strides with modifiers that have
> smaller tile width (minus the linear stride w/a on skl/bxt/glk).
>
> Perhaps removing this check should be a separate patch...
> and we could remove the "multiple of 64 bytes" check too
> since that is always true on any platform/modifier.
>
> >
> > > -
> > > - if (DISPLAY_VER(i915) == 2 || DISPLAY_VER(i915) == 3)
> > > - return stride == 4096 || stride == 8192;
> > > -
> > > - if (DISPLAY_VER(i915) == 4 && !IS_G4X(i915) &&
> > > - (stride < 2048 || stride > 16384))
> > > - return false;
> > > -
> > > - /* Display WA #1105: skl,bxt,kbl,cfl,glk */
> > > - if ((DISPLAY_VER(i915) == 9 || IS_GEMINILAKE(i915)) &&
> > > - fb->modifier == DRM_FORMAT_MOD_LINEAR && stride & 511)
> > > - return false;
> > > -
> > > - return true;
> > > + if (DISPLAY_VER(i915) >= 11)
> > > + return icl_fbc_stride_is_valid(plane_state);
> > > + else if (DISPLAY_VER(i915) >= 9)
> > > + return skl_fbc_stride_is_valid(plane_state);
> > > + else if (DISPLAY_VER(i915) >= 5 || IS_G4X(i915))
> > > + return g4x_fbc_stride_is_valid(plane_state);
> > > + else if (DISPLAY_VER(i915) == 4)
> > > + return i965_fbc_stride_is_valid(plane_state);
> > > + else
> > > + return i8xx_fbc_stride_is_valid(plane_state);
> > Also I guess we could pass "stride" as parameter to these functions for clarity and simplify.
>
> We need more than the stride there.
>
> >
> > There as some IGT CI failures related to bad_stride tests.
>
> Yeah, I need to nuke that subtest.
>
> >
> > BR
> > Vinod
> > > }
> > >
> > > static bool pixel_format_is_valid(const struct intel_plane_state *plane_state)
> >
>
^ permalink raw reply [flat|nested] 19+ messages in thread
end of thread, other threads:[~2023-10-02 7:32 UTC | newest]
Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-14 11:38 [Intel-gfx] [PATCH 1/5] drm/i915/fbc: Remove ancient 16k plane stride limit Ville Syrjala
2023-09-14 11:38 ` [Intel-gfx] [PATCH 2/5] drm/i915/fbc: Split plane stride checks per-platform Ville Syrjala
2023-10-01 10:53 ` Govindapillai, Vinod
2023-10-02 7:02 ` Ville Syrjälä
2023-10-02 7:32 ` Govindapillai, Vinod
2023-09-14 11:38 ` [Intel-gfx] [PATCH 3/5] drm/i915/fbc: Split plane tiling " Ville Syrjala
2023-10-01 11:00 ` Govindapillai, Vinod
2023-10-02 6:55 ` Ville Syrjälä
2023-09-14 11:38 ` [Intel-gfx] [PATCH 4/5] drm/i915/fbc: Split plane rotation " Ville Syrjala
2023-10-01 11:03 ` Govindapillai, Vinod
2023-09-14 11:38 ` [Intel-gfx] [PATCH 5/5] drm/i915/fbc: Split plane pixel format " Ville Syrjala
2023-10-01 11:08 ` Govindapillai, Vinod
2023-09-14 20:36 ` [Intel-gfx] ✓ Fi.CI.BAT: success for series starting with [1/5] drm/i915/fbc: Remove ancient 16k plane stride limit Patchwork
2023-09-15 5:15 ` [Intel-gfx] [PATCH 1/5] " Sharma, Swati2
2023-09-15 16:48 ` Matt Roper
2023-09-15 16:54 ` Ville Syrjälä
2023-09-29 13:08 ` Juha-Pekka Heikkila
2023-09-29 16:27 ` [Intel-gfx] ✓ Fi.CI.BAT: success for series starting with [1/5] drm/i915/fbc: Remove ancient 16k plane stride limit (rev2) Patchwork
2023-09-29 23:41 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox