* Re: [PATCH] drm/xe/hdcp: Add check to remove hdcp2 compatibilty
2024-10-22 5:56 [PATCH] drm/xe/hdcp: Add check to remove hdcp2 compatibilty Suraj Kandpal
@ 2024-10-22 6:03 ` Nautiyal, Ankit K
2024-10-22 6:09 ` Ghimiray, Himal Prasad
` (11 subsequent siblings)
12 siblings, 0 replies; 29+ messages in thread
From: Nautiyal, Ankit K @ 2024-10-22 6:03 UTC (permalink / raw)
To: Suraj Kandpal, intel-xe, intel-gfx
On 10/22/2024 11:26 AM, Suraj Kandpal wrote:
> Add check to remove HDCP2 compatibility from BMG as it does not
> have GSC which ends up causing warning when we try to get reference
> of GSC FW.
>
> Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_hdcp_gsc.c | 3 ++-
> drivers/gpu/drm/xe/display/xe_hdcp_gsc.c | 3 ++-
> 2 files changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c
> index 55965844d829..2c1d0ee8cec2 100644
> --- a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c
> +++ b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c
> @@ -21,7 +21,8 @@ struct intel_hdcp_gsc_message {
>
> bool intel_hdcp_gsc_cs_required(struct intel_display *display)
> {
> - return DISPLAY_VER(display) >= 14;
> + return DISPLAY_VER(display) >= 14 &&
> + DISPLAY_VER_FULL(display) != IP_VER(14, 1);
> }
>
> bool intel_hdcp_gsc_check_status(struct intel_display *display)
> diff --git a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
> index 231677129a35..e3c57f0b79c4 100644
> --- a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
> +++ b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
> @@ -32,7 +32,8 @@ struct intel_hdcp_gsc_message {
>
> bool intel_hdcp_gsc_cs_required(struct intel_display *display)
> {
> - return DISPLAY_VER(display) >= 14;
> + return DISPLAY_VER(display) >= 14 &&
> + DISPLAY_VER_FULL(display) != IP_VER(14, 1);
> }
>
> bool intel_hdcp_gsc_check_status(struct intel_display *display)
^ permalink raw reply [flat|nested] 29+ messages in thread* Re: [PATCH] drm/xe/hdcp: Add check to remove hdcp2 compatibilty
2024-10-22 5:56 [PATCH] drm/xe/hdcp: Add check to remove hdcp2 compatibilty Suraj Kandpal
2024-10-22 6:03 ` Nautiyal, Ankit K
@ 2024-10-22 6:09 ` Ghimiray, Himal Prasad
2024-10-22 6:26 ` Nilawar, Badal
` (10 subsequent siblings)
12 siblings, 0 replies; 29+ messages in thread
From: Ghimiray, Himal Prasad @ 2024-10-22 6:09 UTC (permalink / raw)
To: Suraj Kandpal, intel-xe, intel-gfx
On 22-10-2024 11:26, Suraj Kandpal wrote:
> Add check to remove HDCP2 compatibility from BMG as it does not
> have GSC which ends up causing warning when we try to get reference
> of GSC FW.
Add fixes.
>
> Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_hdcp_gsc.c | 3 ++-
> drivers/gpu/drm/xe/display/xe_hdcp_gsc.c | 3 ++-
> 2 files changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c
> index 55965844d829..2c1d0ee8cec2 100644
> --- a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c
> +++ b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c
> @@ -21,7 +21,8 @@ struct intel_hdcp_gsc_message {
>
> bool intel_hdcp_gsc_cs_required(struct intel_display *display)
> {
> - return DISPLAY_VER(display) >= 14;
> + return DISPLAY_VER(display) >= 14 &&
> + DISPLAY_VER_FULL(display) != IP_VER(14, 1);
> }
LGTM.
Reviewed-by: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
>
> bool intel_hdcp_gsc_check_status(struct intel_display *display)
> diff --git a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
> index 231677129a35..e3c57f0b79c4 100644
> --- a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
> +++ b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
> @@ -32,7 +32,8 @@ struct intel_hdcp_gsc_message {
>
> bool intel_hdcp_gsc_cs_required(struct intel_display *display)
> {
> - return DISPLAY_VER(display) >= 14;
> + return DISPLAY_VER(display) >= 14 &&
> + DISPLAY_VER_FULL(display) != IP_VER(14, 1);
> }
>
> bool intel_hdcp_gsc_check_status(struct intel_display *display)
^ permalink raw reply [flat|nested] 29+ messages in thread* RE: [PATCH] drm/xe/hdcp: Add check to remove hdcp2 compatibilty
2024-10-22 5:56 [PATCH] drm/xe/hdcp: Add check to remove hdcp2 compatibilty Suraj Kandpal
2024-10-22 6:03 ` Nautiyal, Ankit K
2024-10-22 6:09 ` Ghimiray, Himal Prasad
@ 2024-10-22 6:26 ` Nilawar, Badal
2024-10-22 7:44 ` Jani Nikula
2024-10-22 6:33 ` ✗ Fi.CI.CHECKPATCH: warning for " Patchwork
` (9 subsequent siblings)
12 siblings, 1 reply; 29+ messages in thread
From: Nilawar, Badal @ 2024-10-22 6:26 UTC (permalink / raw)
To: Kandpal, Suraj, intel-xe@lists.freedesktop.org,
intel-gfx@lists.freedesktop.org
Cc: Kandpal, Suraj
-----Original Message-----
From: Intel-gfx <intel-gfx-bounces@lists.freedesktop.org> On Behalf Of Suraj Kandpal
Sent: 22 October 2024 11:27
To: intel-xe@lists.freedesktop.org; intel-gfx@lists.freedesktop.org
Cc: Kandpal, Suraj <suraj.kandpal@intel.com>
Subject: [PATCH] drm/xe/hdcp: Add check to remove hdcp2 compatibilty
Add check to remove HDCP2 compatibility from BMG as it does not have GSC which ends up causing warning when we try to get reference of GSC FW.
Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
Could you please add fixes tag in commit message.
Fixes: 89d030804831 ("drm/xe/hdcp: Fix condition for hdcp gsc cs requirement")
Fixes: 883631771038 ("drm/i915/mtl: Add HDCP GSC interface")
Regards,
Badal
---
drivers/gpu/drm/i915/display/intel_hdcp_gsc.c | 3 ++-
drivers/gpu/drm/xe/display/xe_hdcp_gsc.c | 3 ++-
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c
index 55965844d829..2c1d0ee8cec2 100644
--- a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c
+++ b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c
@@ -21,7 +21,8 @@ struct intel_hdcp_gsc_message {
bool intel_hdcp_gsc_cs_required(struct intel_display *display) {
- return DISPLAY_VER(display) >= 14;
+ return DISPLAY_VER(display) >= 14 &&
+ DISPLAY_VER_FULL(display) != IP_VER(14, 1);
}
bool intel_hdcp_gsc_check_status(struct intel_display *display) diff --git a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
index 231677129a35..e3c57f0b79c4 100644
--- a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
+++ b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
@@ -32,7 +32,8 @@ struct intel_hdcp_gsc_message {
bool intel_hdcp_gsc_cs_required(struct intel_display *display) {
- return DISPLAY_VER(display) >= 14;
+ return DISPLAY_VER(display) >= 14 &&
+ DISPLAY_VER_FULL(display) != IP_VER(14, 1);
}
bool intel_hdcp_gsc_check_status(struct intel_display *display)
--
2.34.1
^ permalink raw reply related [flat|nested] 29+ messages in thread* RE: [PATCH] drm/xe/hdcp: Add check to remove hdcp2 compatibilty
2024-10-22 6:26 ` Nilawar, Badal
@ 2024-10-22 7:44 ` Jani Nikula
2024-10-22 8:26 ` Nilawar, Badal
0 siblings, 1 reply; 29+ messages in thread
From: Jani Nikula @ 2024-10-22 7:44 UTC (permalink / raw)
To: Nilawar, Badal, Kandpal, Suraj, intel-xe@lists.freedesktop.org,
intel-gfx@lists.freedesktop.org
Cc: Kandpal, Suraj
On Tue, 22 Oct 2024, "Nilawar, Badal" <badal.nilawar@intel.com> wrote:
> -----Original Message-----
> From: Intel-gfx <intel-gfx-bounces@lists.freedesktop.org> On Behalf Of Suraj Kandpal
> Sent: 22 October 2024 11:27
> To: intel-xe@lists.freedesktop.org; intel-gfx@lists.freedesktop.org
> Cc: Kandpal, Suraj <suraj.kandpal@intel.com>
> Subject: [PATCH] drm/xe/hdcp: Add check to remove hdcp2 compatibilty
>
> Add check to remove HDCP2 compatibility from BMG as it does not have GSC which ends up causing warning when we try to get reference of GSC FW.
>
> Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
>
> Could you please add fixes tag in commit message.
>
> Fixes: 89d030804831 ("drm/xe/hdcp: Fix condition for hdcp gsc cs requirement")
> Fixes: 883631771038 ("drm/i915/mtl: Add HDCP GSC interface")
>
> Regards,
> Badal
Please quote your replies properly [1]. Your mail is really quite hard
to read [2].
BR,
Jani.
[1] https://subspace.kernel.org/etiquette.html#do-not-top-post-when-replying
[2] https://lore.kernel.org/all/BN9PR11MB5530247EFE733E0B4E16870AE54C2@BN9PR11MB5530.namprd11.prod.outlook.com/
> ---
> drivers/gpu/drm/i915/display/intel_hdcp_gsc.c | 3 ++-
> drivers/gpu/drm/xe/display/xe_hdcp_gsc.c | 3 ++-
> 2 files changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c
> index 55965844d829..2c1d0ee8cec2 100644
> --- a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c
> +++ b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c
> @@ -21,7 +21,8 @@ struct intel_hdcp_gsc_message {
>
> bool intel_hdcp_gsc_cs_required(struct intel_display *display) {
> - return DISPLAY_VER(display) >= 14;
> + return DISPLAY_VER(display) >= 14 &&
> + DISPLAY_VER_FULL(display) != IP_VER(14, 1);
> }
>
> bool intel_hdcp_gsc_check_status(struct intel_display *display) diff --git a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
> index 231677129a35..e3c57f0b79c4 100644
> --- a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
> +++ b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
> @@ -32,7 +32,8 @@ struct intel_hdcp_gsc_message {
>
> bool intel_hdcp_gsc_cs_required(struct intel_display *display) {
> - return DISPLAY_VER(display) >= 14;
> + return DISPLAY_VER(display) >= 14 &&
> + DISPLAY_VER_FULL(display) != IP_VER(14, 1);
> }
>
> bool intel_hdcp_gsc_check_status(struct intel_display *display)
> --
> 2.34.1
>
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 29+ messages in thread* Re: [PATCH] drm/xe/hdcp: Add check to remove hdcp2 compatibilty
2024-10-22 7:44 ` Jani Nikula
@ 2024-10-22 8:26 ` Nilawar, Badal
0 siblings, 0 replies; 29+ messages in thread
From: Nilawar, Badal @ 2024-10-22 8:26 UTC (permalink / raw)
To: Jani Nikula, Kandpal, Suraj, intel-xe@lists.freedesktop.org,
intel-gfx@lists.freedesktop.org
On 22-10-2024 13:14, Jani Nikula wrote:
> On Tue, 22 Oct 2024, "Nilawar, Badal" <badal.nilawar@intel.com> wrote:
>> -----Original Message-----
>> From: Intel-gfx <intel-gfx-bounces@lists.freedesktop.org> On Behalf Of Suraj Kandpal
>> Sent: 22 October 2024 11:27
>> To: intel-xe@lists.freedesktop.org; intel-gfx@lists.freedesktop.org
>> Cc: Kandpal, Suraj <suraj.kandpal@intel.com>
>> Subject: [PATCH] drm/xe/hdcp: Add check to remove hdcp2 compatibilty
>>
>> Add check to remove HDCP2 compatibility from BMG as it does not have GSC which ends up causing warning when we try to get reference of GSC FW.
>>
>> Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
>>
>> Could you please add fixes tag in commit message.
>>
>> Fixes: 89d030804831 ("drm/xe/hdcp: Fix condition for hdcp gsc cs requirement")
>> Fixes: 883631771038 ("drm/i915/mtl: Add HDCP GSC interface")
>>
>> Regards,
>> Badal
>
> Please quote your replies properly [1]. Your mail is really quite hard
> to read [2].
I responded via Outlook because this email wasn't visible in
Thunderbird. I hope my comments are understood.
Thanks,
Badal
>
> BR,
> Jani.
>
> [1] https://subspace.kernel.org/etiquette.html#do-not-top-post-when-replying
>
> [2] https://lore.kernel.org/all/BN9PR11MB5530247EFE733E0B4E16870AE54C2@BN9PR11MB5530.namprd11.prod.outlook.com/
>
>> ---
>> drivers/gpu/drm/i915/display/intel_hdcp_gsc.c | 3 ++-
>> drivers/gpu/drm/xe/display/xe_hdcp_gsc.c | 3 ++-
>> 2 files changed, 4 insertions(+), 2 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c
>> index 55965844d829..2c1d0ee8cec2 100644
>> --- a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c
>> +++ b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c
>> @@ -21,7 +21,8 @@ struct intel_hdcp_gsc_message {
>>
>> bool intel_hdcp_gsc_cs_required(struct intel_display *display) {
>> - return DISPLAY_VER(display) >= 14;
>> + return DISPLAY_VER(display) >= 14 &&
>> + DISPLAY_VER_FULL(display) != IP_VER(14, 1);
>> }
>>
>> bool intel_hdcp_gsc_check_status(struct intel_display *display) diff --git a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
>> index 231677129a35..e3c57f0b79c4 100644
>> --- a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
>> +++ b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
>> @@ -32,7 +32,8 @@ struct intel_hdcp_gsc_message {
>>
>> bool intel_hdcp_gsc_cs_required(struct intel_display *display) {
>> - return DISPLAY_VER(display) >= 14;
>> + return DISPLAY_VER(display) >= 14 &&
>> + DISPLAY_VER_FULL(display) != IP_VER(14, 1);
>> }
>>
>> bool intel_hdcp_gsc_check_status(struct intel_display *display)
>> --
>> 2.34.1
>>
>
^ permalink raw reply [flat|nested] 29+ messages in thread
* ✗ Fi.CI.CHECKPATCH: warning for drm/xe/hdcp: Add check to remove hdcp2 compatibilty
2024-10-22 5:56 [PATCH] drm/xe/hdcp: Add check to remove hdcp2 compatibilty Suraj Kandpal
` (2 preceding siblings ...)
2024-10-22 6:26 ` Nilawar, Badal
@ 2024-10-22 6:33 ` Patchwork
2024-10-22 6:33 ` ✗ Fi.CI.SPARSE: " Patchwork
` (8 subsequent siblings)
12 siblings, 0 replies; 29+ messages in thread
From: Patchwork @ 2024-10-22 6:33 UTC (permalink / raw)
To: Suraj Kandpal; +Cc: intel-gfx
== Series Details ==
Series: drm/xe/hdcp: Add check to remove hdcp2 compatibilty
URL : https://patchwork.freedesktop.org/series/140291/
State : warning
== Summary ==
Error: dim checkpatch failed
e7e029bd84cf drm/xe/hdcp: Add check to remove hdcp2 compatibilty
-:4: WARNING:TYPO_SPELLING: 'compatibilty' may be misspelled - perhaps 'compatibility'?
#4:
Subject: [PATCH] drm/xe/hdcp: Add check to remove hdcp2 compatibilty
^^^^^^^^^^^^
total: 0 errors, 1 warnings, 0 checks, 18 lines checked
^ permalink raw reply [flat|nested] 29+ messages in thread* ✗ Fi.CI.SPARSE: warning for drm/xe/hdcp: Add check to remove hdcp2 compatibilty
2024-10-22 5:56 [PATCH] drm/xe/hdcp: Add check to remove hdcp2 compatibilty Suraj Kandpal
` (3 preceding siblings ...)
2024-10-22 6:33 ` ✗ Fi.CI.CHECKPATCH: warning for " Patchwork
@ 2024-10-22 6:33 ` Patchwork
2024-10-22 7:20 ` ✓ Fi.CI.BAT: success " Patchwork
` (7 subsequent siblings)
12 siblings, 0 replies; 29+ messages in thread
From: Patchwork @ 2024-10-22 6:33 UTC (permalink / raw)
To: Suraj Kandpal; +Cc: intel-gfx
== Series Details ==
Series: drm/xe/hdcp: Add check to remove hdcp2 compatibilty
URL : https://patchwork.freedesktop.org/series/140291/
State : warning
== Summary ==
Error: dim sparse failed
Sparse version: v0.6.2
Fast mode used, each commit won't be checked separately.
^ permalink raw reply [flat|nested] 29+ messages in thread* ✓ Fi.CI.BAT: success for drm/xe/hdcp: Add check to remove hdcp2 compatibilty
2024-10-22 5:56 [PATCH] drm/xe/hdcp: Add check to remove hdcp2 compatibilty Suraj Kandpal
` (4 preceding siblings ...)
2024-10-22 6:33 ` ✗ Fi.CI.SPARSE: " Patchwork
@ 2024-10-22 7:20 ` Patchwork
2024-10-22 7:29 ` [PATCH] drm/xe/hdcp: Add check to remove hdcp2 compatibility Suraj Kandpal
` (6 subsequent siblings)
12 siblings, 0 replies; 29+ messages in thread
From: Patchwork @ 2024-10-22 7:20 UTC (permalink / raw)
To: Suraj Kandpal; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 10194 bytes --]
== Series Details ==
Series: drm/xe/hdcp: Add check to remove hdcp2 compatibilty
URL : https://patchwork.freedesktop.org/series/140291/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_15574 -> Patchwork_140291v1
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/index.html
Participating hosts (44 -> 44)
------------------------------
Additional (1): bat-arls-2
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in Patchwork_140291v1 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-arls-2: NOTRUN -> [SKIP][1] ([i915#9318])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/bat-arls-2/igt@debugfs_test@basic-hwmon.html
* igt@gem_lmem_swapping@verify-random:
- bat-arls-2: NOTRUN -> [SKIP][2] ([i915#10213] / [i915#11671]) +3 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/bat-arls-2/igt@gem_lmem_swapping@verify-random.html
* igt@gem_mmap@basic:
- bat-arls-2: NOTRUN -> [SKIP][3] ([i915#11343] / [i915#4083])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/bat-arls-2/igt@gem_mmap@basic.html
* igt@gem_mmap_gtt@basic:
- bat-arls-2: NOTRUN -> [SKIP][4] ([i915#10196] / [i915#4077]) +2 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/bat-arls-2/igt@gem_mmap_gtt@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-arls-2: NOTRUN -> [SKIP][5] ([i915#10197] / [i915#10211] / [i915#4079])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/bat-arls-2/igt@gem_render_tiled_blits@basic.html
* igt@gem_tiled_pread_basic:
- bat-arls-2: NOTRUN -> [SKIP][6] ([i915#10206] / [i915#4079])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/bat-arls-2/igt@gem_tiled_pread_basic.html
* igt@i915_pm_rps@basic-api:
- bat-arls-2: NOTRUN -> [SKIP][7] ([i915#10209] / [i915#11681])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/bat-arls-2/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live:
- bat-arlh-3: [PASS][8] -> [ABORT][9] ([i915#12133])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/bat-arlh-3/igt@i915_selftest@live.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/bat-arlh-3/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-arlh-3: [PASS][10] -> [ABORT][11] ([i915#12061])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/bat-arlh-3/igt@i915_selftest@live@workarounds.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-arls-2: NOTRUN -> [SKIP][12] ([i915#10200] / [i915#12203])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/bat-arls-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- bat-arls-2: NOTRUN -> [SKIP][13] ([i915#10200]) +8 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/bat-arls-2/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-arls-2: NOTRUN -> [SKIP][14] ([i915#10202] / [i915#11346]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/bat-arls-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-arls-2: NOTRUN -> [SKIP][15] ([i915#11346] / [i915#9886])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/bat-arls-2/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-arls-2: NOTRUN -> [SKIP][16] ([i915#10207] / [i915#11346])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/bat-arls-2/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_psr@psr-primary-mmap-gtt:
- bat-arls-2: NOTRUN -> [SKIP][17] ([i915#11346] / [i915#4077] / [i915#9688])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/bat-arls-2/igt@kms_psr@psr-primary-mmap-gtt.html
* igt@kms_psr@psr-primary-mmap-gtt@edp-1:
- bat-arls-2: NOTRUN -> [SKIP][18] ([i915#10196] / [i915#4077] / [i915#9688])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/bat-arls-2/igt@kms_psr@psr-primary-mmap-gtt@edp-1.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-arls-2: NOTRUN -> [SKIP][19] ([i915#10208] / [i915#8809])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/bat-arls-2/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-mmap:
- bat-arls-2: NOTRUN -> [SKIP][20] ([i915#10196] / [i915#3708] / [i915#4077]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/bat-arls-2/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-fence-read:
- bat-arls-2: NOTRUN -> [SKIP][21] ([i915#10212] / [i915#3708])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/bat-arls-2/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-read:
- bat-arls-2: NOTRUN -> [SKIP][22] ([i915#10214] / [i915#3708])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/bat-arls-2/igt@prime_vgem@basic-read.html
* igt@prime_vgem@basic-write:
- bat-arls-2: NOTRUN -> [SKIP][23] ([i915#10216] / [i915#3708])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/bat-arls-2/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@i915_selftest@live:
- bat-mtlp-8: [ABORT][24] ([i915#12216]) -> [PASS][25] +1 other test pass
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/bat-mtlp-8/igt@i915_selftest@live.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/bat-mtlp-8/igt@i915_selftest@live.html
- bat-dg2-8: [ABORT][26] ([i915#12133]) -> [PASS][27]
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/bat-dg2-8/igt@i915_selftest@live.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/bat-dg2-8/igt@i915_selftest@live.html
* igt@i915_selftest@live@guc_multi_lrc:
- bat-dg2-8: [ABORT][28] ([i915#12305]) -> [PASS][29]
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/bat-dg2-8/igt@i915_selftest@live@guc_multi_lrc.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/bat-dg2-8/igt@i915_selftest@live@guc_multi_lrc.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- bat-dg2-13: [DMESG-WARN][30] ([i915#12253]) -> [PASS][31]
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html
[i915#10196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10196
[i915#10197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10197
[i915#10200]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10200
[i915#10202]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10202
[i915#10206]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10206
[i915#10207]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10207
[i915#10208]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10208
[i915#10209]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10209
[i915#10211]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10211
[i915#10212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10212
[i915#10213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10213
[i915#10214]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10214
[i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216
[i915#11343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11343
[i915#11346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11346
[i915#11671]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11671
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133
[i915#12203]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12203
[i915#12216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12216
[i915#12253]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12253
[i915#12305]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12305
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886
Build changes
-------------
* Linux: CI_DRM_15574 -> Patchwork_140291v1
CI-20190529: 20190529
CI_DRM_15574: aa0898115bcff3eda6d021cc66eb8a1c3b264c56 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8080: 20fcbc59241a16c84d12f4f6ba390fb46fd65a36 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_140291v1: aa0898115bcff3eda6d021cc66eb8a1c3b264c56 @ git://anongit.freedesktop.org/gfx-ci/linux
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/index.html
[-- Attachment #2: Type: text/html, Size: 12471 bytes --]
^ permalink raw reply [flat|nested] 29+ messages in thread* [PATCH] drm/xe/hdcp: Add check to remove hdcp2 compatibility
2024-10-22 5:56 [PATCH] drm/xe/hdcp: Add check to remove hdcp2 compatibilty Suraj Kandpal
` (5 preceding siblings ...)
2024-10-22 7:20 ` ✓ Fi.CI.BAT: success " Patchwork
@ 2024-10-22 7:29 ` Suraj Kandpal
2024-10-22 7:46 ` Jani Nikula
` (4 more replies)
2024-10-22 8:18 ` ✗ Fi.CI.IGT: failure for drm/xe/hdcp: Add check to remove hdcp2 compatibilty Patchwork
` (5 subsequent siblings)
12 siblings, 5 replies; 29+ messages in thread
From: Suraj Kandpal @ 2024-10-22 7:29 UTC (permalink / raw)
To: intel-xe, intel-gfx; +Cc: Suraj Kandpal, Ankit Nautiyal, Himal Prasad Ghimiray
Add check to remove HDCP2 compatibility from BMG as it does not
have GSC which ends up causing warning when we try to get reference
of GSC FW.
Fixes: 89d030804831 ("drm/xe/hdcp: Fix condition for hdcp gsc cs requirement")
Fixes: 883631771038 ("drm/i915/mtl: Add HDCP GSC interface")
Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Reviewed-by: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
---
drivers/gpu/drm/i915/display/intel_hdcp_gsc.c | 3 ++-
drivers/gpu/drm/xe/display/xe_hdcp_gsc.c | 4 +++-
2 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c
index 55965844d829..2c1d0ee8cec2 100644
--- a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c
+++ b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c
@@ -21,7 +21,8 @@ struct intel_hdcp_gsc_message {
bool intel_hdcp_gsc_cs_required(struct intel_display *display)
{
- return DISPLAY_VER(display) >= 14;
+ return DISPLAY_VER(display) >= 14 &&
+ DISPLAY_VER_FULL(display) != IP_VER(14, 1);
}
bool intel_hdcp_gsc_check_status(struct intel_display *display)
diff --git a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
index 231677129a35..efa3441c249c 100644
--- a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
+++ b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
@@ -8,6 +8,7 @@
#include <linux/delay.h>
#include "abi/gsc_command_header_abi.h"
+#include "i915_drv.h"
#include "intel_hdcp_gsc.h"
#include "intel_hdcp_gsc_message.h"
#include "xe_bo.h"
@@ -32,7 +33,8 @@ struct intel_hdcp_gsc_message {
bool intel_hdcp_gsc_cs_required(struct intel_display *display)
{
- return DISPLAY_VER(display) >= 14;
+ return DISPLAY_VER(display) >= 14 &&
+ DISPLAY_VER_FULL(display) != IP_VER(14, 1);
}
bool intel_hdcp_gsc_check_status(struct intel_display *display)
--
2.34.1
^ permalink raw reply related [flat|nested] 29+ messages in thread* Re: [PATCH] drm/xe/hdcp: Add check to remove hdcp2 compatibility
2024-10-22 7:29 ` [PATCH] drm/xe/hdcp: Add check to remove hdcp2 compatibility Suraj Kandpal
@ 2024-10-22 7:46 ` Jani Nikula
2024-10-22 8:53 ` Kandpal, Suraj
2024-10-22 8:22 ` Ghimiray, Himal Prasad
` (3 subsequent siblings)
4 siblings, 1 reply; 29+ messages in thread
From: Jani Nikula @ 2024-10-22 7:46 UTC (permalink / raw)
To: Suraj Kandpal, intel-xe, intel-gfx
Cc: Suraj Kandpal, Ankit Nautiyal, Himal Prasad Ghimiray
On Tue, 22 Oct 2024, Suraj Kandpal <suraj.kandpal@intel.com> wrote:
> Add check to remove HDCP2 compatibility from BMG as it does not
> have GSC which ends up causing warning when we try to get reference
> of GSC FW.
>
> Fixes: 89d030804831 ("drm/xe/hdcp: Fix condition for hdcp gsc cs requirement")
> Fixes: 883631771038 ("drm/i915/mtl: Add HDCP GSC interface")
> Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
> Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
> Reviewed-by: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_hdcp_gsc.c | 3 ++-
> drivers/gpu/drm/xe/display/xe_hdcp_gsc.c | 4 +++-
> 2 files changed, 5 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c
> index 55965844d829..2c1d0ee8cec2 100644
> --- a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c
> +++ b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c
> @@ -21,7 +21,8 @@ struct intel_hdcp_gsc_message {
>
> bool intel_hdcp_gsc_cs_required(struct intel_display *display)
> {
> - return DISPLAY_VER(display) >= 14;
> + return DISPLAY_VER(display) >= 14 &&
> + DISPLAY_VER_FULL(display) != IP_VER(14, 1);
> }
>
> bool intel_hdcp_gsc_check_status(struct intel_display *display)
> diff --git a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
> index 231677129a35..efa3441c249c 100644
> --- a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
> +++ b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
> @@ -8,6 +8,7 @@
> #include <linux/delay.h>
>
> #include "abi/gsc_command_header_abi.h"
> +#include "i915_drv.h"
Hrmh, xe code should not include i915_drv.h.
> #include "intel_hdcp_gsc.h"
> #include "intel_hdcp_gsc_message.h"
> #include "xe_bo.h"
> @@ -32,7 +33,8 @@ struct intel_hdcp_gsc_message {
>
> bool intel_hdcp_gsc_cs_required(struct intel_display *display)
> {
> - return DISPLAY_VER(display) >= 14;
> + return DISPLAY_VER(display) >= 14 &&
> + DISPLAY_VER_FULL(display) != IP_VER(14, 1);
> }
>
> bool intel_hdcp_gsc_check_status(struct intel_display *display)
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 29+ messages in thread* RE: [PATCH] drm/xe/hdcp: Add check to remove hdcp2 compatibility
2024-10-22 7:46 ` Jani Nikula
@ 2024-10-22 8:53 ` Kandpal, Suraj
2024-10-24 7:58 ` Jani Nikula
0 siblings, 1 reply; 29+ messages in thread
From: Kandpal, Suraj @ 2024-10-22 8:53 UTC (permalink / raw)
To: Jani Nikula, intel-xe@lists.freedesktop.org,
intel-gfx@lists.freedesktop.org
Cc: Nautiyal, Ankit K, Ghimiray, Himal Prasad
> -----Original Message-----
> From: Jani Nikula <jani.nikula@linux.intel.com>
> Sent: Tuesday, October 22, 2024 1:17 PM
> To: Kandpal, Suraj <suraj.kandpal@intel.com>; intel-xe@lists.freedesktop.org;
> intel-gfx@lists.freedesktop.org
> Cc: Kandpal, Suraj <suraj.kandpal@intel.com>; Nautiyal, Ankit K
> <ankit.k.nautiyal@intel.com>; Ghimiray, Himal Prasad
> <himal.prasad.ghimiray@intel.com>
> Subject: Re: [PATCH] drm/xe/hdcp: Add check to remove hdcp2 compatibility
>
> On Tue, 22 Oct 2024, Suraj Kandpal <suraj.kandpal@intel.com> wrote:
> > Add check to remove HDCP2 compatibility from BMG as it does not have
> > GSC which ends up causing warning when we try to get reference of GSC
> > FW.
> >
> > Fixes: 89d030804831 ("drm/xe/hdcp: Fix condition for hdcp gsc cs
> > requirement")
> > Fixes: 883631771038 ("drm/i915/mtl: Add HDCP GSC interface")
> > Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
> > Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
> > Reviewed-by: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
> > ---
> > drivers/gpu/drm/i915/display/intel_hdcp_gsc.c | 3 ++-
> > drivers/gpu/drm/xe/display/xe_hdcp_gsc.c | 4 +++-
> > 2 files changed, 5 insertions(+), 2 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c
> > b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c
> > index 55965844d829..2c1d0ee8cec2 100644
> > --- a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c
> > +++ b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c
> > @@ -21,7 +21,8 @@ struct intel_hdcp_gsc_message {
> >
> > bool intel_hdcp_gsc_cs_required(struct intel_display *display) {
> > - return DISPLAY_VER(display) >= 14;
> > + return DISPLAY_VER(display) >= 14 &&
> > + DISPLAY_VER_FULL(display) != IP_VER(14, 1);
> > }
> >
> > bool intel_hdcp_gsc_check_status(struct intel_display *display) diff
> > --git a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
> > b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
> > index 231677129a35..efa3441c249c 100644
> > --- a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
> > +++ b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
> > @@ -8,6 +8,7 @@
> > #include <linux/delay.h>
> >
> > #include "abi/gsc_command_header_abi.h"
> > +#include "i915_drv.h"
>
> Hrmh, xe code should not include i915_drv.h.
The issue is without this IP_VER used below ends up throwing an error
Regards,
Suraj Kandpal
>
> > #include "intel_hdcp_gsc.h"
> > #include "intel_hdcp_gsc_message.h"
> > #include "xe_bo.h"
> > @@ -32,7 +33,8 @@ struct intel_hdcp_gsc_message {
> >
> > bool intel_hdcp_gsc_cs_required(struct intel_display *display) {
> > - return DISPLAY_VER(display) >= 14;
> > + return DISPLAY_VER(display) >= 14 &&
> > + DISPLAY_VER_FULL(display) != IP_VER(14, 1);
> > }
> >
> > bool intel_hdcp_gsc_check_status(struct intel_display *display)
>
> --
> Jani Nikula, Intel
^ permalink raw reply [flat|nested] 29+ messages in thread* RE: [PATCH] drm/xe/hdcp: Add check to remove hdcp2 compatibility
2024-10-22 8:53 ` Kandpal, Suraj
@ 2024-10-24 7:58 ` Jani Nikula
0 siblings, 0 replies; 29+ messages in thread
From: Jani Nikula @ 2024-10-24 7:58 UTC (permalink / raw)
To: Kandpal, Suraj, intel-xe@lists.freedesktop.org,
intel-gfx@lists.freedesktop.org
Cc: Nautiyal, Ankit K, Ghimiray, Himal Prasad
On Tue, 22 Oct 2024, "Kandpal, Suraj" <suraj.kandpal@intel.com> wrote:
>> -----Original Message-----
>> From: Jani Nikula <jani.nikula@linux.intel.com>
>> Sent: Tuesday, October 22, 2024 1:17 PM
>> To: Kandpal, Suraj <suraj.kandpal@intel.com>; intel-xe@lists.freedesktop.org;
>> intel-gfx@lists.freedesktop.org
>> Cc: Kandpal, Suraj <suraj.kandpal@intel.com>; Nautiyal, Ankit K
>> <ankit.k.nautiyal@intel.com>; Ghimiray, Himal Prasad
>> <himal.prasad.ghimiray@intel.com>
>> Subject: Re: [PATCH] drm/xe/hdcp: Add check to remove hdcp2 compatibility
>>
>> On Tue, 22 Oct 2024, Suraj Kandpal <suraj.kandpal@intel.com> wrote:
>> > Add check to remove HDCP2 compatibility from BMG as it does not have
>> > GSC which ends up causing warning when we try to get reference of GSC
>> > FW.
>> >
>> > Fixes: 89d030804831 ("drm/xe/hdcp: Fix condition for hdcp gsc cs
>> > requirement")
>> > Fixes: 883631771038 ("drm/i915/mtl: Add HDCP GSC interface")
>> > Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
>> > Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
>> > Reviewed-by: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
>> > ---
>> > drivers/gpu/drm/i915/display/intel_hdcp_gsc.c | 3 ++-
>> > drivers/gpu/drm/xe/display/xe_hdcp_gsc.c | 4 +++-
>> > 2 files changed, 5 insertions(+), 2 deletions(-)
>> >
>> > diff --git a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c
>> > b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c
>> > index 55965844d829..2c1d0ee8cec2 100644
>> > --- a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c
>> > +++ b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c
>> > @@ -21,7 +21,8 @@ struct intel_hdcp_gsc_message {
>> >
>> > bool intel_hdcp_gsc_cs_required(struct intel_display *display) {
>> > - return DISPLAY_VER(display) >= 14;
>> > + return DISPLAY_VER(display) >= 14 &&
>> > + DISPLAY_VER_FULL(display) != IP_VER(14, 1);
>> > }
>> >
>> > bool intel_hdcp_gsc_check_status(struct intel_display *display) diff
>> > --git a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
>> > b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
>> > index 231677129a35..efa3441c249c 100644
>> > --- a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
>> > +++ b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
>> > @@ -8,6 +8,7 @@
>> > #include <linux/delay.h>
>> >
>> > #include "abi/gsc_command_header_abi.h"
>> > +#include "i915_drv.h"
>>
>> Hrmh, xe code should not include i915_drv.h.
>
> The issue is without this IP_VER used below ends up throwing an error
Yeah, we'll need to fix that.
Ack as a temporary measure, but please follow through with Matt's review
comments before merging.
BR,
Jani.
>
> Regards,
> Suraj Kandpal
>>
>> > #include "intel_hdcp_gsc.h"
>> > #include "intel_hdcp_gsc_message.h"
>> > #include "xe_bo.h"
>> > @@ -32,7 +33,8 @@ struct intel_hdcp_gsc_message {
>> >
>> > bool intel_hdcp_gsc_cs_required(struct intel_display *display) {
>> > - return DISPLAY_VER(display) >= 14;
>> > + return DISPLAY_VER(display) >= 14 &&
>> > + DISPLAY_VER_FULL(display) != IP_VER(14, 1);
>> > }
>> >
>> > bool intel_hdcp_gsc_check_status(struct intel_display *display)
>>
>> --
>> Jani Nikula, Intel
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [PATCH] drm/xe/hdcp: Add check to remove hdcp2 compatibility
2024-10-22 7:29 ` [PATCH] drm/xe/hdcp: Add check to remove hdcp2 compatibility Suraj Kandpal
2024-10-22 7:46 ` Jani Nikula
@ 2024-10-22 8:22 ` Ghimiray, Himal Prasad
2024-10-23 19:45 ` Matt Roper
` (2 subsequent siblings)
4 siblings, 0 replies; 29+ messages in thread
From: Ghimiray, Himal Prasad @ 2024-10-22 8:22 UTC (permalink / raw)
To: Suraj Kandpal, intel-xe, intel-gfx; +Cc: Ankit Nautiyal
On 22-10-2024 12:59, Suraj Kandpal wrote:
> Add check to remove HDCP2 compatibility from BMG as it does not
> have GSC which ends up causing warning when we try to get reference
> of GSC FW.
>
> Fixes: 89d030804831 ("drm/xe/hdcp: Fix condition for hdcp gsc cs requirement")
> Fixes: 883631771038 ("drm/i915/mtl: Add HDCP GSC interface")
> Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
> Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
> Reviewed-by: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_hdcp_gsc.c | 3 ++-
> drivers/gpu/drm/xe/display/xe_hdcp_gsc.c | 4 +++-
> 2 files changed, 5 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c
> index 55965844d829..2c1d0ee8cec2 100644
> --- a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c
> +++ b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c
> @@ -21,7 +21,8 @@ struct intel_hdcp_gsc_message {
>
> bool intel_hdcp_gsc_cs_required(struct intel_display *display)
> {
> - return DISPLAY_VER(display) >= 14;
> + return DISPLAY_VER(display) >= 14 &&
> + DISPLAY_VER_FULL(display) != IP_VER(14, 1);
> }
>
> bool intel_hdcp_gsc_check_status(struct intel_display *display)
> diff --git a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
> index 231677129a35..efa3441c249c 100644
> --- a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
> +++ b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
> @@ -8,6 +8,7 @@
> #include <linux/delay.h>
>
> #include "abi/gsc_command_header_abi.h"
> +#include "i915_drv.h"
i915 header ?
> #include "intel_hdcp_gsc.h"
> #include "intel_hdcp_gsc_message.h"
> #include "xe_bo.h"
> @@ -32,7 +33,8 @@ struct intel_hdcp_gsc_message {
>
> bool intel_hdcp_gsc_cs_required(struct intel_display *display)
> {
> - return DISPLAY_VER(display) >= 14;
> + return DISPLAY_VER(display) >= 14 &&
> + DISPLAY_VER_FULL(display) != IP_VER(14, 1);
> }
>
> bool intel_hdcp_gsc_check_status(struct intel_display *display)
^ permalink raw reply [flat|nested] 29+ messages in thread* Re: [PATCH] drm/xe/hdcp: Add check to remove hdcp2 compatibility
2024-10-22 7:29 ` [PATCH] drm/xe/hdcp: Add check to remove hdcp2 compatibility Suraj Kandpal
2024-10-22 7:46 ` Jani Nikula
2024-10-22 8:22 ` Ghimiray, Himal Prasad
@ 2024-10-23 19:45 ` Matt Roper
2024-10-24 2:42 ` Kandpal, Suraj
2024-10-24 15:33 ` Daniele Ceraolo Spurio
2024-10-25 16:08 ` [PATCH] drm/xe/hdcp: Fix gsc structure check in fw check status Suraj Kandpal
4 siblings, 1 reply; 29+ messages in thread
From: Matt Roper @ 2024-10-23 19:45 UTC (permalink / raw)
To: Suraj Kandpal; +Cc: intel-xe, intel-gfx, Ankit Nautiyal, Himal Prasad Ghimiray
On Tue, Oct 22, 2024 at 12:59:20PM +0530, Suraj Kandpal wrote:
> Add check to remove HDCP2 compatibility from BMG as it does not
> have GSC which ends up causing warning when we try to get reference
> of GSC FW.
Why do you say BMG doesn't have GSC? I don't see anything in the bspec
indicating it wouldn't have it.
If you're missing the GSC firmware, then we'll disable the engine, but
that's true on any platform.
Matt
>
> Fixes: 89d030804831 ("drm/xe/hdcp: Fix condition for hdcp gsc cs requirement")
> Fixes: 883631771038 ("drm/i915/mtl: Add HDCP GSC interface")
> Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
> Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
> Reviewed-by: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_hdcp_gsc.c | 3 ++-
> drivers/gpu/drm/xe/display/xe_hdcp_gsc.c | 4 +++-
> 2 files changed, 5 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c
> index 55965844d829..2c1d0ee8cec2 100644
> --- a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c
> +++ b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c
> @@ -21,7 +21,8 @@ struct intel_hdcp_gsc_message {
>
> bool intel_hdcp_gsc_cs_required(struct intel_display *display)
> {
> - return DISPLAY_VER(display) >= 14;
> + return DISPLAY_VER(display) >= 14 &&
> + DISPLAY_VER_FULL(display) != IP_VER(14, 1);
> }
>
> bool intel_hdcp_gsc_check_status(struct intel_display *display)
> diff --git a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
> index 231677129a35..efa3441c249c 100644
> --- a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
> +++ b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
> @@ -8,6 +8,7 @@
> #include <linux/delay.h>
>
> #include "abi/gsc_command_header_abi.h"
> +#include "i915_drv.h"
> #include "intel_hdcp_gsc.h"
> #include "intel_hdcp_gsc_message.h"
> #include "xe_bo.h"
> @@ -32,7 +33,8 @@ struct intel_hdcp_gsc_message {
>
> bool intel_hdcp_gsc_cs_required(struct intel_display *display)
> {
> - return DISPLAY_VER(display) >= 14;
> + return DISPLAY_VER(display) >= 14 &&
> + DISPLAY_VER_FULL(display) != IP_VER(14, 1);
> }
>
> bool intel_hdcp_gsc_check_status(struct intel_display *display)
> --
> 2.34.1
>
--
Matt Roper
Graphics Software Engineer
Linux GPU Platform Enablement
Intel Corporation
^ permalink raw reply [flat|nested] 29+ messages in thread* RE: [PATCH] drm/xe/hdcp: Add check to remove hdcp2 compatibility
2024-10-23 19:45 ` Matt Roper
@ 2024-10-24 2:42 ` Kandpal, Suraj
0 siblings, 0 replies; 29+ messages in thread
From: Kandpal, Suraj @ 2024-10-24 2:42 UTC (permalink / raw)
To: Roper, Matthew D
Cc: intel-xe@lists.freedesktop.org, intel-gfx@lists.freedesktop.org,
Nautiyal, Ankit K, Ghimiray, Himal Prasad,
Ceraolo Spurio, Daniele
> -----Original Message-----
> From: Roper, Matthew D <matthew.d.roper@intel.com>
> Sent: Thursday, October 24, 2024 1:15 AM
> To: Kandpal, Suraj <suraj.kandpal@intel.com>
> Cc: intel-xe@lists.freedesktop.org; intel-gfx@lists.freedesktop.org; Nautiyal,
> Ankit K <ankit.k.nautiyal@intel.com>; Ghimiray, Himal Prasad
> <himal.prasad.ghimiray@intel.com>
> Subject: Re: [PATCH] drm/xe/hdcp: Add check to remove hdcp2 compatibility
>
> On Tue, Oct 22, 2024 at 12:59:20PM +0530, Suraj Kandpal wrote:
> > Add check to remove HDCP2 compatibility from BMG as it does not have
> > GSC which ends up causing warning when we try to get reference of GSC
> > FW.
>
> Why do you say BMG doesn't have GSC? I don't see anything in the bspec
> indicating it wouldn't have it.
>
> If you're missing the GSC firmware, then we'll disable the engine, but that's
> true on any platform.
>
We are missing the GSC firmware here since the decision was taken not to code in GSC for this
Platform
Daniele can provide more information here
Regards,
Suraj Kandpal
>
> Matt
>
> >
> > Fixes: 89d030804831 ("drm/xe/hdcp: Fix condition for hdcp gsc cs
> > requirement")
> > Fixes: 883631771038 ("drm/i915/mtl: Add HDCP GSC interface")
> > Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
> > Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
> > Reviewed-by: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
> > ---
> > drivers/gpu/drm/i915/display/intel_hdcp_gsc.c | 3 ++-
> > drivers/gpu/drm/xe/display/xe_hdcp_gsc.c | 4 +++-
> > 2 files changed, 5 insertions(+), 2 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c
> > b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c
> > index 55965844d829..2c1d0ee8cec2 100644
> > --- a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c
> > +++ b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c
> > @@ -21,7 +21,8 @@ struct intel_hdcp_gsc_message {
> >
> > bool intel_hdcp_gsc_cs_required(struct intel_display *display) {
> > - return DISPLAY_VER(display) >= 14;
> > + return DISPLAY_VER(display) >= 14 &&
> > + DISPLAY_VER_FULL(display) != IP_VER(14, 1);
> > }
> >
> > bool intel_hdcp_gsc_check_status(struct intel_display *display) diff
> > --git a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
> > b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
> > index 231677129a35..efa3441c249c 100644
> > --- a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
> > +++ b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
> > @@ -8,6 +8,7 @@
> > #include <linux/delay.h>
> >
> > #include "abi/gsc_command_header_abi.h"
> > +#include "i915_drv.h"
> > #include "intel_hdcp_gsc.h"
> > #include "intel_hdcp_gsc_message.h"
> > #include "xe_bo.h"
> > @@ -32,7 +33,8 @@ struct intel_hdcp_gsc_message {
> >
> > bool intel_hdcp_gsc_cs_required(struct intel_display *display) {
> > - return DISPLAY_VER(display) >= 14;
> > + return DISPLAY_VER(display) >= 14 &&
> > + DISPLAY_VER_FULL(display) != IP_VER(14, 1);
> > }
> >
> > bool intel_hdcp_gsc_check_status(struct intel_display *display)
> > --
> > 2.34.1
> >
>
> --
> Matt Roper
> Graphics Software Engineer
> Linux GPU Platform Enablement
> Intel Corporation
^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [PATCH] drm/xe/hdcp: Add check to remove hdcp2 compatibility
2024-10-22 7:29 ` [PATCH] drm/xe/hdcp: Add check to remove hdcp2 compatibility Suraj Kandpal
` (2 preceding siblings ...)
2024-10-23 19:45 ` Matt Roper
@ 2024-10-24 15:33 ` Daniele Ceraolo Spurio
2024-10-25 1:21 ` Kandpal, Suraj
2024-10-25 16:08 ` [PATCH] drm/xe/hdcp: Fix gsc structure check in fw check status Suraj Kandpal
4 siblings, 1 reply; 29+ messages in thread
From: Daniele Ceraolo Spurio @ 2024-10-24 15:33 UTC (permalink / raw)
To: Suraj Kandpal, intel-xe, intel-gfx; +Cc: Ankit Nautiyal, Himal Prasad Ghimiray
On 10/22/2024 12:29 AM, Suraj Kandpal wrote:
> Add check to remove HDCP2 compatibility from BMG as it does not
> have GSC which ends up causing warning when we try to get reference
> of GSC FW.
>
> Fixes: 89d030804831 ("drm/xe/hdcp: Fix condition for hdcp gsc cs requirement")
> Fixes: 883631771038 ("drm/i915/mtl: Add HDCP GSC interface")
> Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
> Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
> Reviewed-by: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_hdcp_gsc.c | 3 ++-
> drivers/gpu/drm/xe/display/xe_hdcp_gsc.c | 4 +++-
> 2 files changed, 5 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c
> index 55965844d829..2c1d0ee8cec2 100644
> --- a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c
> +++ b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c
> @@ -21,7 +21,8 @@ struct intel_hdcp_gsc_message {
>
> bool intel_hdcp_gsc_cs_required(struct intel_display *display)
> {
> - return DISPLAY_VER(display) >= 14;
> + return DISPLAY_VER(display) >= 14 &&
> + DISPLAY_VER_FULL(display) != IP_VER(14, 1);
> }
>
> bool intel_hdcp_gsc_check_status(struct intel_display *display)
> diff --git a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
> index 231677129a35..efa3441c249c 100644
> --- a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
> +++ b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
> @@ -8,6 +8,7 @@
> #include <linux/delay.h>
>
> #include "abi/gsc_command_header_abi.h"
> +#include "i915_drv.h"
> #include "intel_hdcp_gsc.h"
> #include "intel_hdcp_gsc_message.h"
> #include "xe_bo.h"
> @@ -32,7 +33,8 @@ struct intel_hdcp_gsc_message {
>
> bool intel_hdcp_gsc_cs_required(struct intel_display *display)
> {
> - return DISPLAY_VER(display) >= 14;
> + return DISPLAY_VER(display) >= 14 &&
> + DISPLAY_VER_FULL(display) != IP_VER(14, 1);
I don't think this is the correct check or the correct location. BMG
does require the GSC for HDCP, so intel_hdcp_gsc_cs_required() should
still return true; it's just that we've decided not to support GSC FW
loading on the platform, so we can't support HDCP2.x. Also note that the
this might change and/or it might apply to other platform in the future,
so any check needs to be done based on GSC support and not
platform/display ID.
IMO when intel_hdcp_gsc_cs_required() returns true, the caller should
check if the GSC FW is defined (or if the GSCCS is available) and if it
is not return that hdcp2 is not supported due to unmet prerequsites and
fallback to 1.4 without printing any errors.
Daniele
> }
>
> bool intel_hdcp_gsc_check_status(struct intel_display *display)
^ permalink raw reply [flat|nested] 29+ messages in thread* RE: [PATCH] drm/xe/hdcp: Add check to remove hdcp2 compatibility
2024-10-24 15:33 ` Daniele Ceraolo Spurio
@ 2024-10-25 1:21 ` Kandpal, Suraj
2024-10-25 15:04 ` Daniele Ceraolo Spurio
0 siblings, 1 reply; 29+ messages in thread
From: Kandpal, Suraj @ 2024-10-25 1:21 UTC (permalink / raw)
To: Ceraolo Spurio, Daniele, intel-xe@lists.freedesktop.org,
intel-gfx@lists.freedesktop.org
Cc: Nautiyal, Ankit K, Ghimiray, Himal Prasad
> -----Original Message-----
> From: Ceraolo Spurio, Daniele <daniele.ceraolospurio@intel.com>
> Sent: Thursday, October 24, 2024 9:03 PM
> To: Kandpal, Suraj <suraj.kandpal@intel.com>; intel-xe@lists.freedesktop.org;
> intel-gfx@lists.freedesktop.org
> Cc: Nautiyal, Ankit K <ankit.k.nautiyal@intel.com>; Ghimiray, Himal Prasad
> <himal.prasad.ghimiray@intel.com>
> Subject: Re: [PATCH] drm/xe/hdcp: Add check to remove hdcp2 compatibility
>
>
>
>
> On 10/22/2024 12:29 AM, Suraj Kandpal wrote:
> > Add check to remove HDCP2 compatibility from BMG as it does not have
> > GSC which ends up causing warning when we try to get reference of GSC
> > FW.
> >
> > Fixes: 89d030804831 ("drm/xe/hdcp: Fix condition for hdcp gsc cs
> > requirement")
> > Fixes: 883631771038 ("drm/i915/mtl: Add HDCP GSC interface")
> > Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
> > Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
> > Reviewed-by: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
> > ---
> > drivers/gpu/drm/i915/display/intel_hdcp_gsc.c | 3 ++-
> > drivers/gpu/drm/xe/display/xe_hdcp_gsc.c | 4 +++-
> > 2 files changed, 5 insertions(+), 2 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c
> > b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c
> > index 55965844d829..2c1d0ee8cec2 100644
> > --- a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c
> > +++ b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c
> > @@ -21,7 +21,8 @@ struct intel_hdcp_gsc_message {
> >
> > bool intel_hdcp_gsc_cs_required(struct intel_display *display)
> > {
> > - return DISPLAY_VER(display) >= 14;
> > + return DISPLAY_VER(display) >= 14 &&
> > + DISPLAY_VER_FULL(display) != IP_VER(14, 1);
> > }
> >
> > bool intel_hdcp_gsc_check_status(struct intel_display *display) diff
> > --git a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
> > b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
> > index 231677129a35..efa3441c249c 100644
> > --- a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
> > +++ b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
> > @@ -8,6 +8,7 @@
> > #include <linux/delay.h>
> >
> > #include "abi/gsc_command_header_abi.h"
> > +#include "i915_drv.h"
> > #include "intel_hdcp_gsc.h"
> > #include "intel_hdcp_gsc_message.h"
> > #include "xe_bo.h"
> > @@ -32,7 +33,8 @@ struct intel_hdcp_gsc_message {
> >
> > bool intel_hdcp_gsc_cs_required(struct intel_display *display)
> > {
> > - return DISPLAY_VER(display) >= 14;
> > + return DISPLAY_VER(display) >= 14 &&
> > + DISPLAY_VER_FULL(display) != IP_VER(14, 1);
>
> I don't think this is the correct check or the correct location. BMG does
> require the GSC for HDCP, so intel_hdcp_gsc_cs_required() should still return
> true; it's just that we've decided not to support GSC FW loading on the
> platform, so we can't support HDCP2.x. Also note that the this might change
> and/or it might apply to other platform in the future, so any check needs to
> be done based on GSC support and not platform/display ID.
>
> IMO when intel_hdcp_gsc_cs_required() returns true, the caller should check
> if the GSC FW is defined (or if the GSCCS is available) and if it is not return
> that hdcp2 is not supported due to unmet prerequsites and fallback to 1.4
> without printing any errors.
>
Here is the thing before this I thought that should have worked too but after hdcp_gsc_cs_required()
We call intel_hdcp_gsc_check_status() which has the following check
if (!gsc && !xe_uc_fw_is_enabled(&gsc->fw)) {
drm_dbg_kms(&xe->drm,
"GSC Components not ready for HDCP2.x\n");
return false;
}
And this should have returned from here but it does not it goes ahead and tries to get a xe_pm_runtime()
Which causes it to shout out loud which is currently causing a lot of noise in CI
Regards,
Suraj Kandpal
> Daniele
>
> > }
> >
> > bool intel_hdcp_gsc_check_status(struct intel_display *display)
^ permalink raw reply [flat|nested] 29+ messages in thread* Re: [PATCH] drm/xe/hdcp: Add check to remove hdcp2 compatibility
2024-10-25 1:21 ` Kandpal, Suraj
@ 2024-10-25 15:04 ` Daniele Ceraolo Spurio
2024-10-25 15:59 ` Kandpal, Suraj
0 siblings, 1 reply; 29+ messages in thread
From: Daniele Ceraolo Spurio @ 2024-10-25 15:04 UTC (permalink / raw)
To: Kandpal, Suraj, intel-xe@lists.freedesktop.org,
intel-gfx@lists.freedesktop.org
Cc: Nautiyal, Ankit K, Ghimiray, Himal Prasad
On 10/24/2024 6:21 PM, Kandpal, Suraj wrote:
>
>> -----Original Message-----
>> From: Ceraolo Spurio, Daniele <daniele.ceraolospurio@intel.com>
>> Sent: Thursday, October 24, 2024 9:03 PM
>> To: Kandpal, Suraj <suraj.kandpal@intel.com>; intel-xe@lists.freedesktop.org;
>> intel-gfx@lists.freedesktop.org
>> Cc: Nautiyal, Ankit K <ankit.k.nautiyal@intel.com>; Ghimiray, Himal Prasad
>> <himal.prasad.ghimiray@intel.com>
>> Subject: Re: [PATCH] drm/xe/hdcp: Add check to remove hdcp2 compatibility
>>
>>
>>
>>
>> On 10/22/2024 12:29 AM, Suraj Kandpal wrote:
>>> Add check to remove HDCP2 compatibility from BMG as it does not have
>>> GSC which ends up causing warning when we try to get reference of GSC
>>> FW.
>>>
>>> Fixes: 89d030804831 ("drm/xe/hdcp: Fix condition for hdcp gsc cs
>>> requirement")
>>> Fixes: 883631771038 ("drm/i915/mtl: Add HDCP GSC interface")
>>> Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
>>> Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
>>> Reviewed-by: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
>>> ---
>>> drivers/gpu/drm/i915/display/intel_hdcp_gsc.c | 3 ++-
>>> drivers/gpu/drm/xe/display/xe_hdcp_gsc.c | 4 +++-
>>> 2 files changed, 5 insertions(+), 2 deletions(-)
>>>
>>> diff --git a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c
>>> b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c
>>> index 55965844d829..2c1d0ee8cec2 100644
>>> --- a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c
>>> +++ b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c
>>> @@ -21,7 +21,8 @@ struct intel_hdcp_gsc_message {
>>>
>>> bool intel_hdcp_gsc_cs_required(struct intel_display *display)
>>> {
>>> - return DISPLAY_VER(display) >= 14;
>>> + return DISPLAY_VER(display) >= 14 &&
>>> + DISPLAY_VER_FULL(display) != IP_VER(14, 1);
>>> }
>>>
>>> bool intel_hdcp_gsc_check_status(struct intel_display *display) diff
>>> --git a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
>>> b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
>>> index 231677129a35..efa3441c249c 100644
>>> --- a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
>>> +++ b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
>>> @@ -8,6 +8,7 @@
>>> #include <linux/delay.h>
>>>
>>> #include "abi/gsc_command_header_abi.h"
>>> +#include "i915_drv.h"
>>> #include "intel_hdcp_gsc.h"
>>> #include "intel_hdcp_gsc_message.h"
>>> #include "xe_bo.h"
>>> @@ -32,7 +33,8 @@ struct intel_hdcp_gsc_message {
>>>
>>> bool intel_hdcp_gsc_cs_required(struct intel_display *display)
>>> {
>>> - return DISPLAY_VER(display) >= 14;
>>> + return DISPLAY_VER(display) >= 14 &&
>>> + DISPLAY_VER_FULL(display) != IP_VER(14, 1);
>> I don't think this is the correct check or the correct location. BMG does
>> require the GSC for HDCP, so intel_hdcp_gsc_cs_required() should still return
>> true; it's just that we've decided not to support GSC FW loading on the
>> platform, so we can't support HDCP2.x. Also note that the this might change
>> and/or it might apply to other platform in the future, so any check needs to
>> be done based on GSC support and not platform/display ID.
>>
>> IMO when intel_hdcp_gsc_cs_required() returns true, the caller should check
>> if the GSC FW is defined (or if the GSCCS is available) and if it is not return
>> that hdcp2 is not supported due to unmet prerequsites and fallback to 1.4
>> without printing any errors.
>>
> Here is the thing before this I thought that should have worked too but after hdcp_gsc_cs_required()
> We call intel_hdcp_gsc_check_status() which has the following check
>
> if (!gsc && !xe_uc_fw_is_enabled(&gsc->fw)) {
This check seems incorrect to me. Shouldn't it be an OR instead of an
AND? It is an OR in the i915 code.
> drm_dbg_kms(&xe->drm,
> "GSC Components not ready for HDCP2.x\n");
> return false;
> }
>
> And this should have returned from here but it does not it goes ahead and tries to get a xe_pm_runtime()
> Which causes it to shout out loud which is currently causing a lot of noise in CI
See comment above about possible issue. But even if that is not the bug,
if this function should return and it is not then we should fix this,
not hack the intel_hdcp_gsc_cs_required() function.
Daniele
>
> Regards,
> Suraj Kandpal
>
>> Daniele
>>
>>> }
>>>
>>> bool intel_hdcp_gsc_check_status(struct intel_display *display)
^ permalink raw reply [flat|nested] 29+ messages in thread* RE: [PATCH] drm/xe/hdcp: Add check to remove hdcp2 compatibility
2024-10-25 15:04 ` Daniele Ceraolo Spurio
@ 2024-10-25 15:59 ` Kandpal, Suraj
0 siblings, 0 replies; 29+ messages in thread
From: Kandpal, Suraj @ 2024-10-25 15:59 UTC (permalink / raw)
To: Ceraolo Spurio, Daniele, intel-xe@lists.freedesktop.org,
intel-gfx@lists.freedesktop.org
Cc: Nautiyal, Ankit K, Ghimiray, Himal Prasad
> -----Original Message-----
> From: Ceraolo Spurio, Daniele <daniele.ceraolospurio@intel.com>
> Sent: Friday, October 25, 2024 8:35 PM
> To: Kandpal, Suraj <suraj.kandpal@intel.com>; intel-xe@lists.freedesktop.org;
> intel-gfx@lists.freedesktop.org
> Cc: Nautiyal, Ankit K <ankit.k.nautiyal@intel.com>; Ghimiray, Himal Prasad
> <himal.prasad.ghimiray@intel.com>
> Subject: Re: [PATCH] drm/xe/hdcp: Add check to remove hdcp2 compatibility
>
>
>
>
> On 10/24/2024 6:21 PM, Kandpal, Suraj wrote:
> >
> >> -----Original Message-----
> >> From: Ceraolo Spurio, Daniele <daniele.ceraolospurio@intel.com>
> >> Sent: Thursday, October 24, 2024 9:03 PM
> >> To: Kandpal, Suraj <suraj.kandpal@intel.com>;
> >> intel-xe@lists.freedesktop.org; intel-gfx@lists.freedesktop.org
> >> Cc: Nautiyal, Ankit K <ankit.k.nautiyal@intel.com>; Ghimiray, Himal
> >> Prasad <himal.prasad.ghimiray@intel.com>
> >> Subject: Re: [PATCH] drm/xe/hdcp: Add check to remove hdcp2
> >> compatibility
> >>
> >>
> >>
> >>
> >> On 10/22/2024 12:29 AM, Suraj Kandpal wrote:
> >>> Add check to remove HDCP2 compatibility from BMG as it does not have
> >>> GSC which ends up causing warning when we try to get reference of
> >>> GSC FW.
> >>>
> >>> Fixes: 89d030804831 ("drm/xe/hdcp: Fix condition for hdcp gsc cs
> >>> requirement")
> >>> Fixes: 883631771038 ("drm/i915/mtl: Add HDCP GSC interface")
> >>> Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
> >>> Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
> >>> Reviewed-by: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
> >>> ---
> >>> drivers/gpu/drm/i915/display/intel_hdcp_gsc.c | 3 ++-
> >>> drivers/gpu/drm/xe/display/xe_hdcp_gsc.c | 4 +++-
> >>> 2 files changed, 5 insertions(+), 2 deletions(-)
> >>>
> >>> diff --git a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c
> >>> b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c
> >>> index 55965844d829..2c1d0ee8cec2 100644
> >>> --- a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c
> >>> +++ b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c
> >>> @@ -21,7 +21,8 @@ struct intel_hdcp_gsc_message {
> >>>
> >>> bool intel_hdcp_gsc_cs_required(struct intel_display *display)
> >>> {
> >>> - return DISPLAY_VER(display) >= 14;
> >>> + return DISPLAY_VER(display) >= 14 &&
> >>> + DISPLAY_VER_FULL(display) != IP_VER(14, 1);
> >>> }
> >>>
> >>> bool intel_hdcp_gsc_check_status(struct intel_display *display)
> >>> diff --git a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
> >>> b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
> >>> index 231677129a35..efa3441c249c 100644
> >>> --- a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
> >>> +++ b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
> >>> @@ -8,6 +8,7 @@
> >>> #include <linux/delay.h>
> >>>
> >>> #include "abi/gsc_command_header_abi.h"
> >>> +#include "i915_drv.h"
> >>> #include "intel_hdcp_gsc.h"
> >>> #include "intel_hdcp_gsc_message.h"
> >>> #include "xe_bo.h"
> >>> @@ -32,7 +33,8 @@ struct intel_hdcp_gsc_message {
> >>>
> >>> bool intel_hdcp_gsc_cs_required(struct intel_display *display)
> >>> {
> >>> - return DISPLAY_VER(display) >= 14;
> >>> + return DISPLAY_VER(display) >= 14 &&
> >>> + DISPLAY_VER_FULL(display) != IP_VER(14, 1);
> >> I don't think this is the correct check or the correct location. BMG
> >> does require the GSC for HDCP, so intel_hdcp_gsc_cs_required() should
> >> still return true; it's just that we've decided not to support GSC FW
> >> loading on the platform, so we can't support HDCP2.x. Also note that
> >> the this might change and/or it might apply to other platform in the
> >> future, so any check needs to be done based on GSC support and not
> platform/display ID.
> >>
> >> IMO when intel_hdcp_gsc_cs_required() returns true, the caller should
> >> check if the GSC FW is defined (or if the GSCCS is available) and if
> >> it is not return that hdcp2 is not supported due to unmet
> >> prerequsites and fallback to 1.4 without printing any errors.
> >>
> > Here is the thing before this I thought that should have worked too
> > but after hdcp_gsc_cs_required() We call intel_hdcp_gsc_check_status()
> > which has the following check
> >
> > if (!gsc && !xe_uc_fw_is_enabled(&gsc->fw)) {
>
> This check seems incorrect to me. Shouldn't it be an OR instead of an AND? It
> is an OR in the i915 code.
Yes this could be it will float a new version
Regards,
Suraj Kandpal
>
> > drm_dbg_kms(&xe->drm,
> > "GSC Components not ready for HDCP2.x\n");
> > return false;
> > }
> >
> > And this should have returned from here but it does not it goes ahead
> > and tries to get a xe_pm_runtime() Which causes it to shout out loud
> > which is currently causing a lot of noise in CI
>
> See comment above about possible issue. But even if that is not the bug, if
> this function should return and it is not then we should fix this, not hack the
> intel_hdcp_gsc_cs_required() function.
>
> Daniele
>
> >
> > Regards,
> > Suraj Kandpal
> >
> >> Daniele
> >>
> >>> }
> >>>
> >>> bool intel_hdcp_gsc_check_status(struct intel_display *display)
^ permalink raw reply [flat|nested] 29+ messages in thread
* [PATCH] drm/xe/hdcp: Fix gsc structure check in fw check status
2024-10-22 7:29 ` [PATCH] drm/xe/hdcp: Add check to remove hdcp2 compatibility Suraj Kandpal
` (3 preceding siblings ...)
2024-10-24 15:33 ` Daniele Ceraolo Spurio
@ 2024-10-25 16:08 ` Suraj Kandpal
2024-10-25 16:12 ` Matt Roper
2024-10-28 12:03 ` Jani Nikula
4 siblings, 2 replies; 29+ messages in thread
From: Suraj Kandpal @ 2024-10-25 16:08 UTC (permalink / raw)
To: intel-xe, intel-gfx
Cc: ankit.k.nautiyal, matthew.d.roper, daniele.ceraolospurio,
Suraj Kandpal
Fix the condition for gsc structure validity in
gsc_cs_status_check(). It needs to be an OR and not an AND
condition
Fixes: b4224f6bae38 ("drm/xe/hdcp: Check GSC structure validity")
Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
---
drivers/gpu/drm/xe/display/xe_hdcp_gsc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
index 6d34b55d72bb..7c02323e9531 100644
--- a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
+++ b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
@@ -44,7 +44,7 @@ bool intel_hdcp_gsc_check_status(struct intel_display *display)
bool ret = true;
unsigned int fw_ref;
- if (!gsc && !xe_uc_fw_is_enabled(&gsc->fw)) {
+ if (!gsc || !xe_uc_fw_is_enabled(&gsc->fw)) {
drm_dbg_kms(&xe->drm,
"GSC Components not ready for HDCP2.x\n");
return false;
--
2.34.1
^ permalink raw reply related [flat|nested] 29+ messages in thread* Re: [PATCH] drm/xe/hdcp: Fix gsc structure check in fw check status
2024-10-25 16:08 ` [PATCH] drm/xe/hdcp: Fix gsc structure check in fw check status Suraj Kandpal
@ 2024-10-25 16:12 ` Matt Roper
2024-10-28 12:03 ` Jani Nikula
1 sibling, 0 replies; 29+ messages in thread
From: Matt Roper @ 2024-10-25 16:12 UTC (permalink / raw)
To: Suraj Kandpal
Cc: intel-xe, intel-gfx, ankit.k.nautiyal, daniele.ceraolospurio
On Fri, Oct 25, 2024 at 09:38:35PM +0530, Suraj Kandpal wrote:
> Fix the condition for gsc structure validity in
> gsc_cs_status_check(). It needs to be an OR and not an AND
> condition
>
> Fixes: b4224f6bae38 ("drm/xe/hdcp: Check GSC structure validity")
> Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
Reviewed-by: Matt Roper <matthew.d.roper@intel.com>
> ---
> drivers/gpu/drm/xe/display/xe_hdcp_gsc.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
> index 6d34b55d72bb..7c02323e9531 100644
> --- a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
> +++ b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
> @@ -44,7 +44,7 @@ bool intel_hdcp_gsc_check_status(struct intel_display *display)
> bool ret = true;
> unsigned int fw_ref;
>
> - if (!gsc && !xe_uc_fw_is_enabled(&gsc->fw)) {
> + if (!gsc || !xe_uc_fw_is_enabled(&gsc->fw)) {
> drm_dbg_kms(&xe->drm,
> "GSC Components not ready for HDCP2.x\n");
> return false;
> --
> 2.34.1
>
--
Matt Roper
Graphics Software Engineer
Linux GPU Platform Enablement
Intel Corporation
^ permalink raw reply [flat|nested] 29+ messages in thread* Re: [PATCH] drm/xe/hdcp: Fix gsc structure check in fw check status
2024-10-25 16:08 ` [PATCH] drm/xe/hdcp: Fix gsc structure check in fw check status Suraj Kandpal
2024-10-25 16:12 ` Matt Roper
@ 2024-10-28 12:03 ` Jani Nikula
1 sibling, 0 replies; 29+ messages in thread
From: Jani Nikula @ 2024-10-28 12:03 UTC (permalink / raw)
To: Suraj Kandpal, intel-xe, intel-gfx
Cc: ankit.k.nautiyal, matthew.d.roper, daniele.ceraolospurio,
Suraj Kandpal
On Fri, 25 Oct 2024, Suraj Kandpal <suraj.kandpal@intel.com> wrote:
> Fix the condition for gsc structure validity in
> gsc_cs_status_check(). It needs to be an OR and not an AND
> condition
This is a completely different and new patch. For future reference,
please send them in new threads, not in-reply-to the old ones. In
general, please tweak your approach slightly more towards new threads
over in-reply-to.
Thanks,
Jani.
>
> Fixes: b4224f6bae38 ("drm/xe/hdcp: Check GSC structure validity")
> Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
> ---
> drivers/gpu/drm/xe/display/xe_hdcp_gsc.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
> index 6d34b55d72bb..7c02323e9531 100644
> --- a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
> +++ b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c
> @@ -44,7 +44,7 @@ bool intel_hdcp_gsc_check_status(struct intel_display *display)
> bool ret = true;
> unsigned int fw_ref;
>
> - if (!gsc && !xe_uc_fw_is_enabled(&gsc->fw)) {
> + if (!gsc || !xe_uc_fw_is_enabled(&gsc->fw)) {
> drm_dbg_kms(&xe->drm,
> "GSC Components not ready for HDCP2.x\n");
> return false;
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 29+ messages in thread
* ✗ Fi.CI.IGT: failure for drm/xe/hdcp: Add check to remove hdcp2 compatibilty
2024-10-22 5:56 [PATCH] drm/xe/hdcp: Add check to remove hdcp2 compatibilty Suraj Kandpal
` (6 preceding siblings ...)
2024-10-22 7:29 ` [PATCH] drm/xe/hdcp: Add check to remove hdcp2 compatibility Suraj Kandpal
@ 2024-10-22 8:18 ` Patchwork
2024-10-22 9:00 ` ✓ Fi.CI.BAT: success for drm/xe/hdcp: Add check to remove hdcp2 compatibilty (rev2) Patchwork
` (4 subsequent siblings)
12 siblings, 0 replies; 29+ messages in thread
From: Patchwork @ 2024-10-22 8:18 UTC (permalink / raw)
To: Suraj Kandpal; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 100278 bytes --]
== Series Details ==
Series: drm/xe/hdcp: Add check to remove hdcp2 compatibilty
URL : https://patchwork.freedesktop.org/series/140291/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15574_full -> Patchwork_140291v1_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_140291v1_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_140291v1_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (8 -> 7)
------------------------------
Missing (1): shard-glk-0
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_140291v1_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b:
- shard-dg2: NOTRUN -> [INCOMPLETE][1] +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-5/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html
Known issues
------------
Here are the changes found in Patchwork_140291v1_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg2: NOTRUN -> [SKIP][2] ([i915#8411])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-5/igt@api_intel_bb@blit-reloc-purge-cache.html
- shard-dg1: NOTRUN -> [SKIP][3] ([i915#8411])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg1-12/igt@api_intel_bb@blit-reloc-purge-cache.html
- shard-mtlp: NOTRUN -> [SKIP][4] ([i915#8411])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-mtlp-6/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@drm_fdinfo@busy@ccs0:
- shard-dg2: NOTRUN -> [SKIP][5] ([i915#8414]) +16 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-5/igt@drm_fdinfo@busy@ccs0.html
* igt@drm_fdinfo@busy@vcs0:
- shard-mtlp: NOTRUN -> [SKIP][6] ([i915#8414]) +6 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-mtlp-6/igt@drm_fdinfo@busy@vcs0.html
* igt@drm_fdinfo@busy@vcs1:
- shard-dg1: NOTRUN -> [SKIP][7] ([i915#8414]) +5 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg1-12/igt@drm_fdinfo@busy@vcs1.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-dg1: NOTRUN -> [SKIP][8] ([i915#3555] / [i915#9323])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg1-12/igt@gem_ccs@ctrl-surf-copy.html
- shard-tglu: NOTRUN -> [SKIP][9] ([i915#3555] / [i915#9323])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-tglu-7/igt@gem_ccs@ctrl-surf-copy.html
- shard-mtlp: NOTRUN -> [SKIP][10] ([i915#3555] / [i915#9323])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-mtlp-6/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-dg2: NOTRUN -> [SKIP][11] ([i915#7697])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-2/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-mtlp: NOTRUN -> [SKIP][12] ([i915#6335])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-mtlp-5/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_engines@invalid-engines:
- shard-mtlp: [PASS][13] -> [FAIL][14] ([i915#12031])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-mtlp-3/igt@gem_ctx_engines@invalid-engines.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-mtlp-3/igt@gem_ctx_engines@invalid-engines.html
* igt@gem_ctx_sseu@engines:
- shard-dg2: NOTRUN -> [SKIP][15] ([i915#280])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-11/igt@gem_ctx_sseu@engines.html
- shard-dg1: NOTRUN -> [SKIP][16] ([i915#280])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg1-18/igt@gem_ctx_sseu@engines.html
- shard-tglu: NOTRUN -> [SKIP][17] ([i915#280])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-tglu-7/igt@gem_ctx_sseu@engines.html
* igt@gem_eio@kms:
- shard-dg2: [PASS][18] -> [FAIL][19] ([i915#5784])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-6/igt@gem_eio@kms.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-10/igt@gem_eio@kms.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-dg2: NOTRUN -> [SKIP][20] ([i915#4812]) +2 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-11/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_endless@dispatch@vcs1:
- shard-tglu: [PASS][21] -> [TIMEOUT][22] ([i915#3778]) +1 other test timeout
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-tglu-9/igt@gem_exec_endless@dispatch@vcs1.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-tglu-9/igt@gem_exec_endless@dispatch@vcs1.html
* igt@gem_exec_fair@basic-deadline:
- shard-rkl: [PASS][23] -> [FAIL][24] ([i915#2846])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-rkl-2/igt@gem_exec_fair@basic-deadline.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-rkl-4/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none:
- shard-dg1: NOTRUN -> [SKIP][25] ([i915#3539] / [i915#4852]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg1-12/igt@gem_exec_fair@basic-none.html
- shard-mtlp: NOTRUN -> [SKIP][26] ([i915#4473] / [i915#4771]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-mtlp-6/igt@gem_exec_fair@basic-none.html
* igt@gem_exec_fair@basic-none-share:
- shard-rkl: [PASS][27] -> [FAIL][28] ([i915#2842]) +2 other tests fail
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-rkl-4/igt@gem_exec_fair@basic-none-share.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-rkl-5/igt@gem_exec_fair@basic-none-share.html
* igt@gem_exec_fair@basic-none-solo:
- shard-tglu: NOTRUN -> [FAIL][29] ([i915#2842]) +7 other tests fail
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-tglu-7/igt@gem_exec_fair@basic-none-solo.html
- shard-dg2: NOTRUN -> [SKIP][30] ([i915#3539] / [i915#4852]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-11/igt@gem_exec_fair@basic-none-solo.html
* igt@gem_exec_flush@basic-uc-prw-default:
- shard-dg2: NOTRUN -> [SKIP][31] ([i915#3539])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-11/igt@gem_exec_flush@basic-uc-prw-default.html
- shard-dg1: NOTRUN -> [SKIP][32] ([i915#3539])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg1-18/igt@gem_exec_flush@basic-uc-prw-default.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-mtlp: NOTRUN -> [SKIP][33] ([i915#5107])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-mtlp-6/igt@gem_exec_params@rsvd2-dirt.html
- shard-dg2: NOTRUN -> [SKIP][34] ([i915#5107])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-5/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-dg2: NOTRUN -> [SKIP][35] ([i915#3281]) +11 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-11/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_exec_reloc@basic-wc-gtt-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][36] ([i915#3281]) +5 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-mtlp-6/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html
* igt@gem_exec_reloc@basic-write-cpu-active:
- shard-dg1: NOTRUN -> [SKIP][37] ([i915#3281]) +7 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg1-12/igt@gem_exec_reloc@basic-write-cpu-active.html
* igt@gem_exec_schedule@pi-ringfull@ccs0:
- shard-dg2: NOTRUN -> [FAIL][38] ([i915#12296]) +7 other tests fail
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-5/igt@gem_exec_schedule@pi-ringfull@ccs0.html
- shard-mtlp: NOTRUN -> [FAIL][39] ([i915#12296]) +6 other tests fail
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-mtlp-6/igt@gem_exec_schedule@pi-ringfull@ccs0.html
* igt@gem_exec_schedule@pi-ringfull@rcs0:
- shard-dg1: NOTRUN -> [FAIL][40] ([i915#12296]) +5 other tests fail
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg1-12/igt@gem_exec_schedule@pi-ringfull@rcs0.html
- shard-tglu: NOTRUN -> [FAIL][41] ([i915#12296]) +5 other tests fail
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-tglu-7/igt@gem_exec_schedule@pi-ringfull@rcs0.html
* igt@gem_exec_schedule@preempt-queue:
- shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4537] / [i915#4812])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-mtlp-6/igt@gem_exec_schedule@preempt-queue.html
* igt@gem_exec_schedule@semaphore-power:
- shard-dg1: NOTRUN -> [SKIP][43] ([i915#4812]) +2 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg1-18/igt@gem_exec_schedule@semaphore-power.html
- shard-dg2: NOTRUN -> [SKIP][44] ([i915#4537] / [i915#4812]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-11/igt@gem_exec_schedule@semaphore-power.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_140291v1/shard-dg2-5/igt@gem_fence_thrash@bo-copy.html
- shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4860])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-mtlp-6/igt@gem_fence_thrash@bo-copy.html
* igt@gem_fenced_exec_thrash@no-spare-fences:
- shard-dg1: NOTRUN -> [SKIP][47] ([i915#4860]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg1-15/igt@gem_fenced_exec_thrash@no-spare-fences.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-dg1: NOTRUN -> [SKIP][48] ([i915#12193])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg1-12/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4613])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-mtlp-6/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][50] ([i915#4565])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg1-12/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html
* igt@gem_lmem_swapping@smem-oom:
- shard-tglu: NOTRUN -> [SKIP][51] ([i915#4613]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-tglu-7/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_mmap@short-mmap:
- shard-dg1: NOTRUN -> [SKIP][52] ([i915#4083])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg1-18/igt@gem_mmap@short-mmap.html
* igt@gem_mmap_gtt@basic-small-copy:
- shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4077])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-mtlp-5/igt@gem_mmap_gtt@basic-small-copy.html
* igt@gem_mmap_wc@write-wc-read-gtt:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#4083]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-8/igt@gem_mmap_wc@write-wc-read-gtt.html
* igt@gem_pwrite@basic-exhaustion:
- shard-tglu: NOTRUN -> [WARN][55] ([i915#2658])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-tglu-7/igt@gem_pwrite@basic-exhaustion.html
- shard-mtlp: NOTRUN -> [SKIP][56] ([i915#3282]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-mtlp-6/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#4270]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-11/igt@gem_pxp@regular-baseline-src-copy-readible.html
- shard-dg1: NOTRUN -> [SKIP][58] ([i915#4270])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg1-18/igt@gem_pxp@regular-baseline-src-copy-readible.html
- shard-tglu: NOTRUN -> [SKIP][59] ([i915#4270])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-tglu-7/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_readwrite@beyond-eob:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#3282]) +6 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-11/igt@gem_readwrite@beyond-eob.html
- shard-dg1: NOTRUN -> [SKIP][61] ([i915#3282]) +3 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg1-18/igt@gem_readwrite@beyond-eob.html
* igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][62] ([i915#8428])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-mtlp-6/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#5190] / [i915#8428]) +5 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-11/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#4885]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-11/igt@gem_softpin@evict-snoop-interruptible.html
- shard-dg1: NOTRUN -> [SKIP][65] ([i915#4885])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg1-18/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_tiled_swapping@non-threaded:
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#4077]) +4 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-8/igt@gem_tiled_swapping@non-threaded.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#3297]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-11/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gen9_exec_parse@basic-rejected:
- shard-tglu: NOTRUN -> [SKIP][68] ([i915#2527] / [i915#2856]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-tglu-7/igt@gen9_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-dg1: NOTRUN -> [SKIP][69] ([i915#2527]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg1-12/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@bb-secure:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#2856]) +3 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-1/igt@gen9_exec_parse@bb-secure.html
* igt@gen9_exec_parse@secure-batches:
- shard-mtlp: NOTRUN -> [SKIP][71] ([i915#2856]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-mtlp-5/igt@gen9_exec_parse@secure-batches.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-snb: [PASS][72] -> [ABORT][73] ([i915#9820])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-snb6/igt@i915_module_load@reload-with-fault-injection.html
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-snb5/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-tglu: NOTRUN -> [SKIP][74] ([i915#8399])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-tglu-7/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#11681] / [i915#6621])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-5/igt@i915_pm_rps@min-max-config-idle.html
- shard-dg1: NOTRUN -> [SKIP][76] ([i915#11681] / [i915#6621])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg1-12/igt@i915_pm_rps@min-max-config-idle.html
- shard-mtlp: NOTRUN -> [SKIP][77] ([i915#11681] / [i915#6621])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-mtlp-6/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_rps@reset:
- shard-dg1: NOTRUN -> [FAIL][78] ([i915#12459])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg1-19/igt@i915_pm_rps@reset.html
- shard-tglu: [PASS][79] -> [FAIL][80] ([i915#8346])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-tglu-9/igt@i915_pm_rps@reset.html
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-tglu-9/igt@i915_pm_rps@reset.html
* igt@i915_pm_rps@thresholds-idle:
- shard-mtlp: NOTRUN -> [SKIP][81] ([i915#11681])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-mtlp-5/igt@i915_pm_rps@thresholds-idle.html
* igt@i915_pm_rps@thresholds-park:
- shard-dg2: NOTRUN -> [SKIP][82] ([i915#11681])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-11/igt@i915_pm_rps@thresholds-park.html
- shard-dg1: NOTRUN -> [SKIP][83] ([i915#11681])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg1-18/igt@i915_pm_rps@thresholds-park.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-rkl: [PASS][84] -> [INCOMPLETE][85] ([i915#4817])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-rkl-4/igt@i915_suspend@basic-s3-without-i915.html
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-rkl-3/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- shard-mtlp: NOTRUN -> [SKIP][86] ([i915#4212])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-mtlp-6/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
- shard-dg1: NOTRUN -> [SKIP][87] ([i915#4212])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg1-12/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_addfb_basic@clobberred-modifier:
- shard-dg2: NOTRUN -> [SKIP][88] ([i915#4212]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-2/igt@kms_addfb_basic@clobberred-modifier.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][89] ([i915#8709]) +3 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-rkl-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc.html
* igt@kms_atomic_transition@modeset-transition-nonblocking:
- shard-glk: [PASS][90] -> [FAIL][91] ([i915#12177])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-glk4/igt@kms_atomic_transition@modeset-transition-nonblocking.html
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-glk8/igt@kms_atomic_transition@modeset-transition-nonblocking.html
* igt@kms_atomic_transition@modeset-transition-nonblocking@2x-outputs:
- shard-glk: [PASS][92] -> [FAIL][93] ([i915#11859])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-glk4/igt@kms_atomic_transition@modeset-transition-nonblocking@2x-outputs.html
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-glk8/igt@kms_atomic_transition@modeset-transition-nonblocking@2x-outputs.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-dg1: [PASS][94] -> [FAIL][95] ([i915#5956])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg1-12/igt@kms_atomic_transition@plane-all-modeset-transition.html
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg1-14/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [FAIL][96] ([i915#5956])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg1-14/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-4.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-dg1: NOTRUN -> [SKIP][97] ([i915#5286])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg1-18/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
- shard-tglu: NOTRUN -> [SKIP][98] ([i915#5286]) +2 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-tglu-7/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-dg1: NOTRUN -> [SKIP][99] ([i915#4538] / [i915#5286]) +1 other test skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg1-12/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-180:
- shard-dg2: [PASS][100] -> [SKIP][101] ([i915#9197]) +24 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-3/igt@kms_big_fb@x-tiled-16bpp-rotate-180.html
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-2/igt@kms_big_fb@x-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][102] ([i915#3638]) +1 other test skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg1-18/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-mtlp: NOTRUN -> [SKIP][103] +3 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-mtlp-6/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][104] ([i915#4538] / [i915#5190]) +6 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
- shard-snb: NOTRUN -> [SKIP][105] +8 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-snb7/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-dg2: NOTRUN -> [SKIP][106] ([i915#5190])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-11/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-dg2: NOTRUN -> [SKIP][107] ([i915#5190] / [i915#9197]) +1 other test skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][108] ([i915#6095]) +91 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg1-14/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][109] ([i915#6095]) +19 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-tglu-7/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][110] ([i915#6095]) +19 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-mtlp-6/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-edp-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-dg1: NOTRUN -> [SKIP][111] ([i915#12313]) +2 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg1-18/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
- shard-tglu: NOTRUN -> [SKIP][112] ([i915#12313]) +2 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-tglu-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][113] ([i915#10307] / [i915#6095]) +180 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#10307] / [i915#10434] / [i915#6095]) +5 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-8/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-dg2: NOTRUN -> [SKIP][115] ([i915#12313]) +2 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-5/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][116] ([i915#12313]) +1 other test skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-mtlp-6/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][117] ([i915#6095]) +67 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_cdclk@mode-transition:
- shard-dg2: NOTRUN -> [SKIP][118] ([i915#11616] / [i915#7213])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-11/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][119] ([i915#7213]) +3 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-11/igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2.html
* igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][120] ([i915#4087]) +3 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-3/igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-2.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-dg2: NOTRUN -> [SKIP][121] +9 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-8/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_edid@dp-mode-timings:
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#7828]) +8 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-2/igt@kms_chamelium_edid@dp-mode-timings.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-dg1: NOTRUN -> [SKIP][123] ([i915#7828]) +3 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg1-18/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
- shard-tglu: NOTRUN -> [SKIP][124] ([i915#7828]) +3 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-tglu-7/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-mtlp: NOTRUN -> [SKIP][125] ([i915#7828]) +1 other test skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-mtlp-6/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_content_protection@mei-interface:
- shard-dg2: NOTRUN -> [SKIP][126] ([i915#9197]) +20 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-2/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@type1:
- shard-mtlp: NOTRUN -> [SKIP][127] ([i915#3555] / [i915#6944] / [i915#9424])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-mtlp-5/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent:
- shard-mtlp: NOTRUN -> [SKIP][128] ([i915#6944] / [i915#9424])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-mtlp-6/igt@kms_content_protection@uevent.html
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#7118] / [i915#9424])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-5/igt@kms_content_protection@uevent.html
- shard-dg1: NOTRUN -> [SKIP][130] ([i915#7116] / [i915#9424])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg1-12/igt@kms_content_protection@uevent.html
- shard-tglu: NOTRUN -> [SKIP][131] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-tglu-7/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-mtlp: NOTRUN -> [SKIP][132] ([i915#3555] / [i915#8814])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-mtlp-1/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-128x42:
- shard-mtlp: NOTRUN -> [SKIP][133] ([i915#8814]) +1 other test skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-mtlp-6/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-mtlp: NOTRUN -> [SKIP][134] ([i915#11453] / [i915#3359])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-mtlp-5/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-mtlp: NOTRUN -> [SKIP][135] ([i915#4213])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-mtlp-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-dg1: NOTRUN -> [SKIP][136] ([i915#4103] / [i915#4213]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg1-18/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
- shard-tglu: NOTRUN -> [SKIP][137] ([i915#4103]) +1 other test skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-tglu-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-mtlp: NOTRUN -> [SKIP][138] ([i915#9809])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-mtlp-6/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@flip-vs-cursor-varying-size:
- shard-mtlp: [PASS][139] -> [FAIL][140] ([i915#2346])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-mtlp-5/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-mtlp-4/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-dg2: NOTRUN -> [SKIP][141] ([i915#4103] / [i915#4213]) +2 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-11/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][142] ([i915#3804])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-rkl-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_feature_discovery@display-4x:
- shard-mtlp: NOTRUN -> [SKIP][143] ([i915#1839])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-mtlp-5/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@psr1:
- shard-tglu: NOTRUN -> [SKIP][144] ([i915#658])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-tglu-7/igt@kms_feature_discovery@psr1.html
- shard-dg2: NOTRUN -> [SKIP][145] ([i915#658])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-5/igt@kms_feature_discovery@psr1.html
- shard-dg1: NOTRUN -> [SKIP][146] ([i915#658])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg1-12/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][147] ([i915#3637]) +2 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-tglu-7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-mtlp: NOTRUN -> [SKIP][148] ([i915#3637]) +2 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-mtlp-6/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_flip@2x-flip-vs-wf_vblank:
- shard-dg1: NOTRUN -> [SKIP][149] ([i915#9934]) +2 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg1-18/igt@kms_flip@2x-flip-vs-wf_vblank.html
* igt@kms_flip@2x-flip-vs-wf_vblank@ab-hdmi-a1-hdmi-a2:
- shard-glk: ([PASS][150], [PASS][151]) -> [FAIL][152] ([i915#2122]) +1 other test fail
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-glk9/igt@kms_flip@2x-flip-vs-wf_vblank@ab-hdmi-a1-hdmi-a2.html
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-glk8/igt@kms_flip@2x-flip-vs-wf_vblank@ab-hdmi-a1-hdmi-a2.html
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-glk5/igt@kms_flip@2x-flip-vs-wf_vblank@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-plain-flip-fb-recreate@ab-hdmi-a1-hdmi-a2:
- shard-glk: [PASS][153] -> [FAIL][154] ([i915#2122])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-glk8/igt@kms_flip@2x-plain-flip-fb-recreate@ab-hdmi-a1-hdmi-a2.html
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-glk9/igt@kms_flip@2x-plain-flip-fb-recreate@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1:
- shard-snb: [PASS][155] -> [FAIL][156] ([i915#2122]) +1 other test fail
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-snb4/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1.html
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-snb4/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1.html
* igt@kms_flip@blocking-wf_vblank@b-hdmi-a1:
- shard-rkl: NOTRUN -> [FAIL][157] ([i915#2122]) +1 other test fail
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-rkl-4/igt@kms_flip@blocking-wf_vblank@b-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend:
- shard-dg2: [PASS][158] -> [SKIP][159] ([i915#5354]) +13 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-4/igt@kms_flip@flip-vs-suspend.html
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-2/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling:
- shard-glk: NOTRUN -> [SKIP][160] +8 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-glk5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#2672] / [i915#3555])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
- shard-dg1: NOTRUN -> [SKIP][162] ([i915#2672] / [i915#3555])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
- shard-tglu: NOTRUN -> [SKIP][163] ([i915#2672] / [i915#3555])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-tglu-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][164] ([i915#2587] / [i915#2672])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-tglu-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
- shard-dg1: NOTRUN -> [SKIP][165] ([i915#2587] / [i915#2672])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-dg2: [PASS][166] -> [SKIP][167] ([i915#3555]) +4 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][168] ([i915#3555] / [i915#8813])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][169] ([i915#3555] / [i915#8810])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][170] ([i915#2672] / [i915#3555] / [i915#5190]) +3 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#2672]) +7 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][172] ([i915#8708]) +4 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][173] ([i915#8708]) +9 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite:
- shard-snb: [PASS][174] -> [SKIP][175]
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite.html
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
- shard-dg1: NOTRUN -> [SKIP][176] +19 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][177] ([i915#1825]) +8 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][178] ([i915#3458]) +12 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][179] ([i915#5354]) +41 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][180] +32 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-tglu-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][181] ([i915#3458]) +9 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-dg2: NOTRUN -> [SKIP][182] ([i915#3555] / [i915#8228]) +2 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-11/igt@kms_hdr@invalid-metadata-sizes.html
- shard-dg1: NOTRUN -> [SKIP][183] ([i915#3555] / [i915#8228]) +1 other test skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg1-18/igt@kms_hdr@invalid-metadata-sizes.html
- shard-tglu: NOTRUN -> [SKIP][184] ([i915#3555] / [i915#8228]) +1 other test skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-tglu-7/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle-dpms:
- shard-dg2: [PASS][185] -> [SKIP][186] ([i915#3555] / [i915#8228])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-10/igt@kms_hdr@static-toggle-dpms.html
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-5/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_joiner@basic-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][187] ([i915#10656])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-11/igt@kms_joiner@basic-big-joiner.html
* igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant:
- shard-dg2: [PASS][188] -> [SKIP][189] ([i915#7294]) +1 other test skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-3/igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant.html
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-2/igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-c:
- shard-dg2: [PASS][190] -> [SKIP][191] ([i915#12247]) +11 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-4/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-c.html
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-c.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-d:
- shard-dg2: [PASS][192] -> [SKIP][193] ([i915#8152]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-4/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-d.html
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-d.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers:
- shard-dg2: [PASS][194] -> [SKIP][195] ([i915#8152] / [i915#9423]) +1 other test skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-8/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers.html
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling:
- shard-dg2: [PASS][196] -> [SKIP][197] ([i915#12247] / [i915#3558] / [i915#8152] / [i915#9423])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-4/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling.html
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-d:
- shard-dg2: [PASS][198] -> [SKIP][199] ([i915#12247] / [i915#8152]) +1 other test skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-4/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-d.html
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-dg2: NOTRUN -> [SKIP][200] ([i915#12247] / [i915#3555] / [i915#8152] / [i915#9423])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c:
- shard-dg2: NOTRUN -> [SKIP][201] ([i915#12247]) +2 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][202] ([i915#12247] / [i915#8152])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75:
- shard-dg2: [PASS][203] -> [SKIP][204] ([i915#12247] / [i915#6953] / [i915#8152] / [i915#9423])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75:
- shard-mtlp: NOTRUN -> [SKIP][205] ([i915#12247] / [i915#3555] / [i915#6953])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-mtlp-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c:
- shard-mtlp: NOTRUN -> [SKIP][206] ([i915#12247]) +3 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-mtlp-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c.html
* igt@kms_pm_backlight@bad-brightness:
- shard-dg1: NOTRUN -> [SKIP][207] ([i915#5354])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg1-18/igt@kms_pm_backlight@bad-brightness.html
- shard-tglu: NOTRUN -> [SKIP][208] ([i915#9812])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-tglu-7/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_dc@dc5-dpms-negative:
- shard-mtlp: NOTRUN -> [SKIP][209] ([i915#9293])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-mtlp-6/igt@kms_pm_dc@dc5-dpms-negative.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2: NOTRUN -> [SKIP][210] ([i915#9685])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-1/igt@kms_pm_dc@dc5-psr.html
- shard-dg1: NOTRUN -> [SKIP][211] ([i915#9685])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg1-15/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: [PASS][212] -> [SKIP][213] ([i915#9340])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-4/igt@kms_pm_lpsp@kms-lpsp.html
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-2/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-dg2: NOTRUN -> [SKIP][214] ([i915#8430])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-11/igt@kms_pm_lpsp@screens-disabled.html
- shard-dg1: NOTRUN -> [SKIP][215] ([i915#8430])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg1-18/igt@kms_pm_lpsp@screens-disabled.html
- shard-tglu: NOTRUN -> [SKIP][216] ([i915#8430])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-tglu-7/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@cursor-dpms:
- shard-dg2: [PASS][217] -> [SKIP][218] ([i915#1849])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-3/igt@kms_pm_rpm@cursor-dpms.html
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-2/igt@kms_pm_rpm@cursor-dpms.html
* igt@kms_pm_rpm@drm-resources-equal:
- shard-dg1: [PASS][219] -> [DMESG-WARN][220] ([i915#4423])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg1-13/igt@kms_pm_rpm@drm-resources-equal.html
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg1-16/igt@kms_pm_rpm@drm-resources-equal.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: NOTRUN -> [SKIP][221] ([i915#9519])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-2/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-rkl: [PASS][222] -> [SKIP][223] ([i915#9519]) +2 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp-stress.html
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-tglu: NOTRUN -> [SKIP][224] ([i915#9519])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-tglu-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf:
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#11520]) +7 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-8/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
- shard-tglu: NOTRUN -> [SKIP][226] ([i915#11520]) +3 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-tglu-7/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
- shard-mtlp: NOTRUN -> [SKIP][227] ([i915#12316])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-mtlp-6/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
- shard-dg1: NOTRUN -> [SKIP][228] ([i915#11520]) +3 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg1-18/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg2: NOTRUN -> [SKIP][229] ([i915#9683])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-1/igt@kms_psr2_su@page_flip-nv12.html
- shard-dg1: NOTRUN -> [SKIP][230] ([i915#9683])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg1-15/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-psr-primary-page-flip:
- shard-dg2: NOTRUN -> [SKIP][231] ([i915#1072] / [i915#9732]) +16 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-2/igt@kms_psr@fbc-psr-primary-page-flip.html
* igt@kms_psr@fbc-psr2-primary-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][232] ([i915#9688]) +7 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-mtlp-6/igt@kms_psr@fbc-psr2-primary-mmap-cpu.html
* igt@kms_psr@psr-suspend:
- shard-dg1: NOTRUN -> [SKIP][233] ([i915#1072] / [i915#9732]) +10 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg1-18/igt@kms_psr@psr-suspend.html
* igt@kms_psr@psr2-cursor-blt:
- shard-mtlp: [PASS][234] -> [FAIL][235] ([i915#12380]) +1 other test fail
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-mtlp-6/igt@kms_psr@psr2-cursor-blt.html
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-mtlp-5/igt@kms_psr@psr2-cursor-blt.html
* igt@kms_psr@psr2-cursor-plane-onoff:
- shard-tglu: NOTRUN -> [SKIP][236] ([i915#9732]) +8 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-tglu-7/igt@kms_psr@psr2-cursor-plane-onoff.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg1: NOTRUN -> [SKIP][237] ([i915#5289])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg1-15/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg2: NOTRUN -> [SKIP][238] ([i915#11131] / [i915#4235])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-11/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-tglu: NOTRUN -> [SKIP][239] ([i915#3555]) +2 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-tglu-7/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free:
- shard-dg2: NOTRUN -> [ABORT][240] ([i915#12231]) +1 other test abort
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-8/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html
* igt@kms_vrr@flip-basic:
- shard-dg2: NOTRUN -> [SKIP][241] ([i915#3555]) +5 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-11/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@flip-dpms:
- shard-dg1: NOTRUN -> [SKIP][242] ([i915#3555]) +3 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg1-18/igt@kms_vrr@flip-dpms.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-dg1: NOTRUN -> [SKIP][243] ([i915#2437])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg1-12/igt@kms_writeback@writeback-invalid-parameters.html
- shard-tglu: NOTRUN -> [SKIP][244] ([i915#2437])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-tglu-7/igt@kms_writeback@writeback-invalid-parameters.html
- shard-mtlp: NOTRUN -> [SKIP][245] ([i915#2437])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-mtlp-6/igt@kms_writeback@writeback-invalid-parameters.html
- shard-dg2: NOTRUN -> [SKIP][246] ([i915#2437])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-5/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf_pmu@rc6-all-gts:
- shard-dg2: NOTRUN -> [SKIP][247] ([i915#8516])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-2/igt@perf_pmu@rc6-all-gts.html
* igt@prime_vgem@basic-read:
- shard-mtlp: NOTRUN -> [SKIP][248] ([i915#3708])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-mtlp-6/igt@prime_vgem@basic-read.html
- shard-dg2: NOTRUN -> [SKIP][249] ([i915#3291] / [i915#3708])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-5/igt@prime_vgem@basic-read.html
* igt@prime_vgem@fence-read-hang:
- shard-dg2: NOTRUN -> [SKIP][250] ([i915#3708])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-11/igt@prime_vgem@fence-read-hang.html
- shard-dg1: NOTRUN -> [SKIP][251] ([i915#3708]) +1 other test skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg1-18/igt@prime_vgem@fence-read-hang.html
#### Possible fixes ####
* igt@gem_ccs@suspend-resume:
- shard-dg2: [INCOMPLETE][252] ([i915#7297]) -> [PASS][253]
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-5/igt@gem_ccs@suspend-resume.html
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-11/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: [INCOMPLETE][254] ([i915#12392] / [i915#7297]) -> [PASS][255]
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-5/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-11/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_ctx_engines@invalid-engines:
- shard-glk: [FAIL][256] ([i915#12027] / [i915#12031]) -> [PASS][257]
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-glk2/igt@gem_ctx_engines@invalid-engines.html
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-glk1/igt@gem_ctx_engines@invalid-engines.html
* igt@gem_exec_balancer@nop:
- shard-mtlp: [DMESG-WARN][258] ([i915#12412]) -> [PASS][259]
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-mtlp-8/igt@gem_exec_balancer@nop.html
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-mtlp-2/igt@gem_exec_balancer@nop.html
* igt@gem_exec_fair@basic-deadline:
- shard-tglu: [FAIL][260] ([i915#2846]) -> [PASS][261]
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-tglu-6/igt@gem_exec_fair@basic-deadline.html
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-tglu-6/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-pace:
- shard-glk: [FAIL][262] ([i915#2842]) -> [PASS][263] +1 other test pass
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-glk3/igt@gem_exec_fair@basic-pace.html
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-glk2/igt@gem_exec_fair@basic-pace.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-rkl: [FAIL][264] ([i915#2842]) -> [PASS][265] +1 other test pass
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-rkl-4/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-rkl-3/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_suspend@basic-s0:
- shard-dg2: [INCOMPLETE][266] ([i915#11441]) -> [PASS][267] +1 other test pass
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-6/igt@gem_exec_suspend@basic-s0.html
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-8/igt@gem_exec_suspend@basic-s0.html
* igt@gem_exec_suspend@basic-s4-devices:
- shard-dg2: [ABORT][268] ([i915#7975] / [i915#8213]) -> [PASS][269] +1 other test pass
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@gem_exec_suspend@basic-s4-devices.html
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-11/igt@gem_exec_suspend@basic-s4-devices.html
- shard-dg1: [ABORT][270] ([i915#7975] / [i915#8213]) -> [PASS][271] +1 other test pass
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg1-14/igt@gem_exec_suspend@basic-s4-devices.html
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg1-18/igt@gem_exec_suspend@basic-s4-devices.html
- shard-tglu: [ABORT][272] ([i915#7975] / [i915#8213]) -> [PASS][273] +1 other test pass
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices.html
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-tglu-7/igt@gem_exec_suspend@basic-s4-devices.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg2: [ABORT][274] ([i915#9820]) -> [PASS][275]
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-5/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg1: [ABORT][276] ([i915#9820]) -> [PASS][277]
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg1-15/igt@i915_module_load@reload-with-fault-injection.html
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg1-12/igt@i915_module_load@reload-with-fault-injection.html
- shard-tglu: [ABORT][278] ([i915#10887] / [i915#9820]) -> [PASS][279]
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-tglu-2/igt@i915_module_load@reload-with-fault-injection.html
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-tglu-7/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: [ABORT][280] ([i915#10131] / [i915#10887] / [i915#9697]) -> [PASS][281]
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-mtlp-6/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_suspend@fence-restore-untiled:
- shard-snb: [DMESG-WARN][282] -> [PASS][283]
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-snb2/igt@i915_suspend@fence-restore-untiled.html
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-snb2/igt@i915_suspend@fence-restore-untiled.html
* igt@kms_color@deep-color:
- shard-dg2: [SKIP][284] ([i915#3555]) -> [PASS][285] +1 other test pass
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-4/igt@kms_color@deep-color.html
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-10/igt@kms_color@deep-color.html
* igt@kms_flip@2x-plain-flip-fb-recreate@bc-hdmi-a1-hdmi-a2:
- shard-glk: [FAIL][286] ([i915#2122]) -> [PASS][287] +1 other test pass
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-glk8/igt@kms_flip@2x-plain-flip-fb-recreate@bc-hdmi-a1-hdmi-a2.html
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-glk9/igt@kms_flip@2x-plain-flip-fb-recreate@bc-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible@bc-hdmi-a1-hdmi-a2:
- shard-glk: ([FAIL][288], [PASS][289]) ([i915#2122]) -> [PASS][290] +1 other test pass
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-glk4/igt@kms_flip@2x-plain-flip-ts-check-interruptible@bc-hdmi-a1-hdmi-a2.html
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-glk5/igt@kms_flip@2x-plain-flip-ts-check-interruptible@bc-hdmi-a1-hdmi-a2.html
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-glk6/igt@kms_flip@2x-plain-flip-ts-check-interruptible@bc-hdmi-a1-hdmi-a2.html
* igt@kms_flip@blocking-wf_vblank@c-hdmi-a1:
- shard-tglu: [FAIL][291] ([i915#2122]) -> [PASS][292] +3 other tests pass
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-tglu-3/igt@kms_flip@blocking-wf_vblank@c-hdmi-a1.html
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-tglu-6/igt@kms_flip@blocking-wf_vblank@c-hdmi-a1.html
* igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a1:
- shard-snb: [INCOMPLETE][293] -> [PASS][294]
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-snb5/igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a1.html
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-snb7/igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a1.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite:
- shard-dg2: [SKIP][295] ([i915#5354]) -> [PASS][296] +6 other tests pass
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-snb: [SKIP][297] -> [PASS][298]
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-cpu.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb:
- shard-dg2: [SKIP][299] ([i915#7294]) -> [PASS][300]
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_plane_alpha_blend@alpha-transparent-fb.html
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-3/igt@kms_plane_alpha_blend@alpha-transparent-fb.html
* igt@kms_plane_scaling@invalid-parameters:
- shard-dg2: [SKIP][301] ([i915#8152] / [i915#9423]) -> [PASS][302]
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_plane_scaling@invalid-parameters.html
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-8/igt@kms_plane_scaling@invalid-parameters.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b:
- shard-dg2: [SKIP][303] ([i915#12247]) -> [PASS][304] +8 other tests pass
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b.html
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-3/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation:
- shard-dg2: [SKIP][305] ([i915#12247] / [i915#8152] / [i915#9423]) -> [PASS][306] +1 other test pass
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-3/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5:
- shard-dg2: [SKIP][307] ([i915#12247] / [i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) -> [PASS][308]
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d:
- shard-dg2: [SKIP][309] ([i915#12247] / [i915#8152]) -> [PASS][310] +2 other tests pass
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d.html
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-rkl: [SKIP][311] ([i915#9519]) -> [PASS][312] +2 other tests pass
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-rkl-1/igt@kms_pm_rpm@dpms-lpsp.html
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-rkl-4/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg2: [SKIP][313] ([i915#9519]) -> [PASS][314] +1 other test pass
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-7/igt@kms_pm_rpm@modeset-lpsp-stress.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_vblank@ts-continuation-dpms-suspend:
- shard-dg2: [SKIP][315] ([i915#9197]) -> [PASS][316] +21 other tests pass
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_vblank@ts-continuation-dpms-suspend.html
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-3/igt@kms_vblank@ts-continuation-dpms-suspend.html
* igt@perf_pmu@busy-double-start@bcs0:
- shard-mtlp: [FAIL][317] ([i915#4349]) -> [PASS][318]
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-mtlp-4/igt@perf_pmu@busy-double-start@bcs0.html
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-mtlp-2/igt@perf_pmu@busy-double-start@bcs0.html
* igt@perf_pmu@enable-race:
- shard-glk: ([DMESG-WARN][319], [PASS][320]) ([i915#118]) -> [PASS][321] +1 other test pass
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-glk7/igt@perf_pmu@enable-race.html
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-glk2/igt@perf_pmu@enable-race.html
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-glk1/igt@perf_pmu@enable-race.html
#### Warnings ####
* igt@gem_ctx_engines@invalid-engines:
- shard-rkl: [FAIL][322] ([i915#12027] / [i915#12031]) -> [FAIL][323] ([i915#12031] / [i915#12065])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-rkl-2/igt@gem_ctx_engines@invalid-engines.html
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-rkl-7/igt@gem_ctx_engines@invalid-engines.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: ([FAIL][324], [PASS][325]) ([i915#2842]) -> [FAIL][326] ([i915#2842]) +1 other test fail
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-dg2: [SKIP][327] -> [SKIP][328] ([i915#9197]) +2 other tests skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-4/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-2/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-dg2: [SKIP][329] ([i915#9197]) -> [SKIP][330] +2 other tests skip
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_big_fb@linear-16bpp-rotate-90.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-8/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-dg2: [SKIP][331] ([i915#4538] / [i915#5190]) -> [SKIP][332] ([i915#5190] / [i915#9197]) +4 other tests skip
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-dg2: [SKIP][333] ([i915#5190] / [i915#9197]) -> [SKIP][334] ([i915#4538] / [i915#5190]) +4 other tests skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc:
- shard-dg2: [SKIP][335] ([i915#9197]) -> [SKIP][336] ([i915#10307] / [i915#6095]) +5 other tests skip
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-3/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs:
- shard-dg2: [SKIP][337] ([i915#10307] / [i915#6095]) -> [SKIP][338] ([i915#9197]) +7 other tests skip
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-8/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-2/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-dg2: [SKIP][339] ([i915#12313]) -> [SKIP][340] ([i915#9197])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_cdclk@plane-scaling:
- shard-dg2: [SKIP][341] ([i915#9197]) -> [SKIP][342] ([i915#4087])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_cdclk@plane-scaling.html
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-3/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm:
- shard-dg1: [SKIP][343] ([i915#4423] / [i915#7828]) -> [SKIP][344] ([i915#7828])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg1-14/igt@kms_chamelium_hpd@hdmi-hpd-storm.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg1-19/igt@kms_chamelium_hpd@hdmi-hpd-storm.html
* igt@kms_content_protection@atomic:
- shard-dg2: [SKIP][345] ([i915#9197]) -> [SKIP][346] ([i915#7118] / [i915#9424])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_content_protection@atomic.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-8/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@content-type-change:
- shard-dg2: [SKIP][347] ([i915#9424]) -> [SKIP][348] ([i915#9197]) +1 other test skip
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-3/igt@kms_content_protection@content-type-change.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-2/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2: [SKIP][349] ([i915#9197]) -> [SKIP][350] ([i915#9424])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_content_protection@lic-type-0.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-3/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@mei-interface:
- shard-glk: [SKIP][351] -> [INCOMPLETE][352] ([i915#2295] / [i915#9878])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-glk8/igt@kms_content_protection@mei-interface.html
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-glk9/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@srm:
- shard-dg2: [SKIP][353] ([i915#7118]) -> [SKIP][354] ([i915#9197])
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-4/igt@kms_content_protection@srm.html
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-2/igt@kms_content_protection@srm.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-dg2: [SKIP][355] ([i915#9197]) -> [SKIP][356] ([i915#3555]) +3 other tests skip
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_cursor_crc@cursor-sliding-32x10.html
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-8/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-dg2: [SKIP][357] ([i915#9197]) -> [SKIP][358] ([i915#5354]) +1 other test skip
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-8/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
- shard-dg2: [SKIP][359] ([i915#5354]) -> [SKIP][360] ([i915#9197]) +1 other test skip
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-dg2: [SKIP][361] ([i915#9197]) -> [SKIP][362] ([i915#9067])
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-8/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-dg2: [SKIP][363] ([i915#9197]) -> [SKIP][364] ([i915#9833])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-3/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg2: [SKIP][365] ([i915#8812]) -> [SKIP][366] ([i915#9197])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-4/igt@kms_draw_crc@draw-method-mmap-wc.html
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-2/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-basic:
- shard-dg2: [SKIP][367] ([i915#3555] / [i915#3840]) -> [SKIP][368] ([i915#9197])
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-8/igt@kms_dsc@dsc-basic.html
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-2/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-dg2: [SKIP][369] ([i915#9197]) -> [SKIP][370] ([i915#3840])
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-3/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg2: [SKIP][371] ([i915#9197]) -> [SKIP][372] ([i915#3555] / [i915#3840])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_dsc@dsc-with-bpc-formats.html
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-8/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-dg2: [SKIP][373] ([i915#3840] / [i915#9053]) -> [SKIP][374] ([i915#9197])
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-3/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-2/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-hdmi-a1-hdmi-a2:
- shard-glk: ([PASS][375], [FAIL][376]) ([i915#2122]) -> [FAIL][377] ([i915#2122]) +1 other test fail
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-glk5/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-hdmi-a1-hdmi-a2.html
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-glk4/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-hdmi-a1-hdmi-a2.html
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-glk6/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@plain-flip-ts-check-interruptible:
- shard-snb: [INCOMPLETE][378] -> [FAIL][379] ([i915#2122])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-snb5/igt@kms_flip@plain-flip-ts-check-interruptible.html
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-snb7/igt@kms_flip@plain-flip-ts-check-interruptible.html
* igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a1:
- shard-tglu: [FAIL][380] ([i915#2122]) -> [FAIL][381] ([i915#12431])
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-tglu-6/igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a1.html
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-tglu-4/igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a1.html
* igt@kms_flip@plain-flip-ts-check-interruptible@a-vga1:
- shard-snb: [FAIL][382] ([i915#10826]) -> [FAIL][383] ([i915#2122])
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-snb5/igt@kms_flip@plain-flip-ts-check-interruptible@a-vga1.html
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-snb7/igt@kms_flip@plain-flip-ts-check-interruptible@a-vga1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-dg2: [SKIP][384] ([i915#3555]) -> [SKIP][385] ([i915#2672] / [i915#3555])
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
- shard-dg2: [SKIP][386] ([i915#2672] / [i915#3555] / [i915#5190]) -> [SKIP][387] ([i915#3555] / [i915#5190])
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
- shard-dg2: [SKIP][388] ([i915#3555] / [i915#5190]) -> [SKIP][389] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt:
- shard-dg2: [SKIP][390] ([i915#5354]) -> [SKIP][391] ([i915#8708]) +4 other tests skip
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt.html
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt:
- shard-dg2: [SKIP][392] ([i915#8708]) -> [SKIP][393] ([i915#5354]) +13 other tests skip
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite:
- shard-dg2: [SKIP][394] ([i915#10433] / [i915#3458]) -> [SKIP][395] ([i915#3458])
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: [SKIP][396] ([i915#3458]) -> [SKIP][397] ([i915#10433] / [i915#3458]) +1 other test skip
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt:
- shard-dg2: [SKIP][398] ([i915#3458]) -> [SKIP][399] ([i915#5354]) +8 other tests skip
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-dg2: [SKIP][400] ([i915#10433] / [i915#3458]) -> [SKIP][401] ([i915#5354])
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2: [SKIP][402] ([i915#5354]) -> [SKIP][403] ([i915#10055])
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: [SKIP][404] ([i915#5354]) -> [SKIP][405] ([i915#3458]) +6 other tests skip
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-dg2: [SKIP][406] ([i915#9197]) -> [SKIP][407] ([i915#3555] / [i915#8228])
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_hdr@bpc-switch-dpms.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-8/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2: [SKIP][408] ([i915#3555] / [i915#8228]) -> [SKIP][409] ([i915#9197])
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-3/igt@kms_hdr@static-toggle-suspend.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-2/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][410] ([i915#4816]) -> [SKIP][411] ([i915#4070] / [i915#4816])
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-rkl-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane_multiple@tiling-yf:
- shard-dg2: [SKIP][412] ([i915#3555] / [i915#8806]) -> [SKIP][413] ([i915#9197])
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-8/igt@kms_plane_multiple@tiling-yf.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-2/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2: [SKIP][414] ([i915#6953] / [i915#9423]) -> [SKIP][415] ([i915#6953] / [i915#8152] / [i915#9423])
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-4/igt@kms_plane_scaling@intel-max-src-size.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-2/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
- shard-dg2: [SKIP][416] ([i915#12247] / [i915#9423]) -> [SKIP][417] ([i915#12247] / [i915#8152] / [i915#9423])
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d:
- shard-dg2: [SKIP][418] ([i915#12247]) -> [SKIP][419] ([i915#12247] / [i915#8152])
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2: [SKIP][420] ([i915#11131] / [i915#4235]) -> [SKIP][421] ([i915#9197]) +1 other test skip
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-3/igt@kms_rotation_crc@primary-rotation-270.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-2/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-dg2: [SKIP][422] ([i915#9197]) -> [SKIP][423] ([i915#11131] / [i915#4235])
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_rotation_crc@primary-rotation-90.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-3/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-dg2: [SKIP][424] ([i915#5190]) -> [SKIP][425] ([i915#5190] / [i915#9197]) +1 other test skip
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2: [SKIP][426] ([i915#5190] / [i915#9197]) -> [SKIP][427] ([i915#11131] / [i915#4235] / [i915#5190])
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-dg2: [SKIP][428] ([i915#11131] / [i915#4235] / [i915#5190]) -> [SKIP][429] ([i915#5190] / [i915#9197])
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-dg2: [SKIP][430] ([i915#3555]) -> [SKIP][431] ([i915#9197]) +3 other tests skip
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-4/igt@kms_scaling_modes@scaling-mode-none.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-2/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-dg2: [SKIP][432] ([i915#9906]) -> [SKIP][433] ([i915#9197])
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-4/igt@kms_vrr@seamless-rr-switch-vrr.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/shard-dg2-2/igt@kms_vrr@seamless-rr-switch-vrr.html
[i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
[i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826
[i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887
[i915#11131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11131
[i915#11441]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11441
[i915#11453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11616]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11616
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118
[i915#11859]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11859
[i915#12027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12027
[i915#12031]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12031
[i915#12065]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12065
[i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177
[i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193
[i915#12231]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12231
[i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
[i915#12296]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12296
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12380]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12380
[i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
[i915#12412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12412
[i915#12431]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12431
[i915#12459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12459
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849
[i915#2122]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122
[i915#2295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2295
[i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346
[i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842
[i915#2846]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2846
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freede
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v1/index.html
[-- Attachment #2: Type: text/html, Size: 113603 bytes --]
^ permalink raw reply [flat|nested] 29+ messages in thread* ✓ Fi.CI.BAT: success for drm/xe/hdcp: Add check to remove hdcp2 compatibilty (rev2)
2024-10-22 5:56 [PATCH] drm/xe/hdcp: Add check to remove hdcp2 compatibilty Suraj Kandpal
` (7 preceding siblings ...)
2024-10-22 8:18 ` ✗ Fi.CI.IGT: failure for drm/xe/hdcp: Add check to remove hdcp2 compatibilty Patchwork
@ 2024-10-22 9:00 ` Patchwork
2024-10-22 10:36 ` ✗ Fi.CI.IGT: failure " Patchwork
` (3 subsequent siblings)
12 siblings, 0 replies; 29+ messages in thread
From: Patchwork @ 2024-10-22 9:00 UTC (permalink / raw)
To: Kandpal, Suraj; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 11123 bytes --]
== Series Details ==
Series: drm/xe/hdcp: Add check to remove hdcp2 compatibilty (rev2)
URL : https://patchwork.freedesktop.org/series/140291/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_15574 -> Patchwork_140291v2
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/index.html
Participating hosts (44 -> 44)
------------------------------
Additional (1): bat-arls-2
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in Patchwork_140291v2 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-arls-2: NOTRUN -> [SKIP][1] ([i915#9318])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/bat-arls-2/igt@debugfs_test@basic-hwmon.html
* igt@gem_lmem_swapping@verify-random:
- bat-arls-2: NOTRUN -> [SKIP][2] ([i915#10213] / [i915#11671]) +3 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/bat-arls-2/igt@gem_lmem_swapping@verify-random.html
* igt@gem_mmap@basic:
- bat-arls-2: NOTRUN -> [SKIP][3] ([i915#11343] / [i915#4083])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/bat-arls-2/igt@gem_mmap@basic.html
* igt@gem_mmap_gtt@basic:
- bat-arls-2: NOTRUN -> [SKIP][4] ([i915#10196] / [i915#4077]) +2 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/bat-arls-2/igt@gem_mmap_gtt@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-arls-2: NOTRUN -> [SKIP][5] ([i915#10197] / [i915#10211] / [i915#4079])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/bat-arls-2/igt@gem_render_tiled_blits@basic.html
* igt@gem_tiled_pread_basic:
- bat-arls-2: NOTRUN -> [SKIP][6] ([i915#10206] / [i915#4079])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/bat-arls-2/igt@gem_tiled_pread_basic.html
* igt@i915_pm_rps@basic-api:
- bat-arls-2: NOTRUN -> [SKIP][7] ([i915#10209] / [i915#11681])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/bat-arls-2/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live:
- bat-arlh-3: [PASS][8] -> [DMESG-WARN][9] ([i915#10341] / [i915#12133])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/bat-arlh-3/igt@i915_selftest@live.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/bat-arlh-3/igt@i915_selftest@live.html
* igt@i915_selftest@live@gt_mocs:
- bat-arlh-3: [PASS][10] -> [DMESG-WARN][11] ([i915#11349] / [i915#12133])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/bat-arlh-3/igt@i915_selftest@live@gt_mocs.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/bat-arlh-3/igt@i915_selftest@live@gt_mocs.html
* igt@i915_selftest@live@late_gt_pm:
- fi-cfl-8109u: [PASS][12] -> [DMESG-WARN][13] ([i915#11621]) +132 other tests dmesg-warn
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html
* igt@i915_selftest@live@workarounds:
- bat-mtlp-6: [PASS][14] -> [ABORT][15] ([i915#12216]) +1 other test abort
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-arls-2: NOTRUN -> [SKIP][16] ([i915#10200] / [i915#12203])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/bat-arls-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- bat-arls-2: NOTRUN -> [SKIP][17] ([i915#10200]) +8 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/bat-arls-2/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-arls-2: NOTRUN -> [SKIP][18] ([i915#10202] / [i915#11346]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/bat-arls-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-arls-2: NOTRUN -> [SKIP][19] ([i915#11346] / [i915#9886])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/bat-arls-2/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-arls-2: NOTRUN -> [SKIP][20] ([i915#10207] / [i915#11346])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/bat-arls-2/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_psr@psr-primary-mmap-gtt:
- bat-arls-2: NOTRUN -> [SKIP][21] ([i915#11346] / [i915#4077] / [i915#9688])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/bat-arls-2/igt@kms_psr@psr-primary-mmap-gtt.html
* igt@kms_psr@psr-primary-mmap-gtt@edp-1:
- bat-arls-2: NOTRUN -> [SKIP][22] ([i915#10196] / [i915#4077] / [i915#9688])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/bat-arls-2/igt@kms_psr@psr-primary-mmap-gtt@edp-1.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-arls-2: NOTRUN -> [SKIP][23] ([i915#10208] / [i915#8809])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/bat-arls-2/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-mmap:
- bat-arls-2: NOTRUN -> [SKIP][24] ([i915#10196] / [i915#3708] / [i915#4077]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/bat-arls-2/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-fence-read:
- bat-arls-2: NOTRUN -> [SKIP][25] ([i915#10212] / [i915#3708])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/bat-arls-2/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-read:
- bat-arls-2: NOTRUN -> [SKIP][26] ([i915#10214] / [i915#3708])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/bat-arls-2/igt@prime_vgem@basic-read.html
* igt@prime_vgem@basic-write:
- bat-arls-2: NOTRUN -> [SKIP][27] ([i915#10216] / [i915#3708])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/bat-arls-2/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@i915_selftest@live:
- bat-mtlp-8: [ABORT][28] ([i915#12216]) -> [PASS][29] +1 other test pass
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/bat-mtlp-8/igt@i915_selftest@live.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/bat-mtlp-8/igt@i915_selftest@live.html
- bat-dg2-8: [ABORT][30] ([i915#12133]) -> [PASS][31]
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/bat-dg2-8/igt@i915_selftest@live.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/bat-dg2-8/igt@i915_selftest@live.html
* igt@i915_selftest@live@guc_multi_lrc:
- bat-dg2-8: [ABORT][32] ([i915#12305]) -> [PASS][33]
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/bat-dg2-8/igt@i915_selftest@live@guc_multi_lrc.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/bat-dg2-8/igt@i915_selftest@live@guc_multi_lrc.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- bat-dg2-13: [DMESG-WARN][34] ([i915#12253]) -> [PASS][35]
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html
[i915#10196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10196
[i915#10197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10197
[i915#10200]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10200
[i915#10202]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10202
[i915#10206]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10206
[i915#10207]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10207
[i915#10208]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10208
[i915#10209]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10209
[i915#10211]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10211
[i915#10212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10212
[i915#10213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10213
[i915#10214]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10214
[i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216
[i915#10341]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10341
[i915#11343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11343
[i915#11346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11346
[i915#11349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11349
[i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621
[i915#11671]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11671
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133
[i915#12203]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12203
[i915#12216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12216
[i915#12253]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12253
[i915#12305]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12305
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886
Build changes
-------------
* Linux: CI_DRM_15574 -> Patchwork_140291v2
CI-20190529: 20190529
CI_DRM_15574: aa0898115bcff3eda6d021cc66eb8a1c3b264c56 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8080: 20fcbc59241a16c84d12f4f6ba390fb46fd65a36 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_140291v2: aa0898115bcff3eda6d021cc66eb8a1c3b264c56 @ git://anongit.freedesktop.org/gfx-ci/linux
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/index.html
[-- Attachment #2: Type: text/html, Size: 13596 bytes --]
^ permalink raw reply [flat|nested] 29+ messages in thread* ✗ Fi.CI.IGT: failure for drm/xe/hdcp: Add check to remove hdcp2 compatibilty (rev2)
2024-10-22 5:56 [PATCH] drm/xe/hdcp: Add check to remove hdcp2 compatibilty Suraj Kandpal
` (8 preceding siblings ...)
2024-10-22 9:00 ` ✓ Fi.CI.BAT: success for drm/xe/hdcp: Add check to remove hdcp2 compatibilty (rev2) Patchwork
@ 2024-10-22 10:36 ` Patchwork
2024-10-22 22:04 ` [PATCH] drm/xe/hdcp: Add check to remove hdcp2 compatibilty kernel test robot
` (2 subsequent siblings)
12 siblings, 0 replies; 29+ messages in thread
From: Patchwork @ 2024-10-22 10:36 UTC (permalink / raw)
To: Kandpal, Suraj; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 82472 bytes --]
== Series Details ==
Series: drm/xe/hdcp: Add check to remove hdcp2 compatibilty (rev2)
URL : https://patchwork.freedesktop.org/series/140291/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15574_full -> Patchwork_140291v2_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_140291v2_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_140291v2_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (8 -> 7)
------------------------------
Missing (1): shard-glk-0
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_140291v2_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b:
- shard-dg2: NOTRUN -> [INCOMPLETE][1] +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-1/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html
Known issues
------------
Here are the changes found in Patchwork_140291v2_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@drm_fdinfo@busy-check-all@vecs1:
- shard-dg2: NOTRUN -> [SKIP][2] ([i915#8414]) +7 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-5/igt@drm_fdinfo@busy-check-all@vecs1.html
* igt@fbdev@info:
- shard-dg2: [PASS][3] -> [SKIP][4] ([i915#1849] / [i915#2582])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-11/igt@fbdev@info.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-2/igt@fbdev@info.html
* igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: NOTRUN -> [INCOMPLETE][5] ([i915#12392] / [i915#7297])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-3/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-mtlp: NOTRUN -> [SKIP][6] ([i915#6335])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-mtlp-1/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_sseu@engines:
- shard-dg1: NOTRUN -> [SKIP][7] ([i915#280])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg1-13/igt@gem_ctx_sseu@engines.html
- shard-tglu: NOTRUN -> [SKIP][8] ([i915#280])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-tglu-3/igt@gem_ctx_sseu@engines.html
* igt@gem_exec_fair@basic-none-solo:
- shard-tglu: NOTRUN -> [FAIL][9] ([i915#2842]) +1 other test fail
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-tglu-3/igt@gem_exec_fair@basic-none-solo.html
- shard-dg1: NOTRUN -> [SKIP][10] ([i915#3539] / [i915#4852])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg1-13/igt@gem_exec_fair@basic-none-solo.html
* igt@gem_exec_fair@basic-pace-share:
- shard-mtlp: NOTRUN -> [SKIP][11] ([i915#4473] / [i915#4771])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-mtlp-1/igt@gem_exec_fair@basic-pace-share.html
* igt@gem_exec_fair@basic-pace@vcs0:
- shard-rkl: [PASS][12] -> [FAIL][13] ([i915#2842])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-rkl-4/igt@gem_exec_fair@basic-pace@vcs0.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-rkl-7/igt@gem_exec_fair@basic-pace@vcs0.html
* igt@gem_exec_flush@basic-uc-prw-default:
- shard-dg1: NOTRUN -> [SKIP][14] ([i915#3539])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg1-13/igt@gem_exec_flush@basic-uc-prw-default.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-dg1: NOTRUN -> [SKIP][15] ([i915#3281]) +3 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg1-13/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_exec_reloc@basic-cpu-noreloc:
- shard-dg2: NOTRUN -> [SKIP][16] ([i915#3281]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-5/igt@gem_exec_reloc@basic-cpu-noreloc.html
* igt@gem_exec_reloc@basic-write-read:
- shard-mtlp: NOTRUN -> [SKIP][17] ([i915#3281])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-mtlp-1/igt@gem_exec_reloc@basic-write-read.html
* igt@gem_exec_schedule@semaphore-power:
- shard-dg1: NOTRUN -> [SKIP][18] ([i915#4812]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg1-13/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_fenced_exec_thrash@no-spare-fences:
- shard-dg1: NOTRUN -> [SKIP][19] ([i915#4860])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg1-18/igt@gem_fenced_exec_thrash@no-spare-fences.html
- shard-dg2: NOTRUN -> [SKIP][20] ([i915#4860])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-11/igt@gem_fenced_exec_thrash@no-spare-fences.html
* igt@gem_lmem_swapping@smem-oom:
- shard-tglu: NOTRUN -> [SKIP][21] ([i915#4613])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-tglu-3/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_mmap@bad-object:
- shard-dg1: NOTRUN -> [SKIP][22] ([i915#4083]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg1-19/igt@gem_mmap@bad-object.html
* igt@gem_mmap_gtt@basic-small-copy:
- shard-mtlp: NOTRUN -> [SKIP][23] ([i915#4077])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-mtlp-1/igt@gem_mmap_gtt@basic-small-copy.html
* igt@gem_mmap_wc@write-wc-read-gtt:
- shard-dg2: NOTRUN -> [SKIP][24] ([i915#4083])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-5/igt@gem_mmap_wc@write-wc-read-gtt.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-dg1: NOTRUN -> [SKIP][25] ([i915#3282]) +2 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg1-19/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-dg1: NOTRUN -> [SKIP][26] ([i915#4270])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg1-13/igt@gem_pxp@regular-baseline-src-copy-readible.html
- shard-tglu: NOTRUN -> [SKIP][27] ([i915#4270])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-tglu-3/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][28] ([i915#5190] / [i915#8428]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-5/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html
* igt@gem_softpin@evict-snoop:
- shard-dg2: NOTRUN -> [SKIP][29] ([i915#4885])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-5/igt@gem_softpin@evict-snoop.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg1: NOTRUN -> [SKIP][30] ([i915#4885])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg1-13/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_tiled_swapping@non-threaded:
- shard-dg2: NOTRUN -> [SKIP][31] ([i915#4077])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-5/igt@gem_tiled_swapping@non-threaded.html
* igt@gen9_exec_parse@basic-rejected:
- shard-tglu: NOTRUN -> [SKIP][32] ([i915#2527] / [i915#2856])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-tglu-3/igt@gen9_exec_parse@basic-rejected.html
- shard-dg1: NOTRUN -> [SKIP][33] ([i915#2527])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg1-13/igt@gen9_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@bb-secure:
- shard-dg2: NOTRUN -> [SKIP][34] ([i915#2856])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-11/igt@gen9_exec_parse@bb-secure.html
* igt@gen9_exec_parse@secure-batches:
- shard-mtlp: NOTRUN -> [SKIP][35] ([i915#2856])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-mtlp-1/igt@gen9_exec_parse@secure-batches.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-glk: ([PASS][36], [PASS][37]) -> [ABORT][38] ([i915#9820])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-glk9/igt@i915_module_load@reload-with-fault-injection.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-glk8/igt@i915_module_load@reload-with-fault-injection.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-glk8/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-tglu: NOTRUN -> [SKIP][39] ([i915#8399])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-tglu-3/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_rps@reset:
- shard-dg2: NOTRUN -> [FAIL][40] ([i915#12459])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-10/igt@i915_pm_rps@reset.html
- shard-dg1: NOTRUN -> [FAIL][41] ([i915#12459])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg1-17/igt@i915_pm_rps@reset.html
* igt@i915_pm_rps@thresholds-idle:
- shard-mtlp: NOTRUN -> [SKIP][42] ([i915#11681])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-mtlp-1/igt@i915_pm_rps@thresholds-idle.html
* igt@i915_pm_rps@thresholds-park:
- shard-dg1: NOTRUN -> [SKIP][43] ([i915#11681])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg1-13/igt@i915_pm_rps@thresholds-park.html
* igt@i915_query@query-topology-matches-eu-total:
- shard-glk: NOTRUN -> [INCOMPLETE][44] ([i915#2295])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-glk2/igt@i915_query@query-topology-matches-eu-total.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-dg1: NOTRUN -> [SKIP][45] ([i915#9531])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg1-19/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@modeset-transition:
- shard-glk: ([PASS][46], [PASS][47]) -> [FAIL][48] ([i915#12238])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-glk2/igt@kms_atomic_transition@modeset-transition.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-glk6/igt@kms_atomic_transition@modeset-transition.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-glk8/igt@kms_atomic_transition@modeset-transition.html
* igt@kms_atomic_transition@modeset-transition@2x-outputs:
- shard-glk: ([PASS][49], [PASS][50]) -> [FAIL][51] ([i915#11859])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-glk6/igt@kms_atomic_transition@modeset-transition@2x-outputs.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-glk2/igt@kms_atomic_transition@modeset-transition@2x-outputs.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-glk8/igt@kms_atomic_transition@modeset-transition@2x-outputs.html
* igt@kms_atomic_transition@plane-all-transition-fencing:
- shard-dg2: [PASS][52] -> [SKIP][53] ([i915#9197]) +20 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-11/igt@kms_atomic_transition@plane-all-transition-fencing.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-2/igt@kms_atomic_transition@plane-all-transition-fencing.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][54] ([i915#4538] / [i915#5286])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg1-13/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-dg1: NOTRUN -> [SKIP][55] ([i915#5286])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg1-13/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
- shard-tglu: NOTRUN -> [SKIP][56] ([i915#5286]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-tglu-3/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][57] ([i915#3638]) +2 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg1-19/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
- shard-mtlp: NOTRUN -> [SKIP][58] +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-mtlp-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#4538] / [i915#5190]) +4 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][60] ([i915#6095]) +121 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg1-16/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][61] ([i915#6095]) +14 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-mtlp-1/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][62] ([i915#6095]) +43 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-rkl-7/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-dg1: NOTRUN -> [SKIP][63] ([i915#12313])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg1-13/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
- shard-tglu: NOTRUN -> [SKIP][64] ([i915#12313])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-tglu-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#10307] / [i915#6095]) +141 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-tglu: NOTRUN -> [SKIP][66] ([i915#6095]) +14 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-tglu-3/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#10307] / [i915#10434] / [i915#6095]) +5 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-4/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg2: NOTRUN -> [SKIP][68] ([i915#11616] / [i915#7213])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-1/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#4087]) +3 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-8/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-dg2: NOTRUN -> [SKIP][70] +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-5/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-dg1: NOTRUN -> [SKIP][71] ([i915#7828]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg1-13/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
- shard-tglu: NOTRUN -> [SKIP][72] ([i915#7828]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-tglu-3/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#7828])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-5/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html
* igt@kms_content_protection@type1:
- shard-mtlp: NOTRUN -> [SKIP][74] ([i915#3555] / [i915#6944] / [i915#9424])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-mtlp-1/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-mtlp: NOTRUN -> [SKIP][75] ([i915#3555] / [i915#8814])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-mtlp-8/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-mtlp: NOTRUN -> [SKIP][76] ([i915#11453] / [i915#3359])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-mtlp-1/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-sliding-32x32:
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#3555])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-11/igt@kms_cursor_crc@cursor-sliding-32x32.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-dg1: NOTRUN -> [SKIP][78] ([i915#4103] / [i915#4213])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg1-13/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
- shard-tglu: NOTRUN -> [SKIP][79] ([i915#4103])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-tglu-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][80] ([i915#3804])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-rkl-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_feature_discovery@display-4x:
- shard-mtlp: NOTRUN -> [SKIP][81] ([i915#1839])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-mtlp-1/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip@2x-flip-vs-rmfb:
- shard-mtlp: NOTRUN -> [SKIP][82] ([i915#3637])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-mtlp-1/igt@kms_flip@2x-flip-vs-rmfb.html
* igt@kms_flip@2x-flip-vs-wf_vblank:
- shard-dg1: NOTRUN -> [SKIP][83] ([i915#9934])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg1-13/igt@kms_flip@2x-flip-vs-wf_vblank.html
- shard-tglu: NOTRUN -> [SKIP][84] ([i915#3637])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-tglu-3/igt@kms_flip@2x-flip-vs-wf_vblank.html
* igt@kms_flip@2x-plain-flip-fb-recreate@ab-hdmi-a1-hdmi-a2:
- shard-glk: [PASS][85] -> [FAIL][86] ([i915#2122])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-glk8/igt@kms_flip@2x-plain-flip-fb-recreate@ab-hdmi-a1-hdmi-a2.html
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-glk3/igt@kms_flip@2x-plain-flip-fb-recreate@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1:
- shard-snb: [PASS][87] -> [FAIL][88] ([i915#2122]) +3 other tests fail
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-snb4/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1.html
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-snb1/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1.html
* igt@kms_flip@blocking-wf_vblank:
- shard-mtlp: [PASS][89] -> [FAIL][90] ([i915#2122]) +1 other test fail
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-mtlp-4/igt@kms_flip@blocking-wf_vblank.html
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-mtlp-1/igt@kms_flip@blocking-wf_vblank.html
* igt@kms_flip@blocking-wf_vblank@b-hdmi-a2:
- shard-rkl: [PASS][91] -> [FAIL][92] ([i915#12457])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-rkl-1/igt@kms_flip@blocking-wf_vblank@b-hdmi-a2.html
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-rkl-3/igt@kms_flip@blocking-wf_vblank@b-hdmi-a2.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
- shard-dg1: NOTRUN -> [SKIP][93] ([i915#2672] / [i915#3555])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
- shard-tglu: NOTRUN -> [SKIP][94] ([i915#2672] / [i915#3555])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-tglu-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][95] ([i915#2587] / [i915#2672])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-tglu-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
- shard-dg1: NOTRUN -> [SKIP][96] ([i915#2587] / [i915#2672])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][97] ([i915#2672]) +3 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-dg2: NOTRUN -> [SKIP][98] ([i915#2672] / [i915#3555] / [i915#5190])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling:
- shard-dg2: [PASS][99] -> [SKIP][100] ([i915#3555]) +4 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][101] ([i915#8708]) +4 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite:
- shard-dg1: [PASS][102] -> [DMESG-WARN][103] ([i915#4423]) +1 other test dmesg-warn
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][104] ([i915#5354]) +3 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite:
- shard-snb: [PASS][105] -> [SKIP][106]
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite.html
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
- shard-dg1: NOTRUN -> [SKIP][107] +14 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render:
- shard-dg2: [PASS][108] -> [SKIP][109] ([i915#5354]) +9 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-stridechange:
- shard-dg2: [PASS][110] -> [FAIL][111] ([i915#6880])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-stridechange.html
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-stridechange.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][112] ([i915#3458]) +3 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][113] ([i915#8708]) +2 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt:
- shard-mtlp: NOTRUN -> [SKIP][114] ([i915#1825]) +2 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][115] +19 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-tglu-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][116] ([i915#3458]) +4 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-dg1: NOTRUN -> [SKIP][117] ([i915#3555] / [i915#8228])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg1-13/igt@kms_hdr@invalid-metadata-sizes.html
- shard-tglu: NOTRUN -> [SKIP][118] ([i915#3555] / [i915#8228])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-tglu-3/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle-dpms:
- shard-dg2: [PASS][119] -> [SKIP][120] ([i915#3555] / [i915#8228])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-10/igt@kms_hdr@static-toggle-dpms.html
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-3/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-vga-1:
- shard-snb: NOTRUN -> [SKIP][121]
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-snb1/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-vga-1.html
* igt@kms_plane@plane-position-covered:
- shard-dg2: [PASS][122] -> [SKIP][123] ([i915#8825])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-11/igt@kms_plane@plane-position-covered.html
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-2/igt@kms_plane@plane-position-covered.html
* igt@kms_plane_alpha_blend@alpha-7efc:
- shard-dg2: [PASS][124] -> [SKIP][125] ([i915#7294]) +1 other test skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-11/igt@kms_plane_alpha_blend@alpha-7efc.html
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-2/igt@kms_plane_alpha_blend@alpha-7efc.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [FAIL][126] ([i915#8292])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg1-14/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation:
- shard-dg2: [PASS][127] -> [SKIP][128] ([i915#12247] / [i915#8152] / [i915#9423])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-11/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation.html
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b:
- shard-dg2: [PASS][129] -> [SKIP][130] ([i915#12247]) +8 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-11/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d:
- shard-dg2: [PASS][131] -> [SKIP][132] ([i915#12247] / [i915#8152]) +2 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-11/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d.html
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25:
- shard-dg2: [PASS][133] -> [SKIP][134] ([i915#6953] / [i915#8152] / [i915#9423])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75:
- shard-dg2: [PASS][135] -> [SKIP][136] ([i915#12247] / [i915#6953] / [i915#8152] / [i915#9423])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
* igt@kms_pm_backlight@bad-brightness:
- shard-dg1: NOTRUN -> [SKIP][137] ([i915#5354])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg1-13/igt@kms_pm_backlight@bad-brightness.html
- shard-tglu: NOTRUN -> [SKIP][138] ([i915#9812])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-tglu-3/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2: NOTRUN -> [SKIP][139] ([i915#9685])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-11/igt@kms_pm_dc@dc5-psr.html
- shard-dg1: NOTRUN -> [SKIP][140] ([i915#9685])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg1-18/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: [PASS][141] -> [SKIP][142] ([i915#9340])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-4/igt@kms_pm_lpsp@kms-lpsp.html
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-6/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-dg1: NOTRUN -> [SKIP][143] ([i915#8430])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg1-13/igt@kms_pm_lpsp@screens-disabled.html
- shard-tglu: NOTRUN -> [SKIP][144] ([i915#8430])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-tglu-3/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@cursor-dpms:
- shard-dg2: [PASS][145] -> [SKIP][146] ([i915#1849])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-3/igt@kms_pm_rpm@cursor-dpms.html
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-2/igt@kms_pm_rpm@cursor-dpms.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-tglu: NOTRUN -> [SKIP][147] ([i915#9519])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-tglu-3/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: [PASS][148] -> [SKIP][149] ([i915#9519])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
- shard-glk: NOTRUN -> [SKIP][150] ([i915#11520])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-glk7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf:
- shard-dg2: NOTRUN -> [SKIP][151] ([i915#11520]) +1 other test skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#11520]) +3 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg1-13/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
- shard-tglu: NOTRUN -> [SKIP][153] ([i915#11520]) +2 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-tglu-3/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#9683])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-11/igt@kms_psr2_su@page_flip-nv12.html
- shard-dg1: NOTRUN -> [SKIP][155] ([i915#9683])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg1-18/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-pr-cursor-render:
- shard-mtlp: NOTRUN -> [SKIP][156] ([i915#9688]) +1 other test skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-mtlp-1/igt@kms_psr@fbc-pr-cursor-render.html
* igt@kms_psr@fbc-psr-no-drrs:
- shard-dg2: NOTRUN -> [SKIP][157] ([i915#1072] / [i915#9732])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-11/igt@kms_psr@fbc-psr-no-drrs.html
* igt@kms_psr@pr-cursor-plane-onoff:
- shard-dg1: NOTRUN -> [SKIP][158] ([i915#1072] / [i915#9732]) +7 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg1-14/igt@kms_psr@pr-cursor-plane-onoff.html
* igt@kms_psr@pr-no-drrs:
- shard-glk: NOTRUN -> [SKIP][159] +7 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-glk7/igt@kms_psr@pr-no-drrs.html
* igt@kms_psr@psr2-cursor-plane-onoff:
- shard-tglu: NOTRUN -> [SKIP][160] ([i915#9732]) +4 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-tglu-3/igt@kms_psr@psr2-cursor-plane-onoff.html
* igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free:
- shard-dg2: NOTRUN -> [ABORT][161] ([i915#12231]) +1 other test abort
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-5/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html
* igt@kms_vrr@flip-dpms:
- shard-dg1: NOTRUN -> [SKIP][162] ([i915#3555]) +2 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg1-13/igt@kms_vrr@flip-dpms.html
- shard-tglu: NOTRUN -> [SKIP][163] ([i915#3555]) +1 other test skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-tglu-3/igt@kms_vrr@flip-dpms.html
* igt@prime_vgem@fence-read-hang:
- shard-dg1: NOTRUN -> [SKIP][164] ([i915#3708])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg1-13/igt@prime_vgem@fence-read-hang.html
#### Possible fixes ####
* igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: [INCOMPLETE][165] ([i915#12392] / [i915#7297]) -> [PASS][166]
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-5/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-3/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_ctx_engines@invalid-engines:
- shard-glk: [FAIL][167] ([i915#12027] / [i915#12031]) -> [PASS][168]
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-glk2/igt@gem_ctx_engines@invalid-engines.html
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-glk1/igt@gem_ctx_engines@invalid-engines.html
* igt@gem_exec_fair@basic-deadline:
- shard-tglu: [FAIL][169] ([i915#2846]) -> [PASS][170]
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-tglu-6/igt@gem_exec_fair@basic-deadline.html
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-tglu-7/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-pace:
- shard-glk: [FAIL][171] ([i915#2842]) -> [PASS][172] +1 other test pass
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-glk3/igt@gem_exec_fair@basic-pace.html
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-glk8/igt@gem_exec_fair@basic-pace.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-tglu: [FAIL][173] ([i915#2842]) -> [PASS][174] +1 other test pass
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-tglu-7/igt@gem_exec_fair@basic-pace-share@rcs0.html
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-tglu-2/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-rkl: [FAIL][175] ([i915#2842]) -> [PASS][176]
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-rkl-4/igt@gem_exec_fair@basic-pace@rcs0.html
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-rkl-7/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@gem_exec_suspend@basic-s0:
- shard-dg2: [INCOMPLETE][177] ([i915#11441]) -> [PASS][178] +1 other test pass
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-6/igt@gem_exec_suspend@basic-s0.html
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-5/igt@gem_exec_suspend@basic-s0.html
* igt@gem_exec_suspend@basic-s4-devices:
- shard-dg1: [ABORT][179] ([i915#7975] / [i915#8213]) -> [PASS][180] +1 other test pass
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg1-14/igt@gem_exec_suspend@basic-s4-devices.html
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg1-13/igt@gem_exec_suspend@basic-s4-devices.html
- shard-tglu: [ABORT][181] ([i915#7975] / [i915#8213]) -> [PASS][182] +1 other test pass
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices.html
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-tglu-3/igt@gem_exec_suspend@basic-s4-devices.html
* igt@i915_suspend@fence-restore-untiled:
- shard-snb: [DMESG-WARN][183] -> [PASS][184]
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-snb2/igt@i915_suspend@fence-restore-untiled.html
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-snb1/igt@i915_suspend@fence-restore-untiled.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: ([FAIL][185], [FAIL][186]) ([i915#2346]) -> [PASS][187]
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-dg2: [SKIP][188] ([i915#12402]) -> [PASS][189]
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-3/igt@kms_dp_linktrain_fallback@dp-fallback.html
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-10/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_flip@2x-plain-flip-fb-recreate@bc-hdmi-a1-hdmi-a2:
- shard-glk: [FAIL][190] ([i915#2122]) -> [PASS][191] +1 other test pass
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-glk8/igt@kms_flip@2x-plain-flip-fb-recreate@bc-hdmi-a1-hdmi-a2.html
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-glk3/igt@kms_flip@2x-plain-flip-fb-recreate@bc-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible@bc-hdmi-a1-hdmi-a2:
- shard-glk: ([FAIL][192], [PASS][193]) ([i915#2122]) -> [PASS][194] +1 other test pass
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-glk4/igt@kms_flip@2x-plain-flip-ts-check-interruptible@bc-hdmi-a1-hdmi-a2.html
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-glk5/igt@kms_flip@2x-plain-flip-ts-check-interruptible@bc-hdmi-a1-hdmi-a2.html
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-glk6/igt@kms_flip@2x-plain-flip-ts-check-interruptible@bc-hdmi-a1-hdmi-a2.html
* igt@kms_flip@blocking-wf_vblank@c-hdmi-a1:
- shard-tglu: [FAIL][195] ([i915#2122]) -> [PASS][196] +5 other tests pass
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-tglu-3/igt@kms_flip@blocking-wf_vblank@c-hdmi-a1.html
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-tglu-7/igt@kms_flip@blocking-wf_vblank@c-hdmi-a1.html
* igt@kms_flip@plain-flip-ts-check-interruptible:
- shard-tglu: [INCOMPLETE][197] -> [PASS][198] +1 other test pass
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-tglu-6/igt@kms_flip@plain-flip-ts-check-interruptible.html
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-tglu-6/igt@kms_flip@plain-flip-ts-check-interruptible.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-dg2: [SKIP][199] ([i915#3555]) -> [PASS][200]
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite:
- shard-dg2: [SKIP][201] ([i915#5354]) -> [PASS][202] +6 other tests pass
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt:
- shard-snb: [SKIP][203] -> [PASS][204] +1 other test pass
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt.html
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb:
- shard-dg2: [SKIP][205] ([i915#7294]) -> [PASS][206]
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_plane_alpha_blend@alpha-transparent-fb.html
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-8/igt@kms_plane_alpha_blend@alpha-transparent-fb.html
* igt@kms_plane_scaling@invalid-parameters:
- shard-dg2: [SKIP][207] ([i915#8152] / [i915#9423]) -> [PASS][208]
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_plane_scaling@invalid-parameters.html
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-11/igt@kms_plane_scaling@invalid-parameters.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b:
- shard-dg2: [SKIP][209] ([i915#12247]) -> [PASS][210] +8 other tests pass
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b.html
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-8/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation:
- shard-dg2: [SKIP][211] ([i915#12247] / [i915#8152] / [i915#9423]) -> [PASS][212] +1 other test pass
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-8/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5:
- shard-dg2: [SKIP][213] ([i915#12247] / [i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) -> [PASS][214]
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-11/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d:
- shard-dg2: [SKIP][215] ([i915#12247] / [i915#8152]) -> [PASS][216] +2 other tests pass
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d.html
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-11/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-dg2: [SKIP][217] ([i915#9519]) -> [PASS][218] +1 other test pass
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp.html
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-6/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_vblank@ts-continuation-dpms-suspend:
- shard-dg2: [SKIP][219] ([i915#9197]) -> [PASS][220] +21 other tests pass
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_vblank@ts-continuation-dpms-suspend.html
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-8/igt@kms_vblank@ts-continuation-dpms-suspend.html
* igt@kms_vrr@negative-basic:
- shard-mtlp: [FAIL][221] ([i915#10393]) -> [PASS][222] +1 other test pass
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-mtlp-7/igt@kms_vrr@negative-basic.html
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-mtlp-3/igt@kms_vrr@negative-basic.html
* igt@perf_pmu@busy-double-start@bcs0:
- shard-mtlp: [FAIL][223] ([i915#4349]) -> [PASS][224]
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-mtlp-4/igt@perf_pmu@busy-double-start@bcs0.html
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-mtlp-6/igt@perf_pmu@busy-double-start@bcs0.html
* igt@perf_pmu@enable-race:
- shard-glk: ([DMESG-WARN][225], [PASS][226]) ([i915#118]) -> [PASS][227] +1 other test pass
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-glk7/igt@perf_pmu@enable-race.html
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-glk2/igt@perf_pmu@enable-race.html
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-glk1/igt@perf_pmu@enable-race.html
#### Warnings ####
* igt@gem_ctx_engines@invalid-engines:
- shard-rkl: [FAIL][228] ([i915#12027] / [i915#12031]) -> [FAIL][229] ([i915#12031])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-rkl-2/igt@gem_ctx_engines@invalid-engines.html
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-rkl-2/igt@gem_ctx_engines@invalid-engines.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: ([FAIL][230], [PASS][231]) ([i915#2842]) -> [FAIL][232] ([i915#2842]) +1 other test fail
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-glk2/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-tglu: [ABORT][233] ([i915#10887] / [i915#9820]) -> [ABORT][234] ([i915#9820])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-tglu-2/igt@i915_module_load@reload-with-fault-injection.html
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-tglu-3/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: [ABORT][235] ([i915#10131] / [i915#10887] / [i915#9697]) -> [ABORT][236] ([i915#10131] / [i915#10887] / [i915#9820])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-mtlp-2/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-dg2: [SKIP][237] ([i915#9197]) -> [SKIP][238] +2 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_big_fb@linear-16bpp-rotate-90.html
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-11/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-dg2: [SKIP][239] -> [SKIP][240] ([i915#9197])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-3/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-2/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-dg2: [SKIP][241] ([i915#4538] / [i915#5190]) -> [SKIP][242] ([i915#5190] / [i915#9197]) +5 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-dg2: [SKIP][243] ([i915#5190] / [i915#9197]) -> [SKIP][244] ([i915#4538] / [i915#5190]) +4 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc:
- shard-dg2: [SKIP][245] ([i915#10307] / [i915#6095]) -> [SKIP][246] ([i915#9197]) +6 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-11/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc.html
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-2/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc:
- shard-dg2: [SKIP][247] ([i915#9197]) -> [SKIP][248] ([i915#10307] / [i915#6095]) +5 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc.html
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-8/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_cdclk@plane-scaling:
- shard-dg2: [SKIP][249] ([i915#9197]) -> [SKIP][250] ([i915#4087])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_cdclk@plane-scaling.html
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-8/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm:
- shard-dg1: [SKIP][251] ([i915#4423] / [i915#7828]) -> [SKIP][252] ([i915#7828])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg1-14/igt@kms_chamelium_hpd@hdmi-hpd-storm.html
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg1-14/igt@kms_chamelium_hpd@hdmi-hpd-storm.html
* igt@kms_content_protection@atomic:
- shard-dg2: [SKIP][253] ([i915#9197]) -> [SKIP][254] ([i915#7118] / [i915#9424])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_content_protection@atomic.html
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-11/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2: [SKIP][255] ([i915#7118] / [i915#9424]) -> [SKIP][256] ([i915#9197])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-11/igt@kms_content_protection@atomic-dpms.html
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-2/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@content-type-change:
- shard-dg2: [SKIP][257] ([i915#9424]) -> [SKIP][258] ([i915#9197]) +1 other test skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-3/igt@kms_content_protection@content-type-change.html
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-2/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg2: [SKIP][259] ([i915#3299]) -> [SKIP][260] ([i915#9197])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-11/igt@kms_content_protection@dp-mst-type-0.html
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-2/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2: [SKIP][261] ([i915#9197]) -> [SKIP][262] ([i915#9424])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_content_protection@lic-type-0.html
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-8/igt@kms_content_protection@lic-type-0.html
* igt@kms_cursor_crc@cursor-random-max-size:
- shard-dg2: [SKIP][263] ([i915#3555]) -> [SKIP][264] ([i915#9197]) +2 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-3/igt@kms_cursor_crc@cursor-random-max-size.html
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-2/igt@kms_cursor_crc@cursor-random-max-size.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-dg2: [SKIP][265] ([i915#11453] / [i915#3359]) -> [SKIP][266] ([i915#9197])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-11/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-2/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-dg2: [SKIP][267] ([i915#9197]) -> [SKIP][268] ([i915#3555]) +3 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_cursor_crc@cursor-sliding-32x10.html
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-11/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-dg2: [SKIP][269] ([i915#9197]) -> [SKIP][270] ([i915#5354]) +1 other test skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-dg2: [SKIP][271] ([i915#9197]) -> [SKIP][272] ([i915#9067])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-11/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-dg2: [SKIP][273] ([i915#9197]) -> [SKIP][274] ([i915#9833])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-8/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-dg2: [SKIP][275] ([i915#3840] / [i915#9688]) -> [SKIP][276] ([i915#9197])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-11/igt@kms_dsc@dsc-fractional-bpp.html
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-2/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-dg2: [SKIP][277] ([i915#9197]) -> [SKIP][278] ([i915#3840])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-8/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg2: [SKIP][279] ([i915#9197]) -> [SKIP][280] ([i915#3555] / [i915#3840])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_dsc@dsc-with-bpc-formats.html
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-11/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-dg2: [SKIP][281] ([i915#3840] / [i915#9053]) -> [SKIP][282] ([i915#9197])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-3/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-2/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-hdmi-a1-hdmi-a2:
- shard-glk: ([PASS][283], [FAIL][284]) ([i915#2122]) -> [FAIL][285] ([i915#2122]) +1 other test fail
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-glk5/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-hdmi-a1-hdmi-a2.html
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-glk4/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-hdmi-a1-hdmi-a2.html
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-glk6/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@plain-flip-ts-check-interruptible@a-vga1:
- shard-snb: [FAIL][286] ([i915#10826]) -> [FAIL][287] ([i915#2122])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-snb5/igt@kms_flip@plain-flip-ts-check-interruptible@a-vga1.html
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-snb4/igt@kms_flip@plain-flip-ts-check-interruptible@a-vga1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-dg2: [SKIP][288] ([i915#3555]) -> [SKIP][289] ([i915#2672] / [i915#3555])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
- shard-dg2: [SKIP][290] ([i915#3555] / [i915#5190]) -> [SKIP][291] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt:
- shard-dg2: [SKIP][292] ([i915#5354]) -> [SKIP][293] ([i915#8708]) +4 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt.html
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt:
- shard-dg2: [SKIP][294] ([i915#8708]) -> [SKIP][295] ([i915#5354]) +8 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite:
- shard-dg2: [SKIP][296] ([i915#10433] / [i915#3458]) -> [SKIP][297] ([i915#3458]) +1 other test skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2: [SKIP][298] ([i915#5354]) -> [SKIP][299] ([i915#10055])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: [SKIP][300] ([i915#5354]) -> [SKIP][301] ([i915#3458]) +6 other tests skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-dg2: [SKIP][302] ([i915#3458]) -> [SKIP][303] ([i915#10433] / [i915#3458]) +2 other tests skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psr-modesetfrombusy:
- shard-dg2: [SKIP][304] ([i915#3458]) -> [SKIP][305] ([i915#5354]) +5 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-dg2: [SKIP][306] ([i915#9197]) -> [SKIP][307] ([i915#3555] / [i915#8228])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_hdr@bpc-switch-dpms.html
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-11/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2: [SKIP][308] ([i915#3555] / [i915#8228]) -> [SKIP][309] ([i915#9197])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-3/igt@kms_hdr@static-toggle-suspend.html
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-2/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-dg1: [SKIP][310] ([i915#12388]) -> [SKIP][311] ([i915#12388] / [i915#4423])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg1-17/igt@kms_joiner@basic-force-big-joiner.html
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg1-18/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
- shard-dg2: [SKIP][312] ([i915#12247] / [i915#9423]) -> [SKIP][313] ([i915#12247] / [i915#8152] / [i915#9423])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d:
- shard-dg2: [SKIP][314] ([i915#12247]) -> [SKIP][315] ([i915#12247] / [i915#8152])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d.html
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d.html
* igt@kms_psr@fbc-psr2-basic:
- shard-dg1: [SKIP][316] ([i915#1072] / [i915#9732]) -> [SKIP][317] ([i915#1072] / [i915#4423] / [i915#9732])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg1-17/igt@kms_psr@fbc-psr2-basic.html
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg1-18/igt@kms_psr@fbc-psr2-basic.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2: [SKIP][318] ([i915#11131] / [i915#4235]) -> [SKIP][319] ([i915#9197])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-3/igt@kms_rotation_crc@primary-rotation-270.html
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-2/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-dg2: [SKIP][320] ([i915#9197]) -> [SKIP][321] ([i915#11131] / [i915#4235])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_rotation_crc@primary-rotation-90.html
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-8/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2: [SKIP][322] ([i915#5190] / [i915#9197]) -> [SKIP][323] ([i915#11131] / [i915#4235] / [i915#5190])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-11/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-dg2: [SKIP][324] ([i915#11131] / [i915#4235] / [i915#5190]) -> [SKIP][325] ([i915#5190] / [i915#9197])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2: [SKIP][326] ([i915#8623]) -> [SKIP][327] ([i915#9197])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-11/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-dg2: [SKIP][328] ([i915#9906]) -> [SKIP][329] ([i915#9197])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-11/igt@kms_vrr@seamless-rr-switch-drrs.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-2/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@perf@non-zero-reason@0-rcs0:
- shard-dg2: [FAIL][330] ([i915#9100]) -> [FAIL][331] ([i915#7484]) +1 other test fail
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-7/igt@perf@non-zero-reason@0-rcs0.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v2/shard-dg2-11/igt@perf@non-zero-reason@0-rcs0.html
[i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
[i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10393
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826
[i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887
[i915#11131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11131
[i915#11441]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11441
[i915#11453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11616]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11616
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118
[i915#11859]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11859
[i915#12027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12027
[i915#12031]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12031
[i915#12231]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12231
[i915#12238]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12238
[i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388
[i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
[i915#12402]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12402
[i915#12457]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12457
[i915#12459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12459
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849
[i915#2122]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122
[i915#2295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2295
[i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842
[i915#2846]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2846
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4087]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4087
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4473]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4473
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213
[i915#7294]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7294
[i915#7297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7297
[i915#7484]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7484
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975
[i915#8152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152
[i915#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8292]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8292
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825
[i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9100]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9100
[i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
[i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9697
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820
[i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* Linux: CI_DRM_15574 -> Patchwork_140291v2
CI-20190529: 20190529
CI_DRM_15574: aa0898115bcff3eda6d021cc66eb8a1c3b264c56 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8080: 20fcbc59241a16c84d12f4f6ba390fb46fd65a36 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_140291v2: aa0898115bcff3eda6d021cc66eb8a1c3b264c56 @ 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_140291v2/index.html
[-- Attachment #2: Type: text/html, Size: 104533 bytes --]
^ permalink raw reply [flat|nested] 29+ messages in thread* Re: [PATCH] drm/xe/hdcp: Add check to remove hdcp2 compatibilty
2024-10-22 5:56 [PATCH] drm/xe/hdcp: Add check to remove hdcp2 compatibilty Suraj Kandpal
` (9 preceding siblings ...)
2024-10-22 10:36 ` ✗ Fi.CI.IGT: failure " Patchwork
@ 2024-10-22 22:04 ` kernel test robot
2024-10-25 17:25 ` ✓ Fi.CI.BAT: success for drm/xe/hdcp: Add check to remove hdcp2 compatibilty (rev3) Patchwork
2024-10-25 22:56 ` ✗ Fi.CI.IGT: failure " Patchwork
12 siblings, 0 replies; 29+ messages in thread
From: kernel test robot @ 2024-10-22 22:04 UTC (permalink / raw)
To: Suraj Kandpal, intel-xe, intel-gfx; +Cc: oe-kbuild-all, Suraj Kandpal
Hi Suraj,
kernel test robot noticed the following build errors:
[auto build test ERROR on drm-intel/for-linux-next]
[also build test ERROR on next-20241022]
[cannot apply to drm-xe/drm-xe-next drm-intel/for-linux-next-fixes drm-tip/drm-tip linus/master v6.12-rc4]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch#_base_tree_information]
url: https://github.com/intel-lab-lkp/linux/commits/Suraj-Kandpal/drm-xe-hdcp-Add-check-to-remove-hdcp2-compatibilty/20241022-135748
base: git://anongit.freedesktop.org/drm-intel for-linux-next
patch link: https://lore.kernel.org/r/20241022055655.1902-1-suraj.kandpal%40intel.com
patch subject: [PATCH] drm/xe/hdcp: Add check to remove hdcp2 compatibilty
config: i386-allmodconfig (https://download.01.org/0day-ci/archive/20241023/202410230526.VIha5RQI-lkp@intel.com/config)
compiler: gcc-12 (Debian 12.2.0-14) 12.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20241023/202410230526.VIha5RQI-lkp@intel.com/reproduce)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202410230526.VIha5RQI-lkp@intel.com/
All errors (new ones prefixed by >>):
In file included from drivers/gpu/drm/i915/display/intel_display_core.h:20,
from drivers/gpu/drm/xe/xe_device_types.h:31,
from drivers/gpu/drm/xe/xe_vm_types.h:16,
from drivers/gpu/drm/xe/xe_bo.h:13,
from drivers/gpu/drm/xe/display/xe_hdcp_gsc.c:13:
drivers/gpu/drm/xe/display/xe_hdcp_gsc.c: In function 'intel_hdcp_gsc_cs_required':
>> drivers/gpu/drm/i915/display/intel_display_device.h:199:33: error: implicit declaration of function 'IP_VER' [-Werror=implicit-function-declaration]
199 | #define DISPLAY_VER_FULL(i915) IP_VER(DISPLAY_RUNTIME_INFO(i915)->ip.ver, \
| ^~~~~~
drivers/gpu/drm/xe/display/xe_hdcp_gsc.c:36:17: note: in expansion of macro 'DISPLAY_VER_FULL'
36 | DISPLAY_VER_FULL(display) != IP_VER(14, 1);
| ^~~~~~~~~~~~~~~~
cc1: some warnings being treated as errors
Kconfig warnings: (for reference only)
WARNING: unmet direct dependencies detected for GET_FREE_REGION
Depends on [n]: SPARSEMEM [=n]
Selected by [m]:
- RESOURCE_KUNIT_TEST [=m] && RUNTIME_TESTING_MENU [=y] && KUNIT [=m]
vim +/IP_VER +199 drivers/gpu/drm/i915/display/intel_display_device.h
5e72e75d30fcff Jani Nikula 2023-10-03 197
5e72e75d30fcff Jani Nikula 2023-10-03 198 #define DISPLAY_VER(i915) (DISPLAY_RUNTIME_INFO(i915)->ip.ver)
5e72e75d30fcff Jani Nikula 2023-10-03 @199 #define DISPLAY_VER_FULL(i915) IP_VER(DISPLAY_RUNTIME_INFO(i915)->ip.ver, \
5e72e75d30fcff Jani Nikula 2023-10-03 200 DISPLAY_RUNTIME_INFO(i915)->ip.rel)
5e72e75d30fcff Jani Nikula 2023-10-03 201 #define IS_DISPLAY_VER(i915, from, until) \
5e72e75d30fcff Jani Nikula 2023-10-03 202 (DISPLAY_VER(i915) >= (from) && DISPLAY_VER(i915) <= (until))
5e72e75d30fcff Jani Nikula 2023-10-03 203
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
^ permalink raw reply [flat|nested] 29+ messages in thread* ✓ Fi.CI.BAT: success for drm/xe/hdcp: Add check to remove hdcp2 compatibilty (rev3)
2024-10-22 5:56 [PATCH] drm/xe/hdcp: Add check to remove hdcp2 compatibilty Suraj Kandpal
` (10 preceding siblings ...)
2024-10-22 22:04 ` [PATCH] drm/xe/hdcp: Add check to remove hdcp2 compatibilty kernel test robot
@ 2024-10-25 17:25 ` Patchwork
2024-10-25 22:56 ` ✗ Fi.CI.IGT: failure " Patchwork
12 siblings, 0 replies; 29+ messages in thread
From: Patchwork @ 2024-10-25 17:25 UTC (permalink / raw)
To: Suraj Kandpal; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 1108 bytes --]
== Series Details ==
Series: drm/xe/hdcp: Add check to remove hdcp2 compatibilty (rev3)
URL : https://patchwork.freedesktop.org/series/140291/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_15598 -> Patchwork_140291v3
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/index.html
Participating hosts (46 -> 44)
------------------------------
Missing (2): bat-arls-1 fi-snb-2520m
Changes
-------
No changes found
Build changes
-------------
* Linux: CI_DRM_15598 -> Patchwork_140291v3
CI-20190529: 20190529
CI_DRM_15598: 3eaccdb6aa7537e7a60f1420ae757823cb37ece5 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8085: 3247b453e5ada80715d4689ed12f5527a0995ee6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_140291v3: 3eaccdb6aa7537e7a60f1420ae757823cb37ece5 @ git://anongit.freedesktop.org/gfx-ci/linux
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/index.html
[-- Attachment #2: Type: text/html, Size: 1673 bytes --]
^ permalink raw reply [flat|nested] 29+ messages in thread* ✗ Fi.CI.IGT: failure for drm/xe/hdcp: Add check to remove hdcp2 compatibilty (rev3)
2024-10-22 5:56 [PATCH] drm/xe/hdcp: Add check to remove hdcp2 compatibilty Suraj Kandpal
` (11 preceding siblings ...)
2024-10-25 17:25 ` ✓ Fi.CI.BAT: success for drm/xe/hdcp: Add check to remove hdcp2 compatibilty (rev3) Patchwork
@ 2024-10-25 22:56 ` Patchwork
12 siblings, 0 replies; 29+ messages in thread
From: Patchwork @ 2024-10-25 22:56 UTC (permalink / raw)
To: Suraj Kandpal; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 100285 bytes --]
== Series Details ==
Series: drm/xe/hdcp: Add check to remove hdcp2 compatibilty (rev3)
URL : https://patchwork.freedesktop.org/series/140291/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15598_full -> Patchwork_140291v3_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_140291v3_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_140291v3_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (9 -> 8)
------------------------------
Missing (1): shard-dg2-set2
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_140291v3_full:
### IGT changes ###
#### Possible regressions ####
* igt@api_intel_allocator@reopen-fork:
- shard-snb: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-snb7/igt@api_intel_allocator@reopen-fork.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-snb1/igt@api_intel_allocator@reopen-fork.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-dg1: NOTRUN -> [INCOMPLETE][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-14/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@kms_color@ctm-negative:
- shard-dg2: NOTRUN -> [SKIP][4]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-2/igt@kms_color@ctm-negative.html
* igt@kms_cursor_legacy@cursora-vs-flipa-atomic:
- shard-glk: NOTRUN -> [INCOMPLETE][5]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-glk1/igt@kms_cursor_legacy@cursora-vs-flipa-atomic.html
* igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2:
- shard-glk: [PASS][6] -> [INCOMPLETE][7]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-glk5/igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-glk3/igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2.html
Known issues
------------
Here are the changes found in Patchwork_140291v3_full that come from known issues:
### CI changes ###
#### Possible fixes ####
* boot:
- shard-dg1: ([PASS][8], [PASS][9], [PASS][10], [PASS][11], [PASS][12], [PASS][13], [PASS][14], [PASS][15], [PASS][16], [FAIL][17], [PASS][18], [PASS][19], [PASS][20], [PASS][21], [PASS][22], [PASS][23], [PASS][24], [PASS][25], [PASS][26], [PASS][27], [PASS][28], [PASS][29], [PASS][30], [PASS][31], [PASS][32]) -> ([PASS][33], [PASS][34], [PASS][35], [PASS][36], [PASS][37], [PASS][38], [PASS][39], [PASS][40], [PASS][41], [PASS][42], [PASS][43], [PASS][44], [PASS][45], [PASS][46], [PASS][47], [PASS][48], [PASS][49], [PASS][50], [PASS][51], [PASS][52], [PASS][53], [PASS][54], [PASS][55], [PASS][56], [PASS][57])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg1-12/boot.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg1-12/boot.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg1-13/boot.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg1-13/boot.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg1-13/boot.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg1-14/boot.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg1-14/boot.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg1-14/boot.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg1-15/boot.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg1-15/boot.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg1-15/boot.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg1-16/boot.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg1-16/boot.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg1-16/boot.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg1-16/boot.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg1-16/boot.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg1-17/boot.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg1-17/boot.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg1-17/boot.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg1-18/boot.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg1-18/boot.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg1-18/boot.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg1-19/boot.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg1-19/boot.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg1-19/boot.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-12/boot.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-12/boot.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-12/boot.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-13/boot.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-13/boot.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-14/boot.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-14/boot.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-14/boot.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-14/boot.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-15/boot.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-15/boot.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-15/boot.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-16/boot.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-16/boot.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-16/boot.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-16/boot.html
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-17/boot.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-17/boot.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-17/boot.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-18/boot.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-18/boot.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-18/boot.html
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-19/boot.html
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-19/boot.html
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-19/boot.html
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@crc32:
- shard-rkl: NOTRUN -> [SKIP][58] ([i915#6230])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-rkl-4/igt@api_intel_bb@crc32.html
* igt@device_reset@cold-reset-bound:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#11078])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-2/igt@device_reset@cold-reset-bound.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-rkl: NOTRUN -> [SKIP][60] ([i915#11078])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-rkl-3/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_fdinfo@busy-check-all@bcs0:
- shard-dg1: NOTRUN -> [SKIP][61] ([i915#8414]) +5 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-19/igt@drm_fdinfo@busy-check-all@bcs0.html
* igt@drm_fdinfo@most-busy-idle-check-all@vecs1:
- shard-dg2: NOTRUN -> [SKIP][62] ([i915#8414]) +7 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-2/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-tglu: NOTRUN -> [SKIP][63] ([i915#3555] / [i915#9323]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-2/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-rkl: NOTRUN -> [SKIP][64] ([i915#9323]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-rkl-4/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-tglu-1: NOTRUN -> [SKIP][65] ([i915#7697])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-1/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_ctx_engines@invalid-engines:
- shard-rkl: NOTRUN -> [FAIL][66] ([i915#12031])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-rkl-3/igt@gem_ctx_engines@invalid-engines.html
* igt@gem_ctx_sseu@engines:
- shard-tglu: NOTRUN -> [SKIP][67] ([i915#280])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-2/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@invalid-args:
- shard-rkl: NOTRUN -> [SKIP][68] ([i915#280])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-rkl-5/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#280])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-2/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_ctx_sseu@mmap-args:
- shard-tglu-1: NOTRUN -> [SKIP][70] ([i915#280])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-1/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@hibernate:
- shard-dg1: [PASS][71] -> [ABORT][72] ([i915#7975] / [i915#8213])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg1-19/igt@gem_eio@hibernate.html
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-14/igt@gem_eio@hibernate.html
* igt@gem_exec_balancer@bonded-semaphore:
- shard-dg1: NOTRUN -> [SKIP][73] ([i915#4812])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-19/igt@gem_exec_balancer@bonded-semaphore.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg1: NOTRUN -> [SKIP][74] ([i915#4771])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-14/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@noheartbeat:
- shard-dg1: NOTRUN -> [SKIP][75] ([i915#8555]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-19/igt@gem_exec_balancer@noheartbeat.html
* igt@gem_exec_balancer@parallel-dmabuf-import-out-fence:
- shard-rkl: NOTRUN -> [SKIP][76] ([i915#4525])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-rkl-3/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html
* igt@gem_exec_capture@capture-recoverable:
- shard-tglu-1: NOTRUN -> [SKIP][77] ([i915#6344])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-1/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_fair@basic-deadline:
- shard-rkl: [PASS][78] -> [FAIL][79] ([i915#2846])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-rkl-1/igt@gem_exec_fair@basic-deadline.html
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-rkl-2/igt@gem_exec_fair@basic-deadline.html
- shard-dg1: NOTRUN -> [SKIP][80] ([i915#3539] / [i915#4852])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-19/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none:
- shard-tglu: NOTRUN -> [FAIL][81] ([i915#2842]) +5 other tests fail
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-2/igt@gem_exec_fair@basic-none.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-rkl: [PASS][82] -> [FAIL][83] ([i915#2842]) +1 other test fail
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-rkl-6/igt@gem_exec_fair@basic-pace-share@rcs0.html
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-rkl-2/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-throttle:
- shard-tglu-1: NOTRUN -> [FAIL][84] ([i915#2842]) +3 other tests fail
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-1/igt@gem_exec_fair@basic-throttle.html
* igt@gem_exec_fence@submit3:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#4812])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-2/igt@gem_exec_fence@submit3.html
* igt@gem_exec_flush@basic-uc-pro-default:
- shard-dg2: NOTRUN -> [SKIP][86] ([i915#3539] / [i915#4852]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-2/igt@gem_exec_flush@basic-uc-pro-default.html
* igt@gem_exec_reloc@basic-concurrent16:
- shard-dg1: NOTRUN -> [SKIP][87] ([i915#3281]) +2 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-19/igt@gem_exec_reloc@basic-concurrent16.html
* igt@gem_exec_reloc@basic-cpu-read-active:
- shard-dg2: NOTRUN -> [SKIP][88] ([i915#3281]) +2 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-2/igt@gem_exec_reloc@basic-cpu-read-active.html
* igt@gem_exec_reloc@basic-wc-cpu:
- shard-rkl: NOTRUN -> [SKIP][89] ([i915#3281]) +5 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-rkl-5/igt@gem_exec_reloc@basic-wc-cpu.html
* igt@gem_exec_schedule@pi-common:
- shard-tglu: NOTRUN -> [FAIL][90] ([i915#12296]) +5 other tests fail
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-2/igt@gem_exec_schedule@pi-common.html
* igt@gem_exec_suspend@basic-s0:
- shard-dg2: [PASS][91] -> [INCOMPLETE][92] ([i915#11441]) +1 other test incomplete
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg2-10/igt@gem_exec_suspend@basic-s0.html
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-10/igt@gem_exec_suspend@basic-s0.html
* igt@gem_fence_thrash@bo-copy:
- shard-dg2: NOTRUN -> [SKIP][93] ([i915#4860]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-2/igt@gem_fence_thrash@bo-copy.html
* igt@gem_fenced_exec_thrash@no-spare-fences:
- shard-dg1: NOTRUN -> [SKIP][94] ([i915#4860])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-19/igt@gem_fenced_exec_thrash@no-spare-fences.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-dg1: NOTRUN -> [SKIP][95] ([i915#12193])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-19/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][96] ([i915#4565])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-19/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html
* igt@gem_lmem_swapping@verify:
- shard-tglu-1: NOTRUN -> [SKIP][97] ([i915#4613]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-1/igt@gem_lmem_swapping@verify.html
* igt@gem_lmem_swapping@verify-random:
- shard-rkl: NOTRUN -> [SKIP][98] ([i915#4613])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-rkl-4/igt@gem_lmem_swapping@verify-random.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-tglu: NOTRUN -> [SKIP][99] ([i915#4613]) +3 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-5/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_media_vme:
- shard-rkl: NOTRUN -> [SKIP][100] ([i915#284])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-rkl-5/igt@gem_media_vme.html
* igt@gem_mmap_gtt@big-bo:
- shard-dg2: NOTRUN -> [SKIP][101] ([i915#4077])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-2/igt@gem_mmap_gtt@big-bo.html
* igt@gem_mmap_offset@clear:
- shard-mtlp: [PASS][102] -> [ABORT][103] ([i915#10729])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-mtlp-7/igt@gem_mmap_offset@clear.html
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-mtlp-6/igt@gem_mmap_offset@clear.html
* igt@gem_mmap_offset@clear@smem0:
- shard-mtlp: [PASS][104] -> [ABORT][105] ([i915#10029] / [i915#10729])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-mtlp-7/igt@gem_mmap_offset@clear@smem0.html
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-mtlp-6/igt@gem_mmap_offset@clear@smem0.html
* igt@gem_mmap_wc@close:
- shard-dg2: NOTRUN -> [SKIP][106] ([i915#4083]) +1 other test skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-2/igt@gem_mmap_wc@close.html
* igt@gem_mmap_wc@write-cpu-read-wc:
- shard-dg1: NOTRUN -> [SKIP][107] ([i915#4083])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-19/igt@gem_mmap_wc@write-cpu-read-wc.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-rkl: NOTRUN -> [SKIP][108] ([i915#3282]) +9 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-rkl-4/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_pread@bench:
- shard-dg2: NOTRUN -> [SKIP][109] ([i915#3282])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-4/igt@gem_pread@bench.html
* igt@gem_pxp@create-regular-context-2:
- shard-rkl: NOTRUN -> [SKIP][110] ([i915#4270]) +1 other test skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-rkl-3/igt@gem_pxp@create-regular-context-2.html
* igt@gem_pxp@display-protected-crc:
- shard-dg1: NOTRUN -> [SKIP][111] ([i915#4270]) +2 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-19/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@reject-modify-context-protection-on:
- shard-tglu-1: NOTRUN -> [SKIP][112] ([i915#4270])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-1/igt@gem_pxp@reject-modify-context-protection-on.html
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
- shard-tglu: NOTRUN -> [SKIP][113] ([i915#4270]) +2 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-8/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
* igt@gem_render_copy@mixed-tiled-to-y-tiled-ccs:
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#5190] / [i915#8428]) +2 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-2/igt@gem_render_copy@mixed-tiled-to-y-tiled-ccs.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-rkl: NOTRUN -> [SKIP][115] ([i915#8411])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-rkl-3/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-rkl: NOTRUN -> [SKIP][116] ([i915#3297]) +1 other test skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-rkl-4/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-tglu-1: NOTRUN -> [SKIP][117] ([i915#3297]) +2 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-1/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-tglu-1: NOTRUN -> [SKIP][118] ([i915#3297] / [i915#3323])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-1/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-glk: NOTRUN -> [SKIP][119] +19 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-glk3/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-tglu: NOTRUN -> [SKIP][120] ([i915#3297]) +1 other test skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-5/igt@gem_userptr_blits@unsync-unmap.html
* igt@gen9_exec_parse@bb-start-far:
- shard-dg2: NOTRUN -> [SKIP][121] ([i915#2856])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-2/igt@gen9_exec_parse@bb-start-far.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-tglu: NOTRUN -> [SKIP][122] ([i915#2527] / [i915#2856]) +3 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-2/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@gen9_exec_parse@unaligned-jump:
- shard-rkl: NOTRUN -> [SKIP][123] ([i915#2527]) +1 other test skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-rkl-5/igt@gen9_exec_parse@unaligned-jump.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-glk: [PASS][124] -> [ABORT][125] ([i915#9820])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-glk1/igt@i915_module_load@reload-with-fault-injection.html
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-glk7/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-tglu-1: NOTRUN -> [SKIP][126] ([i915#8399])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-1/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-rkl: NOTRUN -> [SKIP][127] ([i915#8399]) +1 other test skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-rkl-4/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-tglu-1: NOTRUN -> [SKIP][128] ([i915#6590]) +1 other test skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-1/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-glk: [PASS][129] -> [FAIL][130] ([i915#12548] / [i915#3591])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-glk5/igt@i915_pm_rc6_residency@rc6-idle.html
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-glk6/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0:
- shard-glk: [PASS][131] -> [FAIL][132] ([i915#3591])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-glk5/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-glk6/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
* igt@i915_pm_rps@reset:
- shard-snb: [PASS][133] -> [INCOMPLETE][134] ([i915#7790])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-snb2/igt@i915_pm_rps@reset.html
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-snb5/igt@i915_pm_rps@reset.html
* igt@i915_pm_rps@thresholds-idle:
- shard-dg2: NOTRUN -> [SKIP][135] ([i915#11681])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-2/igt@i915_pm_rps@thresholds-idle.html
* igt@intel_hwmon@hwmon-read:
- shard-tglu: NOTRUN -> [SKIP][136] ([i915#7707])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-5/igt@intel_hwmon@hwmon-read.html
* igt@intel_hwmon@hwmon-write:
- shard-rkl: NOTRUN -> [SKIP][137] ([i915#7707])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-rkl-4/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@clobberred-modifier:
- shard-dg2: NOTRUN -> [SKIP][138] ([i915#4212])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-2/igt@kms_addfb_basic@clobberred-modifier.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-tglu-1: NOTRUN -> [SKIP][139] ([i915#12454])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-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-2-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][140] ([i915#8709]) +11 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-2-4-mc-ccs.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg1: NOTRUN -> [SKIP][141] ([i915#1769] / [i915#3555])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-19/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_atomic_transition@plane-all-transition:
- shard-dg2: [PASS][142] -> [SKIP][143] ([i915#9197]) +18 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg2-1/igt@kms_atomic_transition@plane-all-transition.html
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-2/igt@kms_atomic_transition@plane-all-transition.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][144] ([i915#5286]) +3 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-rkl-5/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][145] ([i915#4538] / [i915#5286])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-19/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-tglu: NOTRUN -> [SKIP][146] ([i915#5286]) +4 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-tglu-1: NOTRUN -> [SKIP][147] ([i915#5286]) +1 other test skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][148] ([i915#3638]) +3 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-rkl-4/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][149] ([i915#4538]) +1 other test skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-19/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-180:
- shard-dg2: NOTRUN -> [SKIP][150] ([i915#4538] / [i915#5190]) +1 other test skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-4/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html
* igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][151] ([i915#6095]) +49 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-2/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs:
- shard-mtlp: NOTRUN -> [SKIP][152] ([i915#6095]) +9 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-mtlp-1/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-rkl: NOTRUN -> [SKIP][153] ([i915#12313])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-rkl-5/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][154] ([i915#6095]) +104 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-16/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][155] ([i915#6095]) +106 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-rkl-1/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][156] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][157] ([i915#10307] / [i915#6095]) +148 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][158] ([i915#6095]) +29 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-1/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-tglu: NOTRUN -> [SKIP][159] ([i915#12313])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-5/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][160] ([i915#4087]) +3 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-6/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- shard-tglu: NOTRUN -> [SKIP][161] ([i915#7828]) +6 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-5/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_chamelium_edid@hdmi-mode-timings:
- shard-tglu-1: NOTRUN -> [SKIP][162] ([i915#7828]) +5 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-1/igt@kms_chamelium_edid@hdmi-mode-timings.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][163] ([i915#7828]) +3 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-2/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_frames@dp-frame-dump:
- shard-dg1: NOTRUN -> [SKIP][164] ([i915#7828]) +1 other test skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-19/igt@kms_chamelium_frames@dp-frame-dump.html
* igt@kms_chamelium_hpd@dp-hpd-storm:
- shard-rkl: NOTRUN -> [SKIP][165] ([i915#7828]) +4 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-rkl-5/igt@kms_chamelium_hpd@dp-hpd-storm.html
* igt@kms_color@deep-color:
- shard-tglu: NOTRUN -> [SKIP][166] ([i915#3555] / [i915#9979])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-5/igt@kms_color@deep-color.html
* igt@kms_content_protection@atomic:
- shard-tglu-1: NOTRUN -> [SKIP][167] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-1/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic-dpms:
- shard-rkl: NOTRUN -> [SKIP][168] ([i915#7118] / [i915#9424])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-rkl-3/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-tglu: NOTRUN -> [SKIP][169] ([i915#3116] / [i915#3299])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-5/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-rkl: NOTRUN -> [SKIP][170] ([i915#3116])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-rkl-4/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-tglu-1: NOTRUN -> [SKIP][171] ([i915#3116] / [i915#3299])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-1/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic-type-1:
- shard-tglu: NOTRUN -> [SKIP][172] ([i915#6944] / [i915#9424])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-5/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@mei-interface:
- shard-tglu-1: NOTRUN -> [SKIP][173] ([i915#6944] / [i915#9424])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-1/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@srm:
- shard-rkl: NOTRUN -> [SKIP][174] ([i915#7118])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-rkl-3/igt@kms_content_protection@srm.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-rkl: NOTRUN -> [SKIP][175] ([i915#3555]) +5 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg1: NOTRUN -> [SKIP][176] ([i915#11453] / [i915#3359]) +1 other test skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-19/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-tglu: NOTRUN -> [SKIP][177] ([i915#11453] / [i915#3359])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-2/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-sliding-32x32:
- shard-tglu: NOTRUN -> [SKIP][178] ([i915#3555]) +3 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-5/igt@kms_cursor_crc@cursor-sliding-32x32.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-tglu: NOTRUN -> [SKIP][179] ([i915#4103])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][180] ([i915#4103])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-rkl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-tglu-1: NOTRUN -> [SKIP][181] ([i915#4103])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-tglu-1: NOTRUN -> [SKIP][182] +50 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-1/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: [PASS][183] -> [FAIL][184] ([i915#2346]) +1 other test fail
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-tglu-1: NOTRUN -> [SKIP][185] ([i915#9723])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-1/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-rkl: NOTRUN -> [SKIP][186] ([i915#3555] / [i915#3804])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][187] ([i915#3804])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_aux_dev:
- shard-rkl: NOTRUN -> [SKIP][188] ([i915#1257])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-rkl-5/igt@kms_dp_aux_dev.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-dg2: NOTRUN -> [SKIP][189] ([i915#9197]) +27 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-2/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-tglu-1: NOTRUN -> [SKIP][190] ([i915#3840])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg1: NOTRUN -> [SKIP][191] ([i915#3555] / [i915#3840])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-19/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-rkl: NOTRUN -> [SKIP][192] ([i915#3555] / [i915#3840])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-rkl-4/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_feature_discovery@psr1:
- shard-tglu-1: NOTRUN -> [SKIP][193] ([i915#658])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-1/igt@kms_feature_discovery@psr1.html
* igt@kms_feature_discovery@psr2:
- shard-tglu: NOTRUN -> [SKIP][194] ([i915#658])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-2/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-dg1: NOTRUN -> [SKIP][195] ([i915#9934])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-19/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-tglu: NOTRUN -> [SKIP][196] ([i915#3637] / [i915#3966])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-5/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-tglu: NOTRUN -> [SKIP][197] ([i915#3637]) +3 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-2/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg1: NOTRUN -> [SKIP][198] ([i915#8381])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-19/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-nonexisting-fb-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][199] ([i915#3637])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-1/igt@kms_flip@2x-nonexisting-fb-interruptible.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-rkl: NOTRUN -> [SKIP][200] +20 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-rkl-4/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a1:
- shard-tglu-1: NOTRUN -> [FAIL][201] ([i915#2122]) +1 other test fail
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-1/igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-rkl: NOTRUN -> [SKIP][202] ([i915#2672] / [i915#3555])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][203] ([i915#2672])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling:
- shard-tglu: NOTRUN -> [SKIP][204] ([i915#2672] / [i915#3555])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][205] ([i915#2587] / [i915#2672])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][206] ([i915#2587] / [i915#2672] / [i915#3555])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][207] ([i915#2587] / [i915#2672]) +4 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][208] ([i915#3555]) +3 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
- shard-tglu-1: NOTRUN -> [SKIP][209] ([i915#2672] / [i915#3555]) +3 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-dg2: [PASS][210] -> [SKIP][211] ([i915#3555]) +1 other test skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg2-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][212] ([i915#3555] / [i915#8810] / [i915#8813])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][213] ([i915#3555] / [i915#8810])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][214] ([i915#2672])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][215] ([i915#5354]) +30 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-dg2: [PASS][216] -> [FAIL][217] ([i915#6880])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][218] +7 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render:
- shard-dg2: [PASS][219] -> [SKIP][220] ([i915#5354]) +6 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][221] ([i915#3458]) +4 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-tglu-1: NOTRUN -> [SKIP][222] ([i915#9766])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render:
- shard-rkl: NOTRUN -> [SKIP][223] ([i915#1825]) +27 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][224] ([i915#1825])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-mtlp-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][225] ([i915#8708]) +4 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][226] +61 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-2/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-render:
- shard-rkl: NOTRUN -> [SKIP][227] ([i915#3023]) +16 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html
* igt@kms_hdr@bpc-switch:
- shard-rkl: NOTRUN -> [SKIP][228] ([i915#3555] / [i915#8228]) +1 other test skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-rkl-4/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@static-swap:
- shard-tglu: NOTRUN -> [SKIP][229] ([i915#3555] / [i915#8228]) +1 other test skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-5/igt@kms_hdr@static-swap.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2: [PASS][230] -> [SKIP][231] ([i915#3555] / [i915#8228]) +1 other test skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg2-10/igt@kms_hdr@static-toggle-suspend.html
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-8/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-dg1: NOTRUN -> [SKIP][232] ([i915#12394])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-19/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][233] ([i915#12388])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-1/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][234] ([i915#12339])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-1/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-tglu: NOTRUN -> [SKIP][235] ([i915#6301])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-5/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane@planar-pixel-format-settings:
- shard-dg2: NOTRUN -> [SKIP][236] ([i915#9581])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-2/igt@kms_plane@planar-pixel-format-settings.html
* igt@kms_plane_alpha_blend@alpha-7efc:
- shard-dg2: [PASS][237] -> [SKIP][238] ([i915#7294])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg2-5/igt@kms_plane_alpha_blend@alpha-7efc.html
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-2/igt@kms_plane_alpha_blend@alpha-7efc.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [FAIL][239] ([i915#8292]) +1 other test fail
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-1/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a:
- shard-dg1: NOTRUN -> [SKIP][240] ([i915#12247]) +4 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-19/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b:
- shard-rkl: NOTRUN -> [SKIP][241] ([i915#12247]) +2 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-rkl-3/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers:
- shard-dg2: NOTRUN -> [SKIP][242] ([i915#3555] / [i915#8152] / [i915#9423])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-b:
- shard-dg2: NOTRUN -> [SKIP][243] ([i915#12247]) +5 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-b.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][244] ([i915#8152])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-d.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
- shard-tglu-1: NOTRUN -> [SKIP][245] ([i915#3555]) +2 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b:
- shard-tglu-1: NOTRUN -> [SKIP][246] ([i915#12247]) +3 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25:
- shard-dg2: NOTRUN -> [SKIP][247] ([i915#12247] / [i915#6953] / [i915#8152] / [i915#9423])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][248] ([i915#12247] / [i915#8152])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-20x20:
- shard-dg2: [PASS][249] -> [SKIP][250] ([i915#6953] / [i915#8152] / [i915#9423])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg2-1/igt@kms_plane_scaling@planes-upscale-20x20.html
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20.html
* igt@kms_plane_scaling@planes-upscale-20x20@pipe-b:
- shard-dg2: [PASS][251] -> [SKIP][252] ([i915#12247]) +2 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg2-1/igt@kms_plane_scaling@planes-upscale-20x20@pipe-b.html
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20@pipe-b.html
* igt@kms_plane_scaling@planes-upscale-20x20@pipe-d:
- shard-dg2: [PASS][253] -> [SKIP][254] ([i915#8152])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg2-1/igt@kms_plane_scaling@planes-upscale-20x20@pipe-d.html
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20@pipe-d.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][255] ([i915#12343])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-1/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-rkl: NOTRUN -> [SKIP][256] ([i915#5354])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-rkl-3/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc9-dpms:
- shard-dg2: [PASS][257] -> [FAIL][258] ([i915#12561] / [i915#7330])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg2-5/igt@kms_pm_dc@dc9-dpms.html
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-2/igt@kms_pm_dc@dc9-dpms.html
- shard-tglu-1: NOTRUN -> [SKIP][259] ([i915#4281])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-1/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-tglu-1: NOTRUN -> [SKIP][260] ([i915#3828])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-1/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-rkl: NOTRUN -> [SKIP][261] ([i915#8430])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-rkl-5/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2: [PASS][262] -> [SKIP][263] ([i915#9519]) +3 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg2-4/igt@kms_pm_rpm@dpms-lpsp.html
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-7/igt@kms_pm_rpm@dpms-lpsp.html
- shard-rkl: [PASS][264] -> [SKIP][265] ([i915#9519]) +4 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-rkl-2/igt@kms_pm_rpm@dpms-lpsp.html
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-rkl-5/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-dg2: NOTRUN -> [SKIP][266] ([i915#9519])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-2/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@fences:
- shard-dg1: NOTRUN -> [SKIP][267] ([i915#4077])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-19/igt@kms_pm_rpm@fences.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-rkl: NOTRUN -> [SKIP][268] ([i915#9519])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-tglu: NOTRUN -> [SKIP][269] ([i915#9519])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-5/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_prime@d3hot:
- shard-tglu-1: NOTRUN -> [SKIP][270] ([i915#6524])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-1/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-rkl: NOTRUN -> [SKIP][271] ([i915#11520]) +5 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-rkl-3/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][272] ([i915#11520])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-glk6/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area:
- shard-dg2: NOTRUN -> [SKIP][273] ([i915#11520]) +3 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-2/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-tglu-1: NOTRUN -> [SKIP][274] ([i915#11520]) +4 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-1/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:
- shard-tglu: NOTRUN -> [SKIP][275] ([i915#11520]) +5 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-5/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-dg1: NOTRUN -> [SKIP][276] ([i915#11520]) +2 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-19/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-tglu: NOTRUN -> [SKIP][277] ([i915#9683]) +1 other test skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-5/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-dpms:
- shard-mtlp: NOTRUN -> [SKIP][278] ([i915#9688])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-mtlp-4/igt@kms_psr@fbc-pr-dpms.html
* igt@kms_psr@fbc-psr2-cursor-blt:
- shard-tglu-1: NOTRUN -> [SKIP][279] ([i915#9732]) +12 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-1/igt@kms_psr@fbc-psr2-cursor-blt.html
* igt@kms_psr@pr-cursor-render:
- shard-rkl: NOTRUN -> [SKIP][280] ([i915#1072] / [i915#9732]) +15 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-rkl-3/igt@kms_psr@pr-cursor-render.html
* igt@kms_psr@pr-sprite-mmap-cpu:
- shard-tglu: NOTRUN -> [SKIP][281] ([i915#9732]) +15 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-5/igt@kms_psr@pr-sprite-mmap-cpu.html
* igt@kms_psr@psr-primary-blt:
- shard-dg2: NOTRUN -> [SKIP][282] ([i915#1072] / [i915#9732]) +5 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-2/igt@kms_psr@psr-primary-blt.html
* igt@kms_psr@psr2-sprite-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][283] ([i915#1072] / [i915#9732]) +7 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-19/igt@kms_psr@psr2-sprite-mmap-cpu.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-dg1: NOTRUN -> [SKIP][284] ([i915#9685])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-14/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-rkl: NOTRUN -> [SKIP][285] ([i915#9685])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-rkl-3/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-tglu-1: NOTRUN -> [SKIP][286] ([i915#5289]) +1 other test skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][287] ([i915#5190] / [i915#9197]) +4 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_selftest@drm_framebuffer:
- shard-tglu-1: NOTRUN -> [ABORT][288] ([i915#12231]) +1 other test abort
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-1/igt@kms_selftest@drm_framebuffer.html
* igt@kms_setmode@basic@pipe-b-hdmi-a-1:
- shard-snb: [PASS][289] -> [FAIL][290] ([i915#5465])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-snb2/igt@kms_setmode@basic@pipe-b-hdmi-a-1.html
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-snb5/igt@kms_setmode@basic@pipe-b-hdmi-a-1.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-tglu: NOTRUN -> [SKIP][291] ([i915#8623])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@flip-basic-fastset:
- shard-rkl: NOTRUN -> [SKIP][292] ([i915#9906])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-rkl-5/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-tglu: NOTRUN -> [SKIP][293] ([i915#9906])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-5/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_writeback@writeback-fb-id:
- shard-tglu-1: NOTRUN -> [SKIP][294] ([i915#2437])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-1/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg1: NOTRUN -> [SKIP][295] ([i915#2437] / [i915#9412])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-19/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-rkl: NOTRUN -> [SKIP][296] ([i915#2437])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-rkl-4/igt@kms_writeback@writeback-invalid-parameters.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-tglu: NOTRUN -> [SKIP][297] ([i915#2437] / [i915#9412])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-5/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf@per-context-mode-unprivileged:
- shard-dg2: NOTRUN -> [SKIP][298]
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-2/igt@perf@per-context-mode-unprivileged.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: NOTRUN -> [FAIL][299] ([i915#4349]) +4 other tests fail
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-2/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@rc6-all-gts:
- shard-tglu-1: NOTRUN -> [SKIP][300] ([i915#8516])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-1/igt@perf_pmu@rc6-all-gts.html
* igt@prime_mmap_kms@buffer-sharing:
- shard-dg2: [PASS][301] -> [SKIP][302]
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg2-5/igt@prime_mmap_kms@buffer-sharing.html
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-2/igt@prime_mmap_kms@buffer-sharing.html
* igt@prime_vgem@basic-fence-flip:
- shard-dg1: NOTRUN -> [SKIP][303] ([i915#3708])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-19/igt@prime_vgem@basic-fence-flip.html
* igt@sriov_basic@bind-unbind-vf:
- shard-tglu-1: NOTRUN -> [SKIP][304] ([i915#9917]) +1 other test skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-1/igt@sriov_basic@bind-unbind-vf.html
#### Possible fixes ####
* igt@debugfs_test@read_all_entries:
- shard-dg1: [DMESG-WARN][305] ([i915#4423]) -> [PASS][306] +1 other test pass
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg1-17/igt@debugfs_test@read_all_entries.html
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-14/igt@debugfs_test@read_all_entries.html
* igt@gem_ctx_engines@invalid-engines:
- shard-tglu: [FAIL][307] ([i915#12031]) -> [PASS][308]
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-tglu-9/igt@gem_ctx_engines@invalid-engines.html
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-9/igt@gem_ctx_engines@invalid-engines.html
- shard-mtlp: [FAIL][309] ([i915#12031]) -> [PASS][310]
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-mtlp-5/igt@gem_ctx_engines@invalid-engines.html
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-mtlp-2/igt@gem_ctx_engines@invalid-engines.html
* igt@gem_ctx_freq@sysfs@gt0:
- shard-dg2: [FAIL][311] ([i915#9561]) -> [PASS][312] +1 other test pass
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg2-1/igt@gem_ctx_freq@sysfs@gt0.html
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-2/igt@gem_ctx_freq@sysfs@gt0.html
* igt@gem_eio@in-flight-suspend:
- shard-dg2: [INCOMPLETE][313] -> [PASS][314]
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg2-3/igt@gem_eio@in-flight-suspend.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-4/igt@gem_eio@in-flight-suspend.html
* igt@gem_exec_balancer@sliced:
- shard-glk: [INCOMPLETE][315] -> [PASS][316]
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-glk2/igt@gem_exec_balancer@sliced.html
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-glk1/igt@gem_exec_balancer@sliced.html
* igt@gem_exec_big@single:
- shard-tglu: [ABORT][317] ([i915#11713]) -> [PASS][318]
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-tglu-8/igt@gem_exec_big@single.html
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-8/igt@gem_exec_big@single.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [FAIL][319] ([i915#2842]) -> [PASS][320] +1 other test pass
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-glk6/igt@gem_exec_fair@basic-pace-share@rcs0.html
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-glk6/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-dg2: [SKIP][321] ([i915#9197]) -> [PASS][322] +14 other tests pass
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg2-2/igt@kms_async_flips@async-flip-suspend-resume.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-3/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1:
- shard-snb: [FAIL][323] ([i915#5956]) -> [PASS][324] +1 other test pass
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-snb4/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-snb4/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
* igt@kms_color@deep-color:
- shard-dg2: [SKIP][325] ([i915#3555]) -> [PASS][326] +1 other test pass
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg2-7/igt@kms_color@deep-color.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-10/igt@kms_color@deep-color.html
* igt@kms_flip@2x-plain-flip-ts-check@ac-hdmi-a1-hdmi-a2:
- shard-glk: [FAIL][327] ([i915#2122]) -> [PASS][328] +2 other tests pass
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-glk4/igt@kms_flip@2x-plain-flip-ts-check@ac-hdmi-a1-hdmi-a2.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-glk2/igt@kms_flip@2x-plain-flip-ts-check@ac-hdmi-a1-hdmi-a2.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
- shard-rkl: [FAIL][329] ([i915#2122]) -> [PASS][330]
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-rkl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-rkl-6/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a2:
- shard-rkl: [FAIL][331] ([i915#11961]) -> [PASS][332]
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-rkl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a2.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-rkl-6/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a2.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible:
- shard-tglu: [FAIL][333] ([i915#2122]) -> [PASS][334] +1 other test pass
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-tglu-7/igt@kms_flip@plain-flip-fb-recreate-interruptible.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-tglu-7/igt@kms_flip@plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@plain-flip-ts-check-interruptible:
- shard-snb: [FAIL][335] ([i915#2122]) -> [PASS][336] +1 other test pass
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-snb4/igt@kms_flip@plain-flip-ts-check-interruptible.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-snb6/igt@kms_flip@plain-flip-ts-check-interruptible.html
* igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a3:
- shard-dg2: [FAIL][337] ([i915#2122]) -> [PASS][338]
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg2-6/igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a3.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-1/igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a3.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: [SKIP][339] ([i915#5354]) -> [PASS][340]
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu.html
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt:
- shard-dg2: [FAIL][341] ([i915#6880]) -> [PASS][342] +1 other test pass
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt:
- shard-snb: [SKIP][343] -> [PASS][344]
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_hdr@static-swap:
- shard-dg2: [SKIP][345] ([i915#3555] / [i915#8228]) -> [PASS][346]
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg2-7/igt@kms_hdr@static-swap.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-10/igt@kms_hdr@static-swap.html
* igt@kms_plane@plane-panning-bottom-right:
- shard-dg2: [SKIP][347] ([i915#8825]) -> [PASS][348]
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg2-2/igt@kms_plane@plane-panning-bottom-right.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-3/igt@kms_plane@plane-panning-bottom-right.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-rkl: [FAIL][349] ([i915#8292]) -> [PASS][350]
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-rkl-1/igt@kms_plane_scaling@intel-max-src-size.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-rkl-4/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg2: [SKIP][351] ([i915#9519]) -> [PASS][352]
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg2-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-5/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-rkl: [SKIP][353] ([i915#9519]) -> [PASS][354]
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp.html
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_properties@invalid-properties-atomic:
- shard-dg1: [DMESG-WARN][355] ([i915#4391] / [i915#4423]) -> [PASS][356]
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg1-15/igt@kms_properties@invalid-properties-atomic.html
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-14/igt@kms_properties@invalid-properties-atomic.html
* igt@kms_setmode@basic:
- shard-dg1: [FAIL][357] ([i915#5465]) -> [PASS][358]
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg1-14/igt@kms_setmode@basic.html
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-12/igt@kms_setmode@basic.html
#### Warnings ####
* igt@gem_eio@kms:
- shard-dg2: [FAIL][359] ([i915#5784]) -> [SKIP][360] ([i915#9197])
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg2-5/igt@gem_eio@kms.html
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-2/igt@gem_eio@kms.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-mtlp: [ABORT][361] ([i915#10131] / [i915#10887] / [i915#9820]) -> [ABORT][362] ([i915#10131] / [i915#9820])
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-mtlp-6/igt@i915_module_load@reload-with-fault-injection.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-mtlp-1/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_selftest@mock:
- shard-glk: [DMESG-WARN][363] ([i915#1982] / [i915#9311]) -> [DMESG-WARN][364] ([i915#9311])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-glk6/igt@i915_selftest@mock.html
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-glk6/igt@i915_selftest@mock.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-dg1: [SKIP][365] ([i915#4538] / [i915#5286]) -> [SKIP][366] ([i915#4423] / [i915#4538] / [i915#5286])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg1-18/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-15/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-270:
- shard-dg2: [SKIP][367] -> [SKIP][368] ([i915#9197]) +1 other test skip
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg2-1/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-2/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-dg2: [SKIP][369] ([i915#9197]) -> [SKIP][370]
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg2-2/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-3/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-0:
- shard-dg2: [SKIP][371] ([i915#5190] / [i915#9197]) -> [SKIP][372] ([i915#4538] / [i915#5190]) +2 other tests skip
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg2-2/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-3/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180:
- shard-dg2: [SKIP][373] ([i915#4538] / [i915#5190]) -> [SKIP][374] ([i915#5190] / [i915#9197])
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg2-1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-dg1: [SKIP][375] ([i915#4423] / [i915#4538]) -> [SKIP][376] ([i915#4538])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg1-16/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-16/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs:
- shard-dg2: [SKIP][377] ([i915#9197]) -> [SKIP][378] ([i915#10307] / [i915#6095]) +2 other tests skip
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg2-2/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs.html
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-3/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs:
- shard-dg2: [SKIP][379] ([i915#10307] / [i915#6095]) -> [SKIP][380] ([i915#9197]) +2 other tests skip
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg2-1/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-2/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg2: [SKIP][381] ([i915#3299]) -> [SKIP][382] ([i915#9197])
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg2-1/igt@kms_content_protection@dp-mst-type-1.html
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-2/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2: [SKIP][383] ([i915#9197]) -> [SKIP][384] ([i915#9424])
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg2-2/igt@kms_content_protection@lic-type-0.html
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-3/igt@kms_content_protection@lic-type-0.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-dg2: [SKIP][385] ([i915#9197]) -> [SKIP][386] ([i915#11453] / [i915#3359])
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg2-2/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-3/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-sliding-max-size:
- shard-dg2: [SKIP][387] ([i915#3555]) -> [SKIP][388] ([i915#9197])
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg2-5/igt@kms_cursor_crc@cursor-sliding-max-size.html
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-2/igt@kms_cursor_crc@cursor-sliding-max-size.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-dg2: [SKIP][389] ([i915#4103] / [i915#4213]) -> [SKIP][390] ([i915#9197])
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg2-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
- shard-dg2: [SKIP][391] ([i915#5354]) -> [SKIP][392] ([i915#9197]) +4 other tests skip
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg2-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-dg2: [SKIP][393] ([i915#9197]) -> [SKIP][394] ([i915#5354])
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-3/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-dg2: [SKIP][395] ([i915#2672] / [i915#3555]) -> [SKIP][396] ([i915#3555])
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-dg2: [SKIP][397] ([i915#2672] / [i915#3555] / [i915#5190]) -> [SKIP][398] ([i915#3555] / [i915#5190])
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-dg2: [SKIP][399] ([i915#3555]) -> [SKIP][400] ([i915#2672] / [i915#3555])
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt:
- shard-dg1: [SKIP][401] -> [SKIP][402] ([i915#4423])
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt:
- shard-dg2: [SKIP][403] ([i915#5354]) -> [SKIP][404] ([i915#8708]) +1 other test skip
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move:
- shard-dg2: [SKIP][405] ([i915#10433] / [i915#3458]) -> [SKIP][406] ([i915#3458]) +1 other test skip
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu:
- shard-dg2: [SKIP][407] ([i915#3458]) -> [SKIP][408] ([i915#5354]) +7 other tests skip
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-dg2: [SKIP][409] ([i915#9766]) -> [SKIP][410] ([i915#4342] / [i915#5354])
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg2-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-2/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite:
- shard-dg2: [SKIP][411] ([i915#5354]) -> [SKIP][412] ([i915#3458]) +3 other tests skip
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-dg1: [SKIP][413] ([i915#4423] / [i915#8708]) -> [SKIP][414] ([i915#8708])
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: [SKIP][415] ([i915#8708]) -> [SKIP][416] ([i915#5354]) +2 other tests skip
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu:
- shard-dg2: [SKIP][417] ([i915#3458]) -> [SKIP][418] ([i915#10433] / [i915#3458]) +3 other tests skip
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][419] ([i915#4070] / [i915#4816]) -> [SKIP][420] ([i915#4816])
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-rkl-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-rkl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-dg2: [SKIP][421] ([i915#12247] / [i915#3555] / [i915#8152] / [i915#9423]) -> [SKIP][422] ([i915#12247] / [i915#3555] / [i915#9423])
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d:
- shard-dg2: [SKIP][423] ([i915#12247] / [i915#8152]) -> [SKIP][424] ([i915#12247])
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: [SKIP][425] ([i915#3828]) -> [SKIP][426] ([i915#9340])
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-rkl-4/igt@kms_pm_lpsp@kms-lpsp.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-rkl-1/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-dg2: [SKIP][427] ([i915#11131] / [i915#4235]) -> [SKIP][428] ([i915#9197])
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg2-1/igt@kms_rotation_crc@primary-rotation-90.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-2/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-dg2: [SKIP][429] ([i915#5190]) -> [SKIP][430] ([i915#5190] / [i915#9197])
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg2-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@perf@non-zero-reason@0-rcs0:
- shard-dg2: [FAIL][431] ([i915#7484]) -> [FAIL][432] ([i915#9100]) +1 other test fail
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15598/shard-dg2-2/igt@perf@non-zero-reason@0-rcs0.html
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/shard-dg2-3/igt@perf@non-zero-reason@0-rcs0.html
[i915#10029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10029
[i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10729]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10729
[i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11131
[i915#11441]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11441
[i915#11453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713
[i915#11961]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11961
[i915#12031]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12031
[i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193
[i915#12231]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12231
[i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
[i915#12296]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12296
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339
[i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
[i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388
[i915#12394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394
[i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454
[i915#12548]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12548
[i915#12561]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12561
[i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[i915#2122]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122
[i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346
[i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842
[i915#2846]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2846
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
[i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#3966]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3966
[i915#4070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4087]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4087
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281
[i915#4342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4342
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitla
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140291v3/index.html
[-- Attachment #2: Type: text/html, Size: 121629 bytes --]
^ permalink raw reply [flat|nested] 29+ messages in thread