* [PATCH topic/core-for-CI 1/2] Revert "HAX suspend: Disable S3/S4 for fi-bdw-samus"
@ 2024-10-23 21:18 Lucas De Marchi
2024-10-23 21:18 ` [PATCH topic/core-for-CI 2/2] Revert "HAX sound: Disable probing snd_hda with DG1" Lucas De Marchi
` (5 more replies)
0 siblings, 6 replies; 8+ messages in thread
From: Lucas De Marchi @ 2024-10-23 21:18 UTC (permalink / raw)
To: intel-gfx; +Cc: Jani Nikula, Rodrigo Vivi, Lucas De Marchi
This reverts commit efeb42fe3b7c58abbe674515252cfdb71c09eba5.
That machine is not in CI anymore, let's drop the hack.
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
---
drivers/acpi/sleep.c | 20 --------------------
1 file changed, 20 deletions(-)
diff --git a/drivers/acpi/sleep.c b/drivers/acpi/sleep.c
index 4272cbc71ae89..c8ee8e42b0f64 100644
--- a/drivers/acpi/sleep.c
+++ b/drivers/acpi/sleep.c
@@ -84,16 +84,11 @@ static int acpi_sleep_prepare(u32 acpi_state)
return 0;
}
-static u8 max_sleep_state = -1;
-
bool acpi_sleep_state_supported(u8 sleep_state)
{
acpi_status status;
u8 type_a, type_b;
- if (sleep_state > max_sleep_state)
- return false;
-
status = acpi_get_sleep_type_data(sleep_state, &type_a, &type_b);
return ACPI_SUCCESS(status) && (!acpi_gbl_reduced_hardware
|| (acpi_gbl_FADT.sleep_control.address
@@ -170,13 +165,6 @@ static int __init init_nvs_nosave(const struct dmi_system_id *d)
return 0;
}
-static int __init init_nosleep(const struct dmi_system_id *d)
-{
- pr_info("Disabling ACPI suspend\n");
- max_sleep_state = 0;
- return 0;
-}
-
bool acpi_sleep_default_s3;
static int __init init_default_s3(const struct dmi_system_id *d)
@@ -411,14 +399,6 @@ static const struct dmi_system_id acpisleep_dmi_table[] __initconst = {
DMI_MATCH(DMI_PRODUCT_NAME, "20GGA00L00"),
},
},
- {
- .callback = init_nosleep,
- .ident = "samus",
- .matches = {
- DMI_MATCH(DMI_SYS_VENDOR, "GOOGLE"),
- DMI_MATCH(DMI_PRODUCT_NAME, "Samus"),
- },
- },
{},
};
--
2.47.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH topic/core-for-CI 2/2] Revert "HAX sound: Disable probing snd_hda with DG1"
2024-10-23 21:18 [PATCH topic/core-for-CI 1/2] Revert "HAX suspend: Disable S3/S4 for fi-bdw-samus" Lucas De Marchi
@ 2024-10-23 21:18 ` Lucas De Marchi
2024-10-24 10:23 ` Jani Nikula
2024-10-24 8:30 ` ✗ Fi.CI.CHECKPATCH: warning for series starting with [topic/core-for-CI,1/2] Revert "HAX suspend: Disable S3/S4 for fi-bdw-samus" Patchwork
` (4 subsequent siblings)
5 siblings, 1 reply; 8+ messages in thread
From: Lucas De Marchi @ 2024-10-23 21:18 UTC (permalink / raw)
To: intel-gfx; +Cc: Jani Nikula, Rodrigo Vivi, Lucas De Marchi
This reverts commit 852510ccd334063bec2c2c3e5a61a071599ac015.
This should be solved already since commit e6d0c13e9f46 ("ALSA: hda:
i915: Remove extra argument from snd_hdac_i915_init").
We can try to drop it and see if anything explodes on dg1 land.
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
---
sound/hda/hdac_i915.c | 23 -----------------------
sound/pci/hda/hda_intel.c | 3 +++
2 files changed, 3 insertions(+), 23 deletions(-)
diff --git a/sound/hda/hdac_i915.c b/sound/hda/hdac_i915.c
index a214636ed9757..e9425213320ea 100644
--- a/sound/hda/hdac_i915.c
+++ b/sound/hda/hdac_i915.c
@@ -170,26 +170,6 @@ static int i915_gfx_present(struct pci_dev *hdac_pci)
return false;
}
-static bool dg1_gfx_present(void)
-{
- static const struct pci_device_id ids[] = {
- { PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x4905),
- .class = PCI_BASE_CLASS_DISPLAY << 16,
- .class_mask = 0xff << 16 },
- { PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x4906),
- .class = PCI_BASE_CLASS_DISPLAY << 16,
- .class_mask = 0xff << 16 },
- { PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x4907),
- .class = PCI_BASE_CLASS_DISPLAY << 16,
- .class_mask = 0xff << 16 },
- { PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x4908),
- .class = PCI_BASE_CLASS_DISPLAY << 16,
- .class_mask = 0xff << 16 },
- {}
- };
- return pci_dev_present(ids);
-}
-
/**
* snd_hdac_i915_init - Initialize i915 audio component
* @bus: HDA core bus
@@ -210,9 +190,6 @@ int snd_hdac_i915_init(struct hdac_bus *bus)
if (!i915_gfx_present(to_pci_dev(bus->dev)))
return -ENODEV;
- if (dg1_gfx_present())
- return -ENODEV;
-
err = snd_hdac_acomp_init(bus, NULL,
i915_component_master_match,
sizeof(struct i915_audio_component) - sizeof(*acomp));
diff --git a/sound/pci/hda/hda_intel.c b/sound/pci/hda/hda_intel.c
index 282e87cc2166b..b4540c5cd2a6f 100644
--- a/sound/pci/hda/hda_intel.c
+++ b/sound/pci/hda/hda_intel.c
@@ -2143,6 +2143,9 @@ static int azx_probe(struct pci_dev *pci,
* codecs can be on the same link.
*/
if (HDA_CONTROLLER_IN_GPU(pci)) {
+ dev_err_probe(card->dev, err,
+ "HSW/BDW HD-audio HDMI/DP requires binding with gfx driver\n");
+
goto out_free;
} else {
/* don't bother any longer */
--
2.47.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* ✗ Fi.CI.CHECKPATCH: warning for series starting with [topic/core-for-CI,1/2] Revert "HAX suspend: Disable S3/S4 for fi-bdw-samus"
2024-10-23 21:18 [PATCH topic/core-for-CI 1/2] Revert "HAX suspend: Disable S3/S4 for fi-bdw-samus" Lucas De Marchi
2024-10-23 21:18 ` [PATCH topic/core-for-CI 2/2] Revert "HAX sound: Disable probing snd_hda with DG1" Lucas De Marchi
@ 2024-10-24 8:30 ` Patchwork
2024-10-24 8:30 ` ✓ Fi.CI.BAT: success " Patchwork
` (3 subsequent siblings)
5 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2024-10-24 8:30 UTC (permalink / raw)
To: Lucas De Marchi; +Cc: intel-gfx
== Series Details ==
Series: series starting with [topic/core-for-CI,1/2] Revert "HAX suspend: Disable S3/S4 for fi-bdw-samus"
URL : https://patchwork.freedesktop.org/series/140396/
State : warning
== Summary ==
Error: dim checkpatch failed
1fdee4eff8f7 Revert "HAX suspend: Disable S3/S4 for fi-bdw-samus"
0bd4276ec72a Revert "HAX sound: Disable probing snd_hda with DG1"
-:65: CHECK:PARENTHESIS_ALIGNMENT: Alignment should match open parenthesis
#65: FILE: sound/pci/hda/hda_intel.c:2147:
+ dev_err_probe(card->dev, err,
+ "HSW/BDW HD-audio HDMI/DP requires binding with gfx driver\n");
total: 0 errors, 0 warnings, 1 checks, 44 lines checked
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ Fi.CI.BAT: success for series starting with [topic/core-for-CI,1/2] Revert "HAX suspend: Disable S3/S4 for fi-bdw-samus"
2024-10-23 21:18 [PATCH topic/core-for-CI 1/2] Revert "HAX suspend: Disable S3/S4 for fi-bdw-samus" Lucas De Marchi
2024-10-23 21:18 ` [PATCH topic/core-for-CI 2/2] Revert "HAX sound: Disable probing snd_hda with DG1" Lucas De Marchi
2024-10-24 8:30 ` ✗ Fi.CI.CHECKPATCH: warning for series starting with [topic/core-for-CI,1/2] Revert "HAX suspend: Disable S3/S4 for fi-bdw-samus" Patchwork
@ 2024-10-24 8:30 ` Patchwork
2024-10-24 10:00 ` ✗ Fi.CI.IGT: failure " Patchwork
` (2 subsequent siblings)
5 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2024-10-24 8:30 UTC (permalink / raw)
To: Lucas De Marchi; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 5155 bytes --]
== Series Details ==
Series: series starting with [topic/core-for-CI,1/2] Revert "HAX suspend: Disable S3/S4 for fi-bdw-samus"
URL : https://patchwork.freedesktop.org/series/140396/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_15587 -> Patchwork_140396v1
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/index.html
Participating hosts (47 -> 45)
------------------------------
Missing (2): fi-snb-2520m bat-adls-6
Known issues
------------
Here are the changes found in Patchwork_140396v1 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_chamelium_edid@hdmi-edid-read:
- bat-dg2-13: [PASS][1] -> [DMESG-WARN][2] ([i915#12253])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html
#### Possible fixes ####
* igt@i915_selftest@live:
- bat-twl-1: [INCOMPLETE][3] ([i915#12133] / [i915#9413]) -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/bat-twl-1/igt@i915_selftest@live.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/bat-twl-1/igt@i915_selftest@live.html
- bat-arls-2: [ABORT][5] ([i915#12133]) -> [PASS][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/bat-arls-2/igt@i915_selftest@live.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/bat-arls-2/igt@i915_selftest@live.html
* igt@i915_selftest@live@gt_lrc:
- bat-twl-1: [INCOMPLETE][7] ([i915#9413]) -> [PASS][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/bat-twl-1/igt@i915_selftest@live@gt_lrc.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/bat-twl-1/igt@i915_selftest@live@gt_lrc.html
* igt@i915_selftest@live@workarounds:
- bat-arls-2: [ABORT][9] ([i915#12061]) -> [PASS][10]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/bat-arls-2/igt@i915_selftest@live@workarounds.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/bat-arls-2/igt@i915_selftest@live@workarounds.html
* igt@kms_hdmi_inject@inject-audio:
- bat-dg1-7: [SKIP][11] ([i915#433]) -> [PASS][12]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/bat-dg1-7/igt@kms_hdmi_inject@inject-audio.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/bat-dg1-7/igt@kms_hdmi_inject@inject-audio.html
- bat-dg1-6: [SKIP][13] ([i915#12311]) -> [PASS][14]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/bat-dg1-6/igt@kms_hdmi_inject@inject-audio.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/bat-dg1-6/igt@kms_hdmi_inject@inject-audio.html
#### Warnings ####
* igt@fbdev@info:
- bat-dg1-6: [SKIP][15] ([i915#1849]) -> [SKIP][16] ([i915#12311] / [i915#1849])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/bat-dg1-6/igt@fbdev@info.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/bat-dg1-6/igt@fbdev@info.html
* igt@i915_selftest@live:
- bat-arlh-3: [ABORT][17] ([i915#12061] / [i915#12133]) -> [ABORT][18] ([i915#12133])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/bat-arlh-3/igt@i915_selftest@live.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/bat-arlh-3/igt@i915_selftest@live.html
* igt@prime_vgem@basic-write:
- bat-dg1-6: [SKIP][19] ([i915#11723]) -> [SKIP][20] ([i915#11723] / [i915#12311])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/bat-dg1-6/igt@prime_vgem@basic-write.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/bat-dg1-6/igt@prime_vgem@basic-write.html
[i915#11723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11723
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133
[i915#12253]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12253
[i915#12311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12311
[i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849
[i915#433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/433
[i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413
Build changes
-------------
* Linux: CI_DRM_15587 -> Patchwork_140396v1
CI-20190529: 20190529
CI_DRM_15587: 3d45ea06af2c04db741c142380d97001b3cdb5da @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8082: c8379ec8b26f3c21bae5473706b23da78bd26ffa @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_140396v1: 3d45ea06af2c04db741c142380d97001b3cdb5da @ git://anongit.freedesktop.org/gfx-ci/linux
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/index.html
[-- Attachment #2: Type: text/html, Size: 6620 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ Fi.CI.IGT: failure for series starting with [topic/core-for-CI,1/2] Revert "HAX suspend: Disable S3/S4 for fi-bdw-samus"
2024-10-23 21:18 [PATCH topic/core-for-CI 1/2] Revert "HAX suspend: Disable S3/S4 for fi-bdw-samus" Lucas De Marchi
` (2 preceding siblings ...)
2024-10-24 8:30 ` ✓ Fi.CI.BAT: success " Patchwork
@ 2024-10-24 10:00 ` Patchwork
2024-10-24 10:22 ` [PATCH topic/core-for-CI 1/2] " Jani Nikula
2024-10-28 20:59 ` Lucas De Marchi
5 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2024-10-24 10:00 UTC (permalink / raw)
To: Lucas De Marchi; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 100324 bytes --]
== Series Details ==
Series: series starting with [topic/core-for-CI,1/2] Revert "HAX suspend: Disable S3/S4 for fi-bdw-samus"
URL : https://patchwork.freedesktop.org/series/140396/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15587_full -> Patchwork_140396v1_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_140396v1_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_140396v1_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 -> 8)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_140396v1_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_color@ctm-signed@pipe-c-hdmi-a-4:
- shard-dg1: NOTRUN -> [INCOMPLETE][1] +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg1-15/igt@kms_color@ctm-signed@pipe-c-hdmi-a-4.html
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible@ac-hdmi-a1-hdmi-a2:
- shard-glk: [PASS][2] -> [FAIL][3]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-glk2/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible@ac-hdmi-a1-hdmi-a2.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-glk4/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible@ac-hdmi-a1-hdmi-a2.html
#### Warnings ####
* igt@kms_flip@plain-flip-fb-recreate@b-hdmi-a1:
- shard-tglu: [FAIL][4] ([i915#2122]) -> [FAIL][5]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-tglu-7/igt@kms_flip@plain-flip-fb-recreate@b-hdmi-a1.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-10/igt@kms_flip@plain-flip-fb-recreate@b-hdmi-a1.html
Known issues
------------
Here are the changes found in Patchwork_140396v1_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-rkl: NOTRUN -> [SKIP][6] ([i915#8411]) +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-3/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@api_intel_bb@crc32:
- shard-tglu: NOTRUN -> [SKIP][7] ([i915#6230])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-2/igt@api_intel_bb@crc32.html
* igt@device_reset@cold-reset-bound:
- shard-tglu: NOTRUN -> [SKIP][8] ([i915#11078])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-9/igt@device_reset@cold-reset-bound.html
* igt@gem_ccs@block-copy-compressed:
- shard-tglu-1: NOTRUN -> [SKIP][9] ([i915#3555] / [i915#9323])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-1/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-dg1: NOTRUN -> [SKIP][10] ([i915#3555] / [i915#9323])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg1-19/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_close_race@multigpu-basic-process:
- shard-tglu: NOTRUN -> [SKIP][11] ([i915#7697])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-2/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-rkl: NOTRUN -> [SKIP][12] ([i915#7697])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-7/igt@gem_close_race@multigpu-basic-threads.html
- shard-tglu-1: NOTRUN -> [SKIP][13] ([i915#7697])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-1/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-mtlp: NOTRUN -> [SKIP][14] ([i915#6335])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-mtlp-1/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_persistence@heartbeat-hang:
- shard-dg2: NOTRUN -> [SKIP][15] ([i915#8555])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-10/igt@gem_ctx_persistence@heartbeat-hang.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-tglu-1: NOTRUN -> [SKIP][16] ([i915#280])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-1/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_ctx_sseu@mmap-args:
- shard-rkl: NOTRUN -> [SKIP][17] ([i915#280])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-6/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@hibernate:
- shard-tglu: [PASS][18] -> [ABORT][19] ([i915#10030] / [i915#7975] / [i915#8213])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-tglu-7/igt@gem_eio@hibernate.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-10/igt@gem_eio@hibernate.html
* igt@gem_eio@reset-stress:
- shard-dg1: [PASS][20] -> [FAIL][21] ([i915#5784])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg1-19/igt@gem_eio@reset-stress.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg1-19/igt@gem_eio@reset-stress.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-rkl: NOTRUN -> [SKIP][22] ([i915#4525]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-3/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-tglu: NOTRUN -> [SKIP][23] ([i915#6334]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-9/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@capture-recoverable:
- shard-tglu-1: NOTRUN -> [SKIP][24] ([i915#6344])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-1/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_fair@basic-deadline:
- shard-glk: [PASS][25] -> [FAIL][26] ([i915#2846])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-glk6/igt@gem_exec_fair@basic-deadline.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-glk8/igt@gem_exec_fair@basic-deadline.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_15587/shard-rkl-4/igt@gem_exec_fair@basic-none-share.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-5/igt@gem_exec_fair@basic-none-share.html
* igt@gem_exec_fair@basic-none-solo:
- shard-rkl: NOTRUN -> [FAIL][29] ([i915#2842]) +1 other test fail
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-3/igt@gem_exec_fair@basic-none-solo.html
* igt@gem_exec_fair@basic-pace:
- shard-dg2: NOTRUN -> [SKIP][30] ([i915#3539])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-8/igt@gem_exec_fair@basic-pace.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [PASS][31] -> [FAIL][32] ([i915#2842]) +1 other test fail
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-glk6/igt@gem_exec_fair@basic-pace-share@rcs0.html
- shard-tglu: [PASS][33] -> [FAIL][34] ([i915#2842]) +1 other test fail
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-tglu-2/igt@gem_exec_fair@basic-pace-share@rcs0.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-9/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-rkl: [PASS][35] -> [FAIL][36] ([i915#2876])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-rkl-4/igt@gem_exec_fair@basic-pace@rcs0.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-4/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@gem_exec_fair@basic-throttle:
- shard-tglu-1: NOTRUN -> [FAIL][37] ([i915#2842]) +3 other tests fail
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-1/igt@gem_exec_fair@basic-throttle.html
* igt@gem_exec_flush@basic-wb-rw-default:
- shard-dg1: NOTRUN -> [SKIP][38] ([i915#3539] / [i915#4852])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg1-19/igt@gem_exec_flush@basic-wb-rw-default.html
* igt@gem_exec_reloc@basic-wc-cpu:
- shard-dg2: NOTRUN -> [SKIP][39] ([i915#3281]) +2 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-6/igt@gem_exec_reloc@basic-wc-cpu.html
- shard-mtlp: NOTRUN -> [SKIP][40] ([i915#3281])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-mtlp-3/igt@gem_exec_reloc@basic-wc-cpu.html
* igt@gem_exec_reloc@basic-write-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][41] ([i915#3281]) +11 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-7/igt@gem_exec_reloc@basic-write-read-noreloc.html
* igt@gem_exec_schedule@pi-ringfull@rcs0:
- shard-tglu: NOTRUN -> [FAIL][42] ([i915#12296]) +5 other tests fail
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-9/igt@gem_exec_schedule@pi-ringfull@rcs0.html
* igt@gem_exec_schedule@semaphore-power:
- shard-rkl: NOTRUN -> [SKIP][43] ([i915#7276])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-4/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_exec_suspend@basic-s0:
- shard-dg2: [PASS][44] -> [INCOMPLETE][45] ([i915#11441]) +1 other test incomplete
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-8/igt@gem_exec_suspend@basic-s0.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-5/igt@gem_exec_suspend@basic-s0.html
* igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4860])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-mtlp-1/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: NOTRUN -> [SKIP][47] ([i915#2190])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-7/igt@gem_huc_copy@huc-copy.html
- shard-tglu-1: NOTRUN -> [SKIP][48] ([i915#2190])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-1/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@massive:
- shard-glk: NOTRUN -> [SKIP][49] ([i915#4613])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-glk1/igt@gem_lmem_swapping@massive.html
* igt@gem_lmem_swapping@massive-random:
- shard-tglu-1: NOTRUN -> [SKIP][50] ([i915#4613]) +2 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-1/igt@gem_lmem_swapping@massive-random.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-rkl: NOTRUN -> [SKIP][51] ([i915#4613]) +3 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@smem-oom:
- shard-tglu: NOTRUN -> [SKIP][52] ([i915#4613]) +2 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-2/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4613]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-mtlp-1/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_mmap_gtt@medium-copy-xy:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#4077]) +3 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-6/igt@gem_mmap_gtt@medium-copy-xy.html
- shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4077]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-mtlp-3/igt@gem_mmap_gtt@medium-copy-xy.html
* igt@gem_mmap_wc@pf-nonblock:
- shard-dg2: NOTRUN -> [SKIP][56] ([i915#4083])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-10/igt@gem_mmap_wc@pf-nonblock.html
* igt@gem_mmap_wc@read-write:
- shard-dg1: NOTRUN -> [SKIP][57] ([i915#4083])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg1-19/igt@gem_mmap_wc@read-write.html
* igt@gem_partial_pwrite_pread@write-snoop:
- shard-dg1: NOTRUN -> [SKIP][58] ([i915#3282])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg1-14/igt@gem_partial_pwrite_pread@write-snoop.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-rkl: NOTRUN -> [SKIP][59] ([i915#3282]) +4 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-7/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pxp@create-valid-protected-context:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#4270])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-8/igt@gem_pxp@create-valid-protected-context.html
* igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
- shard-rkl: NOTRUN -> [SKIP][61] ([i915#4270]) +2 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-7/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
- shard-tglu-1: NOTRUN -> [SKIP][62] ([i915#4270]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-1/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
- shard-dg1: NOTRUN -> [SKIP][63] ([i915#4270])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg1-14/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
* igt@gem_pxp@verify-pxp-stale-buf-execution:
- shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4270]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-mtlp-3/igt@gem_pxp@verify-pxp-stale-buf-execution.html
* igt@gem_pxp@verify-pxp-stale-ctx-execution:
- shard-tglu: NOTRUN -> [SKIP][65] ([i915#4270]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-2/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
* igt@gem_render_copy@yf-tiled-ccs-to-y-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][66] ([i915#8428]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-mtlp-3/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled-ccs.html
* igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#5190] / [i915#8428]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-8/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg2: NOTRUN -> [SKIP][68] ([i915#3297]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-10/igt@gem_userptr_blits@create-destroy-unsync.html
- shard-mtlp: NOTRUN -> [SKIP][69] ([i915#3297])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-mtlp-3/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@forbidden-operations:
- shard-rkl: NOTRUN -> [SKIP][70] ([i915#3282] / [i915#3297])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-3/igt@gem_userptr_blits@forbidden-operations.html
* igt@gem_userptr_blits@relocations:
- shard-rkl: NOTRUN -> [SKIP][71] ([i915#3281] / [i915#3297])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-3/igt@gem_userptr_blits@relocations.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-rkl: NOTRUN -> [SKIP][72] ([i915#3297])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-7/igt@gem_userptr_blits@unsync-unmap-cycles.html
- shard-tglu-1: NOTRUN -> [SKIP][73] ([i915#3297])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-1/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-tglu: NOTRUN -> [SKIP][74] ([i915#2527] / [i915#2856]) +2 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-2/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@gen9_exec_parse@bb-oversize:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#2856])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-8/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-tglu-1: NOTRUN -> [SKIP][76] ([i915#2527] / [i915#2856]) +2 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-1/igt@gen9_exec_parse@bb-start-cmd.html
* igt@gen9_exec_parse@bb-start-param:
- shard-dg1: NOTRUN -> [SKIP][77] ([i915#2527])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg1-17/igt@gen9_exec_parse@bb-start-param.html
* igt@gen9_exec_parse@shadow-peek:
- shard-rkl: NOTRUN -> [SKIP][78] ([i915#2527]) +4 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-4/igt@gen9_exec_parse@shadow-peek.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-tglu: [PASS][79] -> [ABORT][80] ([i915#9820])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-tglu-4/igt@i915_module_load@reload-with-fault-injection.html
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-6/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_api@freq-reset:
- shard-tglu: NOTRUN -> [SKIP][81] ([i915#8399])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-2/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_rc6_residency@media-rc6-accuracy:
- shard-dg1: NOTRUN -> [SKIP][82] +7 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg1-16/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-rkl: [PASS][83] -> [INCOMPLETE][84] ([i915#4817])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-rkl-7/igt@i915_suspend@basic-s3-without-i915.html
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-6/igt@i915_suspend@basic-s3-without-i915.html
* igt@intel_hwmon@hwmon-read:
- shard-tglu: NOTRUN -> [SKIP][85] ([i915#7707])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-9/igt@intel_hwmon@hwmon-read.html
* igt@kms_addfb_basic@addfb25-yf-tiled-legacy:
- shard-dg1: NOTRUN -> [DMESG-WARN][86] ([i915#4423]) +1 other test dmesg-warn
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg1-16/igt@kms_addfb_basic@addfb25-yf-tiled-legacy.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][87] ([i915#8709]) +3 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][88] ([i915#8709]) +11 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-mtlp: NOTRUN -> [SKIP][89] ([i915#3555])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-mtlp-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#1769] / [i915#3555])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-rkl: NOTRUN -> [SKIP][91] ([i915#1769] / [i915#3555])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1:
- shard-mtlp: [PASS][92] -> [FAIL][93] ([i915#11808] / [i915#5956]) +1 other test fail
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-mtlp-7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-mtlp-8/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-0:
- shard-tglu: NOTRUN -> [SKIP][94] ([i915#5286]) +3 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-2/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][95] ([i915#5286]) +4 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-3/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
- shard-dg1: NOTRUN -> [SKIP][96] ([i915#5286])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg1-19/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-tglu-1: NOTRUN -> [SKIP][97] ([i915#5286]) +4 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][98] ([i915#3638]) +6 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-6/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@linear-8bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][99]
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-8/igt@kms_big_fb@linear-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-180:
- shard-dg2: NOTRUN -> [SKIP][100] ([i915#4538] / [i915#5190]) +1 other test skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-10/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-mtlp: NOTRUN -> [SKIP][101] +6 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-mtlp-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][102] ([i915#4538]) +1 other test skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg1-14/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][103] ([i915#12313])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-8/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][104] ([i915#6095]) +71 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-1/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][105] ([i915#4423] / [i915#6095])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg1-16/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-dp-3:
- shard-dg2: NOTRUN -> [SKIP][106] ([i915#10307] / [i915#6095]) +168 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-10/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-dp-3.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-rkl: NOTRUN -> [SKIP][107] ([i915#12313]) +1 other test skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-3/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][108] ([i915#6095]) +122 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg1-13/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-3.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][109] ([i915#12313])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-basic-y-tiled-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][110] ([i915#6095]) +29 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-1/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][111] ([i915#10307] / [i915#10434] / [i915#6095]) +4 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-8/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][112] ([i915#6095]) +19 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-mtlp-3/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-a-edp-1.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs:
- shard-tglu: NOTRUN -> [SKIP][113] ([i915#6095]) +54 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-2/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs.html
* igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#4087]) +3 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-6/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html
* igt@kms_chamelium_edid@vga-edid-read:
- shard-mtlp: NOTRUN -> [SKIP][115] ([i915#7828])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-mtlp-1/igt@kms_chamelium_edid@vga-edid-read.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-tglu-1: NOTRUN -> [SKIP][116] ([i915#7828]) +5 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-1/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_chamelium_frames@dp-frame-dump:
- shard-rkl: NOTRUN -> [SKIP][117] ([i915#7828]) +8 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-3/igt@kms_chamelium_frames@dp-frame-dump.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-tglu: NOTRUN -> [SKIP][118] ([i915#7828]) +4 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-2/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-rkl: NOTRUN -> [SKIP][119] ([i915#3116])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2: NOTRUN -> [SKIP][120] ([i915#9424])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-3/igt@kms_content_protection@lic-type-0.html
- shard-tglu-1: NOTRUN -> [SKIP][121] ([i915#6944] / [i915#9424])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-1/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@lic-type-1:
- shard-mtlp: NOTRUN -> [SKIP][122] ([i915#6944] / [i915#9424])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-mtlp-7/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@type1:
- shard-tglu: NOTRUN -> [SKIP][123] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +1 other test skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-9/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-256x85:
- shard-mtlp: NOTRUN -> [SKIP][124] ([i915#8814])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-mtlp-3/igt@kms_cursor_crc@cursor-offscreen-256x85.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-rkl: NOTRUN -> [SKIP][125] ([i915#11453] / [i915#3359]) +1 other test skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-3/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-tglu: NOTRUN -> [SKIP][126] ([i915#3555]) +4 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-9/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-tglu: NOTRUN -> [SKIP][127] ([i915#11453] / [i915#3359])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-2/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-tglu-1: NOTRUN -> [SKIP][128] ([i915#11453] / [i915#3359])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-rkl: NOTRUN -> [SKIP][129] ([i915#8588])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-6/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-tglu: NOTRUN -> [SKIP][130] ([i915#1769] / [i915#3555] / [i915#3804])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-9/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][131] ([i915#3804])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
- shard-tglu: NOTRUN -> [SKIP][132] ([i915#3804])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-9/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_aux_dev:
- shard-tglu-1: NOTRUN -> [SKIP][133] ([i915#1257])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-1/igt@kms_dp_aux_dev.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-rkl: NOTRUN -> [SKIP][134] ([i915#12402])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-4/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dsc@dsc-basic:
- shard-tglu-1: NOTRUN -> [SKIP][135] ([i915#3555] / [i915#3840])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-1/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-tglu: NOTRUN -> [SKIP][136] ([i915#3840])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-9/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][137] ([i915#3840])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-8/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_feature_discovery@display-4x:
- shard-tglu: NOTRUN -> [SKIP][138] ([i915#1839])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-2/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@psr1:
- shard-rkl: NOTRUN -> [SKIP][139] ([i915#658])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-6/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-tglu-1: NOTRUN -> [SKIP][140] ([i915#3637] / [i915#3966]) +1 other test skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-1/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-tglu-1: NOTRUN -> [SKIP][141] ([i915#3637]) +4 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-1/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-tglu: NOTRUN -> [SKIP][142] ([i915#3637]) +3 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-9/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][143] ([i915#3637]) +1 other test skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-mtlp-3/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#5354]) +7 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-8/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
- shard-glk: [PASS][145] -> [FAIL][146] ([i915#12403])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-glk2/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-glk4/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-dg1: NOTRUN -> [SKIP][147] ([i915#9934])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg1-19/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-rkl: NOTRUN -> [SKIP][148] +18 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-4/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@blocking-wf_vblank@b-hdmi-a2:
- shard-rkl: [PASS][149] -> [FAIL][150] ([i915#12457])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-rkl-1/igt@kms_flip@blocking-wf_vblank@b-hdmi-a2.html
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-3/igt@kms_flip@blocking-wf_vblank@b-hdmi-a2.html
* igt@kms_flip@flip-vs-suspend:
- shard-dg1: [PASS][151] -> [INCOMPLETE][152] ([i915#4839] / [i915#6113])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg1-15/igt@kms_flip@flip-vs-suspend.html
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg1-12/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend@d-hdmi-a3:
- shard-dg1: NOTRUN -> [INCOMPLETE][153] ([i915#6113])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg1-12/igt@kms_flip@flip-vs-suspend@d-hdmi-a3.html
* igt@kms_flip@plain-flip-fb-recreate@a-hdmi-a4:
- shard-dg1: [PASS][154] -> [FAIL][155] ([i915#2122]) +3 other tests fail
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg1-17/igt@kms_flip@plain-flip-fb-recreate@a-hdmi-a4.html
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg1-18/igt@kms_flip@plain-flip-fb-recreate@a-hdmi-a4.html
* igt@kms_flip@plain-flip-fb-recreate@d-hdmi-a1:
- shard-tglu: [PASS][156] -> [FAIL][157] ([i915#2122])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-tglu-7/igt@kms_flip@plain-flip-fb-recreate@d-hdmi-a1.html
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-10/igt@kms_flip@plain-flip-fb-recreate@d-hdmi-a1.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@d-hdmi-a1:
- shard-tglu: NOTRUN -> [FAIL][158] ([i915#2122]) +1 other test fail
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-2/igt@kms_flip@wf_vblank-ts-check-interruptible@d-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-tglu: NOTRUN -> [SKIP][159] ([i915#2672] / [i915#3555]) +2 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][160] ([i915#2672]) +4 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-tglu-1: NOTRUN -> [SKIP][161] ([i915#2672] / [i915#3555]) +1 other test skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][162] ([i915#2587] / [i915#2672]) +1 other test skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-mtlp: NOTRUN -> [SKIP][163] ([i915#2672] / [i915#3555] / [i915#8813])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-mtlp-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-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][164] ([i915#2672] / [i915#8813])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling:
- shard-dg2: NOTRUN -> [SKIP][165] ([i915#2672] / [i915#3555] / [i915#5190])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-tglu: NOTRUN -> [SKIP][166] ([i915#2587] / [i915#2672] / [i915#3555])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][167] ([i915#2587] / [i915#2672]) +3 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][168] ([i915#2672] / [i915#3555]) +4 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-dg2: [PASS][169] -> [SKIP][170] ([i915#3555]) +3 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#2672]) +3 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite:
- shard-dg2: [PASS][172] -> [SKIP][173] ([i915#5354]) +14 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-snb: NOTRUN -> [SKIP][174] +18 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render:
- shard-mtlp: NOTRUN -> [SKIP][175] ([i915#1825]) +6 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
- shard-dg1: NOTRUN -> [SKIP][176] ([i915#4423])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][177] ([i915#8708])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt:
- shard-dg1: NOTRUN -> [SKIP][178] ([i915#3458] / [i915#4423])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][179] ([i915#3023]) +15 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-pwrite:
- shard-tglu: NOTRUN -> [SKIP][180] +57 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][181] ([i915#1825]) +39 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][182] ([i915#3458]) +2 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-tglu-1: NOTRUN -> [SKIP][183] +57 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-fullscreen:
- shard-dg1: NOTRUN -> [SKIP][184] ([i915#3458]) +1 other test skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][185] ([i915#8708]) +3 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-tglu: NOTRUN -> [SKIP][186] ([i915#3555] / [i915#8228]) +1 other test skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-2/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle-suspend:
- shard-rkl: NOTRUN -> [SKIP][187] ([i915#3555] / [i915#8228]) +1 other test skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-6/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][188] ([i915#10656])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-6/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][189] ([i915#12388])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-2/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][190] ([i915#12394])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-3/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-dg1: NOTRUN -> [SKIP][191] ([i915#12339])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg1-19/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][192] ([i915#12339])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-1/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_lease@lease-revoke:
- shard-dg2: [PASS][193] -> [SKIP][194] ([i915#9197]) +36 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-1/igt@kms_lease@lease-revoke.html
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-2/igt@kms_lease@lease-revoke.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb:
- shard-dg2: [PASS][195] -> [SKIP][196] ([i915#7294])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-1/igt@kms_plane_alpha_blend@alpha-transparent-fb.html
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-2/igt@kms_plane_alpha_blend@alpha-transparent-fb.html
* igt@kms_plane_lowres@tiling-x:
- shard-mtlp: NOTRUN -> [SKIP][197] ([i915#3582])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-mtlp-1/igt@kms_plane_lowres@tiling-x.html
* igt@kms_plane_lowres@tiling-x@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][198] ([i915#10226] / [i915#11614] / [i915#3582]) +2 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-mtlp-1/igt@kms_plane_lowres@tiling-x@pipe-c-edp-1.html
* igt@kms_plane_lowres@tiling-x@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][199] ([i915#11614] / [i915#3582])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-mtlp-1/igt@kms_plane_lowres@tiling-x@pipe-d-edp-1.html
* igt@kms_plane_lowres@tiling-yf:
- shard-tglu-1: NOTRUN -> [SKIP][200] ([i915#3555]) +2 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-1/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-mtlp: NOTRUN -> [SKIP][201] ([i915#9809])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-mtlp-3/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
- shard-dg2: NOTRUN -> [SKIP][202] ([i915#5354] / [i915#9423])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-10/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [FAIL][203] ([i915#8292]) +1 other test fail
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-9/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [FAIL][204] ([i915#8292])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg1-17/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
- shard-dg2: NOTRUN -> [SKIP][205] ([i915#12247] / [i915#9423])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-8/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: NOTRUN -> [SKIP][206] ([i915#12247]) +3 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-8/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b:
- shard-rkl: NOTRUN -> [SKIP][207] ([i915#12247]) +7 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][208] ([i915#12247]) +4 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-2/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d:
- shard-dg2: [PASS][209] -> [SKIP][210] ([i915#12247] / [i915#8152]) +3 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-1/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d.html
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25:
- shard-tglu-1: NOTRUN -> [SKIP][211] ([i915#12247] / [i915#6953]) +1 other test skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
- shard-dg1: NOTRUN -> [SKIP][212] ([i915#12247] / [i915#4423] / [i915#6953])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg1-16/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
- shard-mtlp: NOTRUN -> [SKIP][213] ([i915#12247] / [i915#6953])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-mtlp-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-a:
- shard-dg1: NOTRUN -> [SKIP][214] ([i915#12247] / [i915#4423])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg1-16/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b:
- shard-mtlp: NOTRUN -> [SKIP][215] ([i915#12247]) +3 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-mtlp-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c:
- shard-dg1: NOTRUN -> [SKIP][216] ([i915#12247]) +2 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg1-16/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20:
- shard-dg2: [PASS][217] -> [SKIP][218] ([i915#12247] / [i915#8152] / [i915#9423]) +2 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-1/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20.html
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25:
- shard-dg2: [PASS][219] -> [SKIP][220] ([i915#6953] / [i915#8152] / [i915#9423])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-a:
- shard-dg2: [PASS][221] -> [SKIP][222] ([i915#12247]) +11 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-a.html
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-a.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25:
- shard-rkl: NOTRUN -> [SKIP][223] ([i915#12247] / [i915#6953])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-3/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c:
- shard-tglu-1: NOTRUN -> [SKIP][224] ([i915#12247]) +12 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c.html
* igt@kms_pm_backlight@fade:
- shard-tglu: NOTRUN -> [SKIP][225] ([i915#9812])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-2/igt@kms_pm_backlight@fade.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][226] ([i915#9812])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-1/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-tglu: NOTRUN -> [SKIP][227] ([i915#9685])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-2/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu-1: NOTRUN -> [FAIL][228] ([i915#9295])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-1/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu: [PASS][229] -> [SKIP][230] ([i915#4281])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-tglu-6/igt@kms_pm_dc@dc9-dpms.html
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-8/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-tglu: NOTRUN -> [SKIP][231] ([i915#8430])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-2/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-tglu: NOTRUN -> [SKIP][232] ([i915#9519])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-9/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#9519])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-8/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-rkl: [PASS][234] -> [SKIP][235] ([i915#9519]) +2 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp.html
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_prime@basic-crc-hybrid:
- shard-tglu: NOTRUN -> [SKIP][236] ([i915#6524])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-2/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_properties@plane-properties-legacy:
- shard-dg2: [PASS][237] -> [SKIP][238] ([i915#11521])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-1/igt@kms_properties@plane-properties-legacy.html
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-2/igt@kms_properties@plane-properties-legacy.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-dg2: NOTRUN -> [SKIP][239] ([i915#11520]) +2 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
- shard-mtlp: NOTRUN -> [SKIP][240] ([i915#12316]) +3 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-mtlp-3/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-tglu: NOTRUN -> [SKIP][241] ([i915#11520]) +5 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-2/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
- shard-tglu-1: NOTRUN -> [SKIP][242] ([i915#11520]) +5 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][243] ([i915#11520]) +6 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-3/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][244] ([i915#9808])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-mtlp-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area@pipe-a-edp-1.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][245] ([i915#11520])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-glk8/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-glk: NOTRUN -> [SKIP][246] +43 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-glk8/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-rkl: NOTRUN -> [SKIP][247] ([i915#9683])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-7/igt@kms_psr2_su@page_flip-nv12.html
- shard-tglu-1: NOTRUN -> [SKIP][248] ([i915#9683])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-1/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-p010:
- shard-tglu: NOTRUN -> [SKIP][249] ([i915#9683])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-2/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-psr-no-drrs:
- shard-mtlp: NOTRUN -> [SKIP][250] ([i915#9688]) +5 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-mtlp-3/igt@kms_psr@fbc-psr-no-drrs.html
* igt@kms_psr@fbc-psr-primary-page-flip:
- shard-dg1: NOTRUN -> [SKIP][251] ([i915#1072] / [i915#9732]) +2 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg1-18/igt@kms_psr@fbc-psr-primary-page-flip.html
* igt@kms_psr@pr-cursor-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][252] ([i915#1072] / [i915#9732]) +17 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-7/igt@kms_psr@pr-cursor-mmap-cpu.html
- shard-tglu-1: NOTRUN -> [SKIP][253] ([i915#9732]) +13 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-1/igt@kms_psr@pr-cursor-mmap-cpu.html
* igt@kms_psr@psr-basic:
- shard-tglu: NOTRUN -> [SKIP][254] ([i915#9732]) +14 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-2/igt@kms_psr@psr-basic.html
* igt@kms_psr@psr-cursor-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][255] ([i915#1072] / [i915#9732]) +7 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-8/igt@kms_psr@psr-cursor-mmap-gtt.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-tglu-1: NOTRUN -> [SKIP][256] ([i915#9685])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-tglu: NOTRUN -> [SKIP][257] ([i915#5289])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-9/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-tglu-1: NOTRUN -> [SKIP][258] ([i915#5289])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-rkl: NOTRUN -> [SKIP][259] ([i915#3555]) +3 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-6/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_selftest@drm_framebuffer:
- shard-rkl: NOTRUN -> [ABORT][260] ([i915#12231]) +1 other test abort
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-4/igt@kms_selftest@drm_framebuffer.html
* igt@kms_setmode@basic@pipe-b-hdmi-a-1:
- shard-snb: [PASS][261] -> [FAIL][262] ([i915#5465])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-snb5/igt@kms_setmode@basic@pipe-b-hdmi-a-1.html
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-snb4/igt@kms_setmode@basic@pipe-b-hdmi-a-1.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-tglu: NOTRUN -> [SKIP][263] ([i915#8623])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@max-min:
- shard-rkl: NOTRUN -> [SKIP][264] ([i915#9906])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-4/igt@kms_vrr@max-min.html
* igt@kms_vrr@negative-basic:
- shard-rkl: NOTRUN -> [SKIP][265] ([i915#3555] / [i915#9906])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-7/igt@kms_vrr@negative-basic.html
- shard-tglu-1: NOTRUN -> [SKIP][266] ([i915#3555] / [i915#9906])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-1/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-tglu-1: NOTRUN -> [SKIP][267] ([i915#9906])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-glk: NOTRUN -> [SKIP][268] ([i915#2437])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-glk1/igt@kms_writeback@writeback-pixel-formats.html
- shard-tglu-1: NOTRUN -> [SKIP][269] ([i915#2437] / [i915#9412])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-1/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf_pmu@rc6-all-gts:
- shard-tglu-1: NOTRUN -> [SKIP][270] ([i915#8516]) +1 other test skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-1/igt@perf_pmu@rc6-all-gts.html
* igt@sriov_basic@bind-unbind-vf:
- shard-tglu-1: NOTRUN -> [SKIP][271] ([i915#9917]) +1 other test skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-1/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-rkl: NOTRUN -> [SKIP][272] ([i915#9917])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-7/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-tglu: NOTRUN -> [SKIP][273] ([i915#9917]) +1 other test skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-tglu-9/igt@sriov_basic@enable-vfs-autoprobe-on.html
#### Possible fixes ####
* igt@fbdev@eof:
- shard-dg2: [SKIP][274] ([i915#2582]) -> [PASS][275] +1 other test pass
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@fbdev@eof.html
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-7/igt@fbdev@eof.html
* igt@gem_ccs@suspend-resume:
- shard-dg2: [INCOMPLETE][276] ([i915#7297]) -> [PASS][277] +1 other test pass
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-7/igt@gem_ccs@suspend-resume.html
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-8/igt@gem_ccs@suspend-resume.html
* igt@gem_exec_fair@basic-pace@bcs0:
- shard-rkl: [FAIL][278] ([i915#2842]) -> [PASS][279]
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-rkl-4/igt@gem_exec_fair@basic-pace@bcs0.html
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-4/igt@gem_exec_fair@basic-pace@bcs0.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-dg1: [FAIL][280] ([i915#3591]) -> [PASS][281] +1 other test pass
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle.html
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_selftest@live@workarounds:
- shard-mtlp: [ABORT][282] ([i915#12216]) -> [PASS][283] +1 other test pass
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-mtlp-2/igt@i915_selftest@live@workarounds.html
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-mtlp-1/igt@i915_selftest@live@workarounds.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3:
- shard-dg2: [FAIL][284] ([i915#5956]) -> [PASS][285] +1 other test pass
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-6/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-1/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: [FAIL][286] ([i915#2346]) -> [PASS][287]
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@flip-vs-cursor-varying-size:
- shard-snb: [FAIL][288] ([i915#2346]) -> [PASS][289]
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-snb7/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-snb4/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
* igt@kms_dp_aux_dev:
- shard-dg2: [SKIP][290] ([i915#1257]) -> [PASS][291]
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_dp_aux_dev.html
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-10/igt@kms_dp_aux_dev.html
* igt@kms_flip@plain-flip-fb-recreate:
- shard-dg2: [FAIL][292] ([i915#2122]) -> [PASS][293]
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-10/igt@kms_flip@plain-flip-fb-recreate.html
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-4/igt@kms_flip@plain-flip-fb-recreate.html
- shard-rkl: [FAIL][294] ([i915#2122]) -> [PASS][295] +1 other test pass
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-rkl-7/igt@kms_flip@plain-flip-fb-recreate.html
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-7/igt@kms_flip@plain-flip-fb-recreate.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1:
- shard-glk: [FAIL][296] ([i915#2122]) -> [PASS][297] +1 other test pass
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-glk2/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1.html
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-glk8/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: [SKIP][298] ([i915#5354]) -> [PASS][299] +8 other tests pass
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_invalid_mode@uint-max-clock:
- shard-dg2: [SKIP][300] ([i915#3555]) -> [PASS][301] +3 other tests pass
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_invalid_mode@uint-max-clock.html
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-10/igt@kms_invalid_mode@uint-max-clock.html
* igt@kms_plane@plane-panning-bottom-right:
- shard-dg2: [SKIP][302] ([i915#8825]) -> [PASS][303]
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_plane@plane-panning-bottom-right.html
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-10/igt@kms_plane@plane-panning-bottom-right.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-rkl: [FAIL][304] ([i915#8292]) -> [PASS][305]
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-rkl-1/igt@kms_plane_scaling@intel-max-src-size.html
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-2/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers:
- shard-dg2: [SKIP][306] ([i915#3555] / [i915#8152] / [i915#9423]) -> [PASS][307]
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-10/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers:
- shard-dg2: [SKIP][308] ([i915#8152] / [i915#9423]) -> [PASS][309] +1 other test pass
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-10/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c:
- shard-dg2: [SKIP][310] ([i915#12247]) -> [PASS][311] +14 other tests pass
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c.html
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-10/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-d:
- shard-dg2: [SKIP][312] ([i915#8152]) -> [PASS][313] +2 other tests pass
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-d.html
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-10/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5:
- shard-dg2: [SKIP][314] ([i915#12247] / [i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) -> [PASS][315] +1 other test pass
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-10/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][316] ([i915#12247] / [i915#8152]) -> [PASS][317] +1 other test pass
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d.html
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d.html
* igt@kms_pm_dc@dc5-dpms-negative:
- shard-dg2: [SKIP][318] ([i915#9293]) -> [PASS][319]
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_pm_dc@dc5-dpms-negative.html
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-10/igt@kms_pm_dc@dc5-dpms-negative.html
* igt@kms_pm_rpm@cursor:
- shard-dg2: [SKIP][320] ([i915#1849]) -> [PASS][321]
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_pm_rpm@cursor.html
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-7/igt@kms_pm_rpm@cursor.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-rkl: [SKIP][322] ([i915#9519]) -> [PASS][323] +2 other tests pass
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-rkl-1/igt@kms_pm_rpm@dpms-lpsp.html
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-2/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-dg2: [SKIP][324] ([i915#9519]) -> [PASS][325] +1 other test pass
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area@pipe-b-edp-1:
- shard-mtlp: [FAIL][326] ([i915#12380]) -> [PASS][327] +1 other test pass
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-mtlp-3/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area@pipe-b-edp-1.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-mtlp-2/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area@pipe-b-edp-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1:
- shard-snb: [FAIL][328] ([i915#9196]) -> [PASS][329] +1 other test pass
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-snb5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-snb4/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
* igt@kms_vblank@ts-continuation-modeset:
- shard-dg2: [SKIP][330] ([i915#9197]) -> [PASS][331] +33 other tests pass
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_vblank@ts-continuation-modeset.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-10/igt@kms_vblank@ts-continuation-modeset.html
#### Warnings ####
* igt@gem_exec_fair@basic-pace:
- shard-rkl: [FAIL][332] ([i915#2842]) -> [FAIL][333] ([i915#12467] / [i915#2842])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-rkl-4/igt@gem_exec_fair@basic-pace.html
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-4/igt@gem_exec_fair@basic-pace.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-mtlp: [ABORT][334] ([i915#10131] / [i915#10887] / [i915#9697]) -> [ABORT][335] ([i915#10131] / [i915#10887] / [i915#9820])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-mtlp-4/igt@i915_module_load@reload-with-fault-injection.html
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-mtlp-4/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_selftest@mock:
- shard-glk: [DMESG-WARN][336] ([i915#1982] / [i915#9311]) -> [DMESG-WARN][337] ([i915#9311])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-glk4/igt@i915_selftest@mock.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-glk6/igt@i915_selftest@mock.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-dg2: [SKIP][338] ([i915#9197]) -> [SKIP][339] +4 other tests skip
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-10/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-dg2: [SKIP][340] -> [SKIP][341] ([i915#9197]) +1 other test skip
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-11/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-2/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2: [SKIP][342] ([i915#5190]) -> [SKIP][343] ([i915#5190] / [i915#9197])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-11/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-2/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-dg2: [SKIP][344] ([i915#4538] / [i915#5190]) -> [SKIP][345] ([i915#5190] / [i915#9197]) +6 other tests skip
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
- shard-dg2: [SKIP][346] ([i915#5190] / [i915#9197]) -> [SKIP][347] ([i915#4538] / [i915#5190]) +7 other tests skip
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-10/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs:
- shard-dg2: [SKIP][348] ([i915#9197]) -> [SKIP][349] ([i915#10307] / [i915#6095]) +8 other tests skip
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-10/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@bad-rotation-90-yf-tiled-ccs:
- shard-dg1: [SKIP][350] ([i915#6095]) -> [SKIP][351] ([i915#4423] / [i915#6095])
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg1-12/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg1-16/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs:
- shard-snb: [SKIP][352] -> [INCOMPLETE][353] ([i915#2295])
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-snb1/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-snb5/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-dg2: [SKIP][354] ([i915#9197]) -> [SKIP][355] ([i915#12313]) +1 other test skip
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-10/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc:
- shard-dg2: [SKIP][356] ([i915#10307] / [i915#6095]) -> [SKIP][357] ([i915#9197]) +11 other tests skip
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-11/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_chamelium_edid@vga-edid-read:
- shard-dg1: [SKIP][358] ([i915#7828]) -> [SKIP][359] ([i915#4423] / [i915#7828])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg1-12/igt@kms_chamelium_edid@vga-edid-read.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg1-16/igt@kms_chamelium_edid@vga-edid-read.html
* igt@kms_color@deep-color:
- shard-dg2: [SKIP][360] ([i915#5354]) -> [SKIP][361] ([i915#3555])
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_color@deep-color.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-7/igt@kms_color@deep-color.html
* igt@kms_content_protection@atomic:
- shard-dg2: [TIMEOUT][362] ([i915#7173]) -> [SKIP][363] ([i915#7118] / [i915#9424])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-10/igt@kms_content_protection@atomic.html
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-4/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2: [SKIP][364] ([i915#7118] / [i915#9424]) -> [SKIP][365] ([i915#9197])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-11/igt@kms_content_protection@atomic-dpms.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-2/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg2: [SKIP][366] ([i915#3299]) -> [SKIP][367] ([i915#9197])
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-11/igt@kms_content_protection@dp-mst-type-0.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-2/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-dg2: [SKIP][368] ([i915#9197]) -> [SKIP][369] ([i915#3555]) +3 other tests skip
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_cursor_crc@cursor-onscreen-max-size.html
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-10/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-dg2: [SKIP][370] ([i915#11453] / [i915#3359]) -> [SKIP][371] ([i915#9197])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-1/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-2/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-dg2: [SKIP][372] ([i915#9197]) -> [SKIP][373] ([i915#11453] / [i915#3359])
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-7/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic:
- shard-dg2: [SKIP][374] ([i915#9197]) -> [SKIP][375] ([i915#5354]) +3 other tests skip
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-10/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-dg2: [SKIP][376] ([i915#5354]) -> [SKIP][377] ([i915#9197]) +2 other tests skip
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-dg2: [SKIP][378] ([i915#9197]) -> [SKIP][379] ([i915#4103] / [i915#4213])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg2: [SKIP][380] ([i915#9197]) -> [SKIP][381] ([i915#8812])
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_draw_crc@draw-method-mmap-gtt.html
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-7/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg2: [SKIP][382] ([i915#9197]) -> [SKIP][383] ([i915#3555] / [i915#3840])
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_dsc@dsc-with-output-formats.html
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-10/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-dg2: [SKIP][384] ([i915#2672] / [i915#3555] / [i915#5190]) -> [SKIP][385] ([i915#3555] / [i915#5190])
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-dg2: [SKIP][386] ([i915#3555] / [i915#5190]) -> [SKIP][387] ([i915#2672] / [i915#3555] / [i915#5190]) +2 other tests skip
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-dg2: [SKIP][388] ([i915#2672] / [i915#3555]) -> [SKIP][389] ([i915#3555])
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc:
- shard-dg2: [SKIP][390] ([i915#8708]) -> [SKIP][391] ([i915#5354]) +14 other tests skip
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc.html
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt:
- shard-dg2: [SKIP][392] ([i915#5354]) -> [SKIP][393] ([i915#8708]) +8 other tests skip
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt:
- shard-dg2: [SKIP][394] ([i915#5354]) -> [SKIP][395] ([i915#3458]) +13 other tests skip
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-suspend:
- shard-dg2: [SKIP][396] ([i915#3458]) -> [SKIP][397] ([i915#10433] / [i915#3458])
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2: [SKIP][398] ([i915#10433] / [i915#3458]) -> [SKIP][399] ([i915#3458]) +4 other tests skip
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-dg2: [SKIP][400] ([i915#3458]) -> [SKIP][401] ([i915#5354]) +13 other tests skip
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-dg2: [SKIP][402] ([i915#3555] / [i915#8228]) -> [SKIP][403] ([i915#9197]) +2 other tests skip
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-1/igt@kms_hdr@invalid-metadata-sizes.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-2/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][404] ([i915#4070] / [i915#4816]) -> [SKIP][405] ([i915#4816])
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane_lowres@tiling-y:
- shard-dg2: [SKIP][406] ([i915#8821]) -> [SKIP][407] ([i915#9197])
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-1/igt@kms_plane_lowres@tiling-y.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-2/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_lowres@tiling-yf:
- shard-dg2: [SKIP][408] ([i915#9197]) -> [SKIP][409] ([i915#3555] / [i915#8821])
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_plane_lowres@tiling-yf.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-10/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
- shard-dg2: [SKIP][410] ([i915#12247] / [i915#6953] / [i915#8152] / [i915#9423]) -> [SKIP][411] ([i915#12247] / [i915#6953] / [i915#9423])
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d:
- shard-dg2: [SKIP][412] ([i915#12247] / [i915#8152]) -> [SKIP][413] ([i915#12247])
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html
* igt@kms_pm_dc@dc6-dpms:
- shard-rkl: [SKIP][414] ([i915#3361]) -> [FAIL][415] ([i915#9295])
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-rkl-4/igt@kms_pm_dc@dc6-dpms.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-5/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: [SKIP][416] ([i915#3828]) -> [SKIP][417] ([i915#9340])
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-rkl-4/igt@kms_pm_lpsp@kms-lpsp.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-rkl-5/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-dg2: [SKIP][418] ([i915#11131] / [i915#4235]) -> [SKIP][419] ([i915#9197])
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-1/igt@kms_rotation_crc@bad-pixel-format.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-2/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-dg2: [SKIP][420] ([i915#9197]) -> [SKIP][421] ([i915#11131] / [i915#4235])
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_rotation_crc@primary-rotation-90.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-7/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg2: [SKIP][422] ([i915#5190] / [i915#9197]) -> [SKIP][423] ([i915#5190])
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2: [SKIP][424] ([i915#5190] / [i915#9197]) -> [SKIP][425] ([i915#11131] / [i915#4235] / [i915#5190]) +1 other test skip
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2: [SKIP][426] ([i915#8623]) -> [SKIP][427] ([i915#9197])
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-11/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@flip-dpms:
- shard-dg2: [SKIP][428] ([i915#3555]) -> [SKIP][429] ([i915#9197]) +2 other tests skip
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-11/igt@kms_vrr@flip-dpms.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-2/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@lobf:
- shard-dg2: [SKIP][430] ([i915#11920]) -> [SKIP][431] ([i915#9197])
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-11/igt@kms_vrr@lobf.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/shard-dg2-2/igt@kms_vrr@lobf.html
* igt@prime_mmap@test_aperture_limit:
- shard-dg2: [INCOMPLETE][432] ([i915#5493]) -> [WARN][433] ([i915#9351])
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15587/shard-dg2-3/ig
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_140396v1/index.html
[-- Attachment #2: Type: text/html, Size: 109044 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH topic/core-for-CI 1/2] Revert "HAX suspend: Disable S3/S4 for fi-bdw-samus"
2024-10-23 21:18 [PATCH topic/core-for-CI 1/2] Revert "HAX suspend: Disable S3/S4 for fi-bdw-samus" Lucas De Marchi
` (3 preceding siblings ...)
2024-10-24 10:00 ` ✗ Fi.CI.IGT: failure " Patchwork
@ 2024-10-24 10:22 ` Jani Nikula
2024-10-28 20:59 ` Lucas De Marchi
5 siblings, 0 replies; 8+ messages in thread
From: Jani Nikula @ 2024-10-24 10:22 UTC (permalink / raw)
To: Lucas De Marchi, intel-gfx; +Cc: Rodrigo Vivi, Lucas De Marchi
On Wed, 23 Oct 2024, Lucas De Marchi <lucas.demarchi@intel.com> wrote:
> This reverts commit efeb42fe3b7c58abbe674515252cfdb71c09eba5.
>
> That machine is not in CI anymore, let's drop the hack.
>
> Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
Acked-by: Jani Nikula <jani.nikula@intel.com>
> ---
> drivers/acpi/sleep.c | 20 --------------------
> 1 file changed, 20 deletions(-)
>
> diff --git a/drivers/acpi/sleep.c b/drivers/acpi/sleep.c
> index 4272cbc71ae89..c8ee8e42b0f64 100644
> --- a/drivers/acpi/sleep.c
> +++ b/drivers/acpi/sleep.c
> @@ -84,16 +84,11 @@ static int acpi_sleep_prepare(u32 acpi_state)
> return 0;
> }
>
> -static u8 max_sleep_state = -1;
> -
> bool acpi_sleep_state_supported(u8 sleep_state)
> {
> acpi_status status;
> u8 type_a, type_b;
>
> - if (sleep_state > max_sleep_state)
> - return false;
> -
> status = acpi_get_sleep_type_data(sleep_state, &type_a, &type_b);
> return ACPI_SUCCESS(status) && (!acpi_gbl_reduced_hardware
> || (acpi_gbl_FADT.sleep_control.address
> @@ -170,13 +165,6 @@ static int __init init_nvs_nosave(const struct dmi_system_id *d)
> return 0;
> }
>
> -static int __init init_nosleep(const struct dmi_system_id *d)
> -{
> - pr_info("Disabling ACPI suspend\n");
> - max_sleep_state = 0;
> - return 0;
> -}
> -
> bool acpi_sleep_default_s3;
>
> static int __init init_default_s3(const struct dmi_system_id *d)
> @@ -411,14 +399,6 @@ static const struct dmi_system_id acpisleep_dmi_table[] __initconst = {
> DMI_MATCH(DMI_PRODUCT_NAME, "20GGA00L00"),
> },
> },
> - {
> - .callback = init_nosleep,
> - .ident = "samus",
> - .matches = {
> - DMI_MATCH(DMI_SYS_VENDOR, "GOOGLE"),
> - DMI_MATCH(DMI_PRODUCT_NAME, "Samus"),
> - },
> - },
> {},
> };
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH topic/core-for-CI 2/2] Revert "HAX sound: Disable probing snd_hda with DG1"
2024-10-23 21:18 ` [PATCH topic/core-for-CI 2/2] Revert "HAX sound: Disable probing snd_hda with DG1" Lucas De Marchi
@ 2024-10-24 10:23 ` Jani Nikula
0 siblings, 0 replies; 8+ messages in thread
From: Jani Nikula @ 2024-10-24 10:23 UTC (permalink / raw)
To: Lucas De Marchi, intel-gfx; +Cc: Rodrigo Vivi, Lucas De Marchi
On Wed, 23 Oct 2024, Lucas De Marchi <lucas.demarchi@intel.com> wrote:
> This reverts commit 852510ccd334063bec2c2c3e5a61a071599ac015.
>
> This should be solved already since commit e6d0c13e9f46 ("ALSA: hda:
> i915: Remove extra argument from snd_hdac_i915_init").
>
> We can try to drop it and see if anything explodes on dg1 land.
>
> Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
Acked-by: Jani Nikula <jani.nikula@intel.com>
> ---
> sound/hda/hdac_i915.c | 23 -----------------------
> sound/pci/hda/hda_intel.c | 3 +++
> 2 files changed, 3 insertions(+), 23 deletions(-)
>
> diff --git a/sound/hda/hdac_i915.c b/sound/hda/hdac_i915.c
> index a214636ed9757..e9425213320ea 100644
> --- a/sound/hda/hdac_i915.c
> +++ b/sound/hda/hdac_i915.c
> @@ -170,26 +170,6 @@ static int i915_gfx_present(struct pci_dev *hdac_pci)
> return false;
> }
>
> -static bool dg1_gfx_present(void)
> -{
> - static const struct pci_device_id ids[] = {
> - { PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x4905),
> - .class = PCI_BASE_CLASS_DISPLAY << 16,
> - .class_mask = 0xff << 16 },
> - { PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x4906),
> - .class = PCI_BASE_CLASS_DISPLAY << 16,
> - .class_mask = 0xff << 16 },
> - { PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x4907),
> - .class = PCI_BASE_CLASS_DISPLAY << 16,
> - .class_mask = 0xff << 16 },
> - { PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x4908),
> - .class = PCI_BASE_CLASS_DISPLAY << 16,
> - .class_mask = 0xff << 16 },
> - {}
> - };
> - return pci_dev_present(ids);
> -}
> -
> /**
> * snd_hdac_i915_init - Initialize i915 audio component
> * @bus: HDA core bus
> @@ -210,9 +190,6 @@ int snd_hdac_i915_init(struct hdac_bus *bus)
> if (!i915_gfx_present(to_pci_dev(bus->dev)))
> return -ENODEV;
>
> - if (dg1_gfx_present())
> - return -ENODEV;
> -
> err = snd_hdac_acomp_init(bus, NULL,
> i915_component_master_match,
> sizeof(struct i915_audio_component) - sizeof(*acomp));
> diff --git a/sound/pci/hda/hda_intel.c b/sound/pci/hda/hda_intel.c
> index 282e87cc2166b..b4540c5cd2a6f 100644
> --- a/sound/pci/hda/hda_intel.c
> +++ b/sound/pci/hda/hda_intel.c
> @@ -2143,6 +2143,9 @@ static int azx_probe(struct pci_dev *pci,
> * codecs can be on the same link.
> */
> if (HDA_CONTROLLER_IN_GPU(pci)) {
> + dev_err_probe(card->dev, err,
> + "HSW/BDW HD-audio HDMI/DP requires binding with gfx driver\n");
> +
> goto out_free;
> } else {
> /* don't bother any longer */
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH topic/core-for-CI 1/2] Revert "HAX suspend: Disable S3/S4 for fi-bdw-samus"
2024-10-23 21:18 [PATCH topic/core-for-CI 1/2] Revert "HAX suspend: Disable S3/S4 for fi-bdw-samus" Lucas De Marchi
` (4 preceding siblings ...)
2024-10-24 10:22 ` [PATCH topic/core-for-CI 1/2] " Jani Nikula
@ 2024-10-28 20:59 ` Lucas De Marchi
5 siblings, 0 replies; 8+ messages in thread
From: Lucas De Marchi @ 2024-10-28 20:59 UTC (permalink / raw)
To: intel-gfx; +Cc: Jani Nikula, Rodrigo Vivi
On Wed, Oct 23, 2024 at 02:18:33PM -0700, Lucas De Marchi wrote:
>This reverts commit efeb42fe3b7c58abbe674515252cfdb71c09eba5.
>
>That machine is not in CI anymore, let's drop the hack.
>
>Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
Failures unrelated to these hacks being removed.
Thanks Jani for the ack.
Patches removed from topic/core-for-CI.
Lucas De Marchi
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2024-10-28 20:59 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-23 21:18 [PATCH topic/core-for-CI 1/2] Revert "HAX suspend: Disable S3/S4 for fi-bdw-samus" Lucas De Marchi
2024-10-23 21:18 ` [PATCH topic/core-for-CI 2/2] Revert "HAX sound: Disable probing snd_hda with DG1" Lucas De Marchi
2024-10-24 10:23 ` Jani Nikula
2024-10-24 8:30 ` ✗ Fi.CI.CHECKPATCH: warning for series starting with [topic/core-for-CI,1/2] Revert "HAX suspend: Disable S3/S4 for fi-bdw-samus" Patchwork
2024-10-24 8:30 ` ✓ Fi.CI.BAT: success " Patchwork
2024-10-24 10:00 ` ✗ Fi.CI.IGT: failure " Patchwork
2024-10-24 10:22 ` [PATCH topic/core-for-CI 1/2] " Jani Nikula
2024-10-28 20:59 ` Lucas De Marchi
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox