* [PATCH 0/2] Don't be alarmed at FLR timeouts
@ 2024-05-17 11:25 Andi Shyti
2024-05-17 11:25 ` [PATCH 1/2] drm/i915: Increase FLR timeout from 3s to 9s Andi Shyti
` (3 more replies)
0 siblings, 4 replies; 10+ messages in thread
From: Andi Shyti @ 2024-05-17 11:25 UTC (permalink / raw)
To: intel-gfx, dri-devel
Cc: Daniele Ceraolo Spurio, Nirmoy Das, Janusz Krzysztofik,
Andi Shyti, Andi Shyti
Hi,
often, on new platforms or firmware updates, we receive reports
of FLR timeout expiration and we shift the timeout we wait for
the reset to complete.
Let's not be alarmed if we reach a timeout while waiting for FLR
resets and print debugs rather than errors. The function is
anyway a void fucntions without any effect.
While at it, increase the timeout.
Thanks,
Andi
Andi Shyti (2):
drm/i915: Increase FLR timeout from 3s to 9s
drm/i915: Don't treat FLR resets as errors
drivers/gpu/drm/i915/intel_uncore.c | 15 +++++++++++----
1 file changed, 11 insertions(+), 4 deletions(-)
--
2.43.0
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH 1/2] drm/i915: Increase FLR timeout from 3s to 9s
2024-05-17 11:25 [PATCH 0/2] Don't be alarmed at FLR timeouts Andi Shyti
@ 2024-05-17 11:25 ` Andi Shyti
2024-05-17 11:25 ` [PATCH 2/2] drm/i915: Don't treat FLR resets as errors Andi Shyti
` (2 subsequent siblings)
3 siblings, 0 replies; 10+ messages in thread
From: Andi Shyti @ 2024-05-17 11:25 UTC (permalink / raw)
To: intel-gfx, dri-devel
Cc: Daniele Ceraolo Spurio, Nirmoy Das, Janusz Krzysztofik,
Andi Shyti, Andi Shyti
Following the guidelines it takes 3 seconds to perform an FLR
reset. Let's give it a bit more slack because this time can
change depending on the platform and on the firmware
Closes: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10955
Signed-off-by: Andi Shyti <andi.shyti@linux.intel.com>
---
drivers/gpu/drm/i915/intel_uncore.c | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/i915/intel_uncore.c b/drivers/gpu/drm/i915/intel_uncore.c
index 729409a4bada..2eba289d88ad 100644
--- a/drivers/gpu/drm/i915/intel_uncore.c
+++ b/drivers/gpu/drm/i915/intel_uncore.c
@@ -2614,11 +2614,18 @@ void intel_uncore_prune_engine_fw_domains(struct intel_uncore *uncore,
static void driver_initiated_flr(struct intel_uncore *uncore)
{
struct drm_i915_private *i915 = uncore->i915;
- const unsigned int flr_timeout_ms = 3000; /* specs recommend a 3s wait */
+ unsigned int flr_timeout_ms;
int ret;
drm_dbg(&i915->drm, "Triggering Driver-FLR\n");
+ /*
+ * The specification recommends a 3 seconds FLR reset timeout. To be
+ * cautious, we will extend this to 9 seconds, three times the specified
+ * timeout.
+ */
+ flr_timeout_ms = 9000;
+
/*
* Make sure any pending FLR requests have cleared by waiting for the
* FLR trigger bit to go to zero. Also clear GU_DEBUG's DRIVERFLR_STATUS
--
2.43.0
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH 2/2] drm/i915: Don't treat FLR resets as errors
2024-05-17 11:25 [PATCH 0/2] Don't be alarmed at FLR timeouts Andi Shyti
2024-05-17 11:25 ` [PATCH 1/2] drm/i915: Increase FLR timeout from 3s to 9s Andi Shyti
@ 2024-05-17 11:25 ` Andi Shyti
2024-05-17 14:00 ` Nirmoy Das
2024-05-17 12:45 ` ✓ Fi.CI.BAT: success for Don't be alarmed at FLR timeouts Patchwork
2024-05-17 17:53 ` ✗ Fi.CI.IGT: failure " Patchwork
3 siblings, 1 reply; 10+ messages in thread
From: Andi Shyti @ 2024-05-17 11:25 UTC (permalink / raw)
To: intel-gfx, dri-devel
Cc: Daniele Ceraolo Spurio, Nirmoy Das, Janusz Krzysztofik,
Andi Shyti, Andi Shyti
If we timeout while waiting for an FLR reset, there is nothing we
can do and i915 doesn't have any control on it. In any case the
system is still perfectly usable and the function returns void.
We don't need to be alarmed, therefore, print the timeout
expiration as a debug message instead of an error.
Closes: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10955
Signed-off-by: Andi Shyti <andi.shyti@linux.intel.com>
---
drivers/gpu/drm/i915/intel_uncore.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/i915/intel_uncore.c b/drivers/gpu/drm/i915/intel_uncore.c
index 2eba289d88ad..a3fa2ed91aae 100644
--- a/drivers/gpu/drm/i915/intel_uncore.c
+++ b/drivers/gpu/drm/i915/intel_uncore.c
@@ -2637,7 +2637,7 @@ static void driver_initiated_flr(struct intel_uncore *uncore)
*/
ret = intel_wait_for_register_fw(uncore, GU_CNTL, DRIVERFLR, 0, flr_timeout_ms);
if (ret) {
- drm_err(&i915->drm,
+ drm_dbg(&i915->drm,
"Failed to wait for Driver-FLR bit to clear! %d\n",
ret);
return;
@@ -2652,7 +2652,7 @@ static void driver_initiated_flr(struct intel_uncore *uncore)
DRIVERFLR, 0,
flr_timeout_ms);
if (ret) {
- drm_err(&i915->drm, "Driver-FLR-teardown wait completion failed! %d\n", ret);
+ drm_dbg(&i915->drm, "Driver-FLR-teardown wait completion failed! %d\n", ret);
return;
}
@@ -2661,7 +2661,7 @@ static void driver_initiated_flr(struct intel_uncore *uncore)
DRIVERFLR_STATUS, DRIVERFLR_STATUS,
flr_timeout_ms);
if (ret) {
- drm_err(&i915->drm, "Driver-FLR-reinit wait completion failed! %d\n", ret);
+ drm_dbg(&i915->drm, "Driver-FLR-reinit wait completion failed! %d\n", ret);
return;
}
--
2.43.0
^ permalink raw reply related [flat|nested] 10+ messages in thread
* ✓ Fi.CI.BAT: success for Don't be alarmed at FLR timeouts
2024-05-17 11:25 [PATCH 0/2] Don't be alarmed at FLR timeouts Andi Shyti
2024-05-17 11:25 ` [PATCH 1/2] drm/i915: Increase FLR timeout from 3s to 9s Andi Shyti
2024-05-17 11:25 ` [PATCH 2/2] drm/i915: Don't treat FLR resets as errors Andi Shyti
@ 2024-05-17 12:45 ` Patchwork
2024-05-17 17:53 ` ✗ Fi.CI.IGT: failure " Patchwork
3 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2024-05-17 12:45 UTC (permalink / raw)
To: Andi Shyti; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 3203 bytes --]
== Series Details ==
Series: Don't be alarmed at FLR timeouts
URL : https://patchwork.freedesktop.org/series/133744/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_14780 -> Patchwork_133744v1
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/index.html
Participating hosts (44 -> 37)
------------------------------
Missing (7): bat-mtlp-8 bat-dg1-7 fi-snb-2520m fi-kbl-8809g bat-dg2-11 bat-jsl-1 bat-arls-3
Known issues
------------
Here are the changes found in Patchwork_133744v1 that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@i915_selftest@live@dmabuf:
- {bat-mtlp-9}: [DMESG-FAIL][1] ([i915#11035]) -> [PASS][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14780/bat-mtlp-9/igt@i915_selftest@live@dmabuf.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/bat-mtlp-9/igt@i915_selftest@live@dmabuf.html
* igt@i915_selftest@live@execlists:
- fi-bsw-nick: [ABORT][3] ([i915#10594]) -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14780/fi-bsw-nick/igt@i915_selftest@live@execlists.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/fi-bsw-nick/igt@i915_selftest@live@execlists.html
* igt@kms_flip@basic-flip-vs-modeset@b-dp7:
- {bat-mtlp-9}: [DMESG-WARN][5] ([i915#10435]) -> [PASS][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14780/bat-mtlp-9/igt@kms_flip@basic-flip-vs-modeset@b-dp7.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/bat-mtlp-9/igt@kms_flip@basic-flip-vs-modeset@b-dp7.html
* igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-dp-1:
- {bat-rpls-4}: [DMESG-WARN][7] ([i915#9970]) -> [PASS][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14780/bat-rpls-4/igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-dp-1.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/bat-rpls-4/igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-dp-1.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10435
[i915#10594]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10594
[i915#10911]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10911
[i915#11035]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11035
[i915#9970]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9970
Build changes
-------------
* Linux: CI_DRM_14780 -> Patchwork_133744v1
CI-20190529: 20190529
CI_DRM_14780: 8ef53c10d150679e3ff5db00d128417dfffb7798 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_7860: 05b3f5540c6dcaacdf2169dc730c126df9ffd7e2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_133744v1: 8ef53c10d150679e3ff5db00d128417dfffb7798 @ git://anongit.freedesktop.org/gfx-ci/linux
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/index.html
[-- Attachment #2: Type: text/html, Size: 3819 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 2/2] drm/i915: Don't treat FLR resets as errors
2024-05-17 11:25 ` [PATCH 2/2] drm/i915: Don't treat FLR resets as errors Andi Shyti
@ 2024-05-17 14:00 ` Nirmoy Das
2024-05-17 19:34 ` Andi Shyti
0 siblings, 1 reply; 10+ messages in thread
From: Nirmoy Das @ 2024-05-17 14:00 UTC (permalink / raw)
To: Andi Shyti, intel-gfx, dri-devel
Cc: Daniele Ceraolo Spurio, Nirmoy Das, Janusz Krzysztofik,
Andi Shyti
Hi Andi,
On 5/17/2024 1:25 PM, Andi Shyti wrote:
> If we timeout while waiting for an FLR reset, there is nothing we
> can do and i915 doesn't have any control on it. In any case the
> system is still perfectly usable
If a FLR reset fails then we will have a dead GPU, I don't think the GPU
is usable without a cold reboot.
This is a serious issue and should be report as an error. I think we
need to create a HW ticket to understand
why is FLR reset fails.
Regards,
Nirmoy
> and the function returns void.
>
> We don't need to be alarmed, therefore, print the timeout
> expiration as a debug message instead of an error.
>
> Closes: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10955
> Signed-off-by: Andi Shyti <andi.shyti@linux.intel.com>
> ---
> drivers/gpu/drm/i915/intel_uncore.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/intel_uncore.c b/drivers/gpu/drm/i915/intel_uncore.c
> index 2eba289d88ad..a3fa2ed91aae 100644
> --- a/drivers/gpu/drm/i915/intel_uncore.c
> +++ b/drivers/gpu/drm/i915/intel_uncore.c
> @@ -2637,7 +2637,7 @@ static void driver_initiated_flr(struct intel_uncore *uncore)
> */
> ret = intel_wait_for_register_fw(uncore, GU_CNTL, DRIVERFLR, 0, flr_timeout_ms);
> if (ret) {
> - drm_err(&i915->drm,
> + drm_dbg(&i915->drm,
> "Failed to wait for Driver-FLR bit to clear! %d\n",
> ret);
> return;
> @@ -2652,7 +2652,7 @@ static void driver_initiated_flr(struct intel_uncore *uncore)
> DRIVERFLR, 0,
> flr_timeout_ms);
> if (ret) {
> - drm_err(&i915->drm, "Driver-FLR-teardown wait completion failed! %d\n", ret);
> + drm_dbg(&i915->drm, "Driver-FLR-teardown wait completion failed! %d\n", ret);
> return;
> }
>
> @@ -2661,7 +2661,7 @@ static void driver_initiated_flr(struct intel_uncore *uncore)
> DRIVERFLR_STATUS, DRIVERFLR_STATUS,
> flr_timeout_ms);
> if (ret) {
> - drm_err(&i915->drm, "Driver-FLR-reinit wait completion failed! %d\n", ret);
> + drm_dbg(&i915->drm, "Driver-FLR-reinit wait completion failed! %d\n", ret);
> return;
> }
>
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ Fi.CI.IGT: failure for Don't be alarmed at FLR timeouts
2024-05-17 11:25 [PATCH 0/2] Don't be alarmed at FLR timeouts Andi Shyti
` (2 preceding siblings ...)
2024-05-17 12:45 ` ✓ Fi.CI.BAT: success for Don't be alarmed at FLR timeouts Patchwork
@ 2024-05-17 17:53 ` Patchwork
3 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2024-05-17 17:53 UTC (permalink / raw)
To: Andi Shyti; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 77890 bytes --]
== Series Details ==
Series: Don't be alarmed at FLR timeouts
URL : https://patchwork.freedesktop.org/series/133744/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_14780_full -> Patchwork_133744v1_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_133744v1_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_133744v1_full, please notify your bug team ('I915-ci-infra@lists.freedesktop.org') to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_133744v1_full:
### IGT changes ###
#### Possible regressions ####
* igt@drm_buddy@drm_buddy@drm_test_buddy_alloc_clear:
- shard-rkl: NOTRUN -> [ABORT][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-rkl-6/igt@drm_buddy@drm_buddy@drm_test_buddy_alloc_clear.html
* igt@drm_buddy@drm_buddy@drm_test_buddy_alloc_range_bias:
- shard-rkl: NOTRUN -> [DMESG-FAIL][2]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-rkl-6/igt@drm_buddy@drm_buddy@drm_test_buddy_alloc_range_bias.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [INCOMPLETE][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg2-6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-3.html
Known issues
------------
Here are the changes found in Patchwork_133744v1_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-rkl: NOTRUN -> [SKIP][4] ([i915#8411])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-rkl-2/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@debugfs_test@basic-hwmon:
- shard-mtlp: NOTRUN -> [SKIP][5] ([i915#9318])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-mtlp-1/igt@debugfs_test@basic-hwmon.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-tglu: NOTRUN -> [SKIP][6] ([i915#11078])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-tglu-8/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_fdinfo@idle@rcs0:
- shard-rkl: NOTRUN -> [FAIL][7] ([i915#7742])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-rkl-5/igt@drm_fdinfo@idle@rcs0.html
* igt@drm_fdinfo@isolation@vcs1:
- shard-dg2: NOTRUN -> [SKIP][8] ([i915#8414]) +6 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg2-7/igt@drm_fdinfo@isolation@vcs1.html
* igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
- shard-rkl: [PASS][9] -> [FAIL][10] ([i915#7742])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14780/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-rkl-6/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
* igt@gem_bad_reloc@negative-reloc-lut:
- shard-rkl: NOTRUN -> [SKIP][11] ([i915#3281]) +4 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-rkl-5/igt@gem_bad_reloc@negative-reloc-lut.html
* igt@gem_caching@read-writes:
- shard-mtlp: NOTRUN -> [SKIP][12] ([i915#4873])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-mtlp-5/igt@gem_caching@read-writes.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-dg1: NOTRUN -> [SKIP][13] ([i915#9323])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg1-16/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_close_race@multigpu-basic-process:
- shard-dg1: NOTRUN -> [SKIP][14] ([i915#7697])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg1-16/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_ctx_persistence@heartbeat-hang:
- shard-dg1: NOTRUN -> [SKIP][15] ([i915#8555])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg1-16/igt@gem_ctx_persistence@heartbeat-hang.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-dg2: NOTRUN -> [SKIP][16] ([i915#8555])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg2-7/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_sseu@engines:
- shard-rkl: NOTRUN -> [SKIP][17] ([i915#280])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-rkl-5/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-dg1: NOTRUN -> [SKIP][18] ([i915#280])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg1-16/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_ctx_sseu@mmap-args:
- shard-mtlp: NOTRUN -> [SKIP][19] ([i915#280])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-mtlp-1/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@kms:
- shard-tglu: [PASS][20] -> [INCOMPLETE][21] ([i915#10513])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14780/shard-tglu-9/igt@gem_eio@kms.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-tglu-6/igt@gem_eio@kms.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg1: NOTRUN -> [SKIP][22] ([i915#4771])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg1-16/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_capture@many-4k-incremental:
- shard-dg2: NOTRUN -> [FAIL][23] ([i915#9606])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg2-7/igt@gem_exec_capture@many-4k-incremental.html
* igt@gem_exec_capture@many-4k-zero:
- shard-dg1: NOTRUN -> [FAIL][24] ([i915#9606])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg1-18/igt@gem_exec_capture@many-4k-zero.html
* igt@gem_exec_endless@dispatch@bcs0:
- shard-dg1: [PASS][25] -> [TIMEOUT][26] ([i915#3778])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14780/shard-dg1-18/igt@gem_exec_endless@dispatch@bcs0.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg1-18/igt@gem_exec_endless@dispatch@bcs0.html
* igt@gem_exec_fair@basic-deadline:
- shard-mtlp: NOTRUN -> [SKIP][27] ([i915#4473] / [i915#4771])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-mtlp-5/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-pace-solo:
- shard-mtlp: NOTRUN -> [SKIP][28] ([i915#4473])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-mtlp-1/igt@gem_exec_fair@basic-pace-solo.html
* igt@gem_exec_fair@basic-throttle@rcs0:
- shard-rkl: NOTRUN -> [FAIL][29] ([i915#2842])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-rkl-2/igt@gem_exec_fair@basic-throttle@rcs0.html
- shard-tglu: NOTRUN -> [FAIL][30] ([i915#2842])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-tglu-9/igt@gem_exec_fair@basic-throttle@rcs0.html
* igt@gem_exec_fence@submit:
- shard-mtlp: NOTRUN -> [SKIP][31] ([i915#4812])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-mtlp-1/igt@gem_exec_fence@submit.html
* igt@gem_exec_flush@basic-batch-kernel-default-wb:
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#3539] / [i915#4852])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg2-7/igt@gem_exec_flush@basic-batch-kernel-default-wb.html
* igt@gem_exec_flush@basic-wb-rw-before-default:
- shard-dg1: NOTRUN -> [SKIP][33] ([i915#3539] / [i915#4852]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg1-18/igt@gem_exec_flush@basic-wb-rw-before-default.html
* igt@gem_exec_reloc@basic-cpu-read:
- shard-dg2: NOTRUN -> [SKIP][34] ([i915#3281]) +4 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg2-7/igt@gem_exec_reloc@basic-cpu-read.html
* igt@gem_exec_reloc@basic-cpu-wc:
- shard-dg1: NOTRUN -> [SKIP][35] ([i915#3281]) +10 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg1-16/igt@gem_exec_reloc@basic-cpu-wc.html
* igt@gem_exec_reloc@basic-write-cpu-active:
- shard-mtlp: NOTRUN -> [SKIP][36] ([i915#3281]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-mtlp-1/igt@gem_exec_reloc@basic-write-cpu-active.html
* igt@gem_exec_schedule@preempt-queue:
- shard-dg1: NOTRUN -> [SKIP][37] ([i915#4812]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg1-16/igt@gem_exec_schedule@preempt-queue.html
* igt@gem_fenced_exec_thrash@2-spare-fences:
- shard-dg2: NOTRUN -> [SKIP][38] ([i915#4860])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg2-7/igt@gem_fenced_exec_thrash@2-spare-fences.html
* igt@gem_fenced_exec_thrash@too-many-fences:
- shard-mtlp: NOTRUN -> [SKIP][39] ([i915#4860]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-mtlp-1/igt@gem_fenced_exec_thrash@too-many-fences.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0:
- shard-dg2: [PASS][40] -> [FAIL][41] ([i915#10378])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14780/shard-dg2-7/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg2-1/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html
* igt@gem_lmem_swapping@parallel-random-engines:
- shard-rkl: NOTRUN -> [SKIP][42] ([i915#4613])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-rkl-5/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-glk: NOTRUN -> [SKIP][43] ([i915#4613]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-glk8/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@random:
- shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4613])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-mtlp-1/igt@gem_lmem_swapping@random.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [PASS][45] -> [TIMEOUT][46] ([i915#5493])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14780/shard-dg2-11/igt@gem_lmem_swapping@smem-oom@lmem0.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg2-4/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_mmap@bad-offset:
- shard-dg1: NOTRUN -> [SKIP][47] ([i915#4083]) +2 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg1-16/igt@gem_mmap@bad-offset.html
* igt@gem_mmap_gtt@fault-concurrent-y:
- shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4077]) +5 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-mtlp-1/igt@gem_mmap_gtt@fault-concurrent-y.html
* igt@gem_mmap_wc@set-cache-level:
- shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4083]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-mtlp-1/igt@gem_mmap_wc@set-cache-level.html
* igt@gem_partial_pwrite_pread@write:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#3282]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg2-7/igt@gem_partial_pwrite_pread@write.html
* igt@gem_partial_pwrite_pread@write-display:
- shard-mtlp: NOTRUN -> [SKIP][51] ([i915#3282]) +2 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-mtlp-5/igt@gem_partial_pwrite_pread@write-display.html
* igt@gem_pread@bench:
- shard-rkl: NOTRUN -> [SKIP][52] ([i915#3282])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-rkl-2/igt@gem_pread@bench.html
* igt@gem_pread@self:
- shard-dg1: NOTRUN -> [SKIP][53] ([i915#3282]) +3 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg1-18/igt@gem_pread@self.html
* igt@gem_pxp@create-regular-buffer:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#4270])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg2-7/igt@gem_pxp@create-regular-buffer.html
* igt@gem_pxp@reject-modify-context-protection-off-2:
- shard-dg1: NOTRUN -> [SKIP][55] ([i915#4270]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg1-16/igt@gem_pxp@reject-modify-context-protection-off-2.html
* igt@gem_pxp@reject-modify-context-protection-off-3:
- shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4270]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-mtlp-5/igt@gem_pxp@reject-modify-context-protection-off-3.html
* igt@gem_pxp@verify-pxp-stale-ctx-execution:
- shard-tglu: NOTRUN -> [SKIP][57] ([i915#4270])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-tglu-9/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
- shard-rkl: NOTRUN -> [SKIP][58] ([i915#4270])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-rkl-2/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
* igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][59] ([i915#8428]) +3 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-mtlp-1/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled.html
* igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#5190] / [i915#8428]) +2 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg2-7/igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-dg1: NOTRUN -> [SKIP][61] ([i915#4079])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg1-16/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_set_tiling_vs_gtt:
- shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4079])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-mtlp-1/igt@gem_set_tiling_vs_gtt.html
* igt@gem_softpin@evict-snoop:
- shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4885])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-mtlp-1/igt@gem_softpin@evict-snoop.html
* igt@gem_tiled_blits@basic:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#4077]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg2-7/igt@gem_tiled_blits@basic.html
* igt@gem_tiled_partial_pwrite_pread@writes:
- shard-dg1: NOTRUN -> [SKIP][65] ([i915#4077]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg1-16/igt@gem_tiled_partial_pwrite_pread@writes.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#3297])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg2-7/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-mtlp: NOTRUN -> [SKIP][67] ([i915#3297])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-mtlp-1/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-dg1: NOTRUN -> [SKIP][68] ([i915#3297]) +3 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg1-16/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gen9_exec_parse@basic-rejected:
- shard-rkl: NOTRUN -> [SKIP][69] ([i915#2527]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-rkl-5/igt@gen9_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-tglu: NOTRUN -> [SKIP][70] ([i915#2527] / [i915#2856]) +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-tglu-8/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@gen9_exec_parse@bb-start-out:
- shard-dg1: NOTRUN -> [SKIP][71] ([i915#2527]) +3 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg1-16/igt@gen9_exec_parse@bb-start-out.html
* igt@gen9_exec_parse@unaligned-jump:
- shard-mtlp: NOTRUN -> [SKIP][72] ([i915#2856]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-mtlp-1/igt@gen9_exec_parse@unaligned-jump.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-snb: [PASS][73] -> [INCOMPLETE][74] ([i915#9849])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14780/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-snb6/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg1: NOTRUN -> [INCOMPLETE][75] ([i915#1982] / [i915#9820] / [i915#9849])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg1-16/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_api@freq-reset:
- shard-tglu: NOTRUN -> [SKIP][76] ([i915#8399])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-tglu-9/igt@i915_pm_freq_api@freq-reset.html
- shard-rkl: NOTRUN -> [SKIP][77] ([i915#8399])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-rkl-2/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-rkl: NOTRUN -> [SKIP][78] ([i915#6590])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-rkl-5/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_rps@thresholds-park@gt0:
- shard-dg1: NOTRUN -> [SKIP][79] ([i915#8925])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg1-18/igt@i915_pm_rps@thresholds-park@gt0.html
* igt@i915_selftest@mock@memory_region:
- shard-dg1: NOTRUN -> [DMESG-WARN][80] ([i915#9311])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg1-16/igt@i915_selftest@mock@memory_region.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-tglu: NOTRUN -> [INCOMPLETE][81] ([i915#7443])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-tglu-8/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-mtlp: NOTRUN -> [SKIP][82] ([i915#4212])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-mtlp-1/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][83] ([i915#8709]) +3 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-rkl-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc-ccs:
- shard-tglu: NOTRUN -> [SKIP][84] ([i915#8709]) +7 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-tglu-9/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc-ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-2-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#8709]) +11 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg2-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-2-4-mc-ccs.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-rkl: NOTRUN -> [SKIP][86] ([i915#9531])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-rkl-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-mtlp: NOTRUN -> [SKIP][87] ([i915#1769] / [i915#3555])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-mtlp-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg1: NOTRUN -> [SKIP][88] ([i915#1769] / [i915#3555])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg1-18/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][89] ([i915#5286]) +2 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-rkl-2/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
- shard-tglu: NOTRUN -> [SKIP][90] ([i915#5286]) +2 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-tglu-9/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][91] ([i915#4538] / [i915#5286]) +2 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg1-16/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][92] ([i915#3638])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-rkl-5/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-0:
- shard-mtlp: NOTRUN -> [SKIP][93] +7 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-mtlp-1/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][94] ([i915#3638]) +5 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg1-16/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][95] ([i915#4538] / [i915#5190]) +4 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-mtlp: NOTRUN -> [SKIP][96] ([i915#6187])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-mtlp-5/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][97] ([i915#4538]) +4 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg1-16/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_joiner@basic:
- shard-rkl: NOTRUN -> [SKIP][98] ([i915#10656])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-rkl-6/igt@kms_big_joiner@basic.html
- shard-dg1: NOTRUN -> [SKIP][99] ([i915#10656]) +1 other test skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg1-16/igt@kms_big_joiner@basic.html
* igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][100] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg2-4/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs:
- shard-dg1: NOTRUN -> [SKIP][101] ([i915#10278])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg1-16/igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [SKIP][102] ([i915#10307] / [i915#6095]) +173 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg2-11/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][103] ([i915#6095]) +19 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-mtlp-5/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-b-edp-1.html
* igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-c-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][104] ([i915#6095]) +63 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg1-16/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-c-hdmi-a-4.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2:
- shard-glk: NOTRUN -> [SKIP][105] +59 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-glk8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][106] ([i915#6095]) +27 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-tglu-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][107] ([i915#6095]) +73 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][108] ([i915#7213]) +3 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg2-8/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html
* igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][109] ([i915#4087]) +3 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg2-5/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html
* igt@kms_chamelium_audio@dp-audio:
- shard-tglu: NOTRUN -> [SKIP][110] ([i915#7828]) +4 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-tglu-8/igt@kms_chamelium_audio@dp-audio.html
* igt@kms_chamelium_audio@dp-audio-edid:
- shard-dg2: NOTRUN -> [SKIP][111] ([i915#7828]) +3 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg2-7/igt@kms_chamelium_audio@dp-audio-edid.html
* igt@kms_chamelium_color@ctm-0-75:
- shard-snb: NOTRUN -> [SKIP][112] +68 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-snb2/igt@kms_chamelium_color@ctm-0-75.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- shard-dg1: NOTRUN -> [SKIP][113] ([i915#7828]) +6 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg1-16/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-rkl: NOTRUN -> [SKIP][114] ([i915#7828]) +3 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-rkl-5/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-mtlp: NOTRUN -> [SKIP][115] ([i915#7828]) +4 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-mtlp-1/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_color@deep-color:
- shard-tglu: NOTRUN -> [SKIP][116] ([i915#3555] / [i915#9979])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-tglu-8/igt@kms_color@deep-color.html
* igt@kms_content_protection@mei-interface:
- shard-rkl: NOTRUN -> [SKIP][117] ([i915#9424])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-rkl-2/igt@kms_content_protection@mei-interface.html
- shard-tglu: NOTRUN -> [SKIP][118] ([i915#6944] / [i915#9424])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-tglu-9/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@type1:
- shard-dg1: NOTRUN -> [SKIP][119] ([i915#7116] / [i915#9424]) +1 other test skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg1-18/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent:
- shard-dg2: NOTRUN -> [SKIP][120] ([i915#7118] / [i915#9424])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg2-4/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-mtlp: NOTRUN -> [SKIP][121] ([i915#3555] / [i915#8814]) +1 other test skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-mtlp-5/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#3555])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg2-7/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-dg1: NOTRUN -> [SKIP][123] ([i915#3359])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg1-16/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-mtlp: NOTRUN -> [SKIP][124] ([i915#3359])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-mtlp-1/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-rkl: NOTRUN -> [SKIP][125] ([i915#3359])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-rkl-5/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-dg1: NOTRUN -> [SKIP][126] ([i915#3555]) +4 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg1-16/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-64x21:
- shard-mtlp: NOTRUN -> [SKIP][127] ([i915#8814])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-mtlp-5/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
- shard-rkl: NOTRUN -> [SKIP][128] +16 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-rkl-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#5354]) +7 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg2-7/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
- shard-mtlp: NOTRUN -> [SKIP][130] ([i915#9809]) +4 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-mtlp-1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-rkl: NOTRUN -> [SKIP][131] ([i915#9067])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-rkl-5/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@torture-bo@pipe-a:
- shard-tglu: [PASS][132] -> [DMESG-WARN][133] ([i915#10166])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14780/shard-tglu-9/igt@kms_cursor_legacy@torture-bo@pipe-a.html
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-tglu-3/igt@kms_cursor_legacy@torture-bo@pipe-a.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][134] ([i915#9723])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-rkl-2/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html
- shard-tglu: NOTRUN -> [SKIP][135] ([i915#9723])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-tglu-9/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][136] ([i915#9227])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg2-2/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][137] ([i915#3804])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-rkl: NOTRUN -> [SKIP][138] ([i915#3840])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-rkl-2/igt@kms_dsc@dsc-fractional-bpp.html
- shard-tglu: NOTRUN -> [SKIP][139] ([i915#3840])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-tglu-9/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-bpc:
- shard-dg1: NOTRUN -> [SKIP][140] ([i915#3555] / [i915#3840])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg1-16/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-mtlp: NOTRUN -> [SKIP][141] ([i915#3555] / [i915#3840])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-mtlp-5/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-rkl: NOTRUN -> [SKIP][142] ([i915#3555] / [i915#3840])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-rkl-5/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-tglu: NOTRUN -> [SKIP][143] ([i915#3840] / [i915#9053])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-tglu-8/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_feature_discovery@chamelium:
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#4854])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg2-7/igt@kms_feature_discovery@chamelium.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-dg2: NOTRUN -> [SKIP][145] +8 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg2-7/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-mtlp: NOTRUN -> [SKIP][146] ([i915#3637]) +2 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-mtlp-5/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_flip@2x-flip-vs-wf_vblank:
- shard-dg1: NOTRUN -> [SKIP][147] ([i915#9934]) +2 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg1-16/igt@kms_flip@2x-flip-vs-wf_vblank.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-tglu: NOTRUN -> [SKIP][148] ([i915#3637]) +1 other test skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-tglu-9/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][149] ([i915#8381])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-mtlp-5/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][150] ([i915#2672])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][151] ([i915#3555] / [i915#8810]) +1 other test skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][152] ([i915#2587] / [i915#2672]) +1 other test skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][153] ([i915#2587] / [i915#2672]) +2 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][154] ([i915#8810])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][155] ([i915#2672]) +1 other test skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][156] ([i915#2672]) +3 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][157] ([i915#2672] / [i915#3555])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite:
- shard-snb: [PASS][158] -> [SKIP][159] +2 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14780/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite.html
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][160] ([i915#1825]) +23 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][161] ([i915#8708]) +13 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-pwrite:
- shard-tglu: NOTRUN -> [SKIP][162] +37 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][163] ([i915#10055])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][164] ([i915#3458]) +4 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-mtlp: NOTRUN -> [SKIP][165] ([i915#1825]) +19 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][166] ([i915#8708]) +1 other test skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-mtlp: NOTRUN -> [SKIP][167] ([i915#10070])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-mtlp-1/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt:
- shard-dg1: NOTRUN -> [SKIP][168] ([i915#3458]) +11 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-rkl: NOTRUN -> [SKIP][169] ([i915#3023]) +10 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt:
- shard-dg1: NOTRUN -> [SKIP][170] +31 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#8708]) +6 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html
* igt@kms_hdr@static-swap:
- shard-dg1: NOTRUN -> [SKIP][172] ([i915#3555] / [i915#8228])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg1-18/igt@kms_hdr@static-swap.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: NOTRUN -> [SKIP][173] ([i915#4070] / [i915#4816])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-rkl-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg2: NOTRUN -> [SKIP][174] ([i915#6301])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg2-11/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane_lowres@tiling-4:
- shard-tglu: NOTRUN -> [SKIP][175] ([i915#3555]) +2 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-tglu-8/igt@kms_plane_lowres@tiling-4.html
* igt@kms_plane_lowres@tiling-yf:
- shard-dg2: NOTRUN -> [SKIP][176] ([i915#3555] / [i915#8821])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg2-7/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@tiling-yf:
- shard-mtlp: NOTRUN -> [SKIP][177] ([i915#3555] / [i915#8806])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-mtlp-5/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][178] ([i915#9423]) +7 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg2-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][179] ([i915#9423]) +7 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg1-16/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-4.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][180] ([i915#9423]) +7 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-rkl-3/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][181] ([i915#5176] / [i915#9423]) +1 other test skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-rkl-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][182] ([i915#5176] / [i915#9423]) +3 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-tglu-9/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][183] ([i915#5235]) +5 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-rkl-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][184] ([i915#5235] / [i915#9423] / [i915#9728]) +7 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][185] ([i915#5235] / [i915#9423]) +11 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg2-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][186] ([i915#5235]) +2 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-mtlp-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c-edp-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][187] ([i915#3555] / [i915#5235])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-mtlp-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-edp-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][188] ([i915#5235]) +3 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg1-13/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-3.html
* igt@kms_pm_backlight@basic-brightness:
- shard-dg1: NOTRUN -> [SKIP][189] ([i915#5354])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg1-16/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_lpsp@kms-lpsp@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [FAIL][190] ([i915#9301])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-tglu-9/igt@kms_pm_lpsp@kms-lpsp@pipe-a-hdmi-a-1.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-mtlp: NOTRUN -> [SKIP][191] ([i915#8430])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-mtlp-1/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-rkl: [PASS][192] -> [SKIP][193] ([i915#9519])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14780/shard-rkl-4/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-rkl-3/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg2: [PASS][194] -> [SKIP][195] ([i915#9519])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14780/shard-dg2-11/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg2-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-tglu: NOTRUN -> [SKIP][196] ([i915#9519])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-tglu-8/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_prime@basic-crc-hybrid:
- shard-mtlp: NOTRUN -> [SKIP][197] ([i915#6524])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-mtlp-1/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-rkl: NOTRUN -> [SKIP][198] ([i915#6524])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-rkl-5/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-fully-sf@psr2-pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][199] ([i915#9808]) +1 other test skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-mtlp-5/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-fully-sf@psr2-pipe-a-edp-1.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-mtlp: NOTRUN -> [SKIP][200] ([i915#4348])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-mtlp-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg1: NOTRUN -> [SKIP][201] ([i915#9683])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg1-16/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-psr2-basic:
- shard-dg1: NOTRUN -> [SKIP][202] ([i915#1072] / [i915#9732]) +14 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg1-16/igt@kms_psr@fbc-psr2-basic.html
* igt@kms_psr@fbc-psr2-cursor-plane-onoff:
- shard-dg2: NOTRUN -> [SKIP][203] ([i915#1072] / [i915#9673] / [i915#9732])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg2-11/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html
* igt@kms_psr@fbc-psr2-primary-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][204] ([i915#9732]) +10 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-tglu-8/igt@kms_psr@fbc-psr2-primary-mmap-gtt.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-rkl: NOTRUN -> [SKIP][205] ([i915#1072] / [i915#9732]) +12 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-rkl-5/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@pr-primary-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][206] ([i915#9688]) +4 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-mtlp-1/igt@kms_psr@pr-primary-mmap-cpu.html
* igt@kms_psr@psr-sprite-blt:
- shard-dg2: NOTRUN -> [SKIP][207] ([i915#1072] / [i915#9732]) +4 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg2-7/igt@kms_psr@psr-sprite-blt.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-tglu: NOTRUN -> [SKIP][208] ([i915#9685])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-tglu-8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-dg2: NOTRUN -> [SKIP][209] ([i915#5190]) +1 other test skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg2-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-mtlp: NOTRUN -> [SKIP][210] ([i915#4235])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-mtlp-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-dg2: NOTRUN -> [SKIP][211] ([i915#4235])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg2-11/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-mtlp: NOTRUN -> [SKIP][212] ([i915#3555] / [i915#8809])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-mtlp-1/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg1: NOTRUN -> [SKIP][213] ([i915#8623])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg1-16/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1:
- shard-rkl: [PASS][214] -> [FAIL][215] ([i915#9196])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14780/shard-rkl-5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-rkl-4/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1:
- shard-tglu: [PASS][216] -> [FAIL][217] ([i915#9196])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14780/shard-tglu-5/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1:
- shard-mtlp: [PASS][218] -> [FAIL][219] ([i915#9196])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14780/shard-mtlp-1/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-mtlp-7/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-3:
- shard-dg2: NOTRUN -> [FAIL][220] ([i915#9196])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg2-5/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-3.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-mtlp: NOTRUN -> [SKIP][221] ([i915#2437] / [i915#9412])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-mtlp-1/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-fb-id:
- shard-glk: NOTRUN -> [SKIP][222] ([i915#2437])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-glk8/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-rkl: NOTRUN -> [SKIP][223] ([i915#2437])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-rkl-5/igt@kms_writeback@writeback-invalid-parameters.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-dg1: NOTRUN -> [SKIP][224] ([i915#2437] / [i915#9412])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg1-16/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf@global-sseu-config-invalid:
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#7387])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg2-7/igt@perf@global-sseu-config-invalid.html
* igt@prime_vgem@basic-read:
- shard-rkl: NOTRUN -> [SKIP][226] ([i915#3291] / [i915#3708])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-rkl-6/igt@prime_vgem@basic-read.html
* igt@prime_vgem@coherency-gtt:
- shard-dg1: NOTRUN -> [SKIP][227] ([i915#3708] / [i915#4077])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg1-16/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-flip-hang:
- shard-rkl: NOTRUN -> [SKIP][228] ([i915#3708])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-rkl-6/igt@prime_vgem@fence-flip-hang.html
* igt@prime_vgem@fence-write-hang:
- shard-dg1: NOTRUN -> [SKIP][229] ([i915#3708]) +1 other test skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg1-18/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@bind-unbind-vf:
- shard-rkl: NOTRUN -> [SKIP][230] ([i915#9917])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-rkl-5/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-tglu: NOTRUN -> [SKIP][231] ([i915#9917])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-tglu-8/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@syncobj_wait@invalid-wait-zero-handles:
- shard-dg1: NOTRUN -> [FAIL][232] ([i915#9779])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg1-16/igt@syncobj_wait@invalid-wait-zero-handles.html
* igt@v3d/v3d_submit_cl@bad-multisync-pad:
- shard-mtlp: NOTRUN -> [SKIP][233] ([i915#2575]) +5 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-mtlp-5/igt@v3d/v3d_submit_cl@bad-multisync-pad.html
* igt@v3d/v3d_submit_cl@single-in-sync:
- shard-dg1: NOTRUN -> [SKIP][234] ([i915#2575]) +7 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg1-18/igt@v3d/v3d_submit_cl@single-in-sync.html
* igt@v3d/v3d_submit_cl@valid-submission:
- shard-tglu: NOTRUN -> [SKIP][235] ([i915#2575]) +8 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-tglu-9/igt@v3d/v3d_submit_cl@valid-submission.html
* igt@v3d/v3d_wait_bo@used-bo-1ns:
- shard-dg2: NOTRUN -> [SKIP][236] ([i915#2575]) +2 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg2-7/igt@v3d/v3d_wait_bo@used-bo-1ns.html
* igt@vc4/vc4_create_bo@create-bo-zeroed:
- shard-rkl: NOTRUN -> [SKIP][237] ([i915#7711]) +4 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-rkl-6/igt@vc4/vc4_create_bo@create-bo-zeroed.html
* igt@vc4/vc4_perfmon@create-perfmon-exceed:
- shard-mtlp: NOTRUN -> [SKIP][238] ([i915#7711]) +4 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-mtlp-1/igt@vc4/vc4_perfmon@create-perfmon-exceed.html
* igt@vc4/vc4_tiling@get-bad-modifier:
- shard-dg2: NOTRUN -> [SKIP][239] ([i915#7711]) +2 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg2-11/igt@vc4/vc4_tiling@get-bad-modifier.html
* igt@vc4/vc4_wait_bo@unused-bo-0ns:
- shard-dg1: NOTRUN -> [SKIP][240] ([i915#7711]) +5 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg1-16/igt@vc4/vc4_wait_bo@unused-bo-0ns.html
#### Possible fixes ####
* igt@gem_exec_fair@basic-none@vecs0:
- shard-rkl: [FAIL][241] ([i915#2842]) -> [PASS][242]
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14780/shard-rkl-5/igt@gem_exec_fair@basic-none@vecs0.html
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-rkl-4/igt@gem_exec_fair@basic-none@vecs0.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-tglu: [FAIL][243] ([i915#2842]) -> [PASS][244]
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14780/shard-tglu-8/igt@gem_exec_fair@basic-pace@rcs0.html
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-tglu-7/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-tglu: [INCOMPLETE][245] ([i915#10047]) -> [PASS][246]
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14780/shard-tglu-6/igt@i915_module_load@reload-with-fault-injection.html
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-tglu-4/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-vga1-hdmi-a1:
- shard-snb: [FAIL][247] ([i915#2122]) -> [PASS][248]
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14780/shard-snb7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-vga1-hdmi-a1.html
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-snb4/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-vga1-hdmi-a1.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu:
- shard-dg2: [FAIL][249] ([i915#6880]) -> [PASS][250]
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14780/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-dg2: [SKIP][251] ([i915#9519]) -> [PASS][252] +1 other test pass
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14780/shard-dg2-4/igt@kms_pm_rpm@dpms-non-lpsp.html
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg2-3/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [SKIP][253] ([i915#9519]) -> [PASS][254] +1 other test pass
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14780/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_sysfs_edid_timing:
- shard-dg2: [FAIL][255] ([IGT#2]) -> [PASS][256]
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14780/shard-dg2-10/igt@kms_sysfs_edid_timing.html
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg2-11/igt@kms_sysfs_edid_timing.html
#### Warnings ####
* igt@i915_module_load@reload-with-fault-injection:
- shard-mtlp: [ABORT][257] ([i915#10131] / [i915#9697]) -> [ABORT][258] ([i915#10131] / [i915#9820])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14780/shard-mtlp-2/igt@i915_module_load@reload-with-fault-injection.html
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-mtlp-4/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg2: [ABORT][259] ([i915#9820]) -> [INCOMPLETE][260] ([i915#1982] / [i915#9849])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14780/shard-dg2-7/igt@i915_module_load@reload-with-fault-injection.html
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg2-4/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-rkl: [INCOMPLETE][261] ([i915#4817]) -> [FAIL][262] ([i915#10031])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14780/shard-rkl-3/igt@i915_suspend@basic-s3-without-i915.html
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-rkl-6/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render:
- shard-dg2: [SKIP][263] ([i915#3458]) -> [SKIP][264] ([i915#10433] / [i915#3458]) +1 other test skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14780/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt:
- shard-dg2: [SKIP][265] ([i915#10433] / [i915#3458]) -> [SKIP][266] ([i915#3458]) +3 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14780/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_psr@fbc-psr-cursor-plane-move:
- shard-dg2: [SKIP][267] ([i915#1072] / [i915#9673] / [i915#9732]) -> [SKIP][268] ([i915#1072] / [i915#9732]) +10 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14780/shard-dg2-11/igt@kms_psr@fbc-psr-cursor-plane-move.html
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg2-4/igt@kms_psr@fbc-psr-cursor-plane-move.html
* igt@kms_psr@psr2-cursor-plane-move:
- shard-dg2: [SKIP][269] ([i915#1072] / [i915#9732]) -> [SKIP][270] ([i915#1072] / [i915#9673] / [i915#9732]) +7 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14780/shard-dg2-2/igt@kms_psr@psr2-cursor-plane-move.html
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/shard-dg2-11/igt@kms_psr@psr2-cursor-plane-move.html
[IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
[i915#10031]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10031
[i915#10047]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10047
[i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
[i915#10070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10070
[i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131
[i915#10166]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10166
[i915#10278]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10278
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10378
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10513]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10513
[i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[i915#2122]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122
[i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3778
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4087]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4087
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348
[i915#4473]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4473
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4873]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4873
[i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885
[i915#5176]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590
[i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213
[i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387
[i915#7443]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7711]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7711
[i915#7742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7742
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709
[i915#8806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8806
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821
[i915#8925]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8925
[i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196
[i915#9227]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9227
[i915#9301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9301
[i915#9311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9311
[i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
[i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
[i915#9606]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9606
[i915#9673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9697
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9728]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9728
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9779]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9779
[i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820
[i915#9849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9849
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
[i915#9979]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9979
Build changes
-------------
* Linux: CI_DRM_14780 -> Patchwork_133744v1
CI-20190529: 20190529
CI_DRM_14780: 8ef53c10d150679e3ff5db00d128417dfffb7798 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_7860: 05b3f5540c6dcaacdf2169dc730c126df9ffd7e2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_133744v1: 8ef53c10d150679e3ff5db00d128417dfffb7798 @ git://anongit.freedesktop.org/gfx-ci/linux
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133744v1/index.html
[-- Attachment #2: Type: text/html, Size: 96432 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 2/2] drm/i915: Don't treat FLR resets as errors
2024-05-17 14:00 ` Nirmoy Das
@ 2024-05-17 19:34 ` Andi Shyti
2024-05-17 20:13 ` Nirmoy Das
0 siblings, 1 reply; 10+ messages in thread
From: Andi Shyti @ 2024-05-17 19:34 UTC (permalink / raw)
To: Nirmoy Das
Cc: Andi Shyti, intel-gfx, dri-devel, Daniele Ceraolo Spurio,
Nirmoy Das, Janusz Krzysztofik, Andi Shyti
Hi Nirmoy,
On Fri, May 17, 2024 at 04:00:02PM +0200, Nirmoy Das wrote:
> On 5/17/2024 1:25 PM, Andi Shyti wrote:
> > If we timeout while waiting for an FLR reset, there is nothing we
> > can do and i915 doesn't have any control on it. In any case the
> > system is still perfectly usable
>
> If a FLR reset fails then we will have a dead GPU, I don't think the GPU is
> usable without a cold reboot.
fact is that the GPU keeps going and even though the timeout has
expired, the system moves to the next phase.
> This is a serious issue and should be report as an error. I think we need
> to create a HW ticket to understand
>
> why is FLR reset fails.
Maybe it takes longer and longer to reset. We've been sending
several patches in the latest years to fix the timings.
Andi
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 2/2] drm/i915: Don't treat FLR resets as errors
2024-05-17 19:34 ` Andi Shyti
@ 2024-05-17 20:13 ` Nirmoy Das
2024-05-21 10:56 ` Andi Shyti
0 siblings, 1 reply; 10+ messages in thread
From: Nirmoy Das @ 2024-05-17 20:13 UTC (permalink / raw)
To: Andi Shyti
Cc: intel-gfx, dri-devel, Daniele Ceraolo Spurio, Nirmoy Das,
Janusz Krzysztofik, Andi Shyti
[-- Attachment #1: Type: text/plain, Size: 3023 bytes --]
Hi Andi,
On 5/17/2024 9:34 PM, Andi Shyti wrote:
> Hi Nirmoy,
>
> On Fri, May 17, 2024 at 04:00:02PM +0200, Nirmoy Das wrote:
>> On 5/17/2024 1:25 PM, Andi Shyti wrote:
>>> If we timeout while waiting for an FLR reset, there is nothing we
>>> can do and i915 doesn't have any control on it. In any case the
>>> system is still perfectly usable
>> If a FLR reset fails then we will have a dead GPU, I don't think the GPU is
>> usable without a cold reboot.
> fact is that the GPU keeps going and even though the timeout has
> expired, the system moves to the next phase.
The current test might look like it is has passed, but if you look into
the subsequent tests you can see a dead GPU:
<7>[ 369.168121] pci 0000:00:02.0: [drm:intel_uncore_fini_mmio [i915]] Triggering Driver-FLR
*<3>[ 372.170189] pci 0000:00:02.0: [drm] *ERROR* Driver-FLR-teardown
wait completion failed! -110*
*<7>[ 372.437630] [IGT] i915_selftest: finished subtest requests, SUCCESS*
<7>[ 372.438356] [IGT] i915_selftest: starting dynamic subtest migrate
<5>[ 373.110580] Setting dangerous option live_selftests - tainting kernel
<3>[ 373.183499] i915 0000:00:02.0: Unable to change power state from D0 to D0, device inaccessible
<3>[ 373.246921] i915 0000:00:02.0: [drm] *ERROR* Unrecognized display IP version 1023.255; disabling display.
<7>[ 373.247130] i915 0000:00:02.0: [drm:intel_step_init [i915]] Using future steppings
<7>[ 373.247716] i915 0000:00:02.0: [drm:intel_step_init [i915]] Using future steppings
<7>[ 373.248263] i915 0000:00:02.0: [drm:intel_step_init [i915]] Using future display steppings
<7>[ 373.251843] i915 0000:00:02.0: [drm:intel_gt_common_init_early [i915]] WOPCM: 2048K
<7>[ 373.252505] i915 0000:00:02.0: [drm:intel_uc_init_early [i915]] GT0: enable_guc=3 (guc:yes submission:yes huc:no slpc:yes)
<7>[ 373.253140] i915 0000:00:02.0: [drm:intel_gt_probe_all [i915]] GT0: Setting up Primary GT
<7>[ 373.253556] i915 0000:00:02.0: [drm:intel_gt_probe_all [i915]] GT1: Setting up Standalone Media GT
<7>[ 373.253941] i915 0000:00:02.0: [drm:intel_gt_common_init_early [i915]] WOPCM: 2048K
<7>[ 373.254365] i915 0000:00:02.0: [drm:intel_uc_init_early [i915]] GT1: enable_guc=3 (guc:yes submission:yes huc:yes slpc:yes)
*<3>[ 375.256235] i915 0000:00:02.0: [drm] *ERROR* Device is
non-operational; MMIO access returns 0xFFFFFFFF!*
<3>[ 375.259089] i915 0000:00:02.0: Device initialization failed (-5)
<3>[ 375.260521] i915 0000:00:02.0: probe with driver i915 failed with error -5
<7>[ 375.392209] [IGT] i915_selftest: finished subtest migrate, FAIL
https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14724/bat-arls-3/dmesg0.txt
>
>> This is a serious issue and should be report as an error. I think we need
>> to create a HW ticket to understand
>>
>> why is FLR reset fails.
> Maybe it takes longer and longer to reset. We've been sending
> several patches in the latest years to fix the timings.
HW spec says 3 sec but we can try increasing it bit higher to try it out.
Regards,
Nirmoy
>
> Andi
[-- Attachment #2: Type: text/html, Size: 4845 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 2/2] drm/i915: Don't treat FLR resets as errors
2024-05-17 20:13 ` Nirmoy Das
@ 2024-05-21 10:56 ` Andi Shyti
2024-05-22 9:07 ` Nirmoy Das
0 siblings, 1 reply; 10+ messages in thread
From: Andi Shyti @ 2024-05-21 10:56 UTC (permalink / raw)
To: Nirmoy Das
Cc: Andi Shyti, intel-gfx, dri-devel, Daniele Ceraolo Spurio,
Nirmoy Das, Janusz Krzysztofik, Andi Shyti
Hi Nirmoy,
On Fri, May 17, 2024 at 10:13:37PM +0200, Nirmoy Das wrote:
> Hi Andi,
>
> On 5/17/2024 9:34 PM, Andi Shyti wrote:
>
> Hi Nirmoy,
>
> On Fri, May 17, 2024 at 04:00:02PM +0200, Nirmoy Das wrote:
>
> On 5/17/2024 1:25 PM, Andi Shyti wrote:
>
> If we timeout while waiting for an FLR reset, there is nothing we
> can do and i915 doesn't have any control on it. In any case the
> system is still perfectly usable
>
> If a FLR reset fails then we will have a dead GPU, I don't think the GPU is
> usable without a cold reboot.
>
> fact is that the GPU keeps going and even though the timeout has
> expired, the system moves to the next phase.
>
> The current test might look like it is has passed, but if you look into the
> subsequent tests you can see a dead GPU:
>
> <7>[ 369.168121] pci 0000:00:02.0: [drm:intel_uncore_fini_mmio [i915]] Triggering Driver-FLR
> <3>[ 372.170189] pci 0000:00:02.0: [drm] *ERROR* Driver-FLR-teardown wait completion failed! -110
> <7>[ 372.437630] [IGT] i915_selftest: finished subtest requests, SUCCESS
> <7>[ 372.438356] [IGT] i915_selftest: starting dynamic subtest migrate
> <5>[ 373.110580] Setting dangerous option live_selftests - tainting kernel
> <3>[ 373.183499] i915 0000:00:02.0: Unable to change power state from D0 to D0, device inaccessible
> <3>[ 373.246921] i915 0000:00:02.0: [drm] *ERROR* Unrecognized display IP version 1023.255; disabling display.
> <7>[ 373.247130] i915 0000:00:02.0: [drm:intel_step_init [i915]] Using future steppings
> <7>[ 373.247716] i915 0000:00:02.0: [drm:intel_step_init [i915]] Using future steppings
> <7>[ 373.248263] i915 0000:00:02.0: [drm:intel_step_init [i915]] Using future display steppings
> <7>[ 373.251843] i915 0000:00:02.0: [drm:intel_gt_common_init_early [i915]] WOPCM: 2048K
> <7>[ 373.252505] i915 0000:00:02.0: [drm:intel_uc_init_early [i915]] GT0: enable_guc=3 (guc:yes submission:yes huc:no slpc:yes)
> <7>[ 373.253140] i915 0000:00:02.0: [drm:intel_gt_probe_all [i915]] GT0: Setting up Primary GT
> <7>[ 373.253556] i915 0000:00:02.0: [drm:intel_gt_probe_all [i915]] GT1: Setting up Standalone Media GT
> <7>[ 373.253941] i915 0000:00:02.0: [drm:intel_gt_common_init_early [i915]] WOPCM: 2048K
> <7>[ 373.254365] i915 0000:00:02.0: [drm:intel_uc_init_early [i915]] GT1: enable_guc=3 (guc:yes submission:yes huc:yes slpc:yes)
> <3>[ 375.256235] i915 0000:00:02.0: [drm] *ERROR* Device is non-operational; MMIO access returns 0xFFFFFFFF!
> <3>[ 375.259089] i915 0000:00:02.0: Device initialization failed (-5)
> <3>[ 375.260521] i915 0000:00:02.0: probe with driver i915 failed with error -5
> <7>[ 375.392209] [IGT] i915_selftest: finished subtest migrate, FAIL
>
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14724/bat-arls-3/dmesg0.txt
Are we sure this is dependent on the FLR reset? There are cases
when the FLR reset doesn't make any difference and in any case
this error is completely ignored by the driver.
Perhaps we can change it to a warning?
> This is a serious issue and should be report as an error. I think we need
> to create a HW ticket to understand
>
> why is FLR reset fails.
>
> Maybe it takes longer and longer to reset. We've been sending
> several patches in the latest years to fix the timings.
>
> HW spec says 3 sec but we can try increasing it bit higher to try it out.
We could go, then, with just patch 1 and see if it improves. Also
because, the FLR reset might also depend on the firmware.
Thanks, Nirmoy,
Andi
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 2/2] drm/i915: Don't treat FLR resets as errors
2024-05-21 10:56 ` Andi Shyti
@ 2024-05-22 9:07 ` Nirmoy Das
0 siblings, 0 replies; 10+ messages in thread
From: Nirmoy Das @ 2024-05-22 9:07 UTC (permalink / raw)
To: Andi Shyti
Cc: intel-gfx, dri-devel, Daniele Ceraolo Spurio, Nirmoy Das,
Janusz Krzysztofik, Andi Shyti
Hi Andi,
On 5/21/2024 12:56 PM, Andi Shyti wrote:
> Hi Nirmoy,
>
> On Fri, May 17, 2024 at 10:13:37PM +0200, Nirmoy Das wrote:
>> Hi Andi,
>>
>> On 5/17/2024 9:34 PM, Andi Shyti wrote:
>>
>> Hi Nirmoy,
>>
>> On Fri, May 17, 2024 at 04:00:02PM +0200, Nirmoy Das wrote:
>>
>> On 5/17/2024 1:25 PM, Andi Shyti wrote:
>>
>> If we timeout while waiting for an FLR reset, there is nothing we
>> can do and i915 doesn't have any control on it. In any case the
>> system is still perfectly usable
>>
>> If a FLR reset fails then we will have a dead GPU, I don't think the GPU is
>> usable without a cold reboot.
>>
>> fact is that the GPU keeps going and even though the timeout has
>> expired, the system moves to the next phase.
>>
>> The current test might look like it is has passed, but if you look into the
>> subsequent tests you can see a dead GPU:
>>
>> <7>[ 369.168121] pci 0000:00:02.0: [drm:intel_uncore_fini_mmio [i915]] Triggering Driver-FLR
>> <3>[ 372.170189] pci 0000:00:02.0: [drm] *ERROR* Driver-FLR-teardown wait completion failed! -110
>> <7>[ 372.437630] [IGT] i915_selftest: finished subtest requests, SUCCESS
>> <7>[ 372.438356] [IGT] i915_selftest: starting dynamic subtest migrate
>> <5>[ 373.110580] Setting dangerous option live_selftests - tainting kernel
>> <3>[ 373.183499] i915 0000:00:02.0: Unable to change power state from D0 to D0, device inaccessible
>> <3>[ 373.246921] i915 0000:00:02.0: [drm] *ERROR* Unrecognized display IP version 1023.255; disabling display.
>> <7>[ 373.247130] i915 0000:00:02.0: [drm:intel_step_init [i915]] Using future steppings
>> <7>[ 373.247716] i915 0000:00:02.0: [drm:intel_step_init [i915]] Using future steppings
>> <7>[ 373.248263] i915 0000:00:02.0: [drm:intel_step_init [i915]] Using future display steppings
>> <7>[ 373.251843] i915 0000:00:02.0: [drm:intel_gt_common_init_early [i915]] WOPCM: 2048K
>> <7>[ 373.252505] i915 0000:00:02.0: [drm:intel_uc_init_early [i915]] GT0: enable_guc=3 (guc:yes submission:yes huc:no slpc:yes)
>> <7>[ 373.253140] i915 0000:00:02.0: [drm:intel_gt_probe_all [i915]] GT0: Setting up Primary GT
>> <7>[ 373.253556] i915 0000:00:02.0: [drm:intel_gt_probe_all [i915]] GT1: Setting up Standalone Media GT
>> <7>[ 373.253941] i915 0000:00:02.0: [drm:intel_gt_common_init_early [i915]] WOPCM: 2048K
>> <7>[ 373.254365] i915 0000:00:02.0: [drm:intel_uc_init_early [i915]] GT1: enable_guc=3 (guc:yes submission:yes huc:yes slpc:yes)
>> <3>[ 375.256235] i915 0000:00:02.0: [drm] *ERROR* Device is non-operational; MMIO access returns 0xFFFFFFFF!
>> <3>[ 375.259089] i915 0000:00:02.0: Device initialization failed (-5)
>> <3>[ 375.260521] i915 0000:00:02.0: probe with driver i915 failed with error -5
>> <7>[ 375.392209] [IGT] i915_selftest: finished subtest migrate, FAIL
>>
>> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14724/bat-arls-3/dmesg0.txt
> Are we sure this is dependent on the FLR reset?
Yes, while on FLR read into memory will return either 0/F.
> There are cases
> when the FLR reset doesn't make any difference and in any case
> this error is completely ignored by the driver.
This happens at very late with no recovery possible and hope is module
reload works.
>
> Perhaps we can change it to a warning?
I think it should be error. CI will still complain even on warning.
>
>> This is a serious issue and should be report as an error. I think we need
>> to create a HW ticket to understand
>>
>> why is FLR reset fails.
>>
>> Maybe it takes longer and longer to reset. We've been sending
>> several patches in the latest years to fix the timings.
>>
>> HW spec says 3 sec but we can try increasing it bit higher to try it out.
> We could go, then, with just patch 1 and see if it improves.
Does it help ? If helps then we can go ahead with increased timeout.
> Also
> because, the FLR reset might also depend on the firmware.
Possible. In that case we should wait for firmware fix ?
Regards,
Nirmoy
>
> Thanks, Nirmoy,
> Andi
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2024-05-22 9:07 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-17 11:25 [PATCH 0/2] Don't be alarmed at FLR timeouts Andi Shyti
2024-05-17 11:25 ` [PATCH 1/2] drm/i915: Increase FLR timeout from 3s to 9s Andi Shyti
2024-05-17 11:25 ` [PATCH 2/2] drm/i915: Don't treat FLR resets as errors Andi Shyti
2024-05-17 14:00 ` Nirmoy Das
2024-05-17 19:34 ` Andi Shyti
2024-05-17 20:13 ` Nirmoy Das
2024-05-21 10:56 ` Andi Shyti
2024-05-22 9:07 ` Nirmoy Das
2024-05-17 12:45 ` ✓ Fi.CI.BAT: success for Don't be alarmed at FLR timeouts Patchwork
2024-05-17 17:53 ` ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox